mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00
controller: don't write metadata file in controller
Signed-off-by: Justin Chadwell <me@jedevc.com>
This commit is contained in:
parent
75ed3e296b
commit
2bf996d9ad
@ -111,7 +111,6 @@ func (o *buildOptions) toControllerOptions() (*controllerapi.BuildOptions, error
|
|||||||
Target: o.target,
|
Target: o.target,
|
||||||
Ulimits: dockerUlimitToControllerUlimit(o.ulimits),
|
Ulimits: dockerUlimitToControllerUlimit(o.ulimits),
|
||||||
Builder: o.builder,
|
Builder: o.builder,
|
||||||
MetadataFile: o.metadataFile,
|
|
||||||
NoCache: o.noCache,
|
NoCache: o.noCache,
|
||||||
Pull: o.pull,
|
Pull: o.pull,
|
||||||
ExportPush: o.exportPush,
|
ExportPush: o.exportPush,
|
||||||
@ -263,7 +262,11 @@ func runBuild(dockerCli command.Cli, options buildOptions) (err error) {
|
|||||||
}
|
}
|
||||||
return os.WriteFile(options.imageIDFile, []byte(dgst), 0644)
|
return os.WriteFile(options.imageIDFile, []byte(dgst), 0644)
|
||||||
}
|
}
|
||||||
|
if options.metadataFile != "" {
|
||||||
|
if err := writeMetadataFile(options.metadataFile, decodeExporterResponse(resp.ExporterResponse)); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -895,13 +898,6 @@ func resolvePaths(options *controllerapi.BuildOptions) (_ *controllerapi.BuildOp
|
|||||||
}
|
}
|
||||||
options.SSH = ssh
|
options.SSH = ssh
|
||||||
|
|
||||||
if options.MetadataFile != "" {
|
|
||||||
options.MetadataFile, err = filepath.Abs(options.MetadataFile)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return options, nil
|
return options, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -235,15 +235,6 @@ func TestResolvePaths(t *testing.T) {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "metadatafile",
|
|
||||||
options: controllerapi.BuildOptions{
|
|
||||||
MetadataFile: "test1",
|
|
||||||
},
|
|
||||||
want: controllerapi.BuildOptions{
|
|
||||||
MetadataFile: filepath.Join(tmpwd, "test1"),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
@ -2,9 +2,7 @@ package build
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"encoding/base64"
|
|
||||||
"encoding/csv"
|
"encoding/csv"
|
||||||
"encoding/json"
|
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@ -24,7 +22,6 @@ import (
|
|||||||
"github.com/docker/cli/cli/command"
|
"github.com/docker/cli/cli/command"
|
||||||
"github.com/docker/cli/cli/config"
|
"github.com/docker/cli/cli/config"
|
||||||
dockeropts "github.com/docker/cli/opts"
|
dockeropts "github.com/docker/cli/opts"
|
||||||
"github.com/docker/docker/pkg/ioutils"
|
|
||||||
"github.com/docker/go-units"
|
"github.com/docker/go-units"
|
||||||
"github.com/moby/buildkit/client"
|
"github.com/moby/buildkit/client"
|
||||||
"github.com/moby/buildkit/session/auth/authprovider"
|
"github.com/moby/buildkit/session/auth/authprovider"
|
||||||
@ -174,7 +171,7 @@ func RunBuild(ctx context.Context, dockerCli command.Cli, in controllerapi.Build
|
|||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
resp, res, err := buildTargets(ctx, dockerCli, b.NodeGroup, nodes, map[string]build.Options{defaultTargetName: opts}, progress, in.MetadataFile, generateResult)
|
resp, res, err := buildTargets(ctx, dockerCli, b.NodeGroup, nodes, map[string]build.Options{defaultTargetName: opts}, progress, generateResult)
|
||||||
err = wrapBuildError(err, false)
|
err = wrapBuildError(err, false)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// NOTE: buildTargets can return *build.ResultContext even on error.
|
// NOTE: buildTargets can return *build.ResultContext even on error.
|
||||||
@ -188,7 +185,7 @@ func RunBuild(ctx context.Context, dockerCli command.Cli, in controllerapi.Build
|
|||||||
// NOTE: When an error happens during the build and this function acquires the debuggable *build.ResultContext,
|
// NOTE: When an error happens during the build and this function acquires the debuggable *build.ResultContext,
|
||||||
// this function returns it in addition to the error (i.e. it does "return nil, res, err"). The caller can
|
// this function returns it in addition to the error (i.e. it does "return nil, res, err"). The caller can
|
||||||
// inspect the result and debug the cause of that error.
|
// inspect the result and debug the cause of that error.
|
||||||
func buildTargets(ctx context.Context, dockerCli command.Cli, ng *store.NodeGroup, nodes []builder.Node, opts map[string]build.Options, progress progress.Writer, metadataFile string, generateResult bool) (*client.SolveResponse, *build.ResultContext, error) {
|
func buildTargets(ctx context.Context, dockerCli command.Cli, ng *store.NodeGroup, nodes []builder.Node, opts map[string]build.Options, progress progress.Writer, generateResult bool) (*client.SolveResponse, *build.ResultContext, error) {
|
||||||
var res *build.ResultContext
|
var res *build.ResultContext
|
||||||
var resp map[string]*client.SolveResponse
|
var resp map[string]*client.SolveResponse
|
||||||
var err error
|
var err error
|
||||||
@ -209,12 +206,6 @@ func buildTargets(ctx context.Context, dockerCli command.Cli, ng *store.NodeGrou
|
|||||||
return nil, res, err
|
return nil, res, err
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(metadataFile) > 0 && resp != nil {
|
|
||||||
if err := writeMetadataFile(metadataFile, decodeExporterResponse(resp[defaultTargetName].ExporterResponse)); err != nil {
|
|
||||||
return nil, nil, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for k := range resp {
|
for k := range resp {
|
||||||
if opts[k].PrintFunc != nil {
|
if opts[k].PrintFunc != nil {
|
||||||
if err := printResult(opts[k].PrintFunc, resp[k].ExporterResponse); err != nil {
|
if err := printResult(opts[k].PrintFunc, resp[k].ExporterResponse); err != nil {
|
||||||
@ -254,32 +245,6 @@ func parsePrintFunc(str string) (*build.PrintFunc, error) {
|
|||||||
return f, nil
|
return f, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func writeMetadataFile(filename string, dt interface{}) error {
|
|
||||||
b, err := json.MarshalIndent(dt, "", " ")
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return ioutils.AtomicWriteFile(filename, b, 0644)
|
|
||||||
}
|
|
||||||
|
|
||||||
func decodeExporterResponse(exporterResponse map[string]string) map[string]interface{} {
|
|
||||||
out := make(map[string]interface{})
|
|
||||||
for k, v := range exporterResponse {
|
|
||||||
dt, err := base64.StdEncoding.DecodeString(v)
|
|
||||||
if err != nil {
|
|
||||||
out[k] = v
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
var raw map[string]interface{}
|
|
||||||
if err = json.Unmarshal(dt, &raw); err != nil || len(raw) == 0 {
|
|
||||||
out[k] = v
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
out[k] = json.RawMessage(dt)
|
|
||||||
}
|
|
||||||
return out
|
|
||||||
}
|
|
||||||
|
|
||||||
func wrapBuildError(err error, bake bool) error {
|
func wrapBuildError(err error, bake bool) error {
|
||||||
if err == nil {
|
if err == nil {
|
||||||
return nil
|
return nil
|
||||||
|
@ -293,11 +293,10 @@ type BuildOptions struct {
|
|||||||
Target string `protobuf:"bytes,21,opt,name=Target,proto3" json:"Target,omitempty"`
|
Target string `protobuf:"bytes,21,opt,name=Target,proto3" json:"Target,omitempty"`
|
||||||
Ulimits *UlimitOpt `protobuf:"bytes,22,opt,name=Ulimits,proto3" json:"Ulimits,omitempty"`
|
Ulimits *UlimitOpt `protobuf:"bytes,22,opt,name=Ulimits,proto3" json:"Ulimits,omitempty"`
|
||||||
Builder string `protobuf:"bytes,23,opt,name=Builder,proto3" json:"Builder,omitempty"`
|
Builder string `protobuf:"bytes,23,opt,name=Builder,proto3" json:"Builder,omitempty"`
|
||||||
MetadataFile string `protobuf:"bytes,24,opt,name=MetadataFile,proto3" json:"MetadataFile,omitempty"`
|
NoCache bool `protobuf:"varint,24,opt,name=NoCache,proto3" json:"NoCache,omitempty"`
|
||||||
NoCache bool `protobuf:"varint,25,opt,name=NoCache,proto3" json:"NoCache,omitempty"`
|
Pull bool `protobuf:"varint,25,opt,name=Pull,proto3" json:"Pull,omitempty"`
|
||||||
Pull bool `protobuf:"varint,26,opt,name=Pull,proto3" json:"Pull,omitempty"`
|
ExportPush bool `protobuf:"varint,26,opt,name=ExportPush,proto3" json:"ExportPush,omitempty"`
|
||||||
ExportPush bool `protobuf:"varint,27,opt,name=ExportPush,proto3" json:"ExportPush,omitempty"`
|
ExportLoad bool `protobuf:"varint,27,opt,name=ExportLoad,proto3" json:"ExportLoad,omitempty"`
|
||||||
ExportLoad bool `protobuf:"varint,28,opt,name=ExportLoad,proto3" json:"ExportLoad,omitempty"`
|
|
||||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||||
XXX_unrecognized []byte `json:"-"`
|
XXX_unrecognized []byte `json:"-"`
|
||||||
XXX_sizecache int32 `json:"-"`
|
XXX_sizecache int32 `json:"-"`
|
||||||
@ -488,13 +487,6 @@ func (m *BuildOptions) GetBuilder() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *BuildOptions) GetMetadataFile() string {
|
|
||||||
if m != nil {
|
|
||||||
return m.MetadataFile
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *BuildOptions) GetNoCache() bool {
|
func (m *BuildOptions) GetNoCache() bool {
|
||||||
if m != nil {
|
if m != nil {
|
||||||
return m.NoCache
|
return m.NoCache
|
||||||
@ -1998,122 +1990,121 @@ func init() {
|
|||||||
func init() { proto.RegisterFile("controller.proto", fileDescriptor_ed7f10298fa1d90f) }
|
func init() { proto.RegisterFile("controller.proto", fileDescriptor_ed7f10298fa1d90f) }
|
||||||
|
|
||||||
var fileDescriptor_ed7f10298fa1d90f = []byte{
|
var fileDescriptor_ed7f10298fa1d90f = []byte{
|
||||||
// 1832 bytes of a gzipped FileDescriptorProto
|
// 1818 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x58, 0x5f, 0x6f, 0xdb, 0xc8,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x58, 0xef, 0x6e, 0x1b, 0xb9,
|
||||||
0x11, 0x2f, 0x25, 0x59, 0x7f, 0x46, 0x96, 0xe3, 0x6c, 0x9d, 0xeb, 0x86, 0x49, 0x2f, 0x0e, 0x93,
|
0x11, 0xef, 0x4a, 0xb2, 0xfe, 0x8c, 0x2c, 0xc7, 0x61, 0x9d, 0x2b, 0xb3, 0xb9, 0x5e, 0x9c, 0x4d,
|
||||||
0xbb, 0x0a, 0x4d, 0x21, 0xdf, 0xf9, 0x7a, 0xcd, 0xe5, 0x72, 0x05, 0x6a, 0xcb, 0x16, 0xec, 0x43,
|
0xee, 0x2a, 0x34, 0x85, 0x7c, 0xe7, 0xeb, 0x35, 0x97, 0xcb, 0x15, 0xa8, 0x2d, 0x5b, 0xb0, 0x0f,
|
||||||
0xfc, 0x07, 0x94, 0x93, 0x43, 0x5b, 0xa0, 0x07, 0x4a, 0x5a, 0xcb, 0x84, 0x28, 0xae, 0xca, 0x5d,
|
0x89, 0x6d, 0xac, 0x1c, 0x1f, 0xda, 0x02, 0x0d, 0x56, 0x12, 0x2d, 0x2f, 0xb4, 0x5a, 0xaa, 0x4b,
|
||||||
0xd9, 0x56, 0x9f, 0xfa, 0xd2, 0xb7, 0xa2, 0xdf, 0xa3, 0xe8, 0x47, 0xe8, 0x53, 0xbf, 0x50, 0xd1,
|
0xca, 0xb6, 0xfa, 0xa9, 0x5f, 0xfa, 0xad, 0xe8, 0x7b, 0x14, 0x7d, 0x84, 0x7e, 0xea, 0x3b, 0xf4,
|
||||||
0xc7, 0x3e, 0x16, 0x3b, 0xbb, 0xa4, 0x28, 0x4b, 0x94, 0xed, 0xde, 0x93, 0x76, 0x86, 0xbf, 0xdf,
|
0x39, 0x8a, 0x3e, 0x42, 0xc1, 0x21, 0x77, 0xb5, 0xb2, 0xb4, 0xb2, 0xdd, 0xfb, 0x24, 0xce, 0xf0,
|
||||||
0xec, 0xce, 0x70, 0x76, 0x66, 0x44, 0x58, 0xef, 0xf2, 0x50, 0x46, 0x3c, 0x08, 0x58, 0xd4, 0x18,
|
0xf7, 0x1b, 0x72, 0x86, 0xc3, 0xe1, 0x68, 0x61, 0xbd, 0xcb, 0x43, 0x19, 0xf1, 0x20, 0x60, 0x51,
|
||||||
0x45, 0x5c, 0x72, 0xb2, 0xd1, 0x19, 0xfb, 0x41, 0xef, 0xba, 0x91, 0x7a, 0x70, 0xf9, 0xb9, 0xfd,
|
0x63, 0x14, 0x71, 0xc9, 0xc9, 0x46, 0x67, 0xec, 0x07, 0xbd, 0xeb, 0x46, 0x6a, 0xe2, 0xf2, 0x0b,
|
||||||
0xb6, 0xef, 0xcb, 0x8b, 0x71, 0xa7, 0xd1, 0xe5, 0xc3, 0xad, 0x21, 0xef, 0x4c, 0xb6, 0x10, 0x35,
|
0xfb, 0x4d, 0xdf, 0x97, 0x17, 0xe3, 0x4e, 0xa3, 0xcb, 0x87, 0x5b, 0x43, 0xde, 0x99, 0x6c, 0x21,
|
||||||
0xf0, 0xe5, 0x96, 0x37, 0xf2, 0xb7, 0x04, 0x8b, 0x2e, 0xfd, 0x2e, 0x13, 0x5b, 0x86, 0x14, 0xff,
|
0x6a, 0xe0, 0xcb, 0x2d, 0x6f, 0xe4, 0x6f, 0x09, 0x16, 0x5d, 0xfa, 0x5d, 0x26, 0xb6, 0x0c, 0x29,
|
||||||
0x6a, 0x93, 0x4e, 0x1d, 0x36, 0xde, 0xf9, 0x42, 0x9e, 0x46, 0xbc, 0xcb, 0x84, 0x60, 0xc2, 0x65,
|
0xfe, 0xd5, 0x26, 0x9d, 0x3a, 0x6c, 0xbc, 0xf5, 0x85, 0x3c, 0x89, 0x78, 0x97, 0x09, 0xc1, 0x84,
|
||||||
0x7f, 0x1c, 0x33, 0x21, 0xc9, 0x3a, 0xe4, 0x5d, 0x76, 0x4e, 0xad, 0x4d, 0xab, 0x5e, 0x71, 0xd5,
|
0xcb, 0xfe, 0x38, 0x66, 0x42, 0x92, 0x75, 0xc8, 0xbb, 0xec, 0x9c, 0x5a, 0x9b, 0x56, 0xbd, 0xe2,
|
||||||
0xd2, 0x39, 0x85, 0x47, 0x37, 0x90, 0x62, 0xc4, 0x43, 0xc1, 0xc8, 0x6b, 0x58, 0x39, 0x0c, 0xcf,
|
0xaa, 0xa1, 0x73, 0x02, 0x8f, 0x6e, 0x20, 0xc5, 0x88, 0x87, 0x82, 0x91, 0x57, 0xb0, 0x72, 0x18,
|
||||||
0xb9, 0xa0, 0xd6, 0x66, 0xbe, 0x5e, 0xdd, 0x7e, 0xde, 0x58, 0x74, 0xca, 0x86, 0xe1, 0x29, 0xa4,
|
0x9e, 0x73, 0x41, 0xad, 0xcd, 0x7c, 0xbd, 0xba, 0xfd, 0xac, 0xb1, 0x68, 0x97, 0x0d, 0xc3, 0x53,
|
||||||
0xab, 0xf1, 0x8e, 0x80, 0x6a, 0x4a, 0x4b, 0x9e, 0x42, 0x25, 0x16, 0xf7, 0xcc, 0xc6, 0x53, 0x05,
|
0x48, 0x57, 0xe3, 0x1d, 0x01, 0xd5, 0x94, 0x96, 0x7c, 0x0c, 0x95, 0x58, 0xdc, 0x33, 0x0b, 0x4f,
|
||||||
0x69, 0xc1, 0xea, 0x61, 0x78, 0xc9, 0x07, 0xac, 0xc9, 0xc3, 0x73, 0xbf, 0x4f, 0x73, 0x9b, 0x56,
|
0x15, 0xa4, 0x05, 0xab, 0x87, 0xe1, 0x25, 0x1f, 0xb0, 0x26, 0x0f, 0xcf, 0xfd, 0x3e, 0xcd, 0x6d,
|
||||||
0xbd, 0xba, 0xed, 0x2c, 0xde, 0x2c, 0x8d, 0x74, 0x67, 0x78, 0xce, 0xb7, 0x40, 0xf7, 0x7c, 0xd1,
|
0x5a, 0xf5, 0xea, 0xb6, 0xb3, 0x78, 0xb1, 0x34, 0xd2, 0x9d, 0xe1, 0x39, 0xdf, 0x01, 0xdd, 0xf3,
|
||||||
0xe5, 0x61, 0xc8, 0xba, 0xb1, 0x33, 0x99, 0x4e, 0xcf, 0x9e, 0x29, 0x77, 0xe3, 0x4c, 0xce, 0x13,
|
0x45, 0x97, 0x87, 0x21, 0xeb, 0xc6, 0xce, 0x64, 0x3a, 0x3d, 0xbb, 0xa7, 0xdc, 0x8d, 0x3d, 0x39,
|
||||||
0x78, 0xbc, 0xc0, 0x96, 0x0e, 0x8b, 0xf3, 0x07, 0x58, 0xdd, 0x55, 0x67, 0xcb, 0x36, 0xfe, 0x0d,
|
0x4f, 0xe0, 0xf1, 0x02, 0x5b, 0x3a, 0x2c, 0xce, 0x1f, 0x60, 0x75, 0x57, 0xed, 0x2d, 0xdb, 0xf8,
|
||||||
0x94, 0x4e, 0x46, 0xd2, 0xe7, 0xa1, 0x58, 0xee, 0x0d, 0x9a, 0x31, 0x48, 0x37, 0xa6, 0x38, 0xff,
|
0xb7, 0x50, 0x3a, 0x1e, 0x49, 0x9f, 0x87, 0x62, 0xb9, 0x37, 0x68, 0xc6, 0x20, 0xdd, 0x98, 0xe2,
|
||||||
0x05, 0xb3, 0x81, 0x51, 0x90, 0x4d, 0xa8, 0x36, 0x79, 0x28, 0xd9, 0xb5, 0x3c, 0xf5, 0xe4, 0x85,
|
0xfc, 0x1b, 0xcc, 0x02, 0x46, 0x41, 0x36, 0xa1, 0xda, 0xe4, 0xa1, 0x64, 0xd7, 0xf2, 0xc4, 0x93,
|
||||||
0xd9, 0x28, 0xad, 0x22, 0x9f, 0xc2, 0xda, 0x1e, 0xef, 0x0e, 0x58, 0x74, 0xee, 0x07, 0xec, 0xd8,
|
0x17, 0x66, 0xa1, 0xb4, 0x8a, 0x7c, 0x06, 0x6b, 0x7b, 0xbc, 0x3b, 0x60, 0xd1, 0xb9, 0x1f, 0xb0,
|
||||||
0x1b, 0x32, 0xe3, 0xd2, 0x0d, 0xad, 0xf6, 0xda, 0x0f, 0x65, 0x6b, 0x1c, 0x76, 0x69, 0x3e, 0xf6,
|
0x23, 0x6f, 0xc8, 0x8c, 0x4b, 0x37, 0xb4, 0xda, 0x6b, 0x3f, 0x94, 0xad, 0x71, 0xd8, 0xa5, 0xf9,
|
||||||
0xda, 0x28, 0xc8, 0xef, 0xa1, 0xa6, 0x50, 0x3d, 0x63, 0x59, 0xd0, 0x02, 0xbe, 0xf7, 0x2f, 0x6f,
|
0xd8, 0x6b, 0xa3, 0x20, 0xbf, 0x87, 0x9a, 0x42, 0xf5, 0x8c, 0x65, 0x41, 0x0b, 0x78, 0xee, 0x5f,
|
||||||
0x3f, 0x7c, 0x63, 0x86, 0xb7, 0x1f, 0xca, 0x68, 0xe2, 0xce, 0xda, 0x22, 0x1b, 0xb0, 0xb2, 0x13,
|
0xdd, 0xbe, 0xf9, 0xc6, 0x0c, 0x6f, 0x3f, 0x94, 0xd1, 0xc4, 0x9d, 0xb5, 0x45, 0x36, 0x60, 0x65,
|
||||||
0x04, 0xfc, 0x8a, 0xae, 0x6c, 0xe6, 0xeb, 0x15, 0x57, 0x0b, 0xe4, 0x57, 0x50, 0xda, 0x91, 0x92,
|
0x27, 0x08, 0xf8, 0x15, 0x5d, 0xd9, 0xcc, 0xd7, 0x2b, 0xae, 0x16, 0xc8, 0xaf, 0xa0, 0xb4, 0x23,
|
||||||
0x09, 0x29, 0x68, 0x11, 0x37, 0x7b, 0xba, 0x78, 0x33, 0x0d, 0x72, 0x63, 0x30, 0x39, 0x81, 0x0a,
|
0x25, 0x13, 0x52, 0xd0, 0x22, 0x2e, 0xf6, 0xf1, 0xe2, 0xc5, 0x34, 0xc8, 0x8d, 0xc1, 0xe4, 0x18,
|
||||||
0xee, 0xbf, 0x13, 0xf5, 0x05, 0x2d, 0x21, 0xf3, 0xf3, 0x3b, 0x1c, 0x33, 0xe1, 0xe8, 0x23, 0x4e,
|
0x2a, 0xb8, 0xfe, 0x4e, 0xd4, 0x17, 0xb4, 0x84, 0xcc, 0x2f, 0xee, 0xb0, 0xcd, 0x84, 0xa3, 0xb7,
|
||||||
0x6d, 0x90, 0x7d, 0xa8, 0x34, 0xbd, 0xee, 0x05, 0x6b, 0x45, 0x7c, 0x48, 0xcb, 0x68, 0xf0, 0x67,
|
0x38, 0xb5, 0x41, 0xf6, 0xa1, 0xd2, 0xf4, 0xba, 0x17, 0xac, 0x15, 0xf1, 0x21, 0x2d, 0xa3, 0xc1,
|
||||||
0x8b, 0x0d, 0x22, 0xcc, 0x18, 0x34, 0x66, 0x12, 0x26, 0xd9, 0x81, 0x12, 0x0a, 0x67, 0x9c, 0x56,
|
0x9f, 0x2d, 0x36, 0x88, 0x30, 0x63, 0xd0, 0x98, 0x49, 0x98, 0x64, 0x07, 0x4a, 0x28, 0x9c, 0x72,
|
||||||
0xee, 0x67, 0x24, 0xe6, 0x11, 0x07, 0x56, 0x9b, 0xfd, 0x88, 0x8f, 0x47, 0xa7, 0x5e, 0xc4, 0x42,
|
0x5a, 0xb9, 0x9f, 0x91, 0x98, 0x47, 0x1c, 0x58, 0x6d, 0xf6, 0x23, 0x3e, 0x1e, 0x9d, 0x78, 0x11,
|
||||||
0x49, 0x01, 0x5f, 0xd3, 0x8c, 0x8e, 0xbc, 0x85, 0xd2, 0xfe, 0xf5, 0x88, 0x47, 0x52, 0xd0, 0xea,
|
0x0b, 0x25, 0x05, 0x3c, 0xa6, 0x19, 0x1d, 0x79, 0x03, 0xa5, 0xfd, 0xeb, 0x11, 0x8f, 0xa4, 0xa0,
|
||||||
0xb2, 0xbb, 0xa9, 0x41, 0x66, 0x03, 0xc3, 0x20, 0x1f, 0x03, 0xec, 0x5f, 0xcb, 0xc8, 0x3b, 0xe0,
|
0xd5, 0x65, 0x77, 0x53, 0x83, 0xcc, 0x02, 0x86, 0x41, 0x3e, 0x01, 0xd8, 0xbf, 0x96, 0x91, 0x77,
|
||||||
0x2a, 0xec, 0xab, 0xf8, 0x3a, 0x52, 0x1a, 0xd2, 0x82, 0xe2, 0x3b, 0xaf, 0xc3, 0x02, 0x41, 0x6b,
|
0xc0, 0x55, 0xd8, 0x57, 0xf1, 0x38, 0x52, 0x1a, 0xd2, 0x82, 0xe2, 0x5b, 0xaf, 0xc3, 0x02, 0x41,
|
||||||
0x68, 0xbb, 0x71, 0x87, 0xc0, 0x6a, 0x82, 0xde, 0xc8, 0xb0, 0x55, 0xda, 0x1e, 0x33, 0x79, 0xc5,
|
0x6b, 0x68, 0xbb, 0x71, 0x87, 0xc0, 0x6a, 0x82, 0x5e, 0xc8, 0xb0, 0x55, 0xda, 0x1e, 0x31, 0x79,
|
||||||
0xa3, 0xc1, 0x11, 0xef, 0x31, 0xba, 0xa6, 0xd3, 0x36, 0xa5, 0x22, 0x2f, 0xa1, 0x76, 0xcc, 0x75,
|
0xc5, 0xa3, 0xc1, 0x3b, 0xde, 0x63, 0x74, 0x4d, 0xa7, 0x6d, 0x4a, 0x45, 0x5e, 0x40, 0xed, 0x88,
|
||||||
0xf0, 0xfc, 0x40, 0xb2, 0x88, 0x3e, 0xc0, 0xc3, 0xcc, 0x2a, 0x31, 0x69, 0x03, 0x4f, 0x9e, 0xf3,
|
0xeb, 0xe0, 0xf9, 0x81, 0x64, 0x11, 0x7d, 0x80, 0x9b, 0x99, 0x55, 0x62, 0xd2, 0x06, 0x9e, 0x3c,
|
||||||
0x68, 0x28, 0xe8, 0x3a, 0x22, 0xa6, 0x0a, 0x95, 0x41, 0x6d, 0xd6, 0x8d, 0x98, 0x14, 0xf4, 0xe1,
|
0xe7, 0xd1, 0x50, 0xd0, 0x75, 0x44, 0x4c, 0x15, 0x2a, 0x83, 0xda, 0xac, 0x1b, 0x31, 0x29, 0xe8,
|
||||||
0xb2, 0x0c, 0xd2, 0x20, 0x37, 0x06, 0x13, 0x0a, 0xa5, 0xf6, 0xc5, 0xb0, 0xed, 0xff, 0x89, 0x51,
|
0xc3, 0x65, 0x19, 0xa4, 0x41, 0x6e, 0x0c, 0x26, 0x14, 0x4a, 0xed, 0x8b, 0x61, 0xdb, 0xff, 0x13,
|
||||||
0xb2, 0x69, 0xd5, 0xf3, 0x6e, 0x2c, 0x92, 0x57, 0x90, 0x6f, 0xb7, 0x0f, 0xe8, 0x8f, 0xd1, 0xda,
|
0xa3, 0x64, 0xd3, 0xaa, 0xe7, 0xdd, 0x58, 0x24, 0x2f, 0x21, 0xdf, 0x6e, 0x1f, 0xd0, 0x1f, 0xa3,
|
||||||
0xe3, 0x0c, 0x6b, 0xed, 0x03, 0x57, 0xa1, 0x08, 0x81, 0xc2, 0x99, 0xd7, 0x17, 0x74, 0x03, 0xcf,
|
0xb5, 0xc7, 0x19, 0xd6, 0xda, 0x07, 0xae, 0x42, 0x11, 0x02, 0x85, 0x53, 0xaf, 0x2f, 0xe8, 0x06,
|
||||||
0x85, 0x6b, 0xf2, 0x11, 0x14, 0xcf, 0xbc, 0xa8, 0xcf, 0x24, 0x7d, 0x84, 0x3e, 0x1b, 0x89, 0xbc,
|
0xee, 0x0b, 0xc7, 0xe4, 0x23, 0x28, 0x9e, 0x7a, 0x51, 0x9f, 0x49, 0xfa, 0x08, 0x7d, 0x36, 0x12,
|
||||||
0x81, 0xd2, 0xfb, 0xc0, 0x1f, 0xfa, 0x52, 0xd0, 0x8f, 0xb0, 0x2c, 0x3c, 0x5b, 0x6c, 0x5c, 0x83,
|
0x79, 0x0d, 0xa5, 0xf7, 0x81, 0x3f, 0xf4, 0xa5, 0xa0, 0x1f, 0x61, 0x59, 0x78, 0xba, 0xd8, 0xb8,
|
||||||
0x4e, 0x46, 0xd2, 0x8d, 0xf1, 0xea, 0xb4, 0x18, 0x6f, 0x16, 0xd1, 0x9f, 0xa0, 0xcd, 0x58, 0x54,
|
0x06, 0x1d, 0x8f, 0xa4, 0x1b, 0xe3, 0xd5, 0x6e, 0x31, 0xde, 0x2c, 0xa2, 0x3f, 0x41, 0x9b, 0xb1,
|
||||||
0xe9, 0x72, 0xc4, 0xa4, 0xd7, 0xf3, 0xa4, 0xd7, 0xf2, 0x03, 0x46, 0xa9, 0x4e, 0x97, 0xb4, 0x4e,
|
0xa8, 0x66, 0x4c, 0xb8, 0x28, 0xdd, 0xb4, 0xea, 0x65, 0x37, 0x16, 0xd5, 0xd6, 0x4e, 0xc6, 0x41,
|
||||||
0xb1, 0x4d, 0x48, 0xe9, 0xe3, 0x4d, 0xab, 0x5e, 0x76, 0x63, 0x51, 0x1d, 0xff, 0x74, 0x1c, 0x04,
|
0x40, 0x1f, 0xa3, 0x1a, 0xc7, 0xfa, 0xec, 0x55, 0x1a, 0x9c, 0x8c, 0xc5, 0x05, 0xb5, 0x71, 0x26,
|
||||||
0xd4, 0x46, 0x35, 0xae, 0x75, 0x7e, 0xa8, 0x54, 0x39, 0x1d, 0x8b, 0x0b, 0xfa, 0x04, 0x9f, 0xa4,
|
0xa5, 0x99, 0xce, 0xbf, 0xe5, 0x5e, 0x8f, 0x3e, 0x49, 0xcf, 0x2b, 0x8d, 0xfd, 0x1b, 0x20, 0xf3,
|
||||||
0x34, 0xd3, 0xe7, 0xef, 0xb8, 0xd7, 0xa3, 0x4f, 0xd3, 0xcf, 0x95, 0xc6, 0xfe, 0x0d, 0x90, 0xf9,
|
0x57, 0x5d, 0x55, 0xc0, 0x01, 0x9b, 0xc4, 0x15, 0x70, 0xc0, 0x26, 0xea, 0xb6, 0x5f, 0x7a, 0xc1,
|
||||||
0x72, 0xa0, 0xaa, 0xe4, 0x80, 0x4d, 0xe2, 0x2a, 0x39, 0x60, 0x13, 0x55, 0x11, 0x2e, 0xbd, 0x60,
|
0x38, 0xae, 0x43, 0x5a, 0xf8, 0x26, 0xf7, 0xb5, 0x65, 0x7f, 0x0b, 0x6b, 0xb3, 0xb7, 0xf0, 0x5e,
|
||||||
0x1c, 0xd7, 0x2a, 0x2d, 0x7c, 0x9d, 0xfb, 0xca, 0xb2, 0xbf, 0x81, 0xb5, 0xd9, 0x9b, 0x7a, 0x2f,
|
0xec, 0xd7, 0x50, 0x4d, 0xa5, 0xda, 0x7d, 0xa8, 0xce, 0xbf, 0x2c, 0xa8, 0xa6, 0xee, 0x03, 0x9e,
|
||||||
0xf6, 0x1b, 0xa8, 0xa6, 0xd2, 0xf1, 0x3e, 0x54, 0xe7, 0x5f, 0x16, 0x54, 0x53, 0x77, 0x06, 0xdf,
|
0xdc, 0x64, 0xc4, 0x0c, 0x19, 0xc7, 0x64, 0x17, 0x56, 0x76, 0xa4, 0x8c, 0x54, 0xd9, 0x56, 0x87,
|
||||||
0xee, 0x64, 0xc4, 0x0c, 0x19, 0xd7, 0x64, 0x17, 0x56, 0x76, 0xa4, 0x8c, 0x54, 0x69, 0x57, 0x09,
|
0xff, 0x8b, 0x5b, 0x6f, 0x55, 0x03, 0xe1, 0x3a, 0xef, 0x35, 0x55, 0xa5, 0xfd, 0x1e, 0x13, 0xd2,
|
||||||
0xf2, 0x8b, 0x5b, 0x6f, 0x5e, 0x03, 0xe1, 0xfa, 0x6e, 0x68, 0xaa, 0xba, 0x1a, 0x7b, 0x4c, 0x48,
|
0x0f, 0x3d, 0x75, 0x35, 0x4c, 0x95, 0x4d, 0xab, 0xec, 0xaf, 0x01, 0xa6, 0xb4, 0x7b, 0xf9, 0xf0,
|
||||||
0x3f, 0xf4, 0xd4, 0xf5, 0x31, 0x95, 0x38, 0xad, 0xb2, 0xbf, 0x02, 0x98, 0xd2, 0xee, 0xe5, 0xc3,
|
0x0f, 0x0b, 0x1e, 0xce, 0x95, 0x8e, 0x85, 0x9e, 0x1c, 0xcc, 0x7a, 0xb2, 0x7d, 0xc7, 0x32, 0x34,
|
||||||
0x3f, 0x2c, 0x78, 0x38, 0x57, 0x5e, 0x16, 0x7a, 0x72, 0x30, 0xeb, 0xc9, 0xf6, 0x1d, 0x4b, 0xd5,
|
0xef, 0xcf, 0x0f, 0xd8, 0xed, 0x11, 0x14, 0x75, 0xbd, 0x5e, 0xb8, 0x43, 0x1b, 0xca, 0x7b, 0xbe,
|
||||||
0xbc, 0x3f, 0x3f, 0xe0, 0xb4, 0xc7, 0x50, 0xd4, 0x35, 0x7d, 0xe1, 0x09, 0x6d, 0x28, 0xef, 0xf9,
|
0xf0, 0x3a, 0x01, 0xeb, 0x21, 0xb5, 0xec, 0x26, 0x32, 0x3e, 0x16, 0xb8, 0x7b, 0x1d, 0x3d, 0x2d,
|
||||||
0xc2, 0xeb, 0x04, 0xac, 0x87, 0xd4, 0xb2, 0x9b, 0xc8, 0xd8, 0x50, 0xf0, 0xf4, 0x3a, 0x7a, 0x5a,
|
0x38, 0xfa, 0x62, 0x92, 0x35, 0xc8, 0x25, 0x7d, 0x44, 0xee, 0x70, 0x4f, 0x81, 0xd5, 0x23, 0xa8,
|
||||||
0x70, 0xf4, 0xe5, 0x25, 0x6b, 0x90, 0x4b, 0x66, 0x8d, 0xdc, 0xe1, 0x9e, 0x02, 0xab, 0x46, 0xa9,
|
0x5d, 0xad, 0xb8, 0x5a, 0x70, 0x5a, 0x50, 0xd4, 0x57, 0x7d, 0x0e, 0x6f, 0x43, 0xb9, 0xe5, 0x07,
|
||||||
0x5d, 0xad, 0xb8, 0x5a, 0x70, 0x5a, 0x50, 0xd4, 0xe5, 0x60, 0x0e, 0x6f, 0x43, 0x59, 0xdd, 0x1c,
|
0x0c, 0xdf, 0x52, 0xbd, 0xe7, 0x44, 0x56, 0xee, 0xed, 0x87, 0x97, 0x66, 0x59, 0x35, 0x74, 0x1c,
|
||||||
0xec, 0xb7, 0xfa, 0xcc, 0x89, 0xac, 0xdc, 0xdb, 0x0f, 0x2f, 0xcd, 0xb6, 0x6a, 0xe9, 0x38, 0xb0,
|
0x58, 0x3b, 0x0c, 0xc5, 0x88, 0x75, 0x65, 0x76, 0x07, 0x75, 0x0c, 0x0f, 0x12, 0x8c, 0xe9, 0x9d,
|
||||||
0x76, 0x18, 0x8a, 0x11, 0xeb, 0xca, 0xec, 0x29, 0xeb, 0x04, 0x1e, 0x24, 0x18, 0x33, 0x5f, 0xa5,
|
0x52, 0x2d, 0x80, 0x75, 0xff, 0x16, 0xe0, 0xef, 0x16, 0x54, 0x92, 0x2a, 0x40, 0x9a, 0x50, 0xc4,
|
||||||
0xc6, 0x04, 0xeb, 0xfe, 0x63, 0xc2, 0xdf, 0x2d, 0xa8, 0x24, 0x95, 0x82, 0x34, 0xa1, 0x88, 0x41,
|
0xa0, 0xc6, 0x8d, 0xd8, 0xcb, 0x5b, 0xca, 0x46, 0xe3, 0x0c, 0xd1, 0xa6, 0x1a, 0x6b, 0xaa, 0xfd,
|
||||||
0x8d, 0x87, 0xb5, 0x57, 0xb7, 0x94, 0x96, 0xc6, 0x07, 0x44, 0x9b, 0x8a, 0xad, 0xa9, 0xf6, 0x77,
|
0x3d, 0x54, 0x53, 0xea, 0x05, 0xe7, 0xb8, 0x9d, 0x3e, 0xc7, 0xcc, 0x32, 0xaa, 0x17, 0x49, 0x9f,
|
||||||
0x50, 0x4d, 0xa9, 0x17, 0xbc, 0xc7, 0xed, 0xf4, 0x7b, 0xcc, 0x2c, 0xb5, 0x7a, 0x93, 0xf4, 0x5b,
|
0xf2, 0x1e, 0x14, 0xb5, 0x52, 0x9d, 0x32, 0xf6, 0x1e, 0xe6, 0x94, 0xb1, 0xe3, 0x20, 0x50, 0x38,
|
||||||
0xde, 0x83, 0xa2, 0x56, 0xaa, 0xb7, 0x8c, 0xf3, 0x89, 0x79, 0xcb, 0x38, 0x95, 0x10, 0x28, 0x1c,
|
0xf0, 0x22, 0x7d, 0xc2, 0x79, 0x17, 0xc7, 0x4a, 0xd7, 0xe6, 0xe7, 0x12, 0xa3, 0x9c, 0x77, 0x71,
|
||||||
0x78, 0x91, 0x7e, 0xc3, 0x79, 0x17, 0xd7, 0x4a, 0xd7, 0xe6, 0xe7, 0x12, 0xa3, 0x9c, 0x77, 0x71,
|
0xec, 0xfc, 0xd3, 0x82, 0x9a, 0xe9, 0xaa, 0x4c, 0x04, 0x19, 0xac, 0xeb, 0x8b, 0xc6, 0xa2, 0x58,
|
||||||
0xed, 0xfc, 0xd3, 0x82, 0x9a, 0x99, 0xbc, 0x4c, 0x04, 0x19, 0xac, 0xeb, 0x8b, 0xc6, 0xa2, 0x58,
|
0x67, 0xfc, 0x7f, 0xbd, 0x24, 0x94, 0x31, 0xb4, 0x71, 0x93, 0xab, 0xa3, 0x31, 0x67, 0xd2, 0x6e,
|
||||||
0x67, 0xfc, 0x7f, 0xb3, 0x24, 0x94, 0x31, 0xb4, 0x71, 0x93, 0xab, 0xa3, 0x31, 0x67, 0xd2, 0x6e,
|
0xc2, 0xa3, 0x85, 0xd0, 0x7b, 0x65, 0xfa, 0xa7, 0xf0, 0x70, 0xda, 0x2f, 0x66, 0xe7, 0xc9, 0x06,
|
||||||
0xc2, 0xa3, 0x85, 0xd0, 0x7b, 0x65, 0xfa, 0x27, 0xf0, 0x70, 0x3a, 0x53, 0x66, 0xe7, 0xc9, 0x06,
|
0x90, 0x34, 0xcc, 0xf4, 0x93, 0x4f, 0xa1, 0xaa, 0xfa, 0xef, 0x6c, 0x9a, 0x03, 0xab, 0x1a, 0x60,
|
||||||
0x90, 0x34, 0xcc, 0xcc, 0x9c, 0xcf, 0xa0, 0xaa, 0x66, 0xf4, 0x6c, 0x9a, 0x03, 0xab, 0x1a, 0x60,
|
0x22, 0x43, 0xa0, 0x30, 0x60, 0x13, 0x9d, 0x0d, 0x15, 0x17, 0xc7, 0xce, 0xdf, 0x2c, 0xd5, 0x46,
|
||||||
0x22, 0x43, 0xa0, 0x30, 0x60, 0x13, 0x9d, 0x0d, 0x15, 0x17, 0xd7, 0xce, 0xdf, 0x2c, 0x35, 0x6a,
|
0x8f, 0xc6, 0xf2, 0x1d, 0x13, 0xc2, 0xeb, 0xab, 0x04, 0x2c, 0x1c, 0x86, 0xbe, 0x34, 0xd9, 0xf7,
|
||||||
0x8f, 0xc6, 0xf2, 0x88, 0x09, 0xe1, 0xf5, 0x55, 0x02, 0x16, 0x0e, 0x43, 0x5f, 0x9a, 0xec, 0xfb,
|
0x59, 0x56, 0x3b, 0x3d, 0x1a, 0x4b, 0x05, 0x33, 0xac, 0x83, 0x1f, 0xb9, 0xc8, 0x22, 0xaf, 0xa0,
|
||||||
0x34, 0x6b, 0xe4, 0x1e, 0x8d, 0xa5, 0x82, 0x19, 0xd6, 0xc1, 0x8f, 0x5c, 0x64, 0x91, 0xd7, 0x50,
|
0xb0, 0xe7, 0x49, 0xcf, 0xe4, 0x42, 0x46, 0x77, 0xa1, 0x10, 0x29, 0xa2, 0x12, 0x77, 0x4b, 0xea,
|
||||||
0xd8, 0xf3, 0xa4, 0x67, 0x72, 0x21, 0x63, 0x02, 0x51, 0x88, 0x14, 0x51, 0x89, 0xbb, 0x25, 0xf5,
|
0x3f, 0xc3, 0x68, 0x2c, 0x9d, 0x17, 0xb0, 0x7e, 0xd3, 0xfa, 0x02, 0xd7, 0xbe, 0x84, 0x6a, 0xca,
|
||||||
0xbf, 0x62, 0x34, 0x96, 0xce, 0x4b, 0x58, 0xbf, 0x69, 0x7d, 0x81, 0x6b, 0x5f, 0x40, 0x35, 0x65,
|
0x0a, 0x5e, 0xbf, 0xe3, 0x16, 0x02, 0xca, 0xae, 0x1a, 0x2a, 0x5f, 0x93, 0x8d, 0xac, 0xea, 0x35,
|
||||||
0x05, 0xaf, 0xdf, 0x49, 0x0b, 0x01, 0x65, 0x57, 0x2d, 0x95, 0xaf, 0xc9, 0x41, 0x56, 0xf5, 0x1e,
|
0x9c, 0x07, 0x50, 0x43, 0xd3, 0x49, 0x04, 0xff, 0x9c, 0x83, 0x52, 0x6c, 0xe2, 0xd5, 0x8c, 0xdf,
|
||||||
0xce, 0x03, 0xa8, 0xa1, 0xe9, 0x24, 0x82, 0x7f, 0xce, 0x41, 0x29, 0x36, 0xf1, 0x7a, 0xc6, 0xef,
|
0xcf, 0xb2, 0xfc, 0x9e, 0x77, 0xf9, 0x2b, 0x28, 0xa8, 0x32, 0x60, 0x5c, 0xce, 0x78, 0x9a, 0x5b,
|
||||||
0xe7, 0x59, 0x7e, 0xcf, 0xbb, 0xfc, 0x25, 0x14, 0xb0, 0xc9, 0xe6, 0x96, 0xb5, 0xef, 0x56, 0x2f,
|
0xbd, 0x14, 0x4d, 0xc1, 0xc9, 0xaf, 0xa1, 0xe8, 0x32, 0xa1, 0xda, 0x88, 0x3c, 0x12, 0x9f, 0x2f,
|
||||||
0x45, 0xc3, 0xfe, 0xfb, 0x6b, 0x28, 0xba, 0x4c, 0xa8, 0x51, 0x23, 0x8f, 0xc4, 0x17, 0x8b, 0x89,
|
0x26, 0x6a, 0xcc, 0x94, 0x6c, 0x48, 0x8a, 0xde, 0xf6, 0xfb, 0xa1, 0x17, 0xd0, 0xc2, 0x32, 0xba,
|
||||||
0x1a, 0x33, 0x25, 0x1b, 0x92, 0xa2, 0xb7, 0xfd, 0x7e, 0xe8, 0x05, 0xb4, 0xb0, 0x8c, 0xae, 0x31,
|
0xc6, 0xa4, 0xe8, 0x5a, 0x31, 0x0d, 0xf7, 0x5f, 0x2c, 0xa8, 0x2e, 0x0d, 0xf5, 0xf2, 0x7f, 0x3c,
|
||||||
0x29, 0xba, 0x56, 0x4c, 0xc3, 0xfd, 0x17, 0x0b, 0xaa, 0x4b, 0x43, 0xbd, 0xfc, 0x5f, 0xd1, 0xdc,
|
0x73, 0xff, 0xc2, 0xf2, 0xff, 0xe7, 0xbf, 0xb0, 0xff, 0x58, 0xb3, 0x86, 0xb0, 0xa3, 0x50, 0xf7,
|
||||||
0x3f, 0xb5, 0xfc, 0xff, 0xf9, 0x4f, 0xed, 0xdf, 0xd6, 0xac, 0x21, 0x9c, 0x28, 0xd4, 0x7d, 0x1a,
|
0x69, 0xc4, 0xfd, 0x50, 0x9a, 0x94, 0x4d, 0x69, 0xd4, 0x46, 0x9b, 0xc3, 0x9e, 0xa9, 0xdd, 0x6a,
|
||||||
0x71, 0x3f, 0x94, 0x26, 0x65, 0x53, 0x1a, 0x75, 0xd0, 0xe6, 0xb0, 0x67, 0x6a, 0xb7, 0x5a, 0x4e,
|
0x38, 0xad, 0xc1, 0x79, 0x53, 0x83, 0x55, 0x12, 0xbc, 0x17, 0x2c, 0xc2, 0x10, 0x55, 0x5c, 0x1c,
|
||||||
0x6b, 0x70, 0xde, 0xd4, 0x60, 0x95, 0x04, 0xef, 0x05, 0x8b, 0x30, 0x44, 0x15, 0x17, 0xd7, 0x6a,
|
0xab, 0x26, 0xeb, 0x88, 0xa3, 0x76, 0x05, 0xb3, 0xc5, 0x48, 0x68, 0xef, 0xaa, 0x47, 0x8b, 0xda,
|
||||||
0x10, 0x3b, 0xe6, 0xa8, 0x5d, 0xc1, 0x6c, 0x31, 0x12, 0xda, 0xbb, 0xea, 0xd1, 0xa2, 0x76, 0xbc,
|
0xf1, 0xe6, 0x15, 0x3e, 0x26, 0x47, 0x5c, 0xe9, 0x4a, 0x08, 0xd4, 0x82, 0xc2, 0x9d, 0xca, 0x09,
|
||||||
0x79, 0x85, 0xcd, 0xe4, 0x98, 0x2b, 0x5d, 0x09, 0x81, 0x5a, 0x50, 0xb8, 0x33, 0x39, 0xa1, 0x65,
|
0x2d, 0xeb, 0x54, 0x3b, 0x95, 0x13, 0xf5, 0x2e, 0xb8, 0x3c, 0x08, 0x3a, 0x5e, 0x77, 0x40, 0x2b,
|
||||||
0x9d, 0x6a, 0x67, 0x72, 0xa2, 0xfa, 0x82, 0xcb, 0x83, 0xa0, 0xe3, 0x75, 0x07, 0xb4, 0xa2, 0x1b,
|
0xfa, 0x41, 0x8a, 0x65, 0xd5, 0x65, 0xa9, 0xe8, 0xfa, 0x5e, 0x80, 0xfd, 0x78, 0xd9, 0x8d, 0x45,
|
||||||
0x52, 0x2c, 0xab, 0x29, 0x4b, 0x45, 0xd7, 0xf7, 0x02, 0x9c, 0xd9, 0xcb, 0x6e, 0x2c, 0x3a, 0x3b,
|
0x67, 0x07, 0x2a, 0x49, 0x52, 0xa8, 0xa7, 0xa6, 0xd5, 0xc3, 0xa0, 0xd7, 0xdc, 0x5c, 0xab, 0x17,
|
||||||
0x50, 0x49, 0x92, 0x42, 0xb5, 0x9a, 0x56, 0x0f, 0x83, 0x5e, 0x73, 0x73, 0xad, 0x5e, 0x9c, 0xcf,
|
0xe7, 0x73, 0x6e, 0x3e, 0x9f, 0xf3, 0xa9, 0x7c, 0x7e, 0x05, 0xb5, 0x99, 0xf4, 0x50, 0x20, 0x97,
|
||||||
0xb9, 0xf9, 0x7c, 0xce, 0xa7, 0xf2, 0xf9, 0x35, 0xd4, 0x66, 0xd2, 0x43, 0x81, 0x5c, 0x7e, 0x25,
|
0x5f, 0x09, 0x63, 0x08, 0xc7, 0x4a, 0xd7, 0xe4, 0x81, 0xfe, 0x43, 0x59, 0x73, 0x71, 0xec, 0x3c,
|
||||||
0x8c, 0x21, 0x5c, 0x2b, 0x5d, 0x93, 0x07, 0xfa, 0x4f, 0x67, 0xcd, 0xc5, 0xb5, 0xf3, 0x02, 0x6a,
|
0x87, 0xda, 0x4c, 0x62, 0x2c, 0xaa, 0xc0, 0xce, 0x33, 0xa8, 0xb5, 0xa5, 0x27, 0xc7, 0x4b, 0xbe,
|
||||||
0x33, 0x89, 0xb1, 0xa8, 0x02, 0x3b, 0xcf, 0xa1, 0xd6, 0x96, 0x9e, 0x1c, 0x2f, 0xf9, 0x4a, 0xf0,
|
0x00, 0xfc, 0xd7, 0x82, 0xb5, 0x18, 0x63, 0x6a, 0xcc, 0x2f, 0xa1, 0x7c, 0xc9, 0x22, 0xc9, 0xae,
|
||||||
0x1f, 0x0b, 0xd6, 0x62, 0x8c, 0xa9, 0x31, 0xbf, 0x84, 0xf2, 0x25, 0x8b, 0x24, 0xbb, 0x4e, 0xba,
|
0x93, 0x57, 0x87, 0x36, 0x86, 0xbc, 0x33, 0x69, 0xc4, 0xdf, 0x20, 0x54, 0x1e, 0x9c, 0x21, 0xc2,
|
||||||
0x0e, 0x6d, 0x0c, 0x79, 0x67, 0xd2, 0x88, 0xbf, 0x53, 0xa8, 0x3c, 0xf8, 0x80, 0x08, 0x37, 0x41,
|
0x4d, 0x90, 0xe4, 0x1b, 0x28, 0x0b, 0xb4, 0xc3, 0xe2, 0xc6, 0xe3, 0x93, 0x2c, 0x96, 0x59, 0x2f,
|
||||||
0x92, 0xaf, 0xa1, 0x2c, 0xd0, 0x0e, 0x8b, 0x07, 0x8f, 0x8f, 0xb3, 0x58, 0x66, 0xbf, 0x04, 0x4f,
|
0xc1, 0x93, 0x2d, 0x28, 0x04, 0xbc, 0x2f, 0xf0, 0xdc, 0xab, 0xdb, 0x4f, 0xb2, 0x78, 0x6f, 0x79,
|
||||||
0xb6, 0xa0, 0x10, 0xf0, 0xbe, 0xc0, 0xf7, 0x5e, 0xdd, 0x7e, 0x92, 0xc5, 0x7b, 0xc7, 0xfb, 0x2e,
|
0xdf, 0x45, 0x20, 0x79, 0x03, 0xe5, 0x2b, 0x2f, 0x0a, 0xfd, 0xb0, 0x1f, 0xff, 0x53, 0x7d, 0x9a,
|
||||||
0x02, 0xc9, 0x5b, 0x28, 0x5f, 0x79, 0x51, 0xe8, 0x87, 0xfd, 0xf8, 0xdf, 0xec, 0xb3, 0x2c, 0xd2,
|
0x45, 0xfa, 0x5e, 0xe3, 0xdc, 0x84, 0xe0, 0xd4, 0xd4, 0x75, 0x39, 0xe7, 0x26, 0x26, 0xce, 0x6f,
|
||||||
0x77, 0x1a, 0xe7, 0x26, 0x04, 0xa7, 0xa6, 0xae, 0xcb, 0x39, 0x37, 0x31, 0x71, 0x7e, 0xab, 0xb2,
|
0x55, 0xd6, 0x2a, 0xd1, 0xb8, 0x7f, 0x08, 0x35, 0x9d, 0xf9, 0x67, 0x2c, 0x12, 0xaa, 0x8d, 0xb3,
|
||||||
0x56, 0x89, 0xc6, 0xfd, 0x43, 0xa8, 0xe9, 0xcc, 0xff, 0xc0, 0x22, 0xa1, 0xc6, 0x38, 0x6b, 0xd9,
|
0x96, 0xdd, 0xce, 0xdd, 0x34, 0xd4, 0x9d, 0x65, 0x3a, 0x1f, 0xcc, 0xc3, 0x16, 0x2b, 0x54, 0x2e,
|
||||||
0xed, 0xdc, 0x4d, 0x43, 0xdd, 0x59, 0xa6, 0xf3, 0xbd, 0x69, 0x6c, 0xb1, 0x42, 0xe5, 0xd2, 0xc8,
|
0x8d, 0xbc, 0xee, 0xc0, 0xeb, 0xc7, 0xe7, 0x14, 0x8b, 0x6a, 0xe6, 0xd2, 0xac, 0xa7, 0x2f, 0x68,
|
||||||
0xeb, 0x0e, 0xbc, 0x7e, 0xfc, 0x9e, 0x62, 0x51, 0x3d, 0xb9, 0x34, 0xfb, 0xe9, 0x0b, 0x1a, 0x8b,
|
0x2c, 0xaa, 0xdc, 0x8c, 0xd8, 0xa5, 0x2f, 0xa6, 0x1d, 0x65, 0x22, 0x6f, 0xff, 0xb5, 0x04, 0xd0,
|
||||||
0x2a, 0x37, 0x23, 0x76, 0xe9, 0x8b, 0xe9, 0x44, 0x99, 0xc8, 0xdb, 0x7f, 0x2d, 0x01, 0x34, 0x93,
|
0x4c, 0xf6, 0x43, 0x4e, 0x60, 0x05, 0xd7, 0x23, 0xce, 0xd2, 0x67, 0x12, 0xfd, 0xb6, 0x9f, 0xdf,
|
||||||
0xf3, 0x90, 0x53, 0x58, 0xc1, 0xfd, 0x88, 0xb3, 0xb4, 0x4d, 0xa2, 0xdf, 0xf6, 0x8b, 0x3b, 0xb4,
|
0xe1, 0x29, 0x25, 0x67, 0x2a, 0xf9, 0xb1, 0xbd, 0x21, 0x2f, 0xb2, 0x0a, 0x42, 0xba, 0x43, 0xb2,
|
||||||
0x52, 0xf2, 0x41, 0x25, 0x3f, 0x8e, 0x37, 0xe4, 0x65, 0x56, 0x41, 0x48, 0x4f, 0x48, 0xf6, 0x27,
|
0x3f, 0xbd, 0x05, 0x65, 0xec, 0xbe, 0x87, 0xa2, 0xce, 0x02, 0x92, 0x55, 0xf5, 0xd2, 0x79, 0x6b,
|
||||||
0xb7, 0xa0, 0x8c, 0xdd, 0xf7, 0x50, 0xd4, 0x59, 0x40, 0xb2, 0xaa, 0x5e, 0x3a, 0x6f, 0xed, 0x97,
|
0xbf, 0x58, 0x0e, 0xd2, 0x46, 0x3f, 0xb7, 0x88, 0x6b, 0x6a, 0x22, 0x71, 0x96, 0x3c, 0x7a, 0xe6,
|
||||||
0xcb, 0x41, 0xda, 0xe8, 0x67, 0x16, 0x71, 0x4d, 0x4d, 0x24, 0xce, 0x92, 0xa6, 0x67, 0x6e, 0x4c,
|
0xc6, 0x64, 0x05, 0x60, 0xe6, 0x7d, 0xa9, 0x5b, 0xe4, 0x3b, 0x28, 0xea, 0xaa, 0x46, 0x7e, 0xba,
|
||||||
0x56, 0x00, 0x66, 0xfa, 0x4b, 0xdd, 0x22, 0xdf, 0x42, 0x51, 0x57, 0x35, 0xf2, 0xd3, 0xc5, 0x84,
|
0x98, 0x10, 0xdb, 0x5b, 0x3e, 0x5d, 0xb7, 0x3e, 0xb7, 0xc8, 0x3b, 0x28, 0xa8, 0xe7, 0x9c, 0x64,
|
||||||
0xd8, 0xde, 0xf2, 0xc7, 0x75, 0xeb, 0x33, 0x8b, 0x1c, 0x41, 0x41, 0xb5, 0x73, 0x92, 0xd1, 0x9b,
|
0xbc, 0x4d, 0xa9, 0x5e, 0xc0, 0x76, 0x96, 0x41, 0x4c, 0x14, 0x3f, 0x00, 0x4c, 0x9b, 0x0a, 0x92,
|
||||||
0x52, 0xb3, 0x80, 0xed, 0x2c, 0x83, 0x98, 0x28, 0x7e, 0x0f, 0x30, 0x1d, 0x2a, 0x48, 0xc6, 0x37,
|
0xf1, 0xbd, 0x61, 0xae, 0x3b, 0xb1, 0xeb, 0xb7, 0x03, 0xcd, 0x02, 0xef, 0xd4, 0x8b, 0x7a, 0xce,
|
||||||
0x89, 0xb9, 0xe9, 0xc4, 0xae, 0xdf, 0x0e, 0x34, 0x1b, 0x1c, 0xa9, 0x8e, 0x7a, 0xce, 0x49, 0x66,
|
0x49, 0xe6, 0x5b, 0x9a, 0x5c, 0x23, 0xdb, 0x59, 0x06, 0x31, 0xe6, 0x2e, 0xa0, 0x36, 0xf3, 0xb9,
|
||||||
0x2f, 0x4d, 0xae, 0x91, 0xed, 0x2c, 0x83, 0x18, 0x73, 0x17, 0x50, 0x9b, 0xf9, 0x24, 0x49, 0x7e,
|
0x91, 0xfc, 0x3c, 0xdb, 0xc9, 0x9b, 0x5f, 0x2f, 0xed, 0x97, 0x77, 0xc2, 0x9a, 0x95, 0x64, 0xba,
|
||||||
0x9e, 0xed, 0xe4, 0xcd, 0x2f, 0x9c, 0xf6, 0xab, 0x3b, 0x61, 0xcd, 0x4e, 0x32, 0x3d, 0x95, 0x99,
|
0x2b, 0x33, 0xd3, 0xa4, 0x71, 0x9b, 0xdf, 0xb3, 0x9f, 0x0e, 0xed, 0xad, 0x3b, 0xe3, 0xf5, 0xaa,
|
||||||
0xc7, 0xa4, 0x71, 0x9b, 0xdf, 0xb3, 0x9f, 0x17, 0xed, 0xad, 0x3b, 0xe3, 0xf5, 0xae, 0xbb, 0x85,
|
0xbb, 0x85, 0xdf, 0xe5, 0x46, 0x9d, 0x4e, 0x11, 0xbf, 0xc2, 0x7e, 0xf9, 0xbf, 0x00, 0x00, 0x00,
|
||||||
0xdf, 0xe5, 0x46, 0x9d, 0x4e, 0x11, 0xbf, 0xd4, 0x7e, 0xf1, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff,
|
0xff, 0xff, 0xdd, 0x5f, 0x66, 0x08, 0xec, 0x15, 0x00, 0x00,
|
||||||
0xc2, 0xd5, 0x2b, 0x23, 0x10, 0x16, 0x00, 0x00,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reference imports to suppress errors if they are not otherwise used.
|
// Reference imports to suppress errors if they are not otherwise used.
|
||||||
|
@ -71,11 +71,10 @@ message BuildOptions {
|
|||||||
UlimitOpt Ulimits = 22;
|
UlimitOpt Ulimits = 22;
|
||||||
|
|
||||||
string Builder = 23;
|
string Builder = 23;
|
||||||
string MetadataFile = 24;
|
bool NoCache = 24;
|
||||||
bool NoCache = 25;
|
bool Pull = 25;
|
||||||
bool Pull = 26;
|
bool ExportPush = 26;
|
||||||
bool ExportPush = 27;
|
bool ExportLoad = 27;
|
||||||
bool ExportLoad = 28;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
message ExportEntry {
|
message ExportEntry {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user