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:
authorStan Hu <stanhu@gmail.com>2020-06-19 02:02:05 +0300
committerStan Hu <stanhu@gmail.com>2020-06-19 02:09:17 +0300
commit9521853d37541b8ead10f34eb5a8eb10d7ecd760 (patch)
tree6caeb0406ef5b049b61f678d8ea5ac0bdec4ccfd
parent93e2fe75603fe36fc35076aceb9e40d65a9aa99e (diff)
Support literal path lookups in LastCommitsForTreeRequest
Directories that contained glob characters (e.g. `:wq`) would not be viewable in GitLab because Gitaly attempted to use the path as a search pattern instead of interpreting the tree as a literal pathname. Just as we fixed this in https://gitlab.com/gitlab-org/gitaly/-/merge_requests/2285 for LastCommitForPath, we need to add support for passing the Git `--literal-pathspecs` argument for LastCommitsForTreeRequest. Closes https://gitlab.com/gitlab-org/gitaly/-/issues/2888
-rw-r--r--changelogs/unreleased/sh-fix-trees-with-glob-chars.yml5
-rw-r--r--internal/service/commit/list_last_commits_for_tree.go9
-rw-r--r--internal/service/commit/list_last_commits_for_tree_test.go66
-rw-r--r--proto/commit.proto1
-rw-r--r--proto/go/gitalypb/commit.pb.go274
-rw-r--r--ruby/proto/gitaly/commit_pb.rb1
6 files changed, 217 insertions, 139 deletions
diff --git a/changelogs/unreleased/sh-fix-trees-with-glob-chars.yml b/changelogs/unreleased/sh-fix-trees-with-glob-chars.yml
new file mode 100644
index 000000000..3d51157d9
--- /dev/null
+++ b/changelogs/unreleased/sh-fix-trees-with-glob-chars.yml
@@ -0,0 +1,5 @@
+---
+title: Support literal path lookups in LastCommitsForTreeRequest
+merge_request: 2301
+author:
+type: changed
diff --git a/internal/service/commit/list_last_commits_for_tree.go b/internal/service/commit/list_last_commits_for_tree.go
index 04fd0baba..f05141cb6 100644
--- a/internal/service/commit/list_last_commits_for_tree.go
+++ b/internal/service/commit/list_last_commits_for_tree.go
@@ -68,7 +68,7 @@ func listLastCommitsForTree(in *gitalypb.ListLastCommitsForTreeRequest, stream g
}
for _, entry := range entries[offset:limit] {
- commit, err := log.LastCommitForPath(ctx, c, repo, in.GetRevision(), entry.Path, false)
+ commit, err := log.LastCommitForPath(ctx, c, repo, in.GetRevision(), entry.Path, in.GetLiteralPathspec())
if err != nil {
return err
}
@@ -122,7 +122,12 @@ func newLSTreeParser(in *gitalypb.ListLastCommitsForTreeRequest, stream gitalypb
path = "."
}
- cmd, err := git.SafeCmd(stream.Context(), in.GetRepository(), nil, git.SubCmd{
+ var globals []git.Option
+ if in.GetLiteralPathspec() {
+ globals = []git.Option{git.Flag{"--literal-pathspecs"}}
+ }
+
+ cmd, err := git.SafeCmd(stream.Context(), in.GetRepository(), globals, git.SubCmd{
Name: "ls-tree",
Flags: []git.Option{git.Flag{Name: "-z"}, git.Flag{Name: "--full-name"}},
Args: []string{in.GetRevision(), path},
diff --git a/internal/service/commit/list_last_commits_for_tree_test.go b/internal/service/commit/list_last_commits_for_tree_test.go
index 4b9c22412..1f8d6ca31 100644
--- a/internal/service/commit/list_last_commits_for_tree_test.go
+++ b/internal/service/commit/list_last_commits_for_tree_test.go
@@ -4,11 +4,14 @@ import (
"bytes"
"context"
"io"
+ "os"
+ "path/filepath"
"testing"
"unicode/utf8"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
+ "gitlab.com/gitlab-org/gitaly/internal/helper/text"
"gitlab.com/gitlab-org/gitaly/internal/testhelper"
"gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
"google.golang.org/grpc/codes"
@@ -98,6 +101,10 @@ func TestSuccessfulListLastCommitsForTreeRequest(t *testing.T) {
path: []byte("six"),
id: "cfe32cf61b73a0d5e9f13e774abde7ff789b1660",
},
+ {
+ path: []byte("*"),
+ id: "570e7b2abdd848b95f2f578043fc23bd6f6fd24d",
+ },
},
limit: 25,
offset: 0,
@@ -127,6 +134,10 @@ func TestSuccessfulListLastCommitsForTreeRequest(t *testing.T) {
path: []byte("files/ruby"),
id: "570e7b2abdd848b95f2f578043fc23bd6f6fd24d",
},
+ {
+ path: []byte("files/*"),
+ id: "570e7b2abdd848b95f2f578043fc23bd6f6fd24d",
+ },
},
limit: 25,
offset: 0,
@@ -361,7 +372,54 @@ func TestNonUtf8ListLastCommitsForTreeRequest(t *testing.T) {
stream, err := client.ListLastCommitsForTree(ctx, request)
require.NoError(t, err)
- var nonUTF8FilenameFound bool
+ assert.True(t, fileExistsInCommits(t, stream, nonUTF8Filename))
+}
+
+func TestSuccessfulListLastCommitsForTreeRequestWithGlobCharacters(t *testing.T) {
+ server, serverSocketPath := startTestServices(t)
+ defer server.Stop()
+
+ client, conn := newCommitServiceClient(t, serverSocketPath)
+ defer conn.Close()
+
+ testRepo, testRepoPath, cleanupFn := testhelper.NewTestRepoWithWorktree(t)
+ defer cleanupFn()
+
+ path := ":wq"
+ err := os.Mkdir(filepath.Join(testRepoPath, path), 0755)
+ require.NoError(t, err)
+
+ testhelper.MustRunCommand(t, nil, "git", "-C", testRepoPath, "config", "testhelper.TestUser.name", "test@example.com")
+ testhelper.MustRunCommand(t, nil, "git", "-C", testRepoPath, "config", "testhelper.TestUser.email", "test@example.com")
+ testhelper.MustRunCommand(t, nil, "git", "-C", testRepoPath, "mv", "README.md", path)
+ testhelper.MustRunCommand(t, nil, "git", "-C", testRepoPath, "commit", "-a", "-m", "renamed test file")
+ commitID := text.ChompBytes(testhelper.MustRunCommand(t, nil, "git", "-C", testRepoPath, "rev-parse", "HEAD"))
+
+ request := &gitalypb.ListLastCommitsForTreeRequest{
+ Repository: testRepo,
+ Revision: commitID,
+ Path: []byte(path),
+ LiteralPathspec: true,
+ Limit: 100,
+ Offset: 0,
+ }
+
+ ctx, cancel := context.WithCancel(context.Background())
+ defer cancel()
+ stream, err := client.ListLastCommitsForTree(ctx, request)
+ require.NoError(t, err)
+
+ assert.True(t, fileExistsInCommits(t, stream, path))
+
+ request.LiteralPathspec = false
+ stream, err = client.ListLastCommitsForTree(ctx, request)
+ require.NoError(t, err)
+ assert.False(t, fileExistsInCommits(t, stream, path))
+}
+
+func fileExistsInCommits(t *testing.T, stream gitalypb.CommitService_ListLastCommitsForTreeClient, path string) bool {
+ var filenameFound bool
+
for {
fetchedCommits, err := stream.Recv()
if err == io.EOF {
@@ -373,11 +431,11 @@ func TestNonUtf8ListLastCommitsForTreeRequest(t *testing.T) {
commits := fetchedCommits.GetCommits()
for _, fetchedCommit := range commits {
- if bytes.Equal(fetchedCommit.PathBytes, []byte(nonUTF8Filename)) {
- nonUTF8FilenameFound = true
+ if bytes.Equal(fetchedCommit.PathBytes, []byte(path)) {
+ filenameFound = true
}
}
}
- assert.True(t, nonUTF8FilenameFound)
+ return filenameFound
}
diff --git a/proto/commit.proto b/proto/commit.proto
index ad86b2725..346d25edb 100644
--- a/proto/commit.proto
+++ b/proto/commit.proto
@@ -377,6 +377,7 @@ message ListLastCommitsForTreeRequest {
bytes path = 3;
int32 limit = 4;
int32 offset = 5;
+ bool literal_pathspec = 6;
}
message ListLastCommitsForTreeResponse {
diff --git a/proto/go/gitalypb/commit.pb.go b/proto/go/gitalypb/commit.pb.go
index 589d21d1e..c243672f8 100644
--- a/proto/go/gitalypb/commit.pb.go
+++ b/proto/go/gitalypb/commit.pb.go
@@ -2072,6 +2072,7 @@ type ListLastCommitsForTreeRequest struct {
Path []byte `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
Limit int32 `protobuf:"varint,4,opt,name=limit,proto3" json:"limit,omitempty"`
Offset int32 `protobuf:"varint,5,opt,name=offset,proto3" json:"offset,omitempty"`
+ LiteralPathspec bool `protobuf:"varint,6,opt,name=literal_pathspec,json=literalPathspec,proto3" json:"literal_pathspec,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -2137,6 +2138,13 @@ func (m *ListLastCommitsForTreeRequest) GetOffset() int32 {
return 0
}
+func (m *ListLastCommitsForTreeRequest) GetLiteralPathspec() bool {
+ if m != nil {
+ return m.LiteralPathspec
+ }
+ return false
+}
+
type ListLastCommitsForTreeResponse struct {
Commits []*ListLastCommitsForTreeResponse_CommitForTree `protobuf:"bytes,1,rep,name=commits,proto3" json:"commits,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
@@ -2785,142 +2793,142 @@ func init() {
func init() { proto.RegisterFile("commit.proto", fileDescriptor_db7163399a465f48) }
var fileDescriptor_db7163399a465f48 = []byte{
- // 2148 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x59, 0x49, 0x73, 0x1b, 0xc7,
+ // 2154 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5a, 0x49, 0x73, 0x1b, 0xc7,
0x15, 0xf6, 0x60, 0xe3, 0xe0, 0x81, 0xa6, 0xc0, 0x16, 0x25, 0x81, 0x43, 0x52, 0xa4, 0x47, 0x92,
0x43, 0x95, 0x1d, 0x90, 0x61, 0x12, 0x97, 0x73, 0x4a, 0x09, 0x36, 0xc9, 0x22, 0x23, 0x91, 0xcc,
0x88, 0x55, 0x2e, 0xbb, 0x2a, 0x85, 0x0c, 0x80, 0x06, 0xd0, 0xd6, 0x00, 0x03, 0xcd, 0x34, 0x28,
- 0x22, 0x39, 0x24, 0xff, 0x20, 0x55, 0xbe, 0x24, 0xb7, 0xfc, 0x80, 0x1c, 0x72, 0x74, 0xe5, 0x0f,
- 0x24, 0xf7, 0x5c, 0x72, 0xcf, 0xbf, 0x88, 0x4f, 0xa9, 0x5e, 0x66, 0x7a, 0x56, 0x2e, 0x12, 0xa9,
- 0x0b, 0xaa, 0xfb, 0xf5, 0xf2, 0x96, 0x79, 0xfd, 0xf5, 0xd7, 0x0f, 0x30, 0xdf, 0x75, 0x47, 0x23,
- 0x42, 0x9b, 0x13, 0xcf, 0xa5, 0x2e, 0xaa, 0x0c, 0x08, 0xb5, 0x9d, 0x99, 0x01, 0x0e, 0x19, 0x4b,
- 0x99, 0x31, 0xef, 0x0f, 0x6d, 0x0f, 0xf7, 0x64, 0x6f, 0x7d, 0xe0, 0xba, 0x03, 0x07, 0x6f, 0xf1,
- 0x5e, 0x67, 0xda, 0xdf, 0xa2, 0x64, 0x84, 0x7d, 0x6a, 0x8f, 0x26, 0x62, 0x82, 0xf9, 0x2d, 0xa0,
- 0x2f, 0xf8, 0x96, 0x2f, 0xa9, 0x4d, 0x7d, 0x0b, 0xbf, 0x9e, 0x62, 0x9f, 0xa2, 0xcf, 0x01, 0x3c,
- 0x3c, 0x71, 0x7d, 0x42, 0x5d, 0x6f, 0xd6, 0xd0, 0x36, 0xb4, 0xcd, 0xda, 0x0e, 0x6a, 0x0a, 0x6d,
- 0x4d, 0x2b, 0x1c, 0x69, 0x95, 0xfe, 0xf2, 0xcf, 0x4f, 0x35, 0x2b, 0x32, 0x17, 0x19, 0xa0, 0x7b,
- 0xf8, 0x8c, 0xf8, 0xc4, 0x1d, 0x37, 0x0a, 0x1b, 0xda, 0xe6, 0xbc, 0x15, 0xf6, 0xcd, 0x2e, 0xdc,
- 0x8d, 0xe9, 0xf2, 0x27, 0xee, 0xd8, 0xc7, 0xa8, 0x0e, 0x45, 0x97, 0xf4, 0xb8, 0x96, 0xaa, 0xc5,
- 0x9a, 0x68, 0x15, 0xaa, 0x76, 0xaf, 0x47, 0x28, 0x71, 0xc7, 0x3e, 0xdf, 0xa5, 0x6c, 0x29, 0x01,
- 0x1b, 0xed, 0x61, 0x07, 0x8b, 0xd1, 0xa2, 0x18, 0x0d, 0x05, 0xe6, 0x9f, 0x34, 0x78, 0x20, 0xb4,
- 0x1c, 0xf8, 0xcf, 0xc6, 0x5d, 0xec, 0x53, 0xd7, 0x7b, 0x77, 0xb7, 0xd6, 0xa1, 0x66, 0xcb, 0xcd,
- 0xda, 0xa4, 0xc7, 0x6d, 0xaa, 0x5a, 0x10, 0x88, 0x0e, 0x7a, 0x68, 0x19, 0xf4, 0xee, 0x90, 0x38,
- 0x3d, 0x36, 0x5a, 0xe4, 0xa3, 0x73, 0xbc, 0x7f, 0xd0, 0x33, 0xb7, 0xa1, 0x91, 0x36, 0x48, 0xfa,
- 0xbe, 0x04, 0xe5, 0x33, 0xdb, 0x99, 0x62, 0x6e, 0x8c, 0x6e, 0x89, 0x8e, 0xf9, 0x9d, 0x06, 0xf5,
- 0x53, 0x0f, 0xe3, 0xdd, 0x31, 0xf5, 0x66, 0xb7, 0xfa, 0x4d, 0x10, 0x82, 0xd2, 0xc4, 0xa6, 0x43,
- 0x6e, 0xf3, 0xbc, 0xc5, 0xdb, 0xcc, 0x28, 0x87, 0x8c, 0x08, 0x6d, 0x94, 0x36, 0xb4, 0xcd, 0xa2,
- 0x25, 0x3a, 0xe6, 0xbf, 0x35, 0x58, 0x8c, 0x18, 0x25, 0x1d, 0xf8, 0x1c, 0x4a, 0x74, 0x36, 0x11,
- 0xf6, 0x2f, 0xec, 0x3c, 0x0e, 0xec, 0x49, 0x4d, 0x6c, 0x1e, 0x77, 0xbe, 0xc5, 0x5d, 0x7a, 0x3a,
- 0x9b, 0x60, 0x8b, 0xaf, 0x08, 0x3e, 0x7b, 0x41, 0x7d, 0x76, 0x04, 0x25, 0x9f, 0xfc, 0x0e, 0x73,
- 0x5b, 0x8a, 0x16, 0x6f, 0x33, 0xd9, 0xc8, 0xed, 0x61, 0x6e, 0x4a, 0xd9, 0xe2, 0x6d, 0x26, 0xeb,
- 0xd9, 0xd4, 0x6e, 0x94, 0x85, 0xcd, 0xac, 0x6d, 0xfe, 0x1c, 0x40, 0x69, 0x40, 0x00, 0x95, 0x2f,
- 0x8e, 0x5f, 0xbc, 0x38, 0x38, 0xad, 0x7f, 0x80, 0x74, 0x28, 0xb5, 0x9e, 0x1f, 0xb7, 0xea, 0x1a,
- 0x6b, 0x9d, 0x5a, 0xbb, 0xbb, 0xf5, 0x02, 0x9a, 0x83, 0xe2, 0xe9, 0xb3, 0xfd, 0x7a, 0xd1, 0x9c,
- 0xc2, 0x3d, 0xf1, 0x6d, 0xfc, 0x16, 0xa6, 0x6f, 0x30, 0x1e, 0xbf, 0x7b, 0xb4, 0x11, 0x94, 0xfa,
- 0x9e, 0x3b, 0x92, 0x91, 0xe6, 0x6d, 0xb4, 0x00, 0x05, 0xea, 0xca, 0x18, 0x17, 0xa8, 0x6b, 0xee,
- 0xc2, 0xfd, 0xa4, 0x5a, 0x19, 0xcf, 0x4f, 0x60, 0x4e, 0x1c, 0x71, 0xbf, 0xa1, 0x6d, 0x14, 0x37,
- 0x6b, 0x3b, 0x8b, 0x81, 0xd2, 0x7d, 0x42, 0xc5, 0x1a, 0x2b, 0x98, 0x61, 0x7e, 0x5f, 0x60, 0x27,
- 0x6a, 0x3a, 0x96, 0x03, 0xb7, 0x7b, 0x7c, 0xd1, 0x36, 0x94, 0xed, 0x3e, 0xc5, 0x1e, 0xf7, 0xa3,
- 0xb6, 0x63, 0x34, 0x05, 0xb6, 0x34, 0x03, 0x6c, 0x69, 0x9e, 0x06, 0xd8, 0x62, 0x89, 0x89, 0x68,
- 0x07, 0x2a, 0x1d, 0xdc, 0x77, 0x3d, 0xf1, 0xf9, 0x2e, 0x5e, 0x22, 0x67, 0x86, 0x09, 0x59, 0x8e,
- 0x24, 0xe4, 0x0a, 0x54, 0x47, 0xf6, 0x79, 0xbb, 0xcb, 0x5c, 0x6d, 0x54, 0x78, 0x26, 0xe8, 0x23,
- 0xfb, 0x9c, 0xbb, 0xce, 0xf2, 0xc8, 0x76, 0x9c, 0xc6, 0x1c, 0x3f, 0x40, 0xac, 0x89, 0x3e, 0x82,
- 0xf9, 0x3e, 0xf1, 0x7c, 0xda, 0x9e, 0xd8, 0x1e, 0x1e, 0xd3, 0x86, 0xce, 0x87, 0x6a, 0x5c, 0x76,
- 0xc2, 0x45, 0xe6, 0xa7, 0xb0, 0x14, 0x0f, 0x9c, 0x3a, 0x8f, 0x42, 0x8b, 0xc6, 0xb5, 0x88, 0x8e,
- 0xf9, 0x37, 0x0d, 0x56, 0xf9, 0xf4, 0x2f, 0xc9, 0x19, 0xf6, 0x06, 0x64, 0x3c, 0xb8, 0xb1, 0x80,
- 0x5f, 0x21, 0x5b, 0xe2, 0xee, 0xcf, 0xc5, 0xdd, 0x3f, 0x2c, 0xe9, 0xa5, 0x7a, 0xf9, 0xb0, 0xa4,
- 0x97, 0xeb, 0x95, 0xc3, 0x92, 0x5e, 0xa9, 0xcf, 0x99, 0x6d, 0x58, 0xcb, 0x31, 0x56, 0x3a, 0xb9,
- 0x06, 0xe0, 0xe0, 0x3e, 0x6d, 0x47, 0x3d, 0xad, 0x32, 0x89, 0x08, 0xe8, 0x3a, 0xd4, 0x3c, 0x32,
- 0x18, 0x06, 0xe3, 0x02, 0x7f, 0x81, 0x8b, 0xf8, 0x04, 0xf3, 0x07, 0x0d, 0xaa, 0xe1, 0x01, 0xcf,
- 0x80, 0xef, 0x65, 0xd0, 0x3d, 0xd7, 0xa5, 0x6d, 0x75, 0xbc, 0xe7, 0x58, 0xff, 0x58, 0x1c, 0xf1,
- 0x14, 0xdc, 0x6c, 0x49, 0x08, 0x29, 0x71, 0x08, 0x59, 0x49, 0x41, 0x48, 0x93, 0xff, 0x46, 0x90,
- 0x23, 0xc0, 0x84, 0x72, 0x04, 0x13, 0xd6, 0x00, 0xc4, 0xa9, 0xe0, 0x5a, 0x2b, 0x5c, 0x6b, 0x55,
- 0x48, 0x98, 0xde, 0x15, 0xa8, 0xf6, 0x1d, 0x9b, 0x65, 0x04, 0x1d, 0xf2, 0x10, 0xce, 0x5b, 0x3a,
- 0x13, 0x9c, 0xd8, 0x74, 0x68, 0x7e, 0x02, 0xd5, 0x50, 0x45, 0x08, 0x17, 0x1f, 0x84, 0x70, 0xa1,
- 0x45, 0xe0, 0xa4, 0x68, 0xfe, 0x55, 0x83, 0x7b, 0xfb, 0x98, 0x06, 0xd6, 0x11, 0xec, 0xbf, 0x7f,
- 0x80, 0x5e, 0x85, 0xaa, 0x87, 0xbb, 0x53, 0xcf, 0x27, 0x67, 0x22, 0x6c, 0xba, 0xa5, 0x04, 0x0c,
- 0x5c, 0x92, 0x06, 0x2a, 0x70, 0xc1, 0x42, 0x94, 0x04, 0x17, 0x85, 0xd7, 0xc1, 0x0c, 0x73, 0x08,
- 0xf5, 0xe7, 0xc4, 0xa7, 0x7b, 0xc4, 0xb9, 0x65, 0x17, 0xcd, 0xa7, 0xb0, 0x18, 0xd1, 0xa4, 0x4e,
- 0x22, 0xf3, 0x55, 0x58, 0x3a, 0x6f, 0x89, 0x8e, 0x49, 0x60, 0x71, 0x8f, 0x8c, 0x7b, 0x12, 0x08,
- 0x6f, 0xd5, 0xaa, 0x5f, 0x02, 0x8a, 0xaa, 0x92, 0x66, 0x3d, 0x85, 0x8a, 0xc8, 0x2a, 0xa9, 0x27,
- 0x03, 0x9e, 0xe5, 0x04, 0x13, 0xc3, 0x03, 0xe6, 0x56, 0x00, 0xf4, 0xb3, 0x63, 0xd2, 0x7b, 0x77,
- 0x8b, 0xc3, 0x5b, 0xb3, 0x28, 0x4f, 0x9b, 0xb9, 0x0f, 0x8d, 0xb4, 0x9a, 0xb7, 0xb9, 0x4d, 0x28,
- 0xac, 0xc4, 0x36, 0xb2, 0x70, 0xff, 0xc8, 0x1e, 0xe1, 0x77, 0xb7, 0x79, 0x85, 0xa5, 0x6b, 0xbf,
- 0x3d, 0xb6, 0x47, 0xd8, 0xe7, 0x96, 0xf3, 0x30, 0xf3, 0xcd, 0x7d, 0xf3, 0x7f, 0x1a, 0xac, 0x66,
- 0xab, 0x95, 0x3e, 0x6c, 0x5d, 0xee, 0x43, 0xab, 0xd0, 0xd0, 0x42, 0x3f, 0x90, 0x05, 0x35, 0x09,
- 0x05, 0x1e, 0xee, 0x0b, 0x85, 0xb5, 0x9d, 0x9f, 0x04, 0x8b, 0x2e, 0xd2, 0xd5, 0x14, 0x03, 0x7b,
- 0x8c, 0xa0, 0xf5, 0x2d, 0x09, 0x28, 0x16, 0xee, 0xfb, 0xc6, 0x29, 0xcc, 0x47, 0xc7, 0xae, 0x91,
- 0x06, 0x1c, 0x0d, 0xa5, 0xf7, 0x32, 0xc7, 0xe6, 0xa4, 0xf3, 0xe6, 0x1f, 0x0b, 0x70, 0x8f, 0xe5,
- 0xd8, 0x33, 0xc7, 0x79, 0x2f, 0x37, 0x78, 0xec, 0x22, 0x29, 0x26, 0xee, 0x51, 0xc6, 0xbe, 0x5e,
- 0x91, 0x49, 0xc0, 0xb4, 0x58, 0x1b, 0xfd, 0x02, 0xca, 0xae, 0xd7, 0xc3, 0x1e, 0x87, 0xda, 0x85,
- 0x9d, 0x47, 0x81, 0x05, 0x99, 0x46, 0x37, 0x8f, 0xd9, 0x54, 0x4b, 0xac, 0x30, 0x9f, 0x40, 0x99,
- 0xf7, 0x19, 0x8c, 0x1e, 0x1d, 0x1f, 0xed, 0x4a, 0x40, 0x3d, 0x3e, 0x39, 0x16, 0x4c, 0xec, 0xcb,
- 0x67, 0xa7, 0xbb, 0xf5, 0x02, 0x03, 0xab, 0xe4, 0x66, 0x6f, 0x93, 0xbb, 0xdf, 0x95, 0xa2, 0xa7,
- 0xf5, 0x96, 0xc3, 0x18, 0xf2, 0x63, 0x11, 0x42, 0xd1, 0x41, 0xf7, 0xa1, 0xe2, 0xf6, 0xfb, 0x3e,
- 0xa6, 0x32, 0x82, 0xb2, 0xa7, 0x80, 0xac, 0x1c, 0x01, 0x32, 0x36, 0xbb, 0xef, 0x3a, 0x8e, 0xfb,
- 0x86, 0xdf, 0x55, 0xba, 0x25, 0x7b, 0xec, 0xf2, 0x65, 0x91, 0x6f, 0x8f, 0xb0, 0x37, 0xc0, 0xbe,
- 0x64, 0x35, 0xc0, 0x44, 0x2f, 0xb8, 0x84, 0x91, 0x9b, 0x1e, 0xf1, 0xed, 0x8e, 0x83, 0xdb, 0x6f,
- 0x6c, 0xe7, 0x55, 0x40, 0x6e, 0xa4, 0xec, 0x2b, 0xdb, 0x79, 0xa5, 0x88, 0x5a, 0xf5, 0xfa, 0x44,
- 0x0d, 0xae, 0x4c, 0xd4, 0x24, 0xef, 0xaa, 0xe5, 0xf3, 0xae, 0xf9, 0x14, 0xef, 0x62, 0x6e, 0xdb,
- 0x53, 0x3a, 0x74, 0xbd, 0xc6, 0x87, 0x3c, 0xa8, 0xb2, 0x87, 0x3e, 0x0b, 0x12, 0x6d, 0x81, 0x27,
- 0xda, 0x46, 0x34, 0xd1, 0x2e, 0xca, 0xb2, 0x95, 0x0b, 0xb2, 0xcc, 0x6c, 0xc1, 0xdd, 0xd8, 0xfa,
- 0xb7, 0x49, 0xac, 0x71, 0xc0, 0xd4, 0x9f, 0xdb, 0xe3, 0xc1, 0xd4, 0x1e, 0xdc, 0xf6, 0x5d, 0xf8,
- 0xdf, 0xf0, 0xf9, 0x1a, 0x51, 0x28, 0x0d, 0xdf, 0x83, 0xaa, 0x13, 0x08, 0xa5, 0xe9, 0x9b, 0x81,
- 0xc2, 0x9c, 0x35, 0xcd, 0x40, 0x62, 0xa9, 0xa5, 0xc6, 0x1f, 0x40, 0x0f, 0xc4, 0xec, 0xd4, 0x73,
- 0x64, 0x12, 0xf4, 0x8d, 0xb7, 0x59, 0xc6, 0xf2, 0x22, 0x02, 0x37, 0xae, 0x60, 0x89, 0x8e, 0xa0,
- 0xc6, 0x8e, 0xeb, 0xc9, 0xe7, 0xad, 0xe8, 0x30, 0xde, 0xd5, 0x27, 0x0e, 0x96, 0x98, 0xc2, 0x32,
- 0xff, 0x43, 0xab, 0xca, 0x24, 0x02, 0x54, 0x96, 0xa0, 0xdc, 0x99, 0x51, 0xec, 0x73, 0x00, 0x29,
- 0x59, 0xa2, 0x63, 0xfe, 0x1e, 0xee, 0x58, 0xf6, 0x9b, 0x96, 0x73, 0x23, 0xb7, 0xcb, 0x35, 0xc9,
- 0x93, 0xf9, 0x31, 0xd4, 0x95, 0x72, 0x19, 0xd9, 0xe0, 0x45, 0xa9, 0x45, 0x5e, 0x94, 0x7f, 0xd7,
- 0xa0, 0xf1, 0xdc, 0x0e, 0x2e, 0x8b, 0x3d, 0xd7, 0x63, 0x5c, 0xf1, 0xfd, 0x73, 0xbd, 0xa7, 0x50,
- 0x77, 0x08, 0xc5, 0x9e, 0xed, 0x70, 0xf2, 0xea, 0x4f, 0x70, 0x57, 0x52, 0xbe, 0x3b, 0x52, 0x7e,
- 0x22, 0xc5, 0xe6, 0x1e, 0x2c, 0x67, 0x18, 0x7c, 0x7d, 0xe2, 0xf2, 0xbd, 0x06, 0x6b, 0xec, 0x9a,
- 0x54, 0x9b, 0xf9, 0x7b, 0xae, 0xc7, 0x28, 0xe2, 0xcd, 0xbb, 0x5f, 0xbd, 0x4e, 0x2d, 0x22, 0x03,
- 0x6b, 0xcb, 0x51, 0xac, 0x35, 0xff, 0xa3, 0xc1, 0xc3, 0x3c, 0xcb, 0x65, 0x1c, 0x8e, 0x92, 0xa7,
- 0xff, 0x67, 0x51, 0x66, 0x90, 0xbf, 0x50, 0x71, 0x03, 0x2e, 0x0d, 0x36, 0x31, 0x30, 0x7c, 0x18,
- 0x1b, 0x89, 0x04, 0xba, 0x70, 0x19, 0x35, 0x58, 0x03, 0x60, 0x4e, 0xb6, 0xc5, 0x11, 0x29, 0x71,
- 0xb7, 0xab, 0x4c, 0xd2, 0x62, 0x82, 0xc3, 0x92, 0xae, 0xd5, 0x0b, 0x87, 0x25, 0xbd, 0x58, 0x2f,
- 0x99, 0xff, 0x0a, 0x71, 0xc1, 0x6f, 0xcd, 0x5e, 0x60, 0xdf, 0x67, 0x67, 0xfa, 0x56, 0x93, 0x51,
- 0xc5, 0xb8, 0x98, 0xbc, 0xcf, 0x32, 0xbe, 0x48, 0xd6, 0xb3, 0x7d, 0x09, 0xca, 0xaf, 0xa7, 0xd8,
- 0x9b, 0xc9, 0xe7, 0x98, 0xe8, 0x30, 0xbe, 0x9a, 0x76, 0xe4, 0x6d, 0xa0, 0xd9, 0x85, 0xf5, 0x3d,
- 0xe2, 0x50, 0xec, 0xbd, 0x1c, 0xda, 0xfe, 0x57, 0x84, 0x0e, 0x5f, 0x92, 0xc1, 0xd8, 0xa6, 0x53,
- 0x0f, 0xdf, 0xcc, 0xbb, 0xdc, 0x1f, 0xda, 0x01, 0x5d, 0xe5, 0x6d, 0xf3, 0x33, 0xd8, 0xc8, 0x57,
- 0xa8, 0x90, 0x84, 0xaf, 0xd3, 0x22, 0xeb, 0xce, 0x60, 0x6d, 0xf7, 0x9c, 0x7a, 0x76, 0x57, 0xba,
- 0x10, 0x2e, 0xbb, 0x11, 0x6a, 0x2d, 0xb9, 0x6e, 0xf8, 0xd6, 0xd6, 0x85, 0xe0, 0xa0, 0x67, 0xb6,
- 0xe1, 0x61, 0x9e, 0x5e, 0x69, 0xed, 0x2a, 0x54, 0xfd, 0x40, 0x28, 0xc1, 0x4f, 0x09, 0x38, 0x17,
- 0x21, 0x83, 0x31, 0xee, 0xb5, 0x29, 0x3e, 0xa7, 0x32, 0x41, 0x40, 0x88, 0x4e, 0xf1, 0x39, 0x35,
- 0xa7, 0x60, 0xec, 0xe3, 0xe4, 0xe6, 0x37, 0x10, 0x7c, 0xf5, 0x98, 0x27, 0x3d, 0x5f, 0xbe, 0x75,
- 0xaa, 0x81, 0x5b, 0xbe, 0x39, 0x83, 0x95, 0x4c, 0xb5, 0xd2, 0xa9, 0x58, 0x4c, 0xb4, 0x78, 0x4c,
- 0xe2, 0x1e, 0x17, 0x2e, 0xf1, 0xb8, 0x98, 0xf2, 0xd8, 0x87, 0x46, 0xa8, 0x5a, 0x26, 0xef, 0xed,
- 0xfb, 0x6b, 0xc1, 0x72, 0x86, 0xd2, 0xab, 0x78, 0xdb, 0x80, 0xb9, 0x91, 0x58, 0x10, 0x3c, 0x3d,
- 0x64, 0x77, 0xe7, 0x1f, 0x77, 0x02, 0xdc, 0x7a, 0x89, 0xbd, 0x33, 0xd2, 0xc5, 0xe8, 0x37, 0x50,
- 0x4f, 0x96, 0xa9, 0xd1, 0x7a, 0x9c, 0x5e, 0xa4, 0x2a, 0xea, 0xc6, 0x46, 0xfe, 0x04, 0x61, 0x9f,
- 0x59, 0xf9, 0xe1, 0xcf, 0x9b, 0x05, 0xbd, 0x80, 0x0e, 0xa3, 0x35, 0xa3, 0x46, 0x46, 0x9d, 0x58,
- 0x6c, 0xb8, 0x9c, 0x5b, 0x41, 0x0e, 0x76, 0xda, 0xd6, 0xd0, 0xd7, 0xb0, 0x10, 0x2f, 0x9f, 0xa2,
- 0xb5, 0xb8, 0x1d, 0x89, 0x6a, 0xae, 0xf1, 0x30, 0x6f, 0x38, 0xb5, 0xf5, 0xaf, 0xd9, 0x43, 0x4f,
- 0x15, 0x06, 0xd1, 0x8a, 0x5a, 0x99, 0xaa, 0xb3, 0x1a, 0xab, 0xd9, 0x83, 0x09, 0xcf, 0x1d, 0xb8,
- 0x97, 0x59, 0x8f, 0x43, 0x8f, 0x63, 0xcb, 0x73, 0x6a, 0x8b, 0xc6, 0x93, 0x4b, 0x66, 0x25, 0xb4,
- 0x7d, 0x0d, 0x0b, 0xf1, 0xea, 0x8f, 0x8a, 0x4d, 0x66, 0xd9, 0x4a, 0xc5, 0x26, 0xbb, 0x68, 0x14,
- 0x89, 0xcd, 0x21, 0x54, 0xc3, 0x3a, 0x8d, 0xfa, 0x84, 0xc9, 0x22, 0x91, 0xfa, 0x84, 0xa9, 0xa2,
- 0x4e, 0x64, 0xaf, 0x5f, 0x01, 0x28, 0x6e, 0x8e, 0x96, 0xd3, 0x7c, 0x3f, 0xd8, 0xcd, 0xc8, 0x1a,
- 0x4a, 0xf8, 0x7c, 0x04, 0xb5, 0xc8, 0x1f, 0x4b, 0xc8, 0x88, 0x7f, 0xed, 0xe8, 0x3f, 0x5b, 0xc6,
- 0x4a, 0xe6, 0x58, 0x3a, 0x86, 0xf1, 0x47, 0xa9, 0x8a, 0x61, 0xe6, 0xcb, 0x57, 0xc5, 0x30, 0xfb,
- 0x2d, 0x1b, 0xf1, 0xfb, 0x04, 0x6a, 0x91, 0x37, 0x09, 0x32, 0xf2, 0x1f, 0x3a, 0xca, 0xd4, 0x8c,
- 0x47, 0x4c, 0x64, 0xc7, 0x6f, 0xe0, 0x4e, 0x82, 0xfc, 0xa3, 0x87, 0xb9, 0xaf, 0x02, 0xb1, 0xf3,
- 0xfa, 0x25, 0xaf, 0x86, 0x30, 0x10, 0xfb, 0xa0, 0x07, 0x5c, 0x19, 0x3d, 0x08, 0xa1, 0x2c, 0x4e,
- 0xdd, 0x8d, 0x46, 0x7a, 0x20, 0x65, 0xe4, 0x6f, 0x61, 0x31, 0x45, 0x4d, 0x51, 0x08, 0x1e, 0x79,
- 0x34, 0xdb, 0xf8, 0xe8, 0x82, 0x19, 0x09, 0x53, 0x5f, 0xc3, 0xfd, 0x6c, 0x02, 0x87, 0x9e, 0x5c,
- 0x46, 0xf0, 0x84, 0xae, 0x8f, 0xaf, 0xc6, 0x03, 0x23, 0x4e, 0xb5, 0x03, 0xc4, 0x54, 0x4c, 0x26,
- 0x89, 0x98, 0x29, 0xb2, 0x96, 0x44, 0xcc, 0x34, 0x09, 0x8a, 0x2b, 0x48, 0x96, 0xf6, 0x94, 0x82,
- 0x9c, 0xda, 0xa2, 0x52, 0x90, 0x57, 0x15, 0x8c, 0x28, 0x78, 0x05, 0x4b, 0x59, 0xf5, 0x30, 0xf4,
- 0xe8, 0xe2, 0x6a, 0x99, 0x50, 0xf4, 0xf8, 0x2a, 0x25, 0xb5, 0x88, 0xb2, 0x19, 0x34, 0xf2, 0xe8,
- 0x13, 0xfa, 0x91, 0xca, 0xf5, 0x0b, 0x19, 0x9d, 0xb1, 0x79, 0xf9, 0xc4, 0xb8, 0xe2, 0x4d, 0x6d,
- 0x5b, 0x43, 0x43, 0xb8, 0x9b, 0xc1, 0x18, 0x90, 0x19, 0x81, 0xbe, 0x1c, 0x16, 0x63, 0x3c, 0xba,
- 0x70, 0x4e, 0xca, 0xc9, 0x0e, 0x2c, 0xa6, 0xee, 0x6a, 0x95, 0xe8, 0x79, 0xdc, 0x41, 0x25, 0x7a,
- 0xee, 0x45, 0xaf, 0x74, 0xb4, 0xb6, 0xbf, 0x61, 0xb3, 0x1d, 0xbb, 0xd3, 0xec, 0xba, 0xa3, 0x2d,
- 0xd1, 0xfc, 0xb1, 0xeb, 0x0d, 0xb6, 0xc4, 0x1e, 0xe2, 0xcf, 0xfe, 0xad, 0x81, 0x2b, 0xfb, 0x93,
- 0x4e, 0xa7, 0xc2, 0x45, 0x3f, 0xfd, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6e, 0x64, 0x97, 0x3d,
- 0x3f, 0x20, 0x00, 0x00,
+ 0x22, 0x39, 0x24, 0xff, 0x20, 0x55, 0xbe, 0x24, 0xb7, 0xfc, 0x80, 0x1c, 0x72, 0x4c, 0xe5, 0x0f,
+ 0x24, 0xf7, 0x5c, 0x72, 0xf7, 0xbf, 0x88, 0x4f, 0xa9, 0x5e, 0x66, 0x7a, 0x56, 0x2e, 0x12, 0xa9,
+ 0x0b, 0xab, 0xfb, 0xf5, 0xf2, 0x96, 0x79, 0xfd, 0xf5, 0xd7, 0x0f, 0x84, 0xf9, 0xae, 0x3b, 0x1a,
+ 0x11, 0xda, 0x9c, 0x78, 0x2e, 0x75, 0x51, 0x65, 0x40, 0xa8, 0xed, 0xcc, 0x0c, 0x70, 0xc8, 0x58,
+ 0xca, 0x8c, 0x79, 0x7f, 0x68, 0x7b, 0xb8, 0x27, 0x7b, 0xeb, 0x03, 0xd7, 0x1d, 0x38, 0x78, 0x8b,
+ 0xf7, 0x3a, 0xd3, 0xfe, 0x16, 0x25, 0x23, 0xec, 0x53, 0x7b, 0x34, 0x11, 0x13, 0xcc, 0x6f, 0x01,
+ 0x7d, 0xc1, 0xb7, 0x7c, 0x49, 0x6d, 0xea, 0x5b, 0xf8, 0xf5, 0x14, 0xfb, 0x14, 0x7d, 0x0e, 0xe0,
+ 0xe1, 0x89, 0xeb, 0x13, 0xea, 0x7a, 0xb3, 0x86, 0xb6, 0xa1, 0x6d, 0xd6, 0x76, 0x50, 0x53, 0x68,
+ 0x6b, 0x5a, 0xe1, 0x48, 0xab, 0xf4, 0x97, 0x7f, 0x7d, 0xaa, 0x59, 0x91, 0xb9, 0xc8, 0x00, 0xdd,
+ 0xc3, 0x67, 0xc4, 0x27, 0xee, 0xb8, 0x51, 0xd8, 0xd0, 0x36, 0xe7, 0xad, 0xb0, 0x6f, 0x76, 0xe1,
+ 0x6e, 0x4c, 0x97, 0x3f, 0x71, 0xc7, 0x3e, 0x46, 0x75, 0x28, 0xba, 0xa4, 0xc7, 0xb5, 0x54, 0x2d,
+ 0xd6, 0x44, 0xab, 0x50, 0xb5, 0x7b, 0x3d, 0x42, 0x89, 0x3b, 0xf6, 0xf9, 0x2e, 0x65, 0x4b, 0x09,
+ 0xd8, 0x68, 0x0f, 0x3b, 0x58, 0x8c, 0x16, 0xc5, 0x68, 0x28, 0x30, 0xff, 0xa4, 0xc1, 0x03, 0xa1,
+ 0xe5, 0xc0, 0x7f, 0x36, 0xee, 0x62, 0x9f, 0xba, 0xde, 0xbb, 0xbb, 0xb5, 0x0e, 0x35, 0x5b, 0x6e,
+ 0xd6, 0x26, 0x3d, 0x6e, 0x53, 0xd5, 0x82, 0x40, 0x74, 0xd0, 0x43, 0xcb, 0xa0, 0x77, 0x87, 0xc4,
+ 0xe9, 0xb1, 0xd1, 0x22, 0x1f, 0x9d, 0xe3, 0xfd, 0x83, 0x9e, 0xb9, 0x0d, 0x8d, 0xb4, 0x41, 0xd2,
+ 0xf7, 0x25, 0x28, 0x9f, 0xd9, 0xce, 0x14, 0x73, 0x63, 0x74, 0x4b, 0x74, 0xcc, 0xef, 0x34, 0xa8,
+ 0x9f, 0x7a, 0x18, 0xef, 0x8e, 0xa9, 0x37, 0xbb, 0xd5, 0x6f, 0x82, 0x10, 0x94, 0x26, 0x36, 0x1d,
+ 0x72, 0x9b, 0xe7, 0x2d, 0xde, 0x66, 0x46, 0x39, 0x64, 0x44, 0x68, 0xa3, 0xb4, 0xa1, 0x6d, 0x16,
+ 0x2d, 0xd1, 0x31, 0xff, 0xa3, 0xc1, 0x62, 0xc4, 0x28, 0xe9, 0xc0, 0xe7, 0x50, 0xa2, 0xb3, 0x89,
+ 0xb0, 0x7f, 0x61, 0xe7, 0x71, 0x60, 0x4f, 0x6a, 0x62, 0xf3, 0xb8, 0xf3, 0x2d, 0xee, 0xd2, 0xd3,
+ 0xd9, 0x04, 0x5b, 0x7c, 0x45, 0xf0, 0xd9, 0x0b, 0xea, 0xb3, 0x23, 0x28, 0xf9, 0xe4, 0x77, 0x98,
+ 0xdb, 0x52, 0xb4, 0x78, 0x9b, 0xc9, 0x46, 0x6e, 0x0f, 0x73, 0x53, 0xca, 0x16, 0x6f, 0x33, 0x59,
+ 0xcf, 0xa6, 0x76, 0xa3, 0x2c, 0x6c, 0x66, 0x6d, 0xf3, 0xe7, 0x00, 0x4a, 0x03, 0x02, 0xa8, 0x7c,
+ 0x71, 0xfc, 0xe2, 0xc5, 0xc1, 0x69, 0xfd, 0x03, 0xa4, 0x43, 0xa9, 0xf5, 0xfc, 0xb8, 0x55, 0xd7,
+ 0x58, 0xeb, 0xd4, 0xda, 0xdd, 0xad, 0x17, 0xd0, 0x1c, 0x14, 0x4f, 0x9f, 0xed, 0xd7, 0x8b, 0xe6,
+ 0x14, 0xee, 0x89, 0x6f, 0xe3, 0xb7, 0x30, 0x7d, 0x83, 0xf1, 0xf8, 0xdd, 0xa3, 0x8d, 0xa0, 0xd4,
+ 0xf7, 0xdc, 0x91, 0x8c, 0x34, 0x6f, 0xa3, 0x05, 0x28, 0x50, 0x57, 0xc6, 0xb8, 0x40, 0x5d, 0x73,
+ 0x17, 0xee, 0x27, 0xd5, 0xca, 0x78, 0x7e, 0x02, 0x73, 0xe2, 0x88, 0xfb, 0x0d, 0x6d, 0xa3, 0xb8,
+ 0x59, 0xdb, 0x59, 0x0c, 0x94, 0xee, 0x13, 0x2a, 0xd6, 0x58, 0xc1, 0x0c, 0xf3, 0x1f, 0x05, 0x76,
+ 0xa2, 0xa6, 0x63, 0x39, 0x70, 0xbb, 0xc7, 0x17, 0x6d, 0x43, 0xd9, 0xee, 0x53, 0xec, 0x71, 0x3f,
+ 0x6a, 0x3b, 0x46, 0x53, 0x60, 0x4b, 0x33, 0xc0, 0x96, 0xe6, 0x69, 0x80, 0x2d, 0x96, 0x98, 0x88,
+ 0x76, 0xa0, 0xd2, 0xc1, 0x7d, 0xd7, 0x13, 0x9f, 0xef, 0xe2, 0x25, 0x72, 0x66, 0x98, 0x90, 0xe5,
+ 0x48, 0x42, 0xae, 0x40, 0x75, 0x64, 0x9f, 0xb7, 0xbb, 0xcc, 0xd5, 0x46, 0x85, 0x67, 0x82, 0x3e,
+ 0xb2, 0xcf, 0xb9, 0xeb, 0x2c, 0x8f, 0x6c, 0xc7, 0x69, 0xcc, 0xf1, 0x03, 0xc4, 0x9a, 0xe8, 0x23,
+ 0x98, 0xef, 0x13, 0xcf, 0xa7, 0xed, 0x89, 0xed, 0xe1, 0x31, 0x6d, 0xe8, 0x7c, 0xa8, 0xc6, 0x65,
+ 0x27, 0x5c, 0x64, 0x7e, 0x0a, 0x4b, 0xf1, 0xc0, 0xa9, 0xf3, 0x28, 0xb4, 0x68, 0x5c, 0x8b, 0xe8,
+ 0x98, 0x7f, 0xd3, 0x60, 0x95, 0x4f, 0xff, 0x92, 0x9c, 0x61, 0x6f, 0x40, 0xc6, 0x83, 0x1b, 0x0b,
+ 0xf8, 0x15, 0xb2, 0x25, 0xee, 0xfe, 0x5c, 0xdc, 0xfd, 0xc3, 0x92, 0x5e, 0xaa, 0x97, 0x0f, 0x4b,
+ 0x7a, 0xb9, 0x5e, 0x39, 0x2c, 0xe9, 0x95, 0xfa, 0x9c, 0xd9, 0x86, 0xb5, 0x1c, 0x63, 0xa5, 0x93,
+ 0x6b, 0x00, 0x0e, 0xee, 0xd3, 0x76, 0xd4, 0xd3, 0x2a, 0x93, 0x88, 0x80, 0xae, 0x43, 0xcd, 0x23,
+ 0x83, 0x61, 0x30, 0x2e, 0xf0, 0x17, 0xb8, 0x88, 0x4f, 0x30, 0x7f, 0xd0, 0xa0, 0x1a, 0x1e, 0xf0,
+ 0x0c, 0xf8, 0x5e, 0x06, 0xdd, 0x73, 0x5d, 0xda, 0x56, 0xc7, 0x7b, 0x8e, 0xf5, 0x8f, 0xc5, 0x11,
+ 0x4f, 0xc1, 0xcd, 0x96, 0x84, 0x90, 0x12, 0x87, 0x90, 0x95, 0x14, 0x84, 0x34, 0xf9, 0xdf, 0x08,
+ 0x72, 0x04, 0x98, 0x50, 0x8e, 0x60, 0xc2, 0x1a, 0x80, 0x38, 0x15, 0x5c, 0x6b, 0x85, 0x6b, 0xad,
+ 0x0a, 0x09, 0xd3, 0xbb, 0x02, 0xd5, 0xbe, 0x63, 0xb3, 0x8c, 0xa0, 0x43, 0x1e, 0xc2, 0x79, 0x4b,
+ 0x67, 0x82, 0x13, 0x9b, 0x0e, 0xcd, 0x4f, 0xa0, 0x1a, 0xaa, 0x08, 0xe1, 0xe2, 0x83, 0x10, 0x2e,
+ 0xb4, 0x08, 0x9c, 0x14, 0xcd, 0xbf, 0x6a, 0x70, 0x6f, 0x1f, 0xd3, 0xc0, 0x3a, 0x82, 0xfd, 0xf7,
+ 0x0f, 0xd0, 0xab, 0x50, 0xf5, 0x70, 0x77, 0xea, 0xf9, 0xe4, 0x4c, 0x84, 0x4d, 0xb7, 0x94, 0x80,
+ 0x81, 0x4b, 0xd2, 0x40, 0x05, 0x2e, 0x58, 0x88, 0x92, 0xe0, 0xa2, 0xf0, 0x3a, 0x98, 0x61, 0x0e,
+ 0xa1, 0xfe, 0x9c, 0xf8, 0x74, 0x8f, 0x38, 0xb7, 0xec, 0xa2, 0xf9, 0x14, 0x16, 0x23, 0x9a, 0xd4,
+ 0x49, 0x64, 0xbe, 0x0a, 0x4b, 0xe7, 0x2d, 0xd1, 0x31, 0x09, 0x2c, 0xee, 0x91, 0x71, 0x4f, 0x02,
+ 0xe1, 0xad, 0x5a, 0xf5, 0x4b, 0x40, 0x51, 0x55, 0xd2, 0xac, 0xa7, 0x50, 0x11, 0x59, 0x25, 0xf5,
+ 0x64, 0xc0, 0xb3, 0x9c, 0x60, 0x62, 0x78, 0xc0, 0xdc, 0x0a, 0x80, 0x7e, 0x76, 0x4c, 0x7a, 0xef,
+ 0x6e, 0x71, 0x78, 0x6b, 0x16, 0xe5, 0x69, 0x33, 0xf7, 0xa1, 0x91, 0x56, 0xf3, 0x36, 0xb7, 0x09,
+ 0x85, 0x95, 0xd8, 0x46, 0x16, 0xee, 0x1f, 0xd9, 0x23, 0xfc, 0xee, 0x36, 0xaf, 0xb0, 0x74, 0xed,
+ 0xb7, 0xc7, 0xf6, 0x08, 0xfb, 0xdc, 0x72, 0x1e, 0x66, 0xbe, 0xb9, 0x6f, 0xfe, 0x4f, 0x83, 0xd5,
+ 0x6c, 0xb5, 0xd2, 0x87, 0xad, 0xcb, 0x7d, 0x68, 0x15, 0x1a, 0x5a, 0xe8, 0x07, 0xb2, 0xa0, 0x26,
+ 0xa1, 0xc0, 0xc3, 0x7d, 0xa1, 0xb0, 0xb6, 0xf3, 0x93, 0x60, 0xd1, 0x45, 0xba, 0x9a, 0x62, 0x60,
+ 0x8f, 0x11, 0xb4, 0xbe, 0x25, 0x01, 0xc5, 0xc2, 0x7d, 0xdf, 0x38, 0x85, 0xf9, 0xe8, 0xd8, 0x35,
+ 0xd2, 0x80, 0xa3, 0xa1, 0xf4, 0x5e, 0xe6, 0xd8, 0x9c, 0x74, 0xde, 0xfc, 0x63, 0x01, 0xee, 0xb1,
+ 0x1c, 0x7b, 0xe6, 0x38, 0xef, 0xe5, 0x06, 0x8f, 0x5d, 0x24, 0xc5, 0xc4, 0x3d, 0xca, 0xd8, 0xd7,
+ 0x2b, 0x32, 0x09, 0x98, 0x16, 0x6b, 0xa3, 0x5f, 0x40, 0xd9, 0xf5, 0x7a, 0xd8, 0xe3, 0x50, 0xbb,
+ 0xb0, 0xf3, 0x28, 0xb0, 0x20, 0xd3, 0xe8, 0xe6, 0x31, 0x9b, 0x6a, 0x89, 0x15, 0xe6, 0x13, 0x28,
+ 0xf3, 0x3e, 0x83, 0xd1, 0xa3, 0xe3, 0xa3, 0x5d, 0x09, 0xa8, 0xc7, 0x27, 0xc7, 0x82, 0x89, 0x7d,
+ 0xf9, 0xec, 0x74, 0xb7, 0x5e, 0x60, 0x60, 0x95, 0xdc, 0xec, 0x6d, 0x72, 0xf7, 0xbb, 0x52, 0xf4,
+ 0xb4, 0xde, 0x72, 0x18, 0x43, 0x7e, 0x2c, 0x42, 0x28, 0x3a, 0xe8, 0x3e, 0x54, 0xdc, 0x7e, 0xdf,
+ 0xc7, 0x54, 0x46, 0x50, 0xf6, 0x14, 0x90, 0x95, 0x23, 0x40, 0xc6, 0x66, 0xf7, 0x5d, 0xc7, 0x71,
+ 0xdf, 0xf0, 0xbb, 0x4a, 0xb7, 0x64, 0x8f, 0x5d, 0xbe, 0x2c, 0xf2, 0xed, 0x11, 0xf6, 0x06, 0xd8,
+ 0x97, 0xac, 0x06, 0x98, 0xe8, 0x05, 0x97, 0x30, 0x72, 0xd3, 0x23, 0xbe, 0xdd, 0x71, 0x70, 0xfb,
+ 0x8d, 0xed, 0xbc, 0x0a, 0xc8, 0x8d, 0x94, 0x7d, 0x65, 0x3b, 0xaf, 0x14, 0x51, 0xab, 0x5e, 0x9f,
+ 0xa8, 0xc1, 0x95, 0x89, 0x9a, 0xe4, 0x5d, 0xb5, 0x7c, 0xde, 0x35, 0x9f, 0xe2, 0x5d, 0xcc, 0x6d,
+ 0x7b, 0x4a, 0x87, 0xae, 0xd7, 0xf8, 0x90, 0x07, 0x55, 0xf6, 0xd0, 0x67, 0x41, 0xa2, 0x2d, 0xf0,
+ 0x44, 0xdb, 0x88, 0x26, 0xda, 0x45, 0x59, 0xb6, 0x72, 0x41, 0x96, 0x99, 0x2d, 0xb8, 0x1b, 0x5b,
+ 0xff, 0x36, 0x89, 0x35, 0x0e, 0x98, 0xfa, 0x73, 0x7b, 0x3c, 0x98, 0xda, 0x83, 0xdb, 0xbe, 0x0b,
+ 0xbf, 0x0f, 0x9f, 0xaf, 0x11, 0x85, 0xd2, 0xf0, 0x3d, 0xa8, 0x3a, 0x81, 0x50, 0x9a, 0xbe, 0x19,
+ 0x28, 0xcc, 0x59, 0xd3, 0x0c, 0x24, 0x96, 0x5a, 0x6a, 0xfc, 0x01, 0xf4, 0x40, 0xcc, 0x4e, 0x3d,
+ 0x47, 0x26, 0x41, 0xdf, 0x78, 0x9b, 0x65, 0x2c, 0x2f, 0x22, 0x70, 0xe3, 0x0a, 0x96, 0xe8, 0x08,
+ 0x6a, 0xec, 0xb8, 0x9e, 0x7c, 0xde, 0x8a, 0x0e, 0xe3, 0x5d, 0x7d, 0xe2, 0x60, 0x89, 0x29, 0x2c,
+ 0xf3, 0x3f, 0xb4, 0xaa, 0x4c, 0x22, 0x40, 0x65, 0x09, 0xca, 0x9d, 0x19, 0xc5, 0x3e, 0x07, 0x90,
+ 0x92, 0x25, 0x3a, 0xe6, 0xef, 0xe1, 0x8e, 0x65, 0xbf, 0x69, 0x39, 0x37, 0x72, 0xbb, 0x5c, 0x93,
+ 0x3c, 0x99, 0x1f, 0x43, 0x5d, 0x29, 0x97, 0x91, 0x0d, 0x5e, 0x94, 0x5a, 0xe4, 0x45, 0xf9, 0x77,
+ 0x0d, 0x1a, 0xcf, 0xed, 0xe0, 0xb2, 0xd8, 0x73, 0x3d, 0xc6, 0x15, 0xdf, 0x3f, 0xd7, 0x7b, 0x0a,
+ 0x75, 0x87, 0x50, 0xec, 0xd9, 0x0e, 0x27, 0xaf, 0xfe, 0x04, 0x77, 0x25, 0xe5, 0xbb, 0x23, 0xe5,
+ 0x27, 0x52, 0x6c, 0xee, 0xc1, 0x72, 0x86, 0xc1, 0xd7, 0x27, 0x2e, 0xdf, 0x6b, 0xb0, 0xc6, 0xae,
+ 0x49, 0xb5, 0x99, 0xbf, 0xe7, 0x7a, 0x8c, 0x22, 0xde, 0xbc, 0xfb, 0xd5, 0xeb, 0xd4, 0x22, 0x32,
+ 0xb0, 0xb6, 0x1c, 0xc3, 0xda, 0xac, 0x60, 0x55, 0xb2, 0x83, 0xf5, 0x5f, 0x0d, 0x1e, 0xe6, 0x39,
+ 0x29, 0x43, 0x76, 0x94, 0x04, 0x8a, 0x9f, 0x45, 0x49, 0x44, 0xfe, 0x42, 0x45, 0x23, 0xb8, 0x34,
+ 0xd8, 0xc4, 0xc0, 0xf0, 0x61, 0x6c, 0x24, 0xf2, 0x4d, 0x0a, 0x97, 0xb1, 0x88, 0x35, 0x00, 0xe6,
+ 0x51, 0x5b, 0x9c, 0xa6, 0x12, 0x8f, 0x50, 0x95, 0x49, 0x5a, 0x4c, 0x70, 0x58, 0xd2, 0xb5, 0x7a,
+ 0xe1, 0xb0, 0xa4, 0x17, 0xeb, 0x25, 0xf3, 0xdf, 0x21, 0x84, 0xf8, 0xad, 0xd9, 0x0b, 0xec, 0xfb,
+ 0xec, 0xf8, 0xdf, 0x6a, 0xde, 0xaa, 0xcf, 0x51, 0x4c, 0x5e, 0x7d, 0x19, 0x1f, 0x2f, 0xeb, 0x85,
+ 0xbf, 0x04, 0xe5, 0xd7, 0x53, 0xec, 0xcd, 0xe4, 0xcb, 0x4d, 0x74, 0x18, 0xb5, 0x4d, 0x3b, 0xf2,
+ 0x36, 0x28, 0xee, 0xc2, 0xfa, 0x1e, 0x71, 0x28, 0xf6, 0x5e, 0x0e, 0x6d, 0xff, 0x2b, 0x42, 0x87,
+ 0x2f, 0xc9, 0x60, 0x6c, 0xd3, 0xa9, 0x87, 0x6f, 0xe6, 0x09, 0xef, 0x0f, 0xed, 0x80, 0xd9, 0xf2,
+ 0xb6, 0xf9, 0x19, 0x6c, 0xe4, 0x2b, 0x54, 0xa0, 0xc3, 0xd7, 0x69, 0x91, 0x75, 0x67, 0xb0, 0xb6,
+ 0x7b, 0x4e, 0x3d, 0xbb, 0x2b, 0x5d, 0x08, 0x97, 0xdd, 0x08, 0x0b, 0x97, 0xb4, 0x38, 0x7c, 0x96,
+ 0xeb, 0x42, 0x70, 0xd0, 0x33, 0xdb, 0xf0, 0x30, 0x4f, 0xaf, 0xb4, 0x76, 0x15, 0xaa, 0x7e, 0x20,
+ 0x94, 0x38, 0xa9, 0x04, 0x9c, 0xb6, 0x90, 0xc1, 0x18, 0xf7, 0xda, 0x14, 0x9f, 0x53, 0x99, 0x20,
+ 0x20, 0x44, 0xa7, 0xf8, 0x9c, 0x9a, 0x53, 0x30, 0xf6, 0x71, 0x72, 0xf3, 0x1b, 0x08, 0xbe, 0x7a,
+ 0xf7, 0x93, 0x9e, 0x2f, 0x9f, 0x45, 0xd5, 0xc0, 0x2d, 0xdf, 0x9c, 0xc1, 0x4a, 0xa6, 0x5a, 0xe9,
+ 0x54, 0x2c, 0x26, 0x5a, 0x3c, 0x26, 0x71, 0x8f, 0x0b, 0x97, 0x78, 0x5c, 0x4c, 0x79, 0xec, 0x43,
+ 0x23, 0x54, 0x2d, 0x93, 0xf7, 0xf6, 0xfd, 0xb5, 0x60, 0x39, 0x43, 0xe9, 0x55, 0xbc, 0x6d, 0xc0,
+ 0xdc, 0x48, 0x2c, 0x08, 0x5e, 0x29, 0xb2, 0xbb, 0xf3, 0xcf, 0x3b, 0x01, 0x6e, 0xbd, 0xc4, 0xde,
+ 0x19, 0xe9, 0x62, 0xf4, 0x1b, 0xa8, 0x27, 0x2b, 0xda, 0x68, 0x3d, 0xce, 0x44, 0x52, 0xc5, 0x77,
+ 0x63, 0x23, 0x7f, 0x82, 0xb0, 0xcf, 0xac, 0xfc, 0xf0, 0xe7, 0xcd, 0x82, 0x5e, 0x40, 0x87, 0xd1,
+ 0xf2, 0x52, 0x23, 0xa3, 0xa4, 0x2c, 0x36, 0x5c, 0xce, 0x2d, 0x36, 0x07, 0x3b, 0x6d, 0x6b, 0xe8,
+ 0x6b, 0x58, 0x88, 0x57, 0x5a, 0xd1, 0x5a, 0xdc, 0x8e, 0x44, 0xe1, 0xd7, 0x78, 0x98, 0x37, 0x9c,
+ 0xda, 0xfa, 0xd7, 0xec, 0x4d, 0xa8, 0x6a, 0x88, 0x68, 0x45, 0xad, 0x4c, 0x95, 0x64, 0x8d, 0xd5,
+ 0xec, 0xc1, 0x84, 0xe7, 0x0e, 0xdc, 0xcb, 0x2c, 0xdd, 0xa1, 0xc7, 0xb1, 0xe5, 0x39, 0x65, 0x48,
+ 0xe3, 0xc9, 0x25, 0xb3, 0x12, 0xda, 0xbe, 0x86, 0x85, 0x78, 0xa1, 0x48, 0xc5, 0x26, 0xb3, 0xc2,
+ 0xa5, 0x62, 0x93, 0x5d, 0x5f, 0x8a, 0xc4, 0xe6, 0x10, 0xaa, 0x61, 0x49, 0x47, 0x7d, 0xc2, 0x64,
+ 0x3d, 0x49, 0x7d, 0xc2, 0x54, 0xfd, 0x27, 0xb2, 0xd7, 0xaf, 0x00, 0x14, 0x8d, 0x47, 0xcb, 0xe9,
+ 0xa7, 0x41, 0xb0, 0x9b, 0x91, 0x35, 0x94, 0xf0, 0xf9, 0x08, 0x6a, 0x91, 0xdf, 0xa0, 0x90, 0x11,
+ 0xff, 0xda, 0xd1, 0x1f, 0xc1, 0x8c, 0x95, 0xcc, 0xb1, 0x74, 0x0c, 0xe3, 0xef, 0x57, 0x15, 0xc3,
+ 0xcc, 0x47, 0xb2, 0x8a, 0x61, 0xf6, 0xb3, 0x37, 0xe2, 0xf7, 0x09, 0xd4, 0x22, 0xcf, 0x17, 0x64,
+ 0xe4, 0xbf, 0x89, 0x94, 0xa9, 0x19, 0xef, 0x9d, 0xc8, 0x8e, 0xdf, 0xc0, 0x9d, 0xc4, 0x3b, 0x01,
+ 0x3d, 0xcc, 0x7d, 0x40, 0x88, 0x9d, 0xd7, 0x2f, 0x79, 0x60, 0x84, 0x81, 0xd8, 0x07, 0x3d, 0xa0,
+ 0xd5, 0xe8, 0x41, 0x08, 0x65, 0x71, 0x96, 0x6f, 0x34, 0xd2, 0x03, 0x29, 0x23, 0x7f, 0x0b, 0x8b,
+ 0x29, 0x16, 0x8b, 0x42, 0xf0, 0xc8, 0x63, 0xe4, 0xc6, 0x47, 0x17, 0xcc, 0x48, 0x98, 0xfa, 0x1a,
+ 0xee, 0x67, 0x13, 0x38, 0xf4, 0xe4, 0x32, 0x82, 0x27, 0x74, 0x7d, 0x7c, 0x35, 0x1e, 0x18, 0x71,
+ 0xaa, 0x1d, 0x20, 0xa6, 0x62, 0x32, 0x49, 0xc4, 0x4c, 0x91, 0xb5, 0x24, 0x62, 0xa6, 0x49, 0x50,
+ 0x5c, 0x41, 0xb2, 0x0a, 0xa8, 0x14, 0xe4, 0x94, 0x21, 0x95, 0x82, 0xbc, 0x02, 0x62, 0x44, 0xc1,
+ 0x2b, 0x58, 0xca, 0x2a, 0x9d, 0xa1, 0x47, 0x17, 0x17, 0xd6, 0x84, 0xa2, 0xc7, 0x57, 0xa9, 0xbe,
+ 0x45, 0x94, 0xcd, 0xa0, 0x91, 0x47, 0x9f, 0xd0, 0x8f, 0x54, 0xae, 0x5f, 0xc8, 0xe8, 0x8c, 0xcd,
+ 0xcb, 0x27, 0xc6, 0x15, 0x6f, 0x6a, 0xdb, 0x1a, 0x1a, 0xc2, 0xdd, 0x0c, 0xc6, 0x80, 0xcc, 0x08,
+ 0xf4, 0xe5, 0xb0, 0x18, 0xe3, 0xd1, 0x85, 0x73, 0x52, 0x4e, 0x76, 0x60, 0x31, 0x75, 0x57, 0xab,
+ 0x44, 0xcf, 0xe3, 0x0e, 0x2a, 0xd1, 0x73, 0x2f, 0x7a, 0xa5, 0xa3, 0xb5, 0xfd, 0x0d, 0x9b, 0xed,
+ 0xd8, 0x9d, 0x66, 0xd7, 0x1d, 0x6d, 0x89, 0xe6, 0x8f, 0x5d, 0x6f, 0xb0, 0x25, 0xf6, 0x10, 0xff,
+ 0x17, 0xb0, 0x35, 0x70, 0x65, 0x7f, 0xd2, 0xe9, 0x54, 0xb8, 0xe8, 0xa7, 0xff, 0x0f, 0x00, 0x00,
+ 0xff, 0xff, 0x90, 0xe2, 0x92, 0x43, 0x6a, 0x20, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/ruby/proto/gitaly/commit_pb.rb b/ruby/proto/gitaly/commit_pb.rb
index 1aa089466..d8511a5a7 100644
--- a/ruby/proto/gitaly/commit_pb.rb
+++ b/ruby/proto/gitaly/commit_pb.rb
@@ -205,6 +205,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
optional :path, :bytes, 3
optional :limit, :int32, 4
optional :offset, :int32, 5
+ optional :literal_pathspec, :bool, 6
end
add_message "gitaly.ListLastCommitsForTreeResponse" do
repeated :commits, :message, 1, "gitaly.ListLastCommitsForTreeResponse.CommitForTree"