lnrpc: ability to spend unconfirmed coins

This commit is contained in:
Tom Kirkpatrick 2020-09-27 16:48:15 +01:00
parent fd962d322a
commit 73a5f325b6
No known key found for this signature in database
GPG Key ID: 72203A8EC5967EA8
15 changed files with 1030 additions and 764 deletions

View File

@ -21,8 +21,7 @@ import (
)
const (
defaultUtxoMinConf = 1
userMsgFund = `PSBT funding initiated with peer %x.
userMsgFund = `PSBT funding initiated with peer %x.
Please create a PSBT that sends %v (%d satoshi) to the funding address %s.
Note: The whole process should be completed within 10 minutes, otherwise there
@ -43,7 +42,7 @@ Paste the funded PSBT here to continue the funding flow.
Base64 encoded PSBT: `
userMsgSign = `
PSBT verified by lnd, please continue the funding flow by signing the PSBT by
PSBT verified by lnd, please continue the funding flow by signing the PSBT by
all required parties/devices. Once the transaction is fully signed, paste it
again here either in base64 PSBT or hex encoded raw wire TX format.
@ -68,7 +67,7 @@ var openChannelCommand = cli.Command{
amount to the remote node as part of the channel opening. Once the channel is open,
a channelPoint (txid:vout) of the funding output is returned.
If the remote peer supports the option upfront shutdown feature bit (query
If the remote peer supports the option upfront shutdown feature bit (query
listpeers to see their supported feature bits), an address to enforce
payout of funds on cooperative close can optionally be provided. Note that
if you set this value, you will not be able to cooperatively close out to

View File

@ -35,6 +35,10 @@ import (
const defaultRecoveryWindow int32 = 2500
const (
defaultUtxoMinConf = 1
)
func printJSON(resp interface{}) {
b, err := json.Marshal(resp)
if err != nil {
@ -238,6 +242,13 @@ var sendCoinsCommand = cli.Command{
"sat/byte that should be used when crafting " +
"the transaction",
},
cli.Uint64Flag{
Name: "min_confs",
Usage: "(optional) the minimum number of confirmations " +
"each one of your outputs used for the transaction " +
"must satisfy",
Value: defaultUtxoMinConf,
},
txLabelFlag,
},
Action: actionDecorator(sendCoins),
@ -292,13 +303,16 @@ func sendCoins(ctx *cli.Context) error {
client, cleanUp := getClient(ctx)
defer cleanUp()
minConfs := int32(ctx.Uint64("min_confs"))
req := &lnrpc.SendCoinsRequest{
Addr: addr,
Amount: amt,
TargetConf: int32(ctx.Int64("conf_target")),
SatPerByte: ctx.Int64("sat_per_byte"),
SendAll: ctx.Bool("sweepall"),
Label: ctx.String(txLabelFlag.Name),
Addr: addr,
Amount: amt,
TargetConf: int32(ctx.Int64("conf_target")),
SatPerByte: ctx.Int64("sat_per_byte"),
SendAll: ctx.Bool("sweepall"),
Label: ctx.String(txLabelFlag.Name),
MinConfs: minConfs,
SpendUnconfirmed: minConfs == 0,
}
txid, err := client.SendCoins(ctxb, req)
if err != nil {
@ -454,6 +468,13 @@ var sendManyCommand = cli.Command{
Usage: "(optional) a manual fee expressed in sat/byte that should be " +
"used when crafting the transaction",
},
cli.Uint64Flag{
Name: "min_confs",
Usage: "(optional) the minimum number of confirmations " +
"each one of your outputs used for the transaction " +
"must satisfy",
Value: defaultUtxoMinConf,
},
txLabelFlag,
},
Action: actionDecorator(sendMany),
@ -476,11 +497,14 @@ func sendMany(ctx *cli.Context) error {
client, cleanUp := getClient(ctx)
defer cleanUp()
minConfs := int32(ctx.Uint64("min_confs"))
txid, err := client.SendMany(ctxb, &lnrpc.SendManyRequest{
AddrToAmount: amountToAddr,
TargetConf: int32(ctx.Int64("conf_target")),
SatPerByte: ctx.Int64("sat_per_byte"),
Label: ctx.String(txLabelFlag.Name),
AddrToAmount: amountToAddr,
TargetConf: int32(ctx.Int64("conf_target")),
SatPerByte: ctx.Int64("sat_per_byte"),
Label: ctx.String(txLabelFlag.Name),
MinConfs: minConfs,
SpendUnconfirmed: minConfs == 0,
})
if err != nil {
return err
@ -1814,7 +1838,7 @@ var listChainTxnsCommand = cli.Command{
To get all transactions until the chain tip, including unconfirmed
transactions (identifiable with BlockHeight=0), set end_height to -1.
By default, this call will get all transactions our wallet was involved
in, including unconfirmed transactions.
in, including unconfirmed transactions.
`,
Action: actionDecorator(listChainTxns),
}

View File

@ -2003,7 +2003,12 @@ type SendManyRequest struct {
// transaction.
SatPerByte int64 `protobuf:"varint,5,opt,name=sat_per_byte,json=satPerByte,proto3" json:"sat_per_byte,omitempty"`
// An optional label for the transaction, limited to 500 characters.
Label string `protobuf:"bytes,6,opt,name=label,proto3" json:"label,omitempty"`
Label string `protobuf:"bytes,6,opt,name=label,proto3" json:"label,omitempty"`
// The minimum number of confirmations each one of your outputs used for
// the transaction must satisfy.
MinConfs int32 `protobuf:"varint,7,opt,name=min_confs,json=minConfs,proto3" json:"min_confs,omitempty"`
// Whether unconfirmed outputs should be used as inputs for the transaction.
SpendUnconfirmed bool `protobuf:"varint,8,opt,name=spend_unconfirmed,json=spendUnconfirmed,proto3" json:"spend_unconfirmed,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -2062,6 +2067,20 @@ func (m *SendManyRequest) GetLabel() string {
return ""
}
func (m *SendManyRequest) GetMinConfs() int32 {
if m != nil {
return m.MinConfs
}
return 0
}
func (m *SendManyRequest) GetSpendUnconfirmed() bool {
if m != nil {
return m.SpendUnconfirmed
}
return false
}
type SendManyResponse struct {
// The id of the transaction
Txid string `protobuf:"bytes,1,opt,name=txid,proto3" json:"txid,omitempty"`
@ -2119,7 +2138,12 @@ type SendCoinsRequest struct {
//address.
SendAll bool `protobuf:"varint,6,opt,name=send_all,json=sendAll,proto3" json:"send_all,omitempty"`
// An optional label for the transaction, limited to 500 characters.
Label string `protobuf:"bytes,7,opt,name=label,proto3" json:"label,omitempty"`
Label string `protobuf:"bytes,7,opt,name=label,proto3" json:"label,omitempty"`
// The minimum number of confirmations each one of your outputs used for
// the transaction must satisfy.
MinConfs int32 `protobuf:"varint,8,opt,name=min_confs,json=minConfs,proto3" json:"min_confs,omitempty"`
// Whether unconfirmed outputs should be used as inputs for the transaction.
SpendUnconfirmed bool `protobuf:"varint,9,opt,name=spend_unconfirmed,json=spendUnconfirmed,proto3" json:"spend_unconfirmed,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -2192,6 +2216,20 @@ func (m *SendCoinsRequest) GetLabel() string {
return ""
}
func (m *SendCoinsRequest) GetMinConfs() int32 {
if m != nil {
return m.MinConfs
}
return 0
}
func (m *SendCoinsRequest) GetSpendUnconfirmed() bool {
if m != nil {
return m.SpendUnconfirmed
}
return false
}
type SendCoinsResponse struct {
// The transaction ID of the transaction
Txid string `protobuf:"bytes,1,opt,name=txid,proto3" json:"txid,omitempty"`
@ -12607,588 +12645,589 @@ func init() {
func init() { proto.RegisterFile("rpc.proto", fileDescriptor_77a6da22d6a3feb1) }
var fileDescriptor_77a6da22d6a3feb1 = []byte{
// 12123 bytes of a gzipped FileDescriptorProto
// 12139 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7d, 0x59, 0x6c, 0x23, 0x49,
0x96, 0x58, 0xf1, 0x12, 0xc9, 0x47, 0x52, 0xa2, 0x42, 0x17, 0x4b, 0xd5, 0xd5, 0x55, 0x9d, 0xdd,
0xd3, 0x5d, 0x53, 0x3d, 0xa3, 0xae, 0xae, 0xee, 0xea, 0x63, 0xda, 0x3b, 0x33, 0x14, 0x45, 0x95,
0x38, 0x25, 0x91, 0x9a, 0x24, 0xd5, 0xbd, 0xbd, 0xd8, 0xdd, 0xdc, 0x14, 0x19, 0x92, 0xd2, 0x45,
0x66, 0xb2, 0x33, 0x93, 0x55, 0xd2, 0x18, 0x06, 0xf6, 0x63, 0x7d, 0x60, 0xb1, 0x30, 0x60, 0xc0,
0x6b, 0xc0, 0xc7, 0xc2, 0x17, 0x6c, 0xff, 0x2d, 0x0c, 0xef, 0xda, 0x5f, 0xfe, 0xf6, 0xc2, 0x80,
0x0f, 0x18, 0x5e, 0xc3, 0x07, 0x16, 0x0b, 0x18, 0xb0, 0xd7, 0x1f, 0x06, 0x8c, 0x05, 0xec, 0x1f,
0x7f, 0x18, 0x30, 0xe2, 0xc5, 0x91, 0x91, 0x87, 0xaa, 0xaa, 0x67, 0xdb, 0xf3, 0x23, 0x31, 0x5e,
0xbc, 0xb8, 0x23, 0x5e, 0xbc, 0x2b, 0x5e, 0x42, 0xd5, 0x9f, 0x8f, 0x77, 0xe6, 0xbe, 0x17, 0x7a,
0xa4, 0x34, 0x75, 0xfd, 0xf9, 0xd8, 0xf8, 0xa3, 0x1c, 0x14, 0x4f, 0xc2, 0x4b, 0x8f, 0x3c, 0x82,
0xba, 0x3d, 0x99, 0xf8, 0x34, 0x08, 0xac, 0xf0, 0x6a, 0x4e, 0x5b, 0xb9, 0xbb, 0xb9, 0x7b, 0xcb,
0x0f, 0xc9, 0x0e, 0xa2, 0xed, 0xb4, 0x79, 0xd6, 0xe8, 0x6a, 0x4e, 0xcd, 0x9a, 0x1d, 0x25, 0x48,
0x0b, 0xca, 0x22, 0xd9, 0xca, 0xdf, 0xcd, 0xdd, 0xab, 0x9a, 0x32, 0x49, 0x6e, 0x03, 0xd8, 0x33,
0x6f, 0xe1, 0x86, 0x56, 0x60, 0x87, 0xad, 0xc2, 0xdd, 0xdc, 0xbd, 0x82, 0x59, 0xe5, 0x90, 0xa1,
0x1d, 0x92, 0x5b, 0x50, 0x9d, 0x3f, 0xb5, 0x82, 0xb1, 0xef, 0xcc, 0xc3, 0x56, 0x11, 0x8b, 0x56,
0xe6, 0x4f, 0x87, 0x98, 0x26, 0xef, 0x42, 0xc5, 0x5b, 0x84, 0x73, 0xcf, 0x71, 0xc3, 0x56, 0xe9,
0x6e, 0xee, 0x5e, 0xed, 0xe1, 0x8a, 0xe8, 0xc8, 0x60, 0x11, 0x1e, 0x33, 0xb0, 0xa9, 0x10, 0xc8,
0x5b, 0xd0, 0x18, 0x7b, 0xee, 0x99, 0xe3, 0xcf, 0xec, 0xd0, 0xf1, 0xdc, 0xa0, 0xb5, 0x84, 0x6d,
0xc5, 0x81, 0xc6, 0x3f, 0xcf, 0x43, 0x6d, 0xe4, 0xdb, 0x6e, 0x60, 0x8f, 0x19, 0x80, 0x6c, 0x41,
0x39, 0xbc, 0xb4, 0x2e, 0xec, 0xe0, 0x02, 0x87, 0x5a, 0x35, 0x97, 0xc2, 0xcb, 0x03, 0x3b, 0xb8,
0x20, 0x9b, 0xb0, 0xc4, 0x7b, 0x89, 0x03, 0x2a, 0x98, 0x22, 0x45, 0xde, 0x85, 0x55, 0x77, 0x31,
0xb3, 0xe2, 0x4d, 0xb1, 0x61, 0x95, 0xcc, 0xa6, 0xbb, 0x98, 0x75, 0x74, 0x38, 0x1b, 0xfc, 0xe9,
0xd4, 0x1b, 0x3f, 0xe5, 0x0d, 0xf0, 0xe1, 0x55, 0x11, 0x82, 0x6d, 0xbc, 0x01, 0x75, 0x91, 0x4d,
0x9d, 0xf3, 0x0b, 0x3e, 0xc6, 0x92, 0x59, 0xe3, 0x08, 0x08, 0x62, 0x35, 0x84, 0xce, 0x8c, 0x5a,
0x41, 0x68, 0xcf, 0xe6, 0x62, 0x48, 0x55, 0x06, 0x19, 0x32, 0x00, 0x66, 0x7b, 0xa1, 0x3d, 0xb5,
0xce, 0x28, 0x0d, 0x5a, 0x65, 0x91, 0xcd, 0x20, 0xfb, 0x94, 0x06, 0xe4, 0x5b, 0xb0, 0x3c, 0xa1,
0x41, 0x68, 0x89, 0xc5, 0xa0, 0x41, 0xab, 0x72, 0xb7, 0x70, 0xaf, 0x6a, 0x36, 0x18, 0xb4, 0x2d,
0x81, 0xe4, 0x35, 0x00, 0xdf, 0x7e, 0x6e, 0xb1, 0x89, 0xa0, 0x97, 0xad, 0x2a, 0x5f, 0x05, 0xdf,
0x7e, 0x3e, 0xba, 0x3c, 0xa0, 0x97, 0x64, 0x1d, 0x4a, 0x53, 0xfb, 0x94, 0x4e, 0x5b, 0x80, 0x19,
0x3c, 0x61, 0xfc, 0x02, 0x6c, 0x3e, 0xa6, 0xa1, 0x36, 0x95, 0x81, 0x49, 0xbf, 0x5a, 0xd0, 0x20,
0x64, 0xa3, 0x0a, 0x42, 0xdb, 0x0f, 0xe5, 0xa8, 0x72, 0x7c, 0x54, 0x08, 0x8b, 0x46, 0x45, 0xdd,
0x89, 0x44, 0xc8, 0x23, 0x42, 0x95, 0xba, 0x13, 0x9e, 0x6d, 0x1c, 0x02, 0xd1, 0x2a, 0xde, 0xa3,
0xa1, 0xed, 0x4c, 0x03, 0xf2, 0x11, 0xd4, 0x43, 0xad, 0xb9, 0x56, 0xee, 0x6e, 0xe1, 0x5e, 0x4d,
0x6d, 0x4d, 0xad, 0x80, 0x19, 0xc3, 0x33, 0x2e, 0xa0, 0xb2, 0x4f, 0xe9, 0xa1, 0x33, 0x73, 0x42,
0xb2, 0x09, 0xa5, 0x33, 0xe7, 0x92, 0x4e, 0xb0, 0x53, 0x85, 0x83, 0x1b, 0x26, 0x4f, 0x92, 0x3b,
0x00, 0xf8, 0xc3, 0x9a, 0xa9, 0x5d, 0x7a, 0x70, 0xc3, 0xac, 0x22, 0xec, 0x28, 0xb0, 0x43, 0xb2,
0x0d, 0xe5, 0x39, 0xf5, 0xc7, 0x54, 0xee, 0x87, 0x83, 0x1b, 0xa6, 0x04, 0xec, 0x96, 0xa1, 0x34,
0x65, 0xb5, 0x1b, 0xbf, 0x57, 0x82, 0xda, 0x90, 0xba, 0x13, 0x39, 0x13, 0x04, 0x8a, 0x6c, 0xa2,
0xb1, 0xb1, 0xba, 0x89, 0xbf, 0xc9, 0x9b, 0x50, 0xc3, 0x25, 0x09, 0x42, 0xdf, 0x71, 0xcf, 0xf9,
0x69, 0xd9, 0xcd, 0xb7, 0x72, 0x26, 0x30, 0xf0, 0x10, 0xa1, 0xa4, 0x09, 0x05, 0x7b, 0x26, 0x4f,
0x0b, 0xfb, 0x49, 0x6e, 0x42, 0xc5, 0x9e, 0x85, 0xbc, 0x7b, 0x75, 0x04, 0x97, 0xed, 0x59, 0x88,
0x5d, 0x7b, 0x03, 0xea, 0x73, 0xfb, 0x6a, 0x46, 0xdd, 0x30, 0xda, 0x66, 0x75, 0xb3, 0x26, 0x60,
0xb8, 0xd1, 0x1e, 0xc2, 0x9a, 0x8e, 0x22, 0x1b, 0x2f, 0xa9, 0xc6, 0x57, 0x35, 0x6c, 0xd1, 0x87,
0x77, 0x60, 0x45, 0x96, 0xf1, 0xf9, 0x78, 0x70, 0xfb, 0x55, 0xcd, 0x65, 0x01, 0x96, 0xa3, 0xbc,
0x07, 0xcd, 0x33, 0xc7, 0xb5, 0xa7, 0xd6, 0x78, 0x1a, 0x3e, 0xb3, 0x26, 0x74, 0x1a, 0xda, 0xb8,
0x13, 0x4b, 0xe6, 0x32, 0xc2, 0x3b, 0xd3, 0xf0, 0xd9, 0x1e, 0x83, 0x92, 0xef, 0x40, 0xf5, 0x8c,
0x52, 0x0b, 0x27, 0xab, 0x55, 0x89, 0x1d, 0x68, 0xb9, 0x42, 0x66, 0xe5, 0x4c, 0xae, 0xd5, 0x77,
0xa0, 0xe9, 0x2d, 0xc2, 0x73, 0xcf, 0x71, 0xcf, 0xad, 0xf1, 0x85, 0xed, 0x5a, 0xce, 0x04, 0xf7,
0x66, 0x71, 0x37, 0xff, 0x20, 0x67, 0x2e, 0xcb, 0xbc, 0xce, 0x85, 0xed, 0xf6, 0x26, 0xe4, 0x6d,
0x58, 0x99, 0xda, 0x41, 0x68, 0x5d, 0x78, 0x73, 0x6b, 0xbe, 0x38, 0x7d, 0x4a, 0xaf, 0x5a, 0x0d,
0x9c, 0x88, 0x06, 0x03, 0x1f, 0x78, 0xf3, 0x63, 0x04, 0xb2, 0xad, 0x87, 0xfd, 0xe4, 0x9d, 0x60,
0x5b, 0xba, 0x61, 0x56, 0x19, 0x84, 0x37, 0xfa, 0x25, 0xac, 0xe1, 0xf2, 0x8c, 0x17, 0x41, 0xe8,
0xcd, 0x2c, 0x9f, 0x8e, 0x3d, 0x7f, 0x12, 0xb4, 0x6a, 0xb8, 0xd7, 0xbe, 0x2d, 0x3a, 0xab, 0xad,
0xf1, 0xce, 0x1e, 0x0d, 0xc2, 0x0e, 0x22, 0x9b, 0x1c, 0xb7, 0xeb, 0x86, 0xfe, 0x95, 0xb9, 0x3a,
0x49, 0xc2, 0xc9, 0x77, 0x80, 0xd8, 0xd3, 0xa9, 0xf7, 0xdc, 0x0a, 0xe8, 0xf4, 0xcc, 0x12, 0x93,
0xd8, 0x5a, 0xbe, 0x9b, 0xbb, 0x57, 0x31, 0x9b, 0x98, 0x33, 0xa4, 0xd3, 0xb3, 0x63, 0x0e, 0x27,
0x1f, 0x01, 0x1e, 0x52, 0xeb, 0x8c, 0xda, 0xe1, 0xc2, 0xa7, 0x41, 0x6b, 0xe5, 0x6e, 0xe1, 0xde,
0xf2, 0xc3, 0x55, 0x35, 0x5f, 0x08, 0xde, 0x75, 0x42, 0xb3, 0xce, 0xf0, 0x44, 0x3a, 0xd8, 0xde,
0x83, 0xcd, 0xec, 0x2e, 0xb1, 0x4d, 0xc5, 0x66, 0x85, 0x6d, 0xc6, 0xa2, 0xc9, 0x7e, 0xb2, 0x93,
0xfd, 0xcc, 0x9e, 0x2e, 0x28, 0xee, 0xc2, 0xba, 0xc9, 0x13, 0xdf, 0xcb, 0x7f, 0x92, 0x33, 0x7e,
0x37, 0x07, 0x75, 0x3e, 0xca, 0x60, 0xee, 0xb9, 0x01, 0x25, 0x6f, 0x42, 0x43, 0xee, 0x06, 0xea,
0xfb, 0x9e, 0x2f, 0xa8, 0xa5, 0xdc, 0x79, 0x5d, 0x06, 0x23, 0xdf, 0x86, 0xa6, 0x44, 0x9a, 0xfb,
0xd4, 0x99, 0xd9, 0xe7, 0xb2, 0x6a, 0xb9, 0x95, 0x8e, 0x05, 0x98, 0xbc, 0x1f, 0xd5, 0xe7, 0x7b,
0x8b, 0x90, 0xe2, 0x5e, 0xaf, 0x3d, 0xac, 0x8b, 0xe1, 0x99, 0x0c, 0xa6, 0x6a, 0xc7, 0xd4, 0x2b,
0xec, 0x73, 0xe3, 0x37, 0x73, 0x40, 0x58, 0xb7, 0x47, 0x1e, 0xaf, 0x20, 0xa2, 0x48, 0xb1, 0x92,
0xb9, 0x57, 0x3e, 0x21, 0xf9, 0x17, 0x9d, 0x10, 0x03, 0x4a, 0xbc, 0xef, 0xc5, 0x8c, 0xbe, 0xf3,
0xac, 0x1f, 0x15, 0x2b, 0x85, 0x66, 0xd1, 0xf8, 0xcf, 0x05, 0x58, 0x67, 0xfb, 0xd4, 0xa5, 0xd3,
0xf6, 0x78, 0x4c, 0xe7, 0xea, 0xec, 0xdc, 0x81, 0x9a, 0xeb, 0x4d, 0xa8, 0xdc, 0xb1, 0xbc, 0x63,
0xc0, 0x40, 0xda, 0x76, 0xbd, 0xb0, 0x1d, 0x97, 0x77, 0x9c, 0x4f, 0x66, 0x15, 0x21, 0xd8, 0xed,
0xb7, 0x61, 0x65, 0x4e, 0xdd, 0x89, 0x7e, 0x44, 0x0a, 0x7c, 0xd7, 0x0b, 0xb0, 0x38, 0x1d, 0x77,
0xa0, 0x76, 0xb6, 0xe0, 0x78, 0x8c, 0xb0, 0x14, 0x71, 0x0f, 0x80, 0x00, 0xb5, 0x39, 0x7d, 0x99,
0x2f, 0x82, 0x0b, 0xcc, 0x2d, 0x61, 0x6e, 0x99, 0xa5, 0x59, 0xd6, 0x6d, 0x80, 0xc9, 0x22, 0x08,
0xc5, 0x89, 0x59, 0xc2, 0xcc, 0x2a, 0x83, 0xf0, 0x13, 0xf3, 0x5d, 0x58, 0x9b, 0xd9, 0x97, 0x16,
0xee, 0x1d, 0xcb, 0x71, 0xad, 0xb3, 0x29, 0x12, 0xf5, 0x32, 0xe2, 0x35, 0x67, 0xf6, 0xe5, 0xe7,
0x2c, 0xa7, 0xe7, 0xee, 0x23, 0x9c, 0x91, 0x95, 0x31, 0x9f, 0x09, 0xcb, 0xa7, 0x01, 0xf5, 0x9f,
0x51, 0xa4, 0x04, 0x45, 0x73, 0x59, 0x80, 0x4d, 0x0e, 0x65, 0x3d, 0x9a, 0xb1, 0x71, 0x87, 0xd3,
0x31, 0x3f, 0xf6, 0x66, 0x79, 0xe6, 0xb8, 0x07, 0xe1, 0x74, 0xcc, 0xee, 0x2b, 0x46, 0x47, 0xe6,
0xd4, 0xb7, 0x9e, 0x3e, 0xc7, 0x33, 0x5c, 0x44, 0xba, 0x71, 0x4c, 0xfd, 0x27, 0xcf, 0x19, 0x4b,
0x31, 0x0e, 0x90, 0x10, 0xd9, 0x57, 0xad, 0x1a, 0x1e, 0xf0, 0xca, 0x38, 0x60, 0x24, 0xc8, 0xbe,
0x62, 0x87, 0x90, 0xf5, 0xd6, 0xc6, 0x55, 0xa0, 0x13, 0xac, 0x3e, 0x40, 0x8a, 0xda, 0xc0, 0xce,
0xb6, 0x45, 0x06, 0x6b, 0x27, 0x60, 0xbb, 0x5e, 0x76, 0xf6, 0x6c, 0x6a, 0x9f, 0x07, 0x48, 0x52,
0x1a, 0x66, 0x5d, 0x00, 0xf7, 0x19, 0xcc, 0xf8, 0x02, 0x36, 0x12, 0x6b, 0x2b, 0xce, 0x0c, 0x63,
0x21, 0x10, 0x82, 0xeb, 0x5a, 0x31, 0x45, 0x2a, 0x6b, 0xd1, 0xf2, 0x19, 0x8b, 0x66, 0xfc, 0x56,
0x0e, 0xea, 0xa2, 0x66, 0x64, 0x76, 0xc8, 0x0e, 0x10, 0xb9, 0x8a, 0xe1, 0xa5, 0x33, 0xb1, 0x4e,
0xaf, 0x42, 0x1a, 0xf0, 0x4d, 0x73, 0x70, 0xc3, 0x6c, 0x8a, 0xbc, 0xd1, 0xa5, 0x33, 0xd9, 0x65,
0x39, 0xe4, 0x3e, 0x34, 0x63, 0xf8, 0x41, 0xe8, 0xf3, 0x1d, 0x7d, 0x70, 0xc3, 0x5c, 0xd6, 0xb0,
0x87, 0xa1, 0xcf, 0xce, 0x08, 0x63, 0xa5, 0x16, 0xa1, 0xe5, 0xb8, 0x13, 0x7a, 0x89, 0xdb, 0xa8,
0x61, 0xd6, 0x38, 0xac, 0xc7, 0x40, 0xbb, 0xcb, 0x50, 0xd7, 0xab, 0x33, 0xce, 0xa1, 0x22, 0xf9,
0x30, 0x64, 0x44, 0x12, 0x5d, 0x32, 0xab, 0xa1, 0xea, 0xc9, 0x4d, 0xa8, 0xc4, 0x7b, 0x60, 0x96,
0xc3, 0x57, 0x6e, 0xd8, 0xf8, 0x3e, 0x34, 0x0f, 0xd9, 0xe6, 0x71, 0xd9, 0x66, 0x15, 0x7c, 0xe5,
0x26, 0x2c, 0x69, 0x87, 0xa6, 0x6a, 0x8a, 0x14, 0xbb, 0x73, 0x2f, 0xbc, 0x20, 0x14, 0xad, 0xe0,
0x6f, 0xe3, 0xf7, 0x72, 0x40, 0xba, 0x41, 0xe8, 0xcc, 0xec, 0x90, 0xee, 0x53, 0x45, 0x16, 0x06,
0x50, 0x67, 0xb5, 0x8d, 0xbc, 0x36, 0x67, 0xf4, 0x38, 0x43, 0xf1, 0xae, 0x38, 0xc6, 0xe9, 0x02,
0x3b, 0x3a, 0x36, 0x27, 0xf3, 0xb1, 0x0a, 0xd8, 0x29, 0x0b, 0x6d, 0xff, 0x9c, 0x86, 0xc8, 0x1e,
0x0a, 0xbe, 0x06, 0x38, 0x88, 0x31, 0x86, 0xdb, 0x3f, 0x80, 0xd5, 0x54, 0x1d, 0x3a, 0x5d, 0xae,
0x66, 0xd0, 0xe5, 0x82, 0x4e, 0x97, 0x2d, 0x58, 0x8b, 0xf5, 0x4b, 0xec, 0xb4, 0x2d, 0x28, 0xb3,
0x03, 0xc1, 0x98, 0x83, 0x1c, 0xe7, 0x56, 0xcf, 0x28, 0x65, 0xec, 0xf5, 0x7b, 0xb0, 0x7e, 0x46,
0xa9, 0x6f, 0x87, 0x98, 0x89, 0x27, 0x86, 0xad, 0x90, 0xa8, 0x78, 0x55, 0xe4, 0x0d, 0xed, 0xf0,
0x98, 0xfa, 0x6c, 0xa5, 0x8c, 0xff, 0x93, 0x83, 0x15, 0x46, 0x41, 0x8f, 0x6c, 0xf7, 0x4a, 0xce,
0xd3, 0x61, 0xe6, 0x3c, 0xdd, 0xd3, 0x2e, 0x43, 0x0d, 0xfb, 0xeb, 0x4e, 0x52, 0x21, 0x39, 0x49,
0xe4, 0x2e, 0xd4, 0x63, 0x7d, 0x2d, 0x61, 0x5f, 0x21, 0x50, 0x9d, 0x8c, 0x38, 0xd2, 0x25, 0x8d,
0x23, 0xfd, 0x93, 0x4f, 0xee, 0xdb, 0xd0, 0x8c, 0x06, 0x23, 0x66, 0x96, 0x40, 0x91, 0x6d, 0x54,
0x51, 0x01, 0xfe, 0x36, 0xfe, 0x71, 0x8e, 0x23, 0x76, 0x3c, 0x27, 0xe2, 0x7a, 0x09, 0x14, 0x19,
0x97, 0x2d, 0x11, 0xd9, 0xef, 0x6b, 0x65, 0x88, 0x6f, 0x60, 0x0a, 0x6e, 0x42, 0x25, 0x60, 0x2c,
0xb4, 0x3d, 0xe5, 0xb3, 0x50, 0x31, 0xcb, 0x2c, 0xdd, 0x9e, 0x4e, 0xa3, 0xd9, 0x29, 0xeb, 0xfc,
0xfa, 0x3b, 0xb0, 0xaa, 0xf5, 0xf9, 0x05, 0xa3, 0xeb, 0x03, 0x39, 0x74, 0x82, 0xf0, 0xc4, 0x0d,
0xe6, 0x1a, 0x93, 0x77, 0x0b, 0xaa, 0x8c, 0x1a, 0xb3, 0xfe, 0x06, 0x82, 0xa3, 0x67, 0xe4, 0x99,
0xf5, 0x36, 0xc0, 0x4c, 0xfb, 0x52, 0x64, 0xe6, 0x45, 0xa6, 0x7d, 0x89, 0x99, 0xc6, 0x27, 0xb0,
0x16, 0xab, 0x4f, 0x34, 0xfd, 0x06, 0x94, 0x16, 0xe1, 0xa5, 0x27, 0xd9, 0xf8, 0x9a, 0xd8, 0x4d,
0x4c, 0x08, 0x35, 0x79, 0x8e, 0xf1, 0x19, 0xac, 0xf6, 0xe9, 0x73, 0x71, 0xe0, 0x65, 0x47, 0xde,
0x86, 0xe2, 0x4b, 0x04, 0x53, 0xcc, 0x37, 0x76, 0x80, 0xe8, 0x85, 0x45, 0xab, 0x9a, 0x9c, 0x9a,
0x8b, 0xc9, 0xa9, 0xc6, 0xdb, 0x40, 0x86, 0xce, 0xb9, 0x7b, 0x44, 0x83, 0xc0, 0x3e, 0x57, 0x24,
0xa2, 0x09, 0x85, 0x59, 0x70, 0x2e, 0xe8, 0x19, 0xfb, 0x69, 0x7c, 0x00, 0x6b, 0x31, 0x3c, 0x51,
0xf1, 0x6b, 0x50, 0x0d, 0x9c, 0x73, 0x17, 0x99, 0x30, 0x51, 0x75, 0x04, 0x30, 0xf6, 0x61, 0xfd,
0x73, 0xea, 0x3b, 0x67, 0x57, 0x2f, 0xab, 0x3e, 0x5e, 0x4f, 0x3e, 0x59, 0x4f, 0x17, 0x36, 0x12,
0xf5, 0x88, 0xe6, 0xf9, 0xa6, 0x16, 0x2b, 0x59, 0x31, 0x79, 0x42, 0xa3, 0x91, 0x79, 0x9d, 0x46,
0x1a, 0x1e, 0x90, 0x8e, 0xe7, 0xba, 0x74, 0x1c, 0x1e, 0x53, 0xea, 0xcb, 0xce, 0xbc, 0xab, 0xed,
0xe0, 0xda, 0xc3, 0x2d, 0x31, 0xb3, 0x49, 0xc2, 0x2b, 0xb6, 0x36, 0x81, 0xe2, 0x9c, 0xfa, 0x33,
0xac, 0xb8, 0x62, 0xe2, 0x6f, 0x36, 0xb9, 0x4c, 0x32, 0xf5, 0x16, 0x5c, 0x72, 0x29, 0x9a, 0x32,
0x69, 0x6c, 0xc0, 0x5a, 0xac, 0x41, 0xde, 0x6b, 0xe3, 0x01, 0x6c, 0xec, 0x39, 0xc1, 0x38, 0xdd,
0x95, 0x2d, 0x28, 0xcf, 0x17, 0xa7, 0x56, 0x9c, 0xba, 0x3f, 0xa1, 0x57, 0x46, 0x0b, 0x36, 0x93,
0x25, 0x44, 0x5d, 0xbf, 0x96, 0x83, 0xe2, 0xc1, 0xe8, 0xb0, 0x43, 0xb6, 0xa1, 0xe2, 0xb8, 0x63,
0x6f, 0xc6, 0xd8, 0x37, 0x3e, 0x1b, 0x2a, 0x7d, 0xed, 0x81, 0xbc, 0x05, 0x55, 0xe4, 0xfa, 0x98,
0xe0, 0x2d, 0x18, 0xa8, 0x0a, 0x03, 0x1c, 0x7a, 0xe3, 0xa7, 0x4c, 0xe2, 0xa7, 0x97, 0x73, 0xc7,
0x47, 0x99, 0x5e, 0xca, 0xac, 0x45, 0xce, 0x31, 0x44, 0x19, 0x42, 0x74, 0xfd, 0xb5, 0x3c, 0x10,
0x71, 0x67, 0x77, 0x3c, 0x37, 0x08, 0x7d, 0xdb, 0x71, 0xc3, 0x20, 0xce, 0x93, 0xe4, 0x12, 0x3c,
0xc9, 0x3d, 0x68, 0x22, 0x1f, 0x20, 0xf8, 0x21, 0x24, 0xe3, 0xf9, 0x88, 0x27, 0x12, 0x0c, 0x11,
0x23, 0xe7, 0x6f, 0xc1, 0x72, 0xc4, 0x8a, 0x29, 0x85, 0x4a, 0xd1, 0xac, 0x2b, 0x76, 0x4c, 0x10,
0x7d, 0x76, 0x1c, 0x25, 0x8f, 0xa1, 0xe4, 0x46, 0xce, 0xf5, 0xad, 0xce, 0xec, 0xcb, 0x63, 0x2a,
0x19, 0x3f, 0x94, 0x20, 0x0d, 0x68, 0x48, 0x56, 0x8b, 0x63, 0x72, 0x0e, 0xb0, 0x26, 0xf8, 0x2d,
0xc4, 0xc9, 0x66, 0x9c, 0x96, 0xb2, 0x19, 0x27, 0xe3, 0x3f, 0x54, 0xa1, 0x2c, 0xa6, 0x81, 0xb3,
0x41, 0xa1, 0xf3, 0x8c, 0x46, 0x6c, 0x10, 0x4b, 0x31, 0xe6, 0xca, 0xa7, 0x33, 0x2f, 0x54, 0xdc,
0x2f, 0xdf, 0xa4, 0x75, 0x0e, 0x14, 0xfc, 0xaf, 0xc6, 0x81, 0x71, 0x3d, 0x50, 0x81, 0x23, 0x8d,
0x75, 0xbe, 0xe8, 0x16, 0x94, 0x25, 0x23, 0x55, 0x54, 0x02, 0xe2, 0xd2, 0x98, 0xb3, 0xbe, 0xdb,
0x50, 0x19, 0xdb, 0x73, 0x7b, 0xec, 0x84, 0x57, 0x82, 0x8e, 0xaa, 0x34, 0xab, 0x7d, 0xea, 0x8d,
0xed, 0xa9, 0x75, 0x6a, 0x4f, 0x6d, 0x77, 0x4c, 0x85, 0x82, 0xa5, 0x8e, 0xc0, 0x5d, 0x0e, 0x23,
0xdf, 0x82, 0x65, 0xd1, 0x4f, 0x89, 0xc5, 0xf5, 0x2c, 0xa2, 0xf7, 0x12, 0x8d, 0x71, 0xea, 0xde,
0x8c, 0xad, 0xcb, 0x19, 0xe5, 0x3c, 0x6d, 0xc1, 0xac, 0x72, 0xc8, 0x3e, 0xc5, 0xd1, 0x8a, 0xec,
0xe7, 0x7c, 0x07, 0x55, 0x79, 0x53, 0x1c, 0xf8, 0x05, 0xd7, 0x8b, 0xa4, 0x19, 0xdb, 0x82, 0xc6,
0xd8, 0xbe, 0x0b, 0xab, 0x0b, 0x37, 0xa0, 0x61, 0x38, 0xa5, 0x13, 0xd5, 0x97, 0x1a, 0x22, 0x35,
0x55, 0x86, 0xec, 0xce, 0x0e, 0xac, 0x71, 0xcd, 0x50, 0x60, 0x87, 0x5e, 0x70, 0xe1, 0x04, 0x56,
0xc0, 0xc4, 0x4d, 0xae, 0x3b, 0x58, 0xc5, 0xac, 0xa1, 0xc8, 0x19, 0x72, 0x79, 0x73, 0x2b, 0x81,
0xef, 0xd3, 0x31, 0x75, 0x9e, 0xd1, 0x09, 0x32, 0xbd, 0x05, 0x73, 0x23, 0x56, 0xc6, 0x14, 0x99,
0x28, 0xc1, 0x2c, 0x66, 0xd6, 0x62, 0x3e, 0xb1, 0x19, 0xe7, 0xb7, 0xcc, 0x25, 0x0b, 0x77, 0x31,
0x3b, 0xe1, 0x10, 0xf2, 0x00, 0x24, 0x5b, 0x2b, 0xf6, 0xcc, 0x4a, 0x8c, 0xe0, 0xb3, 0x33, 0x6b,
0xd6, 0x05, 0x06, 0xe7, 0xba, 0xef, 0xe8, 0x87, 0xa5, 0xc9, 0x76, 0x18, 0x4a, 0x60, 0xd1, 0x81,
0x69, 0x41, 0x79, 0xee, 0x3b, 0xcf, 0xec, 0x90, 0xb6, 0x56, 0xf9, 0xdd, 0x27, 0x92, 0x8c, 0x7c,
0x3a, 0xae, 0x13, 0x3a, 0x76, 0xe8, 0xf9, 0x2d, 0x82, 0x79, 0x11, 0x80, 0xdc, 0x87, 0x55, 0xdc,
0x27, 0x41, 0x68, 0x87, 0x8b, 0x40, 0xb0, 0xf4, 0x6b, 0xb8, 0xa1, 0x50, 0x28, 0x19, 0x22, 0x1c,
0xb9, 0x7a, 0xf2, 0x31, 0x6c, 0xf2, 0xad, 0x91, 0x3a, 0x9a, 0xeb, 0x6c, 0x3a, 0xb0, 0x47, 0x6b,
0x88, 0xd1, 0x89, 0x9f, 0xd1, 0x4f, 0x61, 0x4b, 0x6c, 0x97, 0x54, 0xc9, 0x0d, 0x55, 0x72, 0x9d,
0xa3, 0x24, 0x8a, 0xee, 0xc0, 0x2a, 0xeb, 0x9a, 0x33, 0xb6, 0x44, 0x0d, 0xec, 0x54, 0x6c, 0xb2,
0x51, 0x60, 0xa1, 0x15, 0x9e, 0x69, 0x62, 0xde, 0x13, 0x7a, 0x45, 0xbe, 0x0f, 0x2b, 0x7c, 0xfb,
0xa0, 0xdc, 0x8a, 0xd7, 0xe2, 0x36, 0x5e, 0x8b, 0x1b, 0x62, 0x72, 0x3b, 0x2a, 0x17, 0x6f, 0xc6,
0xe5, 0x71, 0x2c, 0xcd, 0x8e, 0xc6, 0xd4, 0x39, 0xa3, 0x8c, 0x4a, 0xb7, 0xb6, 0xf8, 0x66, 0x93,
0x69, 0x76, 0x6a, 0x17, 0x73, 0xcc, 0x69, 0x71, 0x52, 0xc9, 0x53, 0xb8, 0x8f, 0xa7, 0x5e, 0x40,
0xa5, 0x4e, 0xb1, 0x75, 0x53, 0x1c, 0x48, 0x06, 0x94, 0xcc, 0x39, 0x93, 0x70, 0xb8, 0x34, 0xa9,
0x34, 0xbf, 0xb7, 0x70, 0x63, 0x34, 0xb8, 0x50, 0x29, 0xb5, 0xbf, 0x8c, 0x11, 0xba, 0xb0, 0x9f,
0x4b, 0xa2, 0xfa, 0x1a, 0x52, 0x13, 0x60, 0x20, 0xa1, 0x28, 0xdc, 0x87, 0x55, 0xb1, 0x0a, 0x11,
0x31, 0x6d, 0xdd, 0xc6, 0x0b, 0xea, 0xa6, 0x1c, 0x63, 0x8a, 0xda, 0x9a, 0x4d, 0xbe, 0x2e, 0x1a,
0xfd, 0x3d, 0x00, 0x22, 0x17, 0x45, 0xab, 0xe8, 0xf5, 0x97, 0x55, 0xb4, 0x2a, 0x96, 0x29, 0x02,
0x19, 0xbf, 0x93, 0xe3, 0xfc, 0x8c, 0xc0, 0x0e, 0x34, 0x49, 0x9e, 0xd3, 0x35, 0xcb, 0x73, 0xa7,
0x57, 0x82, 0xd4, 0x01, 0x07, 0x0d, 0xdc, 0x29, 0xd2, 0x1a, 0xc7, 0xd5, 0x51, 0xf8, 0xd5, 0x59,
0x97, 0x40, 0x44, 0xba, 0x03, 0xb5, 0xf9, 0xe2, 0x74, 0xea, 0x8c, 0x39, 0x4a, 0x81, 0xd7, 0xc2,
0x41, 0x88, 0xf0, 0x06, 0xd4, 0xc5, 0x5e, 0xe7, 0x18, 0x45, 0xc4, 0xa8, 0x09, 0x18, 0xa2, 0xe0,
0xd5, 0x4c, 0x7d, 0x24, 0x76, 0x75, 0x13, 0x7f, 0x1b, 0xbb, 0xb0, 0x1e, 0xef, 0xb4, 0xe0, 0x1b,
0xee, 0x43, 0x45, 0x50, 0x52, 0xa9, 0xe3, 0x5a, 0x8e, 0xcf, 0x86, 0xa9, 0xf2, 0x8d, 0xff, 0x58,
0x82, 0x35, 0x39, 0x47, 0x6c, 0xb1, 0x87, 0x8b, 0xd9, 0xcc, 0xf6, 0x33, 0x48, 0x74, 0xee, 0xc5,
0x24, 0x3a, 0x9f, 0x22, 0xd1, 0x71, 0x25, 0x07, 0xa7, 0xf0, 0x71, 0x25, 0x07, 0xdb, 0x5d, 0x5c,
0xee, 0xd4, 0x55, 0xe9, 0x0d, 0x01, 0x1e, 0x71, 0x95, 0x7d, 0xea, 0x42, 0x29, 0x65, 0x5c, 0x28,
0xfa, 0x75, 0xb0, 0x94, 0xb8, 0x0e, 0xde, 0x00, 0xbe, 0x8d, 0xe5, 0x7e, 0x2c, 0x73, 0x51, 0x14,
0x61, 0x62, 0x43, 0xbe, 0x03, 0x2b, 0x49, 0x0a, 0xcc, 0x49, 0xfd, 0x72, 0x06, 0xfd, 0x75, 0x66,
0x14, 0x59, 0x0a, 0x0d, 0xb9, 0x2a, 0xe8, 0xaf, 0x33, 0xa3, 0x87, 0x98, 0x23, 0xf1, 0xbb, 0x00,
0xbc, 0x6d, 0x3c, 0xc6, 0x80, 0xc7, 0xf8, 0xed, 0xc4, 0xce, 0xd4, 0x66, 0x7d, 0x87, 0x25, 0x16,
0x3e, 0xc5, 0x73, 0x5d, 0xc5, 0x92, 0x78, 0xa4, 0x3f, 0x86, 0x65, 0x6f, 0x4e, 0x5d, 0x2b, 0xa2,
0x82, 0x35, 0xac, 0xaa, 0x29, 0xaa, 0xea, 0x49, 0xb8, 0xd9, 0x60, 0x78, 0x2a, 0x49, 0x3e, 0xe5,
0x93, 0x4c, 0xb5, 0x92, 0xf5, 0x6b, 0x4a, 0x2e, 0x23, 0x62, 0x54, 0xf4, 0x03, 0xa8, 0xf9, 0x34,
0xf0, 0xa6, 0x0b, 0xae, 0x97, 0x6f, 0xe0, 0x3e, 0x92, 0x8a, 0x4a, 0x53, 0xe5, 0x98, 0x3a, 0x96,
0xf1, 0xeb, 0x39, 0xa8, 0x69, 0x63, 0x20, 0x1b, 0xb0, 0xda, 0x19, 0x0c, 0x8e, 0xbb, 0x66, 0x7b,
0xd4, 0xfb, 0xbc, 0x6b, 0x75, 0x0e, 0x07, 0xc3, 0x6e, 0xf3, 0x06, 0x03, 0x1f, 0x0e, 0x3a, 0xed,
0x43, 0x6b, 0x7f, 0x60, 0x76, 0x24, 0x38, 0x47, 0x36, 0x81, 0x98, 0xdd, 0xa3, 0xc1, 0xa8, 0x1b,
0x83, 0xe7, 0x49, 0x13, 0xea, 0xbb, 0x66, 0xb7, 0xdd, 0x39, 0x10, 0x90, 0x02, 0x59, 0x87, 0xe6,
0xfe, 0x49, 0x7f, 0xaf, 0xd7, 0x7f, 0x6c, 0x75, 0xda, 0xfd, 0x4e, 0xf7, 0xb0, 0xbb, 0xd7, 0x2c,
0x92, 0x06, 0x54, 0xdb, 0xbb, 0xed, 0xfe, 0xde, 0xa0, 0xdf, 0xdd, 0x6b, 0x96, 0x8c, 0xff, 0x91,
0x03, 0x88, 0x3a, 0xca, 0xe8, 0x6a, 0xd4, 0x55, 0xdd, 0x0e, 0xb6, 0x91, 0x1a, 0x14, 0xa7, 0xab,
0x7e, 0x2c, 0x4d, 0x1e, 0x42, 0xd9, 0x5b, 0x84, 0x63, 0x6f, 0xc6, 0x59, 0xf8, 0xe5, 0x87, 0xad,
0x54, 0xb9, 0x01, 0xcf, 0x37, 0x25, 0x62, 0xcc, 0xd6, 0x55, 0x78, 0x99, 0xad, 0x2b, 0x6e, 0x54,
0xe3, 0x7c, 0x9d, 0x66, 0x54, 0xbb, 0x0d, 0x10, 0x3c, 0xa7, 0x74, 0x8e, 0x6a, 0x1a, 0x71, 0x0a,
0xaa, 0x08, 0x19, 0x31, 0x09, 0xef, 0x0f, 0x73, 0xb0, 0x81, 0x7b, 0x69, 0x92, 0x24, 0x62, 0x77,
0xa1, 0x36, 0xf6, 0xbc, 0x39, 0x65, 0x2c, 0xad, 0xe2, 0xd7, 0x74, 0x10, 0x23, 0x50, 0x9c, 0x20,
0x9f, 0x79, 0xfe, 0x98, 0x0a, 0x1a, 0x06, 0x08, 0xda, 0x67, 0x10, 0x76, 0x86, 0xc4, 0x21, 0xe4,
0x18, 0x9c, 0x84, 0xd5, 0x38, 0x8c, 0xa3, 0x6c, 0xc2, 0xd2, 0xa9, 0x4f, 0xed, 0xf1, 0x85, 0xa0,
0x5e, 0x22, 0x45, 0xbe, 0x1d, 0xa9, 0xab, 0xc6, 0xec, 0x4c, 0x4c, 0x29, 0xef, 0x7c, 0xc5, 0x5c,
0x11, 0xf0, 0x8e, 0x00, 0xb3, 0x7b, 0xde, 0x3e, 0xb5, 0xdd, 0x89, 0xe7, 0xd2, 0x89, 0x90, 0x7f,
0x23, 0x80, 0x71, 0x0c, 0x9b, 0xc9, 0xf1, 0x09, 0x7a, 0xf7, 0x91, 0x46, 0xef, 0xb8, 0xe0, 0xb9,
0x7d, 0xfd, 0x19, 0xd3, 0x68, 0xdf, 0xbf, 0x2e, 0x42, 0x91, 0x89, 0x1b, 0xd7, 0x4a, 0x26, 0xba,
0x64, 0x59, 0x48, 0x59, 0x40, 0x51, 0x2b, 0xc6, 0x19, 0x30, 0xb1, 0x58, 0x08, 0x41, 0xc6, 0x4b,
0x65, 0xfb, 0x74, 0xfc, 0x4c, 0x70, 0xde, 0x3c, 0xdb, 0xa4, 0xe3, 0x67, 0x28, 0xe8, 0xdb, 0x21,
0x2f, 0xcb, 0xe9, 0x55, 0x39, 0xb0, 0x43, 0x2c, 0x29, 0xb2, 0xb0, 0x5c, 0x59, 0x65, 0x61, 0xa9,
0x16, 0x94, 0x1d, 0xf7, 0xd4, 0x5b, 0xb8, 0x13, 0x24, 0x4f, 0x15, 0x53, 0x26, 0xd1, 0xe0, 0x8a,
0x94, 0x94, 0x5d, 0xed, 0x9c, 0x1a, 0x55, 0x18, 0x60, 0xc4, 0x2e, 0xf7, 0xf7, 0xa1, 0x1a, 0x5c,
0xb9, 0x63, 0x9d, 0x06, 0xad, 0x8b, 0xf9, 0x61, 0xa3, 0xdf, 0x19, 0x5e, 0xb9, 0x63, 0xdc, 0xf1,
0x95, 0x40, 0xfc, 0x22, 0x8f, 0xa0, 0xa2, 0x4c, 0x14, 0xfc, 0x06, 0xb9, 0xa9, 0x97, 0x90, 0x76,
0x09, 0xae, 0x09, 0x52, 0xa8, 0xe4, 0x3d, 0x58, 0x42, 0x3b, 0x42, 0xd0, 0xaa, 0x63, 0x21, 0x29,
0x6e, 0xb2, 0x6e, 0xa0, 0xad, 0x93, 0x4e, 0xd0, 0xa6, 0x60, 0x0a, 0x34, 0x36, 0x4d, 0x67, 0x53,
0x7b, 0x6e, 0x8d, 0x51, 0x7c, 0x6b, 0x70, 0x93, 0x21, 0x83, 0x74, 0x50, 0x82, 0xbb, 0x0b, 0x75,
0x34, 0xff, 0x20, 0x8e, 0xcb, 0xf9, 0xd0, 0x82, 0x09, 0x0c, 0xb6, 0x3f, 0xb5, 0xe7, 0xfd, 0x60,
0xfb, 0x09, 0x34, 0x62, 0x9d, 0xd1, 0x55, 0x43, 0x0d, 0xae, 0x1a, 0x7a, 0x4b, 0x57, 0x0d, 0x45,
0x57, 0xa1, 0x28, 0xa6, 0xab, 0x8a, 0x7e, 0x00, 0x15, 0x39, 0x17, 0x8c, 0xe6, 0x9c, 0xf4, 0x9f,
0xf4, 0x07, 0x5f, 0xf4, 0xad, 0xe1, 0x97, 0xfd, 0x4e, 0xf3, 0x06, 0x59, 0x81, 0x5a, 0xbb, 0x83,
0x64, 0x0c, 0x01, 0x39, 0x86, 0x72, 0xdc, 0x1e, 0x0e, 0x15, 0x24, 0x6f, 0xec, 0x43, 0x33, 0x39,
0x54, 0xb6, 0xa9, 0x43, 0x09, 0x13, 0x66, 0x9a, 0x08, 0xc0, 0x44, 0x7c, 0x6e, 0x79, 0xe1, 0x62,
0x12, 0x4f, 0x18, 0x8f, 0xa0, 0xc9, 0x2e, 0x76, 0x36, 0xd7, 0xba, 0x01, 0x76, 0xca, 0x58, 0x6f,
0xdd, 0x54, 0x53, 0x31, 0x6b, 0x1c, 0x86, 0x4d, 0x19, 0x1f, 0xc1, 0xaa, 0x56, 0x2c, 0x52, 0xc9,
0x30, 0x66, 0x21, 0xa9, 0x92, 0x41, 0x31, 0x9b, 0xe7, 0x18, 0x5b, 0xb0, 0xc1, 0x92, 0xdd, 0x67,
0xd4, 0x0d, 0x87, 0x8b, 0x53, 0x6e, 0xb7, 0x77, 0x3c, 0x97, 0x89, 0xdf, 0x55, 0x95, 0x73, 0xfd,
0x29, 0xd9, 0x11, 0xda, 0x1b, 0x4e, 0x16, 0xb7, 0xb5, 0x16, 0xb0, 0xe0, 0x0e, 0xfe, 0x8d, 0x69,
0x71, 0xaa, 0x0a, 0xc4, 0xa6, 0xf5, 0xb8, 0xdb, 0x35, 0xad, 0x41, 0xff, 0xb0, 0xd7, 0x67, 0x97,
0x03, 0x9b, 0x56, 0x04, 0xec, 0xef, 0x23, 0x24, 0x67, 0x34, 0x61, 0xf9, 0x31, 0x0d, 0x7b, 0xee,
0x99, 0x27, 0x26, 0xc3, 0xf8, 0x0b, 0x4b, 0xb0, 0xa2, 0x40, 0x91, 0x16, 0xe8, 0x19, 0xf5, 0x03,
0xc7, 0x73, 0x71, 0x9f, 0x54, 0x4d, 0x99, 0x64, 0xe4, 0x4d, 0x48, 0x69, 0xc8, 0x66, 0xac, 0x63,
0xae, 0x90, 0xeb, 0x90, 0xc7, 0x78, 0x07, 0x56, 0x9c, 0x09, 0x75, 0x43, 0x27, 0xbc, 0xb2, 0x62,
0xfa, 0xe7, 0x65, 0x09, 0x16, 0x7c, 0xc6, 0x3a, 0x94, 0xec, 0xa9, 0x63, 0x4b, 0x7f, 0x08, 0x9e,
0x60, 0xd0, 0xb1, 0x37, 0xf5, 0x7c, 0x94, 0x5b, 0xaa, 0x26, 0x4f, 0x90, 0x07, 0xb0, 0xce, 0x64,
0x28, 0xdd, 0x28, 0x80, 0x14, 0x8a, 0xab, 0xc2, 0x89, 0xbb, 0x98, 0x1d, 0x47, 0x86, 0x01, 0x96,
0xc3, 0xb8, 0x0b, 0x56, 0x42, 0xb0, 0x93, 0xaa, 0x00, 0xd7, 0x4a, 0xac, 0xba, 0x8b, 0x59, 0x1b,
0x73, 0x14, 0xfe, 0x43, 0xd8, 0x60, 0xf8, 0x8a, 0x01, 0x55, 0x25, 0x56, 0xb0, 0x04, 0xab, 0xac,
0x27, 0xf2, 0x54, 0x99, 0x5b, 0x50, 0xe5, 0xbd, 0x62, 0x5b, 0xa2, 0xc4, 0x75, 0x16, 0xd8, 0x15,
0xea, 0x07, 0x29, 0xd7, 0x05, 0xae, 0x08, 0x48, 0xba, 0x2e, 0x68, 0xce, 0x0f, 0x95, 0xa4, 0xf3,
0xc3, 0x43, 0xd8, 0x38, 0x65, 0x7b, 0xf4, 0x82, 0xda, 0x13, 0xea, 0x5b, 0xd1, 0xce, 0xe7, 0xe2,
0xe6, 0x1a, 0xcb, 0x3c, 0xc0, 0x3c, 0x75, 0x50, 0x18, 0x27, 0xc8, 0x08, 0x0f, 0x9d, 0x58, 0xa1,
0x67, 0x21, 0x83, 0x88, 0x24, 0xac, 0x62, 0x36, 0x38, 0x78, 0xe4, 0x75, 0x18, 0x30, 0x8e, 0x77,
0xee, 0xdb, 0xf3, 0x0b, 0x21, 0x0c, 0x2a, 0xbc, 0xc7, 0x0c, 0x48, 0x5e, 0x83, 0x32, 0x3b, 0x13,
0x2e, 0xe5, 0x96, 0x60, 0x2e, 0x66, 0x49, 0x10, 0x79, 0x0b, 0x96, 0xb0, 0x8d, 0xa0, 0xd5, 0xc4,
0x03, 0x51, 0x8f, 0xae, 0x0a, 0xc7, 0x35, 0x45, 0x1e, 0x63, 0xb7, 0x17, 0xbe, 0xc3, 0xe9, 0x58,
0xd5, 0xc4, 0xdf, 0xe4, 0x87, 0x1a, 0x51, 0x5c, 0xc3, 0xb2, 0x6f, 0x89, 0xb2, 0x89, 0xad, 0x78,
0x1d, 0x7d, 0xfc, 0x46, 0xa9, 0xd5, 0x8f, 0x8a, 0x95, 0x5a, 0xb3, 0x6e, 0xb4, 0xd0, 0x63, 0xc3,
0xa4, 0x63, 0xef, 0x19, 0xf5, 0xaf, 0x62, 0x67, 0x24, 0x07, 0x5b, 0xa9, 0xac, 0xc8, 0xf0, 0xeb,
0x0b, 0xb8, 0x35, 0xf3, 0x26, 0x92, 0x29, 0xa8, 0x4b, 0xe0, 0x91, 0x37, 0x61, 0xcc, 0xcb, 0xaa,
0x42, 0x3a, 0x73, 0x5c, 0x27, 0xb8, 0xa0, 0x13, 0xc1, 0x1b, 0x34, 0x65, 0xc6, 0xbe, 0x80, 0x33,
0x0e, 0x7c, 0xee, 0x7b, 0xe7, 0xea, 0xaa, 0xcc, 0x99, 0x2a, 0x6d, 0x7c, 0x0c, 0x25, 0xbe, 0x82,
0xec, 0xa0, 0xe0, 0xfa, 0xe6, 0xc4, 0x41, 0x41, 0x68, 0x0b, 0xca, 0x2e, 0x0d, 0x9f, 0x7b, 0xfe,
0x53, 0x69, 0x45, 0x12, 0x49, 0xe3, 0x27, 0xa8, 0xd2, 0x54, 0xae, 0x37, 0x5c, 0xf9, 0xc0, 0xb6,
0x30, 0xdf, 0x82, 0xc1, 0x85, 0x2d, 0xb4, 0xac, 0x15, 0x04, 0x0c, 0x2f, 0xec, 0xd4, 0x16, 0xce,
0xa7, 0xbd, 0x6f, 0xde, 0x82, 0x65, 0xe9, 0xec, 0x13, 0x58, 0x53, 0x7a, 0x16, 0x8a, 0x23, 0x59,
0x17, 0x9e, 0x3e, 0xc1, 0x21, 0x3d, 0x0b, 0x8d, 0x23, 0x58, 0x15, 0x87, 0x66, 0x30, 0xa7, 0xb2,
0xe9, 0x4f, 0xb2, 0xa4, 0xa2, 0xda, 0xc3, 0xb5, 0x38, 0xbb, 0xc1, 0x19, 0xbb, 0x98, 0xa8, 0x64,
0xfc, 0x38, 0xd2, 0x20, 0x32, 0x66, 0x44, 0xd4, 0x27, 0x64, 0x13, 0x69, 0x7c, 0x93, 0x36, 0x6c,
0x25, 0x01, 0x39, 0x13, 0x36, 0x3b, 0xc1, 0x62, 0x3c, 0x96, 0x4e, 0x58, 0x15, 0x53, 0x26, 0x8d,
0x7f, 0x97, 0x83, 0x35, 0xac, 0x4c, 0x4a, 0x75, 0xe2, 0xa6, 0xf8, 0xa9, 0x3b, 0xc9, 0xd6, 0x47,
0xe7, 0x00, 0x79, 0xe2, 0xeb, 0x1b, 0x36, 0x8a, 0x29, 0xc3, 0xc6, 0xb7, 0xa1, 0x39, 0xa1, 0x53,
0x07, 0xb7, 0x92, 0x64, 0xa8, 0x38, 0x07, 0xbb, 0x22, 0xe1, 0x42, 0xcb, 0x60, 0xfc, 0xd5, 0x1c,
0xac, 0x72, 0x7e, 0x0d, 0xf5, 0x36, 0x62, 0xa2, 0x3e, 0x93, 0x0a, 0x0a, 0x41, 0x4e, 0xc5, 0x98,
0x22, 0x3e, 0x06, 0xa1, 0x1c, 0xf9, 0xe0, 0x86, 0x50, 0x5c, 0x08, 0x28, 0xf9, 0x1e, 0x4a, 0xa2,
0xae, 0x85, 0x40, 0xc1, 0x87, 0xdf, 0xcc, 0xe0, 0x10, 0x55, 0x71, 0x26, 0xa6, 0xba, 0x08, 0xda,
0xad, 0xc0, 0x12, 0xd7, 0x82, 0x19, 0xfb, 0xd0, 0x88, 0x35, 0x13, 0xb3, 0xb3, 0xd4, 0xb9, 0x9d,
0x25, 0x65, 0xf7, 0xcc, 0xa7, 0xed, 0x9e, 0x57, 0xb0, 0x66, 0x52, 0x7b, 0x72, 0xb5, 0xef, 0xf9,
0xc7, 0xc1, 0x69, 0xb8, 0xcf, 0x99, 0x60, 0x76, 0x07, 0x29, 0x63, 0x7e, 0xcc, 0x98, 0x21, 0x6d,
0xba, 0x52, 0x0d, 0xf3, 0x2d, 0x58, 0x8e, 0xac, 0xfe, 0x9a, 0xda, 0xbb, 0xa1, 0x0c, 0xff, 0xc8,
0x3b, 0x11, 0x28, 0xce, 0x83, 0xd3, 0x50, 0x28, 0xbe, 0xf1, 0xb7, 0xf1, 0xbf, 0x8b, 0x40, 0xd8,
0x6e, 0x4e, 0x6c, 0x98, 0x84, 0xbf, 0x42, 0x3e, 0xe5, 0xaf, 0xf0, 0x00, 0x88, 0x86, 0x20, 0xdd,
0x28, 0x0a, 0xca, 0x8d, 0xa2, 0x19, 0xe1, 0x0a, 0x2f, 0x8a, 0x07, 0xb0, 0x2e, 0x24, 0x8a, 0x78,
0x57, 0xf9, 0xd6, 0x20, 0x5c, 0xb4, 0x88, 0xf5, 0x57, 0xfa, 0x2a, 0x48, 0x4d, 0x75, 0x81, 0xfb,
0x2a, 0x48, 0x85, 0x92, 0xb6, 0x01, 0x97, 0x5e, 0xba, 0x01, 0xcb, 0xa9, 0x0d, 0xa8, 0x29, 0x17,
0x2b, 0x71, 0xe5, 0x62, 0x4a, 0x4d, 0xce, 0xd9, 0xe7, 0x98, 0x9a, 0xfc, 0x1e, 0x34, 0xa5, 0xa2,
0x49, 0xa9, 0x30, 0xb9, 0x93, 0x91, 0x50, 0x22, 0x77, 0xa4, 0x12, 0x33, 0x66, 0x51, 0xab, 0x25,
0x2c, 0x6a, 0xef, 0xc2, 0x6a, 0xc0, 0xf6, 0xaf, 0xb5, 0x70, 0x85, 0xa7, 0x21, 0x9d, 0xa0, 0x3c,
0x5e, 0x31, 0x9b, 0x98, 0x71, 0x12, 0xc1, 0xd3, 0x2a, 0xb9, 0x46, 0x86, 0x4a, 0xee, 0x51, 0x64,
0xbc, 0x0f, 0x2e, 0x9c, 0x19, 0x32, 0x3e, 0x91, 0xf7, 0x9c, 0x98, 0xe0, 0xe1, 0x85, 0x33, 0x33,
0xa5, 0xa7, 0x08, 0x4b, 0x90, 0x0e, 0xdc, 0x11, 0xe3, 0xc9, 0x70, 0xf2, 0xe0, 0xb3, 0xb0, 0x82,
0x9c, 0xea, 0x36, 0x47, 0x3b, 0x4a, 0xf8, 0x7b, 0x24, 0x26, 0x85, 0x55, 0xc2, 0xb5, 0xc0, 0x4d,
0x7d, 0x52, 0x8e, 0xec, 0x4b, 0x6e, 0x37, 0xf8, 0x5f, 0x39, 0x68, 0xb2, 0x6d, 0x17, 0x3b, 0xd1,
0x9f, 0x02, 0xd2, 0x9e, 0x57, 0x3c, 0xd0, 0x35, 0x86, 0x2b, 0xcf, 0xf3, 0xc7, 0x80, 0x07, 0xd4,
0xf2, 0xe6, 0xd4, 0x15, 0xc7, 0xb9, 0x15, 0x3f, 0xce, 0x11, 0xc9, 0x3e, 0xb8, 0xc1, 0x05, 0x3e,
0x06, 0x21, 0x9f, 0x42, 0x95, 0x9d, 0x03, 0xdc, 0x94, 0xc2, 0xf7, 0x74, 0x5b, 0x09, 0xf1, 0xa9,
0x23, 0xc9, 0x8a, 0xce, 0x45, 0x32, 0xcb, 0xbd, 0xa3, 0x98, 0xe1, 0xde, 0xa1, 0xd1, 0x8b, 0x03,
0x80, 0x27, 0xf4, 0xea, 0xd0, 0x1b, 0xa3, 0x3a, 0xe5, 0x36, 0x00, 0x3b, 0x3a, 0x67, 0xf6, 0xcc,
0x11, 0x8a, 0xc4, 0x92, 0x59, 0x7d, 0x4a, 0xaf, 0xf6, 0x11, 0xc0, 0xf6, 0x0d, 0xcb, 0x8e, 0x88,
0x46, 0xc9, 0xac, 0x3c, 0xa5, 0x57, 0x9c, 0x62, 0x58, 0xd0, 0x78, 0x42, 0xaf, 0xf6, 0x28, 0x67,
0xcc, 0x3d, 0x9f, 0xed, 0x59, 0xdf, 0x7e, 0xce, 0x38, 0xf1, 0x98, 0x6b, 0x46, 0xcd, 0xb7, 0x9f,
0x3f, 0xa1, 0x57, 0xd2, 0x4d, 0xa4, 0xcc, 0xf2, 0xa7, 0xde, 0x58, 0xb0, 0x12, 0x52, 0x77, 0x13,
0x75, 0xca, 0x5c, 0x7a, 0x8a, 0xbf, 0x8d, 0x3f, 0xce, 0x41, 0x83, 0xf5, 0x1f, 0x6f, 0x01, 0xdc,
0x21, 0xc2, 0x57, 0x31, 0x17, 0xf9, 0x2a, 0x3e, 0x14, 0x44, 0x94, 0x5f, 0x29, 0xf9, 0xeb, 0xaf,
0x14, 0x5c, 0x1b, 0x7e, 0x9f, 0xbc, 0x0f, 0x55, 0x4e, 0x05, 0x18, 0x59, 0x29, 0xc4, 0x16, 0x38,
0x36, 0x20, 0xb3, 0x82, 0x68, 0x4f, 0xb8, 0x6b, 0x94, 0xa6, 0x26, 0xe7, 0x53, 0x5c, 0xf5, 0x95,
0x72, 0x3c, 0x63, 0x19, 0x4a, 0xd7, 0xb8, 0x46, 0xe9, 0x3a, 0xe8, 0xa5, 0xa4, 0x0e, 0xda, 0x70,
0xa1, 0xc2, 0x96, 0x1a, 0x07, 0x9b, 0x51, 0x69, 0x2e, 0xab, 0x52, 0xc6, 0x78, 0xd8, 0xec, 0x0e,
0x62, 0x74, 0x35, 0x2f, 0x18, 0x0f, 0x3b, 0xa0, 0xac, 0x22, 0xd6, 0x71, 0xd7, 0xb3, 0x50, 0xa9,
0x2b, 0xd4, 0x9d, 0x15, 0xb3, 0xea, 0x7a, 0xc7, 0x1c, 0x60, 0xfc, 0xb9, 0x1c, 0xd4, 0xb4, 0xf3,
0x88, 0x5a, 0x7e, 0x35, 0x9d, 0xfc, 0xf0, 0xc6, 0x4f, 0x40, 0x6c, 0x3d, 0x0e, 0x6e, 0x98, 0x8d,
0x71, 0x6c, 0x81, 0x76, 0xc4, 0x56, 0xc6, 0x92, 0xf9, 0x98, 0x6a, 0x49, 0x8e, 0x4b, 0xee, 0x5f,
0xf6, 0x7b, 0x77, 0x09, 0x8a, 0x0c, 0xd5, 0xf8, 0x0c, 0x56, 0xb5, 0x6e, 0x70, 0xd5, 0xcb, 0xab,
0x4e, 0x80, 0xf1, 0x8b, 0xaa, 0x30, 0x6b, 0x83, 0x1b, 0xad, 0xa5, 0x17, 0x1a, 0x9d, 0xf0, 0x79,
0x11, 0xde, 0x6e, 0x1c, 0x84, 0x33, 0xf3, 0xaa, 0x9e, 0x51, 0xbf, 0x9a, 0x83, 0x35, 0xad, 0xfa,
0x7d, 0xc7, 0xb5, 0xa7, 0xce, 0x4f, 0x90, 0xff, 0x08, 0x9c, 0x73, 0x37, 0xd1, 0x00, 0x07, 0x7d,
0x9d, 0x06, 0xd8, 0x35, 0xc1, 0x7d, 0x5a, 0xb9, 0x5f, 0xb4, 0xb8, 0x1a, 0x01, 0x61, 0xa6, 0xfd,
0x7c, 0x74, 0x69, 0xfc, 0xb5, 0x3c, 0xac, 0x8b, 0x2e, 0xa0, 0xeb, 0xb1, 0xc3, 0xd8, 0xce, 0xa3,
0xe0, 0x9c, 0x7c, 0x0a, 0x0d, 0x36, 0x7d, 0x96, 0x4f, 0xcf, 0x9d, 0x20, 0xa4, 0xd2, 0x9e, 0x9e,
0x41, 0x69, 0x19, 0xf7, 0xc1, 0x50, 0x4d, 0x81, 0x49, 0x3e, 0x83, 0x1a, 0x16, 0xe5, 0xda, 0x2f,
0xb1, 0x56, 0xad, 0x74, 0x41, 0xbe, 0x16, 0x07, 0x37, 0x4c, 0x08, 0xa2, 0x95, 0xf9, 0x0c, 0x6a,
0xb8, 0xcc, 0xcf, 0x70, 0xae, 0x13, 0xc4, 0x2e, 0xb5, 0x16, 0xac, 0xf0, 0x3c, 0x5a, 0x99, 0x36,
0x34, 0x38, 0xb9, 0x13, 0x33, 0x29, 0x5c, 0x1a, 0xb7, 0xd3, 0xc5, 0xe5, 0x5c, 0xb3, 0xce, 0xcf,
0xb5, 0xf4, 0x6e, 0x15, 0xca, 0xa1, 0xef, 0x9c, 0x9f, 0x53, 0xdf, 0xd8, 0x54, 0x53, 0xc3, 0xe8,
0x38, 0x1d, 0x86, 0x74, 0xce, 0xe4, 0x09, 0xe3, 0x5f, 0xe6, 0xa0, 0x26, 0x28, 0xf3, 0x4f, 0x6d,
0xaa, 0xdf, 0x4e, 0xe8, 0x49, 0xab, 0x9a, 0x5a, 0xf4, 0x1d, 0x58, 0x99, 0x31, 0xe1, 0x87, 0x09,
0xe7, 0x31, 0x3b, 0xfd, 0xb2, 0x04, 0x0b, 0xbe, 0x7e, 0x07, 0xd6, 0x90, 0xcd, 0x0f, 0xac, 0xd0,
0x99, 0x5a, 0x32, 0x53, 0xf8, 0xdf, 0xaf, 0xf2, 0xac, 0x91, 0x33, 0x3d, 0x12, 0x19, 0x8c, 0xdb,
0x0d, 0x42, 0xfb, 0x9c, 0x0a, 0xea, 0xc0, 0x13, 0x4c, 0xa0, 0x4a, 0xc8, 0xe5, 0x52, 0xa0, 0xfa,
0xbf, 0xab, 0xb0, 0x95, 0xca, 0x12, 0x02, 0x95, 0x32, 0xcc, 0x4e, 0x9d, 0xd9, 0xa9, 0xa7, 0x0c,
0x03, 0x39, 0xcd, 0x30, 0x7b, 0xc8, 0x72, 0xa4, 0x61, 0x80, 0xc2, 0x86, 0xdc, 0xb2, 0xa8, 0xd9,
0x57, 0xa2, 0x7b, 0x1e, 0x05, 0xcb, 0xf7, 0xe3, 0xd7, 0x60, 0xb2, 0x39, 0x09, 0xd7, 0x79, 0xb9,
0xb5, 0x79, 0x0a, 0x16, 0x90, 0x3f, 0x0d, 0x2d, 0x75, 0x32, 0x84, 0x9c, 0xa1, 0xe9, 0x21, 0x58,
0x4b, 0xdf, 0x79, 0x49, 0x4b, 0x31, 0x95, 0x2b, 0x32, 0x7b, 0x9b, 0xf2, 0x50, 0xf1, 0x0a, 0x55,
0x5b, 0xcf, 0xe0, 0x75, 0xd9, 0x16, 0xca, 0x0d, 0xe9, 0x16, 0x8b, 0xaf, 0x34, 0x36, 0x54, 0x27,
0xc7, 0x9a, 0x35, 0x6f, 0x89, 0x8a, 0x55, 0x96, 0xde, 0xee, 0x05, 0x6c, 0x3e, 0xb7, 0x9d, 0x50,
0x8e, 0x51, 0x53, 0x83, 0x94, 0xb0, 0xbd, 0x87, 0x2f, 0x69, 0xef, 0x0b, 0x5e, 0x38, 0x26, 0x49,
0xad, 0x3f, 0x4f, 0x03, 0x83, 0xed, 0xbf, 0x53, 0x80, 0xe5, 0x78, 0x2d, 0x8c, 0xf4, 0x88, 0xeb,
0x4a, 0x32, 0xc8, 0x82, 0x6b, 0x17, 0x46, 0xab, 0x3e, 0x67, 0x8c, 0xd3, 0xe6, 0xb4, 0x7c, 0x86,
0x39, 0x4d, 0xb7, 0x62, 0x15, 0x5e, 0xe6, 0xd4, 0x50, 0x7c, 0x25, 0xa7, 0x86, 0x52, 0x96, 0x53,
0xc3, 0x07, 0xd7, 0x5a, 0xc1, 0xb9, 0x2e, 0x3a, 0xd3, 0x02, 0xfe, 0xe8, 0x7a, 0x0b, 0x38, 0x67,
0xb7, 0xaf, 0xb3, 0x7e, 0x6b, 0xb6, 0xfb, 0xca, 0x35, 0xb6, 0x27, 0xcd, 0x9a, 0x9f, 0x61, 0xfd,
0xae, 0x7e, 0x0d, 0xeb, 0xf7, 0xf6, 0x1f, 0xe7, 0x80, 0xa4, 0x4f, 0x07, 0x79, 0xcc, 0x2d, 0x95,
0x2e, 0x9d, 0x0a, 0xca, 0xfd, 0xdd, 0x57, 0x3b, 0x61, 0x72, 0x43, 0xc8, 0xd2, 0xe4, 0x3d, 0x58,
0xd3, 0x5f, 0x09, 0xe9, 0x6a, 0x86, 0x86, 0x49, 0xf4, 0xac, 0x48, 0x61, 0xa6, 0x79, 0x90, 0x14,
0x5f, 0xea, 0x41, 0x52, 0x7a, 0xa9, 0x07, 0xc9, 0x52, 0xdc, 0x83, 0x64, 0xfb, 0xdf, 0xe6, 0x60,
0x2d, 0x63, 0x13, 0x7f, 0x73, 0x63, 0x66, 0x7b, 0x2f, 0x46, 0xd6, 0xf2, 0x62, 0xef, 0xe9, 0x14,
0xed, 0x50, 0x2a, 0x59, 0xd9, 0x52, 0x04, 0xe2, 0xa6, 0xba, 0xff, 0x32, 0xea, 0x12, 0x95, 0x30,
0xf5, 0xe2, 0xdb, 0x7f, 0x2f, 0x0f, 0x35, 0x2d, 0x93, 0xcd, 0x22, 0xdf, 0xb2, 0x9a, 0x67, 0x23,
0xe7, 0x2d, 0x51, 0x49, 0x72, 0x07, 0x84, 0x2d, 0x8a, 0xe7, 0xf3, 0xc3, 0x25, 0x18, 0x49, 0x44,
0xd8, 0x81, 0x35, 0x69, 0x45, 0xa6, 0x91, 0xb3, 0xb3, 0xb8, 0x6b, 0x84, 0x43, 0x80, 0xe8, 0x24,
0xe2, 0xbf, 0x27, 0xe5, 0xd7, 0x68, 0xed, 0x34, 0xab, 0xdc, 0xaa, 0x70, 0x45, 0x10, 0x8b, 0xc8,
0xf6, 0xf9, 0xfb, 0xb0, 0xa1, 0x7c, 0x11, 0x62, 0x25, 0xb8, 0xed, 0x87, 0x48, 0x9f, 0x03, 0xad,
0xc8, 0x0f, 0xe1, 0x76, 0xa2, 0x4f, 0x89, 0xa2, 0xdc, 0x2b, 0xff, 0x66, 0xac, 0x77, 0x7a, 0x0d,
0xdb, 0x7f, 0x06, 0x1a, 0x31, 0x42, 0xf9, 0xcd, 0x2d, 0x79, 0x52, 0x31, 0xc5, 0x67, 0x54, 0x57,
0x4c, 0x6d, 0xff, 0xcf, 0x02, 0x90, 0x34, 0xad, 0xfe, 0x59, 0x76, 0x21, 0xbd, 0x31, 0x0b, 0x19,
0x1b, 0xf3, 0xff, 0x1b, 0xff, 0x10, 0xe9, 0x47, 0x35, 0x57, 0x00, 0x7e, 0x38, 0x9b, 0x2a, 0x43,
0xf6, 0xe2, 0xe3, 0xa4, 0xc3, 0x54, 0x25, 0xf6, 0xd0, 0x4d, 0x63, 0xa0, 0x12, 0x7e, 0x53, 0x27,
0xb0, 0x64, 0xbb, 0xe3, 0x0b, 0xcf, 0x17, 0x74, 0xf0, 0xe7, 0xbe, 0xf6, 0xf5, 0xb9, 0xd3, 0xc6,
0xf2, 0xc8, 0xb5, 0x99, 0xa2, 0x32, 0xe3, 0x7d, 0xa8, 0x69, 0x60, 0x52, 0x85, 0xd2, 0x61, 0xef,
0x68, 0x77, 0xd0, 0xbc, 0x41, 0x1a, 0x50, 0x35, 0xbb, 0x9d, 0xc1, 0xe7, 0x5d, 0xb3, 0xbb, 0xd7,
0xcc, 0x91, 0x0a, 0x14, 0x0f, 0x07, 0xc3, 0x51, 0x33, 0x6f, 0x6c, 0x43, 0x4b, 0xd4, 0x98, 0xb6,
0x14, 0xfd, 0x66, 0x51, 0xe9, 0x37, 0x31, 0x53, 0x08, 0xf9, 0x1f, 0x40, 0x5d, 0x67, 0x6f, 0xc4,
0x8e, 0x48, 0x78, 0xa3, 0x30, 0xf1, 0xde, 0xd3, 0x68, 0x75, 0x07, 0xb8, 0x2f, 0xc2, 0x44, 0x15,
0xcb, 0xc7, 0xf8, 0xd6, 0x0c, 0xa3, 0x2e, 0xca, 0x47, 0xb1, 0x6d, 0xf8, 0xa7, 0x60, 0x39, 0x6e,
0x15, 0x11, 0x14, 0x29, 0x4b, 0x64, 0x65, 0xa5, 0x63, 0x66, 0x12, 0xf2, 0x43, 0x68, 0x26, 0xad,
0x2a, 0x82, 0x79, 0xbe, 0xa6, 0xfc, 0x8a, 0x13, 0x37, 0xb4, 0x90, 0x03, 0x58, 0xcf, 0x62, 0xf0,
0x70, 0x7f, 0x5c, 0xaf, 0xe6, 0x20, 0x69, 0x26, 0x8e, 0x7c, 0x22, 0xac, 0x6b, 0x25, 0x5c, 0xfe,
0xb7, 0xe2, 0xed, 0x6b, 0x93, 0xbd, 0xc3, 0xff, 0x69, 0x76, 0xb6, 0x67, 0x00, 0x11, 0x8c, 0x34,
0xa1, 0x3e, 0x38, 0xee, 0xf6, 0xad, 0xce, 0x41, 0xbb, 0xdf, 0xef, 0x1e, 0x36, 0x6f, 0x10, 0x02,
0xcb, 0xe8, 0x50, 0xb1, 0xa7, 0x60, 0x39, 0x06, 0x13, 0x56, 0x4e, 0x09, 0xcb, 0x93, 0x75, 0x68,
0xf6, 0xfa, 0x09, 0x68, 0x81, 0xb4, 0x60, 0xfd, 0xb8, 0xcb, 0x7d, 0x30, 0x62, 0xf5, 0x16, 0x99,
0xd0, 0x20, 0x86, 0xcb, 0x84, 0x86, 0x2f, 0xec, 0xe9, 0x94, 0x86, 0xe2, 0x1c, 0x48, 0x5e, 0xfa,
0xaf, 0xe7, 0x60, 0x23, 0x91, 0x11, 0x99, 0x26, 0x38, 0x27, 0x1d, 0xe7, 0xa1, 0xeb, 0x08, 0x94,
0xa7, 0xe9, 0x5d, 0x58, 0x55, 0x9a, 0xb2, 0xc4, 0xad, 0xd4, 0x54, 0x19, 0x12, 0xf9, 0x3d, 0x58,
0xd3, 0x14, 0x6e, 0x09, 0x5a, 0x41, 0xb4, 0x2c, 0x51, 0xc0, 0xd8, 0x81, 0x25, 0xa1, 0x94, 0x6c,
0x42, 0x41, 0x3e, 0xbf, 0x28, 0x9a, 0xec, 0x27, 0x21, 0x50, 0x9c, 0x45, 0xae, 0xbc, 0xf8, 0xdb,
0xd8, 0x52, 0x6f, 0x85, 0x12, 0xa3, 0xfc, 0xd5, 0x22, 0x6c, 0x26, 0x73, 0x94, 0x6b, 0x79, 0x39,
0x36, 0x40, 0x6e, 0xa4, 0x12, 0x20, 0xf2, 0x61, 0x62, 0xf7, 0xc4, 0x86, 0x88, 0xa8, 0xfa, 0x4e,
0x91, 0x03, 0x7d, 0x98, 0xe4, 0x11, 0xf9, 0x96, 0x6f, 0x48, 0x77, 0x7a, 0x1c, 0x53, 0x82, 0x65,
0xfc, 0x30, 0xc5, 0x32, 0x16, 0xb3, 0x0a, 0x25, 0x38, 0xc8, 0x2e, 0x6c, 0x45, 0x4e, 0xab, 0xf1,
0x36, 0x4b, 0x59, 0xc5, 0x37, 0x14, 0xf6, 0xa1, 0xde, 0xf8, 0x63, 0x68, 0x45, 0xd5, 0x24, 0xba,
0xb1, 0x94, 0x55, 0xcf, 0xa6, 0x42, 0x37, 0x63, 0xfd, 0xf9, 0x11, 0x6c, 0xc7, 0xe6, 0x2b, 0xde,
0xa5, 0x72, 0x56, 0x55, 0x5b, 0xda, 0x04, 0xc6, 0x3a, 0x75, 0x08, 0xb7, 0x62, 0x75, 0x25, 0xfa,
0x55, 0xc9, 0xaa, 0xac, 0xa5, 0x55, 0x16, 0xeb, 0x99, 0xf1, 0xdb, 0x4b, 0x40, 0x7e, 0xbc, 0xa0,
0xfe, 0x15, 0x3e, 0x20, 0x0c, 0x5e, 0xe6, 0x0b, 0x2f, 0x15, 0x6f, 0xf9, 0x57, 0x7a, 0x24, 0x9c,
0xf5, 0x48, 0xb7, 0xf8, 0xf2, 0x47, 0xba, 0xa5, 0x97, 0x3d, 0xd2, 0x7d, 0x13, 0x1a, 0xce, 0xb9,
0xeb, 0xb1, 0x7b, 0x8d, 0x89, 0x35, 0x41, 0x6b, 0xe9, 0x6e, 0xe1, 0x5e, 0xdd, 0xac, 0x0b, 0x20,
0x13, 0x6a, 0x02, 0xf2, 0x59, 0x84, 0x44, 0x27, 0xe7, 0xf8, 0x50, 0x5d, 0xbf, 0xd1, 0xba, 0x93,
0x73, 0x2a, 0xf4, 0x8c, 0xb8, 0x61, 0x65, 0x61, 0x06, 0x0f, 0xc8, 0x5b, 0xb0, 0x1c, 0x78, 0x0b,
0x26, 0x25, 0xca, 0x69, 0xe0, 0xa6, 0xe4, 0x3a, 0x87, 0x1e, 0x4b, 0xc7, 0x82, 0xb5, 0x45, 0x40,
0xad, 0x99, 0x13, 0x04, 0x8c, 0xd7, 0x1e, 0x7b, 0x6e, 0xe8, 0x7b, 0x53, 0x61, 0x1d, 0x5e, 0x5d,
0x04, 0xf4, 0x88, 0xe7, 0x74, 0x78, 0x06, 0xf9, 0x30, 0xea, 0xd2, 0xdc, 0x76, 0xfc, 0xa0, 0x05,
0xd8, 0x25, 0x39, 0x52, 0x14, 0xc6, 0x6c, 0xc7, 0x57, 0x7d, 0x61, 0x89, 0x20, 0xf1, 0x78, 0xb8,
0x96, 0x7c, 0x3c, 0xfc, 0x2b, 0xd9, 0x8f, 0x87, 0xb9, 0x43, 0xdc, 0x03, 0x51, 0x75, 0x7a, 0x89,
0xbf, 0xd6, 0x1b, 0xe2, 0xf4, 0x9b, 0xe8, 0xe5, 0xaf, 0xf3, 0x26, 0x7a, 0x25, 0xeb, 0x4d, 0xf4,
0xfb, 0x50, 0xc3, 0xd7, 0xaa, 0xd6, 0x05, 0xba, 0xc5, 0x72, 0x6b, 0x77, 0x53, 0x7f, 0xce, 0x7a,
0xe0, 0xb8, 0xa1, 0x09, 0xbe, 0xfc, 0x19, 0xa4, 0x9f, 0x27, 0xaf, 0xfe, 0x0c, 0x9f, 0x27, 0x8b,
0x57, 0xb5, 0x3b, 0x50, 0x91, 0xeb, 0xc4, 0x88, 0xed, 0x99, 0xef, 0xcd, 0xa4, 0x85, 0x8d, 0xfd,
0x26, 0xcb, 0x90, 0x0f, 0x3d, 0x51, 0x38, 0x1f, 0x7a, 0xc6, 0x2f, 0x41, 0x4d, 0xdb, 0x6a, 0xe4,
0x0d, 0xae, 0xa6, 0x66, 0x82, 0xb6, 0x10, 0x14, 0xf8, 0x2c, 0x56, 0x05, 0xb4, 0x37, 0x61, 0x97,
0xc7, 0xc4, 0xf1, 0x29, 0x06, 0x12, 0xb0, 0x7c, 0xfa, 0x8c, 0xfa, 0x81, 0xb4, 0x78, 0x36, 0x55,
0x86, 0xc9, 0xe1, 0xc6, 0x2f, 0xc3, 0x5a, 0x6c, 0x6d, 0x05, 0xf9, 0x7e, 0x0b, 0x96, 0x70, 0xde,
0xa4, 0x5b, 0x4d, 0xfc, 0x99, 0xb0, 0xc8, 0xc3, 0xa0, 0x09, 0xdc, 0x58, 0x6b, 0xcd, 0x7d, 0xef,
0x14, 0x1b, 0xc9, 0x99, 0x35, 0x01, 0x3b, 0xf6, 0xbd, 0x53, 0xe3, 0x0f, 0x0a, 0x50, 0x38, 0xf0,
0xe6, 0xba, 0x2b, 0x6d, 0x2e, 0xe5, 0x4a, 0x2b, 0xb4, 0x07, 0x96, 0xd2, 0x0e, 0x08, 0x01, 0x0c,
0xcd, 0x94, 0x52, 0x43, 0x70, 0x0f, 0x96, 0x19, 0x9d, 0x08, 0x3d, 0xeb, 0xcc, 0xf3, 0x9f, 0xdb,
0x3e, 0x97, 0x6e, 0xf8, 0x6d, 0x51, 0xb7, 0x67, 0xe1, 0xc8, 0xdb, 0xe7, 0x70, 0xb2, 0x0e, 0x05,
0x25, 0x8b, 0x62, 0x36, 0x4b, 0x92, 0x4d, 0x58, 0xc2, 0x87, 0x2f, 0x57, 0xc2, 0x2d, 0x44, 0xa4,
0xc8, 0x77, 0x61, 0x2d, 0x5e, 0x2f, 0x27, 0x45, 0x82, 0xd1, 0xd5, 0x2b, 0x46, 0x9a, 0x74, 0x13,
0x18, 0x1d, 0xe1, 0x38, 0xc2, 0x7f, 0xed, 0x8c, 0x52, 0xcc, 0xd2, 0x88, 0x5e, 0x25, 0x46, 0xf4,
0xee, 0x40, 0x2d, 0x9c, 0x3e, 0xb3, 0xe6, 0xf6, 0xd5, 0xd4, 0xb3, 0x27, 0xe2, 0x7c, 0x43, 0x38,
0x7d, 0x76, 0xcc, 0x21, 0xe4, 0x3d, 0x80, 0xd9, 0x7c, 0x2e, 0xce, 0x1e, 0x9a, 0xde, 0xa2, 0xad,
0x7c, 0x74, 0x7c, 0xcc, 0xb7, 0x9c, 0x59, 0x9d, 0xcd, 0xe7, 0xfc, 0x27, 0xd9, 0x83, 0xe5, 0xcc,
0xc7, 0xfe, 0xb7, 0xe5, 0x03, 0x05, 0x6f, 0xbe, 0x93, 0x71, 0x38, 0x1b, 0x63, 0x1d, 0xb6, 0xfd,
0x43, 0x20, 0x7f, 0xc2, 0x27, 0xf7, 0x23, 0xa8, 0xaa, 0xfe, 0xe9, 0x2f, 0xd6, 0xf1, 0x4d, 0x56,
0x2d, 0xf6, 0x62, 0xbd, 0x3d, 0x99, 0xf8, 0x8c, 0x2e, 0x72, 0xee, 0x47, 0x91, 0x7c, 0xd0, 0xd8,
0x1f, 0xf1, 0xb4, 0xc7, 0xf8, 0x2f, 0x39, 0x28, 0xf1, 0xe7, 0xf3, 0x6f, 0xc3, 0x0a, 0xc7, 0x57,
0x6e, 0xc9, 0xc2, 0x99, 0x84, 0x33, 0x51, 0x23, 0xe1, 0x91, 0xcc, 0x8e, 0x85, 0x16, 0x52, 0x24,
0x62, 0x23, 0xb4, 0xb0, 0x22, 0x77, 0xa0, 0xaa, 0x9a, 0xd6, 0xb6, 0x4e, 0x45, 0xb6, 0x4c, 0x5e,
0x87, 0xe2, 0x85, 0x37, 0x97, 0x6a, 0x3c, 0x88, 0x66, 0xd2, 0x44, 0x78, 0xd4, 0x17, 0xd6, 0x46,
0xf4, 0xe4, 0xa8, 0x20, 0xfa, 0xc2, 0x1a, 0xc1, 0x6d, 0x90, 0x1e, 0xe3, 0x52, 0xc6, 0x18, 0x4f,
0x60, 0x85, 0xd1, 0x01, 0xcd, 0xa3, 0xe5, 0xfa, 0x4b, 0xf3, 0xdb, 0x8c, 0x5d, 0x1f, 0x4f, 0x17,
0x13, 0xaa, 0x2b, 0x52, 0xd1, 0xc7, 0x54, 0xc0, 0xa5, 0x98, 0x64, 0xfc, 0x76, 0x8e, 0xd3, 0x17,
0x56, 0x2f, 0xb9, 0x07, 0x45, 0x57, 0x7a, 0xbf, 0x44, 0x4c, 0xb9, 0x7a, 0x1c, 0xc7, 0xf0, 0x4c,
0xc4, 0x60, 0x4b, 0x87, 0x3e, 0x23, 0x7a, 0xed, 0x0d, 0xb3, 0xe6, 0x2e, 0x66, 0x4a, 0x0f, 0xf9,
0x2d, 0x39, 0xac, 0x84, 0x0e, 0x8f, 0x8f, 0x5e, 0x1d, 0xd3, 0x1d, 0xcd, 0x59, 0xb5, 0x18, 0xbb,
0x31, 0x25, 0x4b, 0x3f, 0x39, 0xa7, 0x9a, 0x93, 0xea, 0xef, 0xe6, 0xa1, 0x11, 0xeb, 0x11, 0x7a,
0xeb, 0xb2, 0x0b, 0x80, 0xdb, 0x19, 0xc5, 0x7a, 0xa3, 0x53, 0xa4, 0x90, 0xba, 0xb4, 0x79, 0xca,
0xc7, 0xe6, 0x49, 0xb9, 0xaf, 0x15, 0x74, 0xf7, 0xb5, 0x07, 0x50, 0x8d, 0x42, 0xc9, 0xc4, 0xbb,
0xc4, 0xda, 0x93, 0x4f, 0x04, 0x23, 0xa4, 0xc8, 0xe1, 0xad, 0xa4, 0x3b, 0xbc, 0x7d, 0x5f, 0xf3,
0x8f, 0x5a, 0xc2, 0x6a, 0x8c, 0xac, 0x19, 0xfd, 0x99, 0x78, 0x47, 0x19, 0x9f, 0x41, 0x4d, 0xeb,
0xbc, 0xee, 0x63, 0x94, 0x8b, 0xf9, 0x18, 0xa9, 0x27, 0xbe, 0xf9, 0xe8, 0x89, 0xaf, 0xf1, 0xe7,
0xf3, 0xd0, 0x60, 0xe7, 0xcb, 0x71, 0xcf, 0x8f, 0xbd, 0xa9, 0x33, 0x46, 0xbb, 0xa3, 0x3a, 0x61,
0x82, 0xd1, 0x92, 0xe7, 0x4c, 0x1c, 0x31, 0xce, 0x67, 0xe9, 0xf1, 0x0d, 0x38, 0x91, 0x56, 0xf1,
0x0d, 0x0c, 0x68, 0x30, 0xc2, 0x88, 0x16, 0xc4, 0x28, 0x20, 0x8d, 0x59, 0x3b, 0xa3, 0x74, 0xd7,
0x0e, 0x38, 0x85, 0xfc, 0x2e, 0xac, 0x31, 0x1c, 0x7c, 0xda, 0x3d, 0x73, 0xa6, 0x53, 0x27, 0x7a,
0xe3, 0x57, 0x30, 0x9b, 0x67, 0x94, 0x9a, 0x76, 0x48, 0x8f, 0x58, 0x86, 0x88, 0x5f, 0x53, 0x99,
0x38, 0x81, 0x7d, 0x1a, 0xf9, 0x54, 0xab, 0x34, 0xfa, 0x35, 0x08, 0xbb, 0x7c, 0x74, 0xc8, 0x8a,
0x66, 0x6d, 0xc6, 0xad, 0xf2, 0x58, 0x3e, 0xb1, 0x93, 0xca, 0xc9, 0x9d, 0x64, 0xfc, 0xb3, 0x3c,
0xd4, 0xb4, 0x6d, 0xf9, 0x2a, 0xb7, 0xeb, 0xed, 0x94, 0x9d, 0xb8, 0xaa, 0x9b, 0x84, 0xdf, 0x8c,
0x37, 0x59, 0x50, 0x0f, 0xc1, 0xf4, 0x0d, 0x7c, 0x0b, 0xaa, 0xec, 0xd4, 0xbd, 0x8f, 0xfa, 0x74,
0x11, 0x3f, 0x0a, 0x01, 0xc7, 0x8b, 0x53, 0x99, 0xf9, 0x10, 0x33, 0x4b, 0x51, 0xe6, 0x43, 0x96,
0xf9, 0xa2, 0x87, 0x20, 0x1f, 0x43, 0x5d, 0xd4, 0x8a, 0x6b, 0x2a, 0xc4, 0x82, 0x75, 0xed, 0xe6,
0x56, 0xeb, 0x6d, 0xd6, 0x78, 0x73, 0x7c, 0xf1, 0x45, 0xc1, 0x87, 0xb2, 0x60, 0xe5, 0x65, 0x05,
0x1f, 0xf2, 0x84, 0xb1, 0xaf, 0xde, 0xd6, 0xa0, 0x67, 0xa2, 0xa4, 0x63, 0xef, 0xc1, 0x9a, 0x24,
0x57, 0x0b, 0xd7, 0x76, 0x5d, 0x6f, 0xe1, 0x8e, 0xa9, 0x7c, 0xe5, 0x4b, 0x44, 0xd6, 0x49, 0x94,
0x63, 0x4c, 0x54, 0xc8, 0x08, 0xee, 0xe1, 0x78, 0x1f, 0x4a, 0x9c, 0x2f, 0xe7, 0xcc, 0x47, 0x36,
0xe1, 0xe2, 0x28, 0xe4, 0x1e, 0x94, 0x38, 0x7b, 0x9e, 0xbf, 0x96, 0xd8, 0x70, 0x04, 0xa3, 0x0d,
0x84, 0x15, 0x3c, 0xa2, 0xa1, 0xef, 0x8c, 0x83, 0xe8, 0x01, 0x71, 0x29, 0xbc, 0x9a, 0x8b, 0xb6,
0x22, 0x35, 0x7c, 0x84, 0x89, 0x0a, 0x07, 0x8e, 0xc3, 0x2e, 0xa6, 0xb5, 0x58, 0x1d, 0x82, 0x5d,
0x9a, 0xc2, 0xe6, 0x29, 0x0d, 0x9f, 0x53, 0xea, 0xba, 0x8c, 0x19, 0x1a, 0x53, 0x37, 0xf4, 0xed,
0x29, 0x5b, 0x24, 0x3e, 0x82, 0x47, 0xa9, 0x5a, 0x23, 0x85, 0xd6, 0x6e, 0x54, 0xb0, 0xa3, 0xca,
0x71, 0xda, 0xb1, 0x71, 0x9a, 0x95, 0xb7, 0xfd, 0x8b, 0xb0, 0x7d, 0x7d, 0xa1, 0x8c, 0xe0, 0x01,
0xf7, 0xe2, 0x54, 0x45, 0x19, 0x75, 0xa7, 0x9e, 0x1d, 0xf2, 0xde, 0xe8, 0x94, 0xa5, 0x0f, 0x35,
0x2d, 0x27, 0xba, 0xfb, 0x73, 0xc8, 0xdc, 0xf1, 0x04, 0xbb, 0x91, 0x5c, 0xcf, 0x9f, 0xa1, 0x11,
0x75, 0x62, 0x45, 0xb5, 0xe7, 0xcc, 0x95, 0x08, 0x8e, 0x3e, 0x35, 0xc6, 0x0e, 0xac, 0x20, 0x67,
0xaf, 0x5d, 0x74, 0x2f, 0x62, 0x06, 0x8d, 0x75, 0x20, 0x7d, 0x4e, 0xbb, 0x74, 0x6f, 0xcf, 0x7f,
0x5f, 0x80, 0x9a, 0x06, 0x66, 0xb7, 0x11, 0xba, 0xc8, 0x5a, 0x13, 0xc7, 0x9e, 0x51, 0x69, 0xb1,
0x6e, 0x98, 0x0d, 0x84, 0xee, 0x09, 0x20, 0xbb, 0x8b, 0xed, 0x67, 0xe7, 0x96, 0xb7, 0x08, 0xad,
0x09, 0x3d, 0xf7, 0xa9, 0xec, 0x65, 0xdd, 0x7e, 0x76, 0x3e, 0x58, 0x84, 0x7b, 0x08, 0x63, 0x58,
0x8c, 0x96, 0x68, 0x58, 0xc2, 0x63, 0x72, 0x66, 0x5f, 0x46, 0x58, 0xc2, 0xb5, 0x98, 0xef, 0xcc,
0xa2, 0x72, 0x2d, 0xe6, 0xd2, 0x62, 0xf2, 0x02, 0x2d, 0xa5, 0x2f, 0xd0, 0x0f, 0x61, 0x93, 0x5f,
0xa0, 0x82, 0x34, 0x5b, 0x89, 0x93, 0xbc, 0x8e, 0xb9, 0x62, 0x90, 0x1a, 0xdb, 0xdb, 0x64, 0x23,
0x90, 0x64, 0x29, 0x70, 0x7e, 0xc2, 0x09, 0x59, 0xce, 0x64, 0x23, 0x13, 0x95, 0x0f, 0x9d, 0x9f,
0x50, 0x86, 0x89, 0xbe, 0x59, 0x3a, 0xa6, 0x78, 0xe6, 0x35, 0x73, 0xdc, 0x24, 0xa6, 0x7d, 0x19,
0xc7, 0xac, 0x0a, 0x4c, 0xfb, 0x52, 0xc7, 0x7c, 0x04, 0x5b, 0x33, 0x3a, 0x71, 0xec, 0x78, 0xb5,
0x56, 0xc4, 0xb8, 0xad, 0xf3, 0x6c, 0xad, 0xcc, 0x90, 0x0b, 0xee, 0x6c, 0x36, 0x7e, 0xe2, 0xcd,
0x4e, 0x1d, 0xce, 0xb3, 0x70, 0x6f, 0xb1, 0xa2, 0xb9, 0xec, 0x2e, 0x66, 0xbf, 0x80, 0x60, 0x56,
0x24, 0x30, 0x1a, 0x50, 0x1b, 0x86, 0xde, 0x5c, 0x2e, 0xf3, 0x32, 0xd4, 0x79, 0x52, 0x3c, 0x90,
0xbf, 0x05, 0x37, 0x91, 0x24, 0x8c, 0xbc, 0xb9, 0x37, 0xf5, 0xce, 0xaf, 0x62, 0x4a, 0xd9, 0x7f,
0x95, 0x83, 0xb5, 0x58, 0xae, 0x20, 0xaf, 0x1f, 0x72, 0x7a, 0xa6, 0x9e, 0xf7, 0xe6, 0x62, 0x6f,
0xbb, 0xd8, 0x7a, 0x71, 0x44, 0x4e, 0xcc, 0xe4, 0x93, 0xdf, 0x76, 0x14, 0xe3, 0x47, 0x16, 0xe4,
0x24, 0xa5, 0x95, 0x26, 0x29, 0xa2, 0xbc, 0x8c, 0xfe, 0x23, 0xab, 0xf8, 0x39, 0xf1, 0x14, 0x6f,
0x22, 0x86, 0x5c, 0x88, 0x3f, 0xd6, 0xd1, 0x15, 0xb8, 0xb2, 0x07, 0x91, 0x56, 0x37, 0x30, 0xfe,
0x6e, 0x0e, 0x20, 0xea, 0x1d, 0x3e, 0x17, 0x52, 0x7c, 0x4b, 0x0e, 0x1d, 0xb5, 0x35, 0x1e, 0xe5,
0x0d, 0xa8, 0x2b, 0x9f, 0xfe, 0x88, 0x13, 0xaa, 0x49, 0x18, 0x63, 0x87, 0xde, 0x81, 0x95, 0xf3,
0xa9, 0x77, 0x8a, 0x1c, 0xab, 0xe0, 0x5b, 0xb8, 0x4b, 0xc8, 0x32, 0x07, 0x4b, 0x6e, 0x24, 0xe2,
0x9b, 0x8a, 0x99, 0x6e, 0xff, 0x3a, 0x17, 0x64, 0xfc, 0xe5, 0xbc, 0x72, 0x1c, 0x8e, 0x66, 0xe2,
0xc5, 0xe2, 0xdd, 0x4f, 0xe3, 0x5a, 0xf5, 0x22, 0x5b, 0xf1, 0x67, 0xb0, 0xec, 0xf3, 0x4b, 0x49,
0xde, 0x58, 0xc5, 0x17, 0xdc, 0x58, 0x0d, 0x3f, 0xc6, 0xe9, 0x7c, 0x1b, 0x9a, 0xf6, 0xe4, 0x19,
0xf5, 0x43, 0x07, 0x4d, 0x2f, 0xc8, 0x1f, 0x0b, 0x57, 0x5d, 0x0d, 0x8e, 0x8c, 0xe8, 0x3b, 0xb0,
0x22, 0x82, 0x36, 0x28, 0x4c, 0x11, 0x4c, 0x2e, 0x02, 0x33, 0x44, 0xe3, 0x1f, 0x4a, 0x4f, 0xe5,
0xf8, 0xea, 0xbe, 0x78, 0x56, 0xf4, 0x11, 0xe6, 0xd3, 0xd6, 0x70, 0xb1, 0x91, 0x84, 0x45, 0x47,
0xd0, 0x23, 0x0e, 0x14, 0xf6, 0x9c, 0xf8, 0xb4, 0x16, 0x5f, 0x65, 0x5a, 0x8d, 0x7f, 0x93, 0x83,
0xf2, 0x81, 0x37, 0x3f, 0x70, 0xf8, 0x7b, 0x17, 0x3c, 0x26, 0xca, 0xe0, 0xb8, 0xc4, 0x92, 0xe8,
0x07, 0xf6, 0x82, 0x67, 0xaf, 0x99, 0x6c, 0x5e, 0x23, 0xce, 0xe6, 0x7d, 0x1f, 0x6e, 0xa1, 0x3d,
0xd7, 0xf7, 0xe6, 0x9e, 0xcf, 0x8e, 0xaa, 0x3d, 0xe5, 0xec, 0x9e, 0xe7, 0x86, 0x17, 0x92, 0x76,
0xde, 0x3c, 0xa3, 0xf4, 0x58, 0xc3, 0x38, 0x52, 0x08, 0xf8, 0xe4, 0x7d, 0x1a, 0x3e, 0xb3, 0xb8,
0x84, 0x2e, 0xf8, 0x51, 0x4e, 0x51, 0x57, 0x58, 0x46, 0x17, 0xe1, 0xc8, 0x91, 0x1a, 0x9f, 0x40,
0x55, 0x29, 0x7b, 0xc8, 0xbb, 0x50, 0xbd, 0xf0, 0xe6, 0x42, 0x23, 0x94, 0x8b, 0x3d, 0x0d, 0x16,
0xa3, 0x36, 0x2b, 0x17, 0xfc, 0x47, 0x60, 0xfc, 0x41, 0x19, 0xca, 0x3d, 0xf7, 0x99, 0xe7, 0x8c,
0xd1, 0xd7, 0x79, 0x46, 0x67, 0x9e, 0x8c, 0x29, 0xc3, 0x7e, 0xa3, 0xab, 0x5e, 0x14, 0x12, 0xae,
0x20, 0x5c, 0xf5, 0x54, 0x30, 0xb8, 0x0d, 0x58, 0xf2, 0xf5, 0x98, 0x6e, 0x25, 0x1f, 0x5f, 0x88,
0xa8, 0xfb, 0xb2, 0xa4, 0x45, 0xea, 0x61, 0x75, 0x71, 0x37, 0x54, 0x9c, 0x32, 0xfe, 0x6c, 0xbd,
0x8a, 0x10, 0x9c, 0xb0, 0xd7, 0xa0, 0x2c, 0xf4, 0xbe, 0xfc, 0x5d, 0x20, 0xd7, 0x96, 0x0b, 0x10,
0xee, 0x06, 0x9f, 0x72, 0x7b, 0xbc, 0x62, 0x64, 0x0b, 0x66, 0x5d, 0x02, 0xf7, 0xd8, 0x5e, 0xbb,
0x03, 0x35, 0x8e, 0xcf, 0x51, 0x2a, 0xc2, 0x45, 0x18, 0x41, 0x88, 0x90, 0x11, 0x1a, 0xb1, 0x9a,
0x19, 0x1a, 0x11, 0x9d, 0xd9, 0x15, 0x95, 0xe5, 0x43, 0x04, 0x1e, 0x10, 0x4f, 0x83, 0xcb, 0x78,
0xa3, 0x42, 0xa7, 0xc2, 0x23, 0x3a, 0x48, 0x9d, 0xca, 0x9b, 0xd0, 0x38, 0xb3, 0xa7, 0xd3, 0x53,
0x7b, 0xfc, 0x94, 0xab, 0x02, 0xea, 0x5c, 0xfb, 0x29, 0x81, 0xa8, 0x0b, 0xb8, 0x03, 0x35, 0x6d,
0x95, 0xd1, 0xff, 0xb7, 0x68, 0x42, 0xb4, 0xbe, 0x49, 0x0d, 0xdf, 0xf2, 0x2b, 0x68, 0xf8, 0x34,
0x3f, 0xe8, 0x95, 0xb8, 0x1f, 0xf4, 0x2d, 0xa4, 0xa6, 0xc2, 0x03, 0xb5, 0xc9, 0xa3, 0xaf, 0xd9,
0x93, 0x09, 0x7a, 0xa0, 0xa2, 0x22, 0x8b, 0x4f, 0x1e, 0xcf, 0x5f, 0xe5, 0xb2, 0x04, 0x87, 0x71,
0x94, 0xdb, 0x5c, 0x4d, 0x3d, 0xb7, 0x9d, 0x09, 0x3e, 0xcb, 0x11, 0x16, 0x0d, 0x7b, 0x16, 0x1e,
0xdb, 0x0e, 0xfa, 0xde, 0xc9, 0x6c, 0xbc, 0x1d, 0xd7, 0xf8, 0xfc, 0x8b, 0xec, 0x21, 0x8f, 0x57,
0xa2, 0x30, 0x66, 0x2a, 0x24, 0x83, 0x59, 0x13, 0x28, 0xb8, 0x0f, 0xde, 0x47, 0x97, 0xad, 0x90,
0x62, 0xd0, 0x85, 0xe5, 0x87, 0xb7, 0x94, 0x27, 0x09, 0xee, 0x52, 0xf9, 0x9f, 0x5b, 0x3a, 0x39,
0x26, 0x63, 0xee, 0xb8, 0xc1, 0x75, 0x33, 0xc6, 0xff, 0x0a, 0x54, 0x34, 0xb8, 0x72, 0x04, 0xf2,
0x89, 0x26, 0xbf, 0xb6, 0x10, 0xf9, 0xb5, 0x44, 0xfd, 0xd7, 0xbd, 0x7b, 0xbc, 0x0d, 0xe0, 0x04,
0xec, 0x96, 0x09, 0xa8, 0x3b, 0xc1, 0xd8, 0x09, 0x15, 0xb3, 0xea, 0x04, 0x4f, 0x38, 0xe0, 0x9b,
0x15, 0x6c, 0xdb, 0x50, 0xd7, 0x87, 0x49, 0x2a, 0x50, 0x1c, 0x1c, 0x77, 0xfb, 0xcd, 0x1b, 0xa4,
0x06, 0xe5, 0x61, 0x77, 0x34, 0x3a, 0x44, 0xb3, 0x6d, 0x1d, 0x2a, 0xea, 0x65, 0x74, 0x9e, 0xa5,
0xda, 0x9d, 0x4e, 0xf7, 0x78, 0xd4, 0xdd, 0x6b, 0x16, 0x7e, 0x54, 0xac, 0xe4, 0x9b, 0x05, 0xe3,
0x0f, 0x0b, 0x50, 0xd3, 0x66, 0xe1, 0xc5, 0xc4, 0xf8, 0x36, 0x00, 0x4a, 0x92, 0x91, 0x83, 0x72,
0xd1, 0xac, 0x32, 0x08, 0x5f, 0x7c, 0xdd, 0x46, 0x21, 0xa2, 0x04, 0x49, 0x1b, 0xc5, 0x9b, 0xd0,
0xe0, 0xe1, 0x65, 0x74, 0xe3, 0x7b, 0xc9, 0xac, 0x73, 0xa0, 0x20, 0xd5, 0x18, 0x67, 0x01, 0x91,
0xf0, 0x05, 0xab, 0x88, 0x8c, 0xc5, 0x41, 0xf8, 0x86, 0x15, 0x1f, 0x20, 0x07, 0xde, 0xf4, 0x19,
0xe5, 0x18, 0x9c, 0x23, 0xac, 0x09, 0xd8, 0x48, 0xc4, 0xb0, 0x10, 0xf4, 0x50, 0x7b, 0xe8, 0x5f,
0x32, 0xeb, 0x1c, 0x28, 0x1a, 0xfa, 0xae, 0xdc, 0x40, 0xdc, 0x15, 0x69, 0x2b, 0xbd, 0x1b, 0x62,
0x9b, 0xe7, 0x30, 0xa5, 0x46, 0xac, 0xe2, 0xc6, 0xf8, 0x56, 0xba, 0xdc, 0xcb, 0xd5, 0x89, 0xe4,
0x5d, 0x20, 0xb3, 0xf9, 0xdc, 0xca, 0x50, 0xf0, 0x15, 0xcd, 0x95, 0xd9, 0x7c, 0x3e, 0xd2, 0xf4,
0x5f, 0xdf, 0x80, 0xee, 0xf1, 0x2b, 0x20, 0x6d, 0x76, 0x80, 0xb1, 0x8b, 0x4a, 0x14, 0x8b, 0xc8,
0x72, 0x4e, 0x27, 0xcb, 0x19, 0xd4, 0x2f, 0x9f, 0x49, 0xfd, 0x5e, 0x44, 0x27, 0x8c, 0x7d, 0xa8,
0x1d, 0x6b, 0xf1, 0x37, 0xef, 0xb2, 0x1b, 0x42, 0x46, 0xde, 0xe4, 0x77, 0x07, 0xd7, 0x29, 0xfa,
0x22, 0xe0, 0xa6, 0xd6, 0x9b, 0xbc, 0xd6, 0x1b, 0xe3, 0x6f, 0xe7, 0x78, 0xbc, 0x32, 0xd5, 0xf9,
0x28, 0xe4, 0xa7, 0x34, 0xcd, 0x45, 0xf1, 0x38, 0x6a, 0xd2, 0xf8, 0x26, 0x42, 0x69, 0x60, 0xd7,
0x2c, 0xef, 0xec, 0x2c, 0xa0, 0xd2, 0x61, 0xa7, 0x86, 0xb0, 0x01, 0x82, 0x24, 0xf3, 0xcd, 0x38,
0x7c, 0x87, 0xd7, 0x1f, 0x08, 0x2f, 0x1d, 0xc6, 0x7c, 0x1f, 0xd9, 0x97, 0xa2, 0xd5, 0x80, 0xb1,
0x20, 0xc2, 0x3e, 0x20, 0xdf, 0xa3, 0xab, 0xb4, 0xf1, 0x37, 0x44, 0xc8, 0x90, 0xe4, 0xfc, 0xde,
0x87, 0x8a, 0xaa, 0x35, 0x7e, 0xc3, 0x4a, 0x4c, 0x95, 0xcf, 0xee, 0x71, 0x54, 0x86, 0xc4, 0x7a,
0xcc, 0x0f, 0x17, 0xda, 0x78, 0x7a, 0x5a, 0xaf, 0xbf, 0x03, 0xe4, 0xcc, 0xf1, 0x93, 0xc8, 0xfc,
0xb0, 0x35, 0x31, 0x47, 0xc3, 0x36, 0x4e, 0x60, 0x4d, 0x52, 0x09, 0x4d, 0x22, 0x88, 0x2f, 0x5e,
0xee, 0x25, 0x44, 0x3e, 0x9f, 0x22, 0xf2, 0xc6, 0xaf, 0x97, 0xa0, 0x2c, 0x63, 0xd9, 0x66, 0xc5,
0x5f, 0xad, 0xc6, 0xe3, 0xaf, 0xb6, 0x62, 0x51, 0xf9, 0x70, 0xe9, 0xc5, 0x7d, 0xff, 0x4e, 0xf2,
0xca, 0xd6, 0x6c, 0x15, 0xb1, 0x6b, 0x5b, 0xd8, 0x2a, 0x4a, 0x71, 0x5b, 0x45, 0x56, 0x4c, 0x5a,
0xce, 0x7a, 0xa6, 0x62, 0xd2, 0xde, 0x02, 0xce, 0x47, 0x68, 0x9e, 0x8a, 0x15, 0x04, 0x88, 0x98,
0x0a, 0x1a, 0xdb, 0x51, 0x49, 0xb2, 0x1d, 0xaf, 0xcc, 0x12, 0x7c, 0x08, 0x4b, 0x3c, 0xfc, 0x90,
0x78, 0x5f, 0x2f, 0x2f, 0x0e, 0x31, 0x57, 0xf2, 0x3f, 0x7f, 0x00, 0x63, 0x0a, 0x5c, 0x3d, 0xc0,
0x63, 0x2d, 0x16, 0xe0, 0x51, 0xb7, 0xa1, 0xd4, 0xe3, 0x36, 0x94, 0x7b, 0xd0, 0x54, 0x13, 0x87,
0x1a, 0x49, 0x37, 0x10, 0x6f, 0x6b, 0x97, 0x25, 0x9c, 0x51, 0xc3, 0x7e, 0x10, 0x5d, 0x7c, 0xcb,
0xb1, 0x8b, 0x8f, 0xd1, 0xaa, 0x76, 0x18, 0xd2, 0xd9, 0x3c, 0x94, 0x17, 0x9f, 0x16, 0x06, 0x98,
0xaf, 0x3c, 0x7f, 0xfc, 0x23, 0x97, 0x97, 0xef, 0x8e, 0x5d, 0x58, 0x3e, 0xb3, 0x9d, 0xe9, 0xc2,
0xa7, 0x96, 0x4f, 0xed, 0xc0, 0x73, 0xf1, 0xf0, 0x47, 0x77, 0xb0, 0x18, 0xe2, 0x3e, 0xc7, 0x31,
0x11, 0xc5, 0x6c, 0x9c, 0xe9, 0x49, 0x7c, 0x42, 0xa7, 0xcf, 0x04, 0xbb, 0xb2, 0xc4, 0x2b, 0x7b,
0xee, 0x78, 0xd4, 0xeb, 0x5b, 0xfb, 0x87, 0xbd, 0xc7, 0x07, 0xa3, 0x66, 0x8e, 0x25, 0x87, 0x27,
0x9d, 0x4e, 0xb7, 0xbb, 0x87, 0x57, 0x18, 0xc0, 0xd2, 0x7e, 0xbb, 0x77, 0x28, 0x2e, 0xb0, 0x62,
0xb3, 0x64, 0xfc, 0xd3, 0x3c, 0xd4, 0xb4, 0xd1, 0x90, 0x47, 0x6a, 0x11, 0x78, 0x5c, 0x8f, 0xdb,
0xe9, 0x11, 0xef, 0x48, 0x0a, 0xaf, 0xad, 0x82, 0x0a, 0xf8, 0x9b, 0xbf, 0x36, 0xe0, 0x2f, 0x79,
0x1b, 0x56, 0x6c, 0x5e, 0x83, 0x9a, 0x74, 0xa1, 0xdc, 0x17, 0x60, 0x31, 0xe7, 0x6f, 0x8b, 0x18,
0x23, 0xe2, 0x9a, 0x62, 0x78, 0x45, 0xe9, 0x81, 0xab, 0x6e, 0x2a, 0x5c, 0x9b, 0xb2, 0x98, 0x19,
0x61, 0x8c, 0x57, 0x17, 0xbe, 0x98, 0x2f, 0x99, 0xcd, 0xdf, 0xd5, 0x6a, 0x3b, 0xbc, 0x6e, 0xaa,
0xb4, 0xf1, 0x11, 0x40, 0x34, 0x9e, 0xf8, 0xf4, 0xdd, 0x88, 0x4f, 0x5f, 0x4e, 0x9b, 0xbe, 0xbc,
0xf1, 0x0f, 0x04, 0xe9, 0x12, 0x6b, 0xa1, 0x54, 0x7d, 0xdf, 0x05, 0xa9, 0x7c, 0xb4, 0xd0, 0x63,
0x7f, 0x3e, 0xa5, 0xa1, 0x7c, 0x1a, 0xbc, 0x2a, 0x72, 0x7a, 0x2a, 0x23, 0x45, 0x6a, 0xf3, 0x69,
0x52, 0xfb, 0x06, 0xd4, 0x31, 0x68, 0x9d, 0x68, 0x48, 0x90, 0xab, 0xda, 0xcc, 0xbe, 0x94, 0x6d,
0xc7, 0x68, 0x6c, 0x31, 0x41, 0x63, 0xff, 0x66, 0x8e, 0x47, 0x38, 0x8a, 0x3a, 0x1a, 0x11, 0x59,
0x55, 0x67, 0x9c, 0xc8, 0x0a, 0x54, 0x53, 0xe5, 0x5f, 0x43, 0x38, 0xf3, 0xd9, 0x84, 0x33, 0x9b,
0x24, 0x17, 0x32, 0x49, 0xb2, 0xb1, 0x0d, 0xad, 0x3d, 0xca, 0xa6, 0xa2, 0x3d, 0x9d, 0x26, 0xe6,
0xd2, 0xb8, 0x05, 0x37, 0x33, 0xf2, 0x84, 0xd6, 0xe6, 0x37, 0x72, 0xb0, 0xd1, 0xe6, 0x81, 0x4d,
0xbe, 0xb1, 0xb7, 0xbb, 0x9f, 0xc2, 0x4d, 0xe5, 0x7e, 0xaf, 0x3d, 0x09, 0xd4, 0xa3, 0x52, 0x49,
0xcf, 0x7d, 0xed, 0xd1, 0x09, 0xbb, 0x33, 0x8d, 0x16, 0x6c, 0x26, 0x7b, 0x23, 0x3a, 0xba, 0x0f,
0xab, 0x7b, 0xf4, 0x74, 0x71, 0x7e, 0x48, 0x9f, 0x45, 0x7d, 0x24, 0x50, 0x0c, 0x2e, 0xbc, 0xe7,
0x62, 0x63, 0xe0, 0x6f, 0xf4, 0xcf, 0x65, 0x38, 0x56, 0x30, 0xa7, 0x63, 0xa9, 0xf5, 0x47, 0xc8,
0x70, 0x4e, 0xc7, 0xc6, 0x23, 0x20, 0x7a, 0x3d, 0x62, 0x15, 0x99, 0x48, 0xb6, 0x38, 0xb5, 0x82,
0xab, 0x20, 0xa4, 0x33, 0xf9, 0xdc, 0x15, 0x82, 0xc5, 0xe9, 0x90, 0x43, 0x8c, 0x77, 0xa0, 0x7e,
0x6c, 0x5f, 0x99, 0xf4, 0x2b, 0xf1, 0xaa, 0x74, 0x0b, 0xca, 0x73, 0xfb, 0x8a, 0xd1, 0x62, 0x65,
0x00, 0xc4, 0x6c, 0xe3, 0x1f, 0x15, 0x61, 0x89, 0x63, 0x92, 0xbb, 0x3c, 0x14, 0xbf, 0xe3, 0x22,
0x2d, 0x94, 0xb7, 0x92, 0x06, 0x4a, 0x5d, 0x5c, 0xf9, 0xf4, 0xc5, 0x25, 0xb4, 0x95, 0x32, 0x6a,
0x9e, 0x34, 0xd5, 0xb8, 0x8b, 0x99, 0x0c, 0x95, 0x17, 0x8f, 0xeb, 0x51, 0x8c, 0x3e, 0xe1, 0xc0,
0x63, 0x1a, 0xc4, 0x8d, 0xe9, 0x91, 0xe0, 0xc7, 0x7b, 0x27, 0xef, 0x63, 0x71, 0x67, 0xe9, 0xa0,
0x4c, 0xe9, 0xb2, 0x2c, 0x9f, 0x4a, 0xc7, 0xa5, 0xcb, 0x94, 0x14, 0x59, 0x79, 0xb9, 0x14, 0xc9,
0xd5, 0x98, 0x2f, 0x90, 0x22, 0xe1, 0x15, 0xa4, 0xc8, 0x57, 0x30, 0x64, 0xdf, 0x84, 0x0a, 0x32,
0x59, 0xda, 0x15, 0xc6, 0x98, 0x2b, 0x76, 0x85, 0x7d, 0xac, 0xc9, 0x59, 0xdc, 0x8b, 0x46, 0xbb,
0x43, 0x4c, 0xfa, 0xd5, 0xcf, 0xc6, 0x40, 0xf8, 0x25, 0x94, 0x05, 0x94, 0x6d, 0x68, 0xd7, 0x9e,
0xc9, 0xc8, 0xac, 0xf8, 0x9b, 0x4d, 0x1b, 0x46, 0x4b, 0xfc, 0x6a, 0xe1, 0xf8, 0x74, 0x22, 0x63,
0xb6, 0x39, 0x78, 0xbe, 0x19, 0x84, 0x0d, 0x90, 0xc9, 0x7c, 0xae, 0xf7, 0xdc, 0x15, 0x74, 0xab,
0xec, 0x04, 0x4f, 0x58, 0xd2, 0x20, 0xd0, 0xc4, 0x38, 0xce, 0x73, 0xcf, 0x97, 0x1c, 0x82, 0xf1,
0x3b, 0x39, 0x68, 0x8a, 0xd3, 0xa5, 0xf2, 0x74, 0x91, 0xab, 0x74, 0x9d, 0xd3, 0xc7, 0x8b, 0x23,
0xb0, 0x19, 0xd0, 0x40, 0x4d, 0x93, 0x62, 0x17, 0xb8, 0xa6, 0xac, 0xc6, 0x80, 0xfb, 0x82, 0x65,
0x78, 0x1d, 0x6a, 0xf2, 0xf5, 0xc0, 0xcc, 0x99, 0xca, 0xaf, 0xb5, 0xf0, 0xe7, 0x03, 0x47, 0xce,
0x54, 0x72, 0x1b, 0xbe, 0x2d, 0x9e, 0xee, 0xe7, 0x90, 0xdb, 0x30, 0xed, 0x90, 0x1a, 0xff, 0x24,
0x07, 0xab, 0xda, 0x50, 0xc4, 0xb9, 0xfd, 0x1e, 0xd4, 0x55, 0x00, 0x75, 0xaa, 0xd8, 0xdc, 0xad,
0x38, 0x8d, 0x8a, 0x8a, 0xd5, 0xc6, 0x0a, 0x12, 0xb0, 0xce, 0x4c, 0xec, 0x2b, 0xee, 0xe2, 0xbe,
0x98, 0x49, 0x49, 0x72, 0x62, 0x5f, 0xed, 0x53, 0x3a, 0x5c, 0xcc, 0xc8, 0x5d, 0xa8, 0x3f, 0xa7,
0xf4, 0xa9, 0x42, 0xe0, 0xa4, 0x17, 0x18, 0x4c, 0x60, 0x18, 0xd0, 0x98, 0x79, 0x6e, 0x78, 0xa1,
0x50, 0x04, 0x8b, 0x8f, 0x40, 0x8e, 0x63, 0xfc, 0x7e, 0x1e, 0xd6, 0xb8, 0x3e, 0x53, 0xe8, 0x91,
0x05, 0xe9, 0x6a, 0xc1, 0x12, 0x57, 0xed, 0x72, 0xe2, 0x75, 0x70, 0xc3, 0x14, 0x69, 0xf2, 0xe1,
0x2b, 0xea, 0x60, 0x65, 0x74, 0x80, 0x6b, 0xa6, 0xbf, 0x90, 0x9e, 0xfe, 0xeb, 0xa7, 0x37, 0xcb,
0xaa, 0x5c, 0xca, 0xb2, 0x2a, 0xbf, 0x8a, 0x2d, 0x37, 0xf5, 0x8e, 0xbd, 0x9c, 0x0e, 0xf7, 0xfa,
0x08, 0xb6, 0x62, 0x38, 0x48, 0xad, 0x9d, 0x33, 0x87, 0xca, 0x80, 0x52, 0xeb, 0x1a, 0xf6, 0x50,
0x6b, 0xc0, 0xc7, 0xc2, 0x17, 0x6c, 0xff, 0x2d, 0x0c, 0xec, 0xda, 0x5f, 0xfe, 0x33, 0xe0, 0x85,
0x01, 0x1f, 0x30, 0xbc, 0x86, 0x0f, 0x2c, 0x16, 0x30, 0x60, 0xaf, 0x3f, 0x0c, 0x18, 0x0b, 0xd8,
0x9f, 0x36, 0x60, 0xc4, 0x8b, 0x23, 0x23, 0x0f, 0x55, 0x55, 0xcf, 0xb6, 0xe7, 0x47, 0x62, 0xbc,
0x78, 0x71, 0x47, 0xbc, 0x78, 0x57, 0xbc, 0x84, 0xaa, 0x3f, 0x1f, 0xef, 0xcc, 0x7d, 0x2f, 0xf4,
0x48, 0x69, 0xea, 0xfa, 0xf3, 0xb1, 0xf1, 0x47, 0x39, 0x28, 0x9e, 0x84, 0x97, 0x1e, 0x79, 0x04,
0x75, 0x7b, 0x32, 0xf1, 0x69, 0x10, 0x58, 0xe1, 0xd5, 0x9c, 0xb6, 0x72, 0x77, 0x73, 0xf7, 0x96,
0x1f, 0x92, 0x1d, 0x44, 0xdb, 0x69, 0xf3, 0xac, 0xd1, 0xd5, 0x9c, 0x9a, 0x35, 0x3b, 0x4a, 0x90,
0x16, 0x94, 0x45, 0xb2, 0x95, 0xbf, 0x9b, 0xbb, 0x57, 0x35, 0x65, 0x92, 0xdc, 0x06, 0xb0, 0x67,
0xde, 0xc2, 0x0d, 0xad, 0xc0, 0x0e, 0x5b, 0x85, 0xbb, 0xb9, 0x7b, 0x05, 0xb3, 0xca, 0x21, 0x43,
0x3b, 0x24, 0xb7, 0xa0, 0x3a, 0x7f, 0x6a, 0x05, 0x63, 0xdf, 0x99, 0x87, 0xad, 0x22, 0x16, 0xad,
0xcc, 0x9f, 0x0e, 0x31, 0x4d, 0xde, 0x85, 0x8a, 0xb7, 0x08, 0xe7, 0x9e, 0xe3, 0x86, 0xad, 0xd2,
0xdd, 0xdc, 0xbd, 0xda, 0xc3, 0x15, 0xd1, 0x91, 0xc1, 0x22, 0x3c, 0x66, 0x60, 0x53, 0x21, 0x90,
0xb7, 0xa0, 0x31, 0xf6, 0xdc, 0x33, 0xc7, 0x9f, 0xd9, 0xa1, 0xe3, 0xb9, 0x41, 0x6b, 0x09, 0xdb,
0x8a, 0x03, 0x8d, 0x7f, 0x9e, 0x87, 0xda, 0xc8, 0xb7, 0xdd, 0xc0, 0x1e, 0x33, 0x00, 0xd9, 0x82,
0x72, 0x78, 0x69, 0x5d, 0xd8, 0xc1, 0x05, 0x0e, 0xb5, 0x6a, 0x2e, 0x85, 0x97, 0x07, 0x76, 0x70,
0x41, 0x36, 0x61, 0x89, 0xf7, 0x12, 0x07, 0x54, 0x30, 0x45, 0x8a, 0xbc, 0x0b, 0xab, 0xee, 0x62,
0x66, 0xc5, 0x9b, 0x62, 0xc3, 0x2a, 0x99, 0x4d, 0x77, 0x31, 0xeb, 0xe8, 0x70, 0x36, 0xf8, 0xd3,
0xa9, 0x37, 0x7e, 0xca, 0x1b, 0xe0, 0xc3, 0xab, 0x22, 0x04, 0xdb, 0x78, 0x03, 0xea, 0x22, 0x9b,
0x3a, 0xe7, 0x17, 0x7c, 0x8c, 0x25, 0xb3, 0xc6, 0x11, 0x10, 0xc4, 0x6a, 0x08, 0x9d, 0x19, 0xb5,
0x82, 0xd0, 0x9e, 0xcd, 0xc5, 0x90, 0xaa, 0x0c, 0x32, 0x64, 0x00, 0xcc, 0xf6, 0x42, 0x7b, 0x6a,
0x9d, 0x51, 0x1a, 0xb4, 0xca, 0x22, 0x9b, 0x41, 0xf6, 0x29, 0x0d, 0xc8, 0xb7, 0x60, 0x79, 0x42,
0x83, 0xd0, 0x12, 0x8b, 0x41, 0x83, 0x56, 0xe5, 0x6e, 0xe1, 0x5e, 0xd5, 0x6c, 0x30, 0x68, 0x5b,
0x02, 0xc9, 0x6b, 0x00, 0xbe, 0xfd, 0xdc, 0x62, 0x13, 0x41, 0x2f, 0x5b, 0x55, 0xbe, 0x0a, 0xbe,
0xfd, 0x7c, 0x74, 0x79, 0x40, 0x2f, 0xc9, 0x3a, 0x94, 0xa6, 0xf6, 0x29, 0x9d, 0xb6, 0x00, 0x33,
0x78, 0xc2, 0xf8, 0x05, 0xd8, 0x7c, 0x4c, 0x43, 0x6d, 0x2a, 0x03, 0x93, 0x7e, 0xb5, 0xa0, 0x41,
0xc8, 0x46, 0x15, 0x84, 0xb6, 0x1f, 0xca, 0x51, 0xe5, 0xf8, 0xa8, 0x10, 0x16, 0x8d, 0x8a, 0xba,
0x13, 0x89, 0x90, 0x47, 0x84, 0x2a, 0x75, 0x27, 0x3c, 0xdb, 0x38, 0x04, 0xa2, 0x55, 0xbc, 0x47,
0x43, 0xdb, 0x99, 0x06, 0xe4, 0x23, 0xa8, 0x87, 0x5a, 0x73, 0xad, 0xdc, 0xdd, 0xc2, 0xbd, 0x9a,
0xda, 0x9a, 0x5a, 0x01, 0x33, 0x86, 0x67, 0x5c, 0x40, 0x65, 0x9f, 0xd2, 0x43, 0x67, 0xe6, 0x84,
0x64, 0x13, 0x4a, 0x67, 0xce, 0x25, 0x9d, 0x60, 0xa7, 0x0a, 0x07, 0x37, 0x4c, 0x9e, 0x24, 0x77,
0x00, 0xf0, 0x87, 0x35, 0x53, 0xbb, 0xf4, 0xe0, 0x86, 0x59, 0x45, 0xd8, 0x51, 0x60, 0x87, 0x64,
0x1b, 0xca, 0x73, 0xea, 0x8f, 0xa9, 0xdc, 0x0f, 0x07, 0x37, 0x4c, 0x09, 0xd8, 0x2d, 0x43, 0x69,
0xca, 0x6a, 0x37, 0x7e, 0xaf, 0x04, 0xb5, 0x21, 0x75, 0x27, 0x72, 0x26, 0x08, 0x14, 0xd9, 0x44,
0x63, 0x63, 0x75, 0x13, 0x7f, 0x93, 0x37, 0xa1, 0x86, 0x4b, 0x12, 0x84, 0xbe, 0xe3, 0x9e, 0xf3,
0xd3, 0xb2, 0x9b, 0x6f, 0xe5, 0x4c, 0x60, 0xe0, 0x21, 0x42, 0x49, 0x13, 0x0a, 0xf6, 0x4c, 0x9e,
0x16, 0xf6, 0x93, 0xdc, 0x84, 0x8a, 0x3d, 0x0b, 0x79, 0xf7, 0xea, 0x08, 0x2e, 0xdb, 0xb3, 0x10,
0xbb, 0xf6, 0x06, 0xd4, 0xe7, 0xf6, 0xd5, 0x8c, 0xba, 0x61, 0xb4, 0xcd, 0xea, 0x66, 0x4d, 0xc0,
0x70, 0xa3, 0x3d, 0x84, 0x35, 0x1d, 0x45, 0x36, 0x5e, 0x52, 0x8d, 0xaf, 0x6a, 0xd8, 0xa2, 0x0f,
0xef, 0xc0, 0x8a, 0x2c, 0xe3, 0xf3, 0xf1, 0xe0, 0xf6, 0xab, 0x9a, 0xcb, 0x02, 0x2c, 0x47, 0x79,
0x0f, 0x9a, 0x67, 0x8e, 0x6b, 0x4f, 0xad, 0xf1, 0x34, 0x7c, 0x66, 0x4d, 0xe8, 0x34, 0xb4, 0x71,
0x27, 0x96, 0xcc, 0x65, 0x84, 0x77, 0xa6, 0xe1, 0xb3, 0x3d, 0x06, 0x25, 0xdf, 0x81, 0xea, 0x19,
0xa5, 0x16, 0x4e, 0x56, 0xab, 0x12, 0x3b, 0xd0, 0x72, 0x85, 0xcc, 0xca, 0x99, 0x5c, 0xab, 0xef,
0x40, 0xd3, 0x5b, 0x84, 0xe7, 0x9e, 0xe3, 0x9e, 0x5b, 0xe3, 0x0b, 0xdb, 0xb5, 0x9c, 0x09, 0xee,
0xcd, 0xe2, 0x6e, 0xfe, 0x41, 0xce, 0x5c, 0x96, 0x79, 0x9d, 0x0b, 0xdb, 0xed, 0x4d, 0xc8, 0xdb,
0xb0, 0x32, 0xb5, 0x83, 0xd0, 0xba, 0xf0, 0xe6, 0xd6, 0x7c, 0x71, 0xfa, 0x94, 0x5e, 0xb5, 0x1a,
0x38, 0x11, 0x0d, 0x06, 0x3e, 0xf0, 0xe6, 0xc7, 0x08, 0x64, 0x5b, 0x0f, 0xfb, 0xc9, 0x3b, 0xc1,
0xb6, 0x74, 0xc3, 0xac, 0x32, 0x08, 0x6f, 0xf4, 0x4b, 0x58, 0xc3, 0xe5, 0x19, 0x2f, 0x82, 0xd0,
0x9b, 0x59, 0x3e, 0x1d, 0x7b, 0xfe, 0x24, 0x68, 0xd5, 0x70, 0xaf, 0x7d, 0x5b, 0x74, 0x56, 0x5b,
0xe3, 0x9d, 0x3d, 0x1a, 0x84, 0x1d, 0x44, 0x36, 0x39, 0x6e, 0xd7, 0x0d, 0xfd, 0x2b, 0x73, 0x75,
0x92, 0x84, 0x93, 0xef, 0x00, 0xb1, 0xa7, 0x53, 0xef, 0xb9, 0x15, 0xd0, 0xe9, 0x99, 0x25, 0x26,
0xb1, 0xb5, 0x7c, 0x37, 0x77, 0xaf, 0x62, 0x36, 0x31, 0x67, 0x48, 0xa7, 0x67, 0xc7, 0x1c, 0x4e,
0x3e, 0x02, 0x3c, 0xa4, 0xd6, 0x19, 0xb5, 0xc3, 0x85, 0x4f, 0x83, 0xd6, 0xca, 0xdd, 0xc2, 0xbd,
0xe5, 0x87, 0xab, 0x6a, 0xbe, 0x10, 0xbc, 0xeb, 0x84, 0x66, 0x9d, 0xe1, 0x89, 0x74, 0xb0, 0xbd,
0x07, 0x9b, 0xd9, 0x5d, 0x62, 0x9b, 0x8a, 0xcd, 0x0a, 0xdb, 0x8c, 0x45, 0x93, 0xfd, 0x64, 0x27,
0xfb, 0x99, 0x3d, 0x5d, 0x50, 0xdc, 0x85, 0x75, 0x93, 0x27, 0xbe, 0x97, 0xff, 0x24, 0x67, 0xfc,
0x6e, 0x0e, 0xea, 0x7c, 0x94, 0xc1, 0xdc, 0x73, 0x03, 0x4a, 0xde, 0x84, 0x86, 0xdc, 0x0d, 0xd4,
0xf7, 0x3d, 0x5f, 0x50, 0x4b, 0xb9, 0xf3, 0xba, 0x0c, 0x46, 0xbe, 0x0d, 0x4d, 0x89, 0x34, 0xf7,
0xa9, 0x33, 0xb3, 0xcf, 0x65, 0xd5, 0x72, 0x2b, 0x1d, 0x0b, 0x30, 0x79, 0x3f, 0xaa, 0xcf, 0xf7,
0x16, 0x21, 0xc5, 0xbd, 0x5e, 0x7b, 0x58, 0x17, 0xc3, 0x33, 0x19, 0x4c, 0xd5, 0x8e, 0xa9, 0x57,
0xd8, 0xe7, 0xc6, 0x6f, 0xe6, 0x80, 0xb0, 0x6e, 0x8f, 0x3c, 0x5e, 0x41, 0x44, 0x91, 0x62, 0x25,
0x73, 0xaf, 0x7c, 0x42, 0xf2, 0x2f, 0x3a, 0x21, 0x06, 0x94, 0x78, 0xdf, 0x8b, 0x19, 0x7d, 0xe7,
0x59, 0x3f, 0x2a, 0x56, 0x0a, 0xcd, 0xa2, 0xf1, 0x9f, 0x0b, 0xb0, 0xce, 0xf6, 0xa9, 0x4b, 0xa7,
0xed, 0xf1, 0x98, 0xce, 0xd5, 0xd9, 0xb9, 0x03, 0x35, 0xd7, 0x9b, 0x50, 0xb9, 0x63, 0x79, 0xc7,
0x80, 0x81, 0xb4, 0xed, 0x7a, 0x61, 0x3b, 0x2e, 0xef, 0x38, 0x9f, 0xcc, 0x2a, 0x42, 0xb0, 0xdb,
0x6f, 0xc3, 0xca, 0x9c, 0xba, 0x13, 0xfd, 0x88, 0x14, 0xf8, 0xae, 0x17, 0x60, 0x71, 0x3a, 0xee,
0x40, 0xed, 0x6c, 0xc1, 0xf1, 0x18, 0x61, 0x29, 0xe2, 0x1e, 0x00, 0x01, 0x6a, 0x73, 0xfa, 0x32,
0x5f, 0x04, 0x17, 0x98, 0x5b, 0xc2, 0xdc, 0x32, 0x4b, 0xb3, 0xac, 0xdb, 0x00, 0x93, 0x45, 0x10,
0x8a, 0x13, 0xb3, 0x84, 0x99, 0x55, 0x06, 0xe1, 0x27, 0xe6, 0xbb, 0xb0, 0x36, 0xb3, 0x2f, 0x2d,
0xdc, 0x3b, 0x96, 0xe3, 0x5a, 0x67, 0x53, 0x24, 0xea, 0x65, 0xc4, 0x6b, 0xce, 0xec, 0xcb, 0xcf,
0x59, 0x4e, 0xcf, 0xdd, 0x47, 0x38, 0x23, 0x2b, 0x63, 0x3e, 0x13, 0x96, 0x4f, 0x03, 0xea, 0x3f,
0xa3, 0x48, 0x09, 0x8a, 0xe6, 0xb2, 0x00, 0x9b, 0x1c, 0xca, 0x7a, 0x34, 0x63, 0xe3, 0x0e, 0xa7,
0x63, 0x7e, 0xec, 0xcd, 0xf2, 0xcc, 0x71, 0x0f, 0xc2, 0xe9, 0x98, 0xdd, 0x57, 0x8c, 0x8e, 0xcc,
0xa9, 0x6f, 0x3d, 0x7d, 0x8e, 0x67, 0xb8, 0x88, 0x74, 0xe3, 0x98, 0xfa, 0x4f, 0x9e, 0x33, 0x96,
0x62, 0x1c, 0x20, 0x21, 0xb2, 0xaf, 0x5a, 0x35, 0x3c, 0xe0, 0x95, 0x71, 0xc0, 0x48, 0x90, 0x7d,
0xc5, 0x0e, 0x21, 0xeb, 0xad, 0x8d, 0xab, 0x40, 0x27, 0x58, 0x7d, 0x80, 0x14, 0xb5, 0x81, 0x9d,
0x6d, 0x8b, 0x0c, 0xd6, 0x4e, 0xc0, 0x76, 0xbd, 0xec, 0xec, 0xd9, 0xd4, 0x3e, 0x0f, 0x90, 0xa4,
0x34, 0xcc, 0xba, 0x00, 0xee, 0x33, 0x98, 0xf1, 0x05, 0x6c, 0x24, 0xd6, 0x56, 0x9c, 0x19, 0xc6,
0x42, 0x20, 0x04, 0xd7, 0xb5, 0x62, 0x8a, 0x54, 0xd6, 0xa2, 0xe5, 0x33, 0x16, 0xcd, 0xf8, 0xad,
0x1c, 0xd4, 0x45, 0xcd, 0xc8, 0xec, 0x90, 0x1d, 0x20, 0x72, 0x15, 0xc3, 0x4b, 0x67, 0x62, 0x9d,
0x5e, 0x85, 0x34, 0xe0, 0x9b, 0xe6, 0xe0, 0x86, 0xd9, 0x14, 0x79, 0xa3, 0x4b, 0x67, 0xb2, 0xcb,
0x72, 0xc8, 0x7d, 0x68, 0xc6, 0xf0, 0x83, 0xd0, 0xe7, 0x3b, 0xfa, 0xe0, 0x86, 0xb9, 0xac, 0x61,
0x0f, 0x43, 0x9f, 0x9d, 0x11, 0xc6, 0x4a, 0x2d, 0x42, 0xcb, 0x71, 0x27, 0xf4, 0x12, 0xb7, 0x51,
0xc3, 0xac, 0x71, 0x58, 0x8f, 0x81, 0x76, 0x97, 0xa1, 0xae, 0x57, 0x67, 0x9c, 0x43, 0x45, 0xf2,
0x61, 0xc8, 0x88, 0x24, 0xba, 0x64, 0x56, 0x43, 0xd5, 0x93, 0x9b, 0x50, 0x89, 0xf7, 0xc0, 0x2c,
0x87, 0xaf, 0xdc, 0xb0, 0xf1, 0x7d, 0x68, 0x1e, 0xb2, 0xcd, 0xe3, 0xb2, 0xcd, 0x2a, 0xf8, 0xca,
0x4d, 0x58, 0xd2, 0x0e, 0x4d, 0xd5, 0x14, 0x29, 0x76, 0xe7, 0x5e, 0x78, 0x41, 0x28, 0x5a, 0xc1,
0xdf, 0xc6, 0xef, 0xe5, 0x80, 0x74, 0x83, 0xd0, 0x99, 0xd9, 0x21, 0xdd, 0xa7, 0x8a, 0x2c, 0x0c,
0xa0, 0xce, 0x6a, 0x1b, 0x79, 0x6d, 0xce, 0xe8, 0x71, 0x86, 0xe2, 0x5d, 0x71, 0x8c, 0xd3, 0x05,
0x76, 0x74, 0x6c, 0x4e, 0xe6, 0x63, 0x15, 0xb0, 0x53, 0x16, 0xda, 0xfe, 0x39, 0x0d, 0x91, 0x3d,
0x14, 0x7c, 0x0d, 0x70, 0x10, 0x63, 0x0c, 0xb7, 0x7f, 0x00, 0xab, 0xa9, 0x3a, 0x74, 0xba, 0x5c,
0xcd, 0xa0, 0xcb, 0x05, 0x9d, 0x2e, 0x5b, 0xb0, 0x16, 0xeb, 0x97, 0xd8, 0x69, 0x5b, 0x50, 0x66,
0x07, 0x82, 0x31, 0x07, 0x39, 0xce, 0xad, 0x9e, 0x51, 0xca, 0xd8, 0xeb, 0xf7, 0x60, 0xfd, 0x8c,
0x52, 0xdf, 0x0e, 0x31, 0x13, 0x4f, 0x0c, 0x5b, 0x21, 0x51, 0xf1, 0xaa, 0xc8, 0x1b, 0xda, 0xe1,
0x31, 0xf5, 0xd9, 0x4a, 0x19, 0xff, 0x2c, 0x0f, 0x2b, 0x8c, 0x82, 0x1e, 0xd9, 0xee, 0x95, 0x9c,
0xa7, 0xc3, 0xcc, 0x79, 0xba, 0xa7, 0x5d, 0x86, 0x1a, 0xf6, 0xd7, 0x9d, 0xa4, 0x42, 0x72, 0x92,
0xc8, 0x5d, 0xa8, 0xc7, 0xfa, 0x5a, 0xc2, 0xbe, 0x42, 0xa0, 0x3a, 0x19, 0x71, 0xa4, 0x4b, 0x1a,
0x47, 0xca, 0xce, 0x3d, 0x23, 0x18, 0xac, 0xd6, 0x40, 0x30, 0x20, 0x8c, 0x82, 0xb0, 0x3a, 0x03,
0xc6, 0xb6, 0x07, 0xec, 0x74, 0x59, 0x0b, 0x57, 0xb0, 0xee, 0x74, 0x82, 0x84, 0xa7, 0x62, 0x36,
0x31, 0xe3, 0x24, 0x82, 0xff, 0xc9, 0x97, 0xe9, 0x6d, 0x68, 0x46, 0xd3, 0x22, 0xd6, 0x88, 0x40,
0x91, 0x6d, 0x79, 0x51, 0x01, 0xfe, 0x36, 0xfe, 0x4f, 0x8e, 0x23, 0x76, 0x3c, 0x27, 0xe2, 0x9f,
0x09, 0x14, 0x19, 0xbf, 0x2e, 0x11, 0xd9, 0xef, 0x6b, 0xa5, 0x91, 0x6f, 0x60, 0x32, 0x6f, 0x42,
0x25, 0x60, 0x13, 0x63, 0x4f, 0xf9, 0x7c, 0x56, 0xcc, 0x32, 0x4b, 0xb7, 0xa7, 0xd3, 0x68, 0x9e,
0xcb, 0xd7, 0xce, 0x73, 0xe5, 0x55, 0xe6, 0xb9, 0x9a, 0x3d, 0xcf, 0xc6, 0x3b, 0xb0, 0xaa, 0x8d,
0xfe, 0x05, 0xf3, 0xd4, 0x07, 0x72, 0xe8, 0x04, 0xe1, 0x89, 0xcb, 0xaa, 0x50, 0x97, 0x67, 0xac,
0x23, 0xb9, 0x44, 0x47, 0x58, 0xa6, 0x7d, 0x29, 0x32, 0xf3, 0x22, 0xd3, 0xbe, 0xc4, 0x4c, 0xe3,
0x13, 0x58, 0x8b, 0xd5, 0x27, 0x9a, 0x7e, 0x03, 0x4a, 0x8b, 0xf0, 0xd2, 0x93, 0xa2, 0x45, 0x4d,
0xec, 0x70, 0x26, 0x18, 0x9b, 0x3c, 0xc7, 0xf8, 0x0c, 0x56, 0xfb, 0xf4, 0xb9, 0x20, 0x42, 0xb2,
0x23, 0x6f, 0x43, 0xf1, 0x25, 0xc2, 0x32, 0xe6, 0x1b, 0x3b, 0x40, 0xf4, 0xc2, 0xa2, 0x55, 0x4d,
0x76, 0xce, 0xc5, 0x64, 0x67, 0xe3, 0x6d, 0x20, 0x43, 0xe7, 0xdc, 0x3d, 0xa2, 0x41, 0x60, 0x9f,
0x2b, 0xb2, 0xd5, 0x84, 0xc2, 0x2c, 0x38, 0x17, 0x34, 0x96, 0xfd, 0x34, 0x3e, 0x80, 0xb5, 0x18,
0x9e, 0xa8, 0xf8, 0x35, 0xa8, 0x06, 0xce, 0xb9, 0x8b, 0x8c, 0xa1, 0xa8, 0x3a, 0x02, 0x18, 0xfb,
0xb0, 0xfe, 0x39, 0xf5, 0x9d, 0xb3, 0xab, 0x97, 0x55, 0x1f, 0xaf, 0x27, 0x9f, 0xac, 0xa7, 0x0b,
0x1b, 0x89, 0x7a, 0x44, 0xf3, 0xfc, 0x78, 0x88, 0x95, 0xac, 0x98, 0x3c, 0xa1, 0xd1, 0xed, 0xbc,
0x4e, 0xb7, 0x0d, 0x0f, 0x48, 0xc7, 0x73, 0x5d, 0x3a, 0x0e, 0x8f, 0x29, 0xf5, 0x65, 0x67, 0xde,
0xd5, 0xce, 0x42, 0xed, 0xe1, 0x96, 0x98, 0xd9, 0xe4, 0x65, 0x20, 0x0e, 0x09, 0x81, 0xe2, 0x9c,
0xfa, 0x33, 0xac, 0xb8, 0x62, 0xe2, 0x6f, 0x36, 0xb9, 0x4c, 0x5a, 0xf6, 0x16, 0x5c, 0x9a, 0x2a,
0x9a, 0x32, 0x69, 0x6c, 0xc0, 0x5a, 0xac, 0x41, 0xde, 0x6b, 0xe3, 0x01, 0x6c, 0xec, 0x39, 0xc1,
0x38, 0xdd, 0x95, 0x2d, 0x28, 0xcf, 0x17, 0xa7, 0x56, 0xfc, 0xc6, 0x79, 0x42, 0xaf, 0x8c, 0x16,
0x6c, 0x26, 0x4b, 0x88, 0xba, 0x7e, 0x2d, 0x07, 0xc5, 0x83, 0xd1, 0x61, 0x87, 0x6c, 0x43, 0xc5,
0x71, 0xc7, 0xde, 0x8c, 0xb1, 0x94, 0x7c, 0x36, 0x54, 0xfa, 0xda, 0xa3, 0x7d, 0x0b, 0xaa, 0xc8,
0x89, 0x4e, 0xbd, 0xf1, 0x53, 0xc1, 0xd4, 0x55, 0x18, 0xe0, 0xd0, 0x1b, 0x3f, 0x65, 0xc7, 0x8c,
0x5e, 0xce, 0x1d, 0x1f, 0xf5, 0x0c, 0x52, 0x8e, 0x2e, 0x72, 0x2e, 0x26, 0xca, 0x10, 0xe2, 0xf4,
0xaf, 0xe5, 0x81, 0x08, 0x3e, 0xa2, 0xe3, 0xb9, 0x41, 0xe8, 0xdb, 0x8e, 0x1b, 0x06, 0x71, 0x3e,
0x29, 0x97, 0xe0, 0x93, 0xee, 0x41, 0x13, 0x79, 0x13, 0xc1, 0xa3, 0xe1, 0xd5, 0x92, 0x8f, 0xf8,
0x34, 0xc1, 0xa4, 0xb1, 0x2b, 0xe6, 0x2d, 0x58, 0x8e, 0xd8, 0x43, 0xa5, 0xe4, 0x29, 0x9a, 0x75,
0xc5, 0x22, 0x8a, 0x8b, 0x88, 0x1d, 0x47, 0xc9, 0xf7, 0x28, 0x59, 0x96, 0x73, 0xa2, 0xab, 0x33,
0xfb, 0xf2, 0x98, 0x4a, 0x66, 0x14, 0xa5, 0x5a, 0x03, 0x1a, 0x92, 0xfd, 0xe3, 0x98, 0x9c, 0x2b,
0xad, 0x09, 0x1e, 0x10, 0x71, 0xb2, 0x99, 0xb9, 0xa5, 0x6c, 0x66, 0xce, 0xf8, 0x0f, 0x55, 0x28,
0x8b, 0x69, 0xe0, 0xac, 0x59, 0xe8, 0x3c, 0xa3, 0x11, 0x6b, 0xc6, 0x52, 0x8c, 0xe1, 0xf3, 0xe9,
0xcc, 0x0b, 0x15, 0x47, 0xce, 0x37, 0x69, 0x9d, 0x03, 0x05, 0x4f, 0xae, 0x71, 0x85, 0x5c, 0x37,
0x55, 0xe0, 0x48, 0x63, 0x9d, 0x57, 0xbb, 0x05, 0x65, 0xc9, 0xdc, 0x15, 0x95, 0xd0, 0xba, 0x34,
0xe6, 0xec, 0xf8, 0x36, 0x54, 0xc6, 0xf6, 0xdc, 0x1e, 0x3b, 0xe1, 0x95, 0xa0, 0xc8, 0x2a, 0xcd,
0x6a, 0x9f, 0x7a, 0x63, 0x7b, 0x6a, 0x9d, 0xda, 0x53, 0xdb, 0x1d, 0x53, 0xa1, 0xf4, 0xa9, 0x23,
0x70, 0x97, 0xc3, 0xc8, 0xb7, 0x60, 0x59, 0xf4, 0x53, 0x62, 0x71, 0xdd, 0x8f, 0xe8, 0xbd, 0x44,
0x63, 0xd2, 0x83, 0x37, 0x63, 0xeb, 0x72, 0x46, 0x39, 0x9f, 0x5d, 0x30, 0xab, 0x1c, 0xb2, 0x4f,
0x71, 0xb4, 0x22, 0xfb, 0x39, 0xdf, 0x41, 0x55, 0xde, 0x14, 0x07, 0x7e, 0xc1, 0x75, 0x35, 0x69,
0x66, 0xbb, 0xa0, 0x31, 0xdb, 0xef, 0xc2, 0xea, 0xc2, 0x0d, 0x68, 0x18, 0x4e, 0xe9, 0x44, 0xf5,
0xa5, 0x86, 0x48, 0x4d, 0x95, 0x21, 0xbb, 0xb3, 0x03, 0x6b, 0x5c, 0x5b, 0x15, 0xd8, 0xa1, 0x17,
0x5c, 0x38, 0x81, 0x15, 0x30, 0x11, 0x98, 0xeb, 0x33, 0x56, 0x31, 0x6b, 0x28, 0x72, 0x86, 0x5c,
0x06, 0xde, 0x4a, 0xe0, 0xfb, 0x74, 0x4c, 0x9d, 0x67, 0x74, 0x82, 0x8c, 0x78, 0xc1, 0xdc, 0x88,
0x95, 0x31, 0x45, 0x26, 0x4a, 0x55, 0x8b, 0x99, 0xb5, 0x98, 0x4f, 0x6c, 0xc6, 0x8d, 0x2e, 0x73,
0x69, 0xc7, 0x5d, 0xcc, 0x4e, 0x38, 0x84, 0x3c, 0x00, 0xc9, 0x6a, 0x8b, 0x3d, 0xb3, 0x12, 0x23,
0xf8, 0xec, 0xcc, 0x9a, 0x75, 0x81, 0xc1, 0x25, 0x81, 0x3b, 0xfa, 0x61, 0x69, 0xb2, 0x1d, 0x86,
0x52, 0x61, 0x74, 0x60, 0x5a, 0x50, 0x9e, 0xfb, 0xce, 0x33, 0x3b, 0xa4, 0xad, 0x55, 0x7e, 0x8b,
0x8a, 0x24, 0x23, 0x9f, 0x8e, 0xeb, 0x84, 0x8e, 0x1d, 0x7a, 0x7e, 0x8b, 0x60, 0x5e, 0x04, 0x20,
0xf7, 0x61, 0x15, 0xf7, 0x49, 0x10, 0xda, 0xe1, 0x22, 0x10, 0x62, 0xc6, 0x1a, 0x6e, 0x28, 0x14,
0x94, 0x86, 0x08, 0x47, 0x49, 0x83, 0x7c, 0x0c, 0x9b, 0x7c, 0x6b, 0xa4, 0x8e, 0xe6, 0x3a, 0x9b,
0x0e, 0xec, 0xd1, 0x1a, 0x62, 0x74, 0xe2, 0x67, 0xf4, 0x53, 0xd8, 0x12, 0xdb, 0x25, 0x55, 0x72,
0x43, 0x95, 0x5c, 0xe7, 0x28, 0x89, 0xa2, 0x3b, 0xb0, 0xca, 0xba, 0xe6, 0x8c, 0x2d, 0x51, 0x03,
0x3b, 0x15, 0x9b, 0x6c, 0x14, 0x58, 0x68, 0x85, 0x67, 0x9a, 0x98, 0xf7, 0x84, 0x5e, 0x91, 0xef,
0xc3, 0x0a, 0xdf, 0x3e, 0x28, 0x4b, 0xe3, 0xb5, 0xb8, 0x8d, 0xd7, 0xe2, 0x86, 0x98, 0xdc, 0x8e,
0xca, 0xc5, 0x9b, 0x71, 0x79, 0x1c, 0x4b, 0xb3, 0xa3, 0x31, 0x75, 0xce, 0x28, 0xa3, 0xd2, 0xad,
0x2d, 0xbe, 0xd9, 0x64, 0x9a, 0x9d, 0xda, 0xc5, 0x1c, 0x73, 0x5a, 0x9c, 0x54, 0xf2, 0x14, 0xee,
0xe3, 0xa9, 0x17, 0x50, 0xa9, 0xe7, 0x6c, 0xdd, 0x14, 0x07, 0x92, 0x01, 0xa5, 0xc0, 0xc0, 0xa4,
0x2e, 0x2e, 0xe1, 0x2a, 0x6d, 0xf4, 0x2d, 0xdc, 0x18, 0x0d, 0x2e, 0xe8, 0x4a, 0x8d, 0x34, 0x63,
0xa9, 0x2e, 0xec, 0xe7, 0x92, 0xa8, 0xbe, 0x86, 0xd4, 0x04, 0x18, 0x48, 0x28, 0x2f, 0xf7, 0x61,
0x55, 0xac, 0x42, 0x44, 0x4c, 0x5b, 0xb7, 0xf1, 0x82, 0xba, 0x29, 0xc7, 0x98, 0xa2, 0xb6, 0x66,
0x93, 0xaf, 0x8b, 0x46, 0x7f, 0x0f, 0x80, 0xc8, 0x45, 0xd1, 0x2a, 0x7a, 0xfd, 0x65, 0x15, 0xad,
0x8a, 0x65, 0x8a, 0x40, 0xc6, 0xef, 0xe4, 0x38, 0x3f, 0x23, 0xb0, 0x03, 0x4d, 0xbb, 0xc0, 0xe9,
0x9a, 0xe5, 0xb9, 0xd3, 0x2b, 0x41, 0xea, 0x80, 0x83, 0x06, 0xee, 0x14, 0x69, 0x8d, 0xe3, 0xea,
0x28, 0xfc, 0xea, 0xac, 0x4b, 0x20, 0x22, 0xdd, 0x81, 0xda, 0x7c, 0x71, 0x3a, 0x75, 0xc6, 0x1c,
0xa5, 0xc0, 0x6b, 0xe1, 0x20, 0x44, 0x78, 0x03, 0xea, 0x62, 0xaf, 0x73, 0x8c, 0x22, 0x62, 0xd4,
0x04, 0x0c, 0x51, 0xf0, 0x6a, 0xa6, 0x3e, 0x12, 0xbb, 0xba, 0x89, 0xbf, 0x8d, 0x5d, 0x58, 0x8f,
0x77, 0x5a, 0xf0, 0x0d, 0xf7, 0xa1, 0x22, 0x28, 0xa9, 0xd4, 0xbb, 0x2d, 0xc7, 0x67, 0xc3, 0x54,
0xf9, 0xc6, 0x7f, 0x2c, 0xc1, 0x9a, 0x9c, 0x23, 0xb6, 0xd8, 0xc3, 0xc5, 0x6c, 0x66, 0xfb, 0x19,
0x24, 0x3a, 0xf7, 0x62, 0x12, 0x9d, 0x4f, 0x91, 0xe8, 0xb8, 0xe2, 0x85, 0x53, 0xf8, 0xb8, 0xe2,
0x85, 0xed, 0x2e, 0x2e, 0x0b, 0xeb, 0xea, 0xfd, 0x86, 0x00, 0x8f, 0xb8, 0x19, 0x21, 0x75, 0xa1,
0x94, 0x32, 0x2e, 0x14, 0xfd, 0x3a, 0x58, 0x4a, 0x5c, 0x07, 0x6f, 0x00, 0xdf, 0xc6, 0x72, 0x3f,
0x96, 0xb9, 0x78, 0x8c, 0x30, 0xb1, 0x21, 0xdf, 0x81, 0x95, 0x24, 0x05, 0xe6, 0xa4, 0x7e, 0x39,
0x83, 0xfe, 0x3a, 0x33, 0x8a, 0x2c, 0x85, 0x86, 0x5c, 0x15, 0xf4, 0xd7, 0x99, 0xd1, 0x43, 0xcc,
0x91, 0xf8, 0x5d, 0x00, 0xde, 0x36, 0x1e, 0x63, 0xc0, 0x63, 0xfc, 0x76, 0x62, 0x67, 0x6a, 0xb3,
0xbe, 0xc3, 0x12, 0x0b, 0x9f, 0xe2, 0xb9, 0xae, 0x62, 0x49, 0x3c, 0xd2, 0x1f, 0xc3, 0xb2, 0x37,
0xa7, 0xae, 0x15, 0x51, 0xc1, 0x1a, 0x56, 0xd5, 0x14, 0x55, 0xf5, 0x24, 0xdc, 0x6c, 0x30, 0x3c,
0x95, 0x24, 0x9f, 0xf2, 0x49, 0xa6, 0x5a, 0xc9, 0xfa, 0x35, 0x25, 0x97, 0x11, 0x31, 0x2a, 0xfa,
0x01, 0xd4, 0x7c, 0x1a, 0x78, 0xd3, 0x05, 0xb7, 0x15, 0x34, 0x70, 0x1f, 0x49, 0xe5, 0xa9, 0xa9,
0x72, 0x4c, 0x1d, 0xcb, 0xf8, 0xf5, 0x1c, 0xd4, 0xb4, 0x31, 0x90, 0x0d, 0x58, 0xed, 0x0c, 0x06,
0xc7, 0x5d, 0xb3, 0x3d, 0xea, 0x7d, 0xde, 0xb5, 0x3a, 0x87, 0x83, 0x61, 0xb7, 0x79, 0x83, 0x81,
0x0f, 0x07, 0x9d, 0xf6, 0xa1, 0xb5, 0x3f, 0x30, 0x3b, 0x12, 0x9c, 0x23, 0x9b, 0x40, 0xcc, 0xee,
0xd1, 0x60, 0xd4, 0x8d, 0xc1, 0xf3, 0xa4, 0x09, 0xf5, 0x5d, 0xb3, 0xdb, 0xee, 0x1c, 0x08, 0x48,
0x81, 0xac, 0x43, 0x73, 0xff, 0xa4, 0xbf, 0xd7, 0xeb, 0x3f, 0xb6, 0x3a, 0xed, 0x7e, 0xa7, 0x7b,
0xd8, 0xdd, 0x6b, 0x16, 0x49, 0x03, 0xaa, 0xed, 0xdd, 0x76, 0x7f, 0x6f, 0xd0, 0xef, 0xee, 0x35,
0x4b, 0xc6, 0xff, 0xc8, 0x01, 0x44, 0x1d, 0x65, 0x74, 0x35, 0xea, 0xaa, 0x6e, 0x9b, 0xdb, 0x48,
0x0d, 0x8a, 0xd3, 0x55, 0x3f, 0x96, 0x26, 0x0f, 0xa1, 0xec, 0x2d, 0xc2, 0xb1, 0x37, 0xe3, 0x2c,
0xfc, 0xf2, 0xc3, 0x56, 0xaa, 0xdc, 0x80, 0xe7, 0x9b, 0x12, 0x31, 0x66, 0x7f, 0x2b, 0xbc, 0xcc,
0xfe, 0x16, 0x37, 0xf4, 0x71, 0xbe, 0x4e, 0x33, 0xf4, 0xdd, 0x06, 0x08, 0x9e, 0x53, 0x3a, 0x47,
0xd5, 0x91, 0x38, 0x05, 0x55, 0x84, 0x8c, 0x98, 0x84, 0xf7, 0x87, 0x39, 0xd8, 0xc0, 0xbd, 0x34,
0x49, 0x12, 0xb1, 0xbb, 0x50, 0x1b, 0x7b, 0xde, 0x9c, 0x32, 0x96, 0x56, 0xf1, 0x6b, 0x3a, 0x88,
0x11, 0x28, 0x4e, 0x90, 0xcf, 0x3c, 0x7f, 0x4c, 0x05, 0x0d, 0x03, 0x04, 0xed, 0x33, 0x08, 0x3b,
0x43, 0xe2, 0x10, 0x72, 0x0c, 0x4e, 0xc2, 0x6a, 0x1c, 0xc6, 0x51, 0x36, 0x61, 0xe9, 0xd4, 0xa7,
0xf6, 0xf8, 0x42, 0x50, 0x2f, 0x91, 0x22, 0xdf, 0x8e, 0x54, 0x68, 0x63, 0x76, 0x26, 0xa6, 0x94,
0x77, 0xbe, 0x62, 0xae, 0x08, 0x78, 0x47, 0x80, 0xd9, 0x3d, 0x6f, 0x9f, 0xda, 0xee, 0xc4, 0x73,
0xe9, 0x44, 0x48, 0xd2, 0x11, 0xc0, 0x38, 0x86, 0xcd, 0xe4, 0xf8, 0x04, 0xbd, 0xfb, 0x48, 0xa3,
0x77, 0x5c, 0xf0, 0xdc, 0xbe, 0xfe, 0x8c, 0x69, 0xb4, 0xef, 0x5f, 0x17, 0xa1, 0xc8, 0xc4, 0x8d,
0x6b, 0x25, 0x13, 0x5d, 0xb2, 0x2c, 0xa4, 0xac, 0xb2, 0xa8, 0xa9, 0xe3, 0x0c, 0x98, 0x58, 0x2c,
0x84, 0x20, 0xe3, 0xa5, 0xb2, 0x7d, 0x3a, 0x7e, 0x26, 0x38, 0x6f, 0x9e, 0x6d, 0xd2, 0xf1, 0x33,
0x54, 0x19, 0xd8, 0x21, 0x2f, 0xcb, 0xe9, 0x55, 0x39, 0xb0, 0x43, 0x2c, 0x29, 0xb2, 0xb0, 0x5c,
0x59, 0x65, 0x61, 0xa9, 0x16, 0x94, 0x1d, 0xf7, 0xd4, 0x5b, 0xb8, 0x52, 0xf1, 0x22, 0x93, 0x68,
0x04, 0x46, 0x4a, 0xca, 0xae, 0x76, 0x4e, 0x8d, 0x2a, 0x0c, 0x30, 0x62, 0x97, 0xfb, 0xfb, 0x50,
0x0d, 0xae, 0xdc, 0xb1, 0x4e, 0x83, 0xd6, 0xc5, 0xfc, 0xb0, 0xd1, 0xef, 0x0c, 0xaf, 0xdc, 0x31,
0xee, 0xf8, 0x4a, 0x20, 0x7e, 0x91, 0x47, 0x50, 0x51, 0x66, 0x13, 0x7e, 0x83, 0xdc, 0xd4, 0x4b,
0x48, 0x5b, 0x09, 0xd7, 0x4e, 0x29, 0x54, 0xf2, 0x1e, 0x2c, 0xa1, 0x6d, 0x23, 0x68, 0xd5, 0xb1,
0x90, 0x14, 0x37, 0x59, 0x37, 0xd0, 0xfe, 0x4a, 0x27, 0x68, 0xe7, 0x30, 0x05, 0x1a, 0x9b, 0xa6,
0xb3, 0xa9, 0x3d, 0xb7, 0xc6, 0x28, 0xbe, 0x35, 0xb8, 0x19, 0x93, 0x41, 0x3a, 0x28, 0xc1, 0xdd,
0x85, 0x3a, 0x9a, 0xa4, 0x10, 0xc7, 0xe5, 0x7c, 0x68, 0xc1, 0x04, 0x06, 0xdb, 0x9f, 0xda, 0xf3,
0x7e, 0xb0, 0xfd, 0x04, 0x1a, 0xb1, 0xce, 0xe8, 0x4a, 0xa6, 0x06, 0x57, 0x32, 0xbd, 0xa5, 0x2b,
0x99, 0xa2, 0xab, 0x50, 0x14, 0xd3, 0x95, 0x4e, 0x3f, 0x80, 0x8a, 0x9c, 0x0b, 0x46, 0x73, 0x4e,
0xfa, 0x4f, 0xfa, 0x83, 0x2f, 0xfa, 0xd6, 0xf0, 0xcb, 0x7e, 0xa7, 0x79, 0x83, 0xac, 0x40, 0xad,
0xdd, 0x41, 0x32, 0x86, 0x80, 0x1c, 0x43, 0x39, 0x6e, 0x0f, 0x87, 0x0a, 0x92, 0x37, 0xf6, 0xa1,
0x99, 0x1c, 0x2a, 0xdb, 0xd4, 0xa1, 0x84, 0x09, 0xd3, 0x51, 0x04, 0x60, 0x22, 0x3e, 0xb7, 0x06,
0x71, 0x31, 0x89, 0x27, 0x8c, 0x47, 0xd0, 0x64, 0x17, 0x3b, 0x9b, 0x6b, 0xdd, 0x28, 0x3c, 0x65,
0xac, 0xb7, 0x6e, 0x3e, 0xaa, 0x98, 0x35, 0x0e, 0xc3, 0xa6, 0x8c, 0x8f, 0x60, 0x55, 0x2b, 0x16,
0xa9, 0x64, 0x18, 0xb3, 0x90, 0x54, 0xc9, 0xa0, 0x98, 0xcd, 0x73, 0x8c, 0x2d, 0xd8, 0x60, 0xc9,
0xee, 0x33, 0xea, 0x86, 0xc3, 0xc5, 0x29, 0xf7, 0x25, 0x70, 0x3c, 0x97, 0x89, 0xdf, 0x55, 0x95,
0x73, 0xfd, 0x29, 0xd9, 0x11, 0xda, 0x1b, 0x4e, 0x16, 0xb7, 0xb5, 0x16, 0xb0, 0xe0, 0x0e, 0xfe,
0x8d, 0x69, 0x71, 0xaa, 0x0a, 0xc4, 0xa6, 0xf5, 0xb8, 0xdb, 0x35, 0xad, 0x41, 0xff, 0xb0, 0xd7,
0x67, 0x97, 0x03, 0x9b, 0x56, 0x04, 0xec, 0xef, 0x23, 0x24, 0x67, 0x34, 0x61, 0xf9, 0x31, 0x0d,
0x7b, 0xee, 0x99, 0x27, 0x26, 0xc3, 0xf8, 0x0b, 0x4b, 0xb0, 0xa2, 0x40, 0x91, 0x16, 0xe8, 0x19,
0xf5, 0x03, 0xc7, 0x73, 0x71, 0x9f, 0x54, 0x4d, 0x99, 0x64, 0xe4, 0x4d, 0x48, 0x69, 0xc8, 0x66,
0xac, 0x63, 0xae, 0x90, 0xeb, 0x90, 0xc7, 0x78, 0x07, 0x56, 0x9c, 0x09, 0x75, 0x43, 0x27, 0xbc,
0xb2, 0x62, 0x3a, 0xf1, 0x65, 0x09, 0x16, 0x7c, 0xc6, 0x3a, 0x94, 0xec, 0xa9, 0x63, 0x4b, 0x1f,
0x0d, 0x9e, 0x60, 0xd0, 0xb1, 0x37, 0xf5, 0x7c, 0x94, 0x5b, 0xaa, 0x26, 0x4f, 0x90, 0x07, 0xb0,
0xce, 0x64, 0x28, 0xdd, 0x50, 0x81, 0x14, 0x8a, 0xab, 0xe7, 0x89, 0xbb, 0x98, 0x1d, 0x47, 0xc6,
0x0a, 0x96, 0xc3, 0xb8, 0x0b, 0x56, 0x42, 0xb0, 0x93, 0xaa, 0x00, 0xd7, 0x4a, 0xac, 0xba, 0x8b,
0x59, 0x1b, 0x73, 0x14, 0xfe, 0x43, 0xd8, 0x60, 0xf8, 0x8a, 0x01, 0x55, 0x25, 0x56, 0xb0, 0x04,
0xab, 0xac, 0x27, 0xf2, 0x54, 0x99, 0x5b, 0x50, 0xe5, 0xbd, 0x62, 0x5b, 0xa2, 0xc4, 0x75, 0x16,
0xd8, 0x15, 0xea, 0x07, 0x29, 0x77, 0x0a, 0xae, 0x08, 0x48, 0xba, 0x53, 0x68, 0x0e, 0x19, 0x95,
0xa4, 0x43, 0xc6, 0x43, 0xd8, 0x38, 0x65, 0x7b, 0xf4, 0x82, 0xda, 0x13, 0xea, 0x5b, 0xd1, 0xce,
0xe7, 0xe2, 0xe6, 0x1a, 0xcb, 0x3c, 0xc0, 0x3c, 0x75, 0x50, 0x18, 0x27, 0xc8, 0x08, 0x0f, 0x9d,
0x58, 0xa1, 0x67, 0x21, 0x83, 0x28, 0xf4, 0x9d, 0x0d, 0x0e, 0x1e, 0x79, 0x1d, 0x06, 0x8c, 0xe3,
0x9d, 0xfb, 0xf6, 0xfc, 0x42, 0x08, 0x83, 0x0a, 0xef, 0x31, 0x03, 0x92, 0xd7, 0xa0, 0xcc, 0xce,
0x84, 0x4b, 0xb9, 0x75, 0x9a, 0x8b, 0x59, 0x12, 0x44, 0xde, 0x82, 0x25, 0x6c, 0x23, 0x68, 0x35,
0xf1, 0x40, 0xd4, 0xa3, 0xab, 0xc2, 0x71, 0x4d, 0x91, 0xc7, 0xd8, 0xed, 0x85, 0xef, 0x70, 0x3a,
0x56, 0x35, 0xf1, 0x37, 0xf9, 0xa1, 0x46, 0x14, 0xd7, 0xb0, 0xec, 0x5b, 0xa2, 0x6c, 0x62, 0x2b,
0x5e, 0x47, 0x1f, 0xbf, 0x51, 0x6a, 0xf5, 0xa3, 0x62, 0xa5, 0xd6, 0xac, 0x1b, 0x2d, 0xf4, 0x22,
0x31, 0xe9, 0xd8, 0x7b, 0x46, 0xfd, 0xab, 0xd8, 0x19, 0xc9, 0xc1, 0x56, 0x2a, 0x2b, 0x32, 0x46,
0xfb, 0x02, 0x6e, 0xcd, 0xbc, 0x89, 0x64, 0x0a, 0xea, 0x12, 0x78, 0xe4, 0x4d, 0x18, 0xf3, 0xb2,
0xaa, 0x90, 0xce, 0x1c, 0xd7, 0x09, 0x2e, 0xe8, 0x44, 0xf0, 0x06, 0x4d, 0x99, 0xb1, 0x2f, 0xe0,
0x8c, 0x03, 0x9f, 0xfb, 0xde, 0xb9, 0xba, 0x2a, 0x73, 0xa6, 0x4a, 0x1b, 0x1f, 0x43, 0x89, 0xaf,
0x20, 0x3b, 0x28, 0xb8, 0xbe, 0x39, 0x71, 0x50, 0x10, 0xda, 0x82, 0xb2, 0x4b, 0xc3, 0xe7, 0x9e,
0xff, 0x54, 0x5a, 0xb6, 0x44, 0xd2, 0xf8, 0x09, 0xaa, 0x34, 0x95, 0x3b, 0x10, 0x57, 0x3e, 0xb0,
0x2d, 0xcc, 0xb7, 0x60, 0x70, 0x61, 0x0b, 0x2d, 0x6b, 0x05, 0x01, 0xc3, 0x0b, 0x3b, 0xb5, 0x85,
0xf3, 0x69, 0x8f, 0xa0, 0xb7, 0x60, 0x59, 0x3a, 0x20, 0x05, 0xd6, 0x94, 0x9e, 0x85, 0xe2, 0x48,
0xd6, 0x85, 0xf7, 0x51, 0x70, 0x48, 0xcf, 0x42, 0xe3, 0x08, 0x56, 0xc5, 0xa1, 0x19, 0xcc, 0xa9,
0x6c, 0xfa, 0x93, 0x2c, 0xa9, 0xa8, 0xf6, 0x70, 0x2d, 0xce, 0x6e, 0x70, 0xc6, 0x2e, 0x26, 0x2a,
0x19, 0x3f, 0x8e, 0x34, 0x88, 0x8c, 0x19, 0x11, 0xf5, 0x09, 0xd9, 0x44, 0x1a, 0x04, 0xa5, 0x5d,
0x5d, 0x49, 0x40, 0xce, 0x84, 0xcd, 0x4e, 0xb0, 0x18, 0x8f, 0xa5, 0x63, 0x58, 0xc5, 0x94, 0x49,
0xe3, 0xdf, 0xe5, 0x60, 0x0d, 0x2b, 0x93, 0x52, 0x9d, 0xb8, 0x29, 0x7e, 0xea, 0x4e, 0xb2, 0xf5,
0xd1, 0x39, 0x40, 0x9e, 0xf8, 0xfa, 0x26, 0x92, 0x62, 0xca, 0x44, 0xf2, 0x6d, 0x68, 0x4e, 0xe8,
0xd4, 0xc1, 0xad, 0x24, 0x19, 0x2a, 0xce, 0xc1, 0xae, 0x48, 0xb8, 0xd0, 0x32, 0x18, 0x7f, 0x35,
0x07, 0xab, 0x9c, 0x5f, 0x43, 0xbd, 0x8d, 0x98, 0xa8, 0xcf, 0xa4, 0x82, 0x42, 0x90, 0x53, 0x31,
0xa6, 0x88, 0x8f, 0x41, 0x28, 0x47, 0x3e, 0xb8, 0x21, 0x14, 0x17, 0x02, 0x4a, 0xbe, 0x87, 0x92,
0xa8, 0x6b, 0x21, 0x50, 0xf0, 0xe1, 0x37, 0x33, 0x38, 0x44, 0x55, 0x9c, 0x89, 0xa9, 0x2e, 0x82,
0x76, 0x2b, 0xb0, 0xc4, 0xb5, 0x60, 0xc6, 0x3e, 0x34, 0x62, 0xcd, 0xc4, 0xec, 0x2c, 0x75, 0x6e,
0x67, 0x49, 0xd9, 0x62, 0xf3, 0x69, 0x5b, 0xec, 0x15, 0xac, 0x99, 0xd4, 0x9e, 0x5c, 0xed, 0x7b,
0xfe, 0x71, 0x70, 0x1a, 0xee, 0x73, 0x26, 0x98, 0xdd, 0x41, 0xca, 0xc1, 0x20, 0x66, 0xcc, 0x90,
0x76, 0x66, 0xa9, 0x86, 0xf9, 0x16, 0x2c, 0x47, 0x9e, 0x08, 0x9a, 0xda, 0xbb, 0xa1, 0x9c, 0x11,
0x90, 0x77, 0x22, 0x50, 0x9c, 0x07, 0xa7, 0xa1, 0x50, 0x7c, 0xe3, 0x6f, 0xe3, 0x7f, 0x17, 0x81,
0xb0, 0xdd, 0x9c, 0xd8, 0x30, 0x09, 0x1f, 0x8a, 0x7c, 0xca, 0x87, 0xe2, 0x01, 0x10, 0x0d, 0x41,
0xba, 0x76, 0x14, 0x94, 0x6b, 0x47, 0x33, 0xc2, 0x15, 0x9e, 0x1d, 0x0f, 0x60, 0x5d, 0x48, 0x14,
0xf1, 0xae, 0xf2, 0xad, 0x41, 0xb8, 0x68, 0x11, 0xeb, 0xaf, 0xf4, 0x9f, 0x90, 0x9a, 0xea, 0x02,
0xf7, 0x9f, 0x90, 0x0a, 0x25, 0x6d, 0x03, 0x2e, 0xbd, 0x74, 0x03, 0x96, 0x53, 0x1b, 0x50, 0x53,
0x2e, 0x56, 0xe2, 0xca, 0xc5, 0x94, 0x9a, 0x9c, 0xb3, 0xcf, 0x31, 0x35, 0xf9, 0x3d, 0x68, 0x4a,
0x45, 0x93, 0x52, 0x61, 0x72, 0xc7, 0x27, 0xa1, 0x44, 0xee, 0x48, 0x25, 0x66, 0xcc, 0xa2, 0x56,
0x7b, 0x15, 0xd3, 0x5e, 0x3d, 0xdb, 0xb4, 0x97, 0x56, 0xc9, 0x35, 0x32, 0x54, 0x72, 0x8f, 0x22,
0x87, 0x82, 0xe0, 0xc2, 0x99, 0x21, 0xe3, 0x13, 0x79, 0xf4, 0x89, 0x09, 0x1e, 0x5e, 0x38, 0x33,
0x53, 0x7a, 0xaf, 0xb0, 0x04, 0xe9, 0xc0, 0x1d, 0x31, 0x9e, 0x0c, 0xc7, 0x13, 0x3e, 0x0b, 0x2b,
0xc8, 0xa9, 0x6e, 0x73, 0xb4, 0xa3, 0x84, 0x0f, 0x4a, 0x62, 0x52, 0x58, 0x25, 0x5c, 0x0b, 0xdc,
0xd4, 0x27, 0xe5, 0xc8, 0xbe, 0xe4, 0x76, 0x83, 0xff, 0x95, 0x83, 0x26, 0xdb, 0x76, 0xb1, 0x13,
0xfd, 0x29, 0x20, 0xed, 0x79, 0xc5, 0x03, 0x5d, 0x63, 0xb8, 0xf2, 0x3c, 0x7f, 0x0c, 0x78, 0x40,
0x2d, 0x6f, 0x4e, 0x5d, 0x71, 0x9c, 0x5b, 0xf1, 0xe3, 0x1c, 0x91, 0xec, 0x83, 0x1b, 0x5c, 0xe0,
0x63, 0x10, 0xf2, 0x29, 0x54, 0xd9, 0x39, 0xc0, 0x4d, 0x29, 0xfc, 0x61, 0xb7, 0x95, 0x10, 0x9f,
0x3a, 0x92, 0xac, 0xe8, 0x5c, 0x24, 0xb3, 0x5c, 0x4e, 0x8a, 0x19, 0x2e, 0x27, 0x1a, 0xbd, 0x38,
0x00, 0x78, 0x42, 0xaf, 0x0e, 0xbd, 0x31, 0xaa, 0x53, 0x6e, 0x03, 0xb0, 0xa3, 0x73, 0x66, 0xcf,
0x1c, 0xa1, 0x48, 0x2c, 0x99, 0xd5, 0xa7, 0xf4, 0x6a, 0x1f, 0x01, 0x6c, 0xdf, 0xb0, 0xec, 0x88,
0x68, 0x94, 0xcc, 0xca, 0x53, 0x7a, 0xc5, 0x29, 0x86, 0x05, 0x8d, 0x27, 0xf4, 0x6a, 0x8f, 0x72,
0xc6, 0xdc, 0xf3, 0xd9, 0x9e, 0xf5, 0xed, 0xe7, 0x8c, 0x13, 0x8f, 0xb9, 0x8b, 0xd4, 0x7c, 0xfb,
0xf9, 0x13, 0x7a, 0x25, 0x5d, 0x57, 0xca, 0x2c, 0x7f, 0xea, 0x8d, 0x05, 0x2b, 0x21, 0x75, 0x37,
0x51, 0xa7, 0xcc, 0xa5, 0xa7, 0xf8, 0xdb, 0xf8, 0xe3, 0x1c, 0x34, 0x58, 0xff, 0xf1, 0x16, 0xc0,
0x1d, 0x22, 0xfc, 0x27, 0x73, 0x91, 0xff, 0xe4, 0x43, 0x41, 0x44, 0xf9, 0x95, 0x92, 0xbf, 0xfe,
0x4a, 0xc1, 0xb5, 0xe1, 0xf7, 0xc9, 0xfb, 0x50, 0xe5, 0x54, 0x80, 0x91, 0x95, 0x42, 0x6c, 0x81,
0x63, 0x03, 0x32, 0x2b, 0x88, 0xf6, 0x84, 0xbb, 0x6b, 0x69, 0x6a, 0x72, 0x3e, 0xc5, 0x55, 0x5f,
0x29, 0xc7, 0x33, 0x96, 0xa1, 0x74, 0x8d, 0xbb, 0x96, 0xae, 0x83, 0x5e, 0x4a, 0xea, 0xa0, 0x0d,
0x17, 0x2a, 0x6c, 0xa9, 0x71, 0xb0, 0x19, 0x95, 0xe6, 0xb2, 0x2a, 0x65, 0x8c, 0x87, 0xcd, 0xee,
0x20, 0x46, 0x57, 0xf3, 0x82, 0xf1, 0xb0, 0x03, 0xca, 0x2a, 0x62, 0x1d, 0x77, 0x3d, 0x0b, 0x95,
0xba, 0x42, 0xdd, 0x59, 0x31, 0xab, 0xae, 0x77, 0xcc, 0x01, 0xc6, 0x9f, 0xcb, 0x41, 0x4d, 0x3b,
0x8f, 0xa8, 0xe5, 0x57, 0xd3, 0xc9, 0x0f, 0x6f, 0xfc, 0x04, 0xc4, 0xd6, 0xe3, 0xe0, 0x86, 0xd9,
0x18, 0xc7, 0x16, 0x68, 0x47, 0x6c, 0x65, 0x2c, 0x99, 0x8f, 0xa9, 0x96, 0xe4, 0xb8, 0xe4, 0xfe,
0x65, 0xbf, 0x77, 0x97, 0xa0, 0xc8, 0x50, 0x8d, 0xcf, 0x60, 0x55, 0xeb, 0x06, 0x57, 0xbd, 0xbc,
0xea, 0x04, 0x18, 0xbf, 0xa8, 0x0a, 0xb3, 0x36, 0xb8, 0xd1, 0x5a, 0x7a, 0xc6, 0xd1, 0x09, 0x9f,
0x17, 0xe1, 0x81, 0xc7, 0x41, 0x38, 0x33, 0xaf, 0xea, 0xad, 0xf5, 0xab, 0x39, 0x58, 0xd3, 0xaa,
0xdf, 0x77, 0x5c, 0x7b, 0xea, 0xfc, 0x04, 0xf9, 0x8f, 0xc0, 0x39, 0x77, 0x13, 0x0d, 0x70, 0xd0,
0xd7, 0x69, 0x80, 0x5d, 0x13, 0xdc, 0xcf, 0x96, 0xfb, 0x6a, 0x8b, 0xab, 0x11, 0x10, 0x66, 0xda,
0xcf, 0x47, 0x97, 0xc6, 0x5f, 0xcb, 0xc3, 0xba, 0xe8, 0x02, 0xba, 0x43, 0x3b, 0x8c, 0xed, 0x3c,
0x0a, 0xce, 0xc9, 0xa7, 0xd0, 0x60, 0xd3, 0x67, 0xf9, 0xf4, 0xdc, 0x09, 0x42, 0x2a, 0xed, 0xe9,
0x19, 0x94, 0x96, 0x71, 0x1f, 0x0c, 0xd5, 0x14, 0x98, 0xe4, 0x33, 0xa8, 0x61, 0x51, 0xae, 0xfd,
0x12, 0x6b, 0xd5, 0x4a, 0x17, 0xe4, 0x6b, 0x71, 0x70, 0xc3, 0x84, 0x20, 0x5a, 0x99, 0xcf, 0xa0,
0x86, 0xcb, 0xfc, 0x0c, 0xe7, 0x3a, 0x41, 0xec, 0x52, 0x6b, 0xc1, 0x0a, 0xcf, 0xa3, 0x95, 0x69,
0x43, 0x83, 0x93, 0x3b, 0x31, 0x93, 0xc2, 0xcd, 0x72, 0x3b, 0x5d, 0x5c, 0xce, 0x35, 0xeb, 0xfc,
0x5c, 0x4b, 0xef, 0x56, 0xa1, 0x1c, 0xfa, 0xce, 0xf9, 0x39, 0xf5, 0x8d, 0x4d, 0x35, 0x35, 0x8c,
0x8e, 0xd3, 0x61, 0x48, 0xe7, 0x4c, 0x9e, 0x30, 0xfe, 0x65, 0x0e, 0x6a, 0x82, 0x32, 0xff, 0xd4,
0xa6, 0xfa, 0xed, 0x84, 0x9e, 0xb4, 0xaa, 0xa9, 0x45, 0xdf, 0x81, 0x95, 0x19, 0x13, 0x7e, 0x98,
0x70, 0x1e, 0xb3, 0xd3, 0x2f, 0x4b, 0xb0, 0xe0, 0xeb, 0x77, 0x60, 0x0d, 0xd9, 0xfc, 0xc0, 0x0a,
0x9d, 0xa9, 0x25, 0x33, 0xc5, 0x9b, 0x80, 0x55, 0x9e, 0x35, 0x72, 0xa6, 0x47, 0x22, 0x83, 0x71,
0xbb, 0x41, 0x68, 0x9f, 0x53, 0x41, 0x1d, 0x78, 0x82, 0x09, 0x54, 0x09, 0xb9, 0x5c, 0x0a, 0x54,
0xff, 0x77, 0x15, 0xb6, 0x52, 0x59, 0x42, 0xa0, 0x52, 0x86, 0xd9, 0xa9, 0x33, 0x3b, 0xf5, 0x94,
0x61, 0x20, 0xa7, 0x19, 0x66, 0x0f, 0x59, 0x8e, 0x34, 0x0c, 0x50, 0xd8, 0x90, 0x5b, 0x16, 0x35,
0xfb, 0x4a, 0x74, 0xcf, 0xa3, 0x60, 0xf9, 0x7e, 0xfc, 0x1a, 0x4c, 0x36, 0x27, 0xe1, 0x3a, 0x2f,
0xb7, 0x36, 0x4f, 0xc1, 0x02, 0xf2, 0xa7, 0xa1, 0xa5, 0x4e, 0x86, 0x90, 0x33, 0x34, 0x3d, 0x04,
0x6b, 0xe9, 0x3b, 0x2f, 0x69, 0x29, 0xa6, 0x72, 0x45, 0x66, 0x6f, 0x53, 0x1e, 0x2a, 0x5e, 0xa1,
0x6a, 0xeb, 0x19, 0xbc, 0x2e, 0xdb, 0x42, 0xb9, 0x21, 0xdd, 0x62, 0xf1, 0x95, 0xc6, 0x86, 0xea,
0xe4, 0x58, 0xb3, 0xe6, 0x2d, 0x51, 0xb1, 0xca, 0xd2, 0xdb, 0xbd, 0x80, 0xcd, 0xe7, 0xb6, 0x13,
0xca, 0x31, 0x6a, 0x6a, 0x90, 0x12, 0xb6, 0xf7, 0xf0, 0x25, 0xed, 0x7d, 0xc1, 0x0b, 0xc7, 0x24,
0xa9, 0xf5, 0xe7, 0x69, 0x60, 0xb0, 0xfd, 0x77, 0x0a, 0xb0, 0x1c, 0xaf, 0x85, 0x91, 0x1e, 0x71,
0x5d, 0x49, 0x06, 0x59, 0x70, 0xed, 0xc2, 0x68, 0xd5, 0xe7, 0x8c, 0x71, 0xda, 0x9c, 0x96, 0xcf,
0x30, 0xa7, 0xe9, 0x56, 0xac, 0xc2, 0xcb, 0x9c, 0x1a, 0x8a, 0xaf, 0xe4, 0xd4, 0x50, 0xca, 0x72,
0x6a, 0xf8, 0xe0, 0x5a, 0x2b, 0x38, 0xd7, 0x45, 0x67, 0x5a, 0xc0, 0x1f, 0x5d, 0x6f, 0x01, 0xe7,
0xec, 0xf6, 0x75, 0xd6, 0x6f, 0xcd, 0x76, 0x5f, 0xb9, 0xc6, 0xf6, 0xa4, 0x59, 0xf3, 0x33, 0xac,
0xdf, 0xd5, 0xaf, 0x61, 0xfd, 0xde, 0xfe, 0xe3, 0x1c, 0x90, 0xf4, 0xe9, 0x20, 0x8f, 0xb9, 0xa5,
0xd2, 0xa5, 0x53, 0x41, 0xb9, 0xbf, 0xfb, 0x6a, 0x27, 0x4c, 0x6e, 0x08, 0x59, 0x9a, 0xbc, 0x07,
0x6b, 0xfa, 0xcb, 0x25, 0x5d, 0xcd, 0xd0, 0x30, 0x89, 0x9e, 0x15, 0x29, 0xcc, 0x34, 0x0f, 0x92,
0xe2, 0x4b, 0x3d, 0x48, 0x4a, 0x2f, 0xf5, 0x20, 0x59, 0x8a, 0x7b, 0x90, 0x6c, 0xff, 0xdb, 0x1c,
0xac, 0x65, 0x6c, 0xe2, 0x6f, 0x6e, 0xcc, 0x6c, 0xef, 0xc5, 0xc8, 0x5a, 0x5e, 0xec, 0x3d, 0x9d,
0xa2, 0x1d, 0x4a, 0x25, 0x2b, 0x5b, 0x8a, 0x40, 0xdc, 0x54, 0xf7, 0x5f, 0x46, 0x5d, 0xa2, 0x12,
0xa6, 0x5e, 0x7c, 0xfb, 0xef, 0xe5, 0xa1, 0xa6, 0x65, 0xb2, 0x59, 0xe4, 0x5b, 0x56, 0xf3, 0x6c,
0xe4, 0xbc, 0x25, 0x2a, 0x49, 0xee, 0x80, 0xb0, 0x45, 0xf1, 0x7c, 0x7e, 0xb8, 0x04, 0x23, 0x89,
0x08, 0x3b, 0xb0, 0x26, 0xad, 0xc8, 0x34, 0x72, 0xc0, 0x16, 0x77, 0x8d, 0x70, 0x08, 0x10, 0x9d,
0x44, 0xfc, 0xf7, 0xa4, 0xfc, 0x1a, 0xad, 0x9d, 0x66, 0x95, 0x5b, 0x15, 0xae, 0x08, 0x62, 0x11,
0xd9, 0x3e, 0x7f, 0x1f, 0x36, 0x94, 0x2f, 0x42, 0xac, 0x04, 0xb7, 0xfd, 0x10, 0xe9, 0x73, 0xa0,
0x15, 0xf9, 0x21, 0xdc, 0x4e, 0xf4, 0x29, 0x51, 0x94, 0xbf, 0x14, 0xb8, 0x19, 0xeb, 0x9d, 0x5e,
0xc3, 0xf6, 0x9f, 0x81, 0x46, 0x8c, 0x50, 0x7e, 0x73, 0x4b, 0x9e, 0x54, 0x4c, 0xf1, 0x19, 0xd5,
0x15, 0x53, 0xdb, 0xff, 0xb3, 0x00, 0x24, 0x4d, 0xab, 0x7f, 0x96, 0x5d, 0x48, 0x6f, 0xcc, 0x42,
0xc6, 0xc6, 0xfc, 0xff, 0xc6, 0x3f, 0x44, 0xfa, 0x51, 0xcd, 0x15, 0x80, 0x1f, 0xce, 0xa6, 0xca,
0x90, 0xbd, 0xf8, 0x38, 0xe9, 0x30, 0x55, 0x89, 0x3d, 0xbe, 0xd3, 0x18, 0xa8, 0x84, 0xdf, 0xd4,
0x09, 0x2c, 0xd9, 0xee, 0xf8, 0xc2, 0xf3, 0x05, 0x1d, 0xfc, 0xb9, 0xaf, 0x7d, 0x7d, 0xee, 0xb4,
0xb1, 0x3c, 0x72, 0x6d, 0xa6, 0xa8, 0xcc, 0x78, 0x1f, 0x6a, 0x1a, 0x98, 0x54, 0xa1, 0x74, 0xd8,
0x3b, 0xda, 0x1d, 0x34, 0x6f, 0x90, 0x06, 0x54, 0xcd, 0x6e, 0x67, 0xf0, 0x79, 0xd7, 0xec, 0xee,
0x35, 0x73, 0xa4, 0x02, 0xc5, 0xc3, 0xc1, 0x70, 0xd4, 0xcc, 0x1b, 0xdb, 0xd0, 0x12, 0x35, 0xa6,
0x2d, 0x45, 0xbf, 0x59, 0x54, 0xfa, 0x4d, 0xcc, 0x14, 0x42, 0xfe, 0x07, 0x50, 0xd7, 0xd9, 0x1b,
0xb1, 0x23, 0x12, 0xde, 0x28, 0x4c, 0xbc, 0xf7, 0x34, 0x5a, 0xdd, 0x01, 0xee, 0x8b, 0x30, 0x51,
0xc5, 0xf2, 0x31, 0xbe, 0x35, 0xc3, 0xa8, 0x8b, 0xf2, 0x51, 0x6c, 0x1b, 0xfe, 0x29, 0x58, 0x8e,
0x5b, 0x45, 0x04, 0x45, 0xca, 0x12, 0x59, 0x59, 0xe9, 0x98, 0x99, 0x84, 0xfc, 0x10, 0x9a, 0x49,
0xab, 0x8a, 0x60, 0x9e, 0xaf, 0x29, 0xbf, 0xe2, 0xc4, 0x0d, 0x2d, 0xe4, 0x00, 0xd6, 0xb3, 0x18,
0x3c, 0xdc, 0x1f, 0xd7, 0xab, 0x39, 0x48, 0x9a, 0x89, 0x23, 0x9f, 0x08, 0xeb, 0x5a, 0x09, 0x97,
0xff, 0xad, 0x78, 0xfb, 0xda, 0x64, 0xef, 0xf0, 0x7f, 0x9a, 0x9d, 0xed, 0x19, 0x40, 0x04, 0x23,
0x4d, 0xa8, 0x0f, 0x8e, 0xbb, 0x7d, 0xab, 0x73, 0xd0, 0xee, 0xf7, 0xbb, 0x87, 0xcd, 0x1b, 0x84,
0xc0, 0x32, 0x3a, 0x54, 0xec, 0x29, 0x58, 0x8e, 0xc1, 0x84, 0x95, 0x53, 0xc2, 0xf2, 0x64, 0x1d,
0x9a, 0xbd, 0x7e, 0x02, 0x5a, 0x20, 0x2d, 0x58, 0x3f, 0xee, 0x72, 0x1f, 0x8c, 0x58, 0xbd, 0x45,
0x26, 0x34, 0x88, 0xe1, 0x32, 0xa1, 0xe1, 0x0b, 0x7b, 0x3a, 0xa5, 0xa1, 0x38, 0x07, 0x92, 0x97,
0xfe, 0xeb, 0x39, 0xd8, 0x48, 0x64, 0x44, 0xa6, 0x09, 0xce, 0x49, 0xc7, 0x79, 0xe8, 0x3a, 0x02,
0xe5, 0x69, 0x7a, 0x17, 0x56, 0x95, 0xa6, 0x2c, 0x71, 0x2b, 0x35, 0x55, 0x86, 0x44, 0x7e, 0x0f,
0xd6, 0x34, 0x85, 0x5b, 0x82, 0x56, 0x10, 0x2d, 0x4b, 0x14, 0x30, 0x76, 0x60, 0x49, 0x28, 0x25,
0x9b, 0x50, 0x90, 0x4f, 0x42, 0x8a, 0x26, 0xfb, 0x49, 0x08, 0x14, 0x67, 0x91, 0x2b, 0x2f, 0xfe,
0x36, 0xb6, 0xd4, 0xfb, 0xa5, 0xc4, 0x28, 0x7f, 0xb5, 0x08, 0x9b, 0xc9, 0x1c, 0xe5, 0x5a, 0x5e,
0x8e, 0x0d, 0x90, 0x1b, 0xa9, 0x04, 0x88, 0x7c, 0x98, 0xd8, 0x3d, 0xb1, 0x21, 0x22, 0xaa, 0xbe,
0x53, 0xe4, 0x40, 0x1f, 0x26, 0x79, 0x44, 0xbe, 0xe5, 0x1b, 0xd2, 0x9d, 0x1e, 0xc7, 0x94, 0x60,
0x19, 0x3f, 0x4c, 0xb1, 0x8c, 0xc5, 0xac, 0x42, 0x09, 0x0e, 0xb2, 0x0b, 0x5b, 0x91, 0xd3, 0x6a,
0xbc, 0xcd, 0x52, 0x56, 0xf1, 0x0d, 0x85, 0x7d, 0xa8, 0x37, 0xfe, 0x18, 0x5a, 0x51, 0x35, 0x89,
0x6e, 0x2c, 0x65, 0xd5, 0xb3, 0xa9, 0xd0, 0xcd, 0x58, 0x7f, 0x7e, 0x04, 0xdb, 0xb1, 0xf9, 0x8a,
0x77, 0xa9, 0x9c, 0x55, 0xd5, 0x96, 0x36, 0x81, 0xb1, 0x4e, 0x1d, 0xc2, 0xad, 0x58, 0x5d, 0x89,
0x7e, 0x55, 0xb2, 0x2a, 0x6b, 0x69, 0x95, 0xc5, 0x7a, 0x66, 0xfc, 0xf6, 0x12, 0x90, 0x1f, 0x2f,
0xa8, 0x7f, 0x85, 0x8f, 0x1a, 0x83, 0x97, 0xf9, 0xc2, 0x4b, 0xc5, 0x5b, 0xfe, 0x95, 0x1e, 0x2e,
0x67, 0x3d, 0x1c, 0x2e, 0xbe, 0xfc, 0xe1, 0x70, 0xe9, 0x65, 0x0f, 0x87, 0xdf, 0x84, 0x86, 0x73,
0xee, 0x7a, 0xec, 0x5e, 0x63, 0x62, 0x4d, 0xd0, 0x5a, 0xba, 0x5b, 0xb8, 0x57, 0x37, 0xeb, 0x02,
0xc8, 0x84, 0x9a, 0x80, 0x7c, 0x16, 0x21, 0xd1, 0xc9, 0x39, 0x3e, 0x9e, 0xd7, 0x6f, 0xb4, 0xee,
0xe4, 0x9c, 0x0a, 0x3d, 0x23, 0x6e, 0x58, 0x59, 0x98, 0xc1, 0x03, 0xf2, 0x16, 0x2c, 0x07, 0xde,
0x82, 0x49, 0x89, 0x72, 0x1a, 0xb8, 0x29, 0xb9, 0xce, 0xa1, 0xc7, 0xd2, 0xb1, 0x60, 0x6d, 0x11,
0x50, 0x6b, 0xe6, 0x04, 0x01, 0xe3, 0xb5, 0xc7, 0x9e, 0x1b, 0xfa, 0xde, 0x54, 0x58, 0x87, 0x57,
0x17, 0x01, 0x3d, 0xe2, 0x39, 0x1d, 0x9e, 0x41, 0x3e, 0x8c, 0xba, 0x34, 0xb7, 0x1d, 0x3f, 0x68,
0x01, 0x76, 0x49, 0x8e, 0x14, 0x85, 0x31, 0xdb, 0xf1, 0x55, 0x5f, 0x58, 0x22, 0x48, 0x3c, 0x68,
0xae, 0x25, 0x1f, 0x34, 0xff, 0x4a, 0xf6, 0x83, 0x66, 0xee, 0x10, 0xf7, 0x40, 0x54, 0x9d, 0x5e,
0xe2, 0xaf, 0xf5, 0xae, 0x39, 0xfd, 0x4e, 0x7b, 0xf9, 0xeb, 0xbc, 0xd3, 0x5e, 0xc9, 0x7a, 0xa7,
0xfd, 0x3e, 0xd4, 0xf0, 0x05, 0xad, 0x75, 0x81, 0x6e, 0xb1, 0xdc, 0xda, 0xdd, 0xd4, 0x9f, 0xd8,
0x1e, 0x38, 0x6e, 0x68, 0x82, 0x2f, 0x7f, 0x06, 0xe9, 0x27, 0xd3, 0xab, 0x3f, 0xc3, 0x27, 0xd3,
0xe2, 0xa5, 0xef, 0x0e, 0x54, 0xe4, 0x3a, 0x31, 0x62, 0x7b, 0xe6, 0x7b, 0x33, 0x69, 0x61, 0x63,
0xbf, 0xc9, 0x32, 0xe4, 0x43, 0x4f, 0x14, 0xce, 0x87, 0x9e, 0xf1, 0x4b, 0x50, 0xd3, 0xb6, 0x1a,
0x79, 0x83, 0xab, 0xa9, 0x99, 0xa0, 0x2d, 0x04, 0x05, 0x3e, 0x8b, 0x55, 0x01, 0xed, 0x4d, 0xd8,
0xe5, 0x31, 0x71, 0x7c, 0x8a, 0xc1, 0x0d, 0x2c, 0x9f, 0x3e, 0xa3, 0x7e, 0x20, 0x2d, 0x9e, 0x4d,
0x95, 0x61, 0x72, 0xb8, 0xf1, 0xcb, 0xb0, 0x16, 0x5b, 0x5b, 0x41, 0xbe, 0xdf, 0x82, 0x25, 0x9c,
0x37, 0xe9, 0x56, 0x13, 0x7f, 0xba, 0x2c, 0xf2, 0x30, 0x90, 0x03, 0x37, 0xd6, 0x5a, 0x73, 0xdf,
0x3b, 0xc5, 0x46, 0x72, 0x66, 0x4d, 0xc0, 0x8e, 0x7d, 0xef, 0xd4, 0xf8, 0x83, 0x02, 0x14, 0x0e,
0xbc, 0xb9, 0xee, 0x4a, 0x9b, 0x4b, 0xb9, 0xd2, 0x0a, 0xed, 0x81, 0xa5, 0xb4, 0x03, 0x42, 0x00,
0x43, 0x33, 0xa5, 0xd4, 0x10, 0xdc, 0x83, 0x65, 0x46, 0x27, 0x42, 0xcf, 0x3a, 0xf3, 0xfc, 0xe7,
0xb6, 0xcf, 0xa5, 0x1b, 0x7e, 0x5b, 0xd4, 0xed, 0x59, 0x38, 0xf2, 0xf6, 0x39, 0x9c, 0xac, 0x43,
0x41, 0xc9, 0xa2, 0x98, 0xcd, 0x92, 0x64, 0x13, 0x96, 0xf0, 0xe1, 0xcb, 0x95, 0x70, 0x0b, 0x11,
0x29, 0xf2, 0x5d, 0x58, 0x8b, 0xd7, 0xcb, 0x49, 0x91, 0x60, 0x74, 0xf5, 0x8a, 0x91, 0x26, 0xdd,
0x04, 0x46, 0x47, 0x38, 0x8e, 0xf0, 0x5f, 0x3b, 0xa3, 0x14, 0xb3, 0x34, 0xa2, 0x57, 0x89, 0x11,
0xbd, 0x3b, 0x50, 0x0b, 0xa7, 0xcf, 0xac, 0xb9, 0x7d, 0x35, 0xf5, 0x6c, 0xf9, 0xda, 0x0d, 0xc2,
0xe9, 0xb3, 0x63, 0x0e, 0x21, 0xef, 0x01, 0xcc, 0xe6, 0x73, 0x71, 0xf6, 0xd0, 0xf4, 0x16, 0x6d,
0xe5, 0xa3, 0xe3, 0x63, 0xbe, 0xe5, 0xcc, 0xea, 0x6c, 0x3e, 0xe7, 0x3f, 0xc9, 0x1e, 0x2c, 0x67,
0x06, 0x20, 0xb8, 0x2d, 0x1f, 0x28, 0x78, 0xf3, 0x9d, 0x8c, 0xc3, 0xd9, 0x18, 0xeb, 0xb0, 0xed,
0x1f, 0x02, 0xf9, 0x13, 0x86, 0x01, 0x18, 0x41, 0x55, 0xf5, 0x4f, 0x7f, 0x45, 0x8f, 0x6f, 0xb2,
0x6a, 0xb1, 0x57, 0xf4, 0xed, 0xc9, 0xc4, 0x67, 0x74, 0x91, 0x73, 0x3f, 0x8a, 0xe4, 0x83, 0xc6,
0xfe, 0x88, 0xa7, 0x3d, 0xc6, 0x7f, 0xc9, 0x41, 0x89, 0x3f, 0xe9, 0x7f, 0x1b, 0x56, 0x38, 0xbe,
0x72, 0x4b, 0x16, 0xce, 0x24, 0x9c, 0x89, 0x1a, 0x09, 0x8f, 0x64, 0x76, 0x2c, 0xb4, 0x30, 0x27,
0x11, 0x1b, 0xa1, 0x85, 0x3a, 0xb9, 0x03, 0x55, 0xd5, 0xb4, 0xb6, 0x75, 0x2a, 0xb2, 0x65, 0xf2,
0x3a, 0x14, 0x2f, 0xbc, 0xb9, 0x54, 0xe3, 0x41, 0x34, 0x93, 0x26, 0xc2, 0xa3, 0xbe, 0xb0, 0x36,
0xa2, 0x27, 0x47, 0x05, 0xd1, 0x17, 0xd6, 0x08, 0x6e, 0x83, 0xf4, 0x18, 0x97, 0x32, 0xc6, 0x78,
0x02, 0x2b, 0x8c, 0x0e, 0x68, 0x1e, 0x2d, 0xd7, 0x5f, 0x9a, 0xdf, 0x66, 0xec, 0xfa, 0x78, 0xba,
0x98, 0x50, 0x5d, 0x91, 0x8a, 0x3e, 0xa6, 0x02, 0x2e, 0xc5, 0x24, 0xe3, 0xb7, 0x73, 0x9c, 0xbe,
0xb0, 0x7a, 0xc9, 0x3d, 0x28, 0xba, 0xd2, 0xfb, 0x25, 0x62, 0xca, 0xd5, 0xe3, 0x38, 0x86, 0x67,
0x22, 0x06, 0x5b, 0x3a, 0xf4, 0x19, 0xd1, 0x6b, 0x6f, 0x98, 0x35, 0x77, 0x31, 0x53, 0x7a, 0xc8,
0x6f, 0xc9, 0x61, 0x25, 0x74, 0x78, 0x7c, 0xf4, 0xea, 0x98, 0xee, 0x68, 0xce, 0xaa, 0xc5, 0xd8,
0x8d, 0x29, 0x59, 0xfa, 0xc9, 0x39, 0xd5, 0x9c, 0x54, 0x7f, 0x37, 0x0f, 0x8d, 0x58, 0x8f, 0xd0,
0x5b, 0x97, 0x5d, 0x00, 0xdc, 0xce, 0x28, 0xd6, 0x1b, 0x9d, 0x22, 0x85, 0xd4, 0xa5, 0xcd, 0x53,
0x3e, 0x36, 0x4f, 0xca, 0x7d, 0xad, 0xa0, 0xbb, 0xaf, 0x3d, 0x80, 0x6a, 0x14, 0xde, 0x26, 0xde,
0x25, 0xd6, 0x9e, 0x7c, 0x22, 0x18, 0x21, 0x45, 0x0e, 0x6f, 0x25, 0xdd, 0xe1, 0xed, 0xfb, 0x9a,
0x7f, 0xd4, 0x12, 0x56, 0x63, 0x64, 0xcd, 0xe8, 0xcf, 0xc4, 0x3b, 0xca, 0xf8, 0x0c, 0x6a, 0x5a,
0xe7, 0x75, 0x1f, 0xa3, 0x5c, 0xcc, 0xc7, 0x48, 0x3d, 0x16, 0xce, 0x47, 0x8f, 0x85, 0x8d, 0x3f,
0x9f, 0x87, 0x06, 0x3b, 0x5f, 0x8e, 0x7b, 0x7e, 0xec, 0x4d, 0x9d, 0x31, 0xda, 0x1d, 0xd5, 0x09,
0x13, 0x8c, 0x96, 0x3c, 0x67, 0xe2, 0x88, 0x71, 0x3e, 0x4b, 0x8f, 0xb9, 0xc0, 0x89, 0xb4, 0x8a,
0xb9, 0x60, 0x40, 0x83, 0x11, 0x46, 0xb4, 0x20, 0x46, 0x41, 0x72, 0xcc, 0xda, 0x19, 0xa5, 0xbb,
0x76, 0xc0, 0x29, 0xe4, 0x77, 0x61, 0x8d, 0xe1, 0xe0, 0x73, 0xf3, 0x99, 0x33, 0x9d, 0x3a, 0xd1,
0x1b, 0xbf, 0x82, 0xd9, 0x3c, 0xa3, 0xd4, 0xb4, 0x43, 0x7a, 0xc4, 0x32, 0x44, 0x4c, 0x9d, 0xca,
0xc4, 0x09, 0xec, 0xd3, 0xc8, 0xa7, 0x5a, 0xa5, 0xd1, 0xaf, 0x41, 0xd8, 0xe5, 0xa3, 0x43, 0x56,
0x34, 0x6b, 0x33, 0x6e, 0x95, 0xc7, 0xf2, 0x89, 0x9d, 0x54, 0x4e, 0xee, 0x24, 0xe3, 0x9f, 0xe6,
0xa1, 0xa6, 0x6d, 0xcb, 0x57, 0xb9, 0x5d, 0x6f, 0xa7, 0xec, 0xc4, 0x55, 0xdd, 0x24, 0xfc, 0x66,
0xbc, 0xc9, 0x82, 0x7a, 0x08, 0xa6, 0x6f, 0xe0, 0x5b, 0x50, 0x65, 0xa7, 0xee, 0x7d, 0xd4, 0xa7,
0x8b, 0x98, 0x56, 0x08, 0x38, 0x5e, 0x9c, 0xca, 0xcc, 0x87, 0x98, 0x59, 0x8a, 0x32, 0x1f, 0xb2,
0xcc, 0x17, 0x3d, 0x04, 0xf9, 0x18, 0xea, 0xa2, 0x56, 0x5c, 0x53, 0x21, 0x16, 0xac, 0x6b, 0x37,
0xb7, 0x5a, 0x6f, 0xb3, 0xc6, 0x9b, 0xe3, 0x8b, 0x2f, 0x0a, 0x3e, 0x94, 0x05, 0x2b, 0x2f, 0x2b,
0xf8, 0x90, 0x27, 0x8c, 0x7d, 0xf5, 0xb6, 0x06, 0x3d, 0x13, 0x25, 0x1d, 0x7b, 0x0f, 0xd6, 0x24,
0xb9, 0x5a, 0xb8, 0xb6, 0xeb, 0x7a, 0x0b, 0x77, 0x4c, 0xe5, 0x2b, 0x5f, 0x22, 0xb2, 0x4e, 0xa2,
0x1c, 0x63, 0xa2, 0xc2, 0x58, 0x70, 0x0f, 0xc7, 0xfb, 0x50, 0xe2, 0x7c, 0x39, 0x67, 0x3e, 0xb2,
0x09, 0x17, 0x47, 0x21, 0xf7, 0xa0, 0xc4, 0xd9, 0xf3, 0xfc, 0xb5, 0xc4, 0x86, 0x23, 0x18, 0x6d,
0x20, 0xac, 0xe0, 0x11, 0x0d, 0x7d, 0x67, 0x1c, 0x44, 0x0f, 0x88, 0x4b, 0xe1, 0xd5, 0x5c, 0xb4,
0x15, 0xa9, 0xe1, 0x23, 0x4c, 0x54, 0x38, 0x70, 0x1c, 0x76, 0x31, 0xad, 0xc5, 0xea, 0x10, 0xec,
0xd2, 0x14, 0x36, 0x4f, 0x69, 0xf8, 0x9c, 0x52, 0xd7, 0x65, 0xcc, 0xd0, 0x98, 0xba, 0xa1, 0x6f,
0x4f, 0xd9, 0x22, 0xf1, 0x11, 0x3c, 0x4a, 0xd5, 0x1a, 0x29, 0xb4, 0x76, 0xa3, 0x82, 0x1d, 0x55,
0x8e, 0xd3, 0x8e, 0x8d, 0xd3, 0xac, 0xbc, 0xed, 0x5f, 0x84, 0xed, 0xeb, 0x0b, 0x65, 0x84, 0x21,
0xb8, 0x17, 0xa7, 0x2a, 0xca, 0xa8, 0x3b, 0xf5, 0xec, 0x90, 0xf7, 0x46, 0xa7, 0x2c, 0x7d, 0xa8,
0x69, 0x39, 0xd1, 0xdd, 0x9f, 0x43, 0xe6, 0x8e, 0x27, 0xd8, 0x8d, 0xe4, 0x7a, 0xfe, 0x0c, 0x8d,
0xa8, 0x13, 0x2b, 0xaa, 0x3d, 0x67, 0xae, 0x44, 0x70, 0xf4, 0xa9, 0x31, 0x76, 0x60, 0x05, 0x39,
0x7b, 0xed, 0xa2, 0x7b, 0x11, 0x33, 0x68, 0xac, 0x03, 0xe9, 0x73, 0xda, 0xa5, 0x7b, 0x7b, 0xfe,
0xfb, 0x02, 0xd4, 0x34, 0x30, 0xbb, 0x8d, 0xd0, 0x45, 0xd6, 0x9a, 0x38, 0xf6, 0x8c, 0x4a, 0x8b,
0x75, 0xc3, 0x6c, 0x20, 0x74, 0x4f, 0x00, 0xd9, 0x5d, 0x6c, 0x3f, 0x3b, 0xb7, 0xbc, 0x45, 0x68,
0x4d, 0xe8, 0xb9, 0x4f, 0x65, 0x2f, 0xeb, 0xf6, 0xb3, 0xf3, 0xc1, 0x22, 0xdc, 0x43, 0x18, 0xc3,
0x62, 0xb4, 0x44, 0xc3, 0x12, 0x1e, 0x93, 0x33, 0xfb, 0x32, 0xc2, 0x12, 0xae, 0xc5, 0x7c, 0x67,
0x16, 0x95, 0x6b, 0x31, 0x97, 0x16, 0x93, 0x17, 0x68, 0x29, 0x7d, 0x81, 0x7e, 0x08, 0x9b, 0xfc,
0x02, 0x15, 0xa4, 0xd9, 0x4a, 0x9c, 0xe4, 0x75, 0xcc, 0x15, 0x83, 0xd4, 0xd8, 0xde, 0x26, 0x1b,
0x81, 0x24, 0x4b, 0x81, 0xf3, 0x13, 0x4e, 0xc8, 0x72, 0x26, 0x1b, 0x99, 0xa8, 0x7c, 0xe8, 0xfc,
0x84, 0x32, 0x4c, 0xf4, 0xcd, 0xd2, 0x31, 0xc5, 0x33, 0xaf, 0x99, 0xe3, 0x26, 0x31, 0xed, 0xcb,
0x38, 0x66, 0x55, 0x60, 0xda, 0x97, 0x3a, 0xe6, 0x23, 0xd8, 0x9a, 0xd1, 0x89, 0x63, 0xc7, 0xab,
0xb5, 0x22, 0xc6, 0x6d, 0x9d, 0x67, 0x6b, 0x65, 0x86, 0x5c, 0x70, 0x67, 0xb3, 0xf1, 0x13, 0x6f,
0x76, 0xea, 0x70, 0x9e, 0x85, 0x7b, 0x8b, 0x15, 0xcd, 0x65, 0x77, 0x31, 0xfb, 0x05, 0x04, 0xb3,
0x22, 0x81, 0xd1, 0x80, 0xda, 0x30, 0xf4, 0xe6, 0x72, 0x99, 0x97, 0xa1, 0xce, 0x93, 0xe2, 0x81,
0xfc, 0x2d, 0xb8, 0x89, 0x24, 0x61, 0xe4, 0xcd, 0xbd, 0xa9, 0x77, 0x7e, 0x15, 0x53, 0xca, 0xfe,
0xab, 0x1c, 0xac, 0xc5, 0x72, 0x05, 0x79, 0xfd, 0x90, 0xd3, 0x33, 0xf5, 0xbc, 0x37, 0x17, 0x7b,
0xdb, 0xc5, 0xd6, 0x8b, 0x23, 0x72, 0x62, 0x26, 0x9f, 0xfc, 0xb6, 0xa3, 0xb8, 0x43, 0xb2, 0x20,
0x27, 0x29, 0xad, 0x34, 0x49, 0x11, 0xe5, 0x65, 0x44, 0x22, 0x59, 0xc5, 0xcf, 0x89, 0xa7, 0x78,
0x13, 0x31, 0xe4, 0x42, 0xfc, 0xb1, 0x8e, 0xae, 0xc0, 0x95, 0x3d, 0x88, 0xb4, 0xba, 0x81, 0xf1,
0x77, 0x73, 0x00, 0x51, 0xef, 0xf0, 0xb9, 0x90, 0xe2, 0x5b, 0x72, 0xe8, 0xa8, 0xad, 0xf1, 0x28,
0x6f, 0x40, 0x5d, 0xf9, 0xf4, 0x47, 0x9c, 0x50, 0x4d, 0xc2, 0x18, 0x3b, 0xf4, 0x0e, 0xac, 0x9c,
0x4f, 0xbd, 0x53, 0xe4, 0x58, 0x05, 0xdf, 0xc2, 0x5d, 0x42, 0x96, 0x39, 0x58, 0x72, 0x23, 0x11,
0xdf, 0x54, 0xcc, 0x74, 0xfb, 0xd7, 0xb9, 0x20, 0xe3, 0x2f, 0xe7, 0x95, 0xe3, 0x70, 0x34, 0x13,
0x2f, 0x16, 0xef, 0x7e, 0x1a, 0xd7, 0xaa, 0x17, 0xd9, 0x8a, 0x3f, 0x83, 0x65, 0x9f, 0x5f, 0x4a,
0xf2, 0xc6, 0x2a, 0xbe, 0xe0, 0xc6, 0x6a, 0xf8, 0x31, 0x4e, 0xe7, 0xdb, 0xd0, 0xb4, 0x27, 0xcf,
0xa8, 0x1f, 0x3a, 0x68, 0x7a, 0x41, 0xfe, 0x58, 0xb8, 0xea, 0x6a, 0x70, 0x64, 0x44, 0xdf, 0x81,
0x15, 0x11, 0xb4, 0x41, 0x61, 0x8a, 0x00, 0x77, 0x11, 0x98, 0x21, 0x1a, 0xff, 0x50, 0x7a, 0x2a,
0xc7, 0x57, 0xf7, 0xc5, 0xb3, 0xa2, 0x8f, 0x30, 0x9f, 0xb6, 0x86, 0x8b, 0x8d, 0x24, 0x2c, 0x3a,
0x82, 0x1e, 0x71, 0xa0, 0xb0, 0xe7, 0xc4, 0xa7, 0xb5, 0xf8, 0x2a, 0xd3, 0x6a, 0xfc, 0x9b, 0x1c,
0x94, 0x0f, 0xbc, 0xf9, 0x81, 0xc3, 0xdf, 0xbb, 0xe0, 0x31, 0x51, 0x06, 0xc7, 0x25, 0x96, 0x44,
0x3f, 0xb0, 0x17, 0x3c, 0x7b, 0xcd, 0x64, 0xf3, 0x1a, 0x71, 0x36, 0xef, 0xfb, 0x70, 0x0b, 0xed,
0xb9, 0xbe, 0x37, 0xf7, 0x7c, 0x76, 0x54, 0xed, 0x29, 0x67, 0xf7, 0x3c, 0x37, 0xbc, 0x90, 0xb4,
0xf3, 0xe6, 0x19, 0xa5, 0xc7, 0x1a, 0xc6, 0x91, 0x42, 0xc0, 0x27, 0xef, 0xd3, 0xf0, 0x99, 0xc5,
0x25, 0x74, 0xc1, 0x8f, 0x72, 0x8a, 0xba, 0xc2, 0x32, 0xba, 0x08, 0x47, 0x8e, 0xd4, 0xf8, 0x04,
0xaa, 0x4a, 0xd9, 0x43, 0xde, 0x85, 0xea, 0x85, 0x37, 0x17, 0x1a, 0xa1, 0x5c, 0xec, 0x69, 0xb0,
0x18, 0xb5, 0x59, 0xb9, 0xe0, 0x3f, 0x02, 0xe3, 0x0f, 0xca, 0x50, 0xee, 0xb9, 0xcf, 0x3c, 0x67,
0x8c, 0xbe, 0xce, 0x33, 0x3a, 0xf3, 0x64, 0x4c, 0x19, 0xf6, 0x1b, 0x5d, 0xf5, 0xa2, 0x30, 0x75,
0x05, 0xe1, 0xaa, 0xa7, 0x02, 0xd4, 0x6d, 0xc0, 0x92, 0xaf, 0xc7, 0x99, 0x2b, 0xf9, 0xf8, 0x42,
0x44, 0xdd, 0x97, 0x25, 0x2d, 0xe6, 0x0f, 0xab, 0x8b, 0xbb, 0xa1, 0xe2, 0x94, 0xf1, 0x67, 0xeb,
0x55, 0x84, 0xe0, 0x84, 0xbd, 0x06, 0x65, 0xa1, 0xf7, 0xe5, 0xef, 0x02, 0xb9, 0xb6, 0x5c, 0x80,
0x70, 0x37, 0xf8, 0x94, 0xdb, 0xe3, 0x15, 0x23, 0x5b, 0x30, 0xeb, 0x12, 0xb8, 0xc7, 0xf6, 0xda,
0x1d, 0xa8, 0x71, 0x7c, 0x8e, 0x52, 0x11, 0x2e, 0xc2, 0x08, 0x42, 0x84, 0x8c, 0x70, 0x8d, 0xd5,
0xcc, 0x70, 0x8d, 0xe8, 0xcc, 0xae, 0xa8, 0x2c, 0x1f, 0x22, 0xf0, 0x20, 0x7d, 0x1a, 0x5c, 0xc6,
0x40, 0x15, 0x3a, 0x15, 0x1e, 0xd1, 0x41, 0xea, 0x54, 0xde, 0x84, 0xc6, 0x99, 0x3d, 0x9d, 0x9e,
0xda, 0xe3, 0xa7, 0x5c, 0x15, 0x50, 0xe7, 0xda, 0x4f, 0x09, 0x44, 0x5d, 0xc0, 0x1d, 0xa8, 0x69,
0xab, 0x8c, 0xfe, 0xbf, 0x45, 0x13, 0xa2, 0xf5, 0x4d, 0x6a, 0xf8, 0x96, 0x5f, 0x41, 0xc3, 0xa7,
0xf9, 0x41, 0xaf, 0xc4, 0xfd, 0xa0, 0x6f, 0x21, 0x35, 0x15, 0x1e, 0xa8, 0x4d, 0x1e, 0x11, 0xce,
0x9e, 0x4c, 0xd0, 0x03, 0x15, 0x15, 0x59, 0x7c, 0xf2, 0x78, 0xfe, 0x2a, 0x97, 0x25, 0x38, 0x8c,
0xa3, 0xdc, 0xe6, 0x6a, 0xea, 0xb9, 0xed, 0x4c, 0xf0, 0x59, 0x8e, 0xb0, 0x68, 0xd8, 0xb3, 0xf0,
0xd8, 0x76, 0xd0, 0xf7, 0x4e, 0x66, 0xe3, 0xed, 0xb8, 0xc6, 0xe7, 0x5f, 0x64, 0x0f, 0x79, 0xbc,
0x12, 0x85, 0x31, 0x53, 0x21, 0x19, 0xcc, 0x9a, 0x40, 0xc1, 0x7d, 0xf0, 0x3e, 0xba, 0x6c, 0x85,
0x14, 0x83, 0x2e, 0x2c, 0x3f, 0xbc, 0xa5, 0x3c, 0x49, 0x70, 0x97, 0xca, 0xff, 0xdc, 0xd2, 0xc9,
0x31, 0x19, 0x73, 0xc7, 0x0d, 0xae, 0x9b, 0x31, 0xfe, 0x57, 0xa0, 0xa2, 0xc1, 0x95, 0x23, 0x90,
0x4f, 0x34, 0xf9, 0xb5, 0x85, 0xc8, 0xaf, 0x25, 0xea, 0xbf, 0xee, 0xdd, 0xe3, 0x6d, 0x00, 0x27,
0x60, 0xb7, 0x4c, 0x40, 0xdd, 0x09, 0xc6, 0x4e, 0xa8, 0x98, 0x55, 0x27, 0x78, 0xc2, 0x01, 0xdf,
0xac, 0x60, 0xdb, 0x86, 0xba, 0x3e, 0x4c, 0x52, 0x81, 0xe2, 0xe0, 0xb8, 0xdb, 0x6f, 0xde, 0x20,
0x35, 0x28, 0x0f, 0xbb, 0xa3, 0xd1, 0x21, 0x9a, 0x6d, 0xeb, 0x50, 0x51, 0x2f, 0xa3, 0xf3, 0x2c,
0xd5, 0xee, 0x74, 0xba, 0xc7, 0xa3, 0xee, 0x5e, 0xb3, 0xf0, 0xa3, 0x62, 0x25, 0xdf, 0x2c, 0x18,
0x7f, 0x58, 0x80, 0x9a, 0x36, 0x0b, 0x2f, 0x26, 0xc6, 0xb7, 0x01, 0x50, 0x92, 0x8c, 0x1c, 0x94,
0x8b, 0x66, 0x95, 0x41, 0xf8, 0xe2, 0xeb, 0x36, 0x0a, 0x11, 0x25, 0x48, 0xda, 0x28, 0xde, 0x84,
0x06, 0x0f, 0x2f, 0xa3, 0x1b, 0xdf, 0x4b, 0x66, 0x9d, 0x03, 0x05, 0xa9, 0xc6, 0x38, 0x0b, 0x88,
0x84, 0x2f, 0x58, 0x45, 0x8c, 0x2d, 0x0e, 0xc2, 0x37, 0xac, 0xf8, 0x00, 0x39, 0xf0, 0xa6, 0xcf,
0x28, 0xc7, 0xe0, 0x1c, 0x61, 0x4d, 0xc0, 0x46, 0x22, 0x86, 0x85, 0xa0, 0x87, 0xda, 0x43, 0xff,
0x92, 0x59, 0xe7, 0x40, 0xd1, 0xd0, 0x77, 0xe5, 0x06, 0xe2, 0xae, 0x48, 0x5b, 0xe9, 0xdd, 0x10,
0xdb, 0x3c, 0x87, 0x29, 0x35, 0x62, 0x15, 0x37, 0xc6, 0xb7, 0xd2, 0xe5, 0x5e, 0xae, 0x4e, 0x24,
0xef, 0x02, 0x99, 0xcd, 0xe7, 0x56, 0x86, 0x82, 0xaf, 0x68, 0xae, 0xcc, 0xe6, 0xf3, 0x91, 0xa6,
0xff, 0xfa, 0x06, 0x74, 0x8f, 0x5f, 0x01, 0x69, 0xb3, 0x03, 0x8c, 0x5d, 0x54, 0xa2, 0x58, 0x44,
0x96, 0x73, 0x3a, 0x59, 0xce, 0xa0, 0x7e, 0xf9, 0x4c, 0xea, 0xf7, 0x22, 0x3a, 0x61, 0xec, 0x43,
0xed, 0x58, 0x8b, 0x09, 0x7a, 0x97, 0xdd, 0x10, 0x32, 0x1a, 0x28, 0xbf, 0x3b, 0xb8, 0x4e, 0xd1,
0x17, 0x41, 0x40, 0xb5, 0xde, 0xe4, 0xb5, 0xde, 0x18, 0x7f, 0x3b, 0xc7, 0xe3, 0x95, 0xa9, 0xce,
0x47, 0x61, 0x48, 0xa5, 0x69, 0x2e, 0x8a, 0xc7, 0x51, 0x93, 0xc6, 0x37, 0x11, 0x4a, 0x03, 0xbb,
0x66, 0x79, 0x67, 0x67, 0x01, 0x95, 0x0e, 0x3b, 0x35, 0x84, 0x0d, 0x10, 0x24, 0x99, 0x6f, 0xc6,
0xe1, 0x3b, 0xbc, 0xfe, 0x40, 0x78, 0xe9, 0x30, 0xe6, 0xfb, 0xc8, 0xbe, 0x14, 0xad, 0x06, 0x8c,
0x05, 0x11, 0xf6, 0x01, 0xf9, 0x1e, 0x5d, 0xa5, 0x8d, 0xbf, 0x21, 0x42, 0x86, 0x24, 0xe7, 0xf7,
0x3e, 0x54, 0x54, 0xad, 0xf1, 0x1b, 0x56, 0x62, 0xaa, 0x7c, 0x76, 0x8f, 0xa3, 0x32, 0x24, 0xd6,
0x63, 0x7e, 0xb8, 0xd0, 0xc6, 0xd3, 0xd3, 0x7a, 0xfd, 0x1d, 0x20, 0x67, 0x8e, 0x9f, 0x44, 0xe6,
0x87, 0xad, 0x89, 0x39, 0x1a, 0xb6, 0x71, 0x02, 0x6b, 0x92, 0x4a, 0x68, 0x12, 0x41, 0x7c, 0xf1,
0x72, 0x2f, 0x21, 0xf2, 0xf9, 0x14, 0x91, 0x37, 0x7e, 0xbd, 0x04, 0x65, 0x19, 0x5f, 0x37, 0x2b,
0x26, 0x6c, 0x35, 0x1e, 0x13, 0xb6, 0x15, 0x8b, 0xef, 0x87, 0x4b, 0x2f, 0xee, 0xfb, 0x77, 0x92,
0x57, 0xb6, 0x66, 0xab, 0x88, 0x5d, 0xdb, 0xc2, 0x56, 0x51, 0x8a, 0xdb, 0x2a, 0xb2, 0xe2, 0xe4,
0x72, 0xd6, 0x33, 0x15, 0x27, 0xf7, 0x16, 0x70, 0x3e, 0x42, 0xf3, 0x54, 0xac, 0x20, 0x40, 0xc4,
0x54, 0xd0, 0xd8, 0x8e, 0x4a, 0x92, 0xed, 0x78, 0x65, 0x96, 0xe0, 0x43, 0x58, 0xe2, 0xe1, 0x87,
0xc4, 0xfb, 0x7a, 0x79, 0x71, 0x88, 0xb9, 0x92, 0xff, 0xf9, 0x03, 0x18, 0x53, 0xe0, 0xea, 0x41,
0x27, 0x6b, 0xb1, 0xa0, 0x93, 0xba, 0x0d, 0xa5, 0x1e, 0xb7, 0xa1, 0xdc, 0x83, 0xa6, 0x9a, 0x38,
0xd4, 0x48, 0xba, 0x81, 0x78, 0x5b, 0xbb, 0x2c, 0xe1, 0x8c, 0x1a, 0xf6, 0x83, 0xe8, 0xe2, 0x5b,
0x8e, 0x5d, 0x7c, 0x8c, 0x56, 0xb5, 0xc3, 0x90, 0xce, 0xe6, 0xa1, 0xbc, 0xf8, 0xb4, 0xd0, 0xc4,
0x7c, 0xe5, 0xf9, 0xe3, 0x1f, 0xb9, 0xbc, 0x7c, 0x77, 0xec, 0xc2, 0xf2, 0x99, 0xed, 0x4c, 0x17,
0x3e, 0xb5, 0x7c, 0x6a, 0x07, 0x9e, 0x8b, 0x87, 0x3f, 0xba, 0x83, 0xc5, 0x10, 0xf7, 0x39, 0x8e,
0x89, 0x28, 0x66, 0xe3, 0x4c, 0x4f, 0xe2, 0x13, 0x3a, 0x7d, 0x26, 0xd8, 0x95, 0x25, 0x5e, 0xd9,
0x73, 0xc7, 0xa3, 0x5e, 0xdf, 0xda, 0x3f, 0xec, 0x3d, 0x3e, 0x18, 0x35, 0x73, 0x2c, 0x39, 0x3c,
0xe9, 0x74, 0xba, 0xdd, 0x3d, 0xbc, 0xc2, 0x00, 0x96, 0xf6, 0xdb, 0xbd, 0x43, 0x71, 0x81, 0x15,
0x9b, 0x25, 0xe3, 0x9f, 0xe4, 0xa1, 0xa6, 0x8d, 0x86, 0x3c, 0x52, 0x8b, 0xc0, 0xe3, 0x7a, 0xdc,
0x4e, 0x8f, 0x78, 0x47, 0x52, 0x78, 0x6d, 0x15, 0x54, 0x10, 0xe2, 0xfc, 0xb5, 0x41, 0x88, 0xc9,
0xdb, 0xb0, 0x62, 0xf3, 0x1a, 0xd4, 0xa4, 0x0b, 0xe5, 0xbe, 0x00, 0x8b, 0x39, 0x7f, 0x5b, 0xc4,
0x18, 0x11, 0xd7, 0x14, 0xc3, 0x2b, 0x4a, 0x0f, 0x5c, 0x75, 0x53, 0xe1, 0xda, 0x94, 0xc5, 0xcc,
0x08, 0x63, 0xbc, 0xba, 0xf0, 0xc5, 0x7c, 0xc9, 0x6c, 0xfe, 0xae, 0x56, 0xdb, 0xe1, 0x75, 0x53,
0xa5, 0x8d, 0x8f, 0x00, 0xa2, 0xf1, 0xc4, 0xa7, 0xef, 0x46, 0x7c, 0xfa, 0x72, 0xda, 0xf4, 0xe5,
0x8d, 0x7f, 0x20, 0x48, 0x97, 0x58, 0x0b, 0xa5, 0xea, 0xfb, 0x2e, 0x48, 0xe5, 0xa3, 0x85, 0x1e,
0xfb, 0xf3, 0x29, 0x0d, 0xe5, 0xd3, 0xe0, 0x55, 0x91, 0xd3, 0x53, 0x19, 0x29, 0x52, 0x9b, 0x4f,
0x93, 0xda, 0x37, 0xa0, 0x8e, 0x41, 0xeb, 0x44, 0x43, 0x82, 0x5c, 0xd5, 0x66, 0xf6, 0xa5, 0x6c,
0x3b, 0x46, 0x63, 0x8b, 0x09, 0x1a, 0xfb, 0x37, 0x73, 0x3c, 0xc2, 0x51, 0xd4, 0xd1, 0x88, 0xc8,
0xaa, 0x3a, 0xe3, 0x44, 0x56, 0xa0, 0x9a, 0x2a, 0xff, 0x1a, 0xc2, 0x99, 0xcf, 0x26, 0x9c, 0xd9,
0x24, 0xb9, 0x90, 0x49, 0x92, 0x8d, 0x6d, 0x68, 0xed, 0x51, 0x36, 0x15, 0xed, 0xe9, 0x34, 0x31,
0x97, 0xc6, 0x2d, 0xb8, 0x99, 0x91, 0x27, 0xb4, 0x36, 0xbf, 0x91, 0x83, 0x8d, 0x36, 0x0f, 0x6c,
0xf2, 0x8d, 0xbd, 0xdd, 0xfd, 0x14, 0x6e, 0x2a, 0xf7, 0x7b, 0xed, 0x49, 0xa0, 0x1e, 0x95, 0x4a,
0x7a, 0xee, 0x6b, 0x8f, 0x4e, 0xd8, 0x9d, 0x69, 0xb4, 0x60, 0x33, 0xd9, 0x1b, 0xd1, 0xd1, 0x7d,
0x58, 0xdd, 0xa3, 0xa7, 0x8b, 0xf3, 0x43, 0xfa, 0x2c, 0xea, 0x23, 0x81, 0x62, 0x70, 0xe1, 0x3d,
0x17, 0x1b, 0x03, 0x7f, 0xa3, 0x7f, 0x2e, 0xc3, 0xb1, 0x82, 0x39, 0x1d, 0x4b, 0xad, 0x3f, 0x42,
0x86, 0x73, 0x3a, 0x36, 0x1e, 0x01, 0xd1, 0xeb, 0x11, 0xab, 0xc8, 0x44, 0xb2, 0xc5, 0xa9, 0x15,
0x5c, 0x05, 0x21, 0x9d, 0xc9, 0xe7, 0xae, 0x10, 0x2c, 0x4e, 0x87, 0x1c, 0x62, 0xbc, 0x03, 0xf5,
0x63, 0xfb, 0xca, 0xa4, 0x5f, 0x89, 0x57, 0xa5, 0x5b, 0x50, 0x9e, 0xdb, 0x57, 0x8c, 0x16, 0x2b,
0x03, 0x20, 0x66, 0x1b, 0xff, 0xa8, 0x08, 0x4b, 0x1c, 0x93, 0xdc, 0xe5, 0x9f, 0x07, 0x70, 0x5c,
0xa4, 0x85, 0xf2, 0x56, 0xd2, 0x40, 0xa9, 0x8b, 0x2b, 0x9f, 0xbe, 0xb8, 0x84, 0xb6, 0x52, 0x46,
0xcd, 0x93, 0xa6, 0x1a, 0x77, 0x31, 0x93, 0xa1, 0xf2, 0xe2, 0x71, 0x3d, 0x8a, 0xd1, 0x67, 0x25,
0x78, 0x4c, 0x83, 0xb8, 0x31, 0x3d, 0x12, 0xfc, 0x78, 0xef, 0xe4, 0x7d, 0x2c, 0xee, 0x2c, 0x1d,
0x94, 0x29, 0x5d, 0x96, 0xe5, 0x53, 0xe9, 0xb8, 0x74, 0x99, 0x92, 0x22, 0x2b, 0x2f, 0x97, 0x22,
0xb9, 0x1a, 0xf3, 0x05, 0x52, 0x24, 0xbc, 0x82, 0x14, 0xf9, 0x0a, 0x86, 0xec, 0x9b, 0x50, 0x41,
0x26, 0x4b, 0xbb, 0xc2, 0x18, 0x73, 0xc5, 0xae, 0xb0, 0x8f, 0x35, 0x39, 0x8b, 0x7b, 0xd1, 0x68,
0x77, 0x88, 0x49, 0xbf, 0xfa, 0xd9, 0x18, 0x08, 0xbf, 0x84, 0xb2, 0x80, 0xb2, 0x0d, 0xed, 0xda,
0x33, 0x19, 0x99, 0x15, 0x7f, 0xb3, 0x69, 0xc3, 0x68, 0x89, 0x5f, 0x2d, 0x1c, 0x9f, 0x4e, 0x64,
0xcc, 0x36, 0x07, 0xcf, 0x37, 0x83, 0xb0, 0x01, 0x32, 0x99, 0xcf, 0xf5, 0x9e, 0xbb, 0x82, 0x6e,
0x95, 0x9d, 0xe0, 0x09, 0x4b, 0x1a, 0x04, 0x9a, 0x18, 0x5b, 0x7a, 0xee, 0xf9, 0x92, 0x43, 0x30,
0x7e, 0x27, 0x07, 0x4d, 0x71, 0xba, 0x54, 0x9e, 0x2e, 0x72, 0x95, 0xae, 0x73, 0xfa, 0x78, 0x71,
0x04, 0x36, 0x03, 0x1a, 0xa8, 0x69, 0x52, 0xec, 0x02, 0xd7, 0x94, 0xd5, 0x18, 0x70, 0x5f, 0xb0,
0x0c, 0xaf, 0x43, 0x4d, 0xbe, 0x1e, 0x98, 0x39, 0x53, 0xf9, 0x05, 0x19, 0xfe, 0x7c, 0xe0, 0xc8,
0x99, 0x4a, 0x6e, 0xc3, 0xb7, 0xc5, 0xd3, 0xfd, 0x1c, 0x72, 0x1b, 0xa6, 0x1d, 0x52, 0xe3, 0x1f,
0xe7, 0x60, 0x55, 0x1b, 0x8a, 0x38, 0xb7, 0xdf, 0x83, 0xba, 0x0a, 0xea, 0x4e, 0x15, 0x9b, 0xbb,
0x15, 0xa7, 0x51, 0x51, 0xb1, 0xda, 0x58, 0x41, 0x02, 0xd6, 0x99, 0x89, 0x7d, 0xc5, 0x5d, 0xdc,
0x17, 0x33, 0x29, 0x49, 0x4e, 0xec, 0xab, 0x7d, 0x4a, 0x87, 0x8b, 0x19, 0xb9, 0x0b, 0xf5, 0xe7,
0x94, 0x3e, 0x55, 0x08, 0x9c, 0xf4, 0x02, 0x83, 0x09, 0x0c, 0x03, 0x1a, 0x33, 0xcf, 0x0d, 0x2f,
0x14, 0x8a, 0x60, 0xf1, 0x11, 0xc8, 0x71, 0x8c, 0xdf, 0xcf, 0xc3, 0x1a, 0xd7, 0x67, 0x0a, 0x3d,
0xb2, 0x20, 0x5d, 0x2d, 0x58, 0xe2, 0xaa, 0x5d, 0x4e, 0xbc, 0x0e, 0x6e, 0x98, 0x22, 0x4d, 0x3e,
0x7c, 0x45, 0x1d, 0xac, 0x8c, 0x0e, 0x70, 0xcd, 0xf4, 0x17, 0xd2, 0xd3, 0x7f, 0xfd, 0xf4, 0x66,
0x59, 0x95, 0x4b, 0x59, 0x56, 0xe5, 0x57, 0xb1, 0xe5, 0xa6, 0xde, 0xb1, 0x97, 0xd3, 0xe1, 0x5e,
0x1f, 0xc1, 0x56, 0x0c, 0x07, 0xa9, 0xb5, 0x73, 0xe6, 0xa8, 0x48, 0xde, 0xeb, 0x1a, 0xf6, 0x50,
0xe6, 0xed, 0x96, 0xa1, 0x14, 0x8c, 0xbd, 0x39, 0x35, 0x36, 0x61, 0x3d, 0x3e, 0xab, 0xe2, 0x9a,
0xf8, 0xad, 0x1c, 0xb4, 0x84, 0x0f, 0x90, 0xe3, 0x9e, 0x1f, 0x38, 0x41, 0xe8, 0xf9, 0x2a, 0xd0,
0xf8, 0x6d, 0x00, 0xfe, 0xe5, 0x18, 0x14, 0xdc, 0x45, 0x04, 0x24, 0x84, 0xa0, 0xd8, 0x7e, 0x13,
0xf8, 0xad, 0x1c, 0xb4, 0x84, 0x0f, 0x90, 0xe3, 0x9e, 0x1f, 0x38, 0x41, 0xe8, 0xf9, 0x2a, 0xf8,
0xf9, 0x6d, 0x00, 0xfe, 0x35, 0x1b, 0x14, 0xdc, 0x45, 0x04, 0x24, 0x84, 0xa0, 0xd8, 0x7e, 0x13,
0x2a, 0xd4, 0x9d, 0xf0, 0x4c, 0xbe, 0x1b, 0xca, 0xd4, 0x9d, 0x48, 0xa1, 0x3f, 0x75, 0x0d, 0x37,
0xe2, 0x0c, 0x86, 0x88, 0xe5, 0xc1, 0x66, 0x87, 0x3e, 0x43, 0x76, 0xa0, 0xa8, 0x62, 0x79, 0x1c,
0xd9, 0x97, 0xe8, 0x1e, 0x1d, 0x18, 0x7f, 0x25, 0x0f, 0x2b, 0x51, 0xff, 0x78, 0x34, 0xa3, 0x17,
0xc7, 0x65, 0xba, 0x2b, 0xb6, 0x83, 0xc3, 0x84, 0x25, 0x4d, 0xcb, 0x5b, 0xe1, 0x87, 0xb3, 0xe7,
0x12, 0x03, 0x6a, 0x12, 0xc3, 0x5b, 0x84, 0x5a, 0x88, 0xda, 0x2a, 0x47, 0x19, 0x2c, 0x42, 0x26,
0xdd, 0x32, 0x31, 0xdf, 0x71, 0x85, 0x7c, 0x59, 0xb2, 0x67, 0x61, 0x0f, 0x3f, 0x4f, 0xc4, 0xc0,
0xdd, 0x32, 0x31, 0xdf, 0x71, 0x85, 0x7c, 0x59, 0xb2, 0x67, 0x61, 0x0f, 0x3f, 0x99, 0xc4, 0xc0,
0xac, 0x18, 0x5f, 0x48, 0x86, 0xc5, 0xf0, 0x9b, 0x5c, 0xd8, 0xe1, 0x2b, 0x87, 0x82, 0x8e, 0x2e,
0x09, 0xf0, 0x2f, 0x2a, 0x28, 0x49, 0xe0, 0x75, 0xa8, 0xf1, 0xca, 0xa3, 0xb0, 0x05, 0x18, 0x2f,
0x09, 0xf0, 0xaf, 0x3c, 0x28, 0x49, 0xe0, 0x75, 0xa8, 0xf1, 0xca, 0xa3, 0xb0, 0x05, 0x18, 0x2f,
0x2e, 0xec, 0xb9, 0x98, 0x2f, 0x34, 0x6e, 0xde, 0x22, 0xa6, 0x67, 0x00, 0xde, 0x14, 0xba, 0xd8,
0xfc, 0x46, 0x0e, 0x6e, 0x66, 0x2c, 0x9b, 0x38, 0xe5, 0x1d, 0x58, 0x3d, 0x53, 0x99, 0x72, 0x76,
0xf9, 0x51, 0xdf, 0x94, 0x64, 0x35, 0x3e, 0xa7, 0x66, 0xf3, 0x2c, 0x0e, 0x88, 0x24, 0x5c, 0xbe,
@ -13253,10 +13292,10 @@ var fileDescriptor_77a6da22d6a3feb1 = []byte{
0x27, 0xa3, 0xe6, 0x16, 0xd9, 0x80, 0x66, 0xaf, 0x3f, 0xea, 0x9a, 0x6c, 0xad, 0x65, 0xd1, 0xff,
0x56, 0x26, 0xeb, 0xb0, 0x22, 0x7b, 0x2a, 0xa1, 0x7f, 0x54, 0x26, 0x5b, 0x40, 0x4e, 0xfa, 0x66,
0xb7, 0xbd, 0xc7, 0x26, 0x4e, 0x65, 0xfc, 0xf7, 0xb2, 0x30, 0x67, 0xfe, 0x4e, 0x41, 0x31, 0x7b,
0x91, 0x7f, 0x50, 0xfc, 0xeb, 0x2d, 0x75, 0xed, 0xab, 0x2b, 0x2f, 0xfb, 0x06, 0x9b, 0x26, 0x9a,
0x91, 0x7f, 0x50, 0xfc, 0xeb, 0x2d, 0x75, 0xed, 0xab, 0x2b, 0x2f, 0xfb, 0x2e, 0x9c, 0x26, 0x9a,
0x17, 0x52, 0xa2, 0x79, 0x4a, 0xf7, 0xd3, 0xd0, 0x65, 0x87, 0x37, 0xa1, 0x31, 0xe3, 0x5f, 0x72,
0x11, 0x1f, 0x23, 0x00, 0xe1, 0x2c, 0xc7, 0x81, 0xfc, 0x4b, 0x04, 0xa9, 0x8f, 0x90, 0x95, 0xd2,
0x1f, 0x21, 0xcb, 0x92, 0x0f, 0x97, 0xb2, 0xe4, 0xc3, 0xfb, 0xb0, 0xca, 0x49, 0x93, 0xe3, 0x3a,
0x11, 0x1f, 0x23, 0x00, 0xe1, 0x2c, 0xc7, 0x81, 0xfc, 0x4b, 0x04, 0xa9, 0x0f, 0xa3, 0x95, 0xd2,
0x1f, 0x46, 0xcb, 0x92, 0x0f, 0x97, 0xb2, 0xe4, 0xc3, 0xfb, 0xb0, 0xca, 0x49, 0x93, 0xe3, 0x3a,
0x33, 0xa9, 0x75, 0xe1, 0x52, 0xc4, 0x0a, 0x92, 0x28, 0x0e, 0x97, 0xe2, 0xa8, 0x14, 0x59, 0x05,
0x09, 0x29, 0x0b, 0x69, 0x35, 0x26, 0xa9, 0x72, 0xca, 0xa1, 0x24, 0x55, 0xd5, 0x82, 0x7d, 0x19,
0xb5, 0x50, 0xd3, 0x5a, 0xe0, 0x70, 0x6c, 0xe1, 0x3e, 0xac, 0xd2, 0xcb, 0xd0, 0xb7, 0x2d, 0x6f,
@ -13264,7 +13303,7 @@ var fileDescriptor_77a6da22d6a3feb1 = []byte{
0xb3, 0x43, 0xdb, 0xf8, 0x25, 0x00, 0x75, 0xab, 0x4e, 0x18, 0x01, 0x74, 0x3d, 0xf9, 0x24, 0xb2,
0x6e, 0xf2, 0x04, 0xae, 0x63, 0xe8, 0xf9, 0xf6, 0x39, 0xed, 0xc9, 0xc0, 0x3e, 0x11, 0x80, 0xdc,
0x82, 0x82, 0x37, 0x97, 0xae, 0x64, 0x55, 0x19, 0x5d, 0x7b, 0x6e, 0x32, 0xa8, 0xf1, 0x11, 0xe4,
0x07, 0xf3, 0x6b, 0x59, 0xa5, 0x16, 0x94, 0xe5, 0x67, 0x47, 0xf3, 0xe8, 0x3e, 0x26, 0x93, 0xf7,
0x07, 0xf3, 0x6b, 0x59, 0xa5, 0x16, 0x94, 0xe5, 0xa7, 0x50, 0xf3, 0xe8, 0x3e, 0x26, 0x93, 0xf7,
0xff, 0x2c, 0xd4, 0xb4, 0x8f, 0x0f, 0x91, 0x2d, 0x58, 0xfb, 0xa2, 0x37, 0xea, 0x77, 0x87, 0x43,
0xeb, 0xf8, 0x64, 0xf7, 0x49, 0xf7, 0x4b, 0xeb, 0xa0, 0x3d, 0x3c, 0x68, 0xde, 0x60, 0xb4, 0xa4,
0xdf, 0x1d, 0x8e, 0xba, 0x7b, 0x31, 0x78, 0x8e, 0xbc, 0x0e, 0xdb, 0x27, 0xfd, 0x93, 0x61, 0x77,
@ -13301,13 +13340,13 @@ var fileDescriptor_77a6da22d6a3feb1 = []byte{
0x2b, 0x6c, 0x13, 0xb2, 0x2b, 0x9a, 0xa1, 0x34, 0x65, 0x82, 0xe5, 0xac, 0x3e, 0xfc, 0x17, 0x6f,
0x40, 0x55, 0x3d, 0x30, 0x20, 0x3f, 0x82, 0x46, 0xec, 0xf9, 0x3e, 0x91, 0x2a, 0xfc, 0xac, 0xd7,
0xfe, 0xdb, 0xaf, 0x65, 0x67, 0x0a, 0xe1, 0xe4, 0x48, 0xd3, 0x06, 0xf0, 0xca, 0x5e, 0x4b, 0x4a,
0xe8, 0xb1, 0xda, 0x6e, 0x5f, 0x93, 0x2b, 0xaa, 0x7b, 0x82, 0xa1, 0xc1, 0xf5, 0x6f, 0x58, 0x93,
0xdb, 0x51, 0x9c, 0xe6, 0x8c, 0x6f, 0x5b, 0x6f, 0xdf, 0x4c, 0x7f, 0x6d, 0x5a, 0x7e, 0x9e, 0x7a,
0x0f, 0x6a, 0xda, 0xa7, 0x19, 0xc9, 0xcd, 0x6b, 0x3f, 0x23, 0xb9, 0xbd, 0x9d, 0x95, 0x25, 0xba,
0xf4, 0x7d, 0xa8, 0xaa, 0xcf, 0xf4, 0x91, 0x2d, 0xed, 0x13, 0x8b, 0xfa, 0xc7, 0x06, 0xb7, 0x5b,
0xe8, 0xb1, 0xda, 0x6e, 0x5f, 0x93, 0x2b, 0xaa, 0x7b, 0x82, 0xa1, 0xc1, 0xf5, 0xef, 0x6a, 0x93,
0xdb, 0x51, 0x9c, 0xe6, 0x8c, 0xef, 0x6d, 0x6f, 0xdf, 0x4c, 0x7f, 0x01, 0x5b, 0x7e, 0x32, 0x7b,
0x0f, 0x6a, 0xda, 0xe7, 0x22, 0xc9, 0xcd, 0x6b, 0x3f, 0x6d, 0xb9, 0xbd, 0x9d, 0x95, 0x25, 0xba,
0xf4, 0x7d, 0xa8, 0xaa, 0xcf, 0xf4, 0x91, 0x2d, 0xed, 0xb3, 0x8f, 0xfa, 0x67, 0x0b, 0xb7, 0x5b,
0xe9, 0x0c, 0x51, 0x7e, 0x0f, 0x6a, 0xda, 0xd7, 0xf6, 0x54, 0x2f, 0xd2, 0x5f, 0xf4, 0x53, 0xbd,
0xc8, 0xfa, 0x38, 0xdf, 0x21, 0x6c, 0x08, 0x9d, 0xc3, 0x29, 0xfd, 0x3a, 0xd3, 0x93, 0xf1, 0x31,
0xee, 0x07, 0x39, 0xf2, 0x19, 0x54, 0xe4, 0x77, 0x15, 0xc9, 0x66, 0xf6, 0x57, 0x23, 0xb7, 0xb7,
0xc8, 0xfa, 0x38, 0xdf, 0x21, 0x6c, 0x08, 0x9d, 0xc3, 0x29, 0xfd, 0x3a, 0xd3, 0x93, 0xf1, 0x81,
0xf0, 0x07, 0x39, 0xf2, 0x19, 0x54, 0xe4, 0x17, 0x1a, 0xc9, 0x66, 0xf6, 0x97, 0x2c, 0xb7, 0xb7,
0x52, 0x70, 0xd1, 0x95, 0x36, 0x40, 0xf4, 0x1d, 0x3f, 0x22, 0x07, 0x9e, 0xfa, 0x2e, 0xa0, 0x5a,
0x99, 0x8c, 0x8f, 0xfe, 0xed, 0x41, 0x4d, 0xfb, 0x64, 0x9f, 0x9a, 0x93, 0xf4, 0xe7, 0xfe, 0xd4,
0x9c, 0x64, 0x7d, 0xe1, 0xef, 0x47, 0xd0, 0x88, 0x7d, 0x7b, 0x4f, 0xed, 0xe3, 0xac, 0x2f, 0xfb,
@ -13325,13 +13364,13 @@ var fileDescriptor_77a6da22d6a3feb1 = []byte{
0x66, 0x7f, 0x72, 0xa5, 0x0d, 0x2b, 0x5a, 0x8c, 0x9a, 0xe1, 0x95, 0x3b, 0x56, 0xfb, 0x3d, 0x1d,
0x60, 0x7a, 0x3b, 0x4b, 0xf3, 0x4d, 0x3a, 0x50, 0xd3, 0xc3, 0xdc, 0xbc, 0xa0, 0xf8, 0x96, 0x96,
0xa5, 0xc7, 0x10, 0x7e, 0x90, 0x23, 0x87, 0xd0, 0x4c, 0x06, 0xa5, 0x54, 0x47, 0x38, 0x2b, 0x90,
0xe7, 0x76, 0x22, 0x33, 0x16, 0xca, 0x92, 0xed, 0x8b, 0xd8, 0x47, 0x9f, 0x3d, 0x3f, 0x79, 0x15,
0xc5, 0x3f, 0x06, 0xad, 0x6a, 0xcb, 0xfa, 0x0c, 0xf8, 0xbd, 0xdc, 0x83, 0x1c, 0xd9, 0x87, 0x7a,
0xe7, 0x76, 0x22, 0x33, 0x16, 0xca, 0x92, 0xed, 0x8b, 0xd8, 0x87, 0xa8, 0x3d, 0x3f, 0x79, 0x15,
0xc5, 0x3f, 0x50, 0xad, 0x6a, 0xcb, 0xfa, 0x34, 0xf9, 0xbd, 0xdc, 0x83, 0x1c, 0xd9, 0x87, 0x7a,
0x2c, 0x26, 0x5b, 0xec, 0xad, 0x4b, 0x62, 0x98, 0x2d, 0x3d, 0x2f, 0x31, 0xce, 0x23, 0x58, 0x8e,
0xbb, 0x68, 0xa8, 0x8e, 0x65, 0xfa, 0x91, 0xa8, 0xe5, 0xcb, 0xf6, 0xeb, 0x20, 0x3f, 0x80, 0x1a,
0xa3, 0xc9, 0xd2, 0x95, 0x8f, 0xa4, 0x3f, 0x81, 0xaf, 0xd6, 0x4c, 0xff, 0x60, 0xbc, 0x51, 0xf8,
0x8b, 0xf9, 0x1c, 0x8e, 0xeb, 0x7b, 0xfc, 0x83, 0xc2, 0xd2, 0x9b, 0x8b, 0xad, 0xff, 0xab, 0x56,
0x42, 0xf6, 0x79, 0xe3, 0xe2, 0x73, 0xee, 0x11, 0xe5, 0x4e, 0x7d, 0xe2, 0xfd, 0x25, 0x7d, 0x68,
0xa3, 0xc9, 0xd2, 0x95, 0x8f, 0xa4, 0x3f, 0xcb, 0xaf, 0xd6, 0x4c, 0xff, 0x88, 0xbd, 0x51, 0xf8,
0x8b, 0xf9, 0x1c, 0x8e, 0xeb, 0x7b, 0xfc, 0x23, 0xc7, 0xd2, 0x9b, 0x8b, 0xad, 0xff, 0xab, 0x56,
0x42, 0xf6, 0x79, 0xe3, 0xe2, 0x13, 0xf3, 0x11, 0xe5, 0x4e, 0x7d, 0x76, 0xfe, 0x25, 0x7d, 0x68,
0xf3, 0x3e, 0x88, 0x32, 0xb1, 0x3d, 0xf8, 0x8a, 0x75, 0x91, 0x8f, 0x01, 0x22, 0x17, 0x59, 0x92,
0x70, 0xd4, 0x54, 0x07, 0x2a, 0xc3, 0x8b, 0xb6, 0xcb, 0xcf, 0xbb, 0xf2, 0x14, 0xd5, 0xaf, 0xe4,
0xb8, 0xd3, 0x6a, 0xec, 0x4a, 0x4e, 0x56, 0xf3, 0x01, 0x34, 0x0e, 0x3d, 0xef, 0xe9, 0x62, 0xae,
@ -13365,7 +13404,7 @@ var fileDescriptor_77a6da22d6a3feb1 = []byte{
0x75, 0x33, 0x6d, 0x0a, 0x8d, 0x75, 0x33, 0xc3, 0xa4, 0xb9, 0xfb, 0xce, 0x2f, 0x7c, 0xeb, 0xdc,
0x09, 0x2f, 0x16, 0xa7, 0x3b, 0x63, 0x6f, 0xf6, 0xde, 0x54, 0x6a, 0x35, 0xc4, 0xbb, 0xf3, 0xf7,
0xa6, 0xee, 0xe4, 0x3d, 0xac, 0xe0, 0x74, 0x69, 0xee, 0x7b, 0xa1, 0xf7, 0xc1, 0xff, 0x0b, 0x00,
0x00, 0xff, 0xff, 0xa7, 0x4a, 0x87, 0x2f, 0x5c, 0x8d, 0x00, 0x00,
0x00, 0xff, 0xff, 0x5d, 0x67, 0x65, 0xd7, 0xf0, 0x8d, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.

View File

@ -863,6 +863,13 @@ message SendManyRequest {
// An optional label for the transaction, limited to 500 characters.
string label = 6;
// The minimum number of confirmations each one of your outputs used for
// the transaction must satisfy.
int32 min_confs = 7;
// Whether unconfirmed outputs should be used as inputs for the transaction.
bool spend_unconfirmed = 8;
}
message SendManyResponse {
// The id of the transaction
@ -893,6 +900,13 @@ message SendCoinsRequest {
// An optional label for the transaction, limited to 500 characters.
string label = 7;
// The minimum number of confirmations each one of your outputs used for
// the transaction must satisfy.
int32 min_confs = 8;
// Whether unconfirmed outputs should be used as inputs for the transaction.
bool spend_unconfirmed = 9;
}
message SendCoinsResponse {
// The transaction ID of the transaction

View File

@ -5243,6 +5243,16 @@
"label": {
"type": "string",
"description": "An optional label for the transaction, limited to 500 characters."
},
"min_confs": {
"type": "integer",
"format": "int32",
"description": "The minimum number of confirmations each one of your outputs used for\nthe transaction must satisfy."
},
"spend_unconfirmed": {
"type": "boolean",
"format": "boolean",
"description": "Whether unconfirmed outputs should be used as inputs for the transaction."
}
}
},
@ -5279,6 +5289,16 @@
"label": {
"type": "string",
"description": "An optional label for the transaction, limited to 500 characters."
},
"min_confs": {
"type": "integer",
"format": "int32",
"description": "The minimum number of confirmations each one of your outputs used for\nthe transaction must satisfy."
},
"spend_unconfirmed": {
"type": "boolean",
"format": "boolean",
"description": "Whether unconfirmed outputs should be used as inputs for the transaction."
}
}
},

View File

@ -2,6 +2,7 @@ package lnrpc
import (
"encoding/hex"
"errors"
"sort"
"github.com/lightningnetwork/lnd/lnwallet"
@ -52,3 +53,38 @@ func RPCTransactionDetails(txns []*lnwallet.TransactionDetail) *TransactionDetai
return txDetails
}
// ExtractMinConfs extracts the minimum number of confirmations that each
// output used to fund a transaction should satisfy.
func ExtractMinConfs(minConfs int32, spendUnconfirmed bool) (int32, error) {
switch {
// Ensure that the MinConfs parameter is non-negative.
case minConfs < 0:
return 0, errors.New("minimum number of confirmations must " +
"be a non-negative number")
// The transaction should not be funded with unconfirmed outputs
// unless explicitly specified by SpendUnconfirmed. We do this to
// provide sane defaults to the OpenChannel RPC, as otherwise, if the
// MinConfs field isn't explicitly set by the caller, we'll use
// unconfirmed outputs without the caller being aware.
case minConfs == 0 && !spendUnconfirmed:
return 1, nil
// In the event that the caller set MinConfs > 0 and SpendUnconfirmed to
// true, we'll return an error to indicate the conflict.
case minConfs > 0 && spendUnconfirmed:
return 0, errors.New("SpendUnconfirmed set to true with " +
"MinConfs > 0")
// The funding transaction of the new channel to be created can be
// funded with unconfirmed outputs.
case spendUnconfirmed:
return 0, nil
// If none of the above cases matched, we'll return the value set
// explicitly by the caller.
default:
return minConfs, nil
}
}

View File

@ -626,7 +626,12 @@ type SendOutputsRequest struct {
//A slice of the outputs that should be created in the transaction produced.
Outputs []*signrpc.TxOut `protobuf:"bytes,2,rep,name=outputs,proto3" json:"outputs,omitempty"`
// An optional label for the transaction, limited to 500 characters.
Label string `protobuf:"bytes,3,opt,name=label,proto3" json:"label,omitempty"`
Label string `protobuf:"bytes,3,opt,name=label,proto3" json:"label,omitempty"`
// The minimum number of confirmations each one of your outputs used for
// the transaction must satisfy.
MinConfs int32 `protobuf:"varint,4,opt,name=min_confs,json=minConfs,proto3" json:"min_confs,omitempty"`
// Whether unconfirmed outputs should be used as inputs for the transaction.
SpendUnconfirmed bool `protobuf:"varint,5,opt,name=spend_unconfirmed,json=spendUnconfirmed,proto3" json:"spend_unconfirmed,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -678,6 +683,20 @@ func (m *SendOutputsRequest) GetLabel() string {
return ""
}
func (m *SendOutputsRequest) GetMinConfs() int32 {
if m != nil {
return m.MinConfs
}
return 0
}
func (m *SendOutputsRequest) GetSpendUnconfirmed() bool {
if m != nil {
return m.SpendUnconfirmed
}
return false
}
type SendOutputsResponse struct {
//
//The serialized transaction sent out on the network.
@ -1381,97 +1400,99 @@ func init() {
func init() { proto.RegisterFile("walletrpc/walletkit.proto", fileDescriptor_6cc6942ac78249e5) }
var fileDescriptor_6cc6942ac78249e5 = []byte{
// 1428 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xff, 0x6f, 0xda, 0xc8,
0x12, 0x6f, 0xbe, 0x40, 0x60, 0x0c, 0x84, 0x2c, 0x24, 0xa1, 0x34, 0x6d, 0x52, 0x57, 0xef, 0xbd,
0xe8, 0xbd, 0x96, 0xe8, 0xa5, 0xea, 0xa9, 0xed, 0x49, 0xa7, 0x4b, 0xc0, 0x11, 0x11, 0x04, 0x52,
0x43, 0x1a, 0xf5, 0xee, 0x07, 0xcb, 0xe0, 0x2d, 0xb1, 0x02, 0xb6, 0xbb, 0x5e, 0x8a, 0xf9, 0xed,
0xfe, 0x8a, 0x93, 0xfa, 0x6f, 0xdd, 0x5f, 0x74, 0xda, 0x5d, 0x63, 0xd6, 0x40, 0x7a, 0x3a, 0xe9,
0x7e, 0x8a, 0x77, 0x3e, 0x33, 0x9f, 0x99, 0x9d, 0x99, 0xcc, 0x0e, 0xf0, 0x78, 0x62, 0x0e, 0x87,
0x98, 0x12, 0xaf, 0x7f, 0x22, 0xbe, 0xee, 0x6d, 0x5a, 0xf1, 0x88, 0x4b, 0x5d, 0x94, 0x8e, 0xa0,
0x72, 0x9a, 0x78, 0x7d, 0x21, 0x2d, 0x17, 0x7d, 0x7b, 0xe0, 0x30, 0x75, 0xf6, 0x17, 0x13, 0x21,
0x55, 0x5b, 0x80, 0x9a, 0xb6, 0x4f, 0x6f, 0x1c, 0xdf, 0xc3, 0x0e, 0xd5, 0xf1, 0x97, 0x31, 0xf6,
0x29, 0x7a, 0x02, 0xe9, 0x91, 0xed, 0x18, 0x7d, 0xd7, 0xf9, 0xec, 0x97, 0xd6, 0x8e, 0xd6, 0x8e,
0x13, 0x7a, 0x6a, 0x64, 0x3b, 0x55, 0x76, 0xe6, 0xa0, 0x19, 0x84, 0xe0, 0x7a, 0x08, 0x9a, 0x01,
0x07, 0xd5, 0xb7, 0x50, 0x88, 0xf1, 0xf9, 0x9e, 0xeb, 0xf8, 0x18, 0x3d, 0x87, 0xc4, 0x98, 0x06,
0x2e, 0x23, 0xdb, 0x38, 0x56, 0x4e, 0x95, 0xca, 0x90, 0x85, 0x52, 0xb9, 0xa1, 0x81, 0xab, 0x0b,
0x44, 0xfd, 0x00, 0xa8, 0x89, 0x4d, 0x1f, 0xb7, 0xc7, 0xd4, 0x1b, 0x47, 0x91, 0xe4, 0x60, 0xdd,
0xb6, 0x78, 0x08, 0x19, 0x7d, 0xdd, 0xb6, 0xd0, 0xff, 0x20, 0xe5, 0x8e, 0xa9, 0xe7, 0xda, 0x0e,
0xe5, 0xbe, 0x95, 0xd3, 0xed, 0x90, 0xab, 0x3d, 0xa6, 0xd7, 0x4c, 0xac, 0x47, 0x0a, 0xea, 0x1b,
0x28, 0xc4, 0x28, 0xc3, 0x60, 0x9e, 0x01, 0xe0, 0xc0, 0xb3, 0x89, 0x49, 0x6d, 0xd7, 0xe1, 0xdc,
0x9b, 0xba, 0x24, 0x51, 0x3b, 0x50, 0xd4, 0xf1, 0xf0, 0x1f, 0x8e, 0x65, 0x1f, 0x76, 0x17, 0x48,
0x45, 0x34, 0xea, 0x07, 0x48, 0x36, 0xf0, 0x54, 0xc7, 0x5f, 0xd0, 0x31, 0xe4, 0xef, 0xf1, 0xd4,
0xf8, 0x6c, 0x3b, 0x03, 0x4c, 0x0c, 0x8f, 0x30, 0x5e, 0x91, 0xfc, 0xdc, 0x3d, 0x9e, 0x5e, 0x70,
0xf1, 0x35, 0x93, 0xa2, 0xa7, 0x00, 0x5c, 0xd3, 0x1c, 0xd9, 0xc3, 0x69, 0x58, 0x83, 0x34, 0xd3,
0xe1, 0x02, 0x35, 0x0b, 0xca, 0x99, 0x65, 0x91, 0x30, 0x6e, 0x55, 0x85, 0x8c, 0x38, 0x86, 0xf7,
0x47, 0xb0, 0x69, 0x5a, 0x16, 0xe1, 0xdc, 0x69, 0x9d, 0x7f, 0xab, 0xef, 0x41, 0xe9, 0x12, 0xd3,
0xf1, 0xcd, 0x3e, 0x4b, 0x01, 0xda, 0x85, 0x24, 0x0d, 0x8c, 0x3b, 0x1c, 0x84, 0xd7, 0x4d, 0xd0,
0xa0, 0x8e, 0x03, 0x54, 0x84, 0xc4, 0xd0, 0xec, 0xe1, 0x21, 0x77, 0x99, 0xd6, 0xc5, 0x41, 0xfd,
0x01, 0xb6, 0xaf, 0xc7, 0xbd, 0xa1, 0xed, 0xdf, 0x45, 0x2e, 0x5e, 0x40, 0xd6, 0x13, 0x22, 0x03,
0x13, 0xe2, 0xce, 0x7c, 0x65, 0x42, 0xa1, 0xc6, 0x64, 0x2a, 0x01, 0xd4, 0xc1, 0x8e, 0x25, 0xf2,
0xe1, 0xcf, 0xb2, 0x7c, 0x00, 0xe0, 0x9b, 0xd4, 0xf0, 0x30, 0x31, 0xee, 0x27, 0xdc, 0x6e, 0x43,
0x4f, 0xf9, 0x26, 0xbd, 0xc6, 0xa4, 0x31, 0x41, 0xc7, 0xb0, 0xe5, 0x0a, 0xfd, 0xd2, 0x3a, 0x6f,
0xa5, 0x5c, 0x25, 0xec, 0xeb, 0x4a, 0x37, 0x68, 0x8f, 0xa9, 0x3e, 0x83, 0xe7, 0xb1, 0x6e, 0xc8,
0xb1, 0xbe, 0x84, 0x42, 0xcc, 0x67, 0x18, 0xef, 0x2e, 0x24, 0x89, 0x39, 0x31, 0x68, 0x74, 0x5f,
0x62, 0x4e, 0xba, 0x81, 0xfa, 0x06, 0x90, 0xe6, 0x53, 0x7b, 0x64, 0x52, 0x7c, 0x81, 0xf1, 0x2c,
0xc2, 0x43, 0x50, 0x58, 0xf3, 0x1b, 0xd4, 0x24, 0x03, 0x3c, 0x2b, 0x11, 0x30, 0x51, 0x97, 0x4b,
0xd4, 0xd7, 0x50, 0x88, 0x99, 0x85, 0x4e, 0xbe, 0x7b, 0x33, 0xf5, 0xdb, 0x06, 0x64, 0xae, 0xb1,
0x63, 0xd9, 0xce, 0xa0, 0x33, 0xc1, 0xd8, 0x8b, 0xb5, 0xd7, 0xda, 0x5f, 0xb4, 0x17, 0x7a, 0x07,
0x99, 0x89, 0x4d, 0x1d, 0xec, 0xfb, 0x06, 0x9d, 0x7a, 0x98, 0x17, 0x28, 0x77, 0xba, 0x57, 0x89,
0x46, 0x41, 0xe5, 0x56, 0xc0, 0xdd, 0xa9, 0x87, 0x75, 0x65, 0x32, 0x3f, 0xb0, 0x66, 0x32, 0x47,
0xee, 0xd8, 0xa1, 0x86, 0x6f, 0x52, 0x9e, 0xad, 0xac, 0x9e, 0x16, 0x92, 0x8e, 0x49, 0xd1, 0x11,
0x64, 0x66, 0x51, 0xf7, 0xa6, 0x14, 0x97, 0x36, 0xb9, 0x02, 0x88, 0xb8, 0xcf, 0xa7, 0x14, 0xa3,
0x57, 0x80, 0x7a, 0xc4, 0x35, 0xad, 0xbe, 0xe9, 0x53, 0xc3, 0xa4, 0x14, 0x8f, 0x3c, 0xea, 0x97,
0x12, 0x5c, 0x6f, 0x27, 0x42, 0xce, 0x42, 0x00, 0x9d, 0xc2, 0xae, 0x83, 0x03, 0x6a, 0xcc, 0x6d,
0xee, 0xb0, 0x3d, 0xb8, 0xa3, 0xa5, 0x24, 0xb7, 0x28, 0x30, 0xf0, 0x7c, 0x86, 0xd5, 0x39, 0xc4,
0x6c, 0x88, 0xc8, 0x3e, 0xb6, 0x0c, 0x39, 0xf9, 0x29, 0x61, 0x13, 0x81, 0xd5, 0xa8, 0x0a, 0xe8,
0x35, 0xec, 0xcd, 0x6d, 0x62, 0x57, 0x48, 0x2f, 0x18, 0x75, 0xe6, 0x77, 0x29, 0x42, 0xe2, 0xb3,
0x4b, 0xfa, 0xb8, 0xb4, 0x75, 0xb4, 0x76, 0x9c, 0xd2, 0xc5, 0x41, 0xdd, 0x83, 0xa2, 0x5c, 0x9a,
0x59, 0xaf, 0xaa, 0xb7, 0xb0, 0xbb, 0x20, 0x0f, 0x4b, 0xfd, 0x13, 0xe4, 0x3c, 0x01, 0x18, 0x3e,
0x47, 0xc2, 0xc1, 0xb7, 0x2f, 0x15, 0x44, 0xb6, 0xd4, 0xb3, 0x9e, 0xcc, 0xa3, 0xfe, 0xbe, 0x06,
0xb9, 0xf3, 0xf1, 0xc8, 0x93, 0xba, 0xee, 0x6f, 0xb5, 0xc3, 0x21, 0x28, 0x22, 0x41, 0x3c, 0x59,
0xbc, 0x1b, 0xb2, 0x3a, 0x08, 0x11, 0x4b, 0xd1, 0x52, 0x55, 0x37, 0x96, 0xaa, 0x1a, 0x65, 0x62,
0x53, 0xce, 0xc4, 0x0e, 0x6c, 0x47, 0x71, 0x85, 0x03, 0xec, 0x15, 0xec, 0xb0, 0x91, 0x1f, 0xcb,
0x0c, 0x2a, 0xc1, 0xd6, 0x57, 0x4c, 0x7a, 0xae, 0x8f, 0x79, 0xb0, 0x29, 0x7d, 0x76, 0x54, 0x7f,
0x5b, 0x17, 0x4f, 0xce, 0x42, 0xc6, 0x9a, 0x50, 0xa0, 0xf3, 0x01, 0x64, 0x58, 0x98, 0x9a, 0xf6,
0xd0, 0x0f, 0x6f, 0xfa, 0x38, 0xbc, 0xa9, 0x34, 0xa2, 0x6a, 0x42, 0xa1, 0xfe, 0x48, 0x47, 0x74,
0x49, 0x8a, 0x6e, 0x61, 0x5b, 0x66, 0xb3, 0x2d, 0x3f, 0x9c, 0xd0, 0x2f, 0xa5, 0x02, 0x2c, 0x47,
0x21, 0x3b, 0xb8, 0xac, 0x31, 0xf2, 0x9c, 0x44, 0x73, 0x69, 0xf9, 0xe5, 0x77, 0x90, 0x8b, 0xeb,
0xa0, 0xff, 0x2c, 0xbb, 0x62, 0xb5, 0x4e, 0x2f, 0x9a, 0x9e, 0xa7, 0x20, 0x29, 0x7a, 0x41, 0x35,
0x61, 0xbf, 0xc9, 0xa6, 0x91, 0xc4, 0x34, 0xcb, 0x1b, 0x82, 0x4d, 0x1a, 0x44, 0xaf, 0x0c, 0xff,
0x5e, 0x3d, 0x75, 0xd1, 0x01, 0xa4, 0xdd, 0xaf, 0x98, 0x4c, 0x88, 0x1d, 0x96, 0x2f, 0xa5, 0xcf,
0x05, 0x6a, 0x19, 0x4a, 0xcb, 0x2e, 0xc4, 0x25, 0xff, 0xfb, 0x6d, 0x03, 0x14, 0x69, 0x1a, 0xa0,
0x02, 0x6c, 0xdf, 0xb4, 0x1a, 0xad, 0xf6, 0x6d, 0xcb, 0xb8, 0xbd, 0xec, 0xb6, 0xb4, 0x4e, 0x27,
0xff, 0x08, 0x95, 0xa0, 0x58, 0x6d, 0x5f, 0x5d, 0x5d, 0x76, 0xaf, 0xb4, 0x56, 0xd7, 0xe8, 0x5e,
0x5e, 0x69, 0x46, 0xb3, 0x5d, 0x6d, 0xe4, 0xd7, 0xd0, 0x3e, 0x14, 0x24, 0xa4, 0xd5, 0x36, 0x6a,
0x5a, 0xf3, 0xec, 0x53, 0x7e, 0x1d, 0xed, 0xc2, 0x8e, 0x04, 0xe8, 0xda, 0xc7, 0x76, 0x43, 0xcb,
0x6f, 0x30, 0xfd, 0x7a, 0xb7, 0x59, 0x35, 0xda, 0x17, 0x17, 0x9a, 0xae, 0xd5, 0x66, 0xc0, 0x26,
0x73, 0xc1, 0x81, 0xb3, 0x6a, 0x55, 0xbb, 0xee, 0xce, 0x91, 0x04, 0xfa, 0x17, 0x3c, 0x8f, 0x99,
0x30, 0xf7, 0xed, 0x9b, 0xae, 0xd1, 0xd1, 0xaa, 0xed, 0x56, 0xcd, 0x68, 0x6a, 0x1f, 0xb5, 0x66,
0x3e, 0x89, 0xfe, 0x0d, 0x6a, 0x9c, 0xa0, 0x73, 0x53, 0xad, 0x6a, 0x9d, 0x4e, 0x5c, 0x6f, 0x0b,
0x1d, 0xc2, 0x93, 0x85, 0x08, 0xae, 0xda, 0x5d, 0x6d, 0xc6, 0x9a, 0x4f, 0xa1, 0x23, 0x38, 0x58,
0x8c, 0x84, 0x6b, 0x84, 0x7c, 0xf9, 0x34, 0x3a, 0x80, 0x12, 0xd7, 0x90, 0x99, 0x67, 0xf1, 0x02,
0x2a, 0x42, 0x3e, 0xcc, 0x9c, 0xd1, 0xd0, 0x3e, 0x19, 0xf5, 0xb3, 0x4e, 0x3d, 0xaf, 0xa0, 0x27,
0xb0, 0xdf, 0xd2, 0x3a, 0x8c, 0x6e, 0x09, 0xcc, 0x2c, 0x24, 0xeb, 0xac, 0x55, 0xad, 0xb7, 0xf5,
0x7c, 0xf6, 0xf4, 0x8f, 0x2d, 0x48, 0xdf, 0xf2, 0x0e, 0x6d, 0xd8, 0x14, 0x35, 0x41, 0x91, 0xb6,
0x29, 0xf4, 0x74, 0xa1, 0x79, 0xe3, 0x5b, 0x5b, 0xf9, 0xd9, 0x43, 0x70, 0xf4, 0x2f, 0xa6, 0x48,
0xeb, 0x50, 0x9c, 0x6d, 0x69, 0xdb, 0x89, 0xb3, 0xad, 0xd8, 0xa2, 0x74, 0xc8, 0xc6, 0x16, 0x1a,
0x74, 0x28, 0x19, 0xac, 0xda, 0x9f, 0xca, 0x47, 0x0f, 0x2b, 0x84, 0x9c, 0xef, 0x21, 0x5b, 0xc3,
0xc4, 0xfe, 0x8a, 0x5b, 0x38, 0xa0, 0x0d, 0x3c, 0x45, 0x3b, 0x92, 0x89, 0xd8, 0x92, 0xca, 0x7b,
0xd1, 0x83, 0xdf, 0xc0, 0xd3, 0x1a, 0xf6, 0xfb, 0xc4, 0xf6, 0xa8, 0x4b, 0xd0, 0x5b, 0x48, 0x0b,
0x5b, 0x66, 0x57, 0x90, 0x95, 0x9a, 0x6e, 0xdf, 0xa4, 0x2e, 0x79, 0xd0, 0xf2, 0x47, 0x48, 0x31,
0x7f, 0x6c, 0x47, 0x42, 0xf2, 0x8b, 0x29, 0xed, 0x50, 0xe5, 0xfd, 0x25, 0x79, 0x18, 0x72, 0x1d,
0x50, 0xb8, 0xfc, 0xc8, 0xfb, 0x93, 0x4c, 0x23, 0xc9, 0xcb, 0x65, 0x79, 0xfe, 0x2f, 0xec, 0x4c,
0x4d, 0x50, 0xa4, 0xd5, 0x24, 0x56, 0x9e, 0xe5, 0x35, 0x29, 0x56, 0x9e, 0x55, 0x1b, 0x4d, 0x13,
0x14, 0x69, 0x07, 0x89, 0xb1, 0x2d, 0xaf, 0x34, 0x31, 0xb6, 0x55, 0xab, 0x8b, 0x0e, 0xd9, 0xd8,
0x43, 0x17, 0x2b, 0xf6, 0xaa, 0xa7, 0x31, 0x56, 0xec, 0xd5, 0x6f, 0xe4, 0xcf, 0xb0, 0x15, 0x3e,
0x25, 0xe8, 0xb1, 0xa4, 0x1c, 0x7f, 0xf6, 0x62, 0x19, 0x5b, 0x78, 0x79, 0xd0, 0x25, 0xc0, 0x7c,
0x86, 0xa3, 0x83, 0x07, 0x46, 0xbb, 0xe0, 0x79, 0xfa, 0xdd, 0xc1, 0x8f, 0x7e, 0x85, 0xfc, 0xe2,
0xbc, 0x44, 0xaa, 0x6c, 0xb2, 0x7a, 0x5e, 0x97, 0x5f, 0x7c, 0x57, 0x47, 0x90, 0x9f, 0xff, 0xff,
0x97, 0x93, 0x81, 0x4d, 0xef, 0xc6, 0xbd, 0x4a, 0xdf, 0x1d, 0x9d, 0x0c, 0xd9, 0x46, 0xe3, 0xd8,
0xce, 0xc0, 0xc1, 0x74, 0xe2, 0x92, 0xfb, 0x93, 0xa1, 0x63, 0x9d, 0xf0, 0xf7, 0xed, 0x24, 0xe2,
0xea, 0x25, 0xf9, 0xcf, 0xb3, 0xd7, 0x7f, 0x06, 0x00, 0x00, 0xff, 0xff, 0x01, 0xb2, 0xa4, 0x25,
0xe7, 0x0d, 0x00, 0x00,
// 1460 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x6f, 0x6f, 0x1a, 0x47,
0x13, 0x8f, 0xff, 0x61, 0x98, 0x03, 0x8c, 0x17, 0x6c, 0x13, 0xe2, 0xc4, 0xce, 0x45, 0xcf, 0x53,
0xab, 0x49, 0xb0, 0xea, 0x28, 0x55, 0x92, 0x4a, 0x55, 0x6d, 0x38, 0x0b, 0x0b, 0x0c, 0xce, 0x81,
0x63, 0xa5, 0x7d, 0x71, 0x3a, 0xb8, 0x0d, 0x3e, 0x19, 0xee, 0x2e, 0x7b, 0x4b, 0x38, 0xde, 0xf5,
0x53, 0x54, 0xca, 0x77, 0xe9, 0xa7, 0xe8, 0x27, 0xaa, 0x76, 0xf7, 0x38, 0xf6, 0x00, 0xa7, 0xaa,
0xd4, 0x57, 0xbe, 0x9d, 0xdf, 0xcc, 0x6f, 0x67, 0x67, 0xc6, 0x33, 0x03, 0x3c, 0x1c, 0x9b, 0x83,
0x01, 0xa6, 0xc4, 0xeb, 0x1d, 0x8b, 0xaf, 0x3b, 0x9b, 0x96, 0x3d, 0xe2, 0x52, 0x17, 0xa5, 0x22,
0xa8, 0x94, 0x22, 0x5e, 0x4f, 0x48, 0x4b, 0x05, 0xdf, 0xee, 0x3b, 0x4c, 0x9d, 0xfd, 0xc5, 0x44,
0x48, 0xd5, 0x26, 0xa0, 0x86, 0xed, 0xd3, 0x6b, 0xc7, 0xf7, 0xb0, 0x43, 0x75, 0xfc, 0x79, 0x84,
0x7d, 0x8a, 0x1e, 0x41, 0x6a, 0x68, 0x3b, 0x46, 0xcf, 0x75, 0x3e, 0xf9, 0xc5, 0x95, 0xc3, 0x95,
0xa3, 0x0d, 0x3d, 0x39, 0xb4, 0x9d, 0x0a, 0x3b, 0x73, 0xd0, 0x0c, 0x42, 0x70, 0x35, 0x04, 0xcd,
0x80, 0x83, 0xea, 0x1b, 0xc8, 0xc7, 0xf8, 0x7c, 0xcf, 0x75, 0x7c, 0x8c, 0x9e, 0xc2, 0xc6, 0x88,
0x06, 0x2e, 0x23, 0x5b, 0x3b, 0x52, 0x4e, 0x94, 0xf2, 0x80, 0xb9, 0x52, 0xbe, 0xa6, 0x81, 0xab,
0x0b, 0x44, 0x7d, 0x0f, 0xa8, 0x81, 0x4d, 0x1f, 0xb7, 0x46, 0xd4, 0x1b, 0x45, 0x9e, 0x64, 0x61,
0xd5, 0xb6, 0xb8, 0x0b, 0x69, 0x7d, 0xd5, 0xb6, 0xd0, 0x73, 0x48, 0xba, 0x23, 0xea, 0xb9, 0xb6,
0x43, 0xf9, 0xdd, 0xca, 0xc9, 0x56, 0xc8, 0xd5, 0x1a, 0xd1, 0x2b, 0x26, 0xd6, 0x23, 0x05, 0xf5,
0x35, 0xe4, 0x63, 0x94, 0xa1, 0x33, 0x4f, 0x00, 0x70, 0xe0, 0xd9, 0xc4, 0xa4, 0xb6, 0xeb, 0x70,
0xee, 0x75, 0x5d, 0x92, 0xa8, 0x6d, 0x28, 0xe8, 0x78, 0xf0, 0x1f, 0xfb, 0xb2, 0x07, 0x3b, 0x73,
0xa4, 0xc2, 0x1b, 0xf5, 0x3d, 0x24, 0xea, 0x78, 0xa2, 0xe3, 0xcf, 0xe8, 0x08, 0x72, 0x77, 0x78,
0x62, 0x7c, 0xb2, 0x9d, 0x3e, 0x26, 0x86, 0x47, 0x18, 0xaf, 0x08, 0x7e, 0xf6, 0x0e, 0x4f, 0xce,
0xb9, 0xf8, 0x8a, 0x49, 0xd1, 0x63, 0x00, 0xae, 0x69, 0x0e, 0xed, 0xc1, 0x24, 0xcc, 0x41, 0x8a,
0xe9, 0x70, 0x81, 0x9a, 0x01, 0xe5, 0xd4, 0xb2, 0x48, 0xe8, 0xb7, 0xaa, 0x42, 0x5a, 0x1c, 0xc3,
0xf7, 0x23, 0x58, 0x37, 0x2d, 0x8b, 0x70, 0xee, 0x94, 0xce, 0xbf, 0xd5, 0x77, 0xa0, 0x74, 0x88,
0xe9, 0xf8, 0x66, 0x8f, 0x85, 0x00, 0xed, 0x40, 0x82, 0x06, 0xc6, 0x2d, 0x0e, 0xc2, 0xe7, 0x6e,
0xd0, 0xa0, 0x86, 0x03, 0x54, 0x80, 0x8d, 0x81, 0xd9, 0xc5, 0x03, 0x7e, 0x65, 0x4a, 0x17, 0x07,
0xf5, 0x47, 0xd8, 0xba, 0x1a, 0x75, 0x07, 0xb6, 0x7f, 0x1b, 0x5d, 0xf1, 0x0c, 0x32, 0x9e, 0x10,
0x19, 0x98, 0x10, 0x77, 0x7a, 0x57, 0x3a, 0x14, 0x6a, 0x4c, 0xa6, 0xfe, 0xb9, 0x02, 0xa8, 0x8d,
0x1d, 0x4b, 0x04, 0xc4, 0x9f, 0x86, 0x79, 0x1f, 0xc0, 0x37, 0xa9, 0xe1, 0x61, 0x62, 0xdc, 0x8d,
0xb9, 0xe1, 0x9a, 0x9e, 0xf4, 0x4d, 0x7a, 0x85, 0x49, 0x7d, 0x8c, 0x8e, 0x60, 0xd3, 0x15, 0xfa,
0xc5, 0x55, 0x5e, 0x4b, 0xd9, 0x72, 0x58, 0xd8, 0xe5, 0x4e, 0xd0, 0x1a, 0x51, 0x7d, 0x0a, 0xcf,
0x9c, 0x5d, 0x93, 0x9c, 0x8d, 0x97, 0xf6, 0xfa, 0x5c, 0x69, 0x3f, 0x87, 0x6d, 0x56, 0xb7, 0x96,
0x31, 0x72, 0x98, 0x82, 0x4d, 0x86, 0xd8, 0x2a, 0x6e, 0x1c, 0xae, 0x1c, 0x25, 0xf5, 0x1c, 0x07,
0xae, 0x67, 0x72, 0xf5, 0x05, 0xe4, 0x63, 0xde, 0x87, 0x4f, 0xdf, 0x81, 0x04, 0x31, 0xc7, 0x06,
0x8d, 0x42, 0x47, 0xcc, 0x71, 0x27, 0x50, 0x5f, 0x03, 0xd2, 0x7c, 0x6a, 0x0f, 0x4d, 0x8a, 0xcf,
0x31, 0x9e, 0xbe, 0xf5, 0x00, 0x14, 0x46, 0x68, 0x50, 0x93, 0xf4, 0xf1, 0x34, 0xdb, 0xc0, 0x44,
0x1d, 0x2e, 0x51, 0x5f, 0x41, 0x3e, 0x66, 0x16, 0x5e, 0xf2, 0xcd, 0x18, 0xa9, 0x5f, 0xd7, 0x20,
0x7d, 0x85, 0x1d, 0xcb, 0x76, 0xfa, 0xed, 0x31, 0xc6, 0x5e, 0xac, 0x52, 0x57, 0xfe, 0xa1, 0x52,
0xd1, 0x5b, 0x48, 0x8f, 0x6d, 0xea, 0x60, 0xdf, 0x37, 0xe8, 0xc4, 0xc3, 0x3c, 0xd7, 0xd9, 0x93,
0xdd, 0x72, 0xd4, 0x55, 0xca, 0x37, 0x02, 0xee, 0x4c, 0x3c, 0xac, 0x2b, 0xe3, 0xd9, 0x81, 0xd5,
0xa5, 0x39, 0x74, 0x47, 0x0e, 0x35, 0x7c, 0x93, 0xf2, 0xb8, 0x67, 0xf4, 0x94, 0x90, 0xb4, 0x4d,
0x8a, 0x0e, 0x21, 0x3d, 0xf5, 0xba, 0x3b, 0xa1, 0x98, 0x87, 0x3f, 0xa3, 0x83, 0xf0, 0xfb, 0x6c,
0x42, 0x31, 0x7a, 0x09, 0xa8, 0x4b, 0x5c, 0xd3, 0xea, 0x99, 0x3e, 0x35, 0x4c, 0x4a, 0xf1, 0xd0,
0xa3, 0x3e, 0xcf, 0x40, 0x46, 0xdf, 0x8e, 0x90, 0xd3, 0x10, 0x40, 0x27, 0xb0, 0xe3, 0xe0, 0x80,
0x1a, 0x33, 0x9b, 0x5b, 0x6c, 0xf7, 0x6f, 0x69, 0x31, 0xc1, 0x2d, 0xf2, 0x0c, 0x3c, 0x9b, 0x62,
0x35, 0x0e, 0x31, 0x1b, 0x22, 0xa2, 0x8f, 0x2d, 0x43, 0x0e, 0x7e, 0x52, 0xd8, 0x44, 0x60, 0x25,
0xca, 0x02, 0x7a, 0x05, 0xbb, 0x33, 0x9b, 0xd8, 0x13, 0x52, 0x73, 0x46, 0xed, 0xd9, 0x5b, 0x0a,
0xb0, 0xf1, 0xc9, 0x25, 0x3d, 0x5c, 0xdc, 0xe4, 0x05, 0x24, 0x0e, 0xea, 0x2e, 0x14, 0xe4, 0xd4,
0x4c, 0xab, 0x5e, 0xbd, 0x81, 0x9d, 0x39, 0x79, 0x98, 0xea, 0x9f, 0x21, 0xeb, 0x09, 0xc0, 0xf0,
0x39, 0x12, 0xf6, 0xd0, 0x3d, 0x29, 0x21, 0xb2, 0xa5, 0x9e, 0xf1, 0x64, 0x1e, 0xf5, 0x8f, 0x15,
0xc8, 0x9e, 0x8d, 0x86, 0x9e, 0x54, 0x75, 0xff, 0xaa, 0x1c, 0x0e, 0x40, 0x11, 0x01, 0xe2, 0xc1,
0xe2, 0xd5, 0x90, 0xd1, 0x41, 0x88, 0x58, 0x88, 0x16, 0xb2, 0xba, 0xb6, 0x90, 0xd5, 0x28, 0x12,
0xeb, 0x72, 0x24, 0xb6, 0x61, 0x2b, 0xf2, 0x2b, 0xec, 0x85, 0x2f, 0x61, 0x9b, 0x4d, 0x8f, 0x58,
0x64, 0x50, 0x11, 0x36, 0xbf, 0x60, 0xd2, 0x75, 0x7d, 0xcc, 0x9d, 0x4d, 0xea, 0xd3, 0xa3, 0xfa,
0xfb, 0xaa, 0x98, 0x5e, 0x73, 0x11, 0x6b, 0x40, 0x9e, 0xce, 0x7a, 0x99, 0x61, 0x61, 0x6a, 0xda,
0x03, 0x3f, 0x7c, 0xe9, 0xc3, 0xf0, 0xa5, 0x52, 0xb7, 0xab, 0x0a, 0x85, 0xda, 0x03, 0x1d, 0xd1,
0x05, 0x29, 0xba, 0x81, 0x2d, 0x99, 0xcd, 0xb6, 0xfc, 0xb0, 0xd9, 0xbf, 0x90, 0x12, 0xb0, 0xe8,
0x85, 0x7c, 0xc1, 0x45, 0x95, 0x91, 0x67, 0x25, 0x9a, 0x0b, 0xcb, 0x2f, 0xbd, 0x85, 0x6c, 0x5c,
0x07, 0x7d, 0xb7, 0x78, 0x15, 0xcb, 0x75, 0x6a, 0xde, 0xf4, 0x2c, 0x09, 0x09, 0x51, 0x0b, 0xaa,
0x09, 0x7b, 0x0d, 0xd6, 0xd7, 0x24, 0xa6, 0x69, 0xdc, 0x10, 0xac, 0xd3, 0x20, 0x1a, 0x58, 0xfc,
0x7b, 0x79, 0x03, 0x47, 0xfb, 0x90, 0x72, 0xbf, 0x60, 0x32, 0x26, 0x76, 0x98, 0xbe, 0xa4, 0x3e,
0x13, 0xa8, 0x25, 0x28, 0x2e, 0x5e, 0x21, 0x1e, 0xf9, 0xfd, 0xd7, 0x35, 0x50, 0xa4, 0x6e, 0x80,
0xf2, 0xb0, 0x75, 0xdd, 0xac, 0x37, 0x5b, 0x37, 0x4d, 0xe3, 0xe6, 0xa2, 0xd3, 0xd4, 0xda, 0xed,
0xdc, 0x03, 0x54, 0x84, 0x42, 0xa5, 0x75, 0x79, 0x79, 0xd1, 0xb9, 0xd4, 0x9a, 0x1d, 0xa3, 0x73,
0x71, 0xa9, 0x19, 0x8d, 0x56, 0xa5, 0x9e, 0x5b, 0x41, 0x7b, 0x90, 0x97, 0x90, 0x66, 0xcb, 0xa8,
0x6a, 0x8d, 0xd3, 0x8f, 0xb9, 0x55, 0xb4, 0x03, 0xdb, 0x12, 0xa0, 0x6b, 0x1f, 0x5a, 0x75, 0x2d,
0xb7, 0xc6, 0xf4, 0x6b, 0x9d, 0x46, 0xc5, 0x68, 0x9d, 0x9f, 0x6b, 0xba, 0x56, 0x9d, 0x02, 0xeb,
0xec, 0x0a, 0x0e, 0x9c, 0x56, 0x2a, 0xda, 0x55, 0x67, 0x86, 0x6c, 0xa0, 0xff, 0xc1, 0xd3, 0x98,
0x09, 0xbb, 0xbe, 0x75, 0xdd, 0x31, 0xda, 0x5a, 0xa5, 0xd5, 0xac, 0x1a, 0x0d, 0xed, 0x83, 0xd6,
0xc8, 0x25, 0xd0, 0xff, 0x41, 0x8d, 0x13, 0xb4, 0xaf, 0x2b, 0x15, 0xad, 0xdd, 0x8e, 0xeb, 0x6d,
0xa2, 0x03, 0x78, 0x34, 0xe7, 0xc1, 0x65, 0xab, 0xa3, 0x4d, 0x59, 0x73, 0x49, 0x74, 0x08, 0xfb,
0xf3, 0x9e, 0x70, 0x8d, 0x90, 0x2f, 0x97, 0x42, 0xfb, 0x50, 0xe4, 0x1a, 0x32, 0xf3, 0xd4, 0x5f,
0x40, 0x05, 0xc8, 0x85, 0x91, 0x33, 0xea, 0xda, 0x47, 0xa3, 0x76, 0xda, 0xae, 0xe5, 0x14, 0xf4,
0x08, 0xf6, 0x9a, 0x5a, 0x9b, 0xd1, 0x2d, 0x80, 0xe9, 0xb9, 0x60, 0x9d, 0x36, 0x2b, 0xb5, 0x96,
0x9e, 0xcb, 0x9c, 0xfc, 0xb5, 0x09, 0xa9, 0x1b, 0x5e, 0xa1, 0x75, 0x9b, 0xa2, 0x06, 0x28, 0xd2,
0x62, 0x86, 0x1e, 0xcf, 0x15, 0x6f, 0x7c, 0x01, 0x2c, 0x3d, 0xb9, 0x0f, 0x8e, 0xfe, 0xc5, 0x14,
0x69, 0xb3, 0x8a, 0xb3, 0x2d, 0x2c, 0x4e, 0x71, 0xb6, 0x25, 0x0b, 0x99, 0x0e, 0x99, 0xd8, 0x6e,
0x84, 0x0e, 0x24, 0x83, 0x65, 0xab, 0x58, 0xe9, 0xf0, 0x7e, 0x85, 0x90, 0xf3, 0x1d, 0x64, 0xaa,
0x98, 0xd8, 0x5f, 0x70, 0x13, 0x07, 0xb4, 0x8e, 0x27, 0x68, 0x5b, 0x32, 0x11, 0x0b, 0x57, 0x69,
0x37, 0x5a, 0x1d, 0xea, 0x78, 0x52, 0xc5, 0x7e, 0x8f, 0xd8, 0x1e, 0x75, 0x09, 0x7a, 0x03, 0x29,
0x61, 0xcb, 0xec, 0xf2, 0xb2, 0x52, 0xc3, 0xed, 0x99, 0xd4, 0x25, 0xf7, 0x5a, 0xfe, 0x04, 0x49,
0x76, 0x1f, 0x5b, 0xb7, 0x90, 0x3c, 0x31, 0xa5, 0x75, 0xac, 0xb4, 0xb7, 0x20, 0x0f, 0x5d, 0xae,
0x01, 0x0a, 0xf7, 0x28, 0x79, 0x15, 0x93, 0x69, 0x24, 0x79, 0xa9, 0x24, 0xf7, 0xff, 0xb9, 0xf5,
0xab, 0x01, 0x8a, 0xb4, 0x9a, 0xc4, 0xd2, 0xb3, 0xb8, 0x70, 0xc5, 0xd2, 0xb3, 0x6c, 0xa3, 0x69,
0x80, 0x22, 0xed, 0x20, 0x31, 0xb6, 0xc5, 0x95, 0x26, 0xc6, 0xb6, 0x6c, 0x75, 0xd1, 0x21, 0x13,
0x1b, 0x74, 0xb1, 0x64, 0x2f, 0x1b, 0x8d, 0xb1, 0x64, 0x2f, 0x9f, 0x91, 0xbf, 0xc0, 0x66, 0x38,
0x4a, 0xd0, 0x43, 0x49, 0x39, 0x3e, 0xf6, 0x62, 0x11, 0x9b, 0x9b, 0x3c, 0xe8, 0x02, 0x60, 0xd6,
0xc3, 0xd1, 0xfe, 0x3d, 0xad, 0x5d, 0xf0, 0x3c, 0xfe, 0x66, 0xe3, 0x47, 0xbf, 0x41, 0x6e, 0xbe,
0x5f, 0x22, 0x55, 0x36, 0x59, 0xde, 0xaf, 0x4b, 0xcf, 0xbe, 0xa9, 0x23, 0xc8, 0xcf, 0x7e, 0xf8,
0xf5, 0xb8, 0x6f, 0xd3, 0xdb, 0x51, 0xb7, 0xdc, 0x73, 0x87, 0xc7, 0x03, 0xb6, 0xd1, 0x38, 0xb6,
0xd3, 0x77, 0x30, 0x1d, 0xbb, 0xe4, 0xee, 0x78, 0xe0, 0x58, 0xc7, 0x7c, 0xbe, 0x1d, 0x47, 0x5c,
0xdd, 0x04, 0xff, 0xa5, 0xf7, 0xea, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x49, 0x6e, 0x8a, 0xc5,
0x32, 0x0e, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.

View File

@ -233,6 +233,13 @@ message SendOutputsRequest {
// An optional label for the transaction, limited to 500 characters.
string label = 3;
// The minimum number of confirmations each one of your outputs used for
// the transaction must satisfy.
int32 min_confs = 4;
// Whether unconfirmed outputs should be used as inputs for the transaction.
bool spend_unconfirmed = 5;
}
message SendOutputsResponse {
/*

View File

@ -877,6 +877,16 @@
"label": {
"type": "string",
"description": "An optional label for the transaction, limited to 500 characters."
},
"min_confs": {
"type": "integer",
"format": "int32",
"description": "The minimum number of confirmations each one of your outputs used for\nthe transaction must satisfy."
},
"spend_unconfirmed": {
"type": "boolean",
"format": "boolean",
"description": "Whether unconfirmed outputs should be used as inputs for the transaction."
}
}
},

View File

@ -473,6 +473,13 @@ func (w *WalletKit) SendOutputs(ctx context.Context,
})
}
// Then, we'll extract the minimum number of confirmations that each
// output we use to fund the transaction should satisfy.
minConfs, err := lnrpc.ExtractMinConfs(req.MinConfs, req.SpendUnconfirmed)
if err != nil {
return nil, err
}
label, err := labels.ValidateAPI(req.Label)
if err != nil {
return nil, err
@ -481,7 +488,7 @@ func (w *WalletKit) SendOutputs(ctx context.Context,
// Now that we have the outputs mapped, we can request that the wallet
// attempt to create this transaction.
tx, err := w.cfg.Wallet.SendOutputs(
outputsToCreate, chainfee.SatPerKWeight(req.SatPerKw), label,
outputsToCreate, chainfee.SatPerKWeight(req.SatPerKw), minConfs, label,
)
if err != nil {
return nil, err

View File

@ -78,7 +78,7 @@ func (w *WalletController) IsOurAddress(a btcutil.Address) bool {
// SendOutputs currently returns dummy values.
func (w *WalletController) SendOutputs(outputs []*wire.TxOut,
_ chainfee.SatPerKWeight, _ string) (*wire.MsgTx, error) {
_ chainfee.SatPerKWeight, _ int32, _ string) (*wire.MsgTx, error) {
return nil, nil
}

View File

@ -297,7 +297,7 @@ func (b *BtcWallet) IsOurAddress(a btcutil.Address) bool {
//
// This is a part of the WalletController interface.
func (b *BtcWallet) SendOutputs(outputs []*wire.TxOut,
feeRate chainfee.SatPerKWeight, label string) (*wire.MsgTx, error) {
feeRate chainfee.SatPerKWeight, minconf int32, label string) (*wire.MsgTx, error) {
// Convert our fee rate from sat/kw to sat/kb since it's required by
// SendOutputs.
@ -308,8 +308,13 @@ func (b *BtcWallet) SendOutputs(outputs []*wire.TxOut,
return nil, lnwallet.ErrNoOutputs
}
// Sanity check minconf.
if minconf < 0 {
return nil, lnwallet.ErrInvalidMinconf
}
return b.wallet.SendOutputs(
outputs, defaultAccount, 1, feeSatPerKB, label,
outputs, defaultAccount, minconf, feeSatPerKB, label,
)
}

View File

@ -56,6 +56,11 @@ var (
// or send coins to a set of outputs that is empty.
var ErrNoOutputs = errors.New("no outputs")
// ErrInvalidMinconf is returned if we try to create a transaction with
// invalid minconf value.
var ErrInvalidMinconf = errors.New("minimum number of confirmations must " +
"be a non-negative number")
// Utxo is an unspent output denoted by its outpoint, and output value of the
// original output.
type Utxo struct {
@ -181,7 +186,7 @@ type WalletController interface {
//
// NOTE: This method requires the global coin selection lock to be held.
SendOutputs(outputs []*wire.TxOut,
feeRate chainfee.SatPerKWeight, label string) (*wire.MsgTx, error)
feeRate chainfee.SatPerKWeight, minconf int32, label string) (*wire.MsgTx, error)
// CreateSimpleTx creates a Bitcoin transaction paying to the specified
// outputs. The transaction is not broadcasted to the network. In the

View File

@ -171,18 +171,20 @@ func newPkScript(t *testing.T, w *lnwallet.LightningWallet,
// parties to send on-chain funds to each other.
func sendCoins(t *testing.T, miner *rpctest.Harness,
sender, receiver *lnwallet.LightningWallet, output *wire.TxOut,
feeRate chainfee.SatPerKWeight) *wire.MsgTx { //nolint:unparam
feeRate chainfee.SatPerKWeight, mineBlock bool, minConf int32) *wire.MsgTx { //nolint:unparam
t.Helper()
tx, err := sender.SendOutputs(
[]*wire.TxOut{output}, 2500, labels.External,
[]*wire.TxOut{output}, feeRate, minConf, labels.External,
)
if err != nil {
t.Fatalf("unable to send transaction: %v", err)
}
mineAndAssertTxInBlock(t, miner, tx.TxHash())
if mineBlock {
mineAndAssertTxInBlock(t, miner, tx.TxHash())
}
if err := waitForWalletSync(miner, sender); err != nil {
t.Fatalf("unable to sync alice: %v", err)
@ -201,12 +203,6 @@ func assertTxInWallet(t *testing.T, w *lnwallet.LightningWallet,
t.Helper()
// If the backend is Neutrino, then we can't determine unconfirmed
// transactions since it's not aware of the mempool.
if !confirmed && w.BackEnd() == "neutrino" {
return
}
// We'll fetch all of our transaction and go through each one until
// finding the expected transaction with its expected confirmation
// status.
@ -1269,7 +1265,7 @@ func testListTransactionDetails(miner *rpctest.Harness,
}
burnOutput := wire.NewTxOut(outputAmt, outputScript)
burnTX, err := alice.SendOutputs(
[]*wire.TxOut{burnOutput}, 2500, labels.External,
[]*wire.TxOut{burnOutput}, 2500, 1, labels.External,
)
if err != nil {
t.Fatalf("unable to create burn tx: %v", err)
@ -1544,7 +1540,7 @@ func testTransactionSubscriptions(miner *rpctest.Harness,
}
burnOutput := wire.NewTxOut(outputAmt, outputScript)
tx, err := alice.SendOutputs(
[]*wire.TxOut{burnOutput}, 2500, labels.External,
[]*wire.TxOut{burnOutput}, 2500, 1, labels.External,
)
if err != nil {
t.Fatalf("unable to create burn tx: %v", err)
@ -1737,7 +1733,7 @@ func newTx(t *testing.T, r *rpctest.Harness, pubKey *btcec.PublicKey,
PkScript: keyScript,
}
tx, err := alice.SendOutputs(
[]*wire.TxOut{newOutput}, 2500, labels.External,
[]*wire.TxOut{newOutput}, 2500, 1, labels.External,
)
if err != nil {
t.Fatalf("unable to create output: %v", err)
@ -2028,7 +2024,7 @@ func testSignOutputUsingTweaks(r *rpctest.Harness,
PkScript: keyScript,
}
tx, err := alice.SendOutputs(
[]*wire.TxOut{newOutput}, 2500, labels.External,
[]*wire.TxOut{newOutput}, 2500, 1, labels.External,
)
if err != nil {
t.Fatalf("unable to create output: %v", err)
@ -2152,7 +2148,7 @@ func testReorgWalletBalance(r *rpctest.Harness, w *lnwallet.LightningWallet,
PkScript: script,
}
tx, err := w.SendOutputs(
[]*wire.TxOut{output}, 2500, labels.External,
[]*wire.TxOut{output}, 2500, 1, labels.External,
)
if err != nil {
t.Fatalf("unable to send outputs: %v", err)
@ -2311,7 +2307,7 @@ func testChangeOutputSpendConfirmation(r *rpctest.Harness,
}
bobPkScript := newPkScript(t, bob, lnwallet.WitnessPubKey)
// We'll use a transaction fee of 13020 satoshis, which will allow us to
// We'll use a transaction fee of 14380 satoshis, which will allow us to
// sweep all of Alice's balance in one transaction containing 1 input
// and 1 output.
//
@ -2323,7 +2319,7 @@ func testChangeOutputSpendConfirmation(r *rpctest.Harness,
Value: int64(aliceBalance - txFee),
PkScript: bobPkScript,
}
tx := sendCoins(t, r, alice, bob, output, txFeeRate)
tx := sendCoins(t, r, alice, bob, output, txFeeRate, true, 1)
txHash := tx.TxHash()
assertTxInWallet(t, alice, txHash, true)
assertTxInWallet(t, bob, txHash, true)
@ -2345,7 +2341,7 @@ func testChangeOutputSpendConfirmation(r *rpctest.Harness,
Value: btcutil.SatoshiPerBitcoin,
PkScript: alicePkScript,
}
tx = sendCoins(t, r, bob, alice, output, txFeeRate)
tx = sendCoins(t, r, bob, alice, output, txFeeRate, true, 1)
txHash = tx.TxHash()
assertTxInWallet(t, alice, txHash, true)
assertTxInWallet(t, bob, txHash, true)
@ -2357,14 +2353,14 @@ func testChangeOutputSpendConfirmation(r *rpctest.Harness,
Value: btcutil.SatoshiPerBitcent,
PkScript: bobPkScript,
}
tx = sendCoins(t, r, alice, bob, output, txFeeRate)
tx = sendCoins(t, r, alice, bob, output, txFeeRate, true, 1)
txHash = tx.TxHash()
assertTxInWallet(t, alice, txHash, true)
assertTxInWallet(t, bob, txHash, true)
// Then, we'll spend the change output and ensure we see its
// confirmation come in.
tx = sendCoins(t, r, alice, bob, output, txFeeRate)
tx = sendCoins(t, r, alice, bob, output, txFeeRate, true, 1)
txHash = tx.TxHash()
assertTxInWallet(t, alice, txHash, true)
assertTxInWallet(t, bob, txHash, true)
@ -2376,6 +2372,101 @@ func testChangeOutputSpendConfirmation(r *rpctest.Harness,
}
}
// testSpendUnconfirmed ensures that when can spend unconfirmed outputs.
func testSpendUnconfirmed(miner *rpctest.Harness,
alice, bob *lnwallet.LightningWallet, t *testing.T) {
bobPkScript := newPkScript(t, bob, lnwallet.WitnessPubKey)
alicePkScript := newPkScript(t, alice, lnwallet.WitnessPubKey)
txFeeRate := chainfee.SatPerKWeight(2500)
// First we will empty out bob's wallet, sending the entire balance
// to alice.
bobBalance, err := bob.ConfirmedBalance(0)
if err != nil {
t.Fatalf("unable to retrieve bob's balance: %v", err)
}
txFee := btcutil.Amount(28760)
output := &wire.TxOut{
Value: int64(bobBalance - txFee),
PkScript: alicePkScript,
}
tx := sendCoins(t, miner, bob, alice, output, txFeeRate, true, 1)
txHash := tx.TxHash()
assertTxInWallet(t, alice, txHash, true)
assertTxInWallet(t, bob, txHash, true)
// Verify that bob doesn't have enough balance to send coins.
output = &wire.TxOut{
Value: btcutil.SatoshiPerBitcoin * 0.5,
PkScript: alicePkScript,
}
_, err = bob.SendOutputs(
[]*wire.TxOut{output}, txFeeRate, 0, labels.External,
)
if err == nil {
t.Fatalf("should have not been able to pay due to insufficient balance: %v", err)
}
// Next we will send a transaction to bob but leave it in an
// unconfirmed state.
output = &wire.TxOut{
Value: btcutil.SatoshiPerBitcoin,
PkScript: bobPkScript,
}
tx = sendCoins(t, miner, alice, bob, output, txFeeRate, false, 1)
txHash = tx.TxHash()
assertTxInWallet(t, alice, txHash, false)
assertTxInWallet(t, bob, txHash, false)
// Now, try to spend some of the unconfirmed funds from bob's wallet.
output = &wire.TxOut{
Value: btcutil.SatoshiPerBitcoin * 0.5,
PkScript: alicePkScript,
}
// First, verify that we don't have enough balance to send the coins
// using confirmed outputs only.
_, err = bob.SendOutputs(
[]*wire.TxOut{output}, txFeeRate, 1, labels.External,
)
if err == nil {
t.Fatalf("should have not been able to pay due to insufficient balance: %v", err)
}
// Now try the send again using unconfirmed outputs.
tx = sendCoins(t, miner, bob, alice, output, txFeeRate, false, 0)
txHash = tx.TxHash()
assertTxInWallet(t, alice, txHash, false)
assertTxInWallet(t, bob, txHash, false)
// Mine the unconfirmed transactions.
err = waitForMempoolTx(miner, &txHash)
if err != nil {
t.Fatalf("tx not relayed to miner: %v", err)
}
if _, err := miner.Node.Generate(1); err != nil {
t.Fatalf("unable to generate block: %v", err)
}
if err := waitForWalletSync(miner, alice); err != nil {
t.Fatalf("unable to sync alice: %v", err)
}
if err := waitForWalletSync(miner, bob); err != nil {
t.Fatalf("unable to sync bob: %v", err)
}
// Finally, send the remainder of bob's wallet balance back to him so
// that these money movements dont mess up later tests.
output = &wire.TxOut{
Value: int64(bobBalance) - (btcutil.SatoshiPerBitcoin * 0.4),
PkScript: bobPkScript,
}
tx = sendCoins(t, miner, alice, bob, output, txFeeRate, true, 1)
txHash = tx.TxHash()
assertTxInWallet(t, alice, txHash, true)
assertTxInWallet(t, bob, txHash, true)
}
// testLastUnusedAddr tests that the LastUnusedAddress returns the address if
// it isn't used, and also that once the address becomes used, then it's
// properly rotated.
@ -2418,7 +2509,7 @@ func testLastUnusedAddr(miner *rpctest.Harness,
Value: 1000000,
PkScript: addrScript,
}
sendCoins(t, miner, bob, alice, output, feeRate)
sendCoins(t, miner, bob, alice, output, feeRate, true, 1)
// If we make a new address, then it should be brand new, as
// the prior address has been used.
@ -2534,7 +2625,7 @@ func testCreateSimpleTx(r *rpctest.Harness, w *lnwallet.LightningWallet,
// _very_ similar to the one we just created being sent. The
// only difference is that the dry run tx is not signed, and
// that the change output position might be different.
tx, sendErr := w.SendOutputs(outputs, feeRate, labels.External)
tx, sendErr := w.SendOutputs(outputs, feeRate, 1, labels.External)
switch {
case test.valid && sendErr != nil:
t.Fatalf("got unexpected error when sending tx: %v",
@ -2678,6 +2769,10 @@ var walletTests = []walletTestCase{
name: "change output spend confirmation",
test: testChangeOutputSpendConfirmation,
},
{
name: "spend unconfirmed outputs",
test: testSpendUnconfirmed,
},
{
name: "insane fee reject",
test: testReservationInitiatorBalanceBelowDustCancel,
@ -3310,6 +3405,10 @@ func runTests(t *testing.T, walletDriver *lnwallet.WalletDriver,
strings.Contains(walletTest.name, "dual funder") {
t.Skip("skipping dual funder tests for neutrino")
}
if backEnd == "neutrino" &&
strings.Contains(walletTest.name, "spend unconfirmed") {
t.Skip("skipping spend unconfirmed tests for neutrino")
}
walletTest.test(miningNode, alice, bob, t)
})

View File

@ -1042,14 +1042,15 @@ func allowCORS(handler http.Handler, origins []string) http.Handler {
// more addresses specified in the passed payment map. The payment map maps an
// address to a specified output value to be sent to that address.
func (r *rpcServer) sendCoinsOnChain(paymentMap map[string]int64,
feeRate chainfee.SatPerKWeight, label string) (*chainhash.Hash, error) {
feeRate chainfee.SatPerKWeight, minconf int32,
label string) (*chainhash.Hash, error) {
outputs, err := addrPairsToOutputs(paymentMap, r.cfg.ActiveNetParams.Params)
if err != nil {
return nil, err
}
tx, err := r.server.cc.wallet.SendOutputs(outputs, feeRate, label)
tx, err := r.server.cc.wallet.SendOutputs(outputs, feeRate, minconf, label)
if err != nil {
return nil, err
}
@ -1180,8 +1181,16 @@ func (r *rpcServer) SendCoins(ctx context.Context,
return nil, err
}
rpcsLog.Infof("[sendcoins] addr=%v, amt=%v, sat/kw=%v, sweep_all=%v",
in.Addr, btcutil.Amount(in.Amount), int64(feePerKw),
// Then, we'll extract the minimum number of confirmations that each
// output we use to fund the transaction should satisfy.
minConfs, err := lnrpc.ExtractMinConfs(in.MinConfs, in.SpendUnconfirmed)
if err != nil {
return nil, err
}
rpcsLog.Infof("[sendcoins] addr=%v, amt=%v, sat/kw=%v, min_confs=%v, "+
"sweep_all=%v",
in.Addr, btcutil.Amount(in.Amount), int64(feePerKw), minConfs,
in.SendAll)
// Decode the address receiving the coins, we need to check whether the
@ -1273,7 +1282,7 @@ func (r *rpcServer) SendCoins(ctx context.Context,
paymentMap := map[string]int64{targetAddr.String(): in.Amount}
err := wallet.WithCoinSelectLock(func() error {
newTXID, err := r.sendCoinsOnChain(
paymentMap, feePerKw, label,
paymentMap, feePerKw, minConfs, label,
)
if err != nil {
return err
@ -1311,6 +1320,13 @@ func (r *rpcServer) SendMany(ctx context.Context,
return nil, err
}
// Then, we'll extract the minimum number of confirmations that each
// output we use to fund the transaction should satisfy.
minConfs, err := lnrpc.ExtractMinConfs(in.MinConfs, in.SpendUnconfirmed)
if err != nil {
return nil, err
}
label, err := labels.ValidateAPI(in.Label)
if err != nil {
return nil, err
@ -1327,7 +1343,7 @@ func (r *rpcServer) SendMany(ctx context.Context,
wallet := r.server.cc.wallet
err = wallet.WithCoinSelectLock(func() error {
sendManyTXID, err := r.sendCoinsOnChain(
in.AddrToAmount, feePerKw, label,
in.AddrToAmount, feePerKw, minConfs, label,
)
if err != nil {
return err
@ -1587,42 +1603,6 @@ func (r *rpcServer) DisconnectPeer(ctx context.Context,
return &lnrpc.DisconnectPeerResponse{}, nil
}
// extractOpenChannelMinConfs extracts the minimum number of confirmations from
// the OpenChannelRequest that each output used to fund the channel's funding
// transaction should satisfy.
func extractOpenChannelMinConfs(in *lnrpc.OpenChannelRequest) (int32, error) {
switch {
// Ensure that the MinConfs parameter is non-negative.
case in.MinConfs < 0:
return 0, errors.New("minimum number of confirmations must " +
"be a non-negative number")
// The funding transaction should not be funded with unconfirmed outputs
// unless explicitly specified by SpendUnconfirmed. We do this to
// provide sane defaults to the OpenChannel RPC, as otherwise, if the
// MinConfs field isn't explicitly set by the caller, we'll use
// unconfirmed outputs without the caller being aware.
case in.MinConfs == 0 && !in.SpendUnconfirmed:
return 1, nil
// In the event that the caller set MinConfs > 0 and SpendUnconfirmed to
// true, we'll return an error to indicate the conflict.
case in.MinConfs > 0 && in.SpendUnconfirmed:
return 0, errors.New("SpendUnconfirmed set to true with " +
"MinConfs > 0")
// The funding transaction of the new channel to be created can be
// funded with unconfirmed outputs.
case in.SpendUnconfirmed:
return 0, nil
// If none of the above cases matched, we'll return the value set
// explicitly by the caller.
default:
return in.MinConfs, nil
}
}
// newFundingShimAssembler returns a new fully populated
// chanfunding.CannedAssembler using a FundingShim obtained from an RPC caller.
func newFundingShimAssembler(chanPointShim *lnrpc.ChanPointShim, initiator bool,
@ -1832,7 +1812,7 @@ func (r *rpcServer) parseOpenChannelReq(in *lnrpc.OpenChannelRequest,
// Then, we'll extract the minimum number of confirmations that each
// output we use to fund the channel's funding transaction should
// satisfy.
minConfs, err := extractOpenChannelMinConfs(in)
minConfs, err := lnrpc.ExtractMinConfs(in.MinConfs, in.SpendUnconfirmed)
if err != nil {
return nil, err
}