From 320a852ee268bf806baa0a667098442a83da6361 Mon Sep 17 00:00:00 2001 From: Marie Date: Wed, 16 Sep 2020 13:08:55 +0200 Subject: [PATCH] PubKey proto types (#7147) * WIP on protobuf keys * Use Type() and Bytes() in sr25519 pub key Equals * Add tests * Add few more tests * Update other pub/priv key types Equals * Fix PrivKey's Sign method * Rename variables in tests * Fix infinite recursive calls * Use tm ed25519 keys * Add Sign and VerifySignature tests * Remove ed25519 and sr25519 references * proto linting * Add proto crypto file * Implement some of the new multisig proto type methods * Add tests for MultisigThresholdPubKey * Add tests for pubkey pb/amino conversion functions * Move crypto types.go and register new proto pubkeys * Add missing pointer ref * Address review comments * panic in MultisigThresholdPubKey VerifySignature * Use internal crypto.PubKey in multisig * Add tests for MultisigThresholdPubKey VerifyMultisignature * Only keep LegacyAminoMultisigThresholdPubKey and move to proto keys to v1 * Remove conversion functions and introduce internal PubKey type * Remove old secp256k1 PubKey and PrivKey * Uncomment test case * Fix linting issues * More linting * Revert tests keys values * Add Amino overrides to proto keys * Add pubkey test * Fix tests * Use threshold isntead of K * Standardize Type * Revert standardize types commit * Add comment * Simplify proto names * Add comment about multisig codec Co-authored-by: Aaron Craelius Co-authored-by: Amaury Martiny Co-authored-by: Alexander Bezobchuk Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- codec/codec.go | 9 + crypto/codec/amino.go | 10 +- crypto/hd/algo.go | 2 +- crypto/hd/fundraiser_test.go | 5 +- crypto/keyring/types_test.go | 4 +- crypto/keys/multisig/keys.pb.go | 362 +++++ crypto/keys/multisig/multisig.go | 130 ++ crypto/keys/multisig/multisig_test.go | 230 ++++ crypto/keys/secp256k1/bench_test.go | 3 +- crypto/keys/secp256k1/keys.pb.go | 504 +++++++ crypto/keys/secp256k1/secp256k1.go | 125 +- crypto/keys/secp256k1/secp256k1_cgo.go | 8 +- crypto/keys/secp256k1/secp256k1_cgo_test.go | 4 +- crypto/keys/secp256k1/secp256k1_nocgo.go | 8 +- crypto/keys/secp256k1/secp256k1_test.go | 143 +- crypto/ledger/ledger_mock.go | 5 +- crypto/ledger/ledger_secp256k1.go | 8 +- crypto/types/multisig/codec.go | 2 +- crypto/types/multisig/threshold_pubkey.go | 11 +- .../types/multisig/threshold_pubkey_test.go | 69 +- crypto/types/types.go | 24 + proto/cosmos/crypto/multisig/keys.proto | 17 + proto/cosmos/crypto/secp256k1/keys.proto | 22 + std/pubkey.go | 8 +- x/auth/ante/sigverify.go | 8 +- x/staking/types/staking.pb.go | 1161 ++++++++--------- 26 files changed, 2205 insertions(+), 677 deletions(-) create mode 100644 crypto/keys/multisig/keys.pb.go create mode 100644 crypto/keys/multisig/multisig.go create mode 100644 crypto/keys/multisig/multisig_test.go create mode 100644 crypto/keys/secp256k1/keys.pb.go create mode 100644 crypto/types/types.go create mode 100644 proto/cosmos/crypto/multisig/keys.proto create mode 100644 proto/cosmos/crypto/secp256k1/keys.proto diff --git a/codec/codec.go b/codec/codec.go index a0bf5a598b9d..1cbc78b7fc0e 100644 --- a/codec/codec.go +++ b/codec/codec.go @@ -54,4 +54,13 @@ type ( Size() int Unmarshal(data []byte) error } + + // AminoMarshaler defines an interface where Amino marshalling can be + // overridden by custom marshalling. + AminoMarshaler interface { + MarshalAmino() ([]byte, error) + UnmarshalAmino([]byte) error + MarshalAminoJSON() ([]byte, error) + UnmarshalAminoJSON([]byte) error + } ) diff --git a/crypto/codec/amino.go b/crypto/codec/amino.go index 69f7dde35748..abc33137787d 100644 --- a/crypto/codec/amino.go +++ b/crypto/codec/amino.go @@ -6,6 +6,7 @@ import ( "github.com/tendermint/tendermint/crypto/sr25519" "github.com/cosmos/cosmos-sdk/codec" + kmultisig "github.com/cosmos/cosmos-sdk/crypto/keys/multisig" "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" "github.com/cosmos/cosmos-sdk/crypto/types/multisig" ) @@ -25,17 +26,22 @@ func RegisterCrypto(cdc *codec.LegacyAmino) { ed25519.PubKeyName, nil) cdc.RegisterConcrete(sr25519.PubKey{}, sr25519.PubKeyName, nil) - cdc.RegisterConcrete(secp256k1.PubKey{}, + cdc.RegisterConcrete(&secp256k1.PubKey{}, secp256k1.PubKeyName, nil) + // TODO Follow-up in https://github.com/cosmos/cosmos-sdk/pull/7284 + // Remove `multisig.PubKeyMultisigThreshold{}`, and register instead + // kmultisig.LegacyAminoPubKey{} on `PubKeyAminoRoute`. cdc.RegisterConcrete(multisig.PubKeyMultisigThreshold{}, multisig.PubKeyAminoRoute, nil) + cdc.RegisterConcrete(&kmultisig.LegacyAminoPubKey{}, + "cosmos-sdk/LegacyAminoPubKey", nil) cdc.RegisterInterface((*crypto.PrivKey)(nil), nil) cdc.RegisterConcrete(ed25519.PrivKey{}, ed25519.PrivKeyName, nil) cdc.RegisterConcrete(sr25519.PrivKey{}, sr25519.PrivKeyName, nil) - cdc.RegisterConcrete(secp256k1.PrivKey{}, + cdc.RegisterConcrete(&secp256k1.PrivKey{}, secp256k1.PrivKeyName, nil) } diff --git a/crypto/hd/algo.go b/crypto/hd/algo.go index d88b88e4aba2..30636c56df06 100644 --- a/crypto/hd/algo.go +++ b/crypto/hd/algo.go @@ -66,6 +66,6 @@ func (s secp256k1Algo) Generate() GenerateFn { var bzArr = make([]byte, secp256k1.PrivKeySize) copy(bzArr, bz) - return secp256k1.PrivKey(bzArr) + return &secp256k1.PrivKey{Key: bzArr} } } diff --git a/crypto/hd/fundraiser_test.go b/crypto/hd/fundraiser_test.go index 2bc396721cb2..e8649a0086d9 100644 --- a/crypto/hd/fundraiser_test.go +++ b/crypto/hd/fundraiser_test.go @@ -65,7 +65,8 @@ func TestFundraiserCompatibility(t *testing.T) { master, ch := hd.ComputeMastersFromSeed(seed) priv, err := hd.DerivePrivateKeyForPath(master, ch, "44'/118'/0'/0/0") require.NoError(t, err) - pub := secp256k1.PrivKey(priv).PubKey() + privKey := &secp256k1.PrivKey{Key: priv} + pub := privKey.PubKey() t.Log("\tNODEJS GOLANG\n") t.Logf("SEED \t%X %X\n", seedB, seed) @@ -78,7 +79,7 @@ func TestFundraiserCompatibility(t *testing.T) { require.Equal(t, priv[:], privB, "Expected priv keys to match") pubBFixed := make([]byte, secp256k1.PubKeySize) copy(pubBFixed, pubB) - require.Equal(t, pub, secp256k1.PubKey(pubBFixed), fmt.Sprintf("Expected pub keys to match for %d", i)) + require.Equal(t, pub, &secp256k1.PubKey{Key: pubBFixed}, fmt.Sprintf("Expected pub keys to match for %d", i)) addr := pub.Address() t.Logf("ADDR \t%X %X\n", addrB, addr) diff --git a/crypto/keyring/types_test.go b/crypto/keyring/types_test.go index 18e818c0d17a..ca99d9b7c55a 100644 --- a/crypto/keyring/types_test.go +++ b/crypto/keyring/types_test.go @@ -12,11 +12,11 @@ import ( ) func Test_writeReadLedgerInfo(t *testing.T) { - tmpKey := make(secp256k1.PubKey, secp256k1.PubKeySize) + tmpKey := make([]byte, secp256k1.PubKeySize) bz, _ := hex.DecodeString("035AD6810A47F073553FF30D2FCC7E0D3B1C0B74B61A1AAA2582344037151E143A") copy(tmpKey[:], bz) - lInfo := newLedgerInfo("some_name", tmpKey, *hd.NewFundraiserParams(5, sdk.CoinType, 1), hd.Secp256k1Type) + lInfo := newLedgerInfo("some_name", &secp256k1.PubKey{Key: tmpKey}, *hd.NewFundraiserParams(5, sdk.CoinType, 1), hd.Secp256k1Type) assert.Equal(t, TypeLedger, lInfo.GetType()) path, err := lInfo.GetPath() diff --git a/crypto/keys/multisig/keys.pb.go b/crypto/keys/multisig/keys.pb.go new file mode 100644 index 000000000000..0dd70ae220bd --- /dev/null +++ b/crypto/keys/multisig/keys.pb.go @@ -0,0 +1,362 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/crypto/multisig/keys.proto + +package multisig + +import ( + fmt "fmt" + types "github.com/cosmos/cosmos-sdk/codec/types" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" + io "io" + math "math" + math_bits "math/bits" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +// LegacyAminoPubKey specifies a public key type +// which nests multiple public keys and a threshold, +// it uses legacy amino address rules. +type LegacyAminoPubKey struct { + Threshold uint32 `protobuf:"varint,1,opt,name=threshold,proto3" json:"threshold,omitempty" yaml:"threshold"` + PubKeys []*types.Any `protobuf:"bytes,2,rep,name=public_keys,json=publicKeys,proto3" json:"public_keys,omitempty" yaml:"pubkeys"` +} + +func (m *LegacyAminoPubKey) Reset() { *m = LegacyAminoPubKey{} } +func (m *LegacyAminoPubKey) String() string { return proto.CompactTextString(m) } +func (*LegacyAminoPubKey) ProtoMessage() {} +func (*LegacyAminoPubKey) Descriptor() ([]byte, []int) { + return fileDescriptor_46b57537e097d47d, []int{0} +} +func (m *LegacyAminoPubKey) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *LegacyAminoPubKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_LegacyAminoPubKey.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *LegacyAminoPubKey) XXX_Merge(src proto.Message) { + xxx_messageInfo_LegacyAminoPubKey.Merge(m, src) +} +func (m *LegacyAminoPubKey) XXX_Size() int { + return m.Size() +} +func (m *LegacyAminoPubKey) XXX_DiscardUnknown() { + xxx_messageInfo_LegacyAminoPubKey.DiscardUnknown(m) +} + +var xxx_messageInfo_LegacyAminoPubKey proto.InternalMessageInfo + +func init() { + proto.RegisterType((*LegacyAminoPubKey)(nil), "cosmos.crypto.multisig.LegacyAminoPubKey") +} + +func init() { proto.RegisterFile("cosmos/crypto/multisig/keys.proto", fileDescriptor_46b57537e097d47d) } + +var fileDescriptor_46b57537e097d47d = []byte{ + // 287 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4c, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x2e, 0xaa, 0x2c, 0x28, 0xc9, 0xd7, 0xcf, 0x2d, 0xcd, 0x29, 0xc9, 0x2c, + 0xce, 0x4c, 0xd7, 0xcf, 0x4e, 0xad, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x83, + 0x28, 0xd1, 0x83, 0x28, 0xd1, 0x83, 0x29, 0x91, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd1, + 0x07, 0xb1, 0x20, 0xaa, 0xa5, 0x24, 0xd3, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0xc1, 0xbc, 0xa4, + 0xd2, 0x34, 0xfd, 0xc4, 0xbc, 0x4a, 0x88, 0x94, 0xd2, 0x62, 0x46, 0x2e, 0x41, 0x9f, 0xd4, 0xf4, + 0xc4, 0xe4, 0x4a, 0xc7, 0xdc, 0xcc, 0xbc, 0xfc, 0x80, 0xd2, 0x24, 0xef, 0xd4, 0x4a, 0x21, 0x23, + 0x2e, 0xce, 0x92, 0x8c, 0xa2, 0xd4, 0xe2, 0x8c, 0xfc, 0x9c, 0x14, 0x09, 0x46, 0x05, 0x46, 0x0d, + 0x5e, 0x27, 0x91, 0x4f, 0xf7, 0xe4, 0x05, 0x2a, 0x13, 0x73, 0x73, 0xac, 0x94, 0xe0, 0x52, 0x4a, + 0x41, 0x08, 0x65, 0x42, 0x21, 0x5c, 0xdc, 0x05, 0xa5, 0x49, 0x39, 0x99, 0xc9, 0xf1, 0x20, 0x77, + 0x4a, 0x30, 0x29, 0x30, 0x6b, 0x70, 0x1b, 0x89, 0xe8, 0x41, 0xac, 0xd6, 0x83, 0x59, 0xad, 0xe7, + 0x98, 0x57, 0xe9, 0x24, 0xfb, 0xe8, 0x9e, 0x3c, 0x3b, 0xc4, 0xaa, 0xe2, 0x4f, 0xf7, 0xe4, 0xf9, + 0x20, 0xc6, 0x16, 0x94, 0x26, 0x81, 0x74, 0x2a, 0x05, 0x71, 0x41, 0xcc, 0x01, 0xc9, 0x5a, 0xb1, + 0x74, 0x2c, 0x90, 0x67, 0x70, 0xf2, 0x3e, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, + 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, + 0x28, 0xc3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x58, 0xb0, 0x81, + 0x29, 0xdd, 0xe2, 0x94, 0x6c, 0x58, 0x08, 0x82, 0x8c, 0x85, 0x07, 0x63, 0x12, 0x1b, 0xd8, 0x2d, + 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x76, 0x6e, 0xbf, 0x3c, 0x67, 0x01, 0x00, 0x00, +} + +func (m *LegacyAminoPubKey) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *LegacyAminoPubKey) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *LegacyAminoPubKey) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.PubKeys) > 0 { + for iNdEx := len(m.PubKeys) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.PubKeys[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintKeys(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + } + if m.Threshold != 0 { + i = encodeVarintKeys(dAtA, i, uint64(m.Threshold)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func encodeVarintKeys(dAtA []byte, offset int, v uint64) int { + offset -= sovKeys(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *LegacyAminoPubKey) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Threshold != 0 { + n += 1 + sovKeys(uint64(m.Threshold)) + } + if len(m.PubKeys) > 0 { + for _, e := range m.PubKeys { + l = e.Size() + n += 1 + l + sovKeys(uint64(l)) + } + } + return n +} + +func sovKeys(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozKeys(x uint64) (n int) { + return sovKeys(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *LegacyAminoPubKey) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKeys + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: LegacyAminoPubKey: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: LegacyAminoPubKey: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Threshold", wireType) + } + m.Threshold = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKeys + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Threshold |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PubKeys", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKeys + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthKeys + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKeys + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.PubKeys = append(m.PubKeys, &types.Any{}) + if err := m.PubKeys[len(m.PubKeys)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipKeys(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthKeys + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthKeys + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipKeys(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowKeys + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowKeys + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowKeys + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthKeys + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupKeys + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthKeys + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthKeys = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowKeys = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupKeys = fmt.Errorf("proto: unexpected end of group") +) diff --git a/crypto/keys/multisig/multisig.go b/crypto/keys/multisig/multisig.go new file mode 100644 index 000000000000..628b7ec06b2a --- /dev/null +++ b/crypto/keys/multisig/multisig.go @@ -0,0 +1,130 @@ +package multisig + +import ( + fmt "fmt" + + "github.com/cosmos/cosmos-sdk/codec" + + "github.com/cosmos/cosmos-sdk/codec/types" + crypto "github.com/cosmos/cosmos-sdk/crypto/types" + "github.com/cosmos/cosmos-sdk/types/tx/signing" + tmcrypto "github.com/tendermint/tendermint/crypto" + + "github.com/cosmos/cosmos-sdk/crypto/types/multisig" +) + +// In the refactor in https://github.com/cosmos/cosmos-sdk/pull/7284, make sure +// to use AminoCdc here. +var cdc = codec.NewProtoCodec(types.NewInterfaceRegistry()) + +var _ multisig.PubKey = &LegacyAminoPubKey{} + +// Address implements crypto.PubKey Address method +func (m *LegacyAminoPubKey) Address() crypto.Address { + return tmcrypto.AddressHash(m.Bytes()) +} + +// Bytes returns the proto encoded version of the LegacyAminoPubKey +func (m *LegacyAminoPubKey) Bytes() []byte { + return cdc.MustMarshalBinaryBare(m) +} + +// VerifyMultisignature implements the multisig.PubKey VerifyMultisignature method +func (m *LegacyAminoPubKey) VerifyMultisignature(getSignBytes multisig.GetSignBytesFunc, sig *signing.MultiSignatureData) error { + bitarray := sig.BitArray + sigs := sig.Signatures + size := bitarray.Count() + pubKeys := m.GetPubKeys() + // ensure bit array is the correct size + if len(pubKeys) != size { + return fmt.Errorf("bit array size is incorrect %d", len(pubKeys)) + } + // ensure size of signature list + if len(sigs) < int(m.Threshold) || len(sigs) > size { + return fmt.Errorf("signature size is incorrect %d", len(sigs)) + } + // ensure at least k signatures are set + if bitarray.NumTrueBitsBefore(size) < int(m.Threshold) { + return fmt.Errorf("minimum number of signatures not set, have %d, expected %d", bitarray.NumTrueBitsBefore(size), int(m.Threshold)) + } + // index in the list of signatures which we are concerned with. + sigIndex := 0 + for i := 0; i < size; i++ { + if bitarray.GetIndex(i) { + si := sig.Signatures[sigIndex] + switch si := si.(type) { + case *signing.SingleSignatureData: + msg, err := getSignBytes(si.SignMode) + if err != nil { + return err + } + if !pubKeys[i].VerifySignature(msg, si.Signature) { + return err + } + case *signing.MultiSignatureData: + nestedMultisigPk, ok := pubKeys[i].(multisig.PubKey) + if !ok { + return fmt.Errorf("unable to parse pubkey of index %d", i) + } + if err := nestedMultisigPk.VerifyMultisignature(getSignBytes, si); err != nil { + return err + } + default: + return fmt.Errorf("improper signature data type for index %d", sigIndex) + } + sigIndex++ + } + } + return nil +} + +// VerifySignature implements crypto.PubKey VerifySignature method, +// it panics because it can't handle MultiSignatureData +// cf. https://github.com/cosmos/cosmos-sdk/issues/7109#issuecomment-686329936 +func (m *LegacyAminoPubKey) VerifySignature(msg []byte, sig []byte) bool { + panic("not implemented") +} + +// GetPubKeys implements the PubKey.GetPubKeys method +func (m *LegacyAminoPubKey) GetPubKeys() []tmcrypto.PubKey { + if m != nil { + pubKeys := make([]tmcrypto.PubKey, len(m.PubKeys)) + for i := 0; i < len(m.PubKeys); i++ { + pubKeys[i] = m.PubKeys[i].GetCachedValue().(tmcrypto.PubKey) + } + return pubKeys + } + + return nil +} + +// Equals returns true if m and other both have the same number of keys, and +// all constituent keys are the same, and in the same order. +func (m *LegacyAminoPubKey) Equals(key tmcrypto.PubKey) bool { + otherKey, ok := key.(multisig.PubKey) + if !ok { + return false + } + pubKeys := m.GetPubKeys() + otherPubKeys := otherKey.GetPubKeys() + if m.GetThreshold() != otherKey.GetThreshold() || len(pubKeys) != len(otherPubKeys) { + return false + } + + for i := 0; i < len(pubKeys); i++ { + if !pubKeys[i].Equals(otherPubKeys[i]) { + return false + } + } + return true +} + +// GetThreshold implements the PubKey.GetThreshold method +func (m *LegacyAminoPubKey) GetThreshold() uint { + return uint(m.Threshold) +} + +// Type returns multisig type +func (m *LegacyAminoPubKey) Type() string { + return "PubKeyMultisigThreshold" +} diff --git a/crypto/keys/multisig/multisig_test.go b/crypto/keys/multisig/multisig_test.go new file mode 100644 index 000000000000..946720776364 --- /dev/null +++ b/crypto/keys/multisig/multisig_test.go @@ -0,0 +1,230 @@ +package multisig + +import ( + "testing" + + "github.com/cosmos/cosmos-sdk/codec/types" + crypto "github.com/cosmos/cosmos-sdk/crypto/types" + "github.com/cosmos/cosmos-sdk/crypto/types/multisig" + proto "github.com/gogo/protobuf/proto" + tmcrypto "github.com/tendermint/tendermint/crypto" + + "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" + "github.com/cosmos/cosmos-sdk/types/tx/signing" + "github.com/stretchr/testify/require" +) + +func TestAddress(t *testing.T) { + msg := []byte{1, 2, 3, 4} + pubKeys, _ := generatePubKeysAndSignatures(5, msg) + anyPubKeys, err := packPubKeys(pubKeys) + require.NoError(t, err) + multisigKey := &LegacyAminoPubKey{Threshold: 2, PubKeys: anyPubKeys} + + require.Len(t, multisigKey.Address().Bytes(), 20) +} + +func TestEquals(t *testing.T) { + pubKey1 := secp256k1.GenPrivKey().PubKey() + pubKey2 := secp256k1.GenPrivKey().PubKey() + + anyPubKeys, err := packPubKeys([]tmcrypto.PubKey{pubKey1, pubKey2}) + require.NoError(t, err) + multisigKey := &LegacyAminoPubKey{Threshold: 1, PubKeys: anyPubKeys} + + otherPubKeys, err := packPubKeys([]tmcrypto.PubKey{pubKey1, multisigKey}) + require.NoError(t, err) + otherMultisigKey := LegacyAminoPubKey{Threshold: 1, PubKeys: otherPubKeys} + + testCases := []struct { + msg string + other tmcrypto.PubKey + expectEq bool + }{ + { + "equals with proto pub key", + &LegacyAminoPubKey{Threshold: 1, PubKeys: anyPubKeys}, + true, + }, + { + "different threshold", + &LegacyAminoPubKey{Threshold: 2, PubKeys: anyPubKeys}, + false, + }, + { + "different pub keys length", + &LegacyAminoPubKey{Threshold: 1, PubKeys: []*types.Any{anyPubKeys[0]}}, + false, + }, + { + "different pub keys", + &otherMultisigKey, + false, + }, + { + "different types", + secp256k1.GenPrivKey().PubKey(), + false, + }, + } + + for _, tc := range testCases { + t.Run(tc.msg, func(t *testing.T) { + eq := multisigKey.Equals(tc.other) + require.Equal(t, eq, tc.expectEq) + }) + } +} + +func TestVerifyMultisignature(t *testing.T) { + var ( + pk multisig.PubKey + sig *signing.MultiSignatureData + ) + msg := []byte{1, 2, 3, 4} + signBytesFn := func(mode signing.SignMode) ([]byte, error) { return msg, nil } + + testCases := []struct { + msg string + malleate func() + expectPass bool + }{ + { + "nested multisignature", + func() { + genPk, genSig, err := generateNestedMultiSignature(3, msg) + require.NoError(t, err) + sig = genSig + pk = genPk + }, + true, + }, + { + "wrong size for sig bit array", + func() { + pubKeys, _ := generatePubKeysAndSignatures(3, msg) + anyPubKeys, err := packPubKeys(pubKeys) + require.NoError(t, err) + pk = &LegacyAminoPubKey{Threshold: 3, PubKeys: anyPubKeys} + sig = multisig.NewMultisig(1) + }, + false, + }, + { + "single signature data", + func() { + k := 2 + signingIndices := []int{0, 3, 1} + pubKeys, sigs := generatePubKeysAndSignatures(5, msg) + anyPubKeys, err := packPubKeys(pubKeys) + require.NoError(t, err) + pk = &LegacyAminoPubKey{Threshold: uint32(k), PubKeys: anyPubKeys} + sig = multisig.NewMultisig(len(pubKeys)) + signBytesFn := func(mode signing.SignMode) ([]byte, error) { return msg, nil } + + for i := 0; i < k-1; i++ { + signingIndex := signingIndices[i] + require.NoError( + t, + multisig.AddSignatureFromPubKey(sig, sigs[signingIndex], pubKeys[signingIndex], pubKeys), + ) + require.Error( + t, + pk.VerifyMultisignature(signBytesFn, sig), + "multisig passed when i < k, i %d", i, + ) + require.NoError( + t, + multisig.AddSignatureFromPubKey(sig, sigs[signingIndex], pubKeys[signingIndex], pubKeys), + ) + } + require.Error( + t, + pk.VerifyMultisignature(signBytesFn, sig), + "multisig passed with k - 1 sigs", + ) + require.NoError( + t, + multisig.AddSignatureFromPubKey( + sig, + sigs[signingIndices[k]], + pubKeys[signingIndices[k]], + pubKeys, + ), + ) + }, + true, + }, + } + + for _, tc := range testCases { + t.Run(tc.msg, func(t *testing.T) { + tc.malleate() + err := pk.VerifyMultisignature(signBytesFn, sig) + if tc.expectPass { + require.NoError(t, err) + } else { + require.Error(t, err) + } + }) + } +} + +func generatePubKeysAndSignatures(n int, msg []byte) (pubKeys []tmcrypto.PubKey, signatures []signing.SignatureData) { + pubKeys = make([]tmcrypto.PubKey, n) + signatures = make([]signing.SignatureData, n) + + for i := 0; i < n; i++ { + privkey := secp256k1.GenPrivKey() + pubKeys[i] = privkey.PubKey() + + sig, _ := privkey.Sign(msg) + signatures[i] = &signing.SingleSignatureData{Signature: sig} + } + return +} + +func generateNestedMultiSignature(n int, msg []byte) (multisig.PubKey, *signing.MultiSignatureData, error) { + pubKeys := make([]tmcrypto.PubKey, n) + signatures := make([]signing.SignatureData, n) + bitArray := crypto.NewCompactBitArray(n) + for i := 0; i < n; i++ { + nestedPks, nestedSigs := generatePubKeysAndSignatures(5, msg) + nestedBitArray := crypto.NewCompactBitArray(5) + for j := 0; j < 5; j++ { + nestedBitArray.SetIndex(j, true) + } + nestedSig := &signing.MultiSignatureData{ + BitArray: nestedBitArray, + Signatures: nestedSigs, + } + signatures[i] = nestedSig + anyNestedPks, err := packPubKeys(nestedPks) + if err != nil { + return nil, nil, err + } + pubKeys[i] = &LegacyAminoPubKey{Threshold: 5, PubKeys: anyNestedPks} + bitArray.SetIndex(i, true) + } + anyPubKeys, err := packPubKeys(pubKeys) + if err != nil { + return nil, nil, err + } + return &LegacyAminoPubKey{Threshold: uint32(n), PubKeys: anyPubKeys}, &signing.MultiSignatureData{ + BitArray: bitArray, + Signatures: signatures, + }, nil +} + +func packPubKeys(pubKeys []tmcrypto.PubKey) ([]*types.Any, error) { + anyPubKeys := make([]*types.Any, len(pubKeys)) + + for i := 0; i < len(pubKeys); i++ { + any, err := types.NewAnyWithValue(pubKeys[i].(proto.Message)) + if err != nil { + return nil, err + } + anyPubKeys[i] = any + } + return anyPubKeys, nil +} diff --git a/crypto/keys/secp256k1/bench_test.go b/crypto/keys/secp256k1/bench_test.go index acd3693bfd15..e36f2df4b6e7 100644 --- a/crypto/keys/secp256k1/bench_test.go +++ b/crypto/keys/secp256k1/bench_test.go @@ -11,7 +11,8 @@ import ( func BenchmarkKeyGeneration(b *testing.B) { benchmarkKeygenWrapper := func(reader io.Reader) crypto.PrivKey { - return genPrivKey(reader) + priv := genPrivKey(reader) + return &PrivKey{Key: priv} } benchmarking.BenchmarkKeyGeneration(b, benchmarkKeygenWrapper) } diff --git a/crypto/keys/secp256k1/keys.pb.go b/crypto/keys/secp256k1/keys.pb.go new file mode 100644 index 000000000000..6dd45721bf4b --- /dev/null +++ b/crypto/keys/secp256k1/keys.pb.go @@ -0,0 +1,504 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/crypto/secp256k1/keys.proto + +package secp256k1 + +import ( + fmt "fmt" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" + io "io" + math "math" + math_bits "math/bits" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +// PubKey defines a secp256k1 public key +// Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte +// if the y-coordinate is the lexicographically largest of the two associated with +// the x-coordinate. Otherwise the first byte is a 0x03. +// This prefix is followed with the x-coordinate. +type PubKey struct { + Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` +} + +func (m *PubKey) Reset() { *m = PubKey{} } +func (*PubKey) ProtoMessage() {} +func (*PubKey) Descriptor() ([]byte, []int) { + return fileDescriptor_e0835e68ebdcb224, []int{0} +} +func (m *PubKey) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *PubKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_PubKey.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *PubKey) XXX_Merge(src proto.Message) { + xxx_messageInfo_PubKey.Merge(m, src) +} +func (m *PubKey) XXX_Size() int { + return m.Size() +} +func (m *PubKey) XXX_DiscardUnknown() { + xxx_messageInfo_PubKey.DiscardUnknown(m) +} + +var xxx_messageInfo_PubKey proto.InternalMessageInfo + +func (m *PubKey) GetKey() []byte { + if m != nil { + return m.Key + } + return nil +} + +// PrivKey defines a secp256k1 private key. +type PrivKey struct { + Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` +} + +func (m *PrivKey) Reset() { *m = PrivKey{} } +func (m *PrivKey) String() string { return proto.CompactTextString(m) } +func (*PrivKey) ProtoMessage() {} +func (*PrivKey) Descriptor() ([]byte, []int) { + return fileDescriptor_e0835e68ebdcb224, []int{1} +} +func (m *PrivKey) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *PrivKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_PrivKey.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *PrivKey) XXX_Merge(src proto.Message) { + xxx_messageInfo_PrivKey.Merge(m, src) +} +func (m *PrivKey) XXX_Size() int { + return m.Size() +} +func (m *PrivKey) XXX_DiscardUnknown() { + xxx_messageInfo_PrivKey.DiscardUnknown(m) +} + +var xxx_messageInfo_PrivKey proto.InternalMessageInfo + +func (m *PrivKey) GetKey() []byte { + if m != nil { + return m.Key + } + return nil +} + +func init() { + proto.RegisterType((*PubKey)(nil), "cosmos.crypto.secp256k1.PubKey") + proto.RegisterType((*PrivKey)(nil), "cosmos.crypto.secp256k1.PrivKey") +} + +func init() { + proto.RegisterFile("cosmos/crypto/secp256k1/keys.proto", fileDescriptor_e0835e68ebdcb224) +} + +var fileDescriptor_e0835e68ebdcb224 = []byte{ + // 185 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4a, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x2e, 0xaa, 0x2c, 0x28, 0xc9, 0xd7, 0x2f, 0x4e, 0x4d, 0x2e, 0x30, 0x32, + 0x35, 0xcb, 0x36, 0xd4, 0xcf, 0x4e, 0xad, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, + 0x87, 0xa8, 0xd1, 0x83, 0xa8, 0xd1, 0x83, 0xab, 0x91, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, + 0xd1, 0x07, 0xb1, 0x20, 0xca, 0x95, 0x14, 0xb8, 0xd8, 0x02, 0x4a, 0x93, 0xbc, 0x53, 0x2b, 0x85, + 0x04, 0xb8, 0x98, 0xb3, 0x53, 0x2b, 0x25, 0x18, 0x15, 0x18, 0x35, 0x78, 0x82, 0x40, 0x4c, 0x2b, + 0x96, 0x19, 0x0b, 0xe4, 0x19, 0x94, 0xa4, 0xb9, 0xd8, 0x03, 0x8a, 0x32, 0xcb, 0xb0, 0x2a, 0x71, + 0xf2, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, + 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xa3, 0xf4, 0xcc, 0x92, + 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x98, 0xb3, 0xc1, 0x94, 0x6e, 0x71, 0x4a, 0x36, + 0xcc, 0x07, 0x20, 0x77, 0x23, 0xbc, 0x91, 0xc4, 0x06, 0x76, 0x93, 0x31, 0x20, 0x00, 0x00, 0xff, + 0xff, 0x63, 0x00, 0x68, 0x16, 0xe8, 0x00, 0x00, 0x00, +} + +func (m *PubKey) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *PubKey) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *PubKey) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Key) > 0 { + i -= len(m.Key) + copy(dAtA[i:], m.Key) + i = encodeVarintKeys(dAtA, i, uint64(len(m.Key))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *PrivKey) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *PrivKey) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *PrivKey) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Key) > 0 { + i -= len(m.Key) + copy(dAtA[i:], m.Key) + i = encodeVarintKeys(dAtA, i, uint64(len(m.Key))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func encodeVarintKeys(dAtA []byte, offset int, v uint64) int { + offset -= sovKeys(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *PubKey) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Key) + if l > 0 { + n += 1 + l + sovKeys(uint64(l)) + } + return n +} + +func (m *PrivKey) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Key) + if l > 0 { + n += 1 + l + sovKeys(uint64(l)) + } + return n +} + +func sovKeys(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozKeys(x uint64) (n int) { + return sovKeys(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *PubKey) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKeys + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: PubKey: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: PubKey: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKeys + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthKeys + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKeys + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) + if m.Key == nil { + m.Key = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipKeys(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthKeys + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthKeys + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *PrivKey) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKeys + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: PrivKey: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: PrivKey: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKeys + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthKeys + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKeys + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) + if m.Key == nil { + m.Key = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipKeys(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthKeys + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthKeys + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipKeys(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowKeys + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowKeys + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowKeys + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthKeys + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupKeys + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthKeys + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthKeys = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowKeys = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupKeys = fmt.Errorf("proto: unexpected end of group") +) diff --git a/crypto/keys/secp256k1/secp256k1.go b/crypto/keys/secp256k1/secp256k1.go index 2ff2685b3a05..a19b6c830d4e 100644 --- a/crypto/keys/secp256k1/secp256k1.go +++ b/crypto/keys/secp256k1/secp256k1.go @@ -9,12 +9,15 @@ import ( "math/big" secp256k1 "github.com/btcsuite/btcd/btcec" + "github.com/cosmos/cosmos-sdk/codec" + cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" "golang.org/x/crypto/ripemd160" // nolint: staticcheck // necessary for Bitcoin address format "github.com/tendermint/tendermint/crypto" ) -var _ crypto.PrivKey = PrivKey{} +var _ cryptotypes.PrivKey = &PrivKey{} +var _ codec.AminoMarshaler = &PrivKey{} const ( PrivKeySize = 32 @@ -23,42 +26,63 @@ const ( PubKeyName = "tendermint/PubKeySecp256k1" ) -// PrivKey implements PrivKey. -type PrivKey []byte - // Bytes returns the byte representation of the Private Key. -func (privKey PrivKey) Bytes() []byte { - return []byte(privKey) +func (privKey *PrivKey) Bytes() []byte { + return privKey.Key } // PubKey performs the point-scalar multiplication from the privKey on the // generator point to get the pubkey. -func (privKey PrivKey) PubKey() crypto.PubKey { - _, pubkeyObject := secp256k1.PrivKeyFromBytes(secp256k1.S256(), privKey) - return PubKey(pubkeyObject.SerializeCompressed()) +func (privKey *PrivKey) PubKey() crypto.PubKey { + _, pubkeyObject := secp256k1.PrivKeyFromBytes(secp256k1.S256(), privKey.Key) + pk := pubkeyObject.SerializeCompressed() + return &PubKey{Key: pk} } // Equals - you probably don't need to use this. -// Runs in constant time based on length of the keys. -func (privKey PrivKey) Equals(other crypto.PrivKey) bool { - if otherSecp, ok := other.(PrivKey); ok { - return subtle.ConstantTimeCompare(privKey[:], otherSecp[:]) == 1 - } - return false +// Runs in constant time based on length of the +func (privKey *PrivKey) Equals(other crypto.PrivKey) bool { + return privKey.Type() == other.Type() && subtle.ConstantTimeCompare(privKey.Bytes(), other.Bytes()) == 1 } -func (privKey PrivKey) Type() string { +func (privKey *PrivKey) Type() string { return keyType } +// MarshalAmino overrides Amino binary marshalling. +func (privKey PrivKey) MarshalAmino() ([]byte, error) { + return privKey.Key, nil +} + +// UnmarshalAmino overrides Amino binary marshalling. +func (privKey *PrivKey) UnmarshalAmino(bz []byte) error { + *privKey = PrivKey{ + Key: bz, + } + + return nil +} + +// MarshalAminoJSON overrides Amino JSON marshalling. +func (privKey PrivKey) MarshalAminoJSON() ([]byte, error) { + // When we marshal to Amino JSON, we don't marshal the "key" field itself, + // just its contents (i.e. the key bytes). + return privKey.MarshalAmino() +} + +// UnmarshalAminoJSON overrides Amino JSON marshalling. +func (privKey *PrivKey) UnmarshalAminoJSON(bz []byte) error { + return privKey.UnmarshalAmino(bz) +} + // GenPrivKey generates a new ECDSA private key on curve secp256k1 private key. // It uses OS randomness to generate the private key. -func GenPrivKey() PrivKey { - return genPrivKey(crypto.CReader()) +func GenPrivKey() *PrivKey { + return &PrivKey{Key: genPrivKey(crypto.CReader())} } // genPrivKey generates a new secp256k1 private key using the provided reader. -func genPrivKey(rand io.Reader) PrivKey { +func genPrivKey(rand io.Reader) []byte { var privKeyBytes [PrivKeySize]byte d := new(big.Int) for { @@ -76,7 +100,7 @@ func genPrivKey(rand io.Reader) PrivKey { } } - return PrivKey(privKeyBytes[:]) + return privKeyBytes[:] } var one = new(big.Int).SetInt64(1) @@ -91,7 +115,7 @@ var one = new(big.Int).SetInt64(1) // // NOTE: secret should be the output of a KDF like bcrypt, // if it's derived from user input. -func GenPrivKeyFromSecret(secret []byte) PrivKey { +func GenPrivKeyFromSecret(secret []byte) *PrivKey { secHash := sha256.Sum256(secret) // to guarantee that we have a valid field element, we use the approach of: // "Suite B Implementer’s Guide to FIPS 186-3", A.2.1 @@ -107,32 +131,26 @@ func GenPrivKeyFromSecret(secret []byte) PrivKey { // copy feB over to fixed 32 byte privKey32 and pad (if necessary) copy(privKey32[32-len(feB):32], feB) - return PrivKey(privKey32) + return &PrivKey{Key: privKey32} } //------------------------------------- -var _ crypto.PubKey = PubKey{} +var _ cryptotypes.PubKey = &PubKey{} +var _ codec.AminoMarshaler = &PubKey{} // PubKeySize is comprised of 32 bytes for one field element // (the x-coordinate), plus one byte for the parity of the y-coordinate. const PubKeySize = 33 -// PubKey implements crypto.PubKey. -// It is the compressed form of the pubkey. The first byte depends is a 0x02 byte -// if the y-coordinate is the lexicographically largest of the two associated with -// the x-coordinate. Otherwise the first byte is a 0x03. -// This prefix is followed with the x-coordinate. -type PubKey []byte - // Address returns a Bitcoin style addresses: RIPEMD160(SHA256(pubkey)) -func (pubKey PubKey) Address() crypto.Address { - if len(pubKey) != PubKeySize { +func (pubKey *PubKey) Address() crypto.Address { + if len(pubKey.Key) != PubKeySize { panic("length of pubkey is incorrect") } hasherSHA256 := sha256.New() - hasherSHA256.Write(pubKey) // does not error + hasherSHA256.Write(pubKey.Key) // does not error sha := hasherSHA256.Sum(nil) hasherRIPEMD160 := ripemd160.New() @@ -141,21 +159,44 @@ func (pubKey PubKey) Address() crypto.Address { } // Bytes returns the pubkey byte format. -func (pubKey PubKey) Bytes() []byte { - return []byte(pubKey) +func (pubKey *PubKey) Bytes() []byte { + return pubKey.Key } -func (pubKey PubKey) String() string { - return fmt.Sprintf("PubKeySecp256k1{%X}", []byte(pubKey)) +func (pubKey *PubKey) String() string { + return fmt.Sprintf("PubKeySecp256k1{%X}", pubKey.Key) } -func (pubKey PubKey) Type() string { +func (pubKey *PubKey) Type() string { return keyType } -func (pubKey PubKey) Equals(other crypto.PubKey) bool { - if otherSecp, ok := other.(PubKey); ok { - return bytes.Equal(pubKey[:], otherSecp[:]) +func (pubKey *PubKey) Equals(other crypto.PubKey) bool { + return pubKey.Type() == other.Type() && bytes.Equal(pubKey.Bytes(), other.Bytes()) +} + +// MarshalAmino overrides Amino binary marshalling. +func (pubKey PubKey) MarshalAmino() ([]byte, error) { + return pubKey.Key, nil +} + +// UnmarshalAmino overrides Amino binary marshalling. +func (pubKey *PubKey) UnmarshalAmino(bz []byte) error { + *pubKey = PubKey{ + Key: bz, } - return false + + return nil +} + +// MarshalAminoJSON overrides Amino JSON marshalling. +func (pubKey PubKey) MarshalAminoJSON() ([]byte, error) { + // When we marshal to Amino JSON, we don't marshal the "key" field itself, + // just its contents (i.e. the key bytes). + return pubKey.MarshalAmino() +} + +// UnmarshalAminoJSON overrides Amino JSON marshalling. +func (pubKey *PubKey) UnmarshalAminoJSON(bz []byte) error { + return pubKey.UnmarshalAmino(bz) } diff --git a/crypto/keys/secp256k1/secp256k1_cgo.go b/crypto/keys/secp256k1/secp256k1_cgo.go index 416c22c1dd55..0c028c68750a 100644 --- a/crypto/keys/secp256k1/secp256k1_cgo.go +++ b/crypto/keys/secp256k1/secp256k1_cgo.go @@ -9,8 +9,8 @@ import ( ) // Sign creates an ECDSA signature on curve Secp256k1, using SHA256 on the msg. -func (privKey PrivKey) Sign(msg []byte) ([]byte, error) { - rsv, err := secp256k1.Sign(crypto.Sha256(msg), privKey[:]) +func (privKey *PrivKey) Sign(msg []byte) ([]byte, error) { + rsv, err := secp256k1.Sign(crypto.Sha256(msg), privKey.Key) if err != nil { return nil, err } @@ -19,6 +19,6 @@ func (privKey PrivKey) Sign(msg []byte) ([]byte, error) { return rs, nil } -func (pubKey PubKey) VerifySignature(msg []byte, sig []byte) bool { - return secp256k1.VerifySignature(pubKey[:], crypto.Sha256(msg), sig) +func (pubKey *PrivKey) VerifySignature(msg []byte, sig []byte) bool { + return secp256k1.VerifySignature(pubKey.Key, crypto.Sha256(msg), sig) } diff --git a/crypto/keys/secp256k1/secp256k1_cgo_test.go b/crypto/keys/secp256k1/secp256k1_cgo_test.go index 8793e8010c6a..bfaa76caf9db 100644 --- a/crypto/keys/secp256k1/secp256k1_cgo_test.go +++ b/crypto/keys/secp256k1/secp256k1_cgo_test.go @@ -15,12 +15,12 @@ func TestPrivKeySecp256k1SignVerify(t *testing.T) { priv := GenPrivKey() tests := []struct { name string - privKey PrivKey + privKey *PrivKey wantSignErr bool wantVerifyPasses bool }{ {name: "valid sign-verify round", privKey: priv, wantSignErr: false, wantVerifyPasses: true}, - {name: "invalid private key", privKey: [32]byte{}, wantSignErr: true, wantVerifyPasses: false}, + {name: "invalid private key", privKey: &*PrivKey{Key: [32]byte{}}, wantSignErr: true, wantVerifyPasses: false}, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { diff --git a/crypto/keys/secp256k1/secp256k1_nocgo.go b/crypto/keys/secp256k1/secp256k1_nocgo.go index 29e5d36b7b53..2d605447f421 100644 --- a/crypto/keys/secp256k1/secp256k1_nocgo.go +++ b/crypto/keys/secp256k1/secp256k1_nocgo.go @@ -18,8 +18,8 @@ var secp256k1halfN = new(big.Int).Rsh(secp256k1.S256().N, 1) // Sign creates an ECDSA signature on curve Secp256k1, using SHA256 on the msg. // The returned signature will be of the form R || S (in lower-S form). -func (privKey PrivKey) Sign(msg []byte) ([]byte, error) { - priv, _ := secp256k1.PrivKeyFromBytes(secp256k1.S256(), privKey[:]) +func (privKey *PrivKey) Sign(msg []byte) ([]byte, error) { + priv, _ := secp256k1.PrivKeyFromBytes(secp256k1.S256(), privKey.Key) sig, err := priv.Sign(crypto.Sha256(msg)) if err != nil { return nil, err @@ -30,11 +30,11 @@ func (privKey PrivKey) Sign(msg []byte) ([]byte, error) { // VerifyBytes verifies a signature of the form R || S. // It rejects signatures which are not in lower-S form. -func (pubKey PubKey) VerifySignature(msg []byte, sigStr []byte) bool { +func (pubKey *PubKey) VerifySignature(msg []byte, sigStr []byte) bool { if len(sigStr) != 64 { return false } - pub, err := secp256k1.ParsePubKey(pubKey[:], secp256k1.S256()) + pub, err := secp256k1.ParsePubKey(pubKey.Key, secp256k1.S256()) if err != nil { return false } diff --git a/crypto/keys/secp256k1/secp256k1_test.go b/crypto/keys/secp256k1/secp256k1_test.go index 8f7b9bc4e93a..e4ac58111996 100644 --- a/crypto/keys/secp256k1/secp256k1_test.go +++ b/crypto/keys/secp256k1/secp256k1_test.go @@ -1,6 +1,7 @@ package secp256k1_test import ( + "encoding/base64" "encoding/hex" "math/big" "testing" @@ -10,10 +11,13 @@ import ( "github.com/stretchr/testify/require" "github.com/tendermint/tendermint/crypto" + "github.com/tendermint/tendermint/crypto/sr25519" underlyingSecp256k1 "github.com/btcsuite/btcd/btcec" + "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" + cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" ) type keyData struct { @@ -37,13 +41,13 @@ func TestPubKeySecp256k1Address(t *testing.T) { addrBbz, _, _ := base58.CheckDecode(d.addr) addrB := crypto.Address(addrBbz) - var priv secp256k1.PrivKey = privB + var priv secp256k1.PrivKey = secp256k1.PrivKey{Key: privB} pubKey := priv.PubKey() - pubT, _ := pubKey.(secp256k1.PubKey) + pubT, _ := pubKey.(*secp256k1.PubKey) addr := pubKey.Address() - assert.Equal(t, pubT, secp256k1.PubKey(pubB), "Expected pub keys to match") + assert.Equal(t, pubT, &secp256k1.PubKey{Key: pubB}, "Expected pub keys to match") assert.Equal(t, addr, addrB, "Expected addresses to match") } } @@ -108,9 +112,140 @@ func TestGenPrivKeyFromSecret(t *testing.T) { gotPrivKey := secp256k1.GenPrivKeyFromSecret(tt.secret) require.NotNil(t, gotPrivKey) // interpret as a big.Int and make sure it is a valid field element: - fe := new(big.Int).SetBytes(gotPrivKey[:]) + fe := new(big.Int).SetBytes(gotPrivKey.Key[:]) require.True(t, fe.Cmp(N) < 0) require.True(t, fe.Sign() > 0) }) } } + +func TestPubKeyEquals(t *testing.T) { + secp256K1PubKey := secp256k1.GenPrivKey().PubKey().(*secp256k1.PubKey) + + testCases := []struct { + msg string + pubKey cryptotypes.PubKey + other crypto.PubKey + expectEq bool + }{ + { + "different bytes", + secp256K1PubKey, + secp256k1.GenPrivKey().PubKey(), + false, + }, + { + "equals", + secp256K1PubKey, + &secp256k1.PubKey{ + Key: secp256K1PubKey.Key, + }, + true, + }, + { + "different types", + secp256K1PubKey, + sr25519.GenPrivKey().PubKey(), + false, + }, + } + + for _, tc := range testCases { + t.Run(tc.msg, func(t *testing.T) { + eq := tc.pubKey.Equals(tc.other) + require.Equal(t, eq, tc.expectEq) + }) + } +} + +func TestPrivKeyEquals(t *testing.T) { + secp256K1PrivKey := secp256k1.GenPrivKey() + + testCases := []struct { + msg string + privKey cryptotypes.PrivKey + other crypto.PrivKey + expectEq bool + }{ + { + "different bytes", + secp256K1PrivKey, + secp256k1.GenPrivKey(), + false, + }, + { + "equals", + secp256K1PrivKey, + &secp256k1.PrivKey{ + Key: secp256K1PrivKey.Key, + }, + true, + }, + { + "different types", + secp256K1PrivKey, + sr25519.GenPrivKey(), + false, + }, + } + + for _, tc := range testCases { + t.Run(tc.msg, func(t *testing.T) { + eq := tc.privKey.Equals(tc.other) + require.Equal(t, eq, tc.expectEq) + }) + } +} + +func TestMarshalAmino(t *testing.T) { + aminoCdc := codec.NewLegacyAmino() + privKey := secp256k1.GenPrivKey() + pubKey := privKey.PubKey().(*secp256k1.PubKey) + + testCases := []struct { + desc string + msg codec.AminoMarshaler + typ interface{} + expBinary []byte + expJSON string + }{ + { + "secp256k1 private key", + privKey, + &secp256k1.PrivKey{}, + append([]byte{32}, privKey.Bytes()...), // Length-prefixed. + "\"" + base64.StdEncoding.EncodeToString(privKey.Bytes()) + "\"", + }, + { + "secp256k1 public key", + pubKey, + &secp256k1.PubKey{}, + append([]byte{33}, pubKey.Bytes()...), // Length-prefixed. + "\"" + base64.StdEncoding.EncodeToString(pubKey.Bytes()) + "\"", + }, + } + + for _, tc := range testCases { + t.Run(tc.desc, func(t *testing.T) { + // Do a round trip of encoding/decoding binary. + bz, err := aminoCdc.MarshalBinaryBare(tc.msg) + require.NoError(t, err) + require.Equal(t, tc.expBinary, bz) + + err = aminoCdc.UnmarshalBinaryBare(bz, tc.typ) + require.NoError(t, err) + + require.Equal(t, tc.msg, tc.typ) + + // Do a round trip of encoding/decoding JSON. + bz, err = aminoCdc.MarshalJSON(tc.msg) + require.NoError(t, err) + require.Equal(t, tc.expJSON, string(bz)) + + err = aminoCdc.UnmarshalJSON(bz, tc.typ) + require.NoError(t, err) + + require.Equal(t, tc.msg, tc.typ) + }) + } +} diff --git a/crypto/ledger/ledger_mock.go b/crypto/ledger/ledger_mock.go index 45efc5c3010d..4f7feb2c52de 100644 --- a/crypto/ledger/ledger_mock.go +++ b/crypto/ledger/ledger_mock.go @@ -77,11 +77,12 @@ func (mock LedgerSECP256K1Mock) GetAddressPubKeySECP256K1(derivationPath []uint3 return nil, "", fmt.Errorf("error parsing public key: %v", err) } - compressedPublicKey := make(csecp256k1.PubKey, csecp256k1.PubKeySize) + compressedPublicKey := make([]byte, csecp256k1.PubKeySize) copy(compressedPublicKey, cmp.SerializeCompressed()) // Generate the bech32 addr using existing tmcrypto/etc. - addr := sdk.AccAddress(compressedPublicKey.Address()).String() + pub := &csecp256k1.PubKey{Key: compressedPublicKey} + addr := sdk.AccAddress(pub.Address()).String() return pk, addr, err } diff --git a/crypto/ledger/ledger_secp256k1.go b/crypto/ledger/ledger_secp256k1.go index 0884e36eb449..3afdbac5f321 100644 --- a/crypto/ledger/ledger_secp256k1.go +++ b/crypto/ledger/ledger_secp256k1.go @@ -246,10 +246,10 @@ func getPubKeyUnsafe(device SECP256K1, path hd.BIP44Params) (tmcrypto.PubKey, er return nil, fmt.Errorf("error parsing public key: %v", err) } - compressedPublicKey := make(secp256k1.PubKey, secp256k1.PubKeySize) + compressedPublicKey := make([]byte, secp256k1.PubKeySize) copy(compressedPublicKey, cmp.SerializeCompressed()) - return compressedPublicKey, nil + return &secp256k1.PubKey{Key: compressedPublicKey}, nil } // getPubKeyAddr reads the pubkey and the address from a ledger device. @@ -270,8 +270,8 @@ func getPubKeyAddrSafe(device SECP256K1, path hd.BIP44Params, hrp string) (tmcry return nil, "", fmt.Errorf("error parsing public key: %v", err) } - compressedPublicKey := make(secp256k1.PubKey, secp256k1.PubKeySize) + compressedPublicKey := make([]byte, secp256k1.PubKeySize) copy(compressedPublicKey, cmp.SerializeCompressed()) - return compressedPublicKey, addr, nil + return &secp256k1.PubKey{Key: compressedPublicKey}, addr, nil } diff --git a/crypto/types/multisig/codec.go b/crypto/types/multisig/codec.go index 54bd0f225a96..8358cb55265a 100644 --- a/crypto/types/multisig/codec.go +++ b/crypto/types/multisig/codec.go @@ -25,6 +25,6 @@ func init() { ed25519.PubKeyName, nil) Cdc.RegisterConcrete(sr25519.PubKey{}, sr25519.PubKeyName, nil) - Cdc.RegisterConcrete(secp256k1.PubKey{}, + Cdc.RegisterConcrete(&secp256k1.PubKey{}, secp256k1.PubKeyName, nil) } diff --git a/crypto/types/multisig/threshold_pubkey.go b/crypto/types/multisig/threshold_pubkey.go index 1c5cabf72f09..7a3c410b7b30 100644 --- a/crypto/types/multisig/threshold_pubkey.go +++ b/crypto/types/multisig/threshold_pubkey.go @@ -33,14 +33,14 @@ func NewPubKeyMultisigThreshold(k int, pubkeys []crypto.PubKey) PubKey { return PubKeyMultisigThreshold{uint(k), pubkeys} } -// VerifyBytes expects sig to be an amino encoded version of a MultiSignature. +// VerifySignature expects sig to be an amino encoded version of a MultiSignature. // Returns true iff the multisignature contains k or more signatures // for the correct corresponding keys, // and all signatures are valid. (Not just k of the signatures) // The multisig uses a bitarray, so multiple signatures for the same key is not // a concern. // -// NOTE: VerifyMultisignature should preferred to VerifyBytes which only works +// NOTE: VerifyMultisignature should preferred to VerifySignature which only works // with amino multisignatures. func (pk PubKeyMultisigThreshold) VerifySignature(msg []byte, marshalledSig []byte) bool { var sig AminoMultisignature @@ -140,15 +140,16 @@ func (pk PubKeyMultisigThreshold) Address() crypto.Address { // Equals returns true iff pk and other both have the same number of keys, and // all constituent keys are the same, and in the same order. func (pk PubKeyMultisigThreshold) Equals(other crypto.PubKey) bool { - otherKey, sameType := other.(PubKeyMultisigThreshold) + otherKey, sameType := other.(PubKey) if !sameType { return false } - if pk.K != otherKey.K || len(pk.PubKeys) != len(otherKey.PubKeys) { + otherPubKeys := otherKey.GetPubKeys() + if pk.GetThreshold() != otherKey.GetThreshold() || len(pk.PubKeys) != len(otherPubKeys) { return false } for i := 0; i < len(pk.PubKeys); i++ { - if !pk.PubKeys[i].Equals(otherKey.PubKeys[i]) { + if !pk.PubKeys[i].Equals(otherPubKeys[i]) { return false } } diff --git a/crypto/types/multisig/threshold_pubkey_test.go b/crypto/types/multisig/threshold_pubkey_test.go index cd5a6033f0c6..4d753675cf77 100644 --- a/crypto/types/multisig/threshold_pubkey_test.go +++ b/crypto/types/multisig/threshold_pubkey_test.go @@ -4,12 +4,16 @@ import ( "math/rand" "testing" + proto "github.com/gogo/protobuf/proto" "github.com/stretchr/testify/require" "github.com/tendermint/tendermint/crypto" "github.com/tendermint/tendermint/crypto/ed25519" "github.com/tendermint/tendermint/crypto/sr25519" "github.com/cosmos/cosmos-sdk/codec" + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + + kmultisig "github.com/cosmos/cosmos-sdk/crypto/keys/multisig" "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" "github.com/cosmos/cosmos-sdk/crypto/types" "github.com/cosmos/cosmos-sdk/crypto/types/multisig" @@ -130,22 +134,61 @@ func TestThresholdMultisigDuplicateSignatures(t *testing.T) { require.Error(t, multisigKey.VerifyMultisignature(signBytesFn, multisignature)) } -// TODO: Fully replace this test with table driven tests func TestMultiSigPubKeyEquality(t *testing.T) { - msg := []byte{1, 2, 3, 4} - pubkeys, _ := generatePubKeysAndSignatures(5, msg) + pubKey1 := secp256k1.GenPrivKey().PubKey() + pubKey2 := secp256k1.GenPrivKey().PubKey() + pubkeys := []crypto.PubKey{pubKey1, pubKey2} multisigKey := multisig.NewPubKeyMultisigThreshold(2, pubkeys) - var unmarshalledMultisig multisig.PubKeyMultisigThreshold - multisig.Cdc.MustUnmarshalBinaryBare(multisigKey.Bytes(), &unmarshalledMultisig) - require.True(t, multisigKey.Equals(unmarshalledMultisig)) + var other multisig.PubKey - // Ensure that reordering pubkeys is treated as a different pubkey - pubkeysCpy := make([]crypto.PubKey, 5) - copy(pubkeysCpy, pubkeys) - pubkeysCpy[4] = pubkeys[3] - pubkeysCpy[3] = pubkeys[4] - multisigKey2 := multisig.NewPubKeyMultisigThreshold(2, pubkeysCpy) - require.False(t, multisigKey.Equals(multisigKey2)) + testCases := []struct { + msg string + malleate func() + expectEq bool + }{ + { + "equals", + func() { + var otherPubKey multisig.PubKeyMultisigThreshold + multisig.Cdc.MustUnmarshalBinaryBare(multisigKey.Bytes(), &otherPubKey) + other = otherPubKey + }, + true, + }, + { + "ensure that reordering pubkeys is treated as a different pubkey", + func() { + pubkeysCpy := make([]crypto.PubKey, 2) + copy(pubkeysCpy, pubkeys) + pubkeysCpy[0] = pubkeys[1] + pubkeysCpy[1] = pubkeys[0] + other = multisig.NewPubKeyMultisigThreshold(2, pubkeysCpy) + }, + false, + }, + { + "equals with proto pub key", + func() { + anyPubKeys := make([]*codectypes.Any, len(pubkeys)) + + for i := 0; i < len(pubkeys); i++ { + any, err := codectypes.NewAnyWithValue(pubkeys[i].(proto.Message)) + require.NoError(t, err) + anyPubKeys[i] = any + } + other = &kmultisig.LegacyAminoPubKey{Threshold: 2, PubKeys: anyPubKeys} + }, + true, + }, + } + + for _, tc := range testCases { + t.Run(tc.msg, func(t *testing.T) { + tc.malleate() + eq := multisigKey.Equals(other) + require.Equal(t, eq, tc.expectEq) + }) + } } func TestAddress(t *testing.T) { diff --git a/crypto/types/types.go b/crypto/types/types.go new file mode 100644 index 000000000000..f6873b5e7565 --- /dev/null +++ b/crypto/types/types.go @@ -0,0 +1,24 @@ +package types + +import ( + proto "github.com/gogo/protobuf/proto" + tmcrypto "github.com/tendermint/tendermint/crypto" +) + +// PubKey interface extends proto.Message +// and tendermint crypto.PubKey +type PubKey interface { + proto.Message + tmcrypto.PubKey +} + +// PrivKey interface extends proto.Message +// and tendermint crypto.PrivKey +type PrivKey interface { + proto.Message + tmcrypto.PrivKey +} + +type ( + Address = tmcrypto.Address +) diff --git a/proto/cosmos/crypto/multisig/keys.proto b/proto/cosmos/crypto/multisig/keys.proto new file mode 100644 index 000000000000..5fb2fe6f03c8 --- /dev/null +++ b/proto/cosmos/crypto/multisig/keys.proto @@ -0,0 +1,17 @@ +syntax = "proto3"; +package cosmos.crypto.multisig; + +import "gogoproto/gogo.proto"; +import "google/protobuf/any.proto"; + +option go_package = "github.com/cosmos/cosmos-sdk/crypto/keys/multisig"; + +// LegacyAminoPubKey specifies a public key type +// which nests multiple public keys and a threshold, +// it uses legacy amino address rules. +message LegacyAminoPubKey { + option (gogoproto.goproto_getters) = false; + + uint32 threshold = 1 [(gogoproto.moretags) = "yaml:\"threshold\""]; + repeated google.protobuf.Any public_keys = 2 [(gogoproto.customname) = "PubKeys", (gogoproto.moretags) = "yaml:\"pubkeys\""]; +} diff --git a/proto/cosmos/crypto/secp256k1/keys.proto b/proto/cosmos/crypto/secp256k1/keys.proto new file mode 100644 index 000000000000..c1ba7db34d86 --- /dev/null +++ b/proto/cosmos/crypto/secp256k1/keys.proto @@ -0,0 +1,22 @@ +syntax = "proto3"; +package cosmos.crypto.secp256k1; + +import "gogoproto/gogo.proto"; + +option go_package = "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"; + +// PubKey defines a secp256k1 public key +// Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte +// if the y-coordinate is the lexicographically largest of the two associated with +// the x-coordinate. Otherwise the first byte is a 0x03. +// This prefix is followed with the x-coordinate. +message PubKey { + option (gogoproto.goproto_stringer) = false; + + bytes key = 1; +} + +// PrivKey defines a secp256k1 private key. +message PrivKey { + bytes key = 1; +} diff --git a/std/pubkey.go b/std/pubkey.go index 72f71933af4e..76d5a257a9b4 100644 --- a/std/pubkey.go +++ b/std/pubkey.go @@ -34,9 +34,9 @@ func (cdc DefaultPublicKeyCodec) Decode(key *types.PublicKey) (crypto.PubKey, er return nil, fmt.Errorf("wrong length %d for secp256k1 public key", n) } - res := make(secp256k1.PubKey, secp256k1.PubKeySize) + res := make([]byte, secp256k1.PubKeySize) copy(res, key.Secp256K1) - return res, nil + return &secp256k1.PubKey{Key: res}, nil case *types.PublicKey_Ed25519: n := len(key.Ed25519) if n != ed25519.PubKeySize { @@ -79,8 +79,8 @@ func (cdc DefaultPublicKeyCodec) Encode(key crypto.PubKey) (*types.PublicKey, er return &types.PublicKey{}, nil } switch key := key.(type) { - case secp256k1.PubKey: - return &types.PublicKey{Sum: &types.PublicKey_Secp256K1{Secp256K1: key}}, nil + case *secp256k1.PubKey: + return &types.PublicKey{Sum: &types.PublicKey_Secp256K1{Secp256K1: key.Key}}, nil case ed25519.PubKey: return &types.PublicKey{Sum: &types.PublicKey_Ed25519{Ed25519: key}}, nil case sr25519.PubKey: diff --git a/x/auth/ante/sigverify.go b/x/auth/ante/sigverify.go index 7d1fea1ebec9..914ee20b07eb 100644 --- a/x/auth/ante/sigverify.go +++ b/x/auth/ante/sigverify.go @@ -18,7 +18,8 @@ import ( var ( // simulation signature values used to estimate gas consumption - simSecp256k1Pubkey = make(secp256k1.PubKey, secp256k1.PubKeySize) + key = make([]byte, secp256k1.PubKeySize) + simSecp256k1Pubkey = &secp256k1.PubKey{Key: key} simSecp256k1Sig [64]byte _ authsigning.SigVerifiableTx = (*types.StdTx)(nil) // assert StdTx implements SigVerifiableTx @@ -27,7 +28,8 @@ var ( func init() { // This decodes a valid hex string into a sepc256k1Pubkey for use in transaction simulation bz, _ := hex.DecodeString("035AD6810A47F073553FF30D2FCC7E0D3B1C0B74B61A1AAA2582344037151E143A") - copy(simSecp256k1Pubkey, bz) + copy(key, bz) + simSecp256k1Pubkey.Key = key } // SignatureVerificationGasConsumer is the type of function that is used to both @@ -337,7 +339,7 @@ func DefaultSigVerificationGasConsumer( meter.ConsumeGas(params.SigVerifyCostED25519, "ante verify: ed25519") return sdkerrors.Wrap(sdkerrors.ErrInvalidPubKey, "ED25519 public keys are unsupported") - case secp256k1.PubKey: + case *secp256k1.PubKey: meter.ConsumeGas(params.SigVerifyCostSecp256k1, "ante verify: secp256k1") return nil diff --git a/x/staking/types/staking.pb.go b/x/staking/types/staking.pb.go index 33a481d49ada..5d53eaf0737c 100644 --- a/x/staking/types/staking.pb.go +++ b/x/staking/types/staking.pb.go @@ -1265,587 +1265,586 @@ func (this *Pool) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_ func StakingDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ - // 9273 bytes of a gzipped FileDescriptorSet - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x7b, 0x74, 0x1c, 0xd7, - 0x79, 0x18, 0xce, 0xd9, 0x07, 0xb0, 0xfb, 0x2d, 0x1e, 0x8b, 0x0b, 0x10, 0x5a, 0x2e, 0x49, 0x00, - 0x1a, 0xc9, 0x12, 0x45, 0x49, 0x80, 0x44, 0xf1, 0xb9, 0xb4, 0x2d, 0x63, 0x81, 0x25, 0x08, 0x12, - 0x2f, 0x0d, 0x40, 0xea, 0xe1, 0xe4, 0xb7, 0x67, 0x30, 0x7b, 0xb1, 0x18, 0x71, 0x76, 0x66, 0x34, - 0x33, 0x4b, 0x12, 0xb4, 0x7d, 0x8e, 0x12, 0x3f, 0x7e, 0xb1, 0xda, 0xd4, 0x76, 0x93, 0x93, 0xda, - 0xaa, 0xe5, 0xca, 0x76, 0x5b, 0xa7, 0x4e, 0xdb, 0x3c, 0x9c, 0xa6, 0x4d, 0xdb, 0xd3, 0xda, 0x8d, - 0x93, 0x38, 0x6d, 0xd3, 0x23, 0x9d, 0xba, 0x6d, 0x9a, 0xd3, 0xd0, 0xa9, 0xec, 0xd3, 0x2a, 0xae, - 0xdb, 0xa4, 0xac, 0x9a, 0x3e, 0xf4, 0x47, 0x7a, 0xee, 0x6b, 0x1e, 0xfb, 0xc0, 0xee, 0x42, 0xa4, - 0x6c, 0x9d, 0xe8, 0x2f, 0xec, 0xfd, 0xe6, 0xfb, 0xbe, 0xfb, 0xdd, 0xef, 0x7e, 0xaf, 0xfb, 0x98, - 0x01, 0xfc, 0xc6, 0x59, 0x98, 0xaa, 0x5a, 0x56, 0xd5, 0xc0, 0x33, 0xb6, 0x63, 0x79, 0xd6, 0x66, - 0x7d, 0x6b, 0xa6, 0x82, 0x5d, 0xcd, 0xd1, 0x6d, 0xcf, 0x72, 0xa6, 0x29, 0x0c, 0x0d, 0x33, 0x8c, - 0x69, 0x81, 0x21, 0x2f, 0xc3, 0xc8, 0x39, 0xdd, 0xc0, 0xf3, 0x3e, 0xe2, 0x3a, 0xf6, 0xd0, 0x69, - 0x48, 0x6c, 0xe9, 0x06, 0xce, 0x49, 0x53, 0xf1, 0x23, 0x99, 0x63, 0xf7, 0x4e, 0x37, 0x10, 0x4d, - 0x47, 0x29, 0xd6, 0x08, 0x58, 0xa1, 0x14, 0xf2, 0xf7, 0x12, 0x30, 0xda, 0xe2, 0x29, 0x42, 0x90, - 0x30, 0xd5, 0x1a, 0xe1, 0x28, 0x1d, 0x49, 0x2b, 0xf4, 0x37, 0xca, 0x41, 0xbf, 0xad, 0x6a, 0x57, - 0xd4, 0x2a, 0xce, 0xc5, 0x28, 0x58, 0x34, 0xd1, 0x04, 0x40, 0x05, 0xdb, 0xd8, 0xac, 0x60, 0x53, - 0xdb, 0xc9, 0xc5, 0xa7, 0xe2, 0x47, 0xd2, 0x4a, 0x08, 0x82, 0x1e, 0x84, 0x11, 0xbb, 0xbe, 0x69, - 0xe8, 0x5a, 0x39, 0x84, 0x06, 0x53, 0xf1, 0x23, 0x49, 0x25, 0xcb, 0x1e, 0xcc, 0x07, 0xc8, 0xf7, - 0xc3, 0xf0, 0x35, 0xac, 0x5e, 0x09, 0xa3, 0x66, 0x28, 0xea, 0x10, 0x01, 0x87, 0x10, 0xe7, 0x60, - 0xa0, 0x86, 0x5d, 0x57, 0xad, 0xe2, 0xb2, 0xb7, 0x63, 0xe3, 0x5c, 0x82, 0x8e, 0x7e, 0xaa, 0x69, - 0xf4, 0x8d, 0x23, 0xcf, 0x70, 0xaa, 0x8d, 0x1d, 0x1b, 0xa3, 0x59, 0x48, 0x63, 0xb3, 0x5e, 0x63, - 0x1c, 0x92, 0x6d, 0xf4, 0x57, 0x32, 0xeb, 0xb5, 0x46, 0x2e, 0x29, 0x42, 0xc6, 0x59, 0xf4, 0xbb, - 0xd8, 0xb9, 0xaa, 0x6b, 0x38, 0xd7, 0x47, 0x19, 0xdc, 0xdf, 0xc4, 0x60, 0x9d, 0x3d, 0x6f, 0xe4, - 0x21, 0xe8, 0xd0, 0x1c, 0xa4, 0xf1, 0x75, 0x0f, 0x9b, 0xae, 0x6e, 0x99, 0xb9, 0x7e, 0xca, 0xe4, - 0x3d, 0x2d, 0x66, 0x11, 0x1b, 0x95, 0x46, 0x16, 0x01, 0x1d, 0x3a, 0x09, 0xfd, 0x96, 0xed, 0xe9, - 0x96, 0xe9, 0xe6, 0x52, 0x53, 0xd2, 0x91, 0xcc, 0xb1, 0x43, 0x2d, 0x0d, 0x61, 0x95, 0xe1, 0x28, - 0x02, 0x19, 0x2d, 0x42, 0xd6, 0xb5, 0xea, 0x8e, 0x86, 0xcb, 0x9a, 0x55, 0xc1, 0x65, 0xdd, 0xdc, - 0xb2, 0x72, 0x69, 0xca, 0x60, 0xb2, 0x79, 0x20, 0x14, 0x71, 0xce, 0xaa, 0xe0, 0x45, 0x73, 0xcb, - 0x52, 0x86, 0xdc, 0x48, 0x1b, 0x8d, 0x43, 0x9f, 0xbb, 0x63, 0x7a, 0xea, 0xf5, 0xdc, 0x00, 0xb5, - 0x10, 0xde, 0x92, 0x7f, 0xbd, 0x0f, 0x86, 0xbb, 0x31, 0xb1, 0xb3, 0x90, 0xdc, 0x22, 0xa3, 0xcc, - 0xc5, 0x7a, 0xd1, 0x01, 0xa3, 0x89, 0x2a, 0xb1, 0x6f, 0x8f, 0x4a, 0x9c, 0x85, 0x8c, 0x89, 0x5d, - 0x0f, 0x57, 0x98, 0x45, 0xc4, 0xbb, 0xb4, 0x29, 0x60, 0x44, 0xcd, 0x26, 0x95, 0xd8, 0x93, 0x49, - 0x3d, 0x05, 0xc3, 0xbe, 0x48, 0x65, 0x47, 0x35, 0xab, 0xc2, 0x36, 0x67, 0x3a, 0x49, 0x32, 0x5d, - 0x12, 0x74, 0x0a, 0x21, 0x53, 0x86, 0x70, 0xa4, 0x8d, 0xe6, 0x01, 0x2c, 0x13, 0x5b, 0x5b, 0xe5, - 0x0a, 0xd6, 0x8c, 0x5c, 0xaa, 0x8d, 0x96, 0x56, 0x09, 0x4a, 0x93, 0x96, 0x2c, 0x06, 0xd5, 0x0c, - 0x74, 0x26, 0x30, 0xb5, 0xfe, 0x36, 0x96, 0xb2, 0xcc, 0x9c, 0xac, 0xc9, 0xda, 0x2e, 0xc1, 0x90, - 0x83, 0x89, 0xdd, 0xe3, 0x0a, 0x1f, 0x59, 0x9a, 0x0a, 0x31, 0xdd, 0x71, 0x64, 0x0a, 0x27, 0x63, - 0x03, 0x1b, 0x74, 0xc2, 0x4d, 0x74, 0x0f, 0xf8, 0x80, 0x32, 0x35, 0x2b, 0xa0, 0x51, 0x68, 0x40, - 0x00, 0x57, 0xd4, 0x1a, 0xce, 0xdf, 0x80, 0xa1, 0xa8, 0x7a, 0xd0, 0x18, 0x24, 0x5d, 0x4f, 0x75, - 0x3c, 0x6a, 0x85, 0x49, 0x85, 0x35, 0x50, 0x16, 0xe2, 0xd8, 0xac, 0xd0, 0x28, 0x97, 0x54, 0xc8, - 0x4f, 0xf4, 0x81, 0x60, 0xc0, 0x71, 0x3a, 0xe0, 0xfb, 0x9a, 0x67, 0x34, 0xc2, 0xb9, 0x71, 0xdc, - 0xf9, 0x53, 0x30, 0x18, 0x19, 0x40, 0xb7, 0x5d, 0xcb, 0x1f, 0x86, 0xfd, 0x2d, 0x59, 0xa3, 0xa7, - 0x60, 0xac, 0x6e, 0xea, 0xa6, 0x87, 0x1d, 0xdb, 0xc1, 0xc4, 0x62, 0x59, 0x57, 0xb9, 0xff, 0xdc, - 0xdf, 0xc6, 0xe6, 0x2e, 0x85, 0xb1, 0x19, 0x17, 0x65, 0xb4, 0xde, 0x0c, 0x3c, 0x9a, 0x4e, 0xbd, - 0xde, 0x9f, 0x7d, 0xfe, 0xf9, 0xe7, 0x9f, 0x8f, 0xc9, 0xdf, 0xe8, 0x83, 0xb1, 0x56, 0x3e, 0xd3, - 0xd2, 0x7d, 0xc7, 0xa1, 0xcf, 0xac, 0xd7, 0x36, 0xb1, 0x43, 0x95, 0x94, 0x54, 0x78, 0x0b, 0xcd, - 0x42, 0xd2, 0x50, 0x37, 0xb1, 0x91, 0x4b, 0x4c, 0x49, 0x47, 0x86, 0x8e, 0x3d, 0xd8, 0x95, 0x57, - 0x4e, 0x2f, 0x11, 0x12, 0x85, 0x51, 0xa2, 0xf7, 0x43, 0x82, 0x87, 0x68, 0xc2, 0xe1, 0x68, 0x77, - 0x1c, 0x88, 0x2f, 0x29, 0x94, 0x0e, 0x1d, 0x84, 0x34, 0xf9, 0xcb, 0x6c, 0xa3, 0x8f, 0xca, 0x9c, - 0x22, 0x00, 0x62, 0x17, 0x28, 0x0f, 0x29, 0xea, 0x26, 0x15, 0x2c, 0x52, 0x9b, 0xdf, 0x26, 0x86, - 0x55, 0xc1, 0x5b, 0x6a, 0xdd, 0xf0, 0xca, 0x57, 0x55, 0xa3, 0x8e, 0xa9, 0xc1, 0xa7, 0x95, 0x01, - 0x0e, 0xbc, 0x4c, 0x60, 0x68, 0x12, 0x32, 0xcc, 0xab, 0x74, 0xb3, 0x82, 0xaf, 0xd3, 0xe8, 0x99, - 0x54, 0x98, 0xa3, 0x2d, 0x12, 0x08, 0xe9, 0xfe, 0x59, 0xd7, 0x32, 0x85, 0x69, 0xd2, 0x2e, 0x08, - 0x80, 0x76, 0x7f, 0xaa, 0x31, 0x70, 0x1f, 0x6e, 0x3d, 0xbc, 0x26, 0x5f, 0xba, 0x1f, 0x86, 0x29, - 0xc6, 0x63, 0x7c, 0xea, 0x55, 0x23, 0x37, 0x32, 0x25, 0x1d, 0x49, 0x29, 0x43, 0x0c, 0xbc, 0xca, - 0xa1, 0xf2, 0xaf, 0xc5, 0x20, 0x41, 0x03, 0xcb, 0x30, 0x64, 0x36, 0x9e, 0x5e, 0x2b, 0x95, 0xe7, - 0x57, 0x2f, 0x15, 0x97, 0x4a, 0x59, 0x09, 0x0d, 0x01, 0x50, 0xc0, 0xb9, 0xa5, 0xd5, 0xd9, 0x8d, - 0x6c, 0xcc, 0x6f, 0x2f, 0xae, 0x6c, 0x9c, 0x3c, 0x9e, 0x8d, 0xfb, 0x04, 0x97, 0x18, 0x20, 0x11, - 0x46, 0x78, 0xec, 0x58, 0x36, 0x89, 0xb2, 0x30, 0xc0, 0x18, 0x2c, 0x3e, 0x55, 0x9a, 0x3f, 0x79, - 0x3c, 0xdb, 0x17, 0x85, 0x3c, 0x76, 0x2c, 0xdb, 0x8f, 0x06, 0x21, 0x4d, 0x21, 0xc5, 0xd5, 0xd5, - 0xa5, 0x6c, 0xca, 0xe7, 0xb9, 0xbe, 0xa1, 0x2c, 0xae, 0x2c, 0x64, 0xd3, 0x3e, 0xcf, 0x05, 0x65, - 0xf5, 0xd2, 0x5a, 0x16, 0x7c, 0x0e, 0xcb, 0xa5, 0xf5, 0xf5, 0xd9, 0x85, 0x52, 0x36, 0xe3, 0x63, - 0x14, 0x9f, 0xde, 0x28, 0xad, 0x67, 0x07, 0x22, 0x62, 0x3d, 0x76, 0x2c, 0x3b, 0xe8, 0x77, 0x51, - 0x5a, 0xb9, 0xb4, 0x9c, 0x1d, 0x42, 0x23, 0x30, 0xc8, 0xba, 0x10, 0x42, 0x0c, 0x37, 0x80, 0x4e, - 0x1e, 0xcf, 0x66, 0x03, 0x41, 0x18, 0x97, 0x91, 0x08, 0xe0, 0xe4, 0xf1, 0x2c, 0x92, 0xe7, 0x20, - 0x49, 0xcd, 0x10, 0x21, 0x18, 0x5a, 0x9a, 0x2d, 0x96, 0x96, 0xca, 0xab, 0x6b, 0x1b, 0x8b, 0xab, - 0x2b, 0xb3, 0x4b, 0x59, 0x29, 0x80, 0x29, 0xa5, 0x27, 0x2e, 0x2d, 0x2a, 0xa5, 0xf9, 0x6c, 0x2c, - 0x0c, 0x5b, 0x2b, 0xcd, 0x6e, 0x94, 0xe6, 0xb3, 0x71, 0x59, 0x83, 0xb1, 0x56, 0x01, 0xb5, 0xa5, - 0x0b, 0x85, 0x6c, 0x21, 0xd6, 0xc6, 0x16, 0x28, 0xaf, 0x46, 0x5b, 0x90, 0xbf, 0x1b, 0x83, 0xd1, - 0x16, 0x49, 0xa5, 0x65, 0x27, 0x8f, 0x43, 0x92, 0xd9, 0x32, 0x4b, 0xb3, 0x0f, 0xb4, 0xcc, 0x4e, - 0xd4, 0xb2, 0x9b, 0x52, 0x2d, 0xa5, 0x0b, 0x97, 0x1a, 0xf1, 0x36, 0xa5, 0x06, 0x61, 0xd1, 0x64, - 0xb0, 0x3f, 0xde, 0x14, 0xfc, 0x59, 0x7e, 0x3c, 0xd9, 0x4d, 0x7e, 0xa4, 0xb0, 0xde, 0x92, 0x40, - 0xb2, 0x45, 0x12, 0x38, 0x0b, 0x23, 0x4d, 0x8c, 0xba, 0x0e, 0xc6, 0x1f, 0x95, 0x20, 0xd7, 0x4e, - 0x39, 0x1d, 0x42, 0x62, 0x2c, 0x12, 0x12, 0xcf, 0x36, 0x6a, 0xf0, 0xee, 0xf6, 0x93, 0xd0, 0x34, - 0xd7, 0x5f, 0x91, 0x60, 0xbc, 0x75, 0x49, 0xd9, 0x52, 0x86, 0xf7, 0x43, 0x5f, 0x0d, 0x7b, 0xdb, - 0x96, 0x28, 0xab, 0xee, 0x6b, 0x91, 0xac, 0xc9, 0xe3, 0xc6, 0xc9, 0xe6, 0x54, 0xe1, 0x6c, 0x1f, - 0x6f, 0x57, 0x17, 0x32, 0x69, 0x9a, 0x24, 0xfd, 0x64, 0x0c, 0xf6, 0xb7, 0x64, 0xde, 0x52, 0xd0, - 0xc3, 0x00, 0xba, 0x69, 0xd7, 0x3d, 0x56, 0x3a, 0xb1, 0x48, 0x9c, 0xa6, 0x10, 0x1a, 0xbc, 0x48, - 0x94, 0xad, 0x7b, 0xfe, 0xf3, 0x38, 0x7d, 0x0e, 0x0c, 0x44, 0x11, 0x4e, 0x07, 0x82, 0x26, 0xa8, - 0xa0, 0x13, 0x6d, 0x46, 0xda, 0x64, 0x98, 0x8f, 0x40, 0x56, 0x33, 0x74, 0x6c, 0x7a, 0x65, 0xd7, - 0x73, 0xb0, 0x5a, 0xd3, 0xcd, 0x2a, 0x4d, 0x35, 0xa9, 0x42, 0x72, 0x4b, 0x35, 0x5c, 0xac, 0x0c, - 0xb3, 0xc7, 0xeb, 0xe2, 0x29, 0xa1, 0xa0, 0x06, 0xe4, 0x84, 0x28, 0xfa, 0x22, 0x14, 0xec, 0xb1, - 0x4f, 0x21, 0x7f, 0x26, 0x0d, 0x99, 0x50, 0x01, 0x8e, 0xee, 0x86, 0x81, 0x67, 0xd5, 0xab, 0x6a, - 0x59, 0x2c, 0xaa, 0x98, 0x26, 0x32, 0x04, 0xb6, 0xc6, 0x17, 0x56, 0x8f, 0xc0, 0x18, 0x45, 0xb1, - 0xea, 0x1e, 0x76, 0xca, 0x9a, 0xa1, 0xba, 0x2e, 0x55, 0x5a, 0x8a, 0xa2, 0x22, 0xf2, 0x6c, 0x95, - 0x3c, 0x9a, 0x13, 0x4f, 0xd0, 0x09, 0x18, 0xa5, 0x14, 0xb5, 0xba, 0xe1, 0xe9, 0xb6, 0x81, 0xcb, - 0x64, 0x99, 0xe7, 0xd2, 0x94, 0xe3, 0x4b, 0x36, 0x42, 0x30, 0x96, 0x39, 0x02, 0x91, 0xc8, 0x45, - 0xf3, 0x70, 0x98, 0x92, 0x55, 0xb1, 0x89, 0x1d, 0xd5, 0xc3, 0x65, 0xfc, 0x5c, 0x5d, 0x35, 0xdc, - 0xb2, 0x6a, 0x56, 0xca, 0xdb, 0xaa, 0xbb, 0x9d, 0x1b, 0x23, 0x0c, 0x8a, 0xb1, 0x9c, 0xa4, 0x1c, - 0x20, 0x88, 0x0b, 0x1c, 0xaf, 0x44, 0xd1, 0x66, 0xcd, 0xca, 0x79, 0xd5, 0xdd, 0x46, 0x05, 0x18, - 0xa7, 0x5c, 0x5c, 0xcf, 0xd1, 0xcd, 0x6a, 0x59, 0xdb, 0xc6, 0xda, 0x95, 0x72, 0xdd, 0xdb, 0x3a, - 0x9d, 0x3b, 0x18, 0xee, 0x9f, 0x4a, 0xb8, 0x4e, 0x71, 0xe6, 0x08, 0xca, 0x25, 0x6f, 0xeb, 0x34, - 0x5a, 0x87, 0x01, 0x32, 0x19, 0x35, 0xfd, 0x06, 0x2e, 0x6f, 0x59, 0x0e, 0xcd, 0xa1, 0x43, 0x2d, - 0x42, 0x53, 0x48, 0x83, 0xd3, 0xab, 0x9c, 0x60, 0xd9, 0xaa, 0xe0, 0x42, 0x72, 0x7d, 0xad, 0x54, - 0x9a, 0x57, 0x32, 0x82, 0xcb, 0x39, 0xcb, 0x21, 0x06, 0x55, 0xb5, 0x7c, 0x05, 0x67, 0x98, 0x41, - 0x55, 0x2d, 0xa1, 0xde, 0x13, 0x30, 0xaa, 0x69, 0x6c, 0xcc, 0xba, 0x56, 0xe6, 0x8b, 0x31, 0x37, - 0x97, 0x8d, 0x28, 0x4b, 0xd3, 0x16, 0x18, 0x02, 0xb7, 0x71, 0x17, 0x9d, 0x81, 0xfd, 0x81, 0xb2, - 0xc2, 0x84, 0x23, 0x4d, 0xa3, 0x6c, 0x24, 0x3d, 0x01, 0xa3, 0xf6, 0x4e, 0x33, 0x21, 0x8a, 0xf4, - 0x68, 0xef, 0x34, 0x92, 0x9d, 0x82, 0x31, 0x7b, 0xdb, 0x6e, 0xa6, 0x3b, 0x1a, 0xa6, 0x43, 0xf6, - 0xb6, 0xdd, 0x48, 0xf8, 0x1e, 0xba, 0x32, 0x77, 0xb0, 0xa6, 0x7a, 0xb8, 0x92, 0xbb, 0x2b, 0x8c, - 0x1e, 0x7a, 0x80, 0xa6, 0x21, 0xab, 0x69, 0x65, 0x6c, 0xaa, 0x9b, 0x06, 0x2e, 0xab, 0x0e, 0x36, - 0x55, 0x37, 0x37, 0x49, 0x91, 0x13, 0x9e, 0x53, 0xc7, 0xca, 0x90, 0xa6, 0x95, 0xe8, 0xc3, 0x59, - 0xfa, 0x0c, 0x1d, 0x85, 0x11, 0x6b, 0xf3, 0x59, 0x8d, 0x59, 0x64, 0xd9, 0x76, 0xf0, 0x96, 0x7e, - 0x3d, 0x77, 0x2f, 0x55, 0xef, 0x30, 0x79, 0x40, 0xed, 0x71, 0x8d, 0x82, 0xd1, 0x03, 0x90, 0xd5, - 0xdc, 0x6d, 0xd5, 0xb1, 0x69, 0x48, 0x76, 0x6d, 0x55, 0xc3, 0xb9, 0xf7, 0x30, 0x54, 0x06, 0x5f, - 0x11, 0x60, 0xe2, 0x11, 0xee, 0x35, 0x7d, 0xcb, 0x13, 0x1c, 0xef, 0x67, 0x1e, 0x41, 0x61, 0x9c, - 0xdb, 0x11, 0xc8, 0x12, 0x4d, 0x44, 0x3a, 0x3e, 0x42, 0xd1, 0x86, 0xec, 0x6d, 0x3b, 0xdc, 0xef, - 0x3d, 0x30, 0x48, 0x30, 0x83, 0x4e, 0x1f, 0x60, 0x85, 0x9b, 0xbd, 0x1d, 0xea, 0xf1, 0x38, 0x8c, - 0x13, 0xa4, 0x1a, 0xf6, 0xd4, 0x8a, 0xea, 0xa9, 0x21, 0xec, 0x87, 0x28, 0x36, 0x51, 0xfb, 0x32, - 0x7f, 0x18, 0x91, 0xd3, 0xa9, 0x6f, 0xee, 0xf8, 0x86, 0xf5, 0x30, 0x93, 0x93, 0xc0, 0x84, 0x69, - 0xdd, 0xb1, 0xe2, 0x5c, 0x2e, 0xc0, 0x40, 0xd8, 0xee, 0x51, 0x1a, 0x98, 0xe5, 0x67, 0x25, 0x52, - 0x04, 0xcd, 0xad, 0xce, 0x93, 0xf2, 0xe5, 0x99, 0x52, 0x36, 0x46, 0xca, 0xa8, 0xa5, 0xc5, 0x8d, - 0x52, 0x59, 0xb9, 0xb4, 0xb2, 0xb1, 0xb8, 0x5c, 0xca, 0xc6, 0x43, 0x85, 0xfd, 0x85, 0x44, 0xea, - 0xbe, 0xec, 0xfd, 0xf2, 0xab, 0x31, 0x18, 0x8a, 0xae, 0xd4, 0xd0, 0x7b, 0xe1, 0x2e, 0xb1, 0xad, - 0xe2, 0x62, 0xaf, 0x7c, 0x4d, 0x77, 0xa8, 0x43, 0xd6, 0x54, 0x96, 0x1c, 0x7d, 0xfb, 0x19, 0xe3, - 0x58, 0xeb, 0xd8, 0x7b, 0x52, 0x77, 0x88, 0xbb, 0xd5, 0x54, 0x0f, 0x2d, 0xc1, 0xa4, 0x69, 0x95, - 0x5d, 0x4f, 0x35, 0x2b, 0xaa, 0x53, 0x29, 0x07, 0x1b, 0x5a, 0x65, 0x55, 0xd3, 0xb0, 0xeb, 0x5a, - 0x2c, 0x11, 0xfa, 0x5c, 0x0e, 0x99, 0xd6, 0x3a, 0x47, 0x0e, 0x32, 0xc4, 0x2c, 0x47, 0x6d, 0x30, - 0xdf, 0x78, 0x3b, 0xf3, 0x3d, 0x08, 0xe9, 0x9a, 0x6a, 0x97, 0xb1, 0xe9, 0x39, 0x3b, 0xb4, 0x3e, - 0x4f, 0x29, 0xa9, 0x9a, 0x6a, 0x97, 0x48, 0xfb, 0x6d, 0x59, 0x26, 0x5d, 0x48, 0xa4, 0x52, 0xd9, - 0xf4, 0x85, 0x44, 0x2a, 0x9d, 0x05, 0xf9, 0xb5, 0x38, 0x0c, 0x84, 0xeb, 0x75, 0xb2, 0xfc, 0xd1, - 0x68, 0xc6, 0x92, 0x68, 0x4c, 0xbb, 0x67, 0xd7, 0xea, 0x7e, 0x7a, 0x8e, 0xa4, 0xb2, 0x42, 0x1f, - 0x2b, 0x8e, 0x15, 0x46, 0x49, 0xca, 0x08, 0x62, 0x6c, 0x98, 0x15, 0x23, 0x29, 0x85, 0xb7, 0xd0, - 0x02, 0xf4, 0x3d, 0xeb, 0x52, 0xde, 0x7d, 0x94, 0xf7, 0xbd, 0xbb, 0xf3, 0xbe, 0xb0, 0x4e, 0x99, - 0xa7, 0x2f, 0xac, 0x97, 0x57, 0x56, 0x95, 0xe5, 0xd9, 0x25, 0x85, 0x93, 0xa3, 0x03, 0x90, 0x30, - 0xd4, 0x1b, 0x3b, 0xd1, 0xa4, 0x47, 0x41, 0xdd, 0x4e, 0xc2, 0x01, 0x48, 0x5c, 0xc3, 0xea, 0x95, - 0x68, 0xaa, 0xa1, 0xa0, 0x3b, 0xe8, 0x0c, 0x33, 0x90, 0xa4, 0xfa, 0x42, 0x00, 0x5c, 0x63, 0xd9, - 0x7d, 0x28, 0x05, 0x89, 0xb9, 0x55, 0x85, 0x38, 0x44, 0x16, 0x06, 0x18, 0xb4, 0xbc, 0xb6, 0x58, - 0x9a, 0x2b, 0x65, 0x63, 0xf2, 0x09, 0xe8, 0x63, 0x4a, 0x20, 0xce, 0xe2, 0xab, 0x21, 0xbb, 0x8f, - 0x37, 0x39, 0x0f, 0x49, 0x3c, 0xbd, 0xb4, 0x5c, 0x2c, 0x29, 0xd9, 0x58, 0x74, 0xaa, 0x13, 0xd9, - 0xa4, 0xec, 0xc2, 0x40, 0xb8, 0x0e, 0x7f, 0x7b, 0x16, 0xe3, 0x5f, 0x97, 0x20, 0x13, 0xaa, 0xab, - 0x49, 0x41, 0xa4, 0x1a, 0x86, 0x75, 0xad, 0xac, 0x1a, 0xba, 0xea, 0x72, 0xd3, 0x00, 0x0a, 0x9a, - 0x25, 0x90, 0x6e, 0xa7, 0xee, 0x6d, 0x72, 0x91, 0x64, 0xb6, 0x4f, 0xfe, 0x82, 0x04, 0xd9, 0xc6, - 0xc2, 0xb6, 0x41, 0x4c, 0xe9, 0x87, 0x29, 0xa6, 0xfc, 0x79, 0x09, 0x86, 0xa2, 0xd5, 0x6c, 0x83, - 0x78, 0x77, 0xff, 0x50, 0xc5, 0xfb, 0xc3, 0x18, 0x0c, 0x46, 0x6a, 0xd8, 0x6e, 0xa5, 0x7b, 0x0e, - 0x46, 0xf4, 0x0a, 0xae, 0xd9, 0x96, 0x87, 0x4d, 0x6d, 0xa7, 0x6c, 0xe0, 0xab, 0xd8, 0xc8, 0xc9, - 0x34, 0x68, 0xcc, 0xec, 0x5e, 0x25, 0x4f, 0x2f, 0x06, 0x74, 0x4b, 0x84, 0xac, 0x30, 0xba, 0x38, - 0x5f, 0x5a, 0x5e, 0x5b, 0xdd, 0x28, 0xad, 0xcc, 0x3d, 0x5d, 0xbe, 0xb4, 0x72, 0x71, 0x65, 0xf5, - 0xc9, 0x15, 0x25, 0xab, 0x37, 0xa0, 0xdd, 0x41, 0xb7, 0x5f, 0x83, 0x6c, 0xa3, 0x50, 0xe8, 0x2e, - 0x68, 0x25, 0x56, 0x76, 0x1f, 0x1a, 0x85, 0xe1, 0x95, 0xd5, 0xf2, 0xfa, 0xe2, 0x7c, 0xa9, 0x5c, - 0x3a, 0x77, 0xae, 0x34, 0xb7, 0xb1, 0xce, 0xf6, 0x3d, 0x7c, 0xec, 0x8d, 0x88, 0x83, 0xcb, 0x2f, - 0xc6, 0x61, 0xb4, 0x85, 0x24, 0x68, 0x96, 0xaf, 0x58, 0xd8, 0x22, 0xea, 0xe1, 0x6e, 0xa4, 0x9f, - 0x26, 0x35, 0xc3, 0x9a, 0xea, 0x78, 0x7c, 0x81, 0xf3, 0x00, 0x10, 0x2d, 0x99, 0x9e, 0xbe, 0xa5, - 0x63, 0x87, 0xef, 0x27, 0xb1, 0x65, 0xcc, 0x70, 0x00, 0x67, 0x5b, 0x4a, 0x0f, 0x01, 0xb2, 0x2d, - 0x57, 0xf7, 0xf4, 0xab, 0xb8, 0xac, 0x9b, 0x62, 0xf3, 0x89, 0x2c, 0x6b, 0x12, 0x4a, 0x56, 0x3c, - 0x59, 0x34, 0x3d, 0x1f, 0xdb, 0xc4, 0x55, 0xb5, 0x01, 0x9b, 0x04, 0xf3, 0xb8, 0x92, 0x15, 0x4f, - 0x7c, 0xec, 0xbb, 0x61, 0xa0, 0x62, 0xd5, 0x49, 0xad, 0xc7, 0xf0, 0x48, 0xee, 0x90, 0x94, 0x0c, - 0x83, 0xf9, 0x28, 0xbc, 0x8a, 0x0f, 0x76, 0xbd, 0x06, 0x94, 0x0c, 0x83, 0x31, 0x94, 0xfb, 0x61, - 0x58, 0xad, 0x56, 0x1d, 0xc2, 0x5c, 0x30, 0x62, 0xeb, 0x92, 0x21, 0x1f, 0x4c, 0x11, 0xf3, 0x17, - 0x20, 0x25, 0xf4, 0x40, 0x52, 0x35, 0xd1, 0x44, 0xd9, 0x66, 0x8b, 0xed, 0xd8, 0x91, 0xb4, 0x92, - 0x32, 0xc5, 0xc3, 0xbb, 0x61, 0x40, 0x77, 0xcb, 0xc1, 0x26, 0x7e, 0x6c, 0x2a, 0x76, 0x24, 0xa5, - 0x64, 0x74, 0xd7, 0xdf, 0x00, 0x95, 0xbf, 0x12, 0x83, 0xa1, 0xe8, 0x21, 0x04, 0x9a, 0x87, 0x94, - 0x61, 0x69, 0x2a, 0x35, 0x2d, 0x76, 0x02, 0x76, 0xa4, 0xc3, 0xb9, 0xc5, 0xf4, 0x12, 0xc7, 0x57, - 0x7c, 0xca, 0xfc, 0xbf, 0x92, 0x20, 0x25, 0xc0, 0x68, 0x1c, 0x12, 0xb6, 0xea, 0x6d, 0x53, 0x76, - 0xc9, 0x62, 0x2c, 0x2b, 0x29, 0xb4, 0x4d, 0xe0, 0xae, 0xad, 0x9a, 0xd4, 0x04, 0x38, 0x9c, 0xb4, - 0xc9, 0xbc, 0x1a, 0x58, 0xad, 0xd0, 0x45, 0x8f, 0x55, 0xab, 0x61, 0xd3, 0x73, 0xc5, 0xbc, 0x72, - 0xf8, 0x1c, 0x07, 0xa3, 0x07, 0x61, 0xc4, 0x73, 0x54, 0xdd, 0x88, 0xe0, 0x26, 0x28, 0x6e, 0x56, - 0x3c, 0xf0, 0x91, 0x0b, 0x70, 0x40, 0xf0, 0xad, 0x60, 0x4f, 0xd5, 0xb6, 0x71, 0x25, 0x20, 0xea, - 0xa3, 0x9b, 0x1b, 0x77, 0x71, 0x84, 0x79, 0xfe, 0x5c, 0xd0, 0xca, 0xaf, 0x4a, 0x30, 0x22, 0x96, - 0x69, 0x15, 0x5f, 0x59, 0xcb, 0x00, 0xaa, 0x69, 0x5a, 0x5e, 0x58, 0x5d, 0xcd, 0xa6, 0xdc, 0x44, - 0x37, 0x3d, 0xeb, 0x13, 0x29, 0x21, 0x06, 0xf9, 0x1a, 0x40, 0xf0, 0xa4, 0xad, 0xda, 0x26, 0x21, - 0xc3, 0x4f, 0x98, 0xe8, 0x31, 0x25, 0x5b, 0xd8, 0x03, 0x03, 0x91, 0xf5, 0x1c, 0x1a, 0x83, 0xe4, - 0x26, 0xae, 0xea, 0x26, 0xdf, 0x37, 0x66, 0x0d, 0xb1, 0xfd, 0x92, 0xf0, 0xb7, 0x5f, 0x8a, 0x9f, - 0x92, 0x60, 0x54, 0xb3, 0x6a, 0x8d, 0xf2, 0x16, 0xb3, 0x0d, 0xbb, 0x0b, 0xee, 0x79, 0xe9, 0x99, - 0xf7, 0x57, 0x75, 0x6f, 0xbb, 0xbe, 0x39, 0xad, 0x59, 0xb5, 0x99, 0xaa, 0x65, 0xa8, 0x66, 0x35, - 0x38, 0x67, 0xa5, 0x3f, 0xb4, 0x87, 0xab, 0xd8, 0x7c, 0xb8, 0x6a, 0x85, 0x4e, 0x5d, 0xcf, 0x06, - 0x3f, 0xff, 0xb7, 0x24, 0x7d, 0x29, 0x16, 0x5f, 0x58, 0x2b, 0x7e, 0x35, 0x96, 0x5f, 0x60, 0xdd, - 0xad, 0x09, 0xf5, 0x28, 0x78, 0xcb, 0xc0, 0x1a, 0x19, 0x32, 0x7c, 0xff, 0x41, 0x18, 0xab, 0x5a, - 0x55, 0x8b, 0x72, 0x9c, 0x21, 0xbf, 0xf8, 0xc9, 0x6d, 0xda, 0x87, 0xe6, 0x3b, 0x1e, 0xf3, 0x16, - 0x56, 0x60, 0x94, 0x23, 0x97, 0xe9, 0xd1, 0x11, 0x5b, 0xd8, 0xa0, 0x5d, 0x77, 0xd5, 0x72, 0xbf, - 0xfc, 0x3d, 0x9a, 0xd0, 0x95, 0x11, 0x4e, 0x4a, 0x9e, 0xb1, 0xb5, 0x4f, 0x41, 0x81, 0xfd, 0x11, - 0x7e, 0xcc, 0x6d, 0xb1, 0xd3, 0x81, 0xe3, 0x6f, 0x72, 0x8e, 0xa3, 0x21, 0x8e, 0xeb, 0x9c, 0xb4, - 0x30, 0x07, 0x83, 0xbd, 0xf0, 0xfa, 0x2d, 0xce, 0x6b, 0x00, 0x87, 0x99, 0x2c, 0xc0, 0x30, 0x65, - 0xa2, 0xd5, 0x5d, 0xcf, 0xaa, 0xd1, 0x98, 0xb8, 0x3b, 0x9b, 0xdf, 0xfe, 0x1e, 0xf3, 0xa3, 0x21, - 0x42, 0x36, 0xe7, 0x53, 0x15, 0x0a, 0x40, 0x4f, 0xcb, 0x2a, 0x58, 0x33, 0x3a, 0x70, 0xf8, 0x16, - 0x17, 0xc4, 0xc7, 0x2f, 0x5c, 0x86, 0x31, 0xf2, 0x9b, 0x86, 0xac, 0xb0, 0x24, 0x9d, 0xb7, 0xe0, - 0x72, 0xaf, 0x7e, 0x94, 0xb9, 0xea, 0xa8, 0xcf, 0x20, 0x24, 0x53, 0x68, 0x16, 0xab, 0xd8, 0xf3, - 0xb0, 0xe3, 0x96, 0x55, 0xa3, 0x95, 0x78, 0xa1, 0x3d, 0x8c, 0xdc, 0xe7, 0x7e, 0x10, 0x9d, 0xc5, - 0x05, 0x46, 0x39, 0x6b, 0x18, 0x85, 0x4b, 0x70, 0x57, 0x0b, 0xab, 0xe8, 0x82, 0xe7, 0x8b, 0x9c, - 0xe7, 0x58, 0x93, 0x65, 0x10, 0xb6, 0x6b, 0x20, 0xe0, 0xfe, 0x5c, 0x76, 0xc1, 0xf3, 0xaf, 0x72, - 0x9e, 0x88, 0xd3, 0x8a, 0x29, 0x25, 0x1c, 0x2f, 0xc0, 0xc8, 0x55, 0xec, 0x6c, 0x5a, 0x2e, 0xdf, - 0x37, 0xea, 0x82, 0xdd, 0xe7, 0x39, 0xbb, 0x61, 0x4e, 0x48, 0x37, 0x92, 0x08, 0xaf, 0x33, 0x90, - 0xda, 0x52, 0x35, 0xdc, 0x05, 0x8b, 0x97, 0x38, 0x8b, 0x7e, 0x82, 0x4f, 0x48, 0x67, 0x61, 0xa0, - 0x6a, 0xf1, 0xac, 0xd5, 0x99, 0xfc, 0x0b, 0x9c, 0x3c, 0x23, 0x68, 0x38, 0x0b, 0xdb, 0xb2, 0xeb, - 0x06, 0x49, 0x69, 0x9d, 0x59, 0xfc, 0x35, 0xc1, 0x42, 0xd0, 0x70, 0x16, 0x3d, 0xa8, 0xf5, 0x65, - 0xc1, 0xc2, 0x0d, 0xe9, 0xf3, 0x71, 0xc8, 0x58, 0xa6, 0xb1, 0x63, 0x99, 0xdd, 0x08, 0xf1, 0x45, - 0xce, 0x01, 0x38, 0x09, 0x61, 0x70, 0x16, 0xd2, 0xdd, 0x4e, 0xc4, 0xdf, 0xf8, 0x81, 0x70, 0x0f, - 0x31, 0x03, 0x0b, 0x30, 0x2c, 0x02, 0x94, 0x6e, 0x99, 0x5d, 0xb0, 0xf8, 0x9b, 0x9c, 0xc5, 0x50, - 0x88, 0x8c, 0x0f, 0xc3, 0xc3, 0xae, 0x57, 0xc5, 0xdd, 0x30, 0xf9, 0x8a, 0x18, 0x06, 0x27, 0xe1, - 0xaa, 0xdc, 0xc4, 0xa6, 0xb6, 0xdd, 0x1d, 0x87, 0x9f, 0x17, 0xaa, 0x14, 0x34, 0x84, 0xc5, 0x1c, - 0x0c, 0xd6, 0x54, 0xc7, 0xdd, 0x56, 0x8d, 0xae, 0xa6, 0xe3, 0x6f, 0x71, 0x1e, 0x03, 0x3e, 0x11, - 0xd7, 0x48, 0xdd, 0xec, 0x85, 0xcd, 0x57, 0x85, 0x46, 0x42, 0x64, 0xdc, 0xf5, 0x5c, 0x8f, 0x6e, - 0xb2, 0xf5, 0xc2, 0xed, 0x17, 0x84, 0xeb, 0x31, 0xda, 0xe5, 0x30, 0xc7, 0xb3, 0x90, 0x76, 0xf5, - 0x1b, 0x5d, 0xb1, 0xf9, 0xdb, 0x62, 0xa6, 0x29, 0x01, 0x21, 0x7e, 0x1a, 0x0e, 0xb4, 0x4c, 0x13, - 0x5d, 0x30, 0xfb, 0x3b, 0x9c, 0xd9, 0x78, 0x8b, 0x54, 0xc1, 0x43, 0x42, 0xaf, 0x2c, 0xff, 0xae, - 0x08, 0x09, 0xb8, 0x81, 0xd7, 0x1a, 0x59, 0x47, 0xb8, 0xea, 0x56, 0x6f, 0x5a, 0xfb, 0x45, 0xa1, - 0x35, 0x46, 0x1b, 0xd1, 0xda, 0x06, 0x8c, 0x73, 0x8e, 0xbd, 0xcd, 0xeb, 0x2f, 0x89, 0xc0, 0xca, - 0xa8, 0x2f, 0x45, 0x67, 0xf7, 0x83, 0x90, 0xf7, 0xd5, 0x29, 0x0a, 0x56, 0xb7, 0x5c, 0x53, 0xed, - 0x2e, 0x38, 0xff, 0x32, 0xe7, 0x2c, 0x22, 0xbe, 0x5f, 0xf1, 0xba, 0xcb, 0xaa, 0x4d, 0x98, 0x3f, - 0x05, 0x39, 0xc1, 0xbc, 0x6e, 0x3a, 0x58, 0xb3, 0xaa, 0xa6, 0x7e, 0x03, 0x57, 0xba, 0x60, 0xfd, - 0x2b, 0x0d, 0x53, 0x75, 0x29, 0x44, 0x4e, 0x38, 0x2f, 0x42, 0xd6, 0xaf, 0x55, 0xca, 0x7a, 0xcd, - 0xb6, 0x1c, 0xaf, 0x03, 0xc7, 0xaf, 0x89, 0x99, 0xf2, 0xe9, 0x16, 0x29, 0x59, 0xa1, 0x04, 0xec, - 0xe4, 0xb9, 0x5b, 0x93, 0xfc, 0x55, 0xce, 0x68, 0x30, 0xa0, 0xe2, 0x81, 0x43, 0xb3, 0x6a, 0xb6, - 0xea, 0x74, 0x13, 0xff, 0xfe, 0x9e, 0x08, 0x1c, 0x9c, 0x84, 0x07, 0x0e, 0x6f, 0xc7, 0xc6, 0x24, - 0xdb, 0x77, 0xc1, 0xe1, 0xd7, 0x44, 0xe0, 0x10, 0x34, 0x9c, 0x85, 0x28, 0x18, 0xba, 0x60, 0xf1, - 0xf7, 0x05, 0x0b, 0x41, 0x43, 0x58, 0x3c, 0x11, 0x24, 0x5a, 0x07, 0x57, 0x75, 0xd7, 0x73, 0x58, - 0x99, 0xbc, 0x3b, 0xab, 0x7f, 0xf0, 0x83, 0x68, 0x11, 0xa6, 0x84, 0x48, 0x49, 0x24, 0xe2, 0xdb, - 0xae, 0x74, 0x15, 0xd5, 0x59, 0xb0, 0x5f, 0x17, 0x91, 0x28, 0x44, 0x46, 0x64, 0x0b, 0x55, 0x88, - 0x44, 0xed, 0x1a, 0x59, 0x3b, 0x74, 0xc1, 0xee, 0x1f, 0x36, 0x08, 0xb7, 0x2e, 0x68, 0x09, 0xcf, - 0x50, 0xfd, 0x53, 0x37, 0xaf, 0xe0, 0x9d, 0xae, 0xac, 0xf3, 0x1f, 0x35, 0xd4, 0x3f, 0x97, 0x18, - 0x25, 0x8b, 0x21, 0xc3, 0x0d, 0xf5, 0x14, 0xea, 0x74, 0xcf, 0x28, 0xf7, 0x13, 0x6f, 0xf0, 0xf1, - 0x46, 0xcb, 0xa9, 0xc2, 0x12, 0x31, 0xf2, 0x68, 0xd1, 0xd3, 0x99, 0xd9, 0x47, 0xdf, 0xf0, 0xed, - 0x3c, 0x52, 0xf3, 0x14, 0xce, 0xc1, 0x60, 0xa4, 0xe0, 0xe9, 0xcc, 0xea, 0x63, 0x9c, 0xd5, 0x40, - 0xb8, 0xde, 0x29, 0x9c, 0x80, 0x04, 0x29, 0x5e, 0x3a, 0x93, 0x7f, 0x9c, 0x93, 0x53, 0xf4, 0xc2, - 0xfb, 0x20, 0x25, 0x8a, 0x96, 0xce, 0xa4, 0x9f, 0xe0, 0xa4, 0x3e, 0x09, 0x21, 0x17, 0x05, 0x4b, - 0x67, 0xf2, 0xff, 0x5f, 0x90, 0x0b, 0x12, 0x42, 0xde, 0xbd, 0x0a, 0xbf, 0xfe, 0x17, 0x12, 0x3c, - 0xe9, 0x08, 0xdd, 0x9d, 0x85, 0x7e, 0x5e, 0xa9, 0x74, 0xa6, 0xfe, 0x24, 0xef, 0x5c, 0x50, 0x14, - 0x4e, 0x41, 0xb2, 0x4b, 0x85, 0xff, 0x34, 0x27, 0x65, 0xf8, 0x85, 0x39, 0xc8, 0x84, 0xaa, 0x93, - 0xce, 0xe4, 0x7f, 0x89, 0x93, 0x87, 0xa9, 0x88, 0xe8, 0xbc, 0x3a, 0xe9, 0xcc, 0xe0, 0x53, 0x42, - 0x74, 0x4e, 0x41, 0xd4, 0x26, 0x0a, 0x93, 0xce, 0xd4, 0x9f, 0x16, 0x5a, 0x17, 0x24, 0x85, 0xc7, - 0x21, 0xed, 0x27, 0x9b, 0xce, 0xf4, 0x9f, 0xe1, 0xf4, 0x01, 0x0d, 0xd1, 0x40, 0x28, 0xd9, 0x75, - 0x66, 0xf1, 0x97, 0x85, 0x06, 0x42, 0x54, 0xc4, 0x8d, 0x1a, 0x0b, 0x98, 0xce, 0x9c, 0x7e, 0x46, - 0xb8, 0x51, 0x43, 0xfd, 0x42, 0x66, 0x93, 0xc6, 0xfc, 0xce, 0x2c, 0x7e, 0x56, 0xcc, 0x26, 0xc5, - 0x27, 0x62, 0x34, 0x56, 0x04, 0x9d, 0x79, 0xfc, 0x15, 0x21, 0x46, 0x43, 0x41, 0x50, 0x58, 0x03, - 0xd4, 0x5c, 0x0d, 0x74, 0xe6, 0xf7, 0x59, 0xce, 0x6f, 0xa4, 0xa9, 0x18, 0x28, 0x3c, 0x09, 0xe3, - 0xad, 0x2b, 0x81, 0xce, 0x5c, 0x3f, 0xf7, 0x46, 0xc3, 0xda, 0x2d, 0x5c, 0x08, 0x14, 0x36, 0x82, - 0x94, 0x12, 0xae, 0x02, 0x3a, 0xb3, 0x7d, 0xf1, 0x8d, 0x68, 0xe0, 0x0e, 0x17, 0x01, 0x85, 0x59, - 0x80, 0x20, 0x01, 0x77, 0xe6, 0xf5, 0x79, 0xce, 0x2b, 0x44, 0x44, 0x5c, 0x83, 0xe7, 0xdf, 0xce, - 0xf4, 0x2f, 0x09, 0xd7, 0xe0, 0x14, 0xc4, 0x35, 0x44, 0xea, 0xed, 0x4c, 0xfd, 0x05, 0xe1, 0x1a, - 0x82, 0x84, 0x58, 0x76, 0x28, 0xbb, 0x75, 0xe6, 0xf0, 0x45, 0x61, 0xd9, 0x21, 0xaa, 0xc2, 0x0a, - 0x8c, 0x34, 0x25, 0xc4, 0xce, 0xac, 0xbe, 0xc4, 0x59, 0x65, 0x1b, 0xf3, 0x61, 0x38, 0x79, 0xf1, - 0x64, 0xd8, 0x99, 0xdb, 0x97, 0x1b, 0x92, 0x17, 0xcf, 0x85, 0x85, 0xb3, 0x90, 0x32, 0xeb, 0x86, - 0x41, 0x9c, 0x07, 0xed, 0x7e, 0x37, 0x30, 0xf7, 0x47, 0x6f, 0x72, 0xed, 0x08, 0x82, 0xc2, 0x09, - 0x48, 0xe2, 0xda, 0x26, 0xae, 0x74, 0xa2, 0xfc, 0xfe, 0x9b, 0x22, 0x60, 0x12, 0xec, 0xc2, 0xe3, - 0x00, 0x6c, 0x6b, 0x84, 0x1e, 0x0f, 0x76, 0xa0, 0xfd, 0x2f, 0x6f, 0xf2, 0xcb, 0x38, 0x01, 0x49, - 0xc0, 0x80, 0x5d, 0xed, 0xd9, 0x9d, 0xc1, 0x0f, 0xa2, 0x0c, 0xe8, 0x8c, 0x9c, 0x81, 0xfe, 0x67, - 0x5d, 0xcb, 0xf4, 0xd4, 0x6a, 0x27, 0xea, 0xff, 0xca, 0xa9, 0x05, 0x3e, 0x51, 0x58, 0xcd, 0x72, - 0xb0, 0xa7, 0x56, 0xdd, 0x4e, 0xb4, 0xff, 0x8d, 0xd3, 0xfa, 0x04, 0x84, 0x58, 0x53, 0x5d, 0xaf, - 0x9b, 0x71, 0xff, 0xb1, 0x20, 0x16, 0x04, 0x44, 0x68, 0xf2, 0xfb, 0x0a, 0xde, 0xe9, 0x44, 0xfb, - 0x27, 0x42, 0x68, 0x8e, 0x5f, 0x78, 0x1f, 0xa4, 0xc9, 0x4f, 0x76, 0xc3, 0xae, 0x03, 0xf1, 0x7f, - 0xe7, 0xc4, 0x01, 0x05, 0xe9, 0xd9, 0xf5, 0x2a, 0x9e, 0xde, 0x59, 0xd9, 0xb7, 0xf8, 0x4c, 0x0b, - 0xfc, 0xc2, 0x2c, 0x64, 0x5c, 0xaf, 0x52, 0xa9, 0xf3, 0xfa, 0xb4, 0x03, 0xf9, 0xff, 0x78, 0xd3, - 0xdf, 0xb2, 0xf0, 0x69, 0xc8, 0x6c, 0x5f, 0xbb, 0xe2, 0xd9, 0x16, 0x3d, 0x02, 0xe9, 0xc4, 0xe1, - 0x0d, 0xce, 0x21, 0x44, 0x52, 0x98, 0x83, 0x01, 0x32, 0x16, 0x07, 0xdb, 0x98, 0x9e, 0x57, 0x75, - 0x60, 0xf1, 0x3f, 0xb9, 0x02, 0x22, 0x44, 0xc5, 0x1f, 0xff, 0xd6, 0x6b, 0x13, 0xd2, 0x2b, 0xaf, - 0x4d, 0x48, 0x7f, 0xf8, 0xda, 0x84, 0xf4, 0xe9, 0xef, 0x4e, 0xec, 0x7b, 0xe5, 0xbb, 0x13, 0xfb, - 0x7e, 0xef, 0xbb, 0x13, 0xfb, 0x5a, 0x6f, 0x1b, 0xc3, 0x82, 0xb5, 0x60, 0xb1, 0x0d, 0xe3, 0x67, - 0xe4, 0xc8, 0x76, 0x71, 0xd5, 0x0a, 0x76, 0x6b, 0xfd, 0x45, 0x0e, 0x7c, 0x3a, 0x06, 0x93, 0x8d, - 0x7b, 0xb9, 0x44, 0x81, 0xae, 0xa7, 0xd6, 0xec, 0x76, 0x6f, 0xec, 0x9c, 0x85, 0xf4, 0x86, 0xc0, - 0x41, 0x39, 0xe8, 0x77, 0xb1, 0x66, 0x99, 0x15, 0x97, 0x1e, 0x73, 0xc6, 0x15, 0xd1, 0x44, 0x63, - 0x90, 0x34, 0x55, 0xd3, 0x72, 0xf9, 0x3d, 0x41, 0xd6, 0x28, 0xfe, 0x9c, 0xd4, 0xdb, 0x88, 0x86, - 0xfc, 0xae, 0xe8, 0xb0, 0xd6, 0xa4, 0x67, 0x1e, 0xdc, 0x6d, 0x1b, 0x9c, 0x98, 0xac, 0x1b, 0x0c, - 0x21, 0xb4, 0xe7, 0x3d, 0xd1, 0xb8, 0xe7, 0xfd, 0x24, 0x36, 0x8c, 0x8b, 0xa6, 0x75, 0xcd, 0xdc, - 0x20, 0x34, 0x9b, 0x7d, 0xec, 0x86, 0x31, 0xfc, 0xae, 0x04, 0x53, 0xf4, 0xa6, 0xb4, 0x53, 0xd3, - 0x4d, 0x6f, 0xc6, 0xd0, 0x37, 0xdd, 0x99, 0x4d, 0xdd, 0x73, 0x67, 0x28, 0x6b, 0xae, 0x93, 0xb1, - 0x00, 0x63, 0x9a, 0x60, 0x4c, 0x13, 0x0c, 0xf9, 0x38, 0xa4, 0x8a, 0xba, 0x37, 0xeb, 0x38, 0xea, - 0x0e, 0x42, 0x90, 0x20, 0x30, 0xae, 0x14, 0xfa, 0x9b, 0x68, 0x04, 0x1b, 0xb8, 0xe6, 0xd2, 0xd3, - 0x96, 0x84, 0xc2, 0x1a, 0xc5, 0x4b, 0xed, 0x14, 0xf2, 0xcc, 0xd9, 0xd0, 0x48, 0x43, 0x22, 0x85, - 0x7e, 0xb2, 0x4d, 0xfa, 0x56, 0xe2, 0xfa, 0xe3, 0xf9, 0x6a, 0x02, 0x0e, 0x87, 0x10, 0x34, 0x67, - 0xc7, 0xf6, 0xa8, 0x2d, 0x58, 0x5b, 0x7c, 0x30, 0x23, 0xa1, 0xc1, 0xb0, 0xc7, 0xf9, 0x96, 0x27, - 0x00, 0xf2, 0x16, 0x24, 0xd7, 0x08, 0x1d, 0x19, 0x88, 0x67, 0x79, 0xaa, 0xc1, 0x47, 0xc7, 0x1a, - 0x04, 0xca, 0x6e, 0x8b, 0xc7, 0x18, 0x54, 0x17, 0x17, 0xc5, 0x0d, 0xac, 0x6e, 0xb1, 0x4b, 0x77, - 0x71, 0x7a, 0xe8, 0x96, 0x22, 0x00, 0x7a, 0xbf, 0x6e, 0x0c, 0x92, 0x6a, 0x9d, 0x9d, 0x17, 0xc5, - 0x8f, 0x0c, 0x28, 0xac, 0x21, 0x5f, 0x84, 0x7e, 0xbe, 0x47, 0x8d, 0xb2, 0x10, 0xbf, 0x82, 0x77, - 0x68, 0x3f, 0x03, 0x0a, 0xf9, 0x89, 0xa6, 0x21, 0x49, 0x85, 0xe7, 0xb7, 0x89, 0x73, 0xd3, 0x4d, - 0xd2, 0x4f, 0x53, 0x21, 0x15, 0x86, 0x26, 0x5f, 0x80, 0xd4, 0xbc, 0x55, 0xd3, 0x4d, 0x2b, 0xca, - 0x2d, 0xcd, 0xb8, 0x51, 0x99, 0xed, 0xba, 0xc7, 0x8f, 0x70, 0x58, 0x03, 0x8d, 0x43, 0x1f, 0xbb, - 0x84, 0xc9, 0xcf, 0xbc, 0x78, 0x4b, 0x9e, 0x83, 0x7e, 0xca, 0x7b, 0xd5, 0x26, 0xf3, 0xeb, 0xdf, - 0x80, 0x49, 0xf3, 0x2b, 0xf9, 0x9c, 0x7d, 0x2c, 0x10, 0x16, 0x41, 0xa2, 0xa2, 0x7a, 0x2a, 0x1f, - 0x37, 0xfd, 0x2d, 0xbf, 0x1f, 0x52, 0x9c, 0x89, 0x8b, 0x8e, 0x41, 0xdc, 0xb2, 0x5d, 0x7e, 0x6a, - 0x95, 0x6f, 0x37, 0x94, 0x55, 0xbb, 0x98, 0xf8, 0xd6, 0xcd, 0xc9, 0x7d, 0x0a, 0x41, 0x2e, 0x2a, - 0x6d, 0xed, 0xe5, 0x74, 0xef, 0xf6, 0xc2, 0xba, 0xf1, 0x8d, 0xe5, 0x8b, 0x31, 0x98, 0x08, 0x3d, - 0xbd, 0x8a, 0x1d, 0x52, 0xa8, 0x45, 0x4c, 0x1f, 0x85, 0x84, 0xe4, 0xcf, 0xdb, 0x98, 0xcb, 0xfb, - 0x20, 0x3e, 0x6b, 0xdb, 0x28, 0x0f, 0x29, 0x76, 0x3a, 0x65, 0x31, 0x7b, 0x49, 0x28, 0x7e, 0x9b, - 0x3c, 0x73, 0xad, 0x2d, 0xef, 0x9a, 0xea, 0xf8, 0xef, 0x29, 0x88, 0xb6, 0x7c, 0x06, 0xd2, 0x73, - 0x96, 0xe9, 0x62, 0xd3, 0xad, 0x53, 0xd7, 0xd9, 0x34, 0x2c, 0xed, 0x0a, 0xe7, 0xc0, 0x1a, 0x44, - 0xe1, 0xaa, 0x6d, 0x53, 0xca, 0x84, 0x42, 0x7e, 0x16, 0x12, 0xaf, 0xbf, 0x3c, 0x29, 0x15, 0xd7, - 0xdb, 0xaa, 0xe8, 0x4c, 0xef, 0x2a, 0xe2, 0x83, 0xf4, 0x75, 0xf4, 0x07, 0x12, 0x1c, 0x6a, 0x76, - 0xa8, 0x2b, 0x78, 0xc7, 0xed, 0xd5, 0x9f, 0x4e, 0x43, 0x7a, 0x8d, 0xbe, 0x2c, 0x78, 0x11, 0xef, - 0xa0, 0x3c, 0xf4, 0xe3, 0xca, 0xb1, 0x13, 0x27, 0x1e, 0x3d, 0xc3, 0xac, 0xfd, 0xfc, 0x3e, 0x45, - 0x00, 0x0a, 0x29, 0x32, 0xaa, 0xd7, 0xbf, 0x38, 0x29, 0x15, 0x93, 0x10, 0x77, 0xeb, 0xb5, 0x3b, - 0x6a, 0x03, 0x2f, 0x26, 0x23, 0x01, 0x90, 0x45, 0xd4, 0xab, 0xaa, 0xa1, 0x57, 0xd4, 0xe0, 0x35, - 0xce, 0x6c, 0x68, 0x8c, 0x14, 0xa3, 0xf5, 0x10, 0xf3, 0xbb, 0x6a, 0x4a, 0xfe, 0x15, 0x09, 0x06, - 0x2e, 0x0b, 0xce, 0xeb, 0xd8, 0x43, 0x67, 0x01, 0xfc, 0x9e, 0x84, 0x5b, 0x1c, 0x9c, 0x6e, 0xec, - 0x6b, 0xda, 0xa7, 0x51, 0x42, 0xe8, 0xe8, 0x14, 0x35, 0x34, 0xdb, 0x72, 0xf9, 0xdd, 0xf4, 0x0e, - 0xa4, 0x3e, 0x32, 0x7a, 0x08, 0x10, 0x8d, 0x60, 0xe5, 0xab, 0x96, 0xa7, 0x9b, 0xd5, 0xb2, 0x6d, - 0x5d, 0xe3, 0x6f, 0xfc, 0xc4, 0x95, 0x2c, 0x7d, 0x72, 0x99, 0x3e, 0x58, 0x23, 0x70, 0x22, 0x74, - 0xda, 0xe7, 0x42, 0xf2, 0x9f, 0x5a, 0xa9, 0x38, 0xd8, 0x75, 0x79, 0x90, 0x12, 0x4d, 0x74, 0x16, - 0xfa, 0xed, 0xfa, 0x66, 0x59, 0x44, 0x84, 0xcc, 0xb1, 0x43, 0xad, 0xfc, 0x5b, 0xcc, 0x3f, 0xf7, - 0xf0, 0x3e, 0xbb, 0xbe, 0x49, 0xac, 0xe1, 0x6e, 0x18, 0x68, 0x21, 0x4c, 0xe6, 0x6a, 0x20, 0x07, - 0x7d, 0x07, 0x95, 0x8f, 0xa0, 0x6c, 0x3b, 0xba, 0xe5, 0xe8, 0xde, 0x0e, 0x3d, 0x5a, 0x8e, 0x2b, - 0x59, 0xf1, 0x60, 0x8d, 0xc3, 0xe5, 0x2b, 0x30, 0xbc, 0xae, 0xd7, 0x6c, 0x7a, 0x19, 0x82, 0x4b, - 0x7e, 0x22, 0x90, 0x4f, 0xea, 0x2c, 0x5f, 0x5b, 0xc9, 0x62, 0x4d, 0x92, 0x15, 0x9f, 0x68, 0x6b, - 0x9d, 0xa7, 0x7a, 0xb7, 0x4e, 0x2f, 0x92, 0x9d, 0xff, 0x34, 0x1f, 0x71, 0x3e, 0x9e, 0xee, 0x43, - 0xe1, 0xa9, 0x5b, 0xc3, 0xec, 0x54, 0xf6, 0xe4, 0x3b, 0x16, 0x01, 0xf9, 0xdd, 0xd3, 0x6a, 0xbe, - 0x43, 0x20, 0xcd, 0x77, 0x74, 0x32, 0xf9, 0x0c, 0x0c, 0xae, 0xa9, 0x8e, 0xb7, 0x8e, 0xbd, 0xf3, - 0x58, 0xad, 0x60, 0x27, 0x9a, 0x77, 0x07, 0x45, 0xde, 0x45, 0x90, 0xa0, 0xc9, 0x95, 0xe5, 0x1d, - 0xfa, 0x5b, 0xde, 0x86, 0x04, 0xbd, 0x80, 0xe2, 0xe7, 0x64, 0x4e, 0xc1, 0x72, 0x32, 0x89, 0xa6, - 0x3b, 0x1e, 0x76, 0x39, 0x09, 0x6b, 0xa0, 0xe3, 0x22, 0xb3, 0xc6, 0x77, 0xcf, 0xac, 0xdc, 0x54, - 0x79, 0x7e, 0x35, 0xa0, 0xbf, 0x48, 0x82, 0xf1, 0xe2, 0xbc, 0x2f, 0x88, 0x14, 0x08, 0x82, 0x96, - 0x61, 0xd8, 0x56, 0x1d, 0x8f, 0xde, 0xbc, 0xdd, 0xa6, 0xa3, 0xe0, 0xde, 0x30, 0xd9, 0xec, 0x9b, - 0x91, 0xc1, 0xf2, 0x5e, 0x06, 0xed, 0x30, 0x50, 0xfe, 0x4f, 0x09, 0xe8, 0xe3, 0xca, 0x78, 0x1f, - 0xf4, 0x73, 0xb5, 0x72, 0xfb, 0x3d, 0x3c, 0xdd, 0x9c, 0x9a, 0xa6, 0xfd, 0x14, 0xc2, 0xf9, 0x09, - 0x1a, 0x74, 0x1f, 0xa4, 0xb4, 0x6d, 0x55, 0x37, 0xcb, 0x3a, 0xbb, 0x82, 0x9a, 0x2e, 0x66, 0x5e, - 0xbb, 0x39, 0xd9, 0x3f, 0x47, 0x60, 0x8b, 0xf3, 0x4a, 0x3f, 0x7d, 0xb8, 0x58, 0x21, 0xb5, 0xc0, - 0x36, 0xd6, 0xab, 0xdb, 0x1e, 0xf7, 0x41, 0xde, 0x42, 0xa7, 0x21, 0x41, 0x4c, 0x86, 0xbf, 0x97, - 0x91, 0x6f, 0x2a, 0xee, 0xfd, 0xba, 0xb5, 0x98, 0x22, 0x1d, 0x7f, 0xfa, 0x3b, 0x93, 0x92, 0x42, - 0x29, 0xd0, 0x1c, 0x0c, 0x1a, 0xaa, 0xeb, 0x95, 0x69, 0x0e, 0x23, 0xdd, 0x27, 0x29, 0x8b, 0x03, - 0xcd, 0x0a, 0xe1, 0x8a, 0xe5, 0xa2, 0x67, 0x08, 0x15, 0x03, 0x55, 0xd0, 0x11, 0xc8, 0x52, 0x26, - 0x9a, 0x55, 0xab, 0xe9, 0x1e, 0xab, 0xae, 0xfa, 0xa8, 0xde, 0x87, 0x08, 0x7c, 0x8e, 0x82, 0x69, - 0x8d, 0x75, 0x10, 0xd2, 0xf4, 0x26, 0x38, 0x45, 0x61, 0xb7, 0x9e, 0x52, 0x04, 0x40, 0x1f, 0xde, - 0x0f, 0xc3, 0x41, 0x04, 0x65, 0x28, 0x29, 0xc6, 0x25, 0x00, 0x53, 0xc4, 0x47, 0x60, 0xcc, 0xc4, - 0xd7, 0xe9, 0x3d, 0xac, 0x08, 0x76, 0x9a, 0x62, 0x23, 0xf2, 0xec, 0x72, 0x94, 0xe2, 0x3d, 0x30, - 0xa4, 0x09, 0xe5, 0x33, 0x5c, 0xa0, 0xb8, 0x83, 0x3e, 0x94, 0xa2, 0x1d, 0x80, 0x94, 0x6a, 0xdb, - 0x0c, 0x21, 0xc3, 0x23, 0xa8, 0x6d, 0xd3, 0x47, 0x47, 0x61, 0x84, 0x8e, 0xd1, 0xc1, 0x6e, 0xdd, - 0xf0, 0x38, 0x93, 0x01, 0x8a, 0x33, 0x4c, 0x1e, 0x28, 0x0c, 0x4e, 0x71, 0xef, 0x81, 0x41, 0x7c, - 0x55, 0xaf, 0x60, 0x53, 0xc3, 0x0c, 0x6f, 0x90, 0xe2, 0x0d, 0x08, 0x20, 0x45, 0x7a, 0x00, 0xfc, - 0xc8, 0x58, 0x16, 0x51, 0x7b, 0x88, 0xf1, 0x13, 0xf0, 0x59, 0x06, 0x96, 0x1f, 0x82, 0xc4, 0xbc, - 0xea, 0xa9, 0xa4, 0xc4, 0xf0, 0xae, 0xb3, 0x54, 0x34, 0xa0, 0x90, 0x9f, 0x2d, 0xdd, 0xed, 0xf5, - 0x18, 0x24, 0x2e, 0x5b, 0x1e, 0x46, 0x8f, 0x85, 0xca, 0xc2, 0xa1, 0x56, 0x36, 0xbe, 0xae, 0x57, - 0x4d, 0x5c, 0x59, 0x76, 0xab, 0xa1, 0x57, 0x39, 0x03, 0x13, 0x8b, 0x45, 0x4c, 0x6c, 0x0c, 0x92, - 0x8e, 0x55, 0x37, 0x2b, 0xe2, 0x12, 0x11, 0x6d, 0xa0, 0x12, 0xa4, 0x7c, 0xcb, 0x49, 0x74, 0xb2, - 0x9c, 0x61, 0x62, 0x39, 0xc4, 0xae, 0x39, 0x40, 0xe9, 0xdf, 0xe4, 0x06, 0x54, 0x84, 0xb4, 0x1f, - 0xf2, 0xb8, 0x05, 0x76, 0x67, 0xc4, 0x01, 0x19, 0x49, 0x41, 0xbe, 0x3d, 0xf8, 0x0a, 0x65, 0x56, - 0x98, 0xf5, 0x1f, 0x70, 0x8d, 0x46, 0x4c, 0x8d, 0xbf, 0x56, 0xda, 0x4f, 0xc7, 0x15, 0x98, 0x1a, - 0x7b, 0xb5, 0xf4, 0x10, 0xa4, 0x5d, 0xbd, 0x6a, 0xaa, 0x5e, 0xdd, 0xc1, 0xdc, 0x1a, 0x03, 0x80, - 0xfc, 0x99, 0x18, 0xf4, 0x31, 0xeb, 0x0e, 0xe9, 0x4d, 0x6a, 0xad, 0xb7, 0x58, 0x3b, 0xbd, 0xc5, - 0xf7, 0xae, 0xb7, 0x59, 0x00, 0x5f, 0x18, 0x97, 0xbf, 0xed, 0xd7, 0xa2, 0xce, 0x60, 0x22, 0xae, - 0xeb, 0x55, 0xee, 0xbc, 0x21, 0x22, 0xdf, 0x82, 0x92, 0xa1, 0x38, 0x79, 0x16, 0xd2, 0x9b, 0xba, - 0x57, 0x56, 0xc9, 0xe2, 0x91, 0xaa, 0x30, 0x73, 0x6c, 0x62, 0xba, 0xd5, 0x2a, 0x73, 0x5a, 0x2c, - 0x31, 0x95, 0xd4, 0x26, 0xff, 0x25, 0xff, 0x81, 0x44, 0x6a, 0x65, 0xde, 0x21, 0x9a, 0x85, 0x41, - 0x31, 0xd0, 0xf2, 0x96, 0xa1, 0x56, 0xb9, 0x31, 0x1e, 0x6e, 0x3b, 0xda, 0x73, 0x86, 0x5a, 0x55, - 0x32, 0x7c, 0x80, 0xa4, 0xd1, 0x7a, 0x62, 0x63, 0x6d, 0x26, 0x36, 0x62, 0x49, 0xf1, 0xbd, 0x59, - 0x52, 0x64, 0xce, 0x13, 0x8d, 0x73, 0xfe, 0xb5, 0x18, 0x5d, 0x33, 0xd9, 0x96, 0xab, 0x1a, 0x6f, - 0x87, 0x8b, 0x1d, 0x84, 0xb4, 0x6d, 0x19, 0x65, 0xf6, 0x84, 0xdd, 0xd6, 0x4b, 0xd9, 0x96, 0xa1, - 0x34, 0xd9, 0x51, 0xf2, 0x36, 0xf9, 0x5f, 0xdf, 0x6d, 0xd0, 0x5a, 0x7f, 0xa3, 0xd6, 0x1c, 0x18, - 0x60, 0xaa, 0xe0, 0x09, 0xf3, 0x11, 0xa2, 0x03, 0x9a, 0x81, 0xa5, 0xe6, 0x04, 0xcf, 0xc4, 0x66, - 0x98, 0x0a, 0xc7, 0x23, 0x14, 0x2c, 0xbf, 0xb4, 0x5a, 0x6c, 0x87, 0xed, 0x5c, 0xe1, 0x78, 0xf2, - 0xcf, 0x49, 0x00, 0x4b, 0x44, 0xb3, 0x74, 0xbc, 0x24, 0xd5, 0xb9, 0x54, 0x84, 0x72, 0xa4, 0xe7, - 0x89, 0x76, 0x93, 0xc6, 0xfb, 0x1f, 0x70, 0xc3, 0x72, 0xcf, 0xc1, 0x60, 0x60, 0x8c, 0x2e, 0x16, - 0xc2, 0x4c, 0xec, 0x52, 0xdc, 0xaf, 0x63, 0x4f, 0x19, 0xb8, 0x1a, 0x6a, 0xc9, 0xff, 0x4c, 0x82, - 0x34, 0x95, 0x69, 0x19, 0x7b, 0x6a, 0x64, 0x0e, 0xa5, 0xbd, 0xcf, 0xe1, 0x61, 0x00, 0xc6, 0xc6, - 0xd5, 0x6f, 0x60, 0x6e, 0x59, 0x69, 0x0a, 0x59, 0xd7, 0x6f, 0x60, 0x74, 0xd2, 0x57, 0x78, 0x7c, - 0x77, 0x85, 0x8b, 0xe2, 0x9f, 0xab, 0xfd, 0x2e, 0xe8, 0xa7, 0x9f, 0xdb, 0xb8, 0xee, 0xf2, 0x7a, - 0xbe, 0xcf, 0xac, 0xd7, 0x36, 0xae, 0xbb, 0xf2, 0xb3, 0xd0, 0xbf, 0x71, 0x9d, 0x6d, 0xc1, 0x1c, - 0x84, 0xb4, 0x63, 0x59, 0x3c, 0xf1, 0xb3, 0x82, 0x2b, 0x45, 0x00, 0x34, 0xcf, 0x89, 0x6d, 0x87, - 0x58, 0xb0, 0xed, 0x10, 0xec, 0x9b, 0xc4, 0xbb, 0xda, 0x37, 0x39, 0xfa, 0xef, 0x24, 0xc8, 0x84, - 0xe2, 0x03, 0x7a, 0x14, 0xf6, 0x17, 0x97, 0x56, 0xe7, 0x2e, 0x96, 0x17, 0xe7, 0xcb, 0xe7, 0x96, - 0x66, 0x17, 0x82, 0xfb, 0xe8, 0xf9, 0xf1, 0x17, 0x5e, 0x9a, 0x42, 0x21, 0xdc, 0x4b, 0xe6, 0x15, - 0xd3, 0xba, 0x66, 0xa2, 0x19, 0x18, 0x8b, 0x92, 0xcc, 0x16, 0xd7, 0x4b, 0x2b, 0x1b, 0x59, 0x29, - 0xbf, 0xff, 0x85, 0x97, 0xa6, 0x46, 0x42, 0x14, 0xb3, 0x9b, 0x2e, 0x36, 0xbd, 0x66, 0x82, 0xb9, - 0xd5, 0xe5, 0xe5, 0xc5, 0x8d, 0x6c, 0xac, 0x89, 0x80, 0x67, 0x80, 0x07, 0x60, 0x24, 0x4a, 0xb0, - 0xb2, 0xb8, 0x94, 0x8d, 0xe7, 0xd1, 0x0b, 0x2f, 0x4d, 0x0d, 0x85, 0xb0, 0x57, 0x74, 0x23, 0x9f, - 0xfa, 0xa9, 0x2f, 0x4f, 0xec, 0xfb, 0xf9, 0xbf, 0x3e, 0x21, 0x91, 0x91, 0x0d, 0x46, 0x62, 0x04, - 0x7a, 0x08, 0xee, 0x5a, 0x5f, 0x5c, 0x58, 0x29, 0xcd, 0x97, 0x97, 0xd7, 0x17, 0xca, 0xec, 0x3d, - 0x7c, 0x7f, 0x74, 0xc3, 0x2f, 0xbc, 0x34, 0x95, 0xe1, 0x43, 0x6a, 0x87, 0xbd, 0xa6, 0x94, 0x2e, - 0xaf, 0x6e, 0x94, 0xb2, 0x12, 0xc3, 0x5e, 0x73, 0xf0, 0x55, 0xcb, 0x63, 0xdf, 0xe3, 0x79, 0x04, - 0x0e, 0xb4, 0xc0, 0xf6, 0x07, 0x36, 0xf2, 0xc2, 0x4b, 0x53, 0x83, 0x6b, 0x0e, 0x66, 0xfe, 0x43, - 0x29, 0xa6, 0x21, 0xd7, 0x4c, 0xb1, 0xba, 0xb6, 0xba, 0x3e, 0xbb, 0x94, 0x9d, 0xca, 0x67, 0x5f, - 0x78, 0x69, 0x6a, 0x40, 0x04, 0x43, 0x82, 0x1f, 0x8c, 0xec, 0x4e, 0x2e, 0xbc, 0xfe, 0x62, 0x0c, - 0x26, 0x9a, 0x6e, 0xfd, 0xf2, 0xbd, 0xf2, 0x76, 0x1b, 0xc5, 0x05, 0x48, 0xcd, 0x8b, 0x2d, 0xf8, - 0x5e, 0xf7, 0x89, 0x7f, 0xb6, 0xc7, 0x7d, 0xe2, 0x41, 0xd1, 0x93, 0xd8, 0x26, 0x3e, 0xda, 0x79, - 0x9b, 0x58, 0xc8, 0xbf, 0x87, 0x5d, 0xe2, 0x8f, 0xc5, 0x61, 0x42, 0xb3, 0xdc, 0x9a, 0xe5, 0xce, - 0x6c, 0xaa, 0x2e, 0x9e, 0xb9, 0xfa, 0xe8, 0x26, 0xf6, 0xd4, 0x47, 0x67, 0x34, 0x4b, 0x17, 0xea, - 0x18, 0x65, 0xcf, 0xa7, 0xc9, 0xf3, 0x69, 0xfe, 0xbc, 0xcd, 0x46, 0xd0, 0x02, 0x24, 0xe6, 0x2c, - 0xdd, 0x24, 0xaa, 0xa8, 0x60, 0xd3, 0xaa, 0xf1, 0x5d, 0x45, 0xd6, 0x40, 0xf7, 0x40, 0x9f, 0x5a, - 0xb3, 0xea, 0xa6, 0x27, 0xd6, 0x29, 0x24, 0x58, 0xfc, 0xfe, 0xcd, 0xc9, 0xf8, 0xa2, 0xe9, 0x29, - 0xfc, 0x11, 0xdb, 0xf8, 0x92, 0x2f, 0x40, 0xff, 0x3c, 0xd6, 0xf6, 0xc2, 0x6b, 0x1e, 0x6b, 0x0d, - 0xbc, 0x1e, 0x80, 0xd4, 0xa2, 0xe9, 0xb1, 0x77, 0xdb, 0x0f, 0x43, 0x5c, 0x37, 0x59, 0x99, 0xd5, - 0xd0, 0x3f, 0x81, 0x13, 0xd4, 0x79, 0xac, 0xf9, 0xa8, 0x15, 0xac, 0x35, 0xa2, 0x12, 0xf6, 0x04, - 0x5e, 0x9c, 0xff, 0xbd, 0xff, 0x38, 0xb1, 0xef, 0xf9, 0xd7, 0x26, 0xf6, 0xb5, 0x35, 0xd5, 0xf0, - 0xb9, 0x05, 0x57, 0x31, 0xfb, 0xf3, 0xb0, 0x5b, 0xb9, 0xd2, 0x60, 0x95, 0x1f, 0x7f, 0x14, 0xee, - 0xe5, 0x38, 0xae, 0xa7, 0x5e, 0xd1, 0xcd, 0xaa, 0x3f, 0x13, 0xbc, 0xcd, 0x27, 0x63, 0x9c, 0x4f, - 0x86, 0x80, 0xee, 0x3a, 0x1f, 0xf9, 0x5d, 0xb7, 0x18, 0x3a, 0x6f, 0x1d, 0x74, 0x70, 0x94, 0x7c, - 0x07, 0xcb, 0x91, 0x3f, 0x29, 0xc1, 0xd0, 0x79, 0xdd, 0xf5, 0x2c, 0x47, 0xd7, 0x54, 0x83, 0xbe, - 0xe5, 0x70, 0xb2, 0xdb, 0xdc, 0xdd, 0x90, 0x4a, 0x1e, 0x87, 0xbe, 0xab, 0xaa, 0xc1, 0x92, 0x66, - 0x9c, 0x7e, 0x94, 0xa1, 0xb5, 0x22, 0x82, 0xd4, 0x29, 0x18, 0x30, 0x32, 0xf9, 0x17, 0x63, 0x30, - 0x4c, 0x83, 0xad, 0xcb, 0x3e, 0xd7, 0xe3, 0x61, 0x52, 0xf0, 0x25, 0x1c, 0xd5, 0xe3, 0x7b, 0xdf, - 0xc5, 0x69, 0x3e, 0xc7, 0xf7, 0x75, 0x9e, 0xb7, 0x69, 0x62, 0x06, 0x94, 0x16, 0xfd, 0x18, 0xa4, - 0x6a, 0xea, 0xf5, 0x32, 0xe5, 0xc3, 0x4c, 0x71, 0xb6, 0x37, 0x3e, 0xb7, 0x6e, 0x4e, 0x0e, 0xef, - 0xa8, 0x35, 0xa3, 0x20, 0x0b, 0x3e, 0xb2, 0xd2, 0x5f, 0x53, 0xaf, 0x13, 0x11, 0x91, 0x0d, 0xc3, - 0x04, 0xaa, 0x6d, 0xab, 0x66, 0x15, 0xb3, 0x4e, 0xe8, 0x4e, 0x7e, 0xf1, 0x7c, 0xcf, 0x9d, 0x8c, - 0x07, 0x9d, 0x84, 0xd8, 0xc9, 0xca, 0x60, 0x4d, 0xbd, 0x3e, 0x47, 0x01, 0xa4, 0xc7, 0x42, 0xea, - 0xb3, 0x2f, 0x4f, 0xee, 0xa3, 0x7e, 0xf3, 0xaa, 0x04, 0x10, 0x68, 0x0c, 0xfd, 0x18, 0x64, 0x35, - 0xbf, 0x45, 0x69, 0x5d, 0x3e, 0x87, 0xf7, 0xb7, 0x9b, 0x8b, 0x06, 0x7d, 0xb3, 0xda, 0xef, 0x95, - 0x9b, 0x93, 0x92, 0x32, 0xac, 0x35, 0x4c, 0xc5, 0x07, 0x21, 0x53, 0xb7, 0x2b, 0xaa, 0x87, 0xcb, - 0x74, 0x33, 0x22, 0xd6, 0xb1, 0x8e, 0x9c, 0x20, 0xbc, 0x6e, 0xdd, 0x9c, 0x44, 0x6c, 0x58, 0x21, - 0x62, 0x99, 0x56, 0x97, 0xc0, 0x20, 0x84, 0x20, 0x34, 0xa6, 0xdf, 0x91, 0x20, 0x33, 0x1f, 0xba, - 0x6d, 0x94, 0x83, 0xfe, 0x9a, 0x65, 0xea, 0x57, 0xb8, 0x3d, 0xa6, 0x15, 0xd1, 0x44, 0x79, 0x48, - 0xb1, 0x17, 0xbf, 0xbc, 0x1d, 0xb1, 0xa3, 0x2f, 0xda, 0x84, 0xea, 0x1a, 0xde, 0x74, 0x75, 0x31, - 0x1b, 0x8a, 0x68, 0xa2, 0x73, 0x90, 0x75, 0xb1, 0x56, 0x77, 0x74, 0x6f, 0xa7, 0xac, 0x59, 0xa6, - 0xa7, 0x6a, 0x1e, 0x7b, 0x85, 0xa8, 0x78, 0xf0, 0xd6, 0xcd, 0xc9, 0xbb, 0x98, 0xac, 0x8d, 0x18, - 0xb2, 0x32, 0x2c, 0x40, 0x73, 0x0c, 0x42, 0x7a, 0xa8, 0x60, 0x4f, 0xd5, 0x0d, 0x97, 0x96, 0xe6, - 0x69, 0x45, 0x34, 0x43, 0x63, 0xf9, 0x27, 0xfd, 0xe1, 0xfd, 0xdb, 0x6b, 0x90, 0xb5, 0x6c, 0xec, - 0x44, 0x16, 0x3a, 0xb4, 0x9c, 0x2a, 0x2e, 0x05, 0x3d, 0x37, 0x62, 0xc8, 0xff, 0xf7, 0xe6, 0xe4, - 0xc3, 0x5d, 0x58, 0xd0, 0x65, 0xd5, 0xe0, 0x8b, 0x24, 0x65, 0x58, 0xf0, 0x10, 0xab, 0xa6, 0x73, - 0xc4, 0x2e, 0xc4, 0xf6, 0x88, 0x5d, 0xdf, 0x14, 0xfb, 0xc4, 0x91, 0x21, 0x37, 0x62, 0xc8, 0xc4, - 0x02, 0x38, 0x68, 0x8d, 0x42, 0xc8, 0xca, 0xe6, 0x59, 0x55, 0x37, 0xc4, 0xdb, 0xb0, 0x0a, 0x6f, - 0xa1, 0x45, 0xe8, 0x73, 0x3d, 0xd5, 0xab, 0xb3, 0x1a, 0x32, 0x59, 0x7c, 0xb4, 0x4b, 0x99, 0x8b, - 0x96, 0x59, 0x59, 0xa7, 0x84, 0x0a, 0x67, 0x80, 0xce, 0x41, 0x9f, 0x67, 0x5d, 0xc1, 0x26, 0x57, - 0x6a, 0x4f, 0x1e, 0x4f, 0x73, 0x14, 0xa3, 0x46, 0x1e, 0x64, 0x2b, 0xd8, 0xc0, 0x55, 0x56, 0xc8, - 0x6f, 0xab, 0x64, 0x01, 0x4d, 0xbf, 0x5c, 0x55, 0x5c, 0xec, 0xd9, 0x2d, 0xb9, 0x82, 0x1a, 0xf9, - 0xc9, 0xca, 0xb0, 0x0f, 0x5a, 0xa7, 0x10, 0x74, 0x31, 0x72, 0x51, 0x8e, 0x7f, 0xde, 0xed, 0x9e, - 0x76, 0xbe, 0x17, 0xb2, 0x72, 0xb1, 0xed, 0x16, 0xbe, 0x66, 0x77, 0x0e, 0xb2, 0x75, 0x73, 0xd3, - 0x32, 0xe9, 0x1b, 0x6c, 0x7c, 0x45, 0x99, 0x22, 0xf5, 0x4c, 0x78, 0xd6, 0x1a, 0x31, 0x64, 0x65, - 0xd8, 0x07, 0x9d, 0x67, 0xeb, 0xce, 0x0a, 0x0c, 0x05, 0x58, 0xd4, 0x75, 0xd3, 0x1d, 0x5d, 0xf7, - 0x6e, 0xee, 0xba, 0xfb, 0x1b, 0x7b, 0x09, 0xbc, 0x77, 0xd0, 0x07, 0x12, 0x32, 0x74, 0x1e, 0x20, - 0x08, 0x18, 0x74, 0xfb, 0x2d, 0x73, 0x4c, 0xee, 0x1c, 0x75, 0xc4, 0x96, 0x45, 0x40, 0x8b, 0x3e, - 0x0c, 0xa3, 0x35, 0xdd, 0x2c, 0xbb, 0xd8, 0xd8, 0x2a, 0x73, 0x05, 0x13, 0x96, 0xf4, 0x03, 0x24, - 0xc5, 0xa5, 0xde, 0xec, 0xe1, 0xd6, 0xcd, 0xc9, 0x3c, 0x0f, 0xaa, 0xcd, 0x2c, 0x65, 0x65, 0xa4, - 0xa6, 0x9b, 0xeb, 0xd8, 0xd8, 0x9a, 0xf7, 0x61, 0x85, 0x81, 0x9f, 0x7a, 0x79, 0x72, 0x9f, 0xef, - 0xc0, 0x3a, 0x3d, 0x34, 0xe2, 0x7e, 0x84, 0x5d, 0xb4, 0x0a, 0x69, 0x55, 0x34, 0xd8, 0x46, 0x5d, - 0xd7, 0xc6, 0x1e, 0x72, 0xd0, 0x80, 0x07, 0x8b, 0x15, 0xcf, 0xff, 0x87, 0x29, 0x49, 0x7e, 0x21, - 0x06, 0x7d, 0xf3, 0x97, 0xd7, 0x54, 0xdd, 0x41, 0x37, 0x60, 0x24, 0x30, 0xb6, 0x68, 0xa4, 0x58, - 0xbe, 0x75, 0x73, 0x32, 0xd7, 0x68, 0x8f, 0x3d, 0x86, 0x8a, 0x59, 0x4d, 0x13, 0x92, 0x04, 0x4e, - 0x22, 0x62, 0xc5, 0x8d, 0xb6, 0xdb, 0x31, 0xe1, 0xbe, 0x9b, 0x50, 0xf6, 0x10, 0xa6, 0x9a, 0x76, - 0x77, 0x42, 0x81, 0xb3, 0x04, 0xfd, 0x4c, 0x17, 0x2e, 0x2a, 0x40, 0xd2, 0x26, 0x3f, 0xf8, 0x11, - 0xdd, 0x44, 0x5b, 0x6f, 0xa2, 0xf8, 0xfe, 0x81, 0x01, 0x21, 0x91, 0xbf, 0x14, 0x07, 0x98, 0xbf, - 0x7c, 0x79, 0xc3, 0xd1, 0x6d, 0x03, 0x7b, 0x3f, 0x54, 0xbd, 0x7e, 0x5c, 0x82, 0xfd, 0xa1, 0xad, - 0x05, 0x47, 0x6b, 0x50, 0xee, 0x13, 0xb7, 0x6e, 0x4e, 0x1e, 0x6a, 0x54, 0x6e, 0x08, 0x6d, 0x0f, - 0x0a, 0x1e, 0x0d, 0x76, 0x25, 0x1c, 0xad, 0xb5, 0x1c, 0x15, 0xd7, 0xf3, 0xe5, 0x88, 0xb7, 0x97, - 0x23, 0x84, 0xf6, 0x96, 0xe4, 0x98, 0x77, 0xbd, 0xe6, 0xb9, 0x5e, 0x87, 0x4c, 0x30, 0x47, 0x2e, - 0x9a, 0x87, 0x94, 0xc7, 0x7f, 0xf3, 0x29, 0x97, 0xdb, 0x4f, 0xb9, 0x20, 0xe3, 0xd3, 0xee, 0x53, - 0xca, 0xff, 0x36, 0x06, 0x10, 0x78, 0xf5, 0x9f, 0x57, 0x8f, 0x22, 0xe9, 0x94, 0x27, 0xbf, 0xf8, - 0x9e, 0x0a, 0x68, 0x4e, 0x1d, 0x9a, 0xad, 0x3f, 0x8a, 0xc1, 0xe8, 0x25, 0x11, 0xf9, 0xdf, 0xd5, - 0x30, 0x5a, 0x83, 0x7e, 0x6c, 0x7a, 0x8e, 0x4e, 0x55, 0x4c, 0xac, 0xf5, 0x91, 0x76, 0xd6, 0xda, - 0x42, 0x6b, 0xf4, 0x23, 0x3b, 0xe2, 0xb4, 0x90, 0xb3, 0x09, 0xe9, 0xfa, 0x53, 0x71, 0xc8, 0xb5, - 0xa3, 0x42, 0x73, 0x30, 0xac, 0x39, 0x98, 0x02, 0xca, 0xe1, 0xa3, 0x89, 0x62, 0x3e, 0x58, 0x49, - 0x34, 0x20, 0xc8, 0xca, 0x90, 0x80, 0xf0, 0xda, 0xa0, 0x0a, 0xa4, 0xcc, 0x27, 0x2e, 0x43, 0xb0, - 0xba, 0xac, 0xeb, 0x65, 0x5e, 0x1c, 0x88, 0x4e, 0xa2, 0x0c, 0x58, 0x75, 0x30, 0x14, 0x40, 0x69, - 0x79, 0xf0, 0x1c, 0x0c, 0xeb, 0xa6, 0xee, 0xe9, 0xaa, 0x51, 0xde, 0x54, 0x0d, 0xd5, 0xd4, 0xf6, - 0xb2, 0x4a, 0x62, 0x09, 0x9d, 0x77, 0xdb, 0xc0, 0x4e, 0x56, 0x86, 0x38, 0xa4, 0xc8, 0x00, 0xe8, - 0x3c, 0xf4, 0x8b, 0xae, 0x12, 0x7b, 0xaa, 0x25, 0x05, 0x79, 0x68, 0x46, 0x7e, 0x3a, 0x0e, 0x23, - 0x0a, 0xae, 0xbc, 0x3b, 0x15, 0xbd, 0x4d, 0xc5, 0x32, 0x00, 0x0b, 0x24, 0x24, 0x93, 0xec, 0x61, - 0x36, 0x48, 0x28, 0x4a, 0x33, 0x0e, 0xf3, 0xae, 0x17, 0x9a, 0x8f, 0x3f, 0x8e, 0xc3, 0x40, 0x78, - 0x3e, 0xde, 0x4d, 0xf1, 0x3f, 0x3a, 0x29, 0x1e, 0x2d, 0x06, 0xa1, 0x31, 0xc1, 0xbf, 0x95, 0xda, - 0x26, 0x34, 0x36, 0xb9, 0x54, 0xfb, 0x98, 0xf8, 0xa7, 0x31, 0xe8, 0x5b, 0x53, 0x1d, 0xb5, 0xe6, - 0x22, 0xad, 0x69, 0x61, 0x23, 0xce, 0x57, 0x9a, 0xbe, 0x86, 0xcd, 0x37, 0xc5, 0x3a, 0xac, 0x6b, - 0x3e, 0xdb, 0x62, 0x5d, 0xf3, 0x01, 0x18, 0xaa, 0xa9, 0xd7, 0x43, 0x77, 0x11, 0xe8, 0x64, 0x0e, - 0x16, 0x0f, 0x04, 0x5c, 0xa2, 0xcf, 0xd9, 0x76, 0xcd, 0xe5, 0xf0, 0x5d, 0xb1, 0x0c, 0xc1, 0x08, - 0xb2, 0x04, 0x21, 0x1f, 0x0f, 0xf6, 0x45, 0x42, 0x0f, 0x65, 0x05, 0x6a, 0xea, 0xf5, 0x12, 0x6b, - 0xa0, 0x25, 0x40, 0xdb, 0xfe, 0xd6, 0x5c, 0x39, 0x50, 0x25, 0xa1, 0x3f, 0x7c, 0xeb, 0xe6, 0xe4, - 0x01, 0x46, 0xdf, 0x8c, 0x23, 0x2b, 0x23, 0x01, 0x50, 0x70, 0x3b, 0x0e, 0x40, 0xc6, 0x55, 0x66, - 0x3b, 0xb5, 0x6c, 0x75, 0xbd, 0xff, 0xd6, 0xcd, 0xc9, 0x11, 0xc6, 0x25, 0x78, 0x26, 0x2b, 0x69, - 0xd2, 0x98, 0x27, 0xbf, 0x43, 0x8a, 0xff, 0xb2, 0x04, 0x28, 0xc8, 0x41, 0x0a, 0x76, 0x6d, 0xcb, - 0x74, 0xe9, 0xba, 0x2f, 0xb4, 0x48, 0x93, 0x76, 0x5f, 0xf7, 0x05, 0xf4, 0x62, 0xdd, 0x17, 0x72, - 0xdd, 0x33, 0x41, 0xbc, 0x8e, 0xf1, 0x79, 0x6c, 0xb1, 0xad, 0x3d, 0x3d, 0x67, 0xe9, 0x82, 0xba, - 0x45, 0x80, 0xfe, 0x17, 0x12, 0x1c, 0x68, 0xb2, 0x26, 0x5f, 0xd8, 0xff, 0x0f, 0x90, 0x13, 0x7a, - 0xc8, 0x3f, 0x7a, 0xc7, 0x84, 0xee, 0xd9, 0x38, 0x47, 0x9c, 0xa6, 0x44, 0x70, 0xfb, 0x52, 0x0e, - 0xdb, 0x17, 0xff, 0xa7, 0x12, 0x8c, 0x85, 0xbb, 0xf7, 0x07, 0xb2, 0x02, 0x03, 0xe1, 0xde, 0xf9, - 0x10, 0xee, 0xed, 0x66, 0x08, 0x5c, 0xfa, 0x08, 0x3d, 0x7a, 0x22, 0x70, 0x55, 0xb6, 0x79, 0xfb, - 0x68, 0xd7, 0xda, 0x10, 0x32, 0x35, 0xba, 0x2c, 0x1b, 0xc1, 0x9f, 0x49, 0x90, 0x58, 0xb3, 0x2c, - 0x03, 0x59, 0x30, 0x62, 0x5a, 0x5e, 0x99, 0x58, 0x16, 0xae, 0x94, 0xf9, 0x1e, 0x0f, 0xdb, 0xd5, - 0x9d, 0xeb, 0x4d, 0x49, 0xdf, 0xbf, 0x39, 0xd9, 0xcc, 0x4a, 0x19, 0x36, 0x2d, 0xaf, 0x48, 0x21, - 0x1b, 0x6c, 0x07, 0xe8, 0xc3, 0x30, 0x18, 0xed, 0x8c, 0xed, 0x78, 0x3d, 0xd9, 0x73, 0x67, 0x51, - 0x36, 0xb7, 0x6e, 0x4e, 0x8e, 0x05, 0x1e, 0xe3, 0x83, 0x65, 0x65, 0x60, 0x33, 0xd4, 0x3b, 0xbb, - 0x46, 0xfb, 0x27, 0x2f, 0x4f, 0x4a, 0xc5, 0x73, 0x6d, 0x4f, 0x1f, 0x1e, 0xda, 0x55, 0x84, 0xeb, - 0xfe, 0x31, 0x43, 0xf4, 0x1c, 0xe2, 0xc5, 0x54, 0xdb, 0x73, 0x88, 0x2a, 0x36, 0xb1, 0xab, 0xbb, - 0x7b, 0x3a, 0x87, 0xe8, 0xea, 0x6c, 0x43, 0xfe, 0x76, 0x12, 0x06, 0x16, 0x58, 0x2f, 0xeb, 0x9e, - 0xea, 0x61, 0xf4, 0x5e, 0xe8, 0xb3, 0x69, 0x34, 0xf6, 0x8f, 0xdb, 0xdb, 0xd8, 0x0d, 0x8b, 0xd9, - 0xfe, 0xd5, 0x53, 0x16, 0xc1, 0x5d, 0x7e, 0xb3, 0x8c, 0x5d, 0x89, 0x0d, 0x2e, 0x79, 0x0e, 0xf4, - 0xb4, 0x4b, 0xc7, 0x6a, 0x11, 0xbe, 0x21, 0xd6, 0xc8, 0x4f, 0x66, 0x97, 0xd4, 0x36, 0x08, 0x84, - 0x5d, 0x66, 0xfd, 0x98, 0x04, 0xfb, 0x29, 0x56, 0x90, 0xfc, 0x28, 0xa6, 0x28, 0xe0, 0x8f, 0xb6, - 0x1b, 0xc2, 0x92, 0xea, 0x06, 0x17, 0xcf, 0xd8, 0xf5, 0xd3, 0x7b, 0x79, 0x3e, 0x39, 0x14, 0xea, - 0xbc, 0x91, 0xad, 0xac, 0x8c, 0x1a, 0x4d, 0x94, 0x2e, 0x5a, 0x88, 0xdc, 0x3f, 0x4e, 0xf4, 0x76, - 0x64, 0x12, 0xbe, 0x8b, 0x7c, 0x01, 0x32, 0x81, 0x4b, 0xba, 0xfc, 0x7f, 0x5d, 0x74, 0x1f, 0x82, - 0xc3, 0xc4, 0xe8, 0x13, 0x12, 0xec, 0x0f, 0x92, 0x62, 0x98, 0x2d, 0xfb, 0x9f, 0x20, 0x0f, 0xf6, - 0xb0, 0xb8, 0x69, 0x54, 0x4e, 0x4b, 0xbe, 0xb2, 0x32, 0x56, 0x6f, 0x26, 0x25, 0xcb, 0xaa, 0xc1, - 0x70, 0x80, 0x72, 0x73, 0xe2, 0xb3, 0x77, 0xdd, 0x47, 0xb8, 0x28, 0x03, 0xf6, 0x7f, 0x0a, 0x6c, - 0xcb, 0xf1, 0x70, 0x85, 0x6e, 0xa3, 0xa6, 0x14, 0xbf, 0x2d, 0x5f, 0x03, 0xd4, 0x3c, 0xb9, 0xe8, - 0x62, 0xc3, 0x7d, 0xeb, 0xbd, 0x6c, 0xf5, 0xf9, 0x57, 0xb4, 0xc7, 0x20, 0x19, 0xbe, 0xc4, 0xcc, - 0x1a, 0xb7, 0x3d, 0x38, 0x7c, 0x33, 0x06, 0x47, 0xc3, 0x27, 0x7e, 0xcf, 0xd5, 0xb1, 0xb3, 0xe3, - 0xfb, 0xb2, 0xad, 0x56, 0x75, 0x33, 0x7c, 0x8c, 0x7e, 0x20, 0x9c, 0x60, 0x29, 0xae, 0x50, 0xa8, - 0x6c, 0x42, 0x66, 0x4d, 0xad, 0x62, 0x05, 0x3f, 0x57, 0xc7, 0xae, 0xd7, 0xe2, 0xe5, 0x98, 0x71, - 0xe8, 0xb3, 0xb6, 0xb6, 0xc4, 0x1d, 0x99, 0x84, 0xc2, 0x5b, 0x64, 0xa0, 0x86, 0x5e, 0xd3, 0xd9, - 0x1d, 0xd6, 0x84, 0xc2, 0x1a, 0x68, 0x12, 0x32, 0x9a, 0x55, 0x37, 0xb9, 0x6b, 0xe6, 0x12, 0xe2, - 0xab, 0x13, 0x75, 0x93, 0xb9, 0xa6, 0xfc, 0x38, 0x0c, 0xb0, 0xfe, 0x78, 0x86, 0x3b, 0x00, 0x29, - 0x7a, 0x09, 0x34, 0xe8, 0xb5, 0x9f, 0xb4, 0x2f, 0xb2, 0x17, 0x69, 0x18, 0x17, 0xd6, 0x31, 0x6b, - 0x14, 0x8b, 0x6d, 0x55, 0x79, 0xa4, 0xf3, 0x94, 0x31, 0x45, 0xf9, 0x6a, 0xfc, 0xcd, 0x24, 0xec, - 0xe7, 0x07, 0xab, 0xaa, 0xad, 0xcf, 0x6c, 0x7b, 0x9e, 0x78, 0x43, 0x0d, 0x78, 0x69, 0xa9, 0xda, - 0xba, 0xbc, 0x03, 0x89, 0xf3, 0x9e, 0x67, 0xa3, 0xa3, 0x90, 0x74, 0xea, 0x06, 0x16, 0xdb, 0x55, - 0x63, 0xd3, 0x01, 0xce, 0x34, 0x41, 0x50, 0xea, 0x06, 0x56, 0x18, 0x0a, 0x2a, 0xc1, 0xe4, 0x56, - 0xdd, 0x30, 0x76, 0xca, 0x15, 0x4c, 0xff, 0x61, 0x90, 0xff, 0xc9, 0x7d, 0x7c, 0xdd, 0x56, 0xc5, - 0x87, 0xfb, 0x88, 0x6e, 0x0e, 0x51, 0xb4, 0x79, 0x8a, 0x25, 0x3e, 0xb7, 0x5f, 0x12, 0x38, 0xf2, - 0xef, 0xc7, 0x20, 0x25, 0x58, 0xd3, 0x37, 0x5b, 0xb0, 0x81, 0x35, 0xcf, 0x12, 0x47, 0x64, 0x7e, - 0x1b, 0x21, 0x88, 0x57, 0xf9, 0x14, 0xa5, 0xcf, 0xef, 0x53, 0x48, 0x83, 0xc0, 0xfc, 0xf7, 0x8d, - 0x08, 0xcc, 0xae, 0x93, 0x59, 0x4b, 0xd8, 0x96, 0x58, 0x9b, 0x9d, 0xdf, 0xa7, 0xd0, 0x16, 0xca, - 0x41, 0x1f, 0x71, 0x21, 0x8f, 0x7d, 0x0d, 0x91, 0xc0, 0x79, 0x1b, 0x8d, 0x43, 0xd2, 0x56, 0x3d, - 0x8d, 0x5d, 0x04, 0x26, 0x0f, 0x58, 0x13, 0x9d, 0x82, 0x3e, 0xf6, 0x16, 0x6a, 0xe3, 0x7f, 0xe3, - 0x20, 0xca, 0x60, 0x9f, 0xfb, 0x22, 0x72, 0xaf, 0xa9, 0x9e, 0x87, 0x1d, 0x93, 0x30, 0x64, 0xe8, - 0xf4, 0x25, 0x36, 0xab, 0xb2, 0xc3, 0xff, 0x43, 0x08, 0xfd, 0xcd, 0xff, 0x25, 0x01, 0xb5, 0x87, - 0x32, 0x7d, 0xc8, 0xfe, 0x31, 0xd2, 0x80, 0x00, 0x16, 0x09, 0x52, 0x09, 0x46, 0xd5, 0x4a, 0x45, - 0x67, 0xff, 0xac, 0xa3, 0xbc, 0xa9, 0xd3, 0x50, 0xe2, 0xd2, 0x7f, 0x7b, 0xd5, 0x6e, 0x2e, 0x50, - 0x40, 0x50, 0xe4, 0xf8, 0xc5, 0x34, 0xf4, 0xdb, 0x4c, 0x28, 0xf9, 0x2c, 0x8c, 0x34, 0x49, 0x4a, - 0xe4, 0xbb, 0xa2, 0x9b, 0x15, 0xf1, 0x12, 0x16, 0xf9, 0x4d, 0x60, 0xf4, 0x93, 0x7d, 0xec, 0xf0, - 0x91, 0xfe, 0x2e, 0xfe, 0x64, 0xfb, 0xcb, 0x24, 0x43, 0xa1, 0xcb, 0x24, 0xaa, 0xad, 0x17, 0xd3, - 0x94, 0x3f, 0xbf, 0x43, 0x32, 0xcb, 0x1f, 0xb0, 0xfb, 0x23, 0xd3, 0x96, 0x53, 0x25, 0xe9, 0x5c, - 0xa4, 0x69, 0xf2, 0x48, 0xb5, 0x75, 0x97, 0x9a, 0x63, 0xf0, 0x09, 0x41, 0xf7, 0x6c, 0xe8, 0x37, - 0xbd, 0x5a, 0x92, 0x58, 0x98, 0x5d, 0x5b, 0xf4, 0xed, 0xf8, 0x1b, 0x31, 0x38, 0x14, 0xb2, 0xe3, - 0x10, 0x72, 0xb3, 0x39, 0xe7, 0x5b, 0x5b, 0x7c, 0x17, 0x1f, 0xe0, 0xbb, 0x08, 0x09, 0x82, 0x8f, - 0x3a, 0xfc, 0xc3, 0x80, 0xdc, 0x2f, 0xfd, 0xf3, 0x7f, 0x2c, 0x53, 0xa3, 0x68, 0x3d, 0x2b, 0x94, - 0x49, 0xf1, 0x13, 0xdd, 0xeb, 0x2f, 0x1b, 0x7c, 0x3d, 0xd1, 0xbd, 0x7d, 0x6a, 0x6c, 0xd4, 0xe1, - 0x17, 0xce, 0x82, 0xdc, 0xa6, 0x36, 0x62, 0x11, 0x73, 0xf7, 0x6a, 0xab, 0x87, 0x70, 0xdc, 0xee, - 0x86, 0xc8, 0x6e, 0x33, 0xd8, 0x65, 0xdd, 0x76, 0x1d, 0xc6, 0x9f, 0x20, 0x7d, 0x07, 0xcb, 0x52, - 0x11, 0xd8, 0xc7, 0xfd, 0xb3, 0x5b, 0x89, 0xff, 0xd7, 0x31, 0x71, 0x10, 0x0b, 0x81, 0x7c, 0x7c, - 0x41, 0x76, 0xdf, 0x74, 0xdb, 0x7c, 0x31, 0x1d, 0x4a, 0x16, 0x4a, 0x88, 0x52, 0xfe, 0x05, 0x09, - 0xee, 0x6a, 0xea, 0x9a, 0xc7, 0xf8, 0x85, 0x16, 0xaf, 0x60, 0xed, 0xa9, 0x04, 0x5a, 0x68, 0x21, - 0xec, 0xfd, 0x1d, 0x85, 0x65, 0x52, 0x44, 0xa4, 0x7d, 0x0e, 0xf6, 0x47, 0x85, 0x15, 0x6a, 0x7a, - 0x0a, 0x86, 0xa2, 0xfb, 0xc7, 0x7b, 0x2f, 0x09, 0x06, 0x23, 0x7b, 0xc8, 0x72, 0xb9, 0x71, 0x6a, - 0x7c, 0xf5, 0x94, 0x20, 0xed, 0xa3, 0xf2, 0xf2, 0xba, 0x6b, 0xed, 0x04, 0x94, 0xf2, 0x37, 0x25, - 0x98, 0x8a, 0xf6, 0x10, 0x2a, 0xb4, 0xee, 0xf8, 0xf8, 0x6e, 0x9b, 0x21, 0xbd, 0x2e, 0xc1, 0xdd, - 0xbb, 0x0c, 0x83, 0xeb, 0xec, 0x06, 0x8c, 0x85, 0xd6, 0xf7, 0x22, 0x51, 0x08, 0xe3, 0x3a, 0xda, - 0xb9, 0x2a, 0xf6, 0x97, 0xb3, 0x07, 0x89, 0x1e, 0xbf, 0xfa, 0x9d, 0xc9, 0xd1, 0xe6, 0x67, 0xae, - 0x32, 0xda, 0xbc, 0x26, 0xbf, 0x8d, 0x56, 0xf8, 0xbb, 0x12, 0x3c, 0x10, 0x1d, 0x6a, 0x8b, 0xf2, - 0xfa, 0x1d, 0x34, 0x75, 0xff, 0x5e, 0x82, 0xa3, 0xdd, 0x8c, 0x87, 0xcf, 0xe1, 0x26, 0x8c, 0x06, - 0x6b, 0x85, 0xc6, 0x29, 0xec, 0x69, 0x05, 0xc2, 0x7c, 0x01, 0xf9, 0xdc, 0xee, 0xc0, 0x5c, 0xfd, - 0x4b, 0x89, 0xfb, 0x6f, 0xd8, 0x4c, 0xfc, 0x89, 0x89, 0x6e, 0x34, 0xf7, 0x38, 0x31, 0xa1, 0xcd, - 0xe6, 0xc1, 0xc8, 0x66, 0x73, 0x8b, 0x29, 0x8f, 0xdd, 0xa6, 0x68, 0x74, 0x95, 0x47, 0xeb, 0x16, - 0x3b, 0x7d, 0x1f, 0x84, 0xd1, 0x16, 0xae, 0xc5, 0x03, 0x53, 0x0f, 0x9e, 0xa5, 0xa0, 0x66, 0xe7, - 0x91, 0xff, 0x8d, 0x04, 0x93, 0xb4, 0xe3, 0x16, 0xd3, 0xf8, 0x4e, 0xd6, 0x67, 0x8d, 0xc7, 0xde, - 0x96, 0xc3, 0xe2, 0x8a, 0x5d, 0x84, 0x3e, 0x66, 0xa1, 0x5c, 0x97, 0x7b, 0x30, 0x71, 0xce, 0x20, - 0x88, 0xf5, 0xf3, 0x62, 0x7c, 0xad, 0x03, 0xc6, 0x1d, 0xd2, 0xe3, 0xed, 0x0a, 0x18, 0xaf, 0x8a, - 0x58, 0xdf, 0x7a, 0x18, 0x5c, 0x6f, 0xda, 0x6d, 0x8b, 0xf5, 0x4c, 0x89, 0x6f, 0x53, 0x50, 0xf7, - 0xc7, 0xd4, 0x21, 0xa8, 0xff, 0x88, 0xcf, 0x91, 0x1f, 0xd4, 0x3b, 0x8c, 0xe7, 0x9d, 0x18, 0xd4, - 0xff, 0x2c, 0x06, 0x07, 0xe8, 0xd8, 0xc2, 0xdb, 0x4a, 0x6f, 0xc3, 0xdc, 0x94, 0x01, 0xb9, 0x8e, - 0x56, 0xbe, 0x5d, 0xb1, 0x28, 0xeb, 0x3a, 0xda, 0xe5, 0x48, 0x46, 0x2f, 0x03, 0xaa, 0x44, 0xb6, - 0x28, 0x69, 0x07, 0xf1, 0x3d, 0x77, 0x50, 0x09, 0x6d, 0x9a, 0xb5, 0xb0, 0xae, 0xc4, 0x9e, 0xad, - 0xeb, 0x15, 0x09, 0xf2, 0xad, 0x66, 0x80, 0x5b, 0x93, 0x0e, 0xe3, 0x91, 0x83, 0x9c, 0x46, 0x83, - 0x7a, 0xa8, 0x9b, 0x7d, 0xc2, 0x06, 0xf7, 0xdf, 0xef, 0xe0, 0x3b, 0x1a, 0x00, 0x7e, 0x43, 0xa4, - 0x38, 0xdf, 0x61, 0x9a, 0x57, 0x63, 0x3f, 0xfa, 0x6e, 0xff, 0xab, 0x4d, 0x19, 0xe6, 0x1d, 0xb1, - 0xb0, 0xfb, 0xb6, 0x04, 0x13, 0x6d, 0xc4, 0x7e, 0x27, 0x97, 0x17, 0xdb, 0x6d, 0x4d, 0xea, 0x76, - 0xaf, 0x22, 0x8f, 0x73, 0x7f, 0x8c, 0xbe, 0x2c, 0x12, 0xda, 0x45, 0x68, 0xf5, 0x7a, 0xb4, 0xfc, - 0x34, 0x1c, 0x6c, 0x49, 0xc5, 0x65, 0x2b, 0x40, 0x62, 0x5b, 0x77, 0x3d, 0x2e, 0xd6, 0x7d, 0xed, - 0xc4, 0x6a, 0xa0, 0xa6, 0x34, 0x32, 0x82, 0x2c, 0x65, 0xbd, 0x66, 0x59, 0x06, 0x17, 0x43, 0xbe, - 0x08, 0x23, 0x21, 0x18, 0xef, 0xe4, 0x24, 0x24, 0x6c, 0x8b, 0x7f, 0x10, 0x28, 0x73, 0xec, 0x50, - 0xdb, 0x03, 0x2a, 0xcb, 0x32, 0xf8, 0xb0, 0x29, 0xbe, 0x3c, 0x06, 0x88, 0x31, 0xa3, 0x67, 0x55, - 0xa2, 0x8b, 0x75, 0x18, 0x8d, 0x40, 0x79, 0x27, 0x6f, 0xe9, 0x1c, 0xec, 0xd8, 0xf7, 0xf7, 0x43, - 0x92, 0x72, 0x45, 0x9f, 0x93, 0x00, 0x42, 0x77, 0x07, 0xa6, 0xdb, 0xb1, 0x69, 0xbd, 0x9b, 0x93, - 0x9f, 0xe9, 0x1a, 0x9f, 0xd7, 0xdd, 0x47, 0x7f, 0xf2, 0x5f, 0x7f, 0xef, 0x67, 0x62, 0xf7, 0x22, - 0x79, 0xa6, 0xcd, 0x3e, 0x52, 0xc8, 0x19, 0xbf, 0x12, 0xf9, 0x1a, 0xcd, 0xc3, 0xdd, 0x75, 0x25, - 0x24, 0x9b, 0xee, 0x16, 0x9d, 0x0b, 0x76, 0x96, 0x0a, 0x76, 0x02, 0x3d, 0xd6, 0x59, 0xb0, 0x99, - 0x0f, 0x45, 0xbd, 0xeb, 0x23, 0xe8, 0xdb, 0x12, 0x8c, 0xb5, 0xda, 0x26, 0x40, 0xa7, 0xbb, 0x93, - 0xa2, 0xb9, 0x20, 0xcb, 0x9f, 0xd9, 0x03, 0x25, 0x1f, 0xca, 0x02, 0x1d, 0xca, 0x2c, 0x7a, 0x7c, - 0x0f, 0x43, 0x99, 0x09, 0x1f, 0x61, 0xfd, 0x1f, 0x09, 0x0e, 0xef, 0xba, 0x84, 0x46, 0xb3, 0xdd, - 0x49, 0xb9, 0x4b, 0xe5, 0x99, 0x2f, 0xbe, 0x15, 0x16, 0x7c, 0xc4, 0x4f, 0xd0, 0x11, 0x5f, 0x44, - 0x8b, 0x7b, 0x19, 0x71, 0xcb, 0x73, 0x42, 0xf4, 0xdb, 0x52, 0xe4, 0x42, 0xef, 0xee, 0xe6, 0xd4, - 0xb4, 0x76, 0xec, 0xe0, 0x18, 0xcd, 0x4b, 0x02, 0xf9, 0x29, 0x3a, 0x04, 0x05, 0xad, 0xbd, 0xc5, - 0x49, 0x9b, 0xf9, 0x50, 0x34, 0xa9, 0x7c, 0x04, 0xfd, 0x2f, 0xa9, 0xf5, 0x0d, 0xda, 0x53, 0xbb, - 0x8a, 0xd8, 0x7e, 0x5d, 0x9c, 0x3f, 0xdd, 0x3b, 0x21, 0x1f, 0x64, 0x8d, 0x0e, 0xb2, 0x8a, 0xf0, - 0xed, 0x1e, 0x64, 0xcb, 0x49, 0x44, 0xbf, 0x23, 0xc1, 0x58, 0xab, 0x15, 0x5d, 0x07, 0xb7, 0xdc, - 0x65, 0x2d, 0xdb, 0xc1, 0x2d, 0x77, 0x5b, 0x3e, 0xca, 0xef, 0xa5, 0x83, 0x3f, 0x89, 0x8e, 0xb7, - 0x1b, 0xfc, 0xae, 0xb3, 0x48, 0x7c, 0x71, 0xd7, 0x95, 0x4f, 0x07, 0x5f, 0xec, 0x66, 0x15, 0xd8, - 0xc1, 0x17, 0xbb, 0x5a, 0x78, 0x75, 0xf6, 0x45, 0x7f, 0x64, 0x5d, 0x4e, 0xa3, 0x8b, 0xbe, 0x21, - 0xc1, 0x60, 0xa4, 0x2e, 0x47, 0x8f, 0xee, 0x2a, 0x68, 0xab, 0x55, 0x54, 0xfe, 0x58, 0x2f, 0x24, - 0x7c, 0x2c, 0x8b, 0x74, 0x2c, 0x73, 0x68, 0x76, 0x2f, 0x63, 0x89, 0x5e, 0x07, 0x78, 0x45, 0x82, - 0xd1, 0x16, 0x25, 0x6c, 0x07, 0x2f, 0x6c, 0x5f, 0xba, 0xe7, 0x4f, 0xf7, 0x4e, 0xc8, 0x47, 0x75, - 0x8e, 0x8e, 0xea, 0x03, 0xe8, 0xfd, 0x7b, 0x19, 0x55, 0x28, 0x3f, 0xdf, 0x0c, 0x6e, 0xe8, 0x85, - 0xfa, 0x41, 0x27, 0x7b, 0x14, 0x4c, 0x0c, 0xe8, 0x54, 0xcf, 0x74, 0x7c, 0x3c, 0x4f, 0xd2, 0xf1, - 0x3c, 0x81, 0x56, 0xdf, 0xda, 0x78, 0x9a, 0xd3, 0xfa, 0xd7, 0x9a, 0x5f, 0x56, 0xde, 0xdd, 0x8a, - 0x5a, 0x16, 0xab, 0xf9, 0xc7, 0x7a, 0xa2, 0xe1, 0x83, 0x3a, 0x4d, 0x07, 0x75, 0x0c, 0x3d, 0xd2, - 0x6e, 0x50, 0xa1, 0x6b, 0x98, 0xba, 0xb9, 0x65, 0xcd, 0x7c, 0x88, 0x95, 0xc0, 0x1f, 0x41, 0x3f, - 0x21, 0xae, 0xc0, 0x1d, 0xd9, 0xb5, 0xdf, 0x50, 0x1d, 0x9b, 0x7f, 0xa0, 0x0b, 0x4c, 0x2e, 0xd7, - 0xbd, 0x54, 0xae, 0x09, 0x74, 0xa8, 0x9d, 0x5c, 0xa4, 0x96, 0x45, 0x9f, 0x94, 0xfc, 0x5b, 0xb3, - 0x47, 0x77, 0xe7, 0x1d, 0x2e, 0x76, 0xf3, 0x0f, 0x76, 0x85, 0xcb, 0x25, 0xb9, 0x8f, 0x4a, 0x32, - 0x85, 0x26, 0xda, 0x4a, 0xc2, 0x4a, 0xdf, 0xdb, 0x7d, 0xe7, 0xe5, 0xb3, 0xa3, 0x30, 0xd9, 0xa6, - 0x47, 0xef, 0xfa, 0x9e, 0xee, 0xc2, 0x75, 0x78, 0x69, 0xbe, 0xcb, 0x33, 0xd7, 0x37, 0x13, 0x80, - 0x96, 0xdd, 0xea, 0x9c, 0x83, 0xd9, 0x3f, 0x73, 0xe4, 0xee, 0xd8, 0xf0, 0x8e, 0xa8, 0xf4, 0x96, - 0xde, 0x11, 0x5d, 0x8e, 0xbc, 0x75, 0x19, 0xeb, 0xed, 0x5d, 0xef, 0xae, 0x5f, 0xbd, 0x8c, 0xbf, - 0x2d, 0xaf, 0x5e, 0xb6, 0xbe, 0xbb, 0x9f, 0xf8, 0x21, 0xbe, 0x42, 0x94, 0x7c, 0x7b, 0x5e, 0x21, - 0x1a, 0x87, 0x3e, 0xfe, 0x52, 0x76, 0x1f, 0x3b, 0x82, 0x67, 0x2d, 0x74, 0x02, 0x92, 0xc1, 0xff, - 0x0f, 0xed, 0xe2, 0x3a, 0x34, 0xc3, 0xe6, 0x17, 0x6f, 0xbf, 0x1e, 0x87, 0xec, 0xb2, 0x5b, 0x2d, - 0x55, 0x74, 0xef, 0x0e, 0xd9, 0x9e, 0xdd, 0xfe, 0xad, 0xab, 0xb9, 0x5b, 0x37, 0x27, 0x87, 0x98, - 0xca, 0x6e, 0xa7, 0xa2, 0x6a, 0x30, 0xdc, 0xf0, 0x7d, 0x03, 0x6e, 0x9a, 0xf3, 0x7b, 0xf9, 0xcc, - 0x42, 0x03, 0x2b, 0x99, 0xbe, 0x28, 0x13, 0x72, 0x10, 0x74, 0xbd, 0xb5, 0x37, 0xb0, 0x9b, 0xdd, - 0xe7, 0xef, 0xe4, 0x4b, 0xc8, 0x6c, 0x0a, 0xbf, 0x19, 0x83, 0xcc, 0xb2, 0x2b, 0x8a, 0x3a, 0xfc, - 0xe7, 0xf6, 0x15, 0xbb, 0x53, 0xfe, 0x87, 0x64, 0xe2, 0xdd, 0x39, 0x42, 0xf4, 0xe3, 0x32, 0xdf, - 0x89, 0xd3, 0x38, 0x5c, 0xc4, 0x55, 0xdd, 0xf4, 0xcb, 0x4a, 0xfc, 0xee, 0x9b, 0x42, 0x3f, 0x42, - 0x6f, 0x0a, 0x05, 0x33, 0x9c, 0xd8, 0xcb, 0x0c, 0xff, 0x56, 0x0c, 0x06, 0x97, 0xdd, 0xea, 0x25, - 0xb3, 0xf2, 0xae, 0xab, 0xbc, 0x15, 0x57, 0xb9, 0xdd, 0xa5, 0xd9, 0xff, 0x0b, 0x00, 0x00, 0xff, - 0xff, 0xb6, 0xbf, 0x71, 0x89, 0xa7, 0x95, 0x00, 0x00, + // 9250 bytes of a gzipped FileDescriptorSet + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6b, 0x74, 0x1c, 0xe7, + 0x75, 0x18, 0x67, 0x1f, 0xc0, 0xee, 0x5d, 0x3c, 0x16, 0x1f, 0x40, 0x68, 0xb9, 0x24, 0x01, 0x6a, + 0x24, 0x4b, 0x14, 0x25, 0x01, 0x12, 0x45, 0x52, 0xe4, 0x32, 0xb6, 0x8c, 0x05, 0x96, 0x20, 0x48, + 0xbc, 0x34, 0x00, 0x29, 0xd9, 0x4e, 0x3a, 0x67, 0x30, 0xfb, 0x61, 0x31, 0xe2, 0xee, 0xcc, 0x68, + 0x66, 0x96, 0x04, 0x68, 0xfb, 0x1c, 0x25, 0x7e, 0x34, 0x56, 0x9b, 0xda, 0x79, 0x9c, 0xd4, 0x76, + 0x2c, 0xd7, 0x8f, 0xb6, 0x4e, 0x9d, 0xb6, 0x79, 0x38, 0x4d, 0x9b, 0xb6, 0xa7, 0x75, 0x5a, 0x27, + 0x71, 0xda, 0xa6, 0xc7, 0x3a, 0x75, 0xdb, 0x34, 0xa7, 0xa1, 0x53, 0xd9, 0xa7, 0x55, 0x5c, 0xb7, + 0x49, 0x59, 0x35, 0x7d, 0xe8, 0x47, 0x7a, 0xbe, 0xd7, 0x3c, 0xf6, 0x81, 0x59, 0x40, 0xa4, 0x6c, + 0x9d, 0xe8, 0x17, 0xf6, 0xbb, 0x73, 0xef, 0xfd, 0xee, 0xbd, 0xdf, 0xbd, 0xf7, 0xbb, 0xdf, 0x63, + 0x06, 0xf0, 0x73, 0xe7, 0xe1, 0x58, 0xcd, 0xb2, 0x6a, 0x75, 0x3c, 0x6d, 0x3b, 0x96, 0x67, 0x6d, + 0x34, 0x37, 0xa7, 0xab, 0xd8, 0xd5, 0x1d, 0xc3, 0xf6, 0x2c, 0x67, 0x8a, 0xc2, 0xd0, 0x30, 0xc3, + 0x98, 0x12, 0x18, 0xf2, 0x12, 0x8c, 0x5c, 0x30, 0xea, 0x78, 0xce, 0x47, 0x5c, 0xc3, 0x1e, 0x3a, + 0x0b, 0xa9, 0x4d, 0xa3, 0x8e, 0x0b, 0xd2, 0xb1, 0xe4, 0xf1, 0xdc, 0xc9, 0xfb, 0xa7, 0x5a, 0x88, + 0xa6, 0xa2, 0x14, 0xab, 0x04, 0xac, 0x50, 0x0a, 0xf9, 0x3b, 0x29, 0x18, 0xed, 0xf0, 0x14, 0x21, + 0x48, 0x99, 0x5a, 0x83, 0x70, 0x94, 0x8e, 0x67, 0x15, 0xfa, 0x1b, 0x15, 0xa0, 0xdf, 0xd6, 0xf4, + 0x6b, 0x5a, 0x0d, 0x17, 0x12, 0x14, 0x2c, 0x9a, 0x68, 0x02, 0xa0, 0x8a, 0x6d, 0x6c, 0x56, 0xb1, + 0xa9, 0xef, 0x14, 0x92, 0xc7, 0x92, 0xc7, 0xb3, 0x4a, 0x08, 0x82, 0x1e, 0x86, 0x11, 0xbb, 0xb9, + 0x51, 0x37, 0x74, 0x35, 0x84, 0x06, 0xc7, 0x92, 0xc7, 0xd3, 0x4a, 0x9e, 0x3d, 0x98, 0x0b, 0x90, + 0x1f, 0x84, 0xe1, 0x1b, 0x58, 0xbb, 0x16, 0x46, 0xcd, 0x51, 0xd4, 0x21, 0x02, 0x0e, 0x21, 0xce, + 0xc2, 0x40, 0x03, 0xbb, 0xae, 0x56, 0xc3, 0xaa, 0xb7, 0x63, 0xe3, 0x42, 0x8a, 0x6a, 0x7f, 0xac, + 0x4d, 0xfb, 0x56, 0xcd, 0x73, 0x9c, 0x6a, 0x7d, 0xc7, 0xc6, 0x68, 0x06, 0xb2, 0xd8, 0x6c, 0x36, + 0x18, 0x87, 0x74, 0x17, 0xfb, 0x55, 0xcc, 0x66, 0xa3, 0x95, 0x4b, 0x86, 0x90, 0x71, 0x16, 0xfd, + 0x2e, 0x76, 0xae, 0x1b, 0x3a, 0x2e, 0xf4, 0x51, 0x06, 0x0f, 0xb6, 0x31, 0x58, 0x63, 0xcf, 0x5b, + 0x79, 0x08, 0x3a, 0x34, 0x0b, 0x59, 0xbc, 0xed, 0x61, 0xd3, 0x35, 0x2c, 0xb3, 0xd0, 0x4f, 0x99, + 0xbc, 0xa3, 0xc3, 0x28, 0xe2, 0x7a, 0xb5, 0x95, 0x45, 0x40, 0x87, 0xce, 0x40, 0xbf, 0x65, 0x7b, + 0x86, 0x65, 0xba, 0x85, 0xcc, 0x31, 0xe9, 0x78, 0xee, 0xe4, 0x91, 0x8e, 0x8e, 0xb0, 0xc2, 0x70, + 0x14, 0x81, 0x8c, 0x16, 0x20, 0xef, 0x5a, 0x4d, 0x47, 0xc7, 0xaa, 0x6e, 0x55, 0xb1, 0x6a, 0x98, + 0x9b, 0x56, 0x21, 0x4b, 0x19, 0x4c, 0xb6, 0x2b, 0x42, 0x11, 0x67, 0xad, 0x2a, 0x5e, 0x30, 0x37, + 0x2d, 0x65, 0xc8, 0x8d, 0xb4, 0xd1, 0x38, 0xf4, 0xb9, 0x3b, 0xa6, 0xa7, 0x6d, 0x17, 0x06, 0xa8, + 0x87, 0xf0, 0x96, 0xfc, 0xeb, 0x7d, 0x30, 0xdc, 0x8b, 0x8b, 0x9d, 0x87, 0xf4, 0x26, 0xd1, 0xb2, + 0x90, 0xd8, 0x8b, 0x0d, 0x18, 0x4d, 0xd4, 0x88, 0x7d, 0xfb, 0x34, 0xe2, 0x0c, 0xe4, 0x4c, 0xec, + 0x7a, 0xb8, 0xca, 0x3c, 0x22, 0xd9, 0xa3, 0x4f, 0x01, 0x23, 0x6a, 0x77, 0xa9, 0xd4, 0xbe, 0x5c, + 0xea, 0x59, 0x18, 0xf6, 0x45, 0x52, 0x1d, 0xcd, 0xac, 0x09, 0xdf, 0x9c, 0x8e, 0x93, 0x64, 0xaa, + 0x22, 0xe8, 0x14, 0x42, 0xa6, 0x0c, 0xe1, 0x48, 0x1b, 0xcd, 0x01, 0x58, 0x26, 0xb6, 0x36, 0xd5, + 0x2a, 0xd6, 0xeb, 0x85, 0x4c, 0x17, 0x2b, 0xad, 0x10, 0x94, 0x36, 0x2b, 0x59, 0x0c, 0xaa, 0xd7, + 0xd1, 0xb9, 0xc0, 0xd5, 0xfa, 0xbb, 0x78, 0xca, 0x12, 0x0b, 0xb2, 0x36, 0x6f, 0xbb, 0x02, 0x43, + 0x0e, 0x26, 0x7e, 0x8f, 0xab, 0x5c, 0xb3, 0x2c, 0x15, 0x62, 0x2a, 0x56, 0x33, 0x85, 0x93, 0x31, + 0xc5, 0x06, 0x9d, 0x70, 0x13, 0xdd, 0x07, 0x3e, 0x40, 0xa5, 0x6e, 0x05, 0x34, 0x0b, 0x0d, 0x08, + 0xe0, 0xb2, 0xd6, 0xc0, 0xc5, 0x9b, 0x30, 0x14, 0x35, 0x0f, 0x1a, 0x83, 0xb4, 0xeb, 0x69, 0x8e, + 0x47, 0xbd, 0x30, 0xad, 0xb0, 0x06, 0xca, 0x43, 0x12, 0x9b, 0x55, 0x9a, 0xe5, 0xd2, 0x0a, 0xf9, + 0x89, 0xde, 0x1d, 0x28, 0x9c, 0xa4, 0x0a, 0x3f, 0xd0, 0x3e, 0xa2, 0x11, 0xce, 0xad, 0x7a, 0x17, + 0x9f, 0x84, 0xc1, 0x88, 0x02, 0xbd, 0x76, 0x2d, 0x7f, 0x00, 0x0e, 0x76, 0x64, 0x8d, 0x9e, 0x85, + 0xb1, 0xa6, 0x69, 0x98, 0x1e, 0x76, 0x6c, 0x07, 0x13, 0x8f, 0x65, 0x5d, 0x15, 0xfe, 0x4b, 0x7f, + 0x17, 0x9f, 0xbb, 0x12, 0xc6, 0x66, 0x5c, 0x94, 0xd1, 0x66, 0x3b, 0xf0, 0x44, 0x36, 0xf3, 0x6a, + 0x7f, 0xfe, 0x85, 0x17, 0x5e, 0x78, 0x21, 0x21, 0x7f, 0xb2, 0x0f, 0xc6, 0x3a, 0xc5, 0x4c, 0xc7, + 0xf0, 0x1d, 0x87, 0x3e, 0xb3, 0xd9, 0xd8, 0xc0, 0x0e, 0x35, 0x52, 0x5a, 0xe1, 0x2d, 0x34, 0x03, + 0xe9, 0xba, 0xb6, 0x81, 0xeb, 0x85, 0xd4, 0x31, 0xe9, 0xf8, 0xd0, 0xc9, 0x87, 0x7b, 0x8a, 0xca, + 0xa9, 0x45, 0x42, 0xa2, 0x30, 0x4a, 0xf4, 0x2e, 0x48, 0xf1, 0x14, 0x4d, 0x38, 0x9c, 0xe8, 0x8d, + 0x03, 0x89, 0x25, 0x85, 0xd2, 0xa1, 0xc3, 0x90, 0x25, 0x7f, 0x99, 0x6f, 0xf4, 0x51, 0x99, 0x33, + 0x04, 0x40, 0xfc, 0x02, 0x15, 0x21, 0x43, 0xc3, 0xa4, 0x8a, 0xc5, 0xd4, 0xe6, 0xb7, 0x89, 0x63, + 0x55, 0xf1, 0xa6, 0xd6, 0xac, 0x7b, 0xea, 0x75, 0xad, 0xde, 0xc4, 0xd4, 0xe1, 0xb3, 0xca, 0x00, + 0x07, 0x5e, 0x25, 0x30, 0x34, 0x09, 0x39, 0x16, 0x55, 0x86, 0x59, 0xc5, 0xdb, 0x34, 0x7b, 0xa6, + 0x15, 0x16, 0x68, 0x0b, 0x04, 0x42, 0xba, 0x7f, 0xce, 0xb5, 0x4c, 0xe1, 0x9a, 0xb4, 0x0b, 0x02, + 0xa0, 0xdd, 0x3f, 0xd9, 0x9a, 0xb8, 0x8f, 0x76, 0x56, 0xaf, 0xd5, 0xa7, 0xe4, 0x5f, 0x4b, 0x40, + 0x8a, 0xe6, 0x8b, 0x61, 0xc8, 0xad, 0xbf, 0x67, 0xb5, 0xa2, 0xce, 0xad, 0x5c, 0x29, 0x2f, 0x56, + 0xf2, 0x12, 0x1a, 0x02, 0xa0, 0x80, 0x0b, 0x8b, 0x2b, 0x33, 0xeb, 0xf9, 0x84, 0xdf, 0x5e, 0x58, + 0x5e, 0x3f, 0x73, 0x2a, 0x9f, 0xf4, 0x09, 0xae, 0x30, 0x40, 0x2a, 0x8c, 0xf0, 0xc4, 0xc9, 0x7c, + 0x1a, 0xe5, 0x61, 0x80, 0x31, 0x58, 0x78, 0xb6, 0x32, 0x77, 0xe6, 0x54, 0xbe, 0x2f, 0x0a, 0x79, + 0xe2, 0x64, 0xbe, 0x1f, 0x0d, 0x42, 0x96, 0x42, 0xca, 0x2b, 0x2b, 0x8b, 0xf9, 0x8c, 0xcf, 0x73, + 0x6d, 0x5d, 0x59, 0x58, 0x9e, 0xcf, 0x67, 0x7d, 0x9e, 0xf3, 0xca, 0xca, 0x95, 0xd5, 0x3c, 0xf8, + 0x1c, 0x96, 0x2a, 0x6b, 0x6b, 0x33, 0xf3, 0x95, 0x7c, 0xce, 0xc7, 0x28, 0xbf, 0x67, 0xbd, 0xb2, + 0x96, 0x1f, 0x88, 0x88, 0xf5, 0xc4, 0xc9, 0xfc, 0xa0, 0xdf, 0x45, 0x65, 0xf9, 0xca, 0x52, 0x7e, + 0x08, 0x8d, 0xc0, 0x20, 0xeb, 0x42, 0x08, 0x31, 0xdc, 0x02, 0x3a, 0x73, 0x2a, 0x9f, 0x0f, 0x04, + 0x61, 0x5c, 0x46, 0x22, 0x80, 0x33, 0xa7, 0xf2, 0x48, 0x9e, 0x85, 0x34, 0xf5, 0x2e, 0x84, 0x60, + 0x68, 0x71, 0xa6, 0x5c, 0x59, 0x54, 0x57, 0x56, 0xd7, 0x17, 0x56, 0x96, 0x67, 0x16, 0xf3, 0x52, + 0x00, 0x53, 0x2a, 0x4f, 0x5f, 0x59, 0x50, 0x2a, 0x73, 0xf9, 0x44, 0x18, 0xb6, 0x5a, 0x99, 0x59, + 0xaf, 0xcc, 0xe5, 0x93, 0xb2, 0x0e, 0x63, 0x9d, 0xf2, 0x64, 0xc7, 0xc8, 0x08, 0x0d, 0x71, 0xa2, + 0xcb, 0x10, 0x53, 0x5e, 0x6d, 0x43, 0xfc, 0xed, 0x04, 0x8c, 0x76, 0x98, 0x2b, 0x3a, 0x76, 0xf2, + 0x14, 0xa4, 0x99, 0x8b, 0xb2, 0xd9, 0xf3, 0xa1, 0x8e, 0x93, 0x0e, 0x75, 0xd8, 0xb6, 0x19, 0x94, + 0xd2, 0x85, 0x2b, 0x88, 0x64, 0x97, 0x0a, 0x82, 0xb0, 0x68, 0xcb, 0xe9, 0x3f, 0xd2, 0x96, 0xd3, + 0xd9, 0xb4, 0x77, 0xa6, 0x97, 0x69, 0x8f, 0xc2, 0xf6, 0x96, 0xdb, 0xd3, 0x1d, 0x72, 0xfb, 0x79, + 0x18, 0x69, 0x63, 0xd4, 0x73, 0x8e, 0xfd, 0x90, 0x04, 0x85, 0x6e, 0xc6, 0x89, 0xc9, 0x74, 0x89, + 0x48, 0xa6, 0x3b, 0xdf, 0x6a, 0xc1, 0x7b, 0xbb, 0x0f, 0x42, 0xdb, 0x58, 0x7f, 0x49, 0x82, 0xf1, + 0xce, 0x95, 0x62, 0x47, 0x19, 0xde, 0x05, 0x7d, 0x0d, 0xec, 0x6d, 0x59, 0xa2, 0x5a, 0x7a, 0xa0, + 0xc3, 0x1c, 0x4c, 0x1e, 0xb7, 0x0e, 0x36, 0xa7, 0x0a, 0x4f, 0xe2, 0xc9, 0x6e, 0xe5, 0x1e, 0x93, + 0xa6, 0x4d, 0xd2, 0x8f, 0x25, 0xe0, 0x60, 0x47, 0xe6, 0x1d, 0x05, 0x3d, 0x0a, 0x60, 0x98, 0x76, + 0xd3, 0x63, 0x15, 0x11, 0x4b, 0xb0, 0x59, 0x0a, 0xa1, 0xc9, 0x8b, 0x24, 0xcf, 0xa6, 0xe7, 0x3f, + 0x4f, 0xd2, 0xe7, 0xc0, 0x40, 0x14, 0xe1, 0x6c, 0x20, 0x68, 0x8a, 0x0a, 0x3a, 0xd1, 0x45, 0xd3, + 0x36, 0xc7, 0x7c, 0x0c, 0xf2, 0x7a, 0xdd, 0xc0, 0xa6, 0xa7, 0xba, 0x9e, 0x83, 0xb5, 0x86, 0x61, + 0xd6, 0xe8, 0x0c, 0x92, 0x29, 0xa5, 0x37, 0xb5, 0xba, 0x8b, 0x95, 0x61, 0xf6, 0x78, 0x4d, 0x3c, + 0x25, 0x14, 0xd4, 0x81, 0x9c, 0x10, 0x45, 0x5f, 0x84, 0x82, 0x3d, 0xf6, 0x29, 0xe4, 0x9f, 0xca, + 0x42, 0x2e, 0x54, 0x57, 0xa3, 0x7b, 0x61, 0xe0, 0x39, 0xed, 0xba, 0xa6, 0x8a, 0xb5, 0x12, 0xb3, + 0x44, 0x8e, 0xc0, 0x56, 0xf9, 0x7a, 0xe9, 0x31, 0x18, 0xa3, 0x28, 0x56, 0xd3, 0xc3, 0x8e, 0xaa, + 0xd7, 0x35, 0xd7, 0xa5, 0x46, 0xcb, 0x50, 0x54, 0x44, 0x9e, 0xad, 0x90, 0x47, 0xb3, 0xe2, 0x09, + 0x3a, 0x0d, 0xa3, 0x94, 0xa2, 0xd1, 0xac, 0x7b, 0x86, 0x5d, 0xc7, 0x2a, 0x59, 0xbd, 0xb9, 0x74, + 0x26, 0xf1, 0x25, 0x1b, 0x21, 0x18, 0x4b, 0x1c, 0x81, 0x48, 0xe4, 0xa2, 0x39, 0x38, 0x4a, 0xc9, + 0x6a, 0xd8, 0xc4, 0x8e, 0xe6, 0x61, 0x15, 0x3f, 0xdf, 0xd4, 0xea, 0xae, 0xaa, 0x99, 0x55, 0x75, + 0x4b, 0x73, 0xb7, 0x0a, 0x63, 0x84, 0x41, 0x39, 0x51, 0x90, 0x94, 0x43, 0x04, 0x71, 0x9e, 0xe3, + 0x55, 0x28, 0xda, 0x8c, 0x59, 0xbd, 0xa8, 0xb9, 0x5b, 0xa8, 0x04, 0xe3, 0x94, 0x8b, 0xeb, 0x39, + 0x86, 0x59, 0x53, 0xf5, 0x2d, 0xac, 0x5f, 0x53, 0x9b, 0xde, 0xe6, 0xd9, 0xc2, 0xe1, 0x70, 0xff, + 0x54, 0xc2, 0x35, 0x8a, 0x33, 0x4b, 0x50, 0xae, 0x78, 0x9b, 0x67, 0xd1, 0x1a, 0x0c, 0x90, 0xc1, + 0x68, 0x18, 0x37, 0xb1, 0xba, 0x69, 0x39, 0x74, 0x6a, 0x1c, 0xea, 0x90, 0x9a, 0x42, 0x16, 0x9c, + 0x5a, 0xe1, 0x04, 0x4b, 0x56, 0x15, 0x97, 0xd2, 0x6b, 0xab, 0x95, 0xca, 0x9c, 0x92, 0x13, 0x5c, + 0x2e, 0x58, 0x0e, 0x71, 0xa8, 0x9a, 0xe5, 0x1b, 0x38, 0xc7, 0x1c, 0xaa, 0x66, 0x09, 0xf3, 0x9e, + 0x86, 0x51, 0x5d, 0x67, 0x3a, 0x1b, 0xba, 0xca, 0xd7, 0x58, 0x6e, 0x21, 0x1f, 0x31, 0x96, 0xae, + 0xcf, 0x33, 0x04, 0xee, 0xe3, 0x2e, 0x3a, 0x07, 0x07, 0x03, 0x63, 0x85, 0x09, 0x47, 0xda, 0xb4, + 0x6c, 0x25, 0x3d, 0x0d, 0xa3, 0xf6, 0x4e, 0x3b, 0x21, 0x8a, 0xf4, 0x68, 0xef, 0xb4, 0x92, 0x3d, + 0x09, 0x63, 0xf6, 0x96, 0xdd, 0x4e, 0x77, 0x22, 0x4c, 0x87, 0xec, 0x2d, 0xbb, 0x95, 0xf0, 0x1d, + 0x74, 0xc1, 0xed, 0x60, 0x5d, 0xf3, 0x70, 0xb5, 0x70, 0x4f, 0x18, 0x3d, 0xf4, 0x00, 0x4d, 0x43, + 0x5e, 0xd7, 0x55, 0x6c, 0x6a, 0x1b, 0x75, 0xac, 0x6a, 0x0e, 0x36, 0x35, 0xb7, 0x30, 0x19, 0x46, + 0x1e, 0xd2, 0xf5, 0x0a, 0x7d, 0x3a, 0x43, 0x1f, 0xa2, 0x13, 0x30, 0x62, 0x6d, 0x3c, 0xa7, 0x33, + 0x97, 0x54, 0x6d, 0x07, 0x6f, 0x1a, 0xdb, 0x85, 0xfb, 0xa9, 0x7d, 0x87, 0xc9, 0x03, 0xea, 0x90, + 0xab, 0x14, 0x8c, 0x1e, 0x82, 0xbc, 0xee, 0x6e, 0x69, 0x8e, 0x4d, 0x73, 0xb2, 0x6b, 0x6b, 0x3a, + 0x2e, 0xbc, 0x83, 0xa1, 0x32, 0xf8, 0xb2, 0x00, 0x93, 0x90, 0x70, 0x6f, 0x18, 0x9b, 0x9e, 0xe0, + 0xf8, 0x20, 0x0b, 0x09, 0x0a, 0xe3, 0xdc, 0x8e, 0x43, 0x9e, 0x98, 0x22, 0xd2, 0xf1, 0x71, 0x8a, + 0x36, 0x64, 0x6f, 0xd9, 0xe1, 0x7e, 0xef, 0x83, 0x41, 0x82, 0x19, 0x74, 0xfa, 0x10, 0x2b, 0xc8, + 0xec, 0xad, 0x50, 0x8f, 0xa7, 0x60, 0x9c, 0x20, 0x35, 0xb0, 0xa7, 0x55, 0x35, 0x4f, 0x0b, 0x61, + 0x3f, 0x42, 0xb1, 0x89, 0xdd, 0x97, 0xf8, 0xc3, 0x88, 0x9c, 0x4e, 0x73, 0x63, 0xc7, 0xf7, 0xac, + 0x47, 0x99, 0x9c, 0x04, 0x26, 0x7c, 0xeb, 0xae, 0x15, 0xdd, 0x72, 0x09, 0x06, 0xc2, 0x8e, 0x8f, + 0xb2, 0xc0, 0x5c, 0x3f, 0x2f, 0x91, 0x2a, 0x68, 0x76, 0x65, 0x8e, 0xd4, 0x2f, 0xef, 0xad, 0xe4, + 0x13, 0xa4, 0x8e, 0x5a, 0x5c, 0x58, 0xaf, 0xa8, 0xca, 0x95, 0xe5, 0xf5, 0x85, 0xa5, 0x4a, 0x3e, + 0x19, 0x2a, 0xd8, 0x2f, 0xa5, 0x32, 0x0f, 0xe4, 0x1f, 0x94, 0x5f, 0x4e, 0xc0, 0x50, 0x74, 0x05, + 0x86, 0x7e, 0x08, 0xee, 0x11, 0xdb, 0x25, 0x2e, 0xf6, 0xd4, 0x1b, 0x86, 0x43, 0x23, 0xb2, 0xa1, + 0xb1, 0xd9, 0xd1, 0xf7, 0x89, 0x31, 0x8e, 0xb5, 0x86, 0xbd, 0x67, 0x0c, 0x87, 0xc4, 0x5b, 0x43, + 0xf3, 0xd0, 0x22, 0x4c, 0x9a, 0x96, 0xea, 0x7a, 0x9a, 0x59, 0xd5, 0x9c, 0xaa, 0x1a, 0x6c, 0x54, + 0xa9, 0x9a, 0xae, 0x63, 0xd7, 0xb5, 0xd8, 0x4c, 0xe8, 0x73, 0x39, 0x62, 0x5a, 0x6b, 0x1c, 0x39, + 0x98, 0x22, 0x66, 0x38, 0x6a, 0x8b, 0xff, 0x26, 0xbb, 0xf9, 0xef, 0x61, 0xc8, 0x36, 0x34, 0x5b, + 0xc5, 0xa6, 0xe7, 0xec, 0xd0, 0xba, 0x3b, 0xa3, 0x64, 0x1a, 0x9a, 0x5d, 0x21, 0xed, 0x37, 0x65, + 0xf9, 0x73, 0x29, 0x95, 0xc9, 0xe4, 0xb3, 0x97, 0x52, 0x99, 0x6c, 0x1e, 0xe4, 0x57, 0x92, 0x30, + 0x10, 0xae, 0xc3, 0xc9, 0xb2, 0x46, 0xa7, 0x53, 0x96, 0x44, 0x93, 0xda, 0x7d, 0xbb, 0x56, 0xed, + 0x53, 0xb3, 0x64, 0x2e, 0x2b, 0xf5, 0xb1, 0xea, 0x58, 0x61, 0x94, 0xa4, 0x8e, 0x20, 0xce, 0x86, + 0x59, 0x35, 0x92, 0x51, 0x78, 0x0b, 0xcd, 0x43, 0xdf, 0x73, 0x2e, 0xe5, 0xdd, 0x47, 0x79, 0xdf, + 0xbf, 0x3b, 0xef, 0x4b, 0x6b, 0x94, 0x79, 0xf6, 0xd2, 0x9a, 0xba, 0xbc, 0xa2, 0x2c, 0xcd, 0x2c, + 0x2a, 0x9c, 0x1c, 0x1d, 0x82, 0x54, 0x5d, 0xbb, 0xb9, 0x13, 0x9d, 0xf5, 0x28, 0xa8, 0xd7, 0x41, + 0x38, 0x04, 0xa9, 0x1b, 0x58, 0xbb, 0x16, 0x9d, 0x6b, 0x28, 0xe8, 0x2e, 0x06, 0xc3, 0x34, 0xa4, + 0xa9, 0xbd, 0x10, 0x00, 0xb7, 0x58, 0xfe, 0x00, 0xca, 0x40, 0x6a, 0x76, 0x45, 0x21, 0x01, 0x91, + 0x87, 0x01, 0x06, 0x55, 0x57, 0x17, 0x2a, 0xb3, 0x95, 0x7c, 0x42, 0x3e, 0x0d, 0x7d, 0xcc, 0x08, + 0x24, 0x58, 0x7c, 0x33, 0xe4, 0x0f, 0xf0, 0x26, 0xe7, 0x21, 0x89, 0xa7, 0x57, 0x96, 0xca, 0x15, + 0x25, 0x9f, 0x88, 0x0e, 0x75, 0x2a, 0x9f, 0x96, 0x5d, 0x18, 0x08, 0x17, 0xe2, 0x6f, 0xce, 0x22, + 0xfb, 0xab, 0x12, 0xe4, 0x42, 0x85, 0x35, 0xa9, 0x88, 0xb4, 0x7a, 0xdd, 0xba, 0xa1, 0x6a, 0x75, + 0x43, 0x73, 0xb9, 0x6b, 0x00, 0x05, 0xcd, 0x10, 0x48, 0xaf, 0x43, 0xf7, 0x26, 0x85, 0x48, 0x3a, + 0xdf, 0x27, 0x7f, 0x56, 0x82, 0x7c, 0x6b, 0x65, 0xdb, 0x22, 0xa6, 0xf4, 0xfd, 0x14, 0x53, 0xfe, + 0x8c, 0x04, 0x43, 0xd1, 0x72, 0xb6, 0x45, 0xbc, 0x7b, 0xbf, 0xaf, 0xe2, 0xfd, 0x61, 0x02, 0x06, + 0x23, 0x45, 0x6c, 0xaf, 0xd2, 0x3d, 0x0f, 0x23, 0x46, 0x15, 0x37, 0x6c, 0xcb, 0xc3, 0xa6, 0xbe, + 0xa3, 0xd6, 0xf1, 0x75, 0x5c, 0x2f, 0xc8, 0x34, 0x69, 0x4c, 0xef, 0x5e, 0x26, 0x4f, 0x2d, 0x04, + 0x74, 0x8b, 0x84, 0xac, 0x34, 0xba, 0x30, 0x57, 0x59, 0x5a, 0x5d, 0x59, 0xaf, 0x2c, 0xcf, 0xbe, + 0x47, 0xbd, 0xb2, 0x7c, 0x79, 0x79, 0xe5, 0x99, 0x65, 0x25, 0x6f, 0xb4, 0xa0, 0xdd, 0xc5, 0xb0, + 0x5f, 0x85, 0x7c, 0xab, 0x50, 0xe8, 0x1e, 0xe8, 0x24, 0x56, 0xfe, 0x00, 0x1a, 0x85, 0xe1, 0xe5, + 0x15, 0x75, 0x6d, 0x61, 0xae, 0xa2, 0x56, 0x2e, 0x5c, 0xa8, 0xcc, 0xae, 0xaf, 0xb1, 0x8d, 0x0f, + 0x1f, 0x7b, 0x3d, 0x12, 0xe0, 0xf2, 0xa7, 0x93, 0x30, 0xda, 0x41, 0x12, 0x34, 0xc3, 0x97, 0x2c, + 0x6c, 0x15, 0xf5, 0x68, 0x2f, 0xd2, 0x4f, 0x91, 0x9a, 0x61, 0x55, 0x73, 0x3c, 0xbe, 0xc2, 0x79, + 0x08, 0x88, 0x95, 0x4c, 0xcf, 0xd8, 0x34, 0xb0, 0xc3, 0xf7, 0x89, 0xd8, 0x3a, 0x66, 0x38, 0x80, + 0xb3, 0xad, 0xa2, 0x47, 0x00, 0xd9, 0x96, 0x6b, 0x78, 0xc6, 0x75, 0xac, 0x1a, 0xa6, 0xd8, 0x54, + 0x22, 0xeb, 0x9a, 0x94, 0x92, 0x17, 0x4f, 0x16, 0x4c, 0xcf, 0xc7, 0x36, 0x71, 0x4d, 0x6b, 0xc1, + 0x26, 0xc9, 0x3c, 0xa9, 0xe4, 0xc5, 0x13, 0x1f, 0xfb, 0x5e, 0x18, 0xa8, 0x5a, 0x4d, 0x52, 0xec, + 0x31, 0x3c, 0x32, 0x77, 0x48, 0x4a, 0x8e, 0xc1, 0x7c, 0x14, 0x5e, 0xc6, 0x07, 0xbb, 0x59, 0x03, + 0x4a, 0x8e, 0xc1, 0x18, 0xca, 0x83, 0x30, 0xac, 0xd5, 0x6a, 0x0e, 0x61, 0x2e, 0x18, 0xb1, 0x85, + 0xc9, 0x90, 0x0f, 0xa6, 0x88, 0xc5, 0x4b, 0x90, 0x11, 0x76, 0x20, 0x53, 0x35, 0xb1, 0x84, 0x6a, + 0xb3, 0xd5, 0x76, 0xe2, 0x78, 0x56, 0xc9, 0x98, 0xe2, 0xe1, 0xbd, 0x30, 0x60, 0xb8, 0x6a, 0xb0, + 0x39, 0x9f, 0x38, 0x96, 0x38, 0x9e, 0x51, 0x72, 0x86, 0xeb, 0x6f, 0x6c, 0xca, 0x5f, 0x4a, 0xc0, + 0x50, 0xf4, 0x70, 0x01, 0xcd, 0x41, 0xa6, 0x6e, 0xe9, 0x1a, 0x75, 0x2d, 0x76, 0xb2, 0x75, 0x3c, + 0xe6, 0x3c, 0x62, 0x6a, 0x91, 0xe3, 0x2b, 0x3e, 0x65, 0xf1, 0x5f, 0x4b, 0x90, 0x11, 0x60, 0x34, + 0x0e, 0x29, 0x5b, 0xf3, 0xb6, 0x28, 0xbb, 0x74, 0x39, 0x91, 0x97, 0x14, 0xda, 0x26, 0x70, 0xd7, + 0xd6, 0x4c, 0xea, 0x02, 0x1c, 0x4e, 0xda, 0x64, 0x5c, 0xeb, 0x58, 0xab, 0xd2, 0x55, 0x8f, 0xd5, + 0x68, 0x60, 0xd3, 0x73, 0xc5, 0xb8, 0x72, 0xf8, 0x2c, 0x07, 0xa3, 0x87, 0x61, 0xc4, 0x73, 0x34, + 0xa3, 0x1e, 0xc1, 0x4d, 0x51, 0xdc, 0xbc, 0x78, 0xe0, 0x23, 0x97, 0xe0, 0x90, 0xe0, 0x5b, 0xc5, + 0x9e, 0xa6, 0x6f, 0xe1, 0x6a, 0x40, 0xd4, 0x47, 0x77, 0x37, 0xee, 0xe1, 0x08, 0x73, 0xfc, 0xb9, + 0xa0, 0x95, 0x5f, 0x96, 0x60, 0x44, 0xac, 0xd3, 0xaa, 0xbe, 0xb1, 0x96, 0x00, 0x34, 0xd3, 0xb4, + 0xbc, 0xb0, 0xb9, 0xda, 0x5d, 0xb9, 0x8d, 0x6e, 0x6a, 0xc6, 0x27, 0x52, 0x42, 0x0c, 0x8a, 0x0d, + 0x80, 0xe0, 0x49, 0x57, 0xb3, 0x4d, 0x42, 0x8e, 0x9f, 0x1c, 0xd1, 0xe3, 0x47, 0xb6, 0xb2, 0x07, + 0x06, 0x22, 0x0b, 0x3a, 0x34, 0x06, 0xe9, 0x0d, 0x5c, 0x33, 0x4c, 0xbe, 0x1f, 0xcc, 0x1a, 0x62, + 0xff, 0x25, 0xe5, 0xef, 0xbf, 0x94, 0x3f, 0x2e, 0xc1, 0xa8, 0x6e, 0x35, 0x5a, 0xe5, 0x2d, 0xe7, + 0x5b, 0xb6, 0x17, 0xdc, 0x8b, 0xd2, 0x7b, 0xdf, 0x55, 0x33, 0xbc, 0xad, 0xe6, 0xc6, 0x94, 0x6e, + 0x35, 0xa6, 0x6b, 0x56, 0x5d, 0x33, 0x6b, 0xc1, 0xf9, 0x29, 0xfd, 0xa1, 0x3f, 0x5a, 0xc3, 0xe6, + 0xa3, 0x35, 0x2b, 0x74, 0x9a, 0x7a, 0x3e, 0xf8, 0xf9, 0x7f, 0x24, 0xe9, 0x0b, 0x89, 0xe4, 0xfc, + 0x6a, 0xf9, 0xcb, 0x89, 0xe2, 0x3c, 0xeb, 0x6e, 0x55, 0x98, 0x47, 0xc1, 0x9b, 0x75, 0xac, 0x13, + 0x95, 0xe1, 0xbb, 0x0f, 0xc3, 0x58, 0xcd, 0xaa, 0x59, 0x94, 0xe3, 0x34, 0xf9, 0xc5, 0x4f, 0x64, + 0xb3, 0x3e, 0xb4, 0x18, 0x7b, 0x7c, 0x5b, 0x5a, 0x86, 0x51, 0x8e, 0xac, 0xd2, 0x23, 0x21, 0xb6, + 0xb0, 0x41, 0xbb, 0x6e, 0xab, 0x15, 0x7e, 0xf9, 0x3b, 0x74, 0x42, 0x57, 0x46, 0x38, 0x29, 0x79, + 0xc6, 0xd6, 0x3e, 0x25, 0x05, 0x0e, 0x46, 0xf8, 0xb1, 0xb0, 0xc5, 0x4e, 0x0c, 0xc7, 0xdf, 0xe4, + 0x1c, 0x47, 0x43, 0x1c, 0xd7, 0x38, 0x69, 0x69, 0x16, 0x06, 0xf7, 0xc2, 0xeb, 0xb7, 0x38, 0xaf, + 0x01, 0x1c, 0x66, 0x32, 0x0f, 0xc3, 0x94, 0x89, 0xde, 0x74, 0x3d, 0xab, 0x41, 0x73, 0xe2, 0xee, + 0x6c, 0x7e, 0xfb, 0x3b, 0x2c, 0x8e, 0x86, 0x08, 0xd9, 0xac, 0x4f, 0x55, 0x2a, 0x01, 0x3d, 0x05, + 0xab, 0x62, 0xbd, 0x1e, 0xc3, 0xe1, 0xeb, 0x5c, 0x10, 0x1f, 0xbf, 0x74, 0x15, 0xc6, 0xc8, 0x6f, + 0x9a, 0xb2, 0xc2, 0x92, 0xc4, 0xef, 0xc1, 0x15, 0x5e, 0xfe, 0x10, 0x0b, 0xd5, 0x51, 0x9f, 0x41, + 0x48, 0xa6, 0xd0, 0x28, 0xd6, 0xb0, 0xe7, 0x61, 0xc7, 0x55, 0xb5, 0x7a, 0x27, 0xf1, 0x42, 0x9b, + 0x18, 0x85, 0x4f, 0x7d, 0x2f, 0x3a, 0x8a, 0xf3, 0x8c, 0x72, 0xa6, 0x5e, 0x2f, 0x5d, 0x81, 0x7b, + 0x3a, 0x78, 0x45, 0x0f, 0x3c, 0x3f, 0xcd, 0x79, 0x8e, 0xb5, 0x79, 0x06, 0x61, 0xbb, 0x0a, 0x02, + 0xee, 0x8f, 0x65, 0x0f, 0x3c, 0x7f, 0x8e, 0xf3, 0x44, 0x9c, 0x56, 0x0c, 0x29, 0xe1, 0x78, 0x09, + 0x46, 0xae, 0x63, 0x67, 0xc3, 0x72, 0xf9, 0xc6, 0x51, 0x0f, 0xec, 0x3e, 0xc3, 0xd9, 0x0d, 0x73, + 0x42, 0xba, 0x93, 0x44, 0x78, 0x9d, 0x83, 0xcc, 0xa6, 0xa6, 0xe3, 0x1e, 0x58, 0xbc, 0xc4, 0x59, + 0xf4, 0x13, 0x7c, 0x42, 0x3a, 0x03, 0x03, 0x35, 0x8b, 0xcf, 0x5a, 0xf1, 0xe4, 0x9f, 0xe5, 0xe4, + 0x39, 0x41, 0xc3, 0x59, 0xd8, 0x96, 0xdd, 0xac, 0x93, 0x29, 0x2d, 0x9e, 0xc5, 0x5f, 0x13, 0x2c, + 0x04, 0x0d, 0x67, 0xb1, 0x07, 0xb3, 0x7e, 0x4e, 0xb0, 0x70, 0x43, 0xf6, 0x7c, 0x0a, 0x72, 0x96, + 0x59, 0xdf, 0xb1, 0xcc, 0x5e, 0x84, 0xf8, 0x3c, 0xe7, 0x00, 0x9c, 0x84, 0x30, 0x38, 0x0f, 0xd9, + 0x5e, 0x07, 0xe2, 0x6f, 0x7c, 0x4f, 0x84, 0x87, 0x18, 0x81, 0x79, 0x18, 0x16, 0x09, 0xca, 0xb0, + 0xcc, 0x1e, 0x58, 0xfc, 0x4d, 0xce, 0x62, 0x28, 0x44, 0xc6, 0xd5, 0xf0, 0xb0, 0xeb, 0xd5, 0x70, + 0x2f, 0x4c, 0xbe, 0x24, 0xd4, 0xe0, 0x24, 0xdc, 0x94, 0x1b, 0xd8, 0xd4, 0xb7, 0x7a, 0xe3, 0xf0, + 0xf3, 0xc2, 0x94, 0x82, 0x86, 0xb0, 0x98, 0x85, 0xc1, 0x86, 0xe6, 0xb8, 0x5b, 0x5a, 0xbd, 0xa7, + 0xe1, 0xf8, 0x5b, 0x9c, 0xc7, 0x80, 0x4f, 0xc4, 0x2d, 0xd2, 0x34, 0xf7, 0xc2, 0xe6, 0xcb, 0xc2, + 0x22, 0x21, 0x32, 0x1e, 0x7a, 0xae, 0x47, 0x77, 0xd9, 0xf6, 0xc2, 0xed, 0x17, 0x44, 0xe8, 0x31, + 0xda, 0xa5, 0x30, 0xc7, 0xf3, 0x90, 0x75, 0x8d, 0x9b, 0x3d, 0xb1, 0xf9, 0xdb, 0x62, 0xa4, 0x29, + 0x01, 0x21, 0x7e, 0x0f, 0x1c, 0xea, 0x38, 0x4d, 0xf4, 0xc0, 0xec, 0xef, 0x70, 0x66, 0xe3, 0x1d, + 0xa6, 0x0a, 0x9e, 0x12, 0xf6, 0xca, 0xf2, 0xef, 0x8a, 0x94, 0x80, 0x5b, 0x78, 0xad, 0x92, 0x75, + 0x84, 0xab, 0x6d, 0xee, 0xcd, 0x6a, 0xbf, 0x28, 0xac, 0xc6, 0x68, 0x23, 0x56, 0x5b, 0x87, 0x71, + 0xce, 0x71, 0x6f, 0xe3, 0xfa, 0x4b, 0x22, 0xb1, 0x32, 0xea, 0x2b, 0xd1, 0xd1, 0x7d, 0x1f, 0x14, + 0x7d, 0x73, 0x8a, 0x82, 0xd5, 0x55, 0x1b, 0x9a, 0xdd, 0x03, 0xe7, 0x5f, 0xe6, 0x9c, 0x45, 0xc6, + 0xf7, 0x2b, 0x5e, 0x77, 0x49, 0xb3, 0x09, 0xf3, 0x67, 0xa1, 0x20, 0x98, 0x37, 0x4d, 0x07, 0xeb, + 0x56, 0xcd, 0x34, 0x6e, 0xe2, 0x6a, 0x0f, 0xac, 0x7f, 0xa5, 0x65, 0xa8, 0xae, 0x84, 0xc8, 0x09, + 0xe7, 0x05, 0xc8, 0xfb, 0xb5, 0x8a, 0x6a, 0x34, 0x6c, 0xcb, 0xf1, 0x62, 0x38, 0x7e, 0x45, 0x8c, + 0x94, 0x4f, 0xb7, 0x40, 0xc9, 0x4a, 0x15, 0x18, 0xa2, 0xcd, 0x5e, 0x5d, 0xf2, 0x57, 0x39, 0xa3, + 0xc1, 0x80, 0x8a, 0x27, 0x0e, 0xdd, 0x6a, 0xd8, 0x9a, 0xd3, 0x4b, 0xfe, 0xfb, 0x7b, 0x22, 0x71, + 0x70, 0x12, 0x9e, 0x38, 0xbc, 0x1d, 0x1b, 0x93, 0xd9, 0xbe, 0x07, 0x0e, 0xbf, 0x26, 0x12, 0x87, + 0xa0, 0xe1, 0x2c, 0x44, 0xc1, 0xd0, 0x03, 0x8b, 0xbf, 0x2f, 0x58, 0x08, 0x1a, 0xc2, 0xe2, 0xe9, + 0x60, 0xa2, 0x75, 0x70, 0xcd, 0x70, 0x3d, 0x87, 0x95, 0xc9, 0xbb, 0xb3, 0xfa, 0x07, 0xdf, 0x8b, + 0x16, 0x61, 0x4a, 0x88, 0x94, 0x64, 0x22, 0xbe, 0xed, 0x4a, 0x57, 0x51, 0xf1, 0x82, 0xfd, 0xba, + 0xc8, 0x44, 0x21, 0x32, 0x22, 0x5b, 0xa8, 0x42, 0x24, 0x66, 0xd7, 0xc9, 0xda, 0xa1, 0x07, 0x76, + 0xff, 0xb0, 0x45, 0xb8, 0x35, 0x41, 0x4b, 0x78, 0x86, 0xea, 0x9f, 0xa6, 0x79, 0x0d, 0xef, 0xf4, + 0xe4, 0x9d, 0xff, 0xa8, 0xa5, 0xfe, 0xb9, 0xc2, 0x28, 0x59, 0x0e, 0x19, 0x6e, 0xa9, 0xa7, 0x50, + 0xdc, 0xfd, 0xa1, 0xc2, 0x8f, 0xbe, 0xc6, 0xf5, 0x8d, 0x96, 0x53, 0xa5, 0x45, 0xe2, 0xe4, 0xd1, + 0xa2, 0x27, 0x9e, 0xd9, 0x87, 0x5e, 0xf3, 0xfd, 0x3c, 0x52, 0xf3, 0x94, 0x2e, 0xc0, 0x60, 0xa4, + 0xe0, 0x89, 0x67, 0xf5, 0x61, 0xce, 0x6a, 0x20, 0x5c, 0xef, 0x94, 0x4e, 0x43, 0x8a, 0x14, 0x2f, + 0xf1, 0xe4, 0x1f, 0xe1, 0xe4, 0x14, 0xbd, 0xf4, 0x4e, 0xc8, 0x88, 0xa2, 0x25, 0x9e, 0xf4, 0xa3, + 0x9c, 0xd4, 0x27, 0x21, 0xe4, 0xa2, 0x60, 0x89, 0x27, 0xff, 0x8b, 0x82, 0x5c, 0x90, 0x10, 0xf2, + 0xde, 0x4d, 0xf8, 0xd5, 0xbf, 0x94, 0xe2, 0x93, 0x8e, 0xb0, 0xdd, 0x79, 0xe8, 0xe7, 0x95, 0x4a, + 0x3c, 0xf5, 0xc7, 0x78, 0xe7, 0x82, 0xa2, 0xf4, 0x24, 0xa4, 0x7b, 0x34, 0xf8, 0x4f, 0x70, 0x52, + 0x86, 0x5f, 0x9a, 0x85, 0x5c, 0xa8, 0x3a, 0x89, 0x27, 0xff, 0x2b, 0x9c, 0x3c, 0x4c, 0x45, 0x44, + 0xe7, 0xd5, 0x49, 0x3c, 0x83, 0x8f, 0x0b, 0xd1, 0x39, 0x05, 0x31, 0x9b, 0x28, 0x4c, 0xe2, 0xa9, + 0x3f, 0x21, 0xac, 0x2e, 0x48, 0x4a, 0x4f, 0x41, 0xd6, 0x9f, 0x6c, 0xe2, 0xe9, 0x7f, 0x92, 0xd3, + 0x07, 0x34, 0xc4, 0x02, 0xa1, 0xc9, 0x2e, 0x9e, 0xc5, 0x4f, 0x09, 0x0b, 0x84, 0xa8, 0x48, 0x18, + 0xb5, 0x16, 0x30, 0xf1, 0x9c, 0x7e, 0x5a, 0x84, 0x51, 0x4b, 0xfd, 0x42, 0x46, 0x93, 0xe6, 0xfc, + 0x78, 0x16, 0x3f, 0x23, 0x46, 0x93, 0xe2, 0x13, 0x31, 0x5a, 0x2b, 0x82, 0x78, 0x1e, 0x7f, 0x55, + 0x88, 0xd1, 0x52, 0x10, 0x94, 0x56, 0x01, 0xb5, 0x57, 0x03, 0xf1, 0xfc, 0x3e, 0xc9, 0xf9, 0x8d, + 0xb4, 0x15, 0x03, 0xa5, 0x67, 0x60, 0xbc, 0x73, 0x25, 0x10, 0xcf, 0xf5, 0x53, 0xaf, 0xb5, 0xac, + 0xdd, 0xc2, 0x85, 0x40, 0x69, 0x3d, 0x98, 0x52, 0xc2, 0x55, 0x40, 0x3c, 0xdb, 0x4f, 0xbf, 0x16, + 0x4d, 0xdc, 0xe1, 0x22, 0xa0, 0x34, 0x03, 0x10, 0x4c, 0xc0, 0xf1, 0xbc, 0x3e, 0xc3, 0x79, 0x85, + 0x88, 0x48, 0x68, 0xf0, 0xf9, 0x37, 0x9e, 0xfe, 0x25, 0x11, 0x1a, 0x9c, 0x82, 0x84, 0x86, 0x98, + 0x7a, 0xe3, 0xa9, 0x3f, 0x2b, 0x42, 0x43, 0x90, 0x10, 0xcf, 0x0e, 0xcd, 0x6e, 0xf1, 0x1c, 0x3e, + 0x2f, 0x3c, 0x3b, 0x44, 0x55, 0x5a, 0x86, 0x91, 0xb6, 0x09, 0x31, 0x9e, 0xd5, 0x17, 0x38, 0xab, + 0x7c, 0xeb, 0x7c, 0x18, 0x9e, 0xbc, 0xf8, 0x64, 0x18, 0xcf, 0xed, 0x8b, 0x2d, 0x93, 0x17, 0x9f, + 0x0b, 0x4b, 0xe7, 0x21, 0x63, 0x36, 0xeb, 0x75, 0x12, 0x3c, 0x68, 0xf7, 0x3b, 0x7f, 0x85, 0x3f, + 0x7a, 0x9d, 0x5b, 0x47, 0x10, 0x94, 0x4e, 0x43, 0x1a, 0x37, 0x36, 0x70, 0x35, 0x8e, 0xf2, 0xbb, + 0xaf, 0x8b, 0x84, 0x49, 0xb0, 0x4b, 0x4f, 0x01, 0xb0, 0xad, 0x11, 0x7a, 0x3c, 0x18, 0x43, 0xfb, + 0x5f, 0x5f, 0xe7, 0xb7, 0x71, 0x02, 0x92, 0x80, 0x01, 0xbb, 0xdb, 0xb3, 0x3b, 0x83, 0xef, 0x45, + 0x19, 0xd0, 0x11, 0x39, 0x07, 0xfd, 0xcf, 0xb9, 0x96, 0xe9, 0x69, 0xb5, 0x38, 0xea, 0xff, 0xc6, + 0xa9, 0x05, 0x3e, 0x31, 0x58, 0xc3, 0x72, 0xb0, 0xa7, 0xd5, 0xdc, 0x38, 0xda, 0xff, 0xce, 0x69, + 0x7d, 0x02, 0x42, 0xac, 0x6b, 0xae, 0xd7, 0x8b, 0xde, 0x7f, 0x2c, 0x88, 0x05, 0x01, 0x11, 0x9a, + 0xfc, 0xbe, 0x86, 0x77, 0xe2, 0x68, 0xff, 0x44, 0x08, 0xcd, 0xf1, 0x4b, 0xef, 0x84, 0x2c, 0xf9, + 0xc9, 0xae, 0xd8, 0xc5, 0x10, 0xff, 0x0f, 0x4e, 0x1c, 0x50, 0x90, 0x9e, 0x5d, 0xaf, 0xea, 0x19, + 0xf1, 0xc6, 0xbe, 0xcd, 0x47, 0x5a, 0xe0, 0x97, 0x66, 0x20, 0xe7, 0x7a, 0xd5, 0x6a, 0x93, 0xd7, + 0xa7, 0x31, 0xe4, 0xff, 0xf3, 0x75, 0x7f, 0xcb, 0xc2, 0xa7, 0x21, 0xa3, 0x7d, 0xe3, 0x9a, 0x67, + 0x5b, 0xf4, 0x08, 0x24, 0x8e, 0xc3, 0x6b, 0x9c, 0x43, 0x88, 0xa4, 0x34, 0x0b, 0x03, 0x44, 0x17, + 0x07, 0xdb, 0x98, 0x9e, 0x57, 0xc5, 0xb0, 0xf8, 0x5f, 0xdc, 0x00, 0x11, 0xa2, 0xf2, 0x8f, 0x7c, + 0xfd, 0x95, 0x09, 0xe9, 0x1b, 0xaf, 0x4c, 0x48, 0x7f, 0xf8, 0xca, 0x84, 0xf4, 0x89, 0x6f, 0x4f, + 0x1c, 0xf8, 0xc6, 0xb7, 0x27, 0x0e, 0xfc, 0xde, 0xb7, 0x27, 0x0e, 0x74, 0xde, 0x36, 0x86, 0x79, + 0x6b, 0xde, 0x62, 0x1b, 0xc6, 0xef, 0x95, 0x23, 0xdb, 0xc5, 0x35, 0x2b, 0xd8, 0xad, 0xf5, 0x17, + 0x39, 0xf0, 0xe1, 0x24, 0x4c, 0xe8, 0x96, 0xdb, 0xb0, 0xdc, 0xe9, 0x0d, 0xcd, 0xc5, 0xd3, 0xd7, + 0x1f, 0xdf, 0xc0, 0x9e, 0xf6, 0xf8, 0xb4, 0x6e, 0x19, 0x26, 0xdf, 0xf6, 0x1d, 0x65, 0xcf, 0xa7, + 0xc8, 0xf3, 0x29, 0xfe, 0xbc, 0xd8, 0x71, 0x87, 0x58, 0x9e, 0x87, 0xd4, 0xac, 0x65, 0x98, 0x68, + 0x0c, 0xd2, 0x55, 0x6c, 0x5a, 0x0d, 0x7e, 0x03, 0x8c, 0x35, 0xd0, 0x7d, 0xd0, 0xa7, 0x35, 0xac, + 0xa6, 0xe9, 0xb1, 0xed, 0xf2, 0x72, 0xee, 0xeb, 0xb7, 0x26, 0x0f, 0xfc, 0xfe, 0xad, 0xc9, 0xe4, + 0x82, 0xe9, 0x29, 0xfc, 0x51, 0x29, 0xf5, 0xea, 0xe7, 0x26, 0x25, 0xf9, 0x12, 0xf4, 0xcf, 0x61, + 0x7d, 0x3f, 0xbc, 0xe6, 0xb0, 0xde, 0xc2, 0xeb, 0x21, 0xc8, 0x2c, 0x98, 0x1e, 0xbb, 0xa3, 0x77, + 0x14, 0x92, 0x86, 0xc9, 0x6e, 0x7d, 0xb4, 0xf4, 0x4f, 0xe0, 0x04, 0x75, 0x0e, 0xeb, 0x3e, 0x6a, + 0x15, 0xeb, 0xad, 0xa8, 0x84, 0x3d, 0x81, 0x97, 0xe7, 0x7e, 0xef, 0x3f, 0x4d, 0x1c, 0x78, 0xe1, + 0x95, 0x89, 0x03, 0xdd, 0xc6, 0x27, 0x62, 0x7e, 0x6e, 0x62, 0xf6, 0xe7, 0x51, 0xb7, 0x7a, 0x6d, + 0x9a, 0x84, 0x96, 0xbb, 0xd1, 0x47, 0xed, 0xf6, 0x04, 0x7c, 0x22, 0x01, 0x93, 0xad, 0x5b, 0xea, + 0xc4, 0x8f, 0x5d, 0x4f, 0x6b, 0xd8, 0xdd, 0x5e, 0x88, 0x3a, 0x0f, 0xd9, 0x75, 0x81, 0x83, 0x0a, + 0xd0, 0xef, 0x62, 0xdd, 0x32, 0xab, 0x2e, 0x15, 0x39, 0xa9, 0x88, 0x26, 0x31, 0xa0, 0xa9, 0x99, + 0x96, 0xcb, 0xef, 0x6b, 0xb2, 0x46, 0xf9, 0x67, 0xa5, 0xbd, 0x39, 0xd6, 0x90, 0xdf, 0x15, 0x35, + 0xcf, 0xaa, 0xf4, 0xde, 0x87, 0x77, 0x3b, 0x8d, 0xa0, 0xea, 0x05, 0x2a, 0x84, 0x8e, 0x1e, 0x26, + 0x5a, 0x8f, 0x1e, 0x9e, 0xc1, 0xf5, 0xfa, 0x65, 0xd3, 0xba, 0x61, 0xae, 0x47, 0x4c, 0xf2, 0xbb, + 0x12, 0x1c, 0xa3, 0x17, 0xd1, 0x9d, 0x86, 0x61, 0x7a, 0xd3, 0x75, 0x63, 0xc3, 0x9d, 0xde, 0x30, + 0x3c, 0x97, 0x59, 0x8e, 0xdb, 0x64, 0x2c, 0xc0, 0x98, 0x22, 0x18, 0x53, 0x04, 0x43, 0x3e, 0x05, + 0x99, 0xb2, 0xe1, 0xcd, 0x38, 0x8e, 0xb6, 0x83, 0x10, 0xa4, 0x08, 0x8c, 0x1b, 0x85, 0xfe, 0x26, + 0x16, 0xc1, 0x75, 0xdc, 0x70, 0xe9, 0xa1, 0x57, 0x4a, 0x61, 0x8d, 0xf2, 0x95, 0xae, 0x23, 0x79, + 0x3e, 0xa4, 0x69, 0x48, 0xa4, 0xd0, 0x4f, 0x16, 0x09, 0x9d, 0xc4, 0xf5, 0xf5, 0xf9, 0x72, 0x0a, + 0x8e, 0x86, 0x10, 0x74, 0x67, 0xc7, 0xf6, 0x68, 0x48, 0x5a, 0x9b, 0x5c, 0x99, 0x91, 0x90, 0x32, + 0xec, 0x71, 0x97, 0x30, 0xdb, 0x84, 0xf4, 0x2a, 0xa1, 0x23, 0x8a, 0x78, 0x96, 0xa7, 0xd5, 0xb9, + 0x76, 0xac, 0x41, 0xa0, 0xec, 0x32, 0x7e, 0x82, 0x41, 0x0d, 0x71, 0x0f, 0xbf, 0x8e, 0xb5, 0x4d, + 0x76, 0xf9, 0x31, 0x49, 0xcf, 0x3e, 0x33, 0x04, 0x40, 0xef, 0x39, 0x8e, 0x41, 0x5a, 0x6b, 0xb2, + 0x63, 0xbb, 0xe4, 0xf1, 0x01, 0x85, 0x35, 0xe4, 0xcb, 0xd0, 0xcf, 0x8f, 0x0a, 0x50, 0x1e, 0x92, + 0xd7, 0xf0, 0x0e, 0xed, 0x67, 0x40, 0x21, 0x3f, 0xd1, 0x14, 0xa4, 0xa9, 0xf0, 0xfc, 0x56, 0x77, + 0x61, 0xaa, 0x4d, 0xfa, 0x29, 0x2a, 0xa4, 0xc2, 0xd0, 0xe4, 0x4b, 0x90, 0x99, 0xb3, 0x1a, 0x86, + 0x69, 0x45, 0xb9, 0x65, 0x19, 0x37, 0x2a, 0xb3, 0xdd, 0xe4, 0xe1, 0xac, 0xb0, 0x06, 0x1a, 0x87, + 0x3e, 0x76, 0x19, 0x96, 0x1f, 0x3d, 0xf2, 0x96, 0x3c, 0x0b, 0xfd, 0x94, 0xf7, 0x8a, 0x4d, 0xc6, + 0xd7, 0xbf, 0x88, 0x94, 0xe5, 0x6f, 0x3c, 0x70, 0xf6, 0x89, 0x40, 0x58, 0x04, 0xa9, 0xaa, 0xe6, + 0x69, 0x5c, 0x6f, 0xfa, 0x5b, 0x7e, 0x17, 0x64, 0x38, 0x13, 0x17, 0x9d, 0x84, 0xa4, 0x65, 0xbb, + 0xfc, 0xf0, 0xb0, 0xd8, 0x4d, 0x95, 0x15, 0xbb, 0x9c, 0x22, 0x89, 0x40, 0x21, 0xc8, 0x65, 0xa5, + 0xab, 0xbf, 0x9c, 0xdd, 0xbb, 0xbf, 0xb0, 0x6e, 0x7c, 0x67, 0xf9, 0x7c, 0x02, 0x26, 0x42, 0x4f, + 0xaf, 0x63, 0x87, 0xd4, 0xcb, 0x11, 0xd7, 0x47, 0x21, 0x21, 0xf9, 0xf3, 0x2e, 0xee, 0xf2, 0x4e, + 0x48, 0xce, 0xd8, 0x36, 0x2a, 0x42, 0x86, 0x1d, 0x12, 0x5a, 0xcc, 0x5f, 0x52, 0x8a, 0xdf, 0x26, + 0xcf, 0x5c, 0x6b, 0xd3, 0xbb, 0xa1, 0x39, 0xfe, 0x6b, 0x20, 0xa2, 0x2d, 0x9f, 0x83, 0xec, 0xac, + 0x65, 0xba, 0xd8, 0x74, 0x9b, 0x34, 0x74, 0x36, 0xea, 0x96, 0x7e, 0x8d, 0x73, 0x60, 0x0d, 0x62, + 0x70, 0xcd, 0xb6, 0x29, 0x65, 0x4a, 0x21, 0x3f, 0x59, 0xea, 0x2d, 0xaf, 0x75, 0x35, 0xd1, 0xb9, + 0xbd, 0x9b, 0x88, 0x2b, 0xe9, 0xdb, 0xe8, 0x0f, 0x24, 0x38, 0xd2, 0x1e, 0x50, 0xd7, 0xf0, 0x8e, + 0xbb, 0xd7, 0x78, 0x3a, 0x0b, 0xd9, 0x55, 0xfa, 0x2e, 0xe6, 0x65, 0xbc, 0x83, 0x8a, 0xd0, 0x8f, + 0xab, 0x27, 0x4f, 0x9f, 0x7e, 0xfc, 0x1c, 0xf3, 0xf6, 0x8b, 0x07, 0x14, 0x01, 0x28, 0x65, 0x88, + 0x56, 0xaf, 0x7e, 0x7e, 0x52, 0x2a, 0xa7, 0x21, 0xe9, 0x36, 0x1b, 0x77, 0xd5, 0x07, 0x3e, 0x9d, + 0x8e, 0x24, 0x40, 0x96, 0x51, 0xaf, 0x6b, 0x75, 0xa3, 0xaa, 0x05, 0x6f, 0xc9, 0xe6, 0x43, 0x3a, + 0x52, 0x8c, 0xce, 0x2a, 0x16, 0x77, 0xb5, 0x94, 0xfc, 0x2b, 0x12, 0x0c, 0x5c, 0x15, 0x9c, 0xd7, + 0xb0, 0x87, 0xce, 0x03, 0xf8, 0x3d, 0x89, 0xb0, 0x38, 0x3c, 0xd5, 0xda, 0xd7, 0x94, 0x4f, 0xa3, + 0x84, 0xd0, 0xd1, 0x93, 0xd4, 0xd1, 0x6c, 0xcb, 0xe5, 0xef, 0x08, 0xc4, 0x90, 0xfa, 0xc8, 0xe8, + 0x11, 0x40, 0x34, 0x83, 0xa9, 0xd7, 0x2d, 0xcf, 0x30, 0x6b, 0xaa, 0x6d, 0xdd, 0xe0, 0x2f, 0x54, + 0x25, 0x95, 0x3c, 0x7d, 0x72, 0x95, 0x3e, 0x58, 0x25, 0x70, 0x22, 0x74, 0xd6, 0xe7, 0x42, 0xe6, + 0x3f, 0xad, 0x5a, 0x75, 0xb0, 0xeb, 0xf2, 0x24, 0x25, 0x9a, 0xe8, 0x3c, 0xf4, 0xdb, 0xcd, 0x0d, + 0x55, 0x64, 0x84, 0xdc, 0xc9, 0x23, 0x9d, 0xe2, 0x5b, 0x8c, 0x3f, 0x8f, 0xf0, 0x3e, 0xbb, 0xb9, + 0x41, 0xbc, 0xe1, 0x5e, 0x18, 0xe8, 0x20, 0x4c, 0xee, 0x7a, 0x20, 0x07, 0x7d, 0xc5, 0x97, 0x6b, + 0xa0, 0xda, 0x8e, 0x61, 0x39, 0x86, 0xb7, 0x43, 0x4f, 0xf8, 0x93, 0x4a, 0x5e, 0x3c, 0x58, 0xe5, + 0x70, 0xf9, 0x1a, 0x0c, 0xaf, 0x19, 0x0d, 0x9b, 0xde, 0x49, 0xe1, 0x92, 0x9f, 0x0e, 0xe4, 0x93, + 0xe2, 0xe5, 0xeb, 0x2a, 0x59, 0xa2, 0x4d, 0xb2, 0xf2, 0xd3, 0x5d, 0xbd, 0xf3, 0xc9, 0xbd, 0x7b, + 0x67, 0xb4, 0x60, 0xf9, 0xd3, 0x62, 0x24, 0xf8, 0xf8, 0x74, 0x1f, 0x4a, 0x4f, 0xbd, 0x3a, 0x66, + 0x5c, 0xd9, 0x53, 0x8c, 0x2d, 0x02, 0x8a, 0xbb, 0x4f, 0xab, 0xc5, 0x98, 0x44, 0x5a, 0x8c, 0x0d, + 0x32, 0xf9, 0x1c, 0x0c, 0xae, 0x6a, 0x8e, 0xb7, 0x86, 0xbd, 0x8b, 0x58, 0xab, 0x62, 0x27, 0x3a, + 0xef, 0x0e, 0x8a, 0x79, 0x17, 0x41, 0x8a, 0x4e, 0xae, 0x6c, 0xde, 0xa1, 0xbf, 0xe5, 0x2d, 0x48, + 0xd1, 0x7b, 0x40, 0xfe, 0x9c, 0xcc, 0x29, 0xd8, 0x9c, 0x4c, 0xb2, 0xe9, 0x8e, 0x87, 0x5d, 0x4e, + 0xc2, 0x1a, 0xe8, 0x94, 0x98, 0x59, 0x93, 0xbb, 0xcf, 0xac, 0xdc, 0x55, 0xf9, 0xfc, 0x5a, 0x87, + 0xfe, 0x32, 0x49, 0xc6, 0x0b, 0x73, 0xbe, 0x20, 0x52, 0x20, 0x08, 0x5a, 0x82, 0x61, 0x5b, 0x73, + 0x3c, 0x7a, 0x01, 0x7a, 0x8b, 0x6a, 0xc1, 0xa3, 0x61, 0xb2, 0x3d, 0x36, 0x23, 0xca, 0xf2, 0x5e, + 0x06, 0xed, 0x30, 0x50, 0xfe, 0xcf, 0x29, 0xe8, 0xe3, 0xc6, 0x78, 0x27, 0xf4, 0x73, 0xb3, 0x72, + 0xff, 0x3d, 0x3a, 0xd5, 0x3e, 0x35, 0x4d, 0xf9, 0x53, 0x08, 0xe7, 0x27, 0x68, 0xd0, 0x03, 0x90, + 0xd1, 0xb7, 0x34, 0xc3, 0x54, 0x8d, 0xaa, 0xa8, 0xe5, 0x5f, 0xb9, 0x35, 0xd9, 0x3f, 0x4b, 0x60, + 0x0b, 0x73, 0x4a, 0x3f, 0x7d, 0xb8, 0x50, 0x25, 0xb5, 0xc0, 0x16, 0x36, 0x6a, 0x5b, 0x1e, 0x8f, + 0x41, 0xde, 0x42, 0x67, 0x21, 0x45, 0x5c, 0x86, 0xbf, 0x1f, 0x53, 0x6c, 0x5b, 0x63, 0xf9, 0x75, + 0x6b, 0x39, 0x43, 0x3a, 0xfe, 0xc4, 0xb7, 0x26, 0x25, 0x85, 0x52, 0xa0, 0x59, 0x18, 0xac, 0x6b, + 0xae, 0xa7, 0xd2, 0x39, 0x8c, 0x74, 0x9f, 0xa6, 0x2c, 0x0e, 0xb5, 0x1b, 0x84, 0x1b, 0x96, 0x8b, + 0x9e, 0x23, 0x54, 0x0c, 0x54, 0x45, 0xc7, 0x21, 0x4f, 0x99, 0xe8, 0x56, 0xa3, 0x61, 0x78, 0xac, + 0xba, 0xea, 0xa3, 0x76, 0x1f, 0x22, 0xf0, 0x59, 0x0a, 0xa6, 0x35, 0xd6, 0x61, 0xc8, 0xd2, 0x0b, + 0xf9, 0x14, 0x85, 0x5d, 0x3e, 0xcb, 0x10, 0x00, 0x7d, 0xf8, 0x20, 0x0c, 0x07, 0x19, 0x94, 0xa1, + 0x64, 0x18, 0x97, 0x00, 0x4c, 0x11, 0x1f, 0x83, 0x31, 0x13, 0x6f, 0xd3, 0xeb, 0x70, 0x11, 0xec, + 0x2c, 0xc5, 0x46, 0xe4, 0xd9, 0xd5, 0x28, 0xc5, 0x3b, 0x60, 0x48, 0x17, 0xc6, 0x67, 0xb8, 0x40, + 0x71, 0x07, 0x7d, 0x28, 0x45, 0x3b, 0x04, 0x19, 0xcd, 0xb6, 0x19, 0x42, 0x8e, 0x67, 0x50, 0xdb, + 0xa6, 0x8f, 0x4e, 0xc0, 0x08, 0xd5, 0xd1, 0xc1, 0x6e, 0xb3, 0xee, 0x71, 0x26, 0x03, 0x14, 0x67, + 0x98, 0x3c, 0x50, 0x18, 0x9c, 0xe2, 0xde, 0x07, 0x83, 0xf8, 0xba, 0x51, 0xc5, 0xa6, 0x8e, 0x19, + 0xde, 0x20, 0xc5, 0x1b, 0x10, 0x40, 0x8a, 0xf4, 0x10, 0xf8, 0x99, 0x51, 0x15, 0x59, 0x7b, 0x88, + 0xf1, 0x13, 0xf0, 0x19, 0x06, 0x96, 0x1f, 0x81, 0xd4, 0x9c, 0xe6, 0x69, 0xa4, 0xc4, 0xf0, 0xb6, + 0xd9, 0x54, 0x34, 0xa0, 0x90, 0x9f, 0x1d, 0xc3, 0xed, 0xd5, 0x04, 0xa4, 0xae, 0x5a, 0x1e, 0x46, + 0x4f, 0x84, 0xca, 0xc2, 0xa1, 0x4e, 0x3e, 0xbe, 0x66, 0xd4, 0x4c, 0x5c, 0x5d, 0x72, 0x6b, 0xa1, + 0x37, 0x65, 0x03, 0x17, 0x4b, 0x44, 0x5c, 0x6c, 0x0c, 0xd2, 0x8e, 0xd5, 0x34, 0xab, 0xe2, 0x2e, + 0x17, 0x6d, 0xa0, 0x0a, 0x64, 0x7c, 0xcf, 0x49, 0xc5, 0x79, 0xce, 0x30, 0xf1, 0x1c, 0xe2, 0xd7, + 0x1c, 0xa0, 0xf4, 0x6f, 0x70, 0x07, 0x2a, 0x43, 0xd6, 0x4f, 0x79, 0xdc, 0x03, 0x7b, 0x73, 0xe2, + 0x80, 0x8c, 0x4c, 0x41, 0xbe, 0x3f, 0xf8, 0x06, 0x65, 0x5e, 0x98, 0xf7, 0x1f, 0x70, 0x8b, 0x46, + 0x5c, 0x8d, 0xbf, 0xb5, 0xdb, 0x4f, 0xf5, 0x0a, 0x5c, 0x8d, 0xbd, 0xb9, 0x7b, 0x04, 0xb2, 0xae, + 0x51, 0x33, 0x35, 0xaf, 0xe9, 0x60, 0xee, 0x8d, 0x01, 0x40, 0xfe, 0xc9, 0x04, 0xf4, 0x31, 0xef, + 0x0e, 0xd9, 0x4d, 0xea, 0x6c, 0xb7, 0x44, 0x37, 0xbb, 0x25, 0xf7, 0x6f, 0xb7, 0x19, 0x00, 0x5f, + 0x18, 0x97, 0xbf, 0x75, 0xd9, 0xa1, 0xce, 0x60, 0x22, 0xae, 0x19, 0x35, 0x1e, 0xbc, 0x21, 0x22, + 0xdf, 0x83, 0xd2, 0xa1, 0x3c, 0x79, 0x1e, 0xb2, 0x1b, 0x86, 0xa7, 0x6a, 0x64, 0xf1, 0x48, 0x4d, + 0x98, 0x3b, 0x39, 0x31, 0xd5, 0x69, 0x95, 0x39, 0x25, 0x96, 0x98, 0x4a, 0x66, 0x83, 0xff, 0x92, + 0xff, 0x40, 0x22, 0xb5, 0x32, 0xef, 0x10, 0xcd, 0xc0, 0xa0, 0x50, 0x54, 0xdd, 0xac, 0x6b, 0x35, + 0xee, 0x8c, 0x47, 0xbb, 0x6a, 0x7b, 0xa1, 0xae, 0xd5, 0x94, 0x1c, 0x57, 0x90, 0x34, 0x3a, 0x0f, + 0x6c, 0xa2, 0xcb, 0xc0, 0x46, 0x3c, 0x29, 0xb9, 0x3f, 0x4f, 0x8a, 0x8c, 0x79, 0xaa, 0x75, 0xcc, + 0xbf, 0x92, 0xa0, 0x6b, 0x26, 0xdb, 0x72, 0xb5, 0xfa, 0x9b, 0x11, 0x62, 0x87, 0x21, 0x6b, 0x5b, + 0x75, 0x95, 0x3d, 0x61, 0x97, 0x26, 0x33, 0xb6, 0x55, 0x57, 0xda, 0xfc, 0x28, 0x7d, 0x87, 0xe2, + 0xaf, 0xef, 0x0e, 0x58, 0xad, 0xbf, 0xd5, 0x6a, 0x0e, 0x0c, 0x30, 0x53, 0xf0, 0x09, 0xf3, 0x31, + 0x62, 0x03, 0x3a, 0x03, 0x4b, 0xed, 0x13, 0x3c, 0x13, 0x9b, 0x61, 0x2a, 0x1c, 0x8f, 0x50, 0xb0, + 0xf9, 0xa5, 0xd3, 0x62, 0x3b, 0xec, 0xe7, 0x0a, 0xc7, 0x93, 0x7f, 0x56, 0x02, 0x58, 0x24, 0x96, + 0xa5, 0xfa, 0x92, 0xa9, 0xce, 0xa5, 0x22, 0xa8, 0x91, 0x9e, 0x27, 0xba, 0x0d, 0x1a, 0xef, 0x7f, + 0xc0, 0x0d, 0xcb, 0x3d, 0x0b, 0x83, 0x81, 0x33, 0xba, 0x58, 0x08, 0x33, 0xb1, 0x4b, 0x71, 0xbf, + 0x86, 0x3d, 0x65, 0xe0, 0x7a, 0xa8, 0x25, 0xff, 0x33, 0x09, 0xb2, 0x54, 0xa6, 0x25, 0xec, 0x69, + 0x91, 0x31, 0x94, 0xf6, 0x3f, 0x86, 0x47, 0x01, 0x18, 0x1b, 0xd7, 0xb8, 0x89, 0xb9, 0x67, 0x65, + 0x29, 0x64, 0xcd, 0xb8, 0x89, 0xd1, 0x19, 0xdf, 0xe0, 0xc9, 0xdd, 0x0d, 0x2e, 0x8a, 0x7f, 0x6e, + 0xf6, 0x7b, 0xa0, 0x9f, 0x7e, 0xcd, 0x64, 0xdb, 0xe5, 0xf5, 0x7c, 0x9f, 0xd9, 0x6c, 0xac, 0x6f, + 0xbb, 0xf2, 0x73, 0xd0, 0xbf, 0xbe, 0xcd, 0xb6, 0x60, 0x0e, 0x43, 0xd6, 0xb1, 0x2c, 0x3e, 0xf1, + 0xb3, 0x82, 0x2b, 0x43, 0x00, 0x74, 0x9e, 0x13, 0xdb, 0x0e, 0x89, 0x60, 0xdb, 0x21, 0xd8, 0x37, + 0x49, 0xf6, 0xb4, 0x6f, 0x72, 0xe2, 0xdf, 0x4b, 0x90, 0x0b, 0xe5, 0x07, 0xf4, 0x38, 0x1c, 0x2c, + 0x2f, 0xae, 0xcc, 0x5e, 0x56, 0x17, 0xe6, 0xd4, 0x0b, 0x8b, 0x33, 0xf3, 0xc1, 0x6b, 0x01, 0xc5, + 0xf1, 0x17, 0x5f, 0x3a, 0x86, 0x42, 0xb8, 0x57, 0xcc, 0x6b, 0xa6, 0x75, 0xc3, 0x44, 0xd3, 0x30, + 0x16, 0x25, 0x99, 0x29, 0xaf, 0x55, 0x96, 0xd7, 0xf3, 0x52, 0xf1, 0xe0, 0x8b, 0x2f, 0x1d, 0x1b, + 0x09, 0x51, 0xcc, 0x6c, 0xb8, 0xd8, 0xf4, 0xda, 0x09, 0x66, 0x57, 0x96, 0x96, 0x16, 0xd6, 0xf3, + 0x89, 0x36, 0x02, 0x3e, 0x03, 0x3c, 0x04, 0x23, 0x51, 0x82, 0xe5, 0x85, 0xc5, 0x7c, 0xb2, 0x88, + 0x5e, 0x7c, 0xe9, 0xd8, 0x50, 0x08, 0x7b, 0xd9, 0xa8, 0x17, 0x33, 0x3f, 0xfe, 0xc5, 0x89, 0x03, + 0x3f, 0xff, 0xd7, 0x27, 0x24, 0xa2, 0xd9, 0x60, 0x24, 0x47, 0xa0, 0x47, 0xe0, 0x9e, 0xb5, 0x85, + 0xf9, 0xe5, 0xca, 0x9c, 0xba, 0xb4, 0x36, 0xaf, 0xb2, 0xef, 0x21, 0xf8, 0xda, 0x0d, 0xbf, 0xf8, + 0xd2, 0xb1, 0x1c, 0x57, 0xa9, 0x1b, 0xf6, 0xaa, 0x52, 0xb9, 0xba, 0xb2, 0x5e, 0xc9, 0x4b, 0x0c, + 0x7b, 0xd5, 0xc1, 0xd7, 0x2d, 0x8f, 0x7d, 0xee, 0xe8, 0x31, 0x38, 0xd4, 0x01, 0xdb, 0x57, 0x6c, + 0xe4, 0xc5, 0x97, 0x8e, 0x0d, 0xae, 0x3a, 0x98, 0xc5, 0x0f, 0xa5, 0x98, 0x82, 0x42, 0x3b, 0xc5, + 0xca, 0xea, 0xca, 0xda, 0xcc, 0x62, 0xfe, 0x58, 0x31, 0xff, 0xe2, 0x4b, 0xc7, 0x06, 0x44, 0x32, + 0x24, 0xf8, 0x81, 0x66, 0x77, 0x73, 0xe1, 0xf5, 0x97, 0x13, 0x30, 0xd1, 0x76, 0xf9, 0x9a, 0x1f, + 0x59, 0x74, 0xdb, 0x28, 0x2e, 0x41, 0x66, 0x4e, 0x9c, 0x84, 0xec, 0x75, 0x9f, 0xf8, 0x67, 0xf6, + 0xb8, 0x4f, 0x3c, 0x28, 0x7a, 0x12, 0xdb, 0xc4, 0x27, 0xe2, 0xb7, 0x89, 0x85, 0xfc, 0xfb, 0xd8, + 0x25, 0xfe, 0xc8, 0xe3, 0x70, 0x3f, 0xdf, 0x5c, 0x77, 0x3d, 0xed, 0x9a, 0x61, 0xd6, 0xfc, 0x23, + 0x0c, 0xde, 0xe6, 0x46, 0x19, 0xe7, 0xa7, 0x18, 0x02, 0xba, 0xeb, 0x41, 0x46, 0x71, 0xd7, 0xb5, + 0x6d, 0xfc, 0x9a, 0x35, 0x66, 0x84, 0x8a, 0x31, 0x47, 0x2e, 0xf2, 0xc7, 0x24, 0x18, 0xba, 0x68, + 0xb8, 0x9e, 0xe5, 0x18, 0xba, 0x56, 0xa7, 0x6f, 0x39, 0x9c, 0xe9, 0x75, 0xd2, 0x68, 0xc9, 0x61, + 0x4f, 0x41, 0xdf, 0x75, 0xad, 0xce, 0xb2, 0x75, 0x92, 0x7e, 0x95, 0xa1, 0xb3, 0x21, 0x82, 0x9c, + 0x2d, 0x18, 0x30, 0x32, 0xf9, 0x17, 0x13, 0x30, 0x4c, 0xa3, 0xdc, 0x65, 0x9f, 0xe1, 0x21, 0x2b, + 0xd4, 0x32, 0xa4, 0x1c, 0xcd, 0xe3, 0x9b, 0xae, 0xe5, 0x29, 0x7e, 0x38, 0xf2, 0x40, 0xfc, 0x81, + 0xc7, 0xd4, 0x1c, 0xd6, 0x15, 0x4a, 0x8b, 0x7e, 0x18, 0x32, 0x0d, 0x6d, 0x5b, 0xa5, 0x7c, 0xd8, + 0xba, 0x6f, 0x66, 0x6f, 0x7c, 0x6e, 0xdf, 0x9a, 0x1c, 0xde, 0xd1, 0x1a, 0xf5, 0x92, 0x2c, 0xf8, + 0xc8, 0x4a, 0x7f, 0x43, 0xdb, 0x26, 0x22, 0x22, 0x1b, 0x86, 0x09, 0x54, 0xdf, 0xd2, 0xcc, 0x1a, + 0x66, 0x9d, 0xd0, 0x2d, 0xe4, 0xf2, 0xc5, 0x3d, 0x77, 0x32, 0x1e, 0x74, 0x12, 0x62, 0x27, 0x2b, + 0x83, 0x0d, 0x6d, 0x7b, 0x96, 0x02, 0x48, 0x8f, 0xa5, 0xcc, 0x27, 0x3f, 0x37, 0x79, 0x80, 0x1e, + 0x38, 0xbd, 0x2c, 0x01, 0x04, 0x16, 0x43, 0x3f, 0x0c, 0x79, 0xdd, 0x6f, 0x51, 0x5a, 0x97, 0x8f, + 0xe1, 0x83, 0xdd, 0xc6, 0xa2, 0xc5, 0xde, 0xac, 0xe8, 0xf8, 0xc6, 0xad, 0x49, 0x49, 0x19, 0xd6, + 0x5b, 0x86, 0xe2, 0x7d, 0x90, 0x6b, 0xda, 0x55, 0xcd, 0xc3, 0x2a, 0x5d, 0x05, 0x27, 0x62, 0x0b, + 0x98, 0x09, 0xc2, 0xeb, 0xf6, 0xad, 0x49, 0xc4, 0xd4, 0x0a, 0x11, 0xcb, 0xb4, 0xac, 0x01, 0x06, + 0x21, 0x04, 0x21, 0x9d, 0x7e, 0x47, 0x82, 0xdc, 0x5c, 0xe8, 0xb6, 0x51, 0x01, 0xfa, 0x1b, 0x96, + 0x69, 0x5c, 0xe3, 0xfe, 0x98, 0x55, 0x44, 0x13, 0x15, 0x21, 0xc3, 0x5e, 0xfc, 0xf2, 0x76, 0xc4, + 0x56, 0xb2, 0x68, 0x13, 0xaa, 0x1b, 0x78, 0xc3, 0x35, 0xc4, 0x68, 0x28, 0xa2, 0x89, 0x2e, 0x40, + 0xde, 0xc5, 0x7a, 0xd3, 0x31, 0xbc, 0x1d, 0x55, 0xb7, 0x4c, 0x4f, 0xd3, 0x3d, 0xf6, 0x0a, 0x51, + 0xf9, 0xf0, 0xed, 0x5b, 0x93, 0xf7, 0x30, 0x59, 0x5b, 0x31, 0x64, 0x65, 0x58, 0x80, 0x66, 0x19, + 0x84, 0xf4, 0x50, 0xc5, 0x9e, 0x66, 0xd4, 0x5d, 0x5a, 0x13, 0x66, 0x15, 0xd1, 0x0c, 0xe9, 0xf2, + 0x4f, 0xfa, 0xc3, 0x1b, 0x87, 0x37, 0x20, 0x6f, 0xd9, 0xd8, 0x89, 0x54, 0xd8, 0x74, 0x1e, 0x2f, + 0x2f, 0x06, 0x3d, 0xb7, 0x62, 0xc8, 0xff, 0xef, 0xd6, 0xe4, 0xa3, 0x3d, 0x78, 0xd0, 0x55, 0xad, + 0xce, 0xab, 0x73, 0x65, 0x58, 0xf0, 0x10, 0xe5, 0xfa, 0x05, 0xe2, 0x17, 0x62, 0x5d, 0x6e, 0x37, + 0x37, 0xc4, 0x06, 0x65, 0x44, 0xe5, 0x56, 0x0c, 0x99, 0x78, 0x00, 0x07, 0xad, 0x52, 0x08, 0x29, + 0xa9, 0x9f, 0xd3, 0x8c, 0xba, 0x78, 0x1b, 0x56, 0xe1, 0x2d, 0xb4, 0x00, 0x7d, 0xae, 0xa7, 0x79, + 0x4d, 0x56, 0xbc, 0xa4, 0xcb, 0x8f, 0xf7, 0x28, 0x73, 0xd9, 0x32, 0xab, 0x6b, 0x94, 0x50, 0xe1, + 0x0c, 0xd0, 0x05, 0xe8, 0xf3, 0xac, 0x6b, 0xd8, 0xe4, 0x46, 0xdd, 0x53, 0xc4, 0xd3, 0xc3, 0x5d, + 0x46, 0x8d, 0x3c, 0xc8, 0x57, 0x71, 0x1d, 0xd7, 0x58, 0x05, 0xb9, 0xa5, 0x91, 0x95, 0x1b, 0xfd, + 0x22, 0x55, 0x79, 0x61, 0xcf, 0x61, 0xc9, 0x0d, 0xd4, 0xca, 0x4f, 0x56, 0x86, 0x7d, 0xd0, 0x1a, + 0x85, 0xa0, 0xcb, 0x91, 0x8b, 0x72, 0xfc, 0xb3, 0x6d, 0xf7, 0x75, 0x8b, 0xbd, 0x90, 0x97, 0x8b, + 0xfd, 0x9e, 0xf0, 0x35, 0xbb, 0x0b, 0x90, 0x6f, 0x9a, 0x1b, 0x96, 0x49, 0xdf, 0x60, 0xe3, 0x4b, + 0x19, 0xb2, 0x36, 0x4e, 0x86, 0x47, 0xad, 0x15, 0x43, 0x56, 0x86, 0x7d, 0xd0, 0x45, 0xb6, 0xe0, + 0xa9, 0xc2, 0x50, 0x80, 0x45, 0x43, 0x37, 0x1b, 0x1b, 0xba, 0xf7, 0xf2, 0xd0, 0x3d, 0xd8, 0xda, + 0x4b, 0x10, 0xbd, 0x83, 0x3e, 0x90, 0x90, 0xa1, 0x8b, 0x00, 0x41, 0xc2, 0xa0, 0xfb, 0x3e, 0xb9, + 0x93, 0x72, 0x7c, 0xd6, 0x11, 0x6b, 0xe5, 0x80, 0x16, 0x7d, 0x00, 0x46, 0x1b, 0x86, 0xa9, 0xba, + 0xb8, 0xbe, 0xa9, 0x72, 0x03, 0x13, 0x96, 0xf4, 0x0b, 0x24, 0xe5, 0xc5, 0xbd, 0xf9, 0xc3, 0xed, + 0x5b, 0x93, 0x45, 0x9e, 0x54, 0xdb, 0x59, 0xca, 0xca, 0x48, 0xc3, 0x30, 0xd7, 0x70, 0x7d, 0x73, + 0xce, 0x87, 0x95, 0x06, 0x7e, 0xfc, 0x73, 0x93, 0x07, 0xfc, 0x00, 0x36, 0xe8, 0x69, 0x05, 0x8f, + 0x23, 0xec, 0xa2, 0x15, 0xc8, 0x6a, 0xa2, 0xc1, 0x76, 0x88, 0x7a, 0x76, 0xf6, 0x50, 0x80, 0x06, + 0x3c, 0x58, 0xae, 0x78, 0xe1, 0x3f, 0x1e, 0x93, 0xe4, 0x17, 0x13, 0xd0, 0x37, 0x77, 0x75, 0x55, + 0x33, 0x1c, 0x74, 0x13, 0x46, 0x02, 0x67, 0x8b, 0x66, 0x8a, 0xa5, 0xdb, 0xb7, 0x26, 0x0b, 0xad, + 0xfe, 0xb8, 0xc7, 0x54, 0x31, 0xa3, 0xeb, 0x42, 0x92, 0x20, 0x48, 0x44, 0xae, 0xb8, 0xd9, 0x75, + 0x1f, 0x20, 0xdc, 0x77, 0x1b, 0xca, 0x3e, 0xd2, 0x54, 0xdb, 0xb6, 0x42, 0x28, 0x71, 0x56, 0xa0, + 0x9f, 0xd9, 0xc2, 0x45, 0x25, 0x48, 0xdb, 0xe4, 0x07, 0x3f, 0x1b, 0x9a, 0xe8, 0x1a, 0x4d, 0x14, + 0xdf, 0xdf, 0xa9, 0x26, 0x24, 0xf2, 0x17, 0x92, 0x00, 0x73, 0x57, 0xaf, 0xae, 0x3b, 0x86, 0x5d, + 0xc7, 0xde, 0xf7, 0xd5, 0xae, 0x1f, 0x91, 0xe0, 0x60, 0x68, 0x4d, 0xeb, 0xe8, 0x2d, 0xc6, 0x7d, + 0xfa, 0xf6, 0xad, 0xc9, 0x23, 0xad, 0xc6, 0x0d, 0xa1, 0xed, 0xc3, 0xc0, 0xa3, 0xc1, 0x72, 0xd8, + 0xd1, 0x3b, 0xcb, 0x51, 0x75, 0x3d, 0x5f, 0x8e, 0x64, 0x77, 0x39, 0x42, 0x68, 0x6f, 0x48, 0x8e, + 0x39, 0xd7, 0x6b, 0x1f, 0xeb, 0x35, 0xc8, 0x05, 0x63, 0xe4, 0xa2, 0x39, 0xc8, 0x78, 0xfc, 0x37, + 0x1f, 0x72, 0xb9, 0xfb, 0x90, 0x0b, 0x32, 0x3e, 0xec, 0x3e, 0xa5, 0xfc, 0xef, 0x12, 0x00, 0x41, + 0x54, 0xff, 0x79, 0x8d, 0x28, 0x32, 0x9d, 0xf2, 0xc9, 0x2f, 0xb9, 0xaf, 0x02, 0x9a, 0x53, 0x87, + 0x46, 0xeb, 0x8f, 0x12, 0x30, 0x7a, 0x45, 0x64, 0xfe, 0xb7, 0x2d, 0x8c, 0x56, 0xa1, 0x1f, 0x9b, + 0x9e, 0x63, 0x50, 0x13, 0x13, 0x6f, 0x7d, 0xac, 0x9b, 0xb7, 0x76, 0xb0, 0x1a, 0xfd, 0xc8, 0x8e, + 0x38, 0xa6, 0xe2, 0x6c, 0x42, 0xb6, 0xfe, 0x78, 0x12, 0x0a, 0xdd, 0xa8, 0xd0, 0x2c, 0x0c, 0xeb, + 0x0e, 0xa6, 0x00, 0x35, 0xbc, 0x27, 0x5e, 0x2e, 0x06, 0x2b, 0x89, 0x16, 0x04, 0x59, 0x19, 0x12, + 0x10, 0x5e, 0x1b, 0xd4, 0x80, 0x94, 0xf9, 0x24, 0x64, 0x08, 0x56, 0x8f, 0x75, 0xbd, 0xcc, 0x8b, + 0x03, 0xd1, 0x49, 0x94, 0x01, 0xab, 0x0e, 0x86, 0x02, 0x28, 0x2d, 0x0f, 0x9e, 0x87, 0x61, 0xc3, + 0x34, 0x3c, 0x43, 0xab, 0xab, 0x1b, 0x5a, 0x5d, 0x33, 0xf5, 0xfd, 0xac, 0x92, 0xd8, 0x84, 0xce, + 0xbb, 0x6d, 0x61, 0x27, 0x2b, 0x43, 0x1c, 0x52, 0x66, 0x00, 0x74, 0x11, 0xfa, 0x45, 0x57, 0xa9, + 0x7d, 0xd5, 0x92, 0x82, 0x3c, 0x34, 0x22, 0x3f, 0x91, 0x84, 0x11, 0x05, 0x57, 0xdf, 0x1e, 0x8a, + 0xbd, 0x0d, 0xc5, 0x12, 0x00, 0x4b, 0x24, 0x64, 0x26, 0xd9, 0xc7, 0x68, 0x90, 0x54, 0x94, 0x65, + 0x1c, 0xe6, 0x5c, 0x2f, 0x34, 0x1e, 0x7f, 0x9c, 0x84, 0x81, 0xf0, 0x78, 0xbc, 0x3d, 0xc5, 0xff, + 0xe0, 0x4c, 0xf1, 0x68, 0x21, 0x48, 0x8d, 0x29, 0xfe, 0xb1, 0xd4, 0x2e, 0xa9, 0xb1, 0x2d, 0xa4, + 0xba, 0xe7, 0xc4, 0x3f, 0x4d, 0x40, 0xdf, 0xaa, 0xe6, 0x68, 0x0d, 0x17, 0xe9, 0x6d, 0x0b, 0x1b, + 0xb1, 0xb1, 0xdf, 0xf6, 0x95, 0x6b, 0xbe, 0x29, 0x16, 0xb3, 0xae, 0xf9, 0x64, 0x87, 0x75, 0xcd, + 0xbb, 0x61, 0xa8, 0xa1, 0x6d, 0x87, 0x0e, 0xc1, 0xe9, 0x60, 0x0e, 0x96, 0x0f, 0x05, 0x5c, 0xa2, + 0xcf, 0xd9, 0x76, 0xcd, 0xd5, 0xf0, 0x25, 0xa5, 0x1c, 0xc1, 0x08, 0x66, 0x09, 0x42, 0x3e, 0x1e, + 0xec, 0x8b, 0x84, 0x1e, 0xca, 0x0a, 0x34, 0xb4, 0xed, 0x0a, 0x6b, 0xa0, 0x45, 0x40, 0x5b, 0xfe, + 0xd6, 0x9c, 0x1a, 0x98, 0x92, 0xd0, 0x1f, 0xbd, 0x7d, 0x6b, 0xf2, 0x10, 0xa3, 0x6f, 0xc7, 0x91, + 0x95, 0x91, 0x00, 0x28, 0xb8, 0x9d, 0x02, 0x20, 0x7a, 0xa9, 0xec, 0x8a, 0x33, 0x5b, 0x5d, 0x1f, + 0xbc, 0x7d, 0x6b, 0x72, 0x84, 0x71, 0x09, 0x9e, 0xc9, 0x4a, 0x96, 0x34, 0xe6, 0xc8, 0xef, 0x90, + 0xe1, 0xbf, 0x28, 0x01, 0x0a, 0xe6, 0x20, 0x05, 0xbb, 0xb6, 0x65, 0xba, 0x74, 0xdd, 0x17, 0x5a, + 0xa4, 0x49, 0xbb, 0xaf, 0xfb, 0x02, 0x7a, 0xb1, 0xee, 0x0b, 0x85, 0xee, 0xb9, 0x20, 0x5f, 0x27, + 0xf8, 0x38, 0x76, 0xb8, 0x0f, 0x3e, 0x35, 0x6b, 0x19, 0x82, 0xba, 0x43, 0x82, 0xfe, 0x97, 0x12, + 0x1c, 0x6a, 0xf3, 0x26, 0x5f, 0xd8, 0xbf, 0x00, 0xc8, 0x09, 0x3d, 0xe4, 0x1f, 0xbd, 0x63, 0x42, + 0xef, 0xd9, 0x39, 0x47, 0x9c, 0xb6, 0x89, 0xe0, 0xce, 0x4d, 0x39, 0xec, 0x42, 0xf9, 0x3f, 0x95, + 0x60, 0x2c, 0xdc, 0xbd, 0xaf, 0xc8, 0x32, 0x0c, 0x84, 0x7b, 0xe7, 0x2a, 0xdc, 0xdf, 0x8b, 0x0a, + 0x5c, 0xfa, 0x08, 0x3d, 0x7a, 0x3a, 0x08, 0x55, 0xb6, 0x79, 0xfb, 0x78, 0xcf, 0xd6, 0x10, 0x32, + 0xb5, 0x86, 0x2c, 0xd3, 0xe0, 0xcf, 0x24, 0x48, 0xad, 0x5a, 0x56, 0x1d, 0x59, 0x30, 0x62, 0x5a, + 0x9e, 0x4a, 0x3c, 0x0b, 0x57, 0x55, 0xbe, 0xc7, 0xc3, 0x76, 0x75, 0x67, 0xf7, 0x66, 0xa4, 0xef, + 0xde, 0x9a, 0x6c, 0x67, 0xa5, 0x0c, 0x9b, 0x96, 0x57, 0xa6, 0x90, 0x75, 0xb6, 0x03, 0xf4, 0x01, + 0x18, 0x8c, 0x76, 0xc6, 0x76, 0xbc, 0x9e, 0xd9, 0x73, 0x67, 0x51, 0x36, 0xb7, 0x6f, 0x4d, 0x8e, + 0x05, 0x11, 0xe3, 0x83, 0x65, 0x65, 0x60, 0x23, 0xd4, 0x3b, 0xbb, 0xbf, 0xf9, 0x27, 0x9f, 0x9b, + 0x94, 0xca, 0x17, 0xba, 0x9e, 0xd0, 0x3c, 0xb2, 0xab, 0x08, 0xdb, 0xfe, 0x31, 0x43, 0xf4, 0x58, + 0xe6, 0x93, 0xa3, 0x30, 0xd9, 0xe5, 0x1c, 0xc2, 0xdb, 0xde, 0xd7, 0x11, 0x44, 0xcc, 0x19, 0x41, + 0xb1, 0xa7, 0x63, 0x0f, 0xf9, 0xf5, 0x14, 0xa0, 0x25, 0xb7, 0x36, 0x4b, 0xaa, 0x9a, 0xd0, 0x9d, + 0xc3, 0x96, 0x2d, 0x31, 0xe9, 0x0d, 0x6d, 0x89, 0x2d, 0x45, 0x36, 0x99, 0x12, 0x7b, 0xdb, 0xda, + 0xee, 0x79, 0xa7, 0x29, 0xf9, 0xa6, 0xec, 0x34, 0x75, 0x2e, 0x55, 0x52, 0xdf, 0xc7, 0x15, 0x53, + 0xfa, 0xcd, 0x59, 0x31, 0x8d, 0x43, 0x1f, 0xdf, 0x83, 0x66, 0xff, 0x22, 0x80, 0xb7, 0xd0, 0x69, + 0xf1, 0x65, 0xf5, 0xfe, 0xde, 0xb2, 0x3f, 0xc3, 0xe6, 0x79, 0xe6, 0xab, 0x49, 0xc8, 0x2f, 0xb9, + 0xb5, 0x4a, 0xd5, 0xf0, 0xee, 0x92, 0xef, 0xd9, 0xdd, 0x17, 0x99, 0xb3, 0xb7, 0x6f, 0x4d, 0x0e, + 0x31, 0x93, 0xdd, 0x49, 0x43, 0x35, 0x60, 0xb8, 0xe5, 0x38, 0x87, 0xbb, 0xe6, 0xdc, 0x7e, 0x4e, + 0x95, 0x5a, 0x58, 0xc9, 0x74, 0x5d, 0x10, 0x0a, 0x10, 0xb4, 0xdd, 0x39, 0x1a, 0xd8, 0x44, 0x76, + 0xf1, 0x6e, 0xee, 0xb9, 0xb2, 0x21, 0xfc, 0x5a, 0x02, 0x72, 0x4b, 0xae, 0x58, 0xe7, 0xe2, 0x3f, + 0xb7, 0x3b, 0x0a, 0x4f, 0xfa, 0x2f, 0x9c, 0x25, 0x7b, 0x0b, 0x84, 0xe8, 0x4b, 0x68, 0xdf, 0x4a, + 0xd2, 0x3c, 0x5c, 0xc6, 0x35, 0xc3, 0xf4, 0x27, 0x6b, 0xfc, 0xf6, 0xc2, 0xe8, 0x07, 0x68, 0x61, + 0x14, 0x8c, 0x70, 0x6a, 0x3f, 0x23, 0xfc, 0x5b, 0x09, 0x18, 0x5c, 0x72, 0x6b, 0x57, 0xcc, 0xea, + 0xdb, 0xa1, 0xf2, 0x46, 0x42, 0xe5, 0x8e, 0x97, 0x66, 0x5f, 0x4b, 0xc0, 0x89, 0x70, 0x2d, 0xf5, + 0x7c, 0x13, 0x3b, 0x3b, 0x7e, 0xb9, 0x64, 0x6b, 0x35, 0xc3, 0x0c, 0xdf, 0x9e, 0x39, 0x14, 0x16, + 0x96, 0xe2, 0x0a, 0x91, 0x65, 0x13, 0x72, 0xab, 0x5a, 0x0d, 0x2b, 0xf8, 0xf9, 0x26, 0x76, 0xbd, + 0x0e, 0xef, 0xc4, 0x8d, 0x43, 0x9f, 0xb5, 0xb9, 0x29, 0xae, 0xc6, 0xa5, 0x14, 0xde, 0x42, 0x63, + 0x90, 0xae, 0x1b, 0x0d, 0x83, 0x19, 0x24, 0xa5, 0xb0, 0x06, 0x9a, 0x84, 0x9c, 0x4e, 0xf4, 0x56, + 0xd9, 0xbb, 0x04, 0x29, 0xf1, 0xcd, 0x9f, 0xa6, 0xe9, 0xad, 0x13, 0x88, 0xfc, 0x14, 0x0c, 0xb0, + 0xfe, 0xf8, 0xfa, 0xe2, 0x10, 0x64, 0xe8, 0xdd, 0xef, 0xa0, 0xd7, 0x7e, 0xd2, 0xbe, 0xcc, 0xde, + 0x9f, 0x63, 0x5c, 0x58, 0xc7, 0xac, 0x51, 0x2e, 0x77, 0x35, 0xe5, 0xf1, 0xf8, 0x41, 0x66, 0x86, + 0xf2, 0xcd, 0xf8, 0x9b, 0x69, 0x38, 0xc8, 0xaf, 0xb5, 0x68, 0xb6, 0x31, 0xbd, 0xe5, 0x79, 0xe2, + 0xc5, 0x54, 0xe0, 0x0b, 0x7b, 0xcd, 0x36, 0xe4, 0x1d, 0x48, 0x5d, 0xf4, 0x3c, 0x1b, 0x9d, 0x80, + 0xb4, 0xd3, 0xac, 0x63, 0x71, 0x58, 0x30, 0x36, 0x15, 0xe0, 0x4c, 0x11, 0x04, 0xa5, 0x59, 0xc7, + 0x0a, 0x43, 0x41, 0x15, 0x98, 0xdc, 0x6c, 0xd6, 0xeb, 0x3b, 0x6a, 0x15, 0xd3, 0x7f, 0xc3, 0xe6, + 0xff, 0xc7, 0x13, 0xbc, 0x6d, 0x6b, 0xa6, 0x5f, 0x54, 0x66, 0x94, 0x23, 0x14, 0x6d, 0x8e, 0x62, + 0x89, 0xff, 0x76, 0x52, 0x11, 0x38, 0xf2, 0xef, 0x27, 0x20, 0x23, 0x58, 0xd3, 0x17, 0xda, 0x70, + 0x1d, 0xeb, 0x9e, 0x25, 0x2e, 0x28, 0xf8, 0x6d, 0x84, 0x20, 0x59, 0xe3, 0x43, 0x94, 0xbd, 0x78, + 0x40, 0x21, 0x0d, 0x02, 0xf3, 0x5f, 0x33, 0x24, 0x30, 0xbb, 0x49, 0x46, 0x2d, 0x65, 0x5b, 0x62, + 0x67, 0xec, 0xe2, 0x01, 0x85, 0xb6, 0x50, 0x01, 0xfa, 0x48, 0xb4, 0x79, 0xec, 0x5b, 0xb4, 0x04, + 0xce, 0xdb, 0x68, 0x1c, 0xd2, 0xb6, 0xe6, 0xe9, 0xec, 0xfe, 0x3f, 0x79, 0xc0, 0x9a, 0x24, 0x1e, + 0xd8, 0x37, 0x00, 0x5a, 0xff, 0xc7, 0x11, 0x31, 0x06, 0xfb, 0xd8, 0x22, 0x91, 0x7b, 0x55, 0xf3, + 0x3c, 0xec, 0x98, 0x84, 0x21, 0x43, 0xa7, 0xef, 0xae, 0x5a, 0xd5, 0x1d, 0xfe, 0x7f, 0x97, 0xe8, + 0x6f, 0xfe, 0x1f, 0x61, 0xa8, 0x3f, 0xa8, 0xf4, 0x21, 0xfb, 0x77, 0x73, 0x03, 0x02, 0x58, 0x26, + 0x48, 0x15, 0x18, 0xd5, 0xaa, 0x55, 0x83, 0x78, 0xb5, 0x56, 0x57, 0x37, 0x0c, 0xba, 0x71, 0xe2, + 0xd2, 0x7f, 0x26, 0xd8, 0x6d, 0x2c, 0x50, 0x40, 0x50, 0xe6, 0xf8, 0xe5, 0x2c, 0xf4, 0xdb, 0x4c, + 0x28, 0xf9, 0x3c, 0x8c, 0xb4, 0x49, 0x4a, 0xe4, 0xbb, 0x66, 0x98, 0x55, 0xf1, 0xee, 0x25, 0xf9, + 0x4d, 0x60, 0xf4, 0x83, 0xa9, 0xec, 0xea, 0x07, 0xfd, 0x5d, 0xfe, 0xb1, 0xee, 0x77, 0xc8, 0x86, + 0x42, 0x77, 0xc8, 0x34, 0xdb, 0x28, 0x67, 0x29, 0x7f, 0x7e, 0x75, 0x6c, 0x86, 0x3f, 0x60, 0xd7, + 0xc6, 0xa6, 0x2c, 0xa7, 0x36, 0x5d, 0xc3, 0xa6, 0x58, 0x29, 0x91, 0x47, 0x9a, 0x6d, 0xb8, 0xd4, + 0x1d, 0x83, 0x0f, 0xb8, 0xba, 0xe7, 0x43, 0xbf, 0xe9, 0x8d, 0xb2, 0xd4, 0xfc, 0xcc, 0xea, 0x82, + 0xef, 0xc7, 0xbf, 0x91, 0x80, 0x23, 0x21, 0x3f, 0x0e, 0x21, 0xb7, 0xbb, 0x73, 0xb1, 0xb3, 0xc7, + 0xf7, 0xf0, 0xf9, 0xd3, 0xcb, 0x90, 0x22, 0xf8, 0x28, 0xe6, 0xff, 0xb5, 0x14, 0x7e, 0xe9, 0x5f, + 0xfc, 0x63, 0x99, 0x3a, 0x45, 0xe7, 0x51, 0xa1, 0x4c, 0xca, 0x1f, 0xed, 0xdd, 0x7e, 0xf9, 0xe0, + 0xdb, 0xb5, 0xee, 0x9d, 0x33, 0x63, 0xab, 0x0d, 0x3f, 0x7b, 0x1e, 0xe4, 0x2e, 0xcb, 0x4f, 0x96, + 0x31, 0x77, 0x5f, 0xf0, 0xee, 0x21, 0x1d, 0x77, 0xbb, 0x9f, 0xb7, 0xdb, 0x08, 0xf6, 0xb8, 0x34, + 0xde, 0x86, 0xf1, 0xa7, 0x49, 0xdf, 0xc1, 0xa6, 0xa0, 0x48, 0xec, 0xe3, 0xfe, 0xcd, 0x19, 0x89, + 0xff, 0x2f, 0x47, 0x71, 0x0d, 0x06, 0x02, 0xf9, 0xf8, 0x42, 0xf7, 0x81, 0xa9, 0xae, 0xf3, 0xc5, + 0x54, 0x68, 0xb2, 0x50, 0x42, 0x94, 0xf2, 0x2f, 0x48, 0x70, 0x4f, 0x5b, 0xd7, 0x3c, 0xc7, 0xcf, + 0x77, 0x78, 0xf3, 0xb2, 0xe7, 0x3b, 0x7b, 0xe1, 0xb7, 0x30, 0xe7, 0x3b, 0x08, 0xfb, 0x60, 0xac, + 0xb0, 0x4c, 0x8a, 0x88, 0xb4, 0xcf, 0xc3, 0xc1, 0xa8, 0xb0, 0xc2, 0x4c, 0xcf, 0xc2, 0x50, 0xb4, + 0x80, 0xe0, 0xc5, 0xcd, 0x3e, 0xee, 0x5e, 0x0c, 0x46, 0x8a, 0x08, 0x59, 0x6d, 0x1d, 0x1a, 0xdf, + 0x3c, 0x15, 0xc8, 0xfa, 0xa8, 0x7c, 0xe9, 0xd8, 0xb3, 0x75, 0x02, 0x4a, 0xf9, 0x6b, 0x12, 0x1c, + 0x8b, 0xf6, 0x10, 0x2c, 0x7c, 0xdc, 0xbb, 0xae, 0xdf, 0x1d, 0x73, 0xa4, 0x57, 0x25, 0xb8, 0x77, + 0x17, 0x35, 0xb8, 0xcd, 0x6e, 0xc2, 0x58, 0x68, 0x77, 0x55, 0x4c, 0x14, 0xc2, 0xb9, 0x4e, 0xc4, + 0x6f, 0x0b, 0xfb, 0x9b, 0x89, 0x87, 0x89, 0x1d, 0xbf, 0xfc, 0xad, 0xc9, 0xd1, 0xf6, 0x67, 0xae, + 0x32, 0xda, 0xbe, 0x23, 0x7a, 0x07, 0xbd, 0xf0, 0x77, 0x25, 0x78, 0x28, 0xaa, 0x6a, 0x87, 0x33, + 0xd8, 0xb7, 0xd0, 0xd0, 0xfd, 0x07, 0x09, 0x4e, 0xf4, 0xa2, 0x0f, 0x1f, 0xc3, 0x0d, 0x18, 0x0d, + 0x8e, 0x45, 0x5a, 0x87, 0xf0, 0xe1, 0x3d, 0x1c, 0x6e, 0xf3, 0x58, 0x40, 0x3e, 0xb7, 0xbb, 0x30, + 0x56, 0xff, 0x4a, 0xe2, 0xf1, 0x1b, 0x76, 0x13, 0x7f, 0x60, 0xa2, 0x0b, 0x9e, 0x3d, 0x0e, 0x4c, + 0x68, 0xd1, 0x33, 0x18, 0x59, 0xf4, 0x74, 0x18, 0xf2, 0xc4, 0x1d, 0xca, 0x46, 0xd7, 0x79, 0xb6, + 0xee, 0x70, 0xce, 0xf2, 0x3e, 0x18, 0xed, 0x10, 0x5a, 0x3c, 0x31, 0xed, 0x21, 0xb2, 0x14, 0xd4, + 0x1e, 0x3c, 0xf2, 0xbf, 0x95, 0x60, 0x92, 0x76, 0xdc, 0x61, 0x18, 0xdf, 0xca, 0xf6, 0x6c, 0xf0, + 0xdc, 0xdb, 0x51, 0x2d, 0x6e, 0xd8, 0x05, 0xe8, 0x63, 0x1e, 0xca, 0x6d, 0xb9, 0x0f, 0x17, 0xe7, + 0x0c, 0x82, 0x5c, 0x3f, 0x27, 0xf4, 0xeb, 0x9c, 0x30, 0xee, 0x92, 0x1d, 0xef, 0x54, 0xc2, 0x78, + 0x59, 0xe4, 0xfa, 0xce, 0x6a, 0x70, 0xbb, 0xe9, 0x77, 0x2c, 0xd7, 0x33, 0x23, 0xbe, 0x49, 0x49, + 0xdd, 0xd7, 0x29, 0x26, 0xa9, 0xff, 0x80, 0x8f, 0x91, 0x9f, 0xd4, 0x63, 0xf4, 0x79, 0x2b, 0x26, + 0xf5, 0x3f, 0x4b, 0xc0, 0x21, 0xaa, 0x5b, 0xf8, 0xac, 0xf1, 0x4d, 0x18, 0x1b, 0x15, 0x90, 0xeb, + 0xe8, 0xea, 0x9d, 0xca, 0x45, 0x79, 0xd7, 0xd1, 0xaf, 0x46, 0x66, 0x74, 0x15, 0x50, 0xd5, 0xf5, + 0x5a, 0x3b, 0x48, 0xee, 0xbb, 0x83, 0xaa, 0xeb, 0x5d, 0xdd, 0xa5, 0x64, 0x48, 0xed, 0xdb, 0xbb, + 0xbe, 0x21, 0x41, 0xb1, 0xd3, 0x08, 0x70, 0x6f, 0x32, 0x60, 0x3c, 0x72, 0x8c, 0xde, 0xea, 0x50, + 0x8f, 0xf4, 0x72, 0x78, 0xdc, 0x12, 0xfe, 0x07, 0x1d, 0x7c, 0x57, 0x13, 0xc0, 0x3f, 0x17, 0x53, + 0x9c, 0x1f, 0x30, 0xed, 0xab, 0xb1, 0x1f, 0xfc, 0xb0, 0xff, 0xd5, 0xb6, 0x19, 0xe6, 0x2d, 0xb1, + 0xb0, 0xfb, 0xa6, 0x04, 0x13, 0x5d, 0xc4, 0x7e, 0x2b, 0x97, 0x17, 0x5b, 0x5d, 0x5d, 0xea, 0x4e, + 0xaf, 0x22, 0x4f, 0xf1, 0x78, 0x8c, 0xbe, 0xaa, 0x17, 0xda, 0x45, 0xe8, 0xf4, 0x55, 0x04, 0xf9, + 0x3d, 0x70, 0xb8, 0x23, 0x15, 0x97, 0xad, 0x04, 0xa9, 0x2d, 0xc3, 0xf5, 0xb8, 0x58, 0x0f, 0x74, + 0x13, 0xab, 0x85, 0x9a, 0xd2, 0xc8, 0x08, 0xf2, 0x94, 0xf5, 0xaa, 0x65, 0xd5, 0xb9, 0x18, 0xf2, + 0x65, 0x18, 0x09, 0xc1, 0x78, 0x27, 0x67, 0x20, 0x65, 0x5b, 0xfc, 0x3b, 0x60, 0xb9, 0x93, 0x47, + 0xba, 0x75, 0x42, 0x68, 0xb8, 0xda, 0x14, 0x5f, 0x1e, 0x03, 0xc4, 0x98, 0xd1, 0xbb, 0x5e, 0xa2, + 0x8b, 0x35, 0x18, 0x8d, 0x40, 0x79, 0x27, 0x3f, 0x04, 0x7d, 0x36, 0x85, 0xf8, 0x6f, 0x9b, 0x77, + 0xeb, 0x86, 0x62, 0xf9, 0x5f, 0x5e, 0xa2, 0xad, 0x93, 0xdf, 0x3d, 0x08, 0x69, 0xca, 0x15, 0x7d, + 0x4a, 0x02, 0x08, 0xdd, 0xdc, 0x9a, 0xea, 0xc6, 0xa6, 0xf3, 0x6e, 0x4e, 0x71, 0xba, 0x67, 0x7c, + 0x5e, 0x77, 0x9f, 0xf8, 0xb1, 0x7f, 0xf3, 0x9d, 0x9f, 0x4e, 0xdc, 0x8f, 0xe4, 0xe9, 0x2e, 0xfb, + 0x48, 0xa1, 0x60, 0xfc, 0x52, 0xe4, 0x23, 0x54, 0x8f, 0xf6, 0xd6, 0x95, 0x90, 0x6c, 0xaa, 0x57, + 0x74, 0x2e, 0xd8, 0x79, 0x2a, 0xd8, 0x69, 0xf4, 0x44, 0xbc, 0x60, 0xd3, 0xef, 0x8f, 0x46, 0xd7, + 0x07, 0xd1, 0x37, 0x25, 0x18, 0xeb, 0xb4, 0x4d, 0x80, 0xce, 0xf6, 0x26, 0x45, 0x7b, 0x41, 0x56, + 0x3c, 0xb7, 0x0f, 0x4a, 0xae, 0xca, 0x3c, 0x55, 0x65, 0x06, 0x3d, 0xb5, 0x0f, 0x55, 0xa6, 0x43, + 0xb3, 0x1f, 0xfa, 0xbf, 0x12, 0x1c, 0xdd, 0x75, 0x09, 0x8d, 0x66, 0x7a, 0x93, 0x72, 0x97, 0xca, + 0xb3, 0x58, 0x7e, 0x23, 0x2c, 0xb8, 0xc6, 0x4f, 0x53, 0x8d, 0x2f, 0xa3, 0x85, 0xfd, 0x68, 0x1c, + 0x94, 0x89, 0x61, 0xdd, 0x7f, 0x5b, 0x8a, 0xbc, 0x4e, 0xb1, 0xbb, 0x3b, 0xb5, 0xad, 0x1d, 0x63, + 0x02, 0xa3, 0x7d, 0x49, 0x20, 0x3f, 0x4b, 0x55, 0x50, 0xd0, 0xea, 0x1b, 0x1c, 0xb4, 0xe9, 0xf7, + 0x47, 0x27, 0x95, 0x0f, 0xa2, 0xff, 0x2d, 0x75, 0x7e, 0x7f, 0xe1, 0xc9, 0x5d, 0x45, 0xec, 0xbe, + 0x2e, 0x2e, 0x9e, 0xdd, 0x3b, 0x21, 0x57, 0xb2, 0x41, 0x95, 0xac, 0x21, 0x7c, 0xa7, 0x95, 0xec, + 0x38, 0x88, 0xe8, 0x77, 0x24, 0x18, 0xeb, 0xb4, 0xa2, 0x8b, 0x09, 0xcb, 0x5d, 0xd6, 0xb2, 0x31, + 0x61, 0xb9, 0xdb, 0xf2, 0x51, 0xfe, 0x21, 0xaa, 0xfc, 0x19, 0x74, 0xaa, 0x9b, 0xf2, 0xbb, 0x8e, + 0x22, 0x89, 0xc5, 0x5d, 0x57, 0x3e, 0x31, 0xb1, 0xd8, 0xcb, 0x2a, 0x30, 0x26, 0x16, 0x7b, 0x5a, + 0x78, 0xc5, 0xc7, 0xa2, 0xaf, 0x59, 0x8f, 0xc3, 0xe8, 0xa2, 0xdf, 0x90, 0x60, 0x30, 0x52, 0x97, + 0xa3, 0xc7, 0x77, 0x15, 0xb4, 0xd3, 0x2a, 0xaa, 0x78, 0x72, 0x2f, 0x24, 0x5c, 0x97, 0x05, 0xaa, + 0xcb, 0x2c, 0x9a, 0xd9, 0x8f, 0x2e, 0x4e, 0x44, 0xe2, 0x6f, 0x48, 0x30, 0xda, 0xa1, 0x84, 0x8d, + 0x89, 0xc2, 0xee, 0xa5, 0x7b, 0xf1, 0xec, 0xde, 0x09, 0xb9, 0x56, 0x17, 0xa8, 0x56, 0xef, 0x46, + 0xef, 0xda, 0x8f, 0x56, 0xa1, 0xf9, 0xf9, 0x56, 0x70, 0x3f, 0x3a, 0xd4, 0x0f, 0x3a, 0xb3, 0x47, + 0xc1, 0x84, 0x42, 0x4f, 0xee, 0x99, 0x8e, 0xeb, 0xf3, 0x0c, 0xd5, 0xe7, 0x69, 0xb4, 0xf2, 0xc6, + 0xf4, 0x69, 0x9f, 0xd6, 0xbf, 0xd2, 0xfe, 0xa9, 0x88, 0xdd, 0xbd, 0xa8, 0x63, 0xb1, 0x5a, 0x7c, + 0x62, 0x4f, 0x34, 0x5c, 0xa9, 0xb3, 0x54, 0xa9, 0x93, 0xe8, 0xb1, 0x6e, 0x4a, 0x85, 0x2e, 0xc1, + 0x1b, 0xe6, 0xa6, 0x35, 0xfd, 0x7e, 0x56, 0x02, 0x7f, 0x10, 0xfd, 0xa8, 0xb8, 0x80, 0x7c, 0x7c, + 0xd7, 0x7e, 0x43, 0x75, 0x6c, 0xf1, 0xa1, 0x1e, 0x30, 0xb9, 0x5c, 0xf7, 0x53, 0xb9, 0x26, 0xd0, + 0x91, 0x6e, 0x72, 0x91, 0x5a, 0x16, 0x7d, 0x4c, 0xf2, 0xdf, 0x59, 0x38, 0xb1, 0x3b, 0xef, 0x70, + 0xb1, 0x5b, 0x7c, 0xb8, 0x27, 0x5c, 0x2e, 0xc9, 0x03, 0x54, 0x92, 0x63, 0x68, 0xa2, 0xab, 0x24, + 0xac, 0xf4, 0xbd, 0xd3, 0x77, 0x5e, 0x3e, 0x9d, 0xe9, 0xfa, 0x59, 0x94, 0x1a, 0x36, 0xb1, 0x6b, + 0xb8, 0xfb, 0xba, 0x93, 0xdc, 0xdb, 0xc1, 0xea, 0x37, 0xd3, 0x30, 0x30, 0xcf, 0x7a, 0x59, 0xf3, + 0x34, 0xef, 0x0d, 0x2e, 0x04, 0x90, 0xcb, 0xbf, 0xb0, 0xc8, 0x3e, 0x0d, 0x1b, 0x7c, 0xec, 0x74, + 0x60, 0x4f, 0x1f, 0x0d, 0x60, 0x57, 0x20, 0xf9, 0xfb, 0xf9, 0xad, 0xfc, 0x64, 0xf6, 0xb1, 0x46, + 0x7a, 0xeb, 0x86, 0x7d, 0xd4, 0xf5, 0xc3, 0x12, 0x1c, 0xa4, 0x58, 0x41, 0xbc, 0x51, 0x4c, 0xf1, + 0x3e, 0x61, 0x57, 0x8f, 0x59, 0xd4, 0x42, 0xdb, 0x3f, 0xec, 0x33, 0xac, 0xf7, 0xf3, 0xd7, 0x5b, + 0x8e, 0x84, 0x3a, 0x6f, 0x65, 0x2b, 0x2b, 0xa3, 0xf5, 0x36, 0x4a, 0xb7, 0x65, 0xd3, 0x20, 0xb5, + 0xff, 0x4d, 0x83, 0x4b, 0x90, 0x0b, 0x65, 0xfa, 0x42, 0x3a, 0xe6, 0x15, 0xde, 0xd6, 0x9d, 0xc5, + 0x30, 0x31, 0xfa, 0xa8, 0x04, 0x07, 0x3b, 0x4e, 0x82, 0xf4, 0xff, 0xf7, 0xee, 0x71, 0xe7, 0xb2, + 0xc5, 0x38, 0x1d, 0xf9, 0xca, 0xca, 0x58, 0xb3, 0x53, 0x35, 0xb1, 0x0a, 0x83, 0x91, 0x09, 0xac, + 0x20, 0xfe, 0x0b, 0x77, 0xef, 0x2f, 0x5c, 0x44, 0x19, 0xa0, 0x22, 0x64, 0xf0, 0xb6, 0x6d, 0x39, + 0x1e, 0xae, 0xd2, 0xcb, 0x3a, 0x19, 0xc5, 0x6f, 0xcb, 0x37, 0x00, 0xb5, 0x0f, 0x2e, 0xba, 0xdc, + 0xf2, 0xdd, 0xe1, 0xfd, 0x6c, 0x60, 0xf8, 0x9f, 0x2a, 0x1e, 0x83, 0x74, 0xf8, 0x63, 0xbe, 0xac, + 0x71, 0xa7, 0x93, 0xc3, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x8c, 0x8b, 0x36, 0x50, 0x7f, 0x95, + 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r)