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:
authorPavlo Strokov <pstrokov@gitlab.com>2020-08-12 18:28:33 +0300
committerPavlo Strokov <pstrokov@gitlab.com>2020-08-13 21:55:01 +0300
commit01ed3c29a22c7e84f4e1024e71f09f3ef67a61f1 (patch)
tree4f1d35591e2907c2fd0324a1a3ed5a09313155c6
parent1fc116768ec27739965f6394d2fd2eddea22f621 (diff)
Prune objects older then 24h on garbage collection
By default the dangling objects remain in the object storage for 2 weeks. This could be an issue if there are large files or sensitive data being removed, but not fully deleted from storage. The new configuration parameter `prune` for `GarbageCollect` RPC results to execution of `gc` with additional configuration option for `prune` command executed as part of the garbage collection process. It removes all dangling objects from the storage that are older then 24h. Closes: https://gitlab.com/gitlab-org/gitaly/-/issues/2919
-rw-r--r--changelogs/unreleased/ps-gc-prune-expire.yml5
-rw-r--r--internal/service/repository/gc.go8
-rw-r--r--internal/service/repository/gc_test.go45
-rw-r--r--internal/testhelper/testhelper.go4
-rw-r--r--proto/go/gitalypb/repository-service.pb.go405
-rw-r--r--proto/repository-service.proto6
-rw-r--r--ruby/proto/gitaly/repository-service_pb.rb1
7 files changed, 277 insertions, 197 deletions
diff --git a/changelogs/unreleased/ps-gc-prune-expire.yml b/changelogs/unreleased/ps-gc-prune-expire.yml
new file mode 100644
index 000000000..ce47e600e
--- /dev/null
+++ b/changelogs/unreleased/ps-gc-prune-expire.yml
@@ -0,0 +1,5 @@
+---
+title: Prune objects older than 24h on garbage collection
+merge_request: 2469
+author:
+type: added
diff --git a/internal/service/repository/gc.go b/internal/service/repository/gc.go
index 8dfa3890f..b333b8766 100644
--- a/internal/service/repository/gc.go
+++ b/internal/service/repository/gc.go
@@ -65,9 +65,15 @@ func (s *server) GarbageCollect(ctx context.Context, in *gitalypb.GarbageCollect
func gc(ctx context.Context, in *gitalypb.GarbageCollectRequest) error {
args := repackConfig(ctx, in.CreateBitmap)
+ var flags []git.Option
+ if in.Prune {
+ flags = append(flags, git.Flag{Name: "--prune=24.hours.ago"})
+ }
+
cmd, err := git.SafeCmd(ctx, in.GetRepository(), args,
- git.SubCmd{Name: "gc"},
+ git.SubCmd{Name: "gc", Flags: flags},
)
+
if err != nil {
if git.IsInvalidArgErr(err) {
return helper.ErrInvalidArgumentf("GarbageCollect: gitCommand: %v", err)
diff --git a/internal/service/repository/gc_test.go b/internal/service/repository/gc_test.go
index a0ba9c251..8786522f3 100644
--- a/internal/service/repository/gc_test.go
+++ b/internal/service/repository/gc_test.go
@@ -122,6 +122,51 @@ func TestGarbageCollectSuccess(t *testing.T) {
}
}
+func TestGarbageCollectWithPrune(t *testing.T) {
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ serverSocketPath, stop := runRepoServer(t)
+ defer stop()
+
+ client, conn := newRepositoryClient(t, serverSocketPath)
+ defer conn.Close()
+
+ testRepo, repoPath, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ blobHashes := testhelper.WriteBlobs(t, repoPath, 3)
+ oldDanglingObjFile := filepath.Join(repoPath, "objects", blobHashes[0][:2], blobHashes[0][2:])
+ newDanglingObjFile := filepath.Join(repoPath, "objects", blobHashes[1][:2], blobHashes[1][2:])
+ oldReferencedObjFile := filepath.Join(repoPath, "objects", blobHashes[2][:2], blobHashes[2][2:])
+
+ // create a reference to the blob, so it should not be removed by gc
+ testhelper.CommitBlobWithName(t, repoPath, blobHashes[2], t.Name(), t.Name())
+
+ // change modification time of the blobs to make them attractive for the gc
+ aBitMoreThan24HoursAgo := time.Now().Add(-24*time.Hour - time.Second)
+ farAgo := time.Date(2015, 1, 1, 1, 1, 1, 1, time.UTC)
+ require.NoError(t, os.Chtimes(oldDanglingObjFile, aBitMoreThan24HoursAgo, aBitMoreThan24HoursAgo))
+ require.NoError(t, os.Chtimes(newDanglingObjFile, time.Now(), time.Now()))
+ require.NoError(t, os.Chtimes(oldReferencedObjFile, farAgo, farAgo))
+
+ // Prune option has no effect when disabled
+ c, err := client.GarbageCollect(ctx, &gitalypb.GarbageCollectRequest{Repository: testRepo, Prune: false})
+ require.NoError(t, err)
+ require.NotNil(t, c)
+ require.FileExists(t, oldDanglingObjFile, "blob should not be removed from object storage as it was modified less then 2 weeks ago")
+
+ // Prune option has effect when enabled
+ c, err = client.GarbageCollect(ctx, &gitalypb.GarbageCollectRequest{Repository: testRepo, Prune: true})
+ require.NoError(t, err)
+ require.NotNil(t, c)
+
+ _, err = os.Stat(oldDanglingObjFile)
+ require.True(t, os.IsNotExist(err), "blob should be removed from object storage as it is too old and there are no references to it")
+ require.FileExists(t, newDanglingObjFile, "blob should not be removed from object storage as it is fresh enough despite there are no references to it")
+ require.FileExists(t, oldReferencedObjFile, "blob should not be removed from object storage as it is referenced by something despite it is too old")
+}
+
func TestGarbageCollectLogStatistics(t *testing.T) {
defer func(tl func(tb testing.TB) *logrus.Logger) {
testhelper.NewTestLogger = tl
diff --git a/internal/testhelper/testhelper.go b/internal/testhelper/testhelper.go
index ee1562b01..16084860d 100644
--- a/internal/testhelper/testhelper.go
+++ b/internal/testhelper/testhelper.go
@@ -212,6 +212,10 @@ func RequireGrpcError(t testing.TB, err error, expectedCode codes.Code) {
// MustRunCommand runs a command with an optional standard input and returns the standard output, or fails.
func MustRunCommand(t testing.TB, stdin io.Reader, name string, args ...string) []byte {
+ if t != nil {
+ t.Helper()
+ }
+
cmd := exec.Command(name, args...)
if name == "git" {
diff --git a/proto/go/gitalypb/repository-service.pb.go b/proto/go/gitalypb/repository-service.pb.go
index e868f994a..bc67597b9 100644
--- a/proto/go/gitalypb/repository-service.pb.go
+++ b/proto/go/gitalypb/repository-service.pb.go
@@ -322,11 +322,17 @@ func (m *RepackFullResponse) XXX_DiscardUnknown() {
var xxx_messageInfo_RepackFullResponse proto.InternalMessageInfo
type GarbageCollectRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
- CreateBitmap bool `protobuf:"varint,2,opt,name=create_bitmap,json=createBitmap,proto3" json:"create_bitmap,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
+ CreateBitmap bool `protobuf:"varint,2,opt,name=create_bitmap,json=createBitmap,proto3" json:"create_bitmap,omitempty"`
+ // If set to 'true' the 'gc' will be triggered with '--prune=24.hours.ago' flag.
+ // This will remove dangling objects from the object storage that were not modified in the last 24 hours.
+ // If 'false' provided the 'gc' will rely on the default expiration period (2 weeks).
+ // The window of 24 hours exists because of possible concurrent operations running on the same
+ // storage and removal of the objects may cause races and fail concurrent operations.
+ Prune bool `protobuf:"varint,3,opt,name=prune,proto3" json:"prune,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
func (m *GarbageCollectRequest) Reset() { *m = GarbageCollectRequest{} }
@@ -368,6 +374,13 @@ func (m *GarbageCollectRequest) GetCreateBitmap() bool {
return false
}
+func (m *GarbageCollectRequest) GetPrune() bool {
+ if m != nil {
+ return m.Prune
+ }
+ return false
+}
+
type GarbageCollectResponse struct {
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
@@ -4004,198 +4017,198 @@ func init() {
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor_e9b1768cf174c79b) }
var fileDescriptor_e9b1768cf174c79b = []byte{
- // 3044 bytes of a gzipped FileDescriptorProto
+ // 3054 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, 0x2d, 0x53, 0xb2, 0x74, 0x80, 0xe3, 0x73, 0x0e, 0x0e, 0x0e, 0x78, 0x27, 0x75, 0x21,
- 0xe9, 0x21, 0x75, 0x0c, 0x0b, 0x30, 0xd6, 0xb3, 0xb3, 0xbd, 0xdc, 0x09, 0x67, 0xa7, 0x57, 0x3d,
- 0xbd, 0xa2, 0x68, 0x20, 0x0f, 0x09, 0x90, 0x57, 0x03, 0x01, 0x82, 0x38, 0x8f, 0x79, 0xce, 0x2f,
- 0xc8, 0x4b, 0x12, 0xe4, 0x25, 0xff, 0xc1, 0x7f, 0x21, 0x3f, 0x21, 0x4f, 0x41, 0x5f, 0x66, 0x7a,
- 0xae, 0x6b, 0x05, 0x5c, 0x38, 0x6f, 0xd3, 0xd5, 0xdd, 0x55, 0xd5, 0xd5, 0x55, 0xdd, 0x5d, 0x5f,
- 0x0d, 0x34, 0x29, 0x1e, 0x90, 0xc0, 0x65, 0x84, 0x5e, 0x7c, 0x1a, 0x60, 0xfa, 0xd6, 0x75, 0xf0,
- 0xda, 0x80, 0x12, 0x46, 0x50, 0xf9, 0xd4, 0x65, 0xb6, 0x77, 0x61, 0x80, 0xe7, 0xfa, 0x4c, 0xd2,
- 0x8c, 0x7a, 0xd0, 0xb3, 0x29, 0xee, 0xc8, 0x96, 0x79, 0x0c, 0x8b, 0x56, 0x34, 0x7b, 0xfb, 0x9d,
- 0x1b, 0xb0, 0xc0, 0xc2, 0x6f, 0x86, 0x38, 0x60, 0xe8, 0x73, 0x00, 0xcd, 0xb8, 0x59, 0xba, 0x5d,
- 0x7a, 0x30, 0xf3, 0x04, 0xad, 0x49, 0x8e, 0x6b, 0x7a, 0xd2, 0xc6, 0xd4, 0xef, 0xfe, 0xf6, 0xb0,
- 0x64, 0xc5, 0xc6, 0x9a, 0x4f, 0xa0, 0x99, 0x65, 0x1a, 0x0c, 0x88, 0x1f, 0x60, 0xb4, 0x00, 0x65,
- 0x2c, 0x28, 0x82, 0x63, 0xd5, 0x52, 0x2d, 0xf3, 0x44, 0xcc, 0xb1, 0x9d, 0xb3, 0x7d, 0xdf, 0xa1,
- 0xb8, 0x8f, 0x7d, 0x66, 0x7b, 0x97, 0xd7, 0xe4, 0x26, 0x2c, 0xe5, 0x70, 0x95, 0xaa, 0x98, 0x14,
- 0x66, 0x65, 0xe7, 0xce, 0xd0, 0xbb, 0xbc, 0x2c, 0x74, 0x17, 0xae, 0x3a, 0x14, 0xdb, 0x0c, 0xb7,
- 0xda, 0x2e, 0xeb, 0xdb, 0x83, 0xe6, 0x84, 0x58, 0x60, 0x5d, 0x12, 0x37, 0x04, 0xcd, 0x9c, 0x07,
- 0x14, 0x97, 0xa9, 0x34, 0x79, 0x0b, 0x37, 0x76, 0x6d, 0xda, 0xb6, 0x4f, 0xf1, 0x26, 0xf1, 0x3c,
- 0xec, 0xb0, 0x9f, 0x48, 0x9b, 0x26, 0x2c, 0xa4, 0xe5, 0x2a, 0x8d, 0x8e, 0x61, 0xf1, 0x4b, 0xea,
- 0x32, 0xbc, 0x49, 0xfa, 0x7d, 0x97, 0xed, 0x52, 0x7b, 0xd0, 0xbb, 0xfc, 0x6e, 0x18, 0xd0, 0xcc,
- 0x32, 0x55, 0x02, 0x9f, 0xc1, 0xb5, 0x4d, 0x0f, 0xdb, 0xfe, 0x70, 0x70, 0x79, 0x39, 0xb3, 0x70,
- 0x3d, 0xe2, 0xa5, 0xd8, 0x7f, 0x01, 0x37, 0xf4, 0x94, 0x63, 0xf7, 0x5b, 0x7c, 0x79, 0x29, 0x0f,
- 0x61, 0x21, 0xcd, 0x52, 0xf9, 0x38, 0x82, 0xa9, 0xc0, 0xfd, 0x16, 0x0b, 0x6e, 0x93, 0x96, 0xf8,
- 0x36, 0xdf, 0xc0, 0xd2, 0xfa, 0x60, 0xe0, 0x5d, 0xec, 0xba, 0xcc, 0x66, 0x8c, 0xba, 0xed, 0x21,
- 0xc3, 0x97, 0x0f, 0x35, 0x64, 0x40, 0x95, 0xe2, 0xb7, 0x6e, 0xe0, 0x12, 0x5f, 0xec, 0x70, 0xdd,
- 0x8a, 0xda, 0xe6, 0x32, 0x18, 0x79, 0x22, 0x95, 0x45, 0xfe, 0x32, 0x01, 0x68, 0x07, 0x33, 0xa7,
- 0x67, 0xe1, 0x3e, 0x61, 0x97, 0xb7, 0x07, 0x8f, 0x6c, 0x2a, 0x58, 0x09, 0x45, 0x6a, 0x96, 0x6a,
- 0xa1, 0x79, 0x98, 0xee, 0x12, 0xea, 0xe0, 0xe6, 0xa4, 0xf0, 0x40, 0xd9, 0x40, 0x8b, 0x50, 0xf1,
- 0x49, 0x8b, 0xd9, 0xa7, 0x41, 0x73, 0x4a, 0x1e, 0x04, 0x3e, 0x39, 0xb1, 0x4f, 0x03, 0xd4, 0x84,
- 0x0a, 0x73, 0xfb, 0x98, 0x0c, 0x59, 0x73, 0xfa, 0x76, 0xe9, 0xc1, 0xb4, 0x15, 0x36, 0xf9, 0x94,
- 0x20, 0xe8, 0xb5, 0xce, 0xf0, 0x45, 0xb3, 0x2c, 0x25, 0x04, 0x41, 0xef, 0x39, 0xbe, 0x40, 0xab,
- 0x30, 0x73, 0xe6, 0x93, 0x73, 0xbf, 0xd5, 0x23, 0xfc, 0x60, 0xa9, 0x88, 0x4e, 0x10, 0xa4, 0x3d,
- 0x4e, 0x41, 0x4b, 0x50, 0xf5, 0x49, 0x6b, 0x40, 0x87, 0x3e, 0x6e, 0xd6, 0x84, 0xb4, 0x8a, 0x4f,
- 0x8e, 0x78, 0x13, 0x3d, 0x85, 0xab, 0x52, 0xcf, 0xd6, 0xc0, 0xa6, 0x76, 0x3f, 0x68, 0x82, 0x58,
- 0xf2, 0x35, 0xbd, 0x64, 0x61, 0x9d, 0xba, 0x1c, 0x74, 0x24, 0xc6, 0x3c, 0x9b, 0xaa, 0x56, 0x1b,
- 0x35, 0xf3, 0x06, 0xcc, 0x25, 0x0c, 0xa8, 0x43, 0x67, 0x53, 0x04, 0x99, 0xb6, 0xd6, 0x58, 0x42,
- 0x27, 0xcb, 0x54, 0x09, 0xfc, 0xf3, 0x04, 0xcc, 0xee, 0x62, 0xb6, 0x4e, 0x9d, 0x9e, 0xfb, 0x76,
- 0x0c, 0x1b, 0x79, 0x13, 0x6a, 0x8e, 0x88, 0xd0, 0x96, 0xdb, 0x51, 0x7b, 0x59, 0x95, 0x84, 0xfd,
- 0x0e, 0xdf, 0xe5, 0x01, 0xc5, 0x5d, 0xf7, 0x9d, 0xd8, 0xce, 0x9a, 0xa5, 0x5a, 0xe8, 0x73, 0x28,
- 0x77, 0x09, 0xed, 0xdb, 0x4c, 0x6c, 0xe7, 0xb5, 0x27, 0xb7, 0x43, 0x51, 0x19, 0xcd, 0xd6, 0x76,
- 0xc4, 0x38, 0x4b, 0x8d, 0xe7, 0xd1, 0x32, 0xb0, 0x59, 0x4f, 0xec, 0x76, 0xdd, 0x12, 0xdf, 0xdc,
- 0x09, 0xf0, 0x3b, 0xc7, 0x1b, 0x76, 0x70, 0xb3, 0x7c, 0x7b, 0xf2, 0x41, 0xdd, 0x0a, 0x9b, 0x68,
- 0x05, 0x00, 0x7b, 0x6e, 0x87, 0x6f, 0x17, 0xeb, 0x89, 0xad, 0xae, 0x5a, 0x35, 0x41, 0x39, 0xb2,
- 0x59, 0xcf, 0x7c, 0x0a, 0x65, 0xc9, 0x1e, 0x55, 0x60, 0xf2, 0xf5, 0xfe, 0x51, 0xe3, 0x0a, 0xff,
- 0x38, 0x59, 0xb7, 0x1a, 0x25, 0x04, 0x50, 0x3e, 0x59, 0xb7, 0x5a, 0xbb, 0xaf, 0x1b, 0x13, 0x68,
- 0x06, 0x2a, 0xfc, 0x7b, 0xe3, 0xf5, 0x93, 0xc6, 0xa4, 0xf9, 0x00, 0x50, 0x5c, 0x4b, 0x1d, 0xc5,
- 0x1d, 0x9b, 0xd9, 0xc2, 0x74, 0x75, 0x4b, 0x7c, 0xf3, 0xbd, 0xdd, 0xb3, 0x83, 0x17, 0xc4, 0xb1,
- 0xbd, 0x0d, 0x6a, 0xfb, 0x4e, 0x6f, 0x0c, 0x31, 0x6c, 0x3e, 0x86, 0x66, 0x96, 0xa9, 0x52, 0x62,
- 0x1e, 0xa6, 0xdf, 0xda, 0xde, 0x10, 0xab, 0xdb, 0x52, 0x36, 0xcc, 0x1f, 0x4a, 0xd0, 0x14, 0xae,
- 0x77, 0x4c, 0x86, 0xd4, 0xc1, 0x72, 0xd6, 0xe5, 0x37, 0xfe, 0xff, 0x60, 0x36, 0x10, 0x0c, 0x5b,
- 0x31, 0x06, 0x13, 0x45, 0x0c, 0xac, 0x86, 0x1c, 0x6c, 0x25, 0x2e, 0x1d, 0xc5, 0xa0, 0x2d, 0x54,
- 0x12, 0x3e, 0x52, 0xb7, 0xea, 0x41, 0x4c, 0x4d, 0xbe, 0x83, 0xcc, 0xa6, 0xa7, 0x98, 0xb5, 0x28,
- 0xee, 0x0a, 0x6f, 0xa9, 0x5b, 0x35, 0x49, 0xb1, 0x70, 0xd7, 0x7c, 0x0a, 0x4b, 0x39, 0x4b, 0xd3,
- 0xaf, 0x07, 0x8a, 0x83, 0xa1, 0xc7, 0xc2, 0xd7, 0x83, 0x6c, 0x99, 0xbb, 0x30, 0xb3, 0x13, 0x38,
- 0x67, 0x97, 0xdf, 0x8b, 0x7b, 0x50, 0x97, 0x8c, 0xb4, 0xfd, 0x31, 0xa5, 0x84, 0x2a, 0x2f, 0x90,
- 0x0d, 0xf3, 0x8f, 0x25, 0xb8, 0x2e, 0x6e, 0x32, 0x0b, 0x77, 0x2f, 0x6f, 0xf6, 0x06, 0x4c, 0x72,
- 0x4b, 0xc8, 0xe3, 0x9b, 0x7f, 0x26, 0x4e, 0xf5, 0xc9, 0xe4, 0xa9, 0x8e, 0xee, 0x40, 0x9d, 0x78,
- 0x9d, 0x56, 0xd4, 0x2f, 0x0d, 0x38, 0x43, 0xbc, 0x8e, 0x15, 0x0e, 0x89, 0x4e, 0xdc, 0xe9, 0xd8,
- 0x89, 0xfb, 0x6c, 0xaa, 0x5a, 0x6e, 0x54, 0xcc, 0x26, 0x34, 0xb4, 0xe6, 0x72, 0x91, 0xcf, 0xa6,
- 0xaa, 0xa5, 0xc6, 0x84, 0xe9, 0xc3, 0xfc, 0x8e, 0xeb, 0x77, 0x5e, 0x62, 0x7a, 0x8a, 0x37, 0xec,
- 0x60, 0x0c, 0x07, 0xc9, 0x32, 0xd4, 0x42, 0x35, 0x83, 0xe6, 0x84, 0x88, 0x63, 0x4d, 0x30, 0x3f,
- 0x81, 0x1b, 0x29, 0x79, 0x3a, 0xf0, 0xda, 0x76, 0x20, 0x5d, 0xbe, 0x66, 0x89, 0x6f, 0xf3, 0xbb,
- 0x12, 0xcc, 0xca, 0x03, 0x70, 0x87, 0xd0, 0xb3, 0x7f, 0xbf, 0xab, 0xf3, 0x87, 0x5c, 0x5c, 0x9f,
- 0xe8, 0x49, 0xb9, 0xb4, 0x1f, 0x58, 0x98, 0xab, 0xbc, 0xef, 0x1f, 0x51, 0x72, 0x4a, 0x71, 0x10,
- 0x8c, 0xe5, 0x44, 0xa6, 0x82, 0x69, 0xec, 0x44, 0x96, 0x84, 0xfd, 0x8e, 0xf9, 0xbf, 0x60, 0xe4,
- 0xc9, 0x54, 0xc6, 0x5c, 0x85, 0x19, 0xd7, 0x6f, 0x0d, 0x14, 0x59, 0x85, 0x0d, 0xb8, 0xd1, 0x40,
- 0xa9, 0xf2, 0xf1, 0x9b, 0xa1, 0x1d, 0xf4, 0xc6, 0xac, 0x72, 0x20, 0x98, 0xc6, 0x54, 0x96, 0x84,
- 0x50, 0xe5, 0xac, 0xcc, 0xf7, 0x55, 0xd9, 0x83, 0x5b, 0xe9, 0xcb, 0x70, 0x87, 0x92, 0xfe, 0x2b,
- 0xeb, 0xc5, 0x58, 0x82, 0x71, 0x48, 0x3d, 0xa5, 0x31, 0xff, 0x34, 0xef, 0xc0, 0x6a, 0xa1, 0x34,
- 0xb5, 0xed, 0x87, 0x30, 0x27, 0x87, 0x6c, 0x0c, 0xfd, 0x8e, 0x37, 0x86, 0xb7, 0xe5, 0xc7, 0x30,
- 0x9f, 0x64, 0x38, 0xe2, 0x4e, 0xfa, 0x6e, 0x02, 0x1a, 0xc7, 0x98, 0x6d, 0x12, 0xbf, 0xeb, 0x9e,
- 0x5e, 0xde, 0x00, 0x9f, 0x43, 0x05, 0xfb, 0x8c, 0xba, 0x58, 0x86, 0xec, 0xcc, 0x93, 0x5b, 0xe1,
- 0xb4, 0xb4, 0x90, 0xb5, 0x6d, 0x9f, 0xd1, 0x0b, 0x2b, 0x1c, 0x6e, 0xfc, 0xaa, 0x04, 0xd3, 0x82,
- 0xc4, 0x8d, 0xc8, 0x5f, 0x69, 0x32, 0x80, 0xf9, 0x27, 0x5a, 0x81, 0x9a, 0xb8, 0xba, 0x5a, 0x01,
- 0xa3, 0xd2, 0xb8, 0x7b, 0x57, 0xac, 0xaa, 0x20, 0x1d, 0x33, 0x8a, 0xee, 0xc0, 0x8c, 0xec, 0x76,
- 0x7d, 0xf6, 0xf4, 0x89, 0x38, 0xf3, 0xa6, 0xf7, 0xae, 0x58, 0x20, 0x88, 0xfb, 0x9c, 0x86, 0x56,
- 0x41, 0xb6, 0x5a, 0x6d, 0x42, 0x3c, 0xf9, 0x66, 0xdc, 0xbb, 0x62, 0x49, 0xae, 0x1b, 0x84, 0x78,
- 0x1b, 0x15, 0x75, 0x55, 0x9a, 0x73, 0x30, 0x1b, 0x53, 0x55, 0x6d, 0x91, 0x03, 0x73, 0x5b, 0xd8,
- 0xc3, 0x3c, 0xf9, 0x18, 0x8f, 0x9d, 0x10, 0x4c, 0x9d, 0xe1, 0x0b, 0x69, 0xa4, 0x9a, 0x25, 0xbe,
- 0xcd, 0x05, 0x98, 0x4f, 0x0a, 0x51, 0xc2, 0x5d, 0x9e, 0x86, 0x06, 0x8c, 0x50, 0xbc, 0x39, 0x0c,
- 0x18, 0xe9, 0xef, 0x11, 0x72, 0x16, 0x8c, 0x45, 0x05, 0xe1, 0x0d, 0x13, 0x31, 0x6f, 0x58, 0x06,
- 0x23, 0x4f, 0x94, 0x52, 0xe4, 0x04, 0x9a, 0x1b, 0xb6, 0x73, 0x36, 0x1c, 0x8c, 0x53, 0x0f, 0xf3,
- 0x11, 0x2c, 0xe5, 0x70, 0x1d, 0xe1, 0xb2, 0x6f, 0xe0, 0x4e, 0x5e, 0x48, 0x8d, 0x29, 0x7a, 0x72,
- 0xed, 0x72, 0x0f, 0xcc, 0x51, 0x22, 0x95, 0x7d, 0x0e, 0x00, 0xf1, 0x3b, 0xe9, 0x85, 0xeb, 0x60,
- 0x7f, 0x0c, 0x37, 0xa0, 0xb9, 0x09, 0x73, 0x09, 0x7e, 0xca, 0x26, 0x0f, 0x01, 0x79, 0x92, 0xd4,
- 0x0a, 0x7a, 0x84, 0xb2, 0x96, 0x6f, 0xf7, 0xc3, 0xfb, 0xae, 0xa1, 0x7a, 0x8e, 0x79, 0xc7, 0x81,
- 0xdd, 0x17, 0x9b, 0xb6, 0x8b, 0xd9, 0xbe, 0xdf, 0x25, 0xeb, 0xe3, 0xcb, 0x1c, 0xcd, 0xff, 0x81,
- 0xa5, 0x1c, 0xae, 0x4a, 0xc1, 0x5b, 0x00, 0x3a, 0x65, 0x54, 0x5b, 0x17, 0xa3, 0x70, 0x95, 0x36,
- 0x6d, 0xcf, 0x19, 0x7a, 0x36, 0xc3, 0x9b, 0x3d, 0xec, 0x9c, 0x05, 0xc3, 0xfe, 0xe5, 0x55, 0xfa,
- 0x4f, 0x58, 0xca, 0xe1, 0xaa, 0x54, 0x32, 0xa0, 0xea, 0x28, 0x9a, 0xb2, 0x54, 0xd4, 0xe6, 0xdb,
- 0xb6, 0x8b, 0xd9, 0xb1, 0x6f, 0x0f, 0x82, 0x1e, 0xb9, 0x3c, 0x78, 0x62, 0x7e, 0x04, 0x73, 0x09,
- 0x7e, 0x23, 0x5c, 0xf9, 0xfb, 0x12, 0xdc, 0xcd, 0x73, 0xac, 0xb1, 0x29, 0xc3, 0x93, 0xd7, 0x1e,
- 0x63, 0x83, 0x96, 0xbe, 0x96, 0x2a, 0xbc, 0xfd, 0x8a, 0x7a, 0xfc, 0x92, 0x15, 0x5d, 0xf6, 0x90,
- 0xf5, 0x54, 0x3e, 0x26, 0xc6, 0xae, 0x0f, 0x59, 0xcf, 0xbc, 0x0f, 0xf7, 0x46, 0x2b, 0xa6, 0x7c,
- 0xfe, 0xb7, 0x25, 0x98, 0xdf, 0xc5, 0xcc, 0xb2, 0xcf, 0x37, 0x7b, 0xb6, 0x7f, 0x3a, 0x0e, 0x54,
- 0xe2, 0x2e, 0x5c, 0xed, 0x52, 0xd2, 0x6f, 0x25, 0xa0, 0x89, 0x9a, 0x55, 0xe7, 0xc4, 0xe8, 0x95,
- 0xba, 0x0a, 0x33, 0x8c, 0xb4, 0x12, 0xef, 0xdc, 0x9a, 0x05, 0x8c, 0x84, 0x03, 0xcc, 0x3f, 0x4d,
- 0xc1, 0x8d, 0x94, 0x62, 0x6a, 0x23, 0xf6, 0x60, 0x86, 0xda, 0xe7, 0x2d, 0x47, 0x92, 0x9b, 0x25,
- 0x71, 0x4f, 0x7d, 0x18, 0xcb, 0x38, 0xb3, 0x73, 0xd6, 0x22, 0x92, 0x05, 0x34, 0xea, 0x35, 0x7e,
- 0x98, 0x84, 0x5a, 0xd4, 0x83, 0x16, 0xa1, 0xd2, 0xf6, 0x48, 0x9b, 0x3f, 0x59, 0xa4, 0x8b, 0x95,
- 0x79, 0x73, 0xbf, 0x13, 0x21, 0x3a, 0x13, 0x1a, 0xd1, 0x41, 0x2b, 0x50, 0xf5, 0xf1, 0xb9, 0xcc,
- 0x43, 0x85, 0xf2, 0x1b, 0x13, 0xcd, 0x92, 0x55, 0xf1, 0xf1, 0x39, 0xcf, 0x44, 0x79, 0x37, 0x7f,
- 0xa7, 0x8b, 0xee, 0x29, 0xdd, 0x4d, 0xbc, 0x8e, 0xe8, 0x3e, 0x84, 0x1a, 0x19, 0x60, 0x6a, 0x33,
- 0xbe, 0xf6, 0x69, 0x91, 0x32, 0x7f, 0xf6, 0x9e, 0x0b, 0x58, 0x3b, 0x0c, 0x27, 0x5a, 0x9a, 0x07,
- 0xb7, 0x39, 0xb7, 0x89, 0x66, 0x2a, 0x31, 0x92, 0x3a, 0xb5, 0xcf, 0xa3, 0xf1, 0xdc, 0x97, 0xb8,
- 0x52, 0x7d, 0xd2, 0xc1, 0x22, 0x77, 0x9e, 0x16, 0x0a, 0xbd, 0x24, 0x1d, 0x2c, 0x30, 0x12, 0x7c,
- 0x2e, 0xbb, 0xaa, 0xb2, 0xcb, 0xc7, 0xe7, 0xa2, 0xeb, 0x1e, 0x5c, 0x0b, 0x57, 0xda, 0x6a, 0x5f,
- 0xf0, 0x13, 0xa1, 0x26, 0xf3, 0x3a, 0xb5, 0xd6, 0x0d, 0x4e, 0xe3, 0xa3, 0xc2, 0x05, 0xab, 0x51,
- 0x20, 0x47, 0xa9, 0x25, 0x8b, 0x51, 0xa6, 0x0b, 0x35, 0xad, 0xce, 0x0c, 0x54, 0x5e, 0x1d, 0x3c,
- 0x3f, 0x38, 0xfc, 0xf2, 0xa0, 0x71, 0x05, 0xd5, 0x60, 0x7a, 0x7d, 0x6b, 0x6b, 0x7b, 0x4b, 0x66,
- 0xea, 0x9b, 0x87, 0x47, 0xfb, 0xdb, 0x5b, 0x32, 0x53, 0xdf, 0xda, 0x7e, 0xb1, 0x7d, 0xb2, 0xbd,
- 0xd5, 0x98, 0x44, 0x75, 0xa8, 0xbe, 0x3c, 0xdc, 0xda, 0xdf, 0xe1, 0x5d, 0x53, 0xbc, 0xcb, 0xda,
- 0x3e, 0x58, 0x7f, 0xb9, 0xbd, 0xd5, 0x98, 0x46, 0x0d, 0xa8, 0x9f, 0x7c, 0x75, 0xb4, 0xdd, 0xda,
- 0xdc, 0x5b, 0x3f, 0xd8, 0xdd, 0xde, 0x6a, 0x94, 0xcd, 0xdf, 0x94, 0xa0, 0x79, 0x8c, 0x6d, 0xea,
- 0xf4, 0x76, 0x5c, 0x0f, 0x07, 0x1b, 0x17, 0xfc, 0x34, 0xbd, 0xbc, 0x73, 0xcf, 0xc3, 0xf4, 0x9b,
- 0x21, 0x56, 0xe9, 0x42, 0xcd, 0x92, 0x8d, 0x30, 0x89, 0x9b, 0xd4, 0x49, 0xdc, 0x02, 0x94, 0xbb,
- 0xae, 0xc7, 0x30, 0x95, 0xdb, 0x6f, 0xa9, 0x96, 0xf9, 0x19, 0x2c, 0xe5, 0x68, 0xa5, 0xf3, 0xcd,
- 0x2e, 0x27, 0x0b, 0x9f, 0xae, 0x5b, 0xb2, 0x61, 0xfe, 0xa1, 0x04, 0x37, 0x13, 0x73, 0x36, 0x89,
- 0xcf, 0xb0, 0xcf, 0x7e, 0xba, 0xc5, 0x7c, 0x04, 0x0d, 0xa7, 0x37, 0xf4, 0xcf, 0x30, 0xcf, 0x3c,
- 0xa5, 0xae, 0x0a, 0xb7, 0xbb, 0xae, 0xe8, 0xd1, 0x79, 0x72, 0x01, 0xcb, 0xf9, 0xba, 0xaa, 0x25,
- 0x36, 0xa1, 0xd2, 0xb7, 0x99, 0xd3, 0x8b, 0x16, 0x19, 0x36, 0xd1, 0x0a, 0x80, 0xf8, 0x6c, 0xc5,
- 0x6e, 0xef, 0x9a, 0xa0, 0x6c, 0xd9, 0xcc, 0x46, 0xb7, 0xa1, 0x8e, 0xfd, 0x4e, 0x8b, 0x74, 0x5b,
- 0x82, 0xa6, 0xf0, 0x44, 0xc0, 0x7e, 0xe7, 0xb0, 0xfb, 0x92, 0x53, 0xcc, 0x5f, 0x97, 0xa0, 0x2c,
- 0xd1, 0xb8, 0xf0, 0x1d, 0x5f, 0x8a, 0xde, 0xf1, 0x3c, 0x86, 0xc5, 0x35, 0x2b, 0x57, 0x2a, 0xbe,
- 0xd1, 0x7f, 0xc3, 0x52, 0x74, 0x80, 0x12, 0xea, 0x7e, 0x2b, 0xdc, 0xb2, 0xd5, 0xc3, 0x76, 0x07,
- 0x53, 0x75, 0x22, 0x2d, 0x86, 0x07, 0x6a, 0xd4, 0xbf, 0x27, 0xba, 0xd1, 0x07, 0x70, 0xad, 0xef,
- 0x52, 0x4a, 0x68, 0x8b, 0xe2, 0x6e, 0xdf, 0x1e, 0x04, 0xcd, 0x29, 0xf1, 0x14, 0xbc, 0x2a, 0xa9,
- 0x96, 0x24, 0x72, 0x2f, 0x5c, 0x10, 0x80, 0xc6, 0xde, 0xc9, 0xc9, 0xd1, 0xb8, 0xb0, 0xd6, 0xfb,
- 0x09, 0xac, 0x35, 0x0b, 0x57, 0x86, 0xd8, 0x6b, 0x0c, 0x4c, 0x9d, 0x4c, 0x80, 0xa9, 0xe6, 0x12,
- 0x2c, 0x66, 0xb4, 0x52, 0x1b, 0xf8, 0x15, 0xac, 0xec, 0x62, 0x76, 0xd8, 0xfe, 0x19, 0x76, 0xd8,
- 0x96, 0x4b, 0xb1, 0x33, 0x3e, 0xcc, 0xfc, 0x3f, 0xe0, 0x56, 0x11, 0xeb, 0x11, 0xd8, 0xf9, 0xef,
- 0x4b, 0x30, 0xbf, 0xe9, 0x11, 0x1f, 0xf3, 0xfb, 0xeb, 0x88, 0x10, 0x6f, 0x1c, 0x06, 0x9c, 0x1a,
- 0xf0, 0x3c, 0x22, 0x95, 0xf2, 0x4b, 0xcd, 0x84, 0x08, 0xd1, 0x1f, 0x33, 0xf4, 0xe4, 0x28, 0x43,
- 0x9b, 0x8b, 0x70, 0x23, 0xa5, 0xa1, 0x32, 0xe6, 0x5f, 0x4b, 0xb0, 0x9c, 0xe8, 0xd9, 0xf7, 0x19,
- 0xa6, 0xbe, 0xfd, 0x13, 0xae, 0x21, 0x17, 0xeb, 0x98, 0xfc, 0x17, 0xb0, 0x8e, 0x55, 0x58, 0x29,
- 0x58, 0x82, 0x86, 0xbc, 0xb9, 0x3d, 0xde, 0x8e, 0x1b, 0xf2, 0xce, 0x32, 0x55, 0x02, 0xdf, 0x71,
- 0x81, 0xbe, 0x38, 0x38, 0xc7, 0x26, 0x50, 0xdc, 0xa0, 0xd8, 0xb3, 0x99, 0xfb, 0x56, 0xa1, 0xcb,
- 0xea, 0xd5, 0x12, 0x12, 0x05, 0xc0, 0x2c, 0xb4, 0x4a, 0x4b, 0x56, 0x5a, 0xfd, 0xb2, 0xc4, 0x93,
- 0xaf, 0x81, 0xe7, 0x3a, 0xe3, 0x45, 0xff, 0xd1, 0xc7, 0x50, 0x96, 0x9b, 0x32, 0x02, 0xa2, 0x52,
- 0x23, 0xcc, 0x15, 0xb8, 0x99, 0xab, 0x83, 0xd2, 0xf1, 0x15, 0x2c, 0x1d, 0x0e, 0x98, 0xdb, 0x17,
- 0x31, 0x37, 0xbe, 0xcd, 0x5a, 0x06, 0x23, 0x8f, 0xad, 0x14, 0xfa, 0xe4, 0xef, 0xb7, 0x44, 0xa9,
- 0x35, 0xac, 0x95, 0xc9, 0x1a, 0x35, 0xfa, 0x1a, 0x1a, 0xe9, 0x32, 0x31, 0x5a, 0xcd, 0x4a, 0x4b,
- 0x54, 0xa5, 0x8d, 0xdb, 0xc5, 0x03, 0xd4, 0x0a, 0xcb, 0xff, 0xf8, 0xfe, 0xc1, 0x44, 0x75, 0x02,
- 0x7d, 0x13, 0x96, 0x77, 0x63, 0xb5, 0x5f, 0x14, 0x9f, 0x9e, 0x5b, 0x6c, 0x36, 0xee, 0x8c, 0x18,
- 0x91, 0x90, 0x50, 0x42, 0xcf, 0x01, 0x74, 0x31, 0x17, 0x2d, 0x25, 0x27, 0xc6, 0x8a, 0xca, 0x86,
- 0x91, 0xd7, 0x95, 0x62, 0xf6, 0x25, 0x5c, 0x4b, 0xd6, 0x62, 0xd1, 0x4a, 0xf4, 0x1e, 0xcc, 0xab,
- 0x0d, 0x1b, 0xb7, 0x8a, 0xba, 0x53, 0x8c, 0xbf, 0x56, 0x88, 0x6f, 0xac, 0xea, 0xaa, 0xcd, 0x5c,
- 0x50, 0xe4, 0xd5, 0x66, 0x2e, 0x2c, 0xd8, 0xc6, 0xf4, 0x4e, 0x96, 0x41, 0xb5, 0xde, 0xb9, 0x15,
- 0x57, 0xad, 0x77, 0x7e, 0xf5, 0x34, 0xda, 0x3f, 0x07, 0x50, 0xb6, 0x7c, 0x89, 0xa2, 0xed, 0x29,
- 0xac, 0xa6, 0x1a, 0xe6, 0xa8, 0x21, 0x29, 0xed, 0x0f, 0x60, 0x26, 0x56, 0xc3, 0x43, 0xd1, 0x46,
- 0x65, 0x2b, 0xa3, 0xc6, 0xcd, 0xdc, 0xbe, 0xac, 0xb1, 0xd3, 0x49, 0x97, 0x36, 0x76, 0x41, 0x59,
- 0x50, 0x1b, 0xbb, 0xb0, 0xc4, 0x17, 0xb2, 0x7f, 0x09, 0xa0, 0x2b, 0x55, 0xda, 0xe3, 0x32, 0x35,
- 0x36, 0xed, 0x71, 0xd9, 0xc2, 0x56, 0xc8, 0xec, 0xb1, 0xd0, 0x36, 0x5d, 0x79, 0xd2, 0xda, 0x16,
- 0x14, 0xba, 0xb4, 0xb6, 0x45, 0x45, 0xab, 0x78, 0x04, 0x66, 0x4a, 0x39, 0x3a, 0x02, 0x8b, 0x0a,
- 0x58, 0x3a, 0x02, 0x0b, 0xeb, 0x40, 0x91, 0x3d, 0xfe, 0x0b, 0xa6, 0x76, 0x02, 0xe7, 0x0c, 0xcd,
- 0x45, 0x53, 0x74, 0x15, 0xc8, 0x98, 0x4f, 0x12, 0x53, 0x53, 0xb7, 0xa1, 0x1a, 0x16, 0x42, 0xd0,
- 0x62, 0xc2, 0xdb, 0x75, 0x51, 0xc7, 0x68, 0x66, 0x3b, 0x52, 0x6c, 0x4e, 0xe0, 0x6a, 0xa2, 0x8a,
- 0x81, 0x96, 0x23, 0xa9, 0x39, 0xc5, 0x14, 0x63, 0xa5, 0xa0, 0x37, 0x65, 0xb9, 0xe7, 0x00, 0xba,
- 0xba, 0xa0, 0xf7, 0x39, 0x53, 0x01, 0xd1, 0xfb, 0x9c, 0x53, 0x8c, 0x08, 0x55, 0x74, 0x00, 0x65,
- 0x0b, 0x04, 0x3a, 0x90, 0x0a, 0x0b, 0x16, 0x3a, 0x90, 0x8a, 0xeb, 0x0b, 0xf1, 0x68, 0xcd, 0x42,
- 0xfa, 0x71, 0x21, 0x05, 0x25, 0x86, 0xb8, 0x90, 0xa2, 0x8a, 0x40, 0x24, 0x84, 0x66, 0x4b, 0xeb,
- 0x0a, 0x8a, 0x47, 0xf7, 0x8b, 0x62, 0x28, 0x59, 0x19, 0x30, 0x3e, 0xfc, 0xd1, 0x71, 0x29, 0xeb,
- 0x1d, 0x43, 0x3d, 0x0e, 0xc5, 0xa3, 0x9b, 0x49, 0x06, 0x09, 0xcc, 0xd2, 0x58, 0xce, 0xef, 0x4c,
- 0x2e, 0xe3, 0x71, 0x09, 0xfd, 0x1c, 0x8c, 0x62, 0x34, 0x12, 0x7d, 0x34, 0x4a, 0xc7, 0xa4, 0xc0,
- 0x8f, 0xdf, 0x67, 0x68, 0x72, 0x45, 0x0f, 0x4a, 0x68, 0x0f, 0x6a, 0x11, 0x42, 0x8e, 0x9a, 0x45,
- 0xf8, 0xbe, 0xb1, 0x94, 0xd3, 0x93, 0xb2, 0xce, 0x17, 0x50, 0x8f, 0x23, 0xde, 0xda, 0x3a, 0x39,
- 0x60, 0xbb, 0xb6, 0x4e, 0x2e, 0x48, 0x1e, 0x3f, 0x92, 0x35, 0x66, 0x1a, 0x3b, 0x92, 0x33, 0xc0,
- 0x6c, 0xec, 0x48, 0xce, 0x82, 0xac, 0x91, 0xd3, 0xb4, 0xc5, 0xdf, 0x11, 0x49, 0xa0, 0x13, 0xc5,
- 0x7f, 0x4f, 0xc8, 0x45, 0x56, 0xf5, 0x29, 0x54, 0x88, 0x92, 0xc6, 0xf6, 0xf3, 0x1b, 0x98, 0xcd,
- 0x20, 0x97, 0x5a, 0x46, 0x11, 0x54, 0xaa, 0x65, 0x14, 0xc2, 0x9e, 0xd1, 0x2a, 0x36, 0xa0, 0xa2,
- 0xfe, 0x69, 0x42, 0x0b, 0xd1, 0xac, 0xc4, 0x0f, 0x53, 0xc6, 0x62, 0x86, 0x9e, 0xb2, 0xec, 0x11,
- 0xcc, 0xc4, 0x60, 0x4d, 0x14, 0xbf, 0x23, 0x52, 0x70, 0xa5, 0xb6, 0x6c, 0x0e, 0x0e, 0x1a, 0x5b,
- 0xf7, 0x2f, 0x78, 0x76, 0x33, 0x02, 0x64, 0x44, 0x9f, 0x8c, 0xf2, 0xcf, 0xb4, 0xd0, 0x87, 0xef,
- 0x37, 0x38, 0xb5, 0xaa, 0xff, 0x87, 0xab, 0x09, 0xc0, 0x4c, 0x9f, 0xc0, 0x79, 0xa8, 0xa6, 0x3e,
- 0x81, 0x73, 0x51, 0xb6, 0xd8, 0xda, 0xce, 0x60, 0x3e, 0x0f, 0xc7, 0x40, 0x77, 0x75, 0x54, 0x14,
- 0x22, 0x32, 0xc6, 0xbd, 0xd1, 0x83, 0x32, 0xc2, 0xda, 0x30, 0x9b, 0x01, 0x85, 0xb4, 0x03, 0x15,
- 0xa1, 0x58, 0xda, 0x81, 0x0a, 0x11, 0xa5, 0x98, 0x0c, 0x0c, 0x28, 0x5b, 0x1a, 0x42, 0xb1, 0xf7,
- 0x6e, 0x41, 0x85, 0x4a, 0x1f, 0xd1, 0x23, 0x2a, 0x4b, 0xfa, 0x70, 0x69, 0xc3, 0x6c, 0xa6, 0x1a,
- 0xa4, 0x97, 0x52, 0x54, 0x7e, 0xd2, 0x4b, 0x29, 0x2c, 0x25, 0xc5, 0x96, 0xf2, 0x1a, 0xae, 0xa7,
- 0xd0, 0x0b, 0x74, 0x2b, 0xf1, 0x6a, 0xc8, 0x80, 0x2d, 0xc6, 0x6a, 0x61, 0x7f, 0xca, 0x9f, 0x08,
- 0x2c, 0xe4, 0x63, 0x14, 0xe8, 0x83, 0x98, 0xeb, 0x14, 0xc3, 0x23, 0xc6, 0xfd, 0x1f, 0x1b, 0x96,
- 0x0a, 0xed, 0x13, 0xb8, 0x9a, 0x48, 0xaf, 0xb5, 0x03, 0xe7, 0x81, 0x1e, 0xda, 0x81, 0xf3, 0x01,
- 0x87, 0x70, 0x19, 0x5e, 0x0a, 0x91, 0x08, 0x93, 0x76, 0x74, 0x2f, 0x77, 0x7e, 0x0a, 0x96, 0x30,
- 0x3e, 0xf8, 0x91, 0x51, 0xd9, 0x77, 0x6f, 0x3a, 0x59, 0x8f, 0xe7, 0x72, 0xb9, 0xd8, 0x40, 0x3c,
- 0x97, 0x2b, 0xc8, 0xf3, 0x13, 0xec, 0x93, 0x59, 0x77, 0x9c, 0x7d, 0x2e, 0x12, 0x10, 0x67, 0x5f,
- 0x90, 0xb0, 0x87, 0xec, 0xbb, 0x30, 0x97, 0x93, 0x33, 0xa3, 0x98, 0xdf, 0x17, 0x25, 0xf5, 0xc6,
- 0xdd, 0x91, 0x63, 0xb2, 0x2f, 0xb1, 0x6c, 0x96, 0xac, 0x23, 0xb0, 0x30, 0x31, 0xd7, 0x11, 0x58,
- 0x9c, 0x64, 0x87, 0x42, 0x36, 0x1e, 0xbf, 0xe6, 0x83, 0x3d, 0xbb, 0xbd, 0xe6, 0x90, 0xfe, 0x23,
- 0xf9, 0xf9, 0x29, 0xa1, 0xa7, 0x8f, 0x24, 0x8b, 0x47, 0xe2, 0xc7, 0xef, 0x47, 0xa7, 0x44, 0xb5,
- 0x07, 0xed, 0x76, 0x59, 0x90, 0x9e, 0xfe, 0x33, 0x00, 0x00, 0xff, 0xff, 0x6f, 0x00, 0x86, 0xa9,
- 0x49, 0x2e, 0x00, 0x00,
+ 0x95, 0xd6, 0xf0, 0x32, 0x97, 0xc3, 0x91, 0x34, 0x2c, 0x52, 0xe4, 0xb0, 0x45, 0x8a, 0x52, 0x4b,
+ 0x96, 0x65, 0x5b, 0xa6, 0x64, 0x69, 0x81, 0xf5, 0xee, 0x62, 0xb1, 0xe0, 0x9d, 0xd4, 0x85, 0xa4,
+ 0x9b, 0xd4, 0x1a, 0x16, 0x60, 0x8c, 0x7b, 0x7a, 0x6a, 0x38, 0xbd, 0xec, 0xe9, 0x1a, 0x55, 0xd7,
+ 0x88, 0xa2, 0x81, 0x7d, 0x48, 0x80, 0xbc, 0x05, 0x06, 0x02, 0x04, 0x71, 0x1e, 0xf3, 0x9c, 0x5f,
+ 0x90, 0x97, 0x24, 0xc8, 0x4b, 0xfe, 0x83, 0xff, 0x42, 0x7e, 0x42, 0x9e, 0x82, 0xba, 0x74, 0x57,
+ 0x5f, 0xc7, 0x0a, 0x38, 0x70, 0xde, 0xba, 0x4e, 0x55, 0x9d, 0x73, 0xea, 0xd4, 0x39, 0x55, 0x75,
+ 0xbe, 0xd3, 0xd0, 0xa4, 0x78, 0x40, 0x02, 0x97, 0x11, 0x7a, 0xf1, 0x69, 0x80, 0xe9, 0x5b, 0xd7,
+ 0xc1, 0x6b, 0x03, 0x4a, 0x18, 0x41, 0xe5, 0x53, 0x97, 0xd9, 0xde, 0x85, 0x01, 0x9e, 0xeb, 0x33,
+ 0x49, 0x33, 0xea, 0x41, 0xcf, 0xa6, 0xb8, 0x23, 0x5b, 0xe6, 0x31, 0x2c, 0x5a, 0xd1, 0xec, 0xed,
+ 0x77, 0x6e, 0xc0, 0x02, 0x0b, 0xbf, 0x19, 0xe2, 0x80, 0xa1, 0xcf, 0x01, 0x34, 0xe3, 0x66, 0xe9,
+ 0x76, 0xe9, 0xc1, 0xcc, 0x13, 0xb4, 0x26, 0x39, 0xae, 0xe9, 0x49, 0x1b, 0x53, 0xbf, 0xfd, 0xeb,
+ 0xc3, 0x92, 0x15, 0x1b, 0x6b, 0x3e, 0x81, 0x66, 0x96, 0x69, 0x30, 0x20, 0x7e, 0x80, 0xd1, 0x02,
+ 0x94, 0xb1, 0xa0, 0x08, 0x8e, 0x55, 0x4b, 0xb5, 0xcc, 0x13, 0x31, 0xc7, 0x76, 0xce, 0xf6, 0x7d,
+ 0x87, 0xe2, 0x3e, 0xf6, 0x99, 0xed, 0x5d, 0x5e, 0x93, 0x9b, 0xb0, 0x94, 0xc3, 0x55, 0xaa, 0x62,
+ 0x52, 0x98, 0x95, 0x9d, 0x3b, 0x43, 0xef, 0xf2, 0xb2, 0xd0, 0x5d, 0xb8, 0xea, 0x50, 0x6c, 0x33,
+ 0xdc, 0x6a, 0xbb, 0xac, 0x6f, 0x0f, 0x9a, 0x13, 0x62, 0x81, 0x75, 0x49, 0xdc, 0x10, 0x34, 0x73,
+ 0x1e, 0x50, 0x5c, 0xa6, 0xd2, 0xe4, 0x97, 0x25, 0xb8, 0xb1, 0x6b, 0xd3, 0xb6, 0x7d, 0x8a, 0x37,
+ 0x89, 0xe7, 0x61, 0x87, 0xfd, 0x34, 0xea, 0xa0, 0x79, 0x98, 0x1e, 0xd0, 0xa1, 0x8f, 0x9b, 0x93,
+ 0xa2, 0x53, 0x36, 0xcc, 0x26, 0x2c, 0xa4, 0xb5, 0x51, 0x8a, 0x1e, 0xc3, 0xe2, 0x97, 0xd4, 0x65,
+ 0x78, 0x93, 0xf4, 0xfb, 0x2e, 0xdb, 0xa5, 0xf6, 0xa0, 0x77, 0xf9, 0x4d, 0x32, 0xa0, 0x99, 0x65,
+ 0xaa, 0x04, 0x3e, 0x83, 0x6b, 0x9b, 0x1e, 0xb6, 0xfd, 0xe1, 0xe0, 0xf2, 0x72, 0x66, 0xe1, 0x7a,
+ 0xc4, 0x4b, 0xb1, 0xff, 0x02, 0x6e, 0xe8, 0x29, 0xc7, 0xee, 0xb7, 0xf8, 0xf2, 0x52, 0x1e, 0xc2,
+ 0x42, 0x9a, 0xa5, 0x72, 0x7d, 0x04, 0x53, 0x81, 0xfb, 0x2d, 0x16, 0xdc, 0x26, 0x2d, 0xf1, 0x6d,
+ 0xbe, 0x81, 0xa5, 0xf5, 0xc1, 0xc0, 0xbb, 0xd8, 0x75, 0x99, 0xcd, 0x18, 0x75, 0xdb, 0x43, 0x86,
+ 0x2f, 0x1f, 0x81, 0xc8, 0x80, 0x2a, 0xc5, 0x6f, 0xdd, 0xc0, 0x25, 0xbe, 0xd8, 0xf7, 0xba, 0x15,
+ 0xb5, 0xcd, 0x65, 0x30, 0xf2, 0x44, 0x2a, 0x8b, 0xfc, 0x79, 0x02, 0xd0, 0x0e, 0x66, 0x4e, 0xcf,
+ 0xc2, 0x7d, 0xc2, 0x2e, 0x6f, 0x0f, 0x1e, 0xf0, 0x54, 0xb0, 0x12, 0x8a, 0xd4, 0x2c, 0xd5, 0xe2,
+ 0xae, 0xd7, 0x25, 0xd4, 0x89, 0x5c, 0x4f, 0x34, 0xd0, 0x22, 0x54, 0x7c, 0xd2, 0x62, 0xf6, 0x69,
+ 0xd0, 0x9c, 0x92, 0xe7, 0x83, 0x4f, 0x4e, 0xec, 0xd3, 0x00, 0x35, 0xa1, 0xc2, 0xdc, 0x3e, 0x26,
+ 0x43, 0xd6, 0x9c, 0xbe, 0x5d, 0x7a, 0x30, 0x6d, 0x85, 0x4d, 0x3e, 0x25, 0x08, 0x7a, 0xad, 0x33,
+ 0x7c, 0xd1, 0x2c, 0x4b, 0x09, 0x41, 0xd0, 0x7b, 0x8e, 0x2f, 0xd0, 0x2a, 0xcc, 0x9c, 0xf9, 0xe4,
+ 0xdc, 0x6f, 0xf5, 0x08, 0x3f, 0x6f, 0x2a, 0xa2, 0x13, 0x04, 0x69, 0x8f, 0x53, 0xd0, 0x12, 0x54,
+ 0x7d, 0xd2, 0x92, 0x01, 0x50, 0x13, 0xd2, 0x2a, 0x3e, 0x39, 0xe2, 0x4d, 0xf4, 0x14, 0xae, 0x4a,
+ 0x3d, 0x5b, 0x03, 0x9b, 0xda, 0xfd, 0xa0, 0x09, 0x62, 0xc9, 0xd7, 0xf4, 0x92, 0x85, 0x75, 0xea,
+ 0x72, 0xd0, 0x91, 0x18, 0xf3, 0x6c, 0xaa, 0x5a, 0x6d, 0xd4, 0xcc, 0x1b, 0x30, 0x97, 0x30, 0xa0,
+ 0x0e, 0x9d, 0x4d, 0x11, 0x7a, 0xda, 0x5a, 0x63, 0x09, 0x9d, 0x2c, 0x53, 0x25, 0xf0, 0x4f, 0x13,
+ 0x30, 0xbb, 0x8b, 0xd9, 0x3a, 0x75, 0x7a, 0xee, 0xdb, 0x31, 0x6c, 0xe4, 0x4d, 0xa8, 0x39, 0x22,
+ 0x42, 0x5b, 0x6e, 0x47, 0xed, 0x65, 0x55, 0x12, 0xf6, 0x3b, 0x7c, 0x97, 0x07, 0x14, 0x77, 0xdd,
+ 0x77, 0x62, 0x3b, 0x6b, 0x96, 0x6a, 0xa1, 0xcf, 0xa1, 0xdc, 0x25, 0xb4, 0x6f, 0x33, 0xb1, 0x9d,
+ 0xd7, 0x9e, 0xdc, 0x0e, 0x45, 0x65, 0x34, 0x5b, 0xdb, 0x11, 0xe3, 0x2c, 0x35, 0x9e, 0x47, 0xcb,
+ 0xc0, 0x66, 0x3d, 0xb1, 0xdb, 0x75, 0x4b, 0x7c, 0x73, 0x27, 0xc0, 0xef, 0x1c, 0x6f, 0xd8, 0xc1,
+ 0xcd, 0xf2, 0xed, 0xc9, 0x07, 0x75, 0x2b, 0x6c, 0xa2, 0x15, 0x00, 0xec, 0xb9, 0x1d, 0xbe, 0x5d,
+ 0xac, 0x27, 0xb6, 0xba, 0x6a, 0xd5, 0x04, 0xe5, 0xc8, 0x66, 0x3d, 0xf3, 0x29, 0x94, 0x25, 0x7b,
+ 0x54, 0x81, 0xc9, 0xd7, 0xfb, 0x47, 0x8d, 0x2b, 0xfc, 0xe3, 0x64, 0xdd, 0x6a, 0x94, 0x10, 0x40,
+ 0xf9, 0x64, 0xdd, 0x6a, 0xed, 0xbe, 0x6e, 0x4c, 0xa0, 0x19, 0xa8, 0xf0, 0xef, 0x8d, 0xd7, 0x4f,
+ 0x1a, 0x93, 0xe6, 0x03, 0x40, 0x71, 0x2d, 0x75, 0x14, 0x77, 0x6c, 0x66, 0x0b, 0xd3, 0xd5, 0x2d,
+ 0xf1, 0xcd, 0xf7, 0x76, 0xcf, 0x0e, 0x5e, 0x10, 0xc7, 0xf6, 0x36, 0xa8, 0xed, 0x3b, 0xbd, 0x31,
+ 0xc4, 0xb0, 0xf9, 0x18, 0x9a, 0x59, 0xa6, 0x4a, 0x89, 0x79, 0x98, 0x7e, 0x6b, 0x7b, 0x43, 0xac,
+ 0x2e, 0x51, 0xd9, 0x30, 0x7f, 0x28, 0x41, 0x53, 0xb8, 0xde, 0x31, 0x19, 0x52, 0x07, 0xcb, 0x59,
+ 0x97, 0xdf, 0xf8, 0xff, 0x81, 0xd9, 0x40, 0x30, 0x6c, 0xc5, 0x18, 0x4c, 0x14, 0x31, 0xb0, 0x1a,
+ 0x72, 0xb0, 0x95, 0xb8, 0x8a, 0x14, 0x83, 0xb6, 0x50, 0x49, 0xf8, 0x48, 0xdd, 0xaa, 0x07, 0x31,
+ 0x35, 0xf9, 0x0e, 0x32, 0x9b, 0x9e, 0x62, 0xd6, 0xa2, 0xb8, 0x2b, 0xbc, 0xa5, 0x6e, 0xd5, 0x24,
+ 0xc5, 0xc2, 0x5d, 0xf3, 0x29, 0x2c, 0xe5, 0x2c, 0x4d, 0x3f, 0x2a, 0x28, 0x0e, 0x86, 0x1e, 0x0b,
+ 0x1f, 0x15, 0xb2, 0x65, 0xee, 0xc2, 0xcc, 0x4e, 0xe0, 0x9c, 0x5d, 0x7e, 0x2f, 0xee, 0x41, 0x5d,
+ 0x32, 0xd2, 0xf6, 0xc7, 0x94, 0x12, 0xaa, 0xbc, 0x40, 0x36, 0xcc, 0x3f, 0x94, 0xe0, 0xba, 0xb8,
+ 0xc9, 0x2c, 0xdc, 0xbd, 0xbc, 0xd9, 0x1b, 0x30, 0xc9, 0x2d, 0x21, 0x8f, 0x6f, 0xfe, 0x99, 0x38,
+ 0xd5, 0x27, 0x93, 0xa7, 0x3a, 0xba, 0x03, 0x75, 0xe2, 0x75, 0x5a, 0x51, 0xbf, 0x34, 0xe0, 0x0c,
+ 0xf1, 0x3a, 0x56, 0x38, 0x24, 0x3a, 0x71, 0xa7, 0x63, 0x27, 0xee, 0xb3, 0xa9, 0x6a, 0xb9, 0x51,
+ 0x31, 0x9b, 0xd0, 0xd0, 0x9a, 0xcb, 0x45, 0x3e, 0x9b, 0xaa, 0x96, 0x1a, 0x13, 0xa6, 0x0f, 0xf3,
+ 0x3b, 0xae, 0xdf, 0x79, 0x89, 0xe9, 0x29, 0xde, 0xb0, 0x83, 0x31, 0x1c, 0x24, 0xcb, 0x50, 0x0b,
+ 0xd5, 0x0c, 0x9a, 0x13, 0x22, 0x8e, 0x35, 0xc1, 0xfc, 0x04, 0x6e, 0xa4, 0xe4, 0xe9, 0xc0, 0x6b,
+ 0xdb, 0x81, 0x74, 0xf9, 0x9a, 0x25, 0xbe, 0xcd, 0xef, 0x4a, 0x30, 0x2b, 0x0f, 0xc0, 0x1d, 0x42,
+ 0xcf, 0xfe, 0xf5, 0xae, 0xce, 0xdf, 0x77, 0x71, 0x7d, 0xa2, 0x97, 0xe6, 0xd2, 0x7e, 0x60, 0x61,
+ 0xae, 0xf2, 0xbe, 0x7f, 0x44, 0xc9, 0x29, 0xc5, 0x41, 0x30, 0x96, 0x13, 0x99, 0x0a, 0xa6, 0xb1,
+ 0x13, 0x59, 0x12, 0xf6, 0x3b, 0xe6, 0x7f, 0x83, 0x91, 0x27, 0x53, 0x19, 0x73, 0x15, 0x66, 0x5c,
+ 0xbf, 0x35, 0x50, 0x64, 0x15, 0x36, 0xe0, 0x46, 0x03, 0xa5, 0xca, 0xc7, 0x6f, 0x86, 0x76, 0xd0,
+ 0x1b, 0xb3, 0xca, 0x81, 0x60, 0x1a, 0x53, 0x59, 0x12, 0x42, 0x95, 0xb3, 0x32, 0xdf, 0x57, 0x65,
+ 0x0f, 0x6e, 0xa5, 0x2f, 0xc3, 0x1d, 0x4a, 0xfa, 0xaf, 0xac, 0x17, 0x63, 0x09, 0xc6, 0x21, 0xf5,
+ 0x94, 0xc6, 0xfc, 0xd3, 0xbc, 0x03, 0xab, 0x85, 0xd2, 0xd4, 0xb6, 0x1f, 0xc2, 0x9c, 0x1c, 0xb2,
+ 0x31, 0xf4, 0x3b, 0xde, 0x18, 0xde, 0x96, 0x1f, 0xc3, 0x7c, 0x92, 0xe1, 0x88, 0x3b, 0xe9, 0xbb,
+ 0x09, 0x68, 0x1c, 0x63, 0xb6, 0x49, 0xfc, 0xae, 0x7b, 0x7a, 0x79, 0x03, 0x7c, 0x0e, 0x15, 0xec,
+ 0x33, 0xea, 0x62, 0x19, 0xb2, 0x33, 0x4f, 0x6e, 0x85, 0xd3, 0xd2, 0x42, 0xd6, 0xb6, 0x7d, 0x46,
+ 0x2f, 0xac, 0x70, 0xb8, 0xf1, 0x8b, 0x12, 0x4c, 0x0b, 0x12, 0x37, 0x22, 0x7f, 0xa5, 0xc9, 0x00,
+ 0xe6, 0x9f, 0x68, 0x05, 0x6a, 0xe2, 0xea, 0x6a, 0x05, 0x8c, 0x4a, 0xe3, 0xee, 0x5d, 0xb1, 0xaa,
+ 0x82, 0x74, 0xcc, 0x28, 0xba, 0x03, 0x33, 0xb2, 0xdb, 0xf5, 0xd9, 0xd3, 0x27, 0xe2, 0xcc, 0x9b,
+ 0xde, 0xbb, 0x62, 0x81, 0x20, 0xee, 0x73, 0x1a, 0x5a, 0x05, 0xd9, 0x6a, 0xb5, 0x09, 0xf1, 0xe4,
+ 0x9b, 0x71, 0xef, 0x8a, 0x25, 0xb9, 0x6e, 0x10, 0xe2, 0x6d, 0x54, 0xd4, 0x55, 0x69, 0xce, 0xc1,
+ 0x6c, 0x4c, 0x55, 0xb5, 0x45, 0x0e, 0xcc, 0x6d, 0x61, 0x0f, 0xf3, 0xe4, 0x63, 0x3c, 0x76, 0x42,
+ 0x30, 0x75, 0x86, 0x2f, 0xa4, 0x91, 0x6a, 0x96, 0xf8, 0x36, 0x17, 0x60, 0x3e, 0x29, 0x44, 0x09,
+ 0x77, 0x79, 0x76, 0x1a, 0x30, 0x42, 0xf1, 0xe6, 0x30, 0x60, 0xa4, 0xbf, 0x47, 0xc8, 0x59, 0x30,
+ 0x16, 0x15, 0x84, 0x37, 0x4c, 0xc4, 0xbc, 0x61, 0x19, 0x8c, 0x3c, 0x51, 0x4a, 0x91, 0x13, 0x68,
+ 0x6e, 0xd8, 0xce, 0xd9, 0x70, 0x30, 0x4e, 0x3d, 0xcc, 0x47, 0xb0, 0x94, 0xc3, 0x75, 0x84, 0xcb,
+ 0xbe, 0x81, 0x3b, 0x79, 0x21, 0x35, 0xa6, 0xe8, 0xc9, 0xb5, 0xcb, 0x3d, 0x30, 0x47, 0x89, 0x54,
+ 0xf6, 0x39, 0x00, 0xc4, 0xef, 0xa4, 0x17, 0xae, 0x83, 0xfd, 0x31, 0xdc, 0x80, 0xe6, 0x26, 0xcc,
+ 0x25, 0xf8, 0x29, 0x9b, 0x3c, 0x04, 0xe4, 0x49, 0x52, 0x2b, 0xe8, 0x11, 0xca, 0x5a, 0xbe, 0xdd,
+ 0x0f, 0xef, 0xbb, 0x86, 0xea, 0x39, 0xe6, 0x1d, 0x07, 0x76, 0x5f, 0x6c, 0xda, 0x2e, 0x66, 0xfb,
+ 0x7e, 0x97, 0xac, 0x8f, 0x2f, 0x73, 0x34, 0xff, 0x0b, 0x96, 0x72, 0xb8, 0x2a, 0x05, 0x6f, 0x01,
+ 0xe8, 0x94, 0x51, 0x6d, 0x5d, 0x8c, 0xc2, 0x55, 0xda, 0xb4, 0x3d, 0x67, 0xe8, 0xd9, 0x0c, 0x6f,
+ 0xf6, 0xb0, 0x73, 0x16, 0x0c, 0xfb, 0x97, 0x57, 0xe9, 0xdf, 0x61, 0x29, 0x87, 0xab, 0x52, 0xc9,
+ 0x80, 0xaa, 0xa3, 0x68, 0xca, 0x52, 0x51, 0x9b, 0x6f, 0xdb, 0x2e, 0x66, 0xc7, 0xbe, 0x3d, 0x08,
+ 0x7a, 0xe4, 0xf2, 0x90, 0x8a, 0xf9, 0x11, 0xcc, 0x25, 0xf8, 0x8d, 0x70, 0xe5, 0xef, 0x4b, 0x70,
+ 0x37, 0xcf, 0xb1, 0xc6, 0xa6, 0x0c, 0x4f, 0x5e, 0x7b, 0x8c, 0x0d, 0x5a, 0xfa, 0x5a, 0xaa, 0xf0,
+ 0xf6, 0x2b, 0xea, 0xf1, 0x4b, 0x56, 0x74, 0xd9, 0x43, 0xd6, 0x53, 0xf9, 0x98, 0x18, 0xbb, 0x3e,
+ 0x64, 0x3d, 0xf3, 0x3e, 0xdc, 0x1b, 0xad, 0x98, 0xf2, 0xf9, 0xdf, 0x94, 0x60, 0x7e, 0x17, 0x33,
+ 0xcb, 0x3e, 0xdf, 0xec, 0xd9, 0xfe, 0xe9, 0x38, 0x50, 0x89, 0xbb, 0x70, 0xb5, 0x4b, 0x49, 0xbf,
+ 0x95, 0x80, 0x26, 0x6a, 0x56, 0x9d, 0x13, 0xa3, 0x57, 0xea, 0x2a, 0xcc, 0x30, 0xd2, 0x4a, 0xbc,
+ 0x73, 0x6b, 0x16, 0x30, 0x12, 0x0e, 0x30, 0xff, 0x38, 0x05, 0x37, 0x52, 0x8a, 0xa9, 0x8d, 0xd8,
+ 0x83, 0x19, 0x6a, 0x9f, 0xb7, 0x1c, 0x49, 0x6e, 0x96, 0xc4, 0x3d, 0xf5, 0x61, 0x2c, 0xe3, 0xcc,
+ 0xce, 0x59, 0x8b, 0x48, 0x16, 0xd0, 0xa8, 0xd7, 0xf8, 0x61, 0x12, 0x6a, 0x51, 0x0f, 0x5a, 0x84,
+ 0x4a, 0xdb, 0x23, 0x6d, 0xfe, 0x64, 0x91, 0x2e, 0x56, 0xe6, 0xcd, 0xfd, 0x4e, 0x84, 0xe8, 0x4c,
+ 0x68, 0x44, 0x07, 0xad, 0x40, 0xd5, 0xc7, 0xe7, 0x32, 0x0f, 0x15, 0xca, 0x6f, 0x4c, 0x34, 0x4b,
+ 0x56, 0xc5, 0xc7, 0xe7, 0x3c, 0x13, 0xe5, 0xdd, 0xfc, 0x9d, 0x2e, 0xba, 0xa7, 0x74, 0x37, 0xf1,
+ 0x3a, 0xa2, 0xfb, 0x10, 0x6a, 0x64, 0x80, 0xa9, 0xcd, 0xf8, 0xda, 0xa7, 0x45, 0xca, 0xfc, 0xd9,
+ 0x7b, 0x2e, 0x60, 0xed, 0x30, 0x9c, 0x68, 0x69, 0x1e, 0xdc, 0xe6, 0xdc, 0x26, 0x9a, 0xa9, 0xc4,
+ 0x48, 0xea, 0xd4, 0x3e, 0x8f, 0xc6, 0x73, 0x5f, 0xe2, 0x4a, 0xf5, 0x49, 0x07, 0x8b, 0xdc, 0x79,
+ 0x5a, 0x28, 0xf4, 0x92, 0x74, 0xb0, 0xc0, 0x48, 0xf0, 0xb9, 0xec, 0xaa, 0xca, 0x2e, 0x1f, 0x9f,
+ 0x8b, 0xae, 0x7b, 0x70, 0x2d, 0x5c, 0x69, 0xab, 0x7d, 0xc1, 0x4f, 0x84, 0x9a, 0xcc, 0xeb, 0xd4,
+ 0x5a, 0x37, 0x38, 0x8d, 0x8f, 0x0a, 0x17, 0xac, 0x46, 0x81, 0x1c, 0xa5, 0x96, 0x2c, 0x46, 0x99,
+ 0x2e, 0xd4, 0xb4, 0x3a, 0x33, 0x50, 0x79, 0x75, 0xf0, 0xfc, 0xe0, 0xf0, 0xcb, 0x83, 0xc6, 0x15,
+ 0x54, 0x83, 0xe9, 0xf5, 0xad, 0xad, 0xed, 0x2d, 0x99, 0xa9, 0x6f, 0x1e, 0x1e, 0xed, 0x6f, 0x6f,
+ 0xc9, 0x4c, 0x7d, 0x6b, 0xfb, 0xc5, 0xf6, 0xc9, 0xf6, 0x56, 0x63, 0x12, 0xd5, 0xa1, 0xfa, 0xf2,
+ 0x70, 0x6b, 0x7f, 0x87, 0x77, 0x4d, 0xf1, 0x2e, 0x6b, 0xfb, 0x60, 0xfd, 0xe5, 0xf6, 0x56, 0x63,
+ 0x1a, 0x35, 0xa0, 0x7e, 0xf2, 0xd5, 0xd1, 0x76, 0x6b, 0x73, 0x6f, 0xfd, 0x60, 0x77, 0x7b, 0xab,
+ 0x51, 0x36, 0x7f, 0x5d, 0x82, 0xe6, 0x31, 0xb6, 0xa9, 0xd3, 0xdb, 0x71, 0x3d, 0x1c, 0x6c, 0x5c,
+ 0xf0, 0xd3, 0xf4, 0xf2, 0xce, 0x3d, 0x0f, 0xd3, 0x6f, 0x86, 0x58, 0xa5, 0x0b, 0x35, 0x4b, 0x36,
+ 0xc2, 0x24, 0x6e, 0x52, 0x27, 0x71, 0x0b, 0x50, 0xee, 0xba, 0x1e, 0xc3, 0x54, 0x6e, 0xbf, 0xa5,
+ 0x5a, 0xe6, 0x67, 0xb0, 0x94, 0xa3, 0x95, 0xce, 0x37, 0xbb, 0x9c, 0x2c, 0x7c, 0xba, 0x6e, 0xc9,
+ 0x86, 0xf9, 0xfb, 0x12, 0xdc, 0x4c, 0xcc, 0xd9, 0x24, 0x3e, 0xc3, 0x3e, 0xfb, 0xe9, 0x16, 0xf3,
+ 0x11, 0x34, 0x9c, 0xde, 0xd0, 0x3f, 0xc3, 0x3c, 0xf3, 0x94, 0xba, 0x2a, 0xdc, 0xee, 0xba, 0xa2,
+ 0x47, 0xe7, 0xc9, 0x05, 0x2c, 0xe7, 0xeb, 0xaa, 0x96, 0xd8, 0x84, 0x4a, 0xdf, 0x66, 0x4e, 0x2f,
+ 0x5a, 0x64, 0xd8, 0x44, 0x2b, 0x00, 0xe2, 0xb3, 0x15, 0xbb, 0xbd, 0x6b, 0x82, 0xb2, 0x65, 0x33,
+ 0x1b, 0xdd, 0x86, 0x3a, 0xf6, 0x3b, 0x2d, 0xd2, 0x6d, 0x09, 0x9a, 0xc2, 0x13, 0x01, 0xfb, 0x9d,
+ 0xc3, 0xee, 0x4b, 0x4e, 0x31, 0x7f, 0x55, 0x82, 0xb2, 0x44, 0xe3, 0xc2, 0x77, 0x7c, 0x29, 0x7a,
+ 0xc7, 0xf3, 0x18, 0x16, 0xd7, 0xac, 0x5c, 0xa9, 0xf8, 0x46, 0xff, 0x09, 0x4b, 0xd1, 0x01, 0x4a,
+ 0xa8, 0xfb, 0xad, 0x70, 0xcb, 0x56, 0x0f, 0xdb, 0x1d, 0x4c, 0xd5, 0x89, 0xb4, 0x18, 0x1e, 0xa8,
+ 0x51, 0xff, 0x9e, 0xe8, 0x46, 0x1f, 0xc0, 0xb5, 0xbe, 0x4b, 0x29, 0xa1, 0x2d, 0x8a, 0xbb, 0x7d,
+ 0x7b, 0x10, 0x34, 0xa7, 0xc4, 0x53, 0xf0, 0xaa, 0xa4, 0x5a, 0x92, 0xc8, 0xbd, 0x70, 0x41, 0x00,
+ 0x1a, 0x7b, 0x27, 0x27, 0x47, 0xe3, 0xc2, 0x5a, 0xef, 0x27, 0xb0, 0xd6, 0x2c, 0x5c, 0x19, 0x62,
+ 0xaf, 0x31, 0x30, 0x75, 0x32, 0x01, 0xa6, 0x9a, 0x4b, 0xb0, 0x98, 0xd1, 0x4a, 0x6d, 0xe0, 0x57,
+ 0xb0, 0xb2, 0x8b, 0xd9, 0x61, 0xfb, 0xff, 0xb0, 0xc3, 0xb6, 0x5c, 0x8a, 0x9d, 0xf1, 0x61, 0xe6,
+ 0xff, 0x06, 0xb7, 0x8a, 0x58, 0x8f, 0xc0, 0xce, 0x7f, 0x57, 0x82, 0xf9, 0x4d, 0x8f, 0xf8, 0x98,
+ 0xdf, 0x5f, 0x47, 0x84, 0x78, 0xe3, 0x30, 0xe0, 0xd4, 0x80, 0xe7, 0x11, 0xa9, 0x94, 0x5f, 0x6a,
+ 0x26, 0x44, 0x88, 0xfe, 0x98, 0xa1, 0x27, 0x47, 0x19, 0xda, 0x5c, 0x84, 0x1b, 0x29, 0x0d, 0x95,
+ 0x31, 0xff, 0x52, 0x82, 0xe5, 0x44, 0xcf, 0xbe, 0xcf, 0x30, 0xf5, 0xed, 0x9f, 0x70, 0x0d, 0xb9,
+ 0x58, 0xc7, 0xe4, 0x3f, 0x81, 0x75, 0xac, 0xc2, 0x4a, 0xc1, 0x12, 0x34, 0xe4, 0xcd, 0xed, 0xf1,
+ 0x76, 0xdc, 0x90, 0x77, 0x96, 0xa9, 0x12, 0xf8, 0x8e, 0x0b, 0xf4, 0xc5, 0xc1, 0x39, 0x36, 0x81,
+ 0xe2, 0x06, 0xc5, 0x9e, 0xcd, 0xdc, 0xb7, 0x0a, 0x5d, 0x56, 0xaf, 0x96, 0x90, 0x28, 0x00, 0x66,
+ 0xa1, 0x55, 0x5a, 0xb2, 0xd2, 0xea, 0xe7, 0x25, 0x9e, 0x7c, 0x0d, 0x3c, 0xd7, 0x19, 0x2f, 0xfa,
+ 0x8f, 0x3e, 0x86, 0xb2, 0xdc, 0x94, 0x11, 0x10, 0x95, 0x1a, 0x61, 0xae, 0xc0, 0xcd, 0x5c, 0x1d,
+ 0x94, 0x8e, 0xaf, 0x60, 0xe9, 0x70, 0xc0, 0xdc, 0xbe, 0x88, 0xb9, 0xf1, 0x6d, 0xd6, 0x32, 0x18,
+ 0x79, 0x6c, 0xa5, 0xd0, 0x27, 0x7f, 0xbb, 0x25, 0x2a, 0xb0, 0x61, 0xad, 0x4c, 0x96, 0xae, 0xd1,
+ 0xd7, 0xd0, 0x48, 0x57, 0x8f, 0xd1, 0x6a, 0x56, 0x5a, 0xa2, 0x58, 0x6d, 0xdc, 0x2e, 0x1e, 0xa0,
+ 0x56, 0x58, 0xfe, 0xfb, 0xf7, 0x0f, 0x26, 0xaa, 0x13, 0xe8, 0x9b, 0xb0, 0xea, 0x1b, 0x2b, 0x09,
+ 0xa3, 0xf8, 0xf4, 0xdc, 0x1a, 0xb4, 0x71, 0x67, 0xc4, 0x88, 0x84, 0x84, 0x12, 0x7a, 0x0e, 0xa0,
+ 0x6b, 0xbc, 0x68, 0x29, 0x39, 0x31, 0x56, 0x6b, 0x36, 0x8c, 0xbc, 0xae, 0x14, 0xb3, 0x2f, 0xe1,
+ 0x5a, 0xb2, 0x16, 0x8b, 0x56, 0xa2, 0xf7, 0x60, 0x5e, 0xc5, 0xd8, 0xb8, 0x55, 0xd4, 0x9d, 0x62,
+ 0xfc, 0xb5, 0x42, 0x7c, 0x63, 0x55, 0x57, 0x6d, 0xe6, 0x82, 0x22, 0xaf, 0x36, 0x73, 0x61, 0xc1,
+ 0x36, 0xa6, 0x77, 0xb2, 0x0c, 0xaa, 0xf5, 0xce, 0xad, 0xb8, 0x6a, 0xbd, 0xf3, 0xab, 0xa7, 0xd1,
+ 0xfe, 0x39, 0x80, 0xb2, 0xe5, 0x4b, 0x14, 0x6d, 0x4f, 0x61, 0x35, 0xd5, 0x30, 0x47, 0x0d, 0x49,
+ 0x69, 0x7f, 0x00, 0x33, 0xb1, 0x1a, 0x1e, 0x8a, 0x36, 0x2a, 0x5b, 0x19, 0x35, 0x6e, 0xe6, 0xf6,
+ 0x65, 0x8d, 0x9d, 0x4e, 0xba, 0xb4, 0xb1, 0x0b, 0xca, 0x82, 0xda, 0xd8, 0x85, 0x25, 0xbe, 0x90,
+ 0xfd, 0x4b, 0x00, 0x5d, 0xa9, 0xd2, 0x1e, 0x97, 0xa9, 0xb1, 0x69, 0x8f, 0xcb, 0x16, 0xb6, 0x42,
+ 0x66, 0x8f, 0x85, 0xb6, 0xe9, 0xca, 0x93, 0xd6, 0xb6, 0xa0, 0xd0, 0xa5, 0xb5, 0x2d, 0x2a, 0x5a,
+ 0xc5, 0x23, 0x30, 0x53, 0xca, 0xd1, 0x11, 0x58, 0x54, 0xc0, 0xd2, 0x11, 0x58, 0x58, 0x07, 0x8a,
+ 0xec, 0xf1, 0x1f, 0x30, 0xb5, 0x13, 0x38, 0x67, 0x68, 0x2e, 0x9a, 0xa2, 0xab, 0x40, 0xc6, 0x7c,
+ 0x92, 0x98, 0x9a, 0xba, 0x0d, 0xd5, 0xb0, 0x10, 0x82, 0x16, 0x13, 0xde, 0xae, 0x8b, 0x3a, 0x46,
+ 0x33, 0xdb, 0x91, 0x62, 0x73, 0x02, 0x57, 0x13, 0x55, 0x0c, 0xb4, 0x1c, 0x49, 0xcd, 0x29, 0xa6,
+ 0x18, 0x2b, 0x05, 0xbd, 0x29, 0xcb, 0x3d, 0x07, 0xd0, 0xd5, 0x05, 0xbd, 0xcf, 0x99, 0x0a, 0x88,
+ 0xde, 0xe7, 0x9c, 0x62, 0x44, 0xa8, 0xa2, 0x03, 0x28, 0x5b, 0x20, 0xd0, 0x81, 0x54, 0x58, 0xb0,
+ 0xd0, 0x81, 0x54, 0x5c, 0x5f, 0x88, 0x47, 0x6b, 0x16, 0xd2, 0x8f, 0x0b, 0x29, 0x28, 0x31, 0xc4,
+ 0x85, 0x14, 0x55, 0x04, 0x22, 0x21, 0x34, 0x5b, 0x5a, 0x57, 0x50, 0x3c, 0xba, 0x5f, 0x14, 0x43,
+ 0xc9, 0xca, 0x80, 0xf1, 0xe1, 0x8f, 0x8e, 0x4b, 0x59, 0xef, 0x18, 0xea, 0x71, 0x28, 0x1e, 0xdd,
+ 0x4c, 0x32, 0x48, 0x60, 0x96, 0xc6, 0x72, 0x7e, 0x67, 0x72, 0x19, 0x8f, 0x4b, 0xe8, 0xff, 0xc1,
+ 0x28, 0x46, 0x23, 0xd1, 0x47, 0xa3, 0x74, 0x4c, 0x0a, 0xfc, 0xf8, 0x7d, 0x86, 0x26, 0x57, 0xf4,
+ 0xa0, 0x84, 0xf6, 0xa0, 0x16, 0x21, 0xe4, 0xa8, 0x59, 0x84, 0xef, 0x1b, 0x4b, 0x39, 0x3d, 0x29,
+ 0xeb, 0x7c, 0x01, 0xf5, 0x38, 0xe2, 0xad, 0xad, 0x93, 0x03, 0xb6, 0x6b, 0xeb, 0xe4, 0x82, 0xe4,
+ 0xf1, 0x23, 0x59, 0x63, 0xa6, 0xb1, 0x23, 0x39, 0x03, 0xcc, 0xc6, 0x8e, 0xe4, 0x2c, 0xc8, 0x1a,
+ 0x39, 0x4d, 0x5b, 0xfc, 0x1d, 0x91, 0x04, 0x3a, 0x51, 0xfc, 0xf7, 0x84, 0x5c, 0x64, 0x55, 0x9f,
+ 0x42, 0x85, 0x28, 0x69, 0x6c, 0x3f, 0xbf, 0x81, 0xd9, 0x0c, 0x72, 0xa9, 0x65, 0x14, 0x41, 0xa5,
+ 0x5a, 0x46, 0x21, 0xec, 0x19, 0xad, 0x62, 0x03, 0x2a, 0xea, 0x9f, 0x26, 0xb4, 0x10, 0xcd, 0x4a,
+ 0xfc, 0x30, 0x65, 0x2c, 0x66, 0xe8, 0x29, 0xcb, 0x1e, 0xc1, 0x4c, 0x0c, 0xd6, 0x44, 0xf1, 0x3b,
+ 0x22, 0x05, 0x57, 0x6a, 0xcb, 0xe6, 0xe0, 0xa0, 0xb1, 0x75, 0xff, 0x8c, 0x67, 0x37, 0x23, 0x40,
+ 0x46, 0xf4, 0xc9, 0x28, 0xff, 0x4c, 0x0b, 0x7d, 0xf8, 0x7e, 0x83, 0x53, 0xab, 0xfa, 0x5f, 0xb8,
+ 0x9a, 0x00, 0xcc, 0xf4, 0x09, 0x9c, 0x87, 0x6a, 0xea, 0x13, 0x38, 0x17, 0x65, 0x8b, 0xad, 0xed,
+ 0x0c, 0xe6, 0xf3, 0x70, 0x0c, 0x74, 0x57, 0x47, 0x45, 0x21, 0x22, 0x63, 0xdc, 0x1b, 0x3d, 0x28,
+ 0x23, 0xac, 0x0d, 0xb3, 0x19, 0x50, 0x48, 0x3b, 0x50, 0x11, 0x8a, 0xa5, 0x1d, 0xa8, 0x10, 0x51,
+ 0x8a, 0xc9, 0xc0, 0x80, 0xb2, 0xa5, 0x21, 0x14, 0x7b, 0xef, 0x16, 0x54, 0xa8, 0xf4, 0x11, 0x3d,
+ 0xa2, 0xb2, 0xa4, 0x0f, 0x97, 0x36, 0xcc, 0x66, 0xaa, 0x41, 0x7a, 0x29, 0x45, 0xe5, 0x27, 0xbd,
+ 0x94, 0xc2, 0x52, 0x52, 0x6c, 0x29, 0xaf, 0xe1, 0x7a, 0x0a, 0xbd, 0x40, 0xb7, 0x12, 0xaf, 0x86,
+ 0x0c, 0xd8, 0x62, 0xac, 0x16, 0xf6, 0xa7, 0xfc, 0x89, 0xc0, 0x42, 0x3e, 0x46, 0x81, 0x3e, 0x88,
+ 0xb9, 0x4e, 0x31, 0x3c, 0x62, 0xdc, 0xff, 0xb1, 0x61, 0xa9, 0xd0, 0x3e, 0x81, 0xab, 0x89, 0xf4,
+ 0x5a, 0x3b, 0x70, 0x1e, 0xe8, 0xa1, 0x1d, 0x38, 0x1f, 0x70, 0x08, 0x97, 0xe1, 0xa5, 0x10, 0x89,
+ 0x30, 0x69, 0x47, 0xf7, 0x72, 0xe7, 0xa7, 0x60, 0x09, 0xe3, 0x83, 0x1f, 0x19, 0x95, 0x7d, 0xf7,
+ 0xa6, 0x93, 0xf5, 0x78, 0x2e, 0x97, 0x8b, 0x0d, 0xc4, 0x73, 0xb9, 0x82, 0x3c, 0x3f, 0xc1, 0x3e,
+ 0x99, 0x75, 0xc7, 0xd9, 0xe7, 0x22, 0x01, 0x71, 0xf6, 0x05, 0x09, 0x7b, 0xc8, 0xbe, 0x0b, 0x73,
+ 0x39, 0x39, 0x33, 0x8a, 0xf9, 0x7d, 0x51, 0x52, 0x6f, 0xdc, 0x1d, 0x39, 0x26, 0xfb, 0x12, 0xcb,
+ 0x66, 0xc9, 0x3a, 0x02, 0x0b, 0x13, 0x73, 0x1d, 0x81, 0xc5, 0x49, 0x76, 0x28, 0x64, 0xe3, 0xf1,
+ 0x6b, 0x3e, 0xd8, 0xb3, 0xdb, 0x6b, 0x0e, 0xe9, 0x3f, 0x92, 0x9f, 0x9f, 0x12, 0x7a, 0xfa, 0x48,
+ 0xb2, 0x78, 0x24, 0xfe, 0x07, 0x7f, 0x74, 0x4a, 0x54, 0x7b, 0xd0, 0x6e, 0x97, 0x05, 0xe9, 0xe9,
+ 0x3f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x34, 0x36, 0x38, 0x22, 0x60, 0x2e, 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 a4759fe49..9c16d9b1b 100644
--- a/proto/repository-service.proto
+++ b/proto/repository-service.proto
@@ -245,6 +245,12 @@ message RepackFullResponse {}
message GarbageCollectRequest {
Repository repository = 1 [(target_repository)=true];
bool create_bitmap = 2;
+ // If set to 'true' the 'gc' will be triggered with '--prune=24.hours.ago' flag.
+ // This will remove dangling objects from the object storage that were not modified in the last 24 hours.
+ // If 'false' provided the 'gc' will rely on the default expiration period (2 weeks).
+ // The window of 24 hours exists because of possible concurrent operations running on the same
+ // storage and removal of the objects may cause races and fail concurrent operations.
+ bool prune = 3;
}
message GarbageCollectResponse {}
diff --git a/ruby/proto/gitaly/repository-service_pb.rb b/ruby/proto/gitaly/repository-service_pb.rb
index 375c275e4..a50b34355 100644
--- a/ruby/proto/gitaly/repository-service_pb.rb
+++ b/ruby/proto/gitaly/repository-service_pb.rb
@@ -27,6 +27,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
add_message "gitaly.GarbageCollectRequest" do
optional :repository, :message, 1, "gitaly.Repository"
optional :create_bitmap, :bool, 2
+ optional :prune, :bool, 3
end
add_message "gitaly.GarbageCollectResponse" do
end