Merge pull request #3702 from carlaKC/lnrpc-addcloseaddress

Add optional close address
This commit is contained in:
Wilmer Paulino 2019-12-10 13:01:45 -08:00 committed by GitHub
commit 3c6be62b18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 970 additions and 602 deletions

@ -28,10 +28,10 @@ var (
// a message while it is in an unknown state.
ErrInvalidState = fmt.Errorf("invalid state")
// errUpfrontShutdownScriptMismatch is returned when our peer sends us a
// shutdown message with a script that does not match the upfront shutdown
// script previously set.
errUpfrontShutdownScriptMismatch = fmt.Errorf("peer's shutdown " +
// errUpfrontShutdownScriptMismatch is returned when a peer or end user
// provides a script to cooperatively close out to which does not match
// the upfront shutdown script previously set for that party.
errUpfrontShutdownScriptMismatch = fmt.Errorf("shutdown " +
"script does not match upfront shutdown script")
)

@ -835,11 +835,16 @@ var closeChannelCommand = cli.Command{
transaction will be broadcast to the network. As a result, any settled
funds will be time locked for a few blocks before they can be spent.
In the case of a cooperative closure, One can manually set the fee to
In the case of a cooperative closure, one can manually set the fee to
be used for the closing transaction via either the --conf_target or
--sat_per_byte arguments. This will be the starting value used during
fee negotiation. This is optional.
In the case of a cooperative closure, one can manually set the address
to deliver funds to upon closure. This is optional, and may only be used
if an upfront shutdown address has not already been set. If neither are
set the funds will be delivered to a new wallet address.
To view which funding_txids/output_indexes can be used for a channel close,
see the channel_point values within the listchannels command output.
The format for a channel_point is 'funding_txid:output_index'.`,
@ -874,6 +879,13 @@ var closeChannelCommand = cli.Command{
"sat/byte that should be used when crafting " +
"the transaction",
},
cli.StringFlag{
Name: "delivery_addr",
Usage: "(optional) an address to deliver funds " +
"upon cooperative channel closing, may only " +
"be used if an upfront shutdown addresss is not" +
"already set",
},
},
Action: actionDecorator(closeChannel),
}
@ -895,10 +907,11 @@ func closeChannel(ctx *cli.Context) error {
// TODO(roasbeef): implement time deadline within server
req := &lnrpc.CloseChannelRequest{
ChannelPoint: channelPoint,
Force: ctx.Bool("force"),
TargetConf: int32(ctx.Int64("conf_target")),
SatPerByte: ctx.Int64("sat_per_byte"),
ChannelPoint: channelPoint,
Force: ctx.Bool("force"),
TargetConf: int32(ctx.Int64("conf_target")),
SatPerByte: ctx.Int64("sat_per_byte"),
DeliveryAddress: ctx.String("delivery_addr"),
}
// After parsing the request, we'll spin up a goroutine that will

@ -105,6 +105,9 @@ type ChanClose struct {
// process for the cooperative closure transaction kicks off.
TargetFeePerKw chainfee.SatPerKWeight
// DeliveryScript is an optional delivery script to pay funds out to.
DeliveryScript lnwire.DeliveryAddress
// Updates is used by request creator to receive the notifications about
// execution of the close channel request.
Updates chan interface{}
@ -1365,12 +1368,13 @@ func (s *Switch) teardownCircuit(pkt *htlcPacket) error {
}
// CloseLink creates and sends the close channel command to the target link
// directing the specified closure type. If the closure type if CloseRegular,
// then the last parameter should be the ideal fee-per-kw that will be used as
// a starting point for close negotiation.
func (s *Switch) CloseLink(chanPoint *wire.OutPoint, closeType ChannelCloseType,
targetFeePerKw chainfee.SatPerKWeight) (chan interface{},
chan error) {
// directing the specified closure type. If the closure type is CloseRegular,
// targetFeePerKw parameter should be the ideal fee-per-kw that will be used as
// a starting point for close negotiation. The deliveryScript parameter is an
// optional parameter which sets a user specified script to close out to.
func (s *Switch) CloseLink(chanPoint *wire.OutPoint,
closeType ChannelCloseType, targetFeePerKw chainfee.SatPerKWeight,
deliveryScript lnwire.DeliveryAddress) (chan interface{}, chan error) {
// TODO(roasbeef) abstract out the close updates.
updateChan := make(chan interface{}, 2)
@ -1381,6 +1385,7 @@ func (s *Switch) CloseLink(chanPoint *wire.OutPoint, closeType ChannelCloseType,
ChanPoint: chanPoint,
Updates: updateChan,
TargetFeePerKw: targetFeePerKw,
DeliveryScript: deliveryScript,
Err: errChan,
}

@ -3874,7 +3874,13 @@ type CloseChannelRequest struct {
/// The target number of blocks that the closure transaction should be confirmed by.
TargetConf int32 `protobuf:"varint,3,opt,name=target_conf,json=targetConf,proto3" json:"target_conf,omitempty"`
/// A manual fee rate set in sat/byte that should be used when crafting the closure transaction.
SatPerByte int64 `protobuf:"varint,4,opt,name=sat_per_byte,json=satPerByte,proto3" json:"sat_per_byte,omitempty"`
SatPerByte int64 `protobuf:"varint,4,opt,name=sat_per_byte,json=satPerByte,proto3" json:"sat_per_byte,omitempty"`
//
//An optional address to send funds to in the case of a cooperative close.
//If the channel was opened with an upfront shutdown script and this field
//is set, the request to close will fail because the channel must pay out
//to the upfront shutdown addresss.
DeliveryAddress string `protobuf:"bytes,5,opt,name=delivery_address,proto3" json:"delivery_address,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -3933,6 +3939,13 @@ func (m *CloseChannelRequest) GetSatPerByte() int64 {
return 0
}
func (m *CloseChannelRequest) GetDeliveryAddress() string {
if m != nil {
return m.DeliveryAddress
}
return ""
}
type CloseStatusUpdate struct {
// Types that are valid to be assigned to Update:
// *CloseStatusUpdate_ClosePending
@ -9690,566 +9703,567 @@ func init() {
func init() { proto.RegisterFile("rpc.proto", fileDescriptor_77a6da22d6a3feb1) }
var fileDescriptor_77a6da22d6a3feb1 = []byte{
// 8943 bytes of a gzipped FileDescriptorProto
// 8956 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7d, 0x5f, 0x6c, 0x24, 0x49,
0x9a, 0x97, 0xb3, 0xfe, 0xd8, 0x55, 0x5f, 0x95, 0xcb, 0xe5, 0xb0, 0xdb, 0xae, 0xae, 0xe9, 0xee,
0xf1, 0xe4, 0xf6, 0x76, 0xf7, 0xf4, 0xce, 0xba, 0x7b, 0xbc, 0xbb, 0xc3, 0xdc, 0x0c, 0xc7, 0x9d,
0xdb, 0x76, 0xb7, 0x7b, 0xc6, 0xed, 0xf6, 0xa6, 0xbb, 0xb7, 0xd9, 0xdd, 0x3b, 0xe5, 0xa6, 0xab,
0xc2, 0x76, 0x6e, 0x67, 0x65, 0xd6, 0x66, 0x66, 0xd9, 0xed, 0x1d, 0x06, 0x09, 0x84, 0x10, 0xe2,
0xe5, 0xb4, 0x20, 0x24, 0x40, 0xa0, 0x93, 0xf6, 0x90, 0xe0, 0xc4, 0x03, 0x08, 0x09, 0x89, 0x43,
0xc7, 0x13, 0x0f, 0x27, 0x21, 0x21, 0x1e, 0x78, 0x40, 0xe2, 0x01, 0x84, 0x40, 0x82, 0x13, 0xe2,
0x0d, 0xde, 0x51, 0x7c, 0xf1, 0x27, 0x23, 0x32, 0xb3, 0xda, 0x9e, 0xdd, 0xbd, 0x7d, 0x72, 0xc5,
0x2f, 0x22, 0xe3, 0xef, 0xf7, 0x7d, 0xf1, 0xc5, 0xf7, 0x7d, 0x11, 0x86, 0x66, 0x3c, 0x1e, 0xac,
0x8f, 0xe3, 0x28, 0x8d, 0x48, 0x3d, 0x08, 0xe3, 0xf1, 0xa0, 0x7f, 0xe3, 0x24, 0x8a, 0x4e, 0x02,
0xfa, 0xc0, 0x1b, 0xfb, 0x0f, 0xbc, 0x30, 0x8c, 0x52, 0x2f, 0xf5, 0xa3, 0x30, 0xe1, 0x85, 0xec,
0x1f, 0x41, 0xe7, 0x09, 0x0d, 0x0f, 0x29, 0x1d, 0x3a, 0xf4, 0x27, 0x13, 0x9a, 0xa4, 0xe4, 0x1b,
0xb0, 0xe8, 0xd1, 0x9f, 0x52, 0x3a, 0x74, 0xc7, 0x5e, 0x92, 0x8c, 0x4f, 0x63, 0x2f, 0xa1, 0x3d,
0x6b, 0xcd, 0xba, 0xd7, 0x76, 0xba, 0x3c, 0xe3, 0x40, 0xe1, 0xe4, 0x3d, 0x68, 0x27, 0xac, 0x28,
0x0d, 0xd3, 0x38, 0x1a, 0x5f, 0xf4, 0x2a, 0x58, 0xae, 0xc5, 0xb0, 0x1d, 0x0e, 0xd9, 0x01, 0x2c,
0xa8, 0x16, 0x92, 0x71, 0x14, 0x26, 0x94, 0x3c, 0x84, 0xe5, 0x81, 0x3f, 0x3e, 0xa5, 0xb1, 0x8b,
0x1f, 0x8f, 0x42, 0x3a, 0x8a, 0x42, 0x7f, 0xd0, 0xb3, 0xd6, 0xaa, 0xf7, 0x9a, 0x0e, 0xe1, 0x79,
0xec, 0x8b, 0x67, 0x22, 0x87, 0xdc, 0x85, 0x05, 0x1a, 0x72, 0x9c, 0x0e, 0xf1, 0x2b, 0xd1, 0x54,
0x27, 0x83, 0xd9, 0x07, 0xf6, 0xdf, 0xa8, 0xc0, 0xe2, 0xd3, 0xd0, 0x4f, 0x5f, 0x79, 0x41, 0x40,
0x53, 0x39, 0xa6, 0xbb, 0xb0, 0x70, 0x8e, 0x00, 0x8e, 0xe9, 0x3c, 0x8a, 0x87, 0x62, 0x44, 0x1d,
0x0e, 0x1f, 0x08, 0x74, 0x6a, 0xcf, 0x2a, 0x53, 0x7b, 0x56, 0x3a, 0x5d, 0xd5, 0x29, 0xd3, 0x75,
0x17, 0x16, 0x62, 0x3a, 0x88, 0xce, 0x68, 0x7c, 0xe1, 0x9e, 0xfb, 0xe1, 0x30, 0x3a, 0xef, 0xd5,
0xd6, 0xac, 0x7b, 0x75, 0xa7, 0x23, 0xe1, 0x57, 0x88, 0x92, 0x47, 0xb0, 0x30, 0x38, 0xf5, 0xc2,
0x90, 0x06, 0xee, 0x91, 0x37, 0x78, 0x3d, 0x19, 0x27, 0xbd, 0xfa, 0x9a, 0x75, 0xaf, 0xb5, 0x71,
0x7d, 0x1d, 0x57, 0x75, 0x7d, 0xeb, 0xd4, 0x0b, 0x1f, 0x61, 0xce, 0x61, 0xe8, 0x8d, 0x93, 0xd3,
0x28, 0x75, 0x3a, 0xe2, 0x0b, 0x0e, 0x27, 0xf6, 0x32, 0x10, 0x7d, 0x26, 0xf8, 0xdc, 0xdb, 0xff,
0xd4, 0x82, 0xa5, 0x97, 0x61, 0x10, 0x0d, 0x5e, 0xff, 0x82, 0x53, 0x54, 0x32, 0x86, 0xca, 0x55,
0xc7, 0x50, 0xfd, 0xaa, 0x63, 0x58, 0x81, 0x65, 0xb3, 0xb3, 0x62, 0x14, 0x14, 0xae, 0xb1, 0xaf,
0x4f, 0xa8, 0xec, 0x96, 0x1c, 0xc6, 0xfb, 0xd0, 0x1d, 0x4c, 0xe2, 0x98, 0x86, 0x85, 0x71, 0x2c,
0x08, 0x5c, 0x0d, 0xe4, 0x3d, 0x68, 0x87, 0xf4, 0x3c, 0x2b, 0x26, 0x68, 0x37, 0xa4, 0xe7, 0xb2,
0x88, 0xdd, 0x83, 0x95, 0x7c, 0x33, 0xa2, 0x03, 0xff, 0xcd, 0x82, 0xda, 0xcb, 0xf4, 0x4d, 0x44,
0xd6, 0xa1, 0x96, 0x5e, 0x8c, 0x39, 0x87, 0x74, 0x36, 0x88, 0x18, 0xda, 0xe6, 0x70, 0x18, 0xd3,
0x24, 0x79, 0x71, 0x31, 0xa6, 0x4e, 0xdb, 0xe3, 0x09, 0x97, 0x95, 0x23, 0x3d, 0x98, 0x13, 0x69,
0x6c, 0xb0, 0xe9, 0xc8, 0x24, 0xb9, 0x05, 0xe0, 0x8d, 0xa2, 0x49, 0x98, 0xba, 0x89, 0x97, 0xe2,
0x54, 0x55, 0x1d, 0x0d, 0x21, 0x37, 0xa0, 0x39, 0x7e, 0xed, 0x26, 0x83, 0xd8, 0x1f, 0xa7, 0x48,
0x36, 0x4d, 0x27, 0x03, 0xc8, 0x37, 0xa0, 0x11, 0x4d, 0xd2, 0x71, 0xe4, 0x87, 0xa9, 0x20, 0x95,
0x05, 0xd1, 0x97, 0xe7, 0x93, 0xf4, 0x80, 0xc1, 0x8e, 0x2a, 0x40, 0x6e, 0xc3, 0xfc, 0x20, 0x0a,
0x8f, 0xfd, 0x78, 0xc4, 0x85, 0x41, 0x6f, 0x16, 0x5b, 0x33, 0x41, 0xfb, 0x8f, 0x2a, 0xd0, 0x7a,
0x11, 0x7b, 0x61, 0xe2, 0x0d, 0x18, 0xc0, 0xba, 0x9e, 0xbe, 0x71, 0x4f, 0xbd, 0xe4, 0x14, 0x47,
0xdb, 0x74, 0x64, 0x92, 0xac, 0xc0, 0x2c, 0xef, 0x28, 0x8e, 0xa9, 0xea, 0x88, 0x14, 0xf9, 0x00,
0x16, 0xc3, 0xc9, 0xc8, 0x35, 0xdb, 0xaa, 0x22, 0xb5, 0x14, 0x33, 0xd8, 0x04, 0x1c, 0xb1, 0xb5,
0xe6, 0x4d, 0xf0, 0x11, 0x6a, 0x08, 0xb1, 0xa1, 0x2d, 0x52, 0xd4, 0x3f, 0x39, 0xe5, 0xc3, 0xac,
0x3b, 0x06, 0xc6, 0xea, 0x48, 0xfd, 0x11, 0x75, 0x93, 0xd4, 0x1b, 0x8d, 0xc5, 0xb0, 0x34, 0x04,
0xf3, 0xa3, 0xd4, 0x0b, 0xdc, 0x63, 0x4a, 0x93, 0xde, 0x9c, 0xc8, 0x57, 0x08, 0xb9, 0x03, 0x9d,
0x21, 0x4d, 0x52, 0x57, 0x2c, 0x0a, 0x4d, 0x7a, 0x0d, 0x64, 0xfd, 0x1c, 0xca, 0xea, 0x89, 0xbd,
0x73, 0x97, 0x4d, 0x00, 0x7d, 0xd3, 0x6b, 0xf2, 0xbe, 0x66, 0x08, 0xa3, 0x9c, 0x27, 0x34, 0xd5,
0x66, 0x2f, 0x11, 0x14, 0x6a, 0xef, 0x01, 0xd1, 0xe0, 0x6d, 0x9a, 0x7a, 0x7e, 0x90, 0x90, 0x8f,
0xa0, 0x9d, 0x6a, 0x85, 0x51, 0x14, 0xb6, 0x14, 0x39, 0x69, 0x1f, 0x38, 0x46, 0x39, 0xfb, 0x14,
0x1a, 0x8f, 0x29, 0xdd, 0xf3, 0x47, 0x7e, 0x4a, 0x56, 0xa0, 0x7e, 0xec, 0xbf, 0xa1, 0x9c, 0xe0,
0xab, 0xbb, 0x33, 0x0e, 0x4f, 0x92, 0x77, 0x01, 0xf0, 0x87, 0x3b, 0x52, 0x84, 0xb5, 0x3b, 0xe3,
0x34, 0x11, 0x7b, 0xc6, 0x28, 0xab, 0x0f, 0x73, 0x63, 0x1a, 0x0f, 0xa8, 0x5c, 0xbf, 0xdd, 0x19,
0x47, 0x02, 0x8f, 0xe6, 0xa0, 0x1e, 0xb0, 0xda, 0xed, 0xdf, 0xab, 0x43, 0xeb, 0x90, 0x86, 0x8a,
0xd3, 0x08, 0xd4, 0xd8, 0x9c, 0x08, 0xee, 0xc2, 0xdf, 0xe4, 0x6b, 0xd0, 0xc2, 0x79, 0x4a, 0xd2,
0xd8, 0x0f, 0x4f, 0x38, 0x81, 0x3f, 0xaa, 0xf4, 0x2c, 0x07, 0x18, 0x7c, 0x88, 0x28, 0xe9, 0x42,
0xd5, 0x1b, 0x49, 0x02, 0x67, 0x3f, 0xc9, 0x75, 0x68, 0x78, 0xa3, 0x94, 0x77, 0xaf, 0x8d, 0xf0,
0x9c, 0x37, 0x4a, 0xb1, 0x6b, 0xef, 0x41, 0x7b, 0xec, 0x5d, 0x8c, 0x18, 0x3f, 0x2b, 0xaa, 0x68,
0x3b, 0x2d, 0x81, 0xed, 0x32, 0xb2, 0xd8, 0x80, 0x25, 0xbd, 0x88, 0x6c, 0xbc, 0xae, 0x1a, 0x5f,
0xd4, 0x4a, 0x8b, 0x3e, 0xdc, 0x85, 0x05, 0xf9, 0x4d, 0xcc, 0xc7, 0x83, 0xb4, 0xd2, 0x74, 0x3a,
0x02, 0x96, 0xa3, 0xbc, 0x07, 0xdd, 0x63, 0x3f, 0xf4, 0x02, 0x77, 0x10, 0xa4, 0x67, 0xee, 0x90,
0x06, 0xa9, 0x87, 0x54, 0x53, 0x77, 0x3a, 0x88, 0x6f, 0x05, 0xe9, 0xd9, 0x36, 0x43, 0xc9, 0x07,
0xd0, 0x3c, 0xa6, 0xd4, 0xc5, 0xc9, 0xea, 0x35, 0x0c, 0x0e, 0x94, 0x2b, 0xe4, 0x34, 0x8e, 0xe5,
0x5a, 0x7d, 0x00, 0xdd, 0x68, 0x92, 0x9e, 0x44, 0x7e, 0x78, 0xe2, 0x32, 0x99, 0xe7, 0xfa, 0x43,
0xa4, 0xa2, 0xda, 0xa3, 0xca, 0x43, 0xcb, 0xe9, 0xc8, 0x3c, 0x26, 0x7d, 0x9e, 0x0e, 0xc9, 0x1d,
0x58, 0x08, 0xbc, 0x24, 0x75, 0x4f, 0xa3, 0xb1, 0x3b, 0x9e, 0x1c, 0xbd, 0xa6, 0x17, 0xbd, 0x79,
0x9c, 0x88, 0x79, 0x06, 0xef, 0x46, 0xe3, 0x03, 0x04, 0xc9, 0x4d, 0x00, 0xec, 0x27, 0xef, 0x04,
0xac, 0x59, 0xf7, 0xe6, 0x9d, 0x26, 0x43, 0x78, 0xa3, 0xdf, 0x87, 0x25, 0x5c, 0x9e, 0xc1, 0x24,
0x49, 0xa3, 0x91, 0xcb, 0xe4, 0x75, 0x3c, 0x4c, 0x7a, 0x2d, 0xa4, 0xb5, 0xf7, 0x45, 0x67, 0xb5,
0x35, 0x5e, 0xdf, 0xa6, 0x49, 0xba, 0x85, 0x85, 0x1d, 0x5e, 0x96, 0x6d, 0xea, 0x17, 0xce, 0xe2,
0x30, 0x8f, 0x93, 0x0f, 0x80, 0x78, 0x41, 0x10, 0x9d, 0xbb, 0x09, 0x0d, 0x8e, 0x5d, 0x31, 0x89,
0xbd, 0xce, 0x9a, 0x75, 0xaf, 0xe1, 0x74, 0x31, 0xe7, 0x90, 0x06, 0xc7, 0x07, 0x1c, 0xef, 0x6f,
0xc3, 0x4a, 0x79, 0xd5, 0x8c, 0x38, 0xd8, 0xe8, 0x18, 0x51, 0xd5, 0x1c, 0xf6, 0x93, 0x2c, 0x43,
0xfd, 0xcc, 0x0b, 0x26, 0x54, 0xc8, 0x67, 0x9e, 0xf8, 0xa4, 0xf2, 0xb1, 0x65, 0xff, 0x2b, 0x0b,
0xda, 0xbc, 0xb7, 0x42, 0xaf, 0xb8, 0x0d, 0xf3, 0x72, 0x55, 0x69, 0x1c, 0x47, 0xb1, 0x10, 0x53,
0x26, 0x48, 0xee, 0x43, 0x57, 0x02, 0xe3, 0x98, 0xfa, 0x23, 0xef, 0x44, 0xd6, 0x5d, 0xc0, 0xc9,
0x46, 0x56, 0x63, 0x1c, 0x4d, 0x52, 0x2a, 0x76, 0xb0, 0xb6, 0x98, 0x2b, 0x87, 0x61, 0x8e, 0x59,
0x84, 0x89, 0xa9, 0x12, 0x92, 0x35, 0x30, 0xfb, 0xef, 0x58, 0x40, 0x58, 0xd7, 0x5f, 0x44, 0xbc,
0x0a, 0x41, 0x6d, 0x79, 0x6a, 0xb7, 0xae, 0x4c, 0xed, 0x95, 0xb7, 0x51, 0xbb, 0x0d, 0x75, 0xde,
0xfb, 0x5a, 0x49, 0xef, 0x79, 0xd6, 0x67, 0xb5, 0x46, 0xb5, 0x5b, 0xb3, 0xff, 0x73, 0x15, 0x96,
0xb7, 0xf8, 0x16, 0xbc, 0x39, 0x18, 0xd0, 0xb1, 0xe2, 0x83, 0x77, 0xa1, 0x15, 0x46, 0x43, 0x2a,
0xa9, 0x8f, 0x77, 0x0c, 0x18, 0xa4, 0x91, 0xde, 0xa9, 0xe7, 0x87, 0xbc, 0xe3, 0x7c, 0x3e, 0x9b,
0x88, 0x60, 0xb7, 0xef, 0xc0, 0xc2, 0x98, 0x86, 0x43, 0x9d, 0xdc, 0xb9, 0x92, 0x34, 0x2f, 0x60,
0x41, 0xe9, 0xef, 0x42, 0xeb, 0x78, 0xc2, 0xcb, 0x31, 0x21, 0x51, 0x43, 0x3a, 0x00, 0x01, 0x6d,
0x72, 0x59, 0x31, 0x9e, 0x24, 0xa7, 0x98, 0x5b, 0xc7, 0xdc, 0x39, 0x96, 0x66, 0x59, 0x37, 0x01,
0x86, 0x93, 0x24, 0x15, 0xd4, 0x3f, 0x8b, 0x99, 0x4d, 0x86, 0x70, 0xea, 0xff, 0x26, 0x2c, 0x8d,
0xbc, 0x37, 0x2e, 0xd2, 0x8f, 0xeb, 0x87, 0xee, 0x71, 0x80, 0xbb, 0xc8, 0x1c, 0x96, 0xeb, 0x8e,
0xbc, 0x37, 0xdf, 0x63, 0x39, 0x4f, 0xc3, 0xc7, 0x88, 0x33, 0x11, 0x21, 0xd5, 0x97, 0x98, 0x26,
0x34, 0x3e, 0xa3, 0xc8, 0xd5, 0x35, 0xa5, 0xa3, 0x38, 0x1c, 0x65, 0x3d, 0x1a, 0xb1, 0x71, 0xa7,
0xc1, 0x80, 0xb3, 0xb0, 0x33, 0x37, 0xf2, 0xc3, 0xdd, 0x34, 0x18, 0x90, 0x1b, 0x00, 0x4c, 0x26,
0x8c, 0x69, 0xec, 0xbe, 0x3e, 0x47, 0x7e, 0xac, 0xa1, 0x0c, 0x38, 0xa0, 0xf1, 0xe7, 0xe7, 0xe4,
0x1d, 0x68, 0x0e, 0x12, 0x14, 0x2a, 0xde, 0x45, 0xaf, 0x85, 0xcc, 0xda, 0x18, 0x24, 0x4c, 0x9c,
0x78, 0x17, 0x8c, 0xa1, 0x58, 0x6f, 0x3d, 0x5c, 0x05, 0x3a, 0xc4, 0xea, 0x13, 0x94, 0x8e, 0xf3,
0xd8, 0xd9, 0x4d, 0x91, 0xc1, 0xda, 0x49, 0xc8, 0xd7, 0x60, 0x5e, 0x76, 0xf6, 0x38, 0xf0, 0x4e,
0x12, 0x14, 0x0f, 0xf3, 0x4e, 0x5b, 0x80, 0x8f, 0x19, 0x66, 0xbf, 0xe2, 0x4a, 0x93, 0xb6, 0xb6,
0x82, 0x6f, 0xd8, 0xf6, 0x8d, 0x08, 0xae, 0x6b, 0xc3, 0x11, 0xa9, 0xb2, 0x45, 0xab, 0x94, 0x2c,
0x9a, 0xfd, 0x73, 0x0b, 0xda, 0xa2, 0x66, 0xd4, 0x34, 0xc8, 0x43, 0x20, 0x72, 0x15, 0xd3, 0x37,
0xfe, 0xd0, 0x3d, 0xba, 0x48, 0x69, 0xc2, 0x89, 0x66, 0x77, 0xc6, 0x29, 0xc9, 0x63, 0xf2, 0xd0,
0x40, 0x93, 0x34, 0xe6, 0x34, 0xbd, 0x3b, 0xe3, 0x14, 0x72, 0x18, 0x8b, 0x31, 0x5d, 0x66, 0x92,
0xba, 0x7e, 0x38, 0xa4, 0x6f, 0x90, 0x94, 0xe6, 0x1d, 0x03, 0x7b, 0xd4, 0x81, 0xb6, 0xfe, 0x9d,
0xfd, 0x63, 0x68, 0x48, 0x4d, 0x08, 0xb5, 0x80, 0x5c, 0xbf, 0x1c, 0x0d, 0x21, 0x7d, 0x68, 0x98,
0xbd, 0x70, 0x1a, 0x5f, 0xa5, 0x6d, 0xfb, 0x2f, 0x40, 0x77, 0x8f, 0x11, 0x51, 0xc8, 0x88, 0x56,
0xa8, 0x77, 0x2b, 0x30, 0xab, 0x31, 0x4f, 0xd3, 0x11, 0x29, 0xb6, 0x8f, 0x9e, 0x46, 0x49, 0x2a,
0xda, 0xc1, 0xdf, 0xf6, 0x9f, 0x58, 0x40, 0x76, 0x92, 0xd4, 0x1f, 0x79, 0x29, 0x7d, 0x4c, 0x95,
0x78, 0x78, 0x0e, 0x6d, 0x56, 0xdb, 0x8b, 0x68, 0x93, 0x2b, 0x5b, 0x5c, 0x49, 0xf8, 0x86, 0x60,
0xe7, 0xe2, 0x07, 0xeb, 0x7a, 0x69, 0x2e, 0xba, 0x8d, 0x0a, 0x18, 0xb7, 0xa5, 0x5e, 0x7c, 0x42,
0x53, 0xd4, 0xc4, 0x84, 0x1e, 0x0f, 0x1c, 0xda, 0x8a, 0xc2, 0xe3, 0xfe, 0x6f, 0xc1, 0x62, 0xa1,
0x0e, 0x5d, 0x46, 0x37, 0x4b, 0x64, 0x74, 0x55, 0x97, 0xd1, 0x03, 0x58, 0x32, 0xfa, 0x25, 0x28,
0xae, 0x07, 0x73, 0x8c, 0x31, 0xd8, 0x86, 0x6f, 0xf1, 0x0d, 0x5f, 0x24, 0xc9, 0x06, 0x2c, 0x1f,
0x53, 0x1a, 0x7b, 0x29, 0x26, 0x91, 0x75, 0xd8, 0x9a, 0x88, 0x9a, 0x4b, 0xf3, 0xec, 0xff, 0x6e,
0xc1, 0x02, 0x93, 0xa6, 0xcf, 0xbc, 0xf0, 0x42, 0xce, 0xd5, 0x5e, 0xe9, 0x5c, 0xdd, 0xd3, 0x36,
0x39, 0xad, 0xf4, 0x57, 0x9d, 0xa8, 0x6a, 0x7e, 0xa2, 0xc8, 0x1a, 0xb4, 0x8d, 0xee, 0xd6, 0xb9,
0x66, 0x99, 0x78, 0xe9, 0x01, 0x8d, 0x1f, 0x5d, 0xa4, 0xf4, 0x97, 0x9f, 0xca, 0x3b, 0xd0, 0xcd,
0xba, 0x2d, 0xe6, 0x91, 0x40, 0x8d, 0x11, 0xa6, 0xa8, 0x00, 0x7f, 0xdb, 0xff, 0xc0, 0xe2, 0x05,
0xb7, 0x22, 0x5f, 0x69, 0x9d, 0xac, 0x20, 0x53, 0x5e, 0x65, 0x41, 0xf6, 0x7b, 0xaa, 0xd6, 0xfe,
0xcb, 0x0f, 0x96, 0xc9, 0xc4, 0x84, 0x86, 0x43, 0xd7, 0x0b, 0x02, 0x14, 0xc4, 0x0d, 0x67, 0x8e,
0xa5, 0x37, 0x83, 0xc0, 0xbe, 0x0b, 0x8b, 0x5a, 0xef, 0xde, 0x32, 0x8e, 0x7d, 0x20, 0x7b, 0x7e,
0x92, 0xbe, 0x0c, 0x93, 0xb1, 0xa6, 0x90, 0xbd, 0x03, 0x4d, 0x26, 0x6d, 0x59, 0xcf, 0x38, 0xe7,
0xd6, 0x1d, 0x26, 0x7e, 0x59, 0xbf, 0x12, 0xcc, 0xf4, 0xde, 0x88, 0xcc, 0x8a, 0xc8, 0xf4, 0xde,
0x60, 0xa6, 0xfd, 0x31, 0x2c, 0x19, 0xf5, 0x89, 0xa6, 0xdf, 0x83, 0xfa, 0x24, 0x7d, 0x13, 0x49,
0x95, 0xbb, 0x25, 0x28, 0x84, 0x1d, 0xee, 0x1c, 0x9e, 0x63, 0x7f, 0x0a, 0x8b, 0xfb, 0xf4, 0x5c,
0x30, 0xb2, 0xec, 0xc8, 0x9d, 0x4b, 0x0f, 0x7e, 0x98, 0x6f, 0xaf, 0x03, 0xd1, 0x3f, 0xce, 0x18,
0x40, 0x1e, 0x03, 0x2d, 0xe3, 0x18, 0x68, 0xdf, 0x01, 0x72, 0xe8, 0x9f, 0x84, 0xcf, 0x68, 0x92,
0x78, 0x27, 0x8a, 0xf5, 0xbb, 0x50, 0x1d, 0x25, 0x27, 0x42, 0x54, 0xb1, 0x9f, 0xf6, 0xb7, 0x60,
0xc9, 0x28, 0x27, 0x2a, 0xbe, 0x01, 0xcd, 0xc4, 0x3f, 0x09, 0xbd, 0x74, 0x12, 0x53, 0x51, 0x75,
0x06, 0xd8, 0x8f, 0x61, 0xf9, 0x7b, 0x34, 0xf6, 0x8f, 0x2f, 0x2e, 0xab, 0xde, 0xac, 0xa7, 0x92,
0xaf, 0x67, 0x07, 0xae, 0xe5, 0xea, 0x11, 0xcd, 0x73, 0xf2, 0x15, 0x2b, 0xd9, 0x70, 0x78, 0x42,
0x93, 0x7d, 0x15, 0x5d, 0xf6, 0xd9, 0x2f, 0x81, 0x6c, 0x45, 0x61, 0x48, 0x07, 0xe9, 0x01, 0xa5,
0x71, 0x66, 0x81, 0xca, 0x68, 0xb5, 0xb5, 0xb1, 0x2a, 0x66, 0x36, 0x2f, 0x50, 0x05, 0x11, 0x13,
0xa8, 0x8d, 0x69, 0x3c, 0xc2, 0x8a, 0x1b, 0x0e, 0xfe, 0xb6, 0xaf, 0xc1, 0x92, 0x51, 0xad, 0x38,
0xb3, 0x7f, 0x08, 0xd7, 0xb6, 0xfd, 0x64, 0x50, 0x6c, 0xb0, 0x07, 0x73, 0xe3, 0xc9, 0x91, 0x9b,
0x71, 0xa2, 0x4c, 0xb2, 0x63, 0x5c, 0xfe, 0x13, 0x51, 0xd9, 0x5f, 0xb7, 0xa0, 0xb6, 0xfb, 0x62,
0x6f, 0x8b, 0xed, 0x15, 0x7e, 0x38, 0x88, 0x46, 0x4c, 0x0b, 0xe3, 0x83, 0x56, 0xe9, 0xa9, 0x1c,
0x76, 0x03, 0x9a, 0xa8, 0xbc, 0xb1, 0x93, 0xab, 0xd0, 0x83, 0x32, 0x80, 0x9d, 0x9a, 0xe9, 0x9b,
0xb1, 0x1f, 0xe3, 0xb1, 0x58, 0x1e, 0x76, 0x6b, 0xb8, 0xcd, 0x14, 0x33, 0xec, 0x9f, 0xcf, 0xc1,
0x9c, 0xd8, 0x7c, 0xf9, 0x46, 0x9e, 0xfa, 0x67, 0x34, 0xdb, 0xc8, 0x59, 0x8a, 0x29, 0xc6, 0x31,
0x1d, 0x45, 0xa9, 0xd2, 0xdf, 0xf8, 0x32, 0x98, 0x20, 0x5a, 0x05, 0x84, 0x12, 0xc1, 0xed, 0x08,
0x55, 0x5e, 0xca, 0x00, 0xc9, 0x0d, 0x98, 0x93, 0xca, 0x40, 0x4d, 0x1d, 0x58, 0x24, 0xc4, 0x66,
0x63, 0xe0, 0x8d, 0xbd, 0x81, 0x9f, 0x5e, 0x08, 0xb1, 0xa0, 0xd2, 0xac, 0xfe, 0x20, 0x1a, 0x78,
0x81, 0x7b, 0xe4, 0x05, 0x5e, 0x38, 0xa0, 0xd2, 0xea, 0x60, 0x80, 0xec, 0x04, 0x2e, 0xba, 0x25,
0x8b, 0xf1, 0x53, 0x7a, 0x0e, 0x65, 0x7b, 0xf8, 0x20, 0x1a, 0x8d, 0xfc, 0x94, 0x1d, 0xdc, 0x51,
0x35, 0xab, 0x3a, 0x1a, 0xc2, 0x6d, 0x1c, 0x98, 0x3a, 0xe7, 0x33, 0xd8, 0x94, 0x36, 0x0e, 0x0d,
0x64, 0xb5, 0xe4, 0x34, 0xb4, 0xaa, 0xa3, 0x21, 0x6c, 0x2d, 0x26, 0x61, 0x42, 0xd3, 0x34, 0xa0,
0x43, 0xd5, 0xa1, 0x16, 0x16, 0x2b, 0x66, 0x90, 0x87, 0xb0, 0xc4, 0x6d, 0x09, 0x89, 0x97, 0x46,
0xc9, 0xa9, 0x9f, 0xb8, 0x09, 0x3b, 0x06, 0xf1, 0x33, 0x6d, 0x59, 0x16, 0xf9, 0x18, 0x56, 0x73,
0x70, 0x4c, 0x07, 0xd4, 0x3f, 0xa3, 0x43, 0x54, 0xe1, 0xaa, 0xce, 0xb4, 0x6c, 0xb2, 0x06, 0xad,
0x70, 0x32, 0x72, 0x27, 0xe3, 0xa1, 0xc7, 0x94, 0x98, 0x0e, 0x2a, 0x97, 0x3a, 0x44, 0x3e, 0x04,
0xa9, 0xa7, 0x09, 0xed, 0x71, 0xc1, 0x90, 0x70, 0x8c, 0x7a, 0x1d, 0xb3, 0x04, 0x23, 0xcc, 0x4c,
0x25, 0xed, 0x8a, 0xf3, 0xa3, 0x04, 0x90, 0x4f, 0x62, 0xff, 0xcc, 0x4b, 0x69, 0x6f, 0x91, 0x0b,
0x75, 0x91, 0x64, 0xdf, 0xf9, 0xa1, 0x9f, 0xfa, 0x5e, 0x1a, 0xc5, 0x3d, 0x82, 0x79, 0x19, 0xc0,
0x26, 0x11, 0xe9, 0x23, 0x49, 0xbd, 0x74, 0x92, 0x08, 0x0d, 0x75, 0x09, 0x89, 0xab, 0x98, 0x41,
0x3e, 0x82, 0x15, 0x4e, 0x11, 0x98, 0x25, 0x74, 0x6f, 0x54, 0x15, 0x96, 0x71, 0x46, 0xa6, 0xe4,
0xb2, 0xa9, 0x14, 0x24, 0x52, 0xf8, 0xf0, 0x1a, 0x9f, 0xca, 0x29, 0xd9, 0xac, 0x7f, 0xac, 0x07,
0xfe, 0xc0, 0x15, 0x25, 0x18, 0x8b, 0xac, 0xe0, 0x28, 0x8a, 0x19, 0x8c, 0xc4, 0x03, 0xff, 0x98,
0xa6, 0xfe, 0x88, 0xf6, 0x56, 0x39, 0x89, 0xcb, 0x34, 0x63, 0xc0, 0xc9, 0x18, 0x73, 0x7a, 0x9c,
0xe1, 0x79, 0xca, 0xfe, 0x7d, 0x8b, 0x6f, 0x3e, 0x82, 0x51, 0x13, 0xed, 0x58, 0xc5, 0x59, 0xd4,
0x8d, 0xc2, 0xe0, 0x42, 0x70, 0x2d, 0x70, 0xe8, 0x79, 0x18, 0x5c, 0x30, 0xc5, 0xde, 0x0f, 0xf5,
0x22, 0x5c, 0xce, 0xb5, 0x25, 0x88, 0x85, 0xde, 0x85, 0xd6, 0x78, 0x72, 0x14, 0xf8, 0x03, 0x5e,
0xa4, 0xca, 0x6b, 0xe1, 0x10, 0x16, 0x60, 0xe7, 0x4a, 0xbe, 0x52, 0xbc, 0x44, 0x0d, 0x4b, 0xb4,
0x04, 0xc6, 0x8a, 0xd8, 0x8f, 0x60, 0xd9, 0xec, 0xa0, 0x10, 0xe8, 0xf7, 0xa1, 0x21, 0xf8, 0x5f,
0x1a, 0x0a, 0x3a, 0x9a, 0xf9, 0x96, 0x1d, 0x83, 0x54, 0xbe, 0xfd, 0xaf, 0x6b, 0xb0, 0x24, 0xd0,
0xad, 0x20, 0x4a, 0xe8, 0xe1, 0x64, 0x34, 0xf2, 0xe2, 0x12, 0xc1, 0x62, 0x5d, 0x22, 0x58, 0x2a,
0x45, 0xc1, 0x72, 0xcb, 0x38, 0x5f, 0x72, 0xc9, 0xa4, 0x21, 0xe4, 0x1e, 0x2c, 0x0c, 0x82, 0x28,
0xe1, 0xea, 0xbe, 0x6e, 0x41, 0xcc, 0xc3, 0x45, 0x61, 0x58, 0x2f, 0x13, 0x86, 0xba, 0x20, 0x9b,
0xcd, 0x09, 0x32, 0x1b, 0xda, 0xac, 0x52, 0x2a, 0x65, 0xf3, 0x9c, 0x38, 0x6c, 0x69, 0x18, 0xeb,
0x4f, 0x5e, 0x6c, 0x70, 0x19, 0xb5, 0x50, 0x26, 0x34, 0xfc, 0x11, 0x45, 0xd9, 0xaf, 0x95, 0x6e,
0x0a, 0xa1, 0x51, 0xcc, 0x22, 0x8f, 0x01, 0x78, 0x5b, 0xa8, 0x80, 0x00, 0x2a, 0x20, 0x77, 0xcc,
0x55, 0xd1, 0xe7, 0x7f, 0x9d, 0x25, 0x26, 0x31, 0x45, 0xa5, 0x44, 0xfb, 0xd2, 0xfe, 0x9b, 0x16,
0xb4, 0xb4, 0x3c, 0x72, 0x0d, 0x16, 0xb7, 0x9e, 0x3f, 0x3f, 0xd8, 0x71, 0x36, 0x5f, 0x3c, 0xfd,
0xde, 0x8e, 0xbb, 0xb5, 0xf7, 0xfc, 0x70, 0xa7, 0x3b, 0xc3, 0xe0, 0xbd, 0xe7, 0x5b, 0x9b, 0x7b,
0xee, 0xe3, 0xe7, 0xce, 0x96, 0x84, 0x2d, 0xb2, 0x02, 0xc4, 0xd9, 0x79, 0xf6, 0xfc, 0xc5, 0x8e,
0x81, 0x57, 0x48, 0x17, 0xda, 0x8f, 0x9c, 0x9d, 0xcd, 0xad, 0x5d, 0x81, 0x54, 0xc9, 0x32, 0x74,
0x1f, 0xbf, 0xdc, 0xdf, 0x7e, 0xba, 0xff, 0xc4, 0xdd, 0xda, 0xdc, 0xdf, 0xda, 0xd9, 0xdb, 0xd9,
0xee, 0xd6, 0xc8, 0x3c, 0x34, 0x37, 0x1f, 0x6d, 0xee, 0x6f, 0x3f, 0xdf, 0xdf, 0xd9, 0xee, 0xd6,
0xed, 0xff, 0x62, 0xc1, 0x35, 0xec, 0xf5, 0x30, 0xcf, 0x24, 0x6b, 0xd0, 0x1a, 0x44, 0xd1, 0x98,
0x29, 0xfe, 0xd9, 0xd6, 0xa6, 0x43, 0x8c, 0x01, 0xb8, 0x50, 0x38, 0x8e, 0xe2, 0x01, 0x15, 0x3c,
0x02, 0x08, 0x3d, 0x66, 0x08, 0x63, 0x00, 0xb1, 0xbc, 0xbc, 0x04, 0x67, 0x91, 0x16, 0xc7, 0x78,
0x91, 0x15, 0x98, 0x3d, 0x8a, 0xa9, 0x37, 0x38, 0x15, 0xdc, 0x21, 0x52, 0xe4, 0xfd, 0xec, 0x64,
0x3a, 0x60, 0xb3, 0x1f, 0xd0, 0x21, 0x52, 0x4c, 0xc3, 0x59, 0x10, 0xf8, 0x96, 0x80, 0x99, 0x14,
0xf4, 0x8e, 0xbc, 0x70, 0x18, 0x85, 0x74, 0x28, 0xd4, 0xde, 0x0c, 0xb0, 0x0f, 0x60, 0x25, 0x3f,
0x3e, 0xc1, 0x63, 0x1f, 0x69, 0x3c, 0xc6, 0xb5, 0xd0, 0xfe, 0xf4, 0xd5, 0xd4, 0xf8, 0xed, 0xbf,
0x56, 0xa0, 0xc6, 0x94, 0x92, 0xe9, 0x0a, 0x8c, 0xae, 0x67, 0x56, 0x0b, 0xee, 0x06, 0x3c, 0xec,
0xf2, 0x2d, 0x4a, 0x18, 0x5a, 0x32, 0x24, 0xcb, 0x8f, 0xe9, 0xe0, 0x4c, 0x98, 0x5a, 0x34, 0x84,
0x31, 0x08, 0x3b, 0x04, 0xe0, 0xd7, 0x82, 0x41, 0x64, 0x5a, 0xe6, 0xe1, 0x97, 0x73, 0x59, 0x1e,
0x7e, 0xd7, 0x83, 0x39, 0x3f, 0x3c, 0x8a, 0x26, 0xe1, 0x10, 0x19, 0xa2, 0xe1, 0xc8, 0x24, 0x3a,
0x38, 0x90, 0x51, 0x99, 0xfc, 0xe4, 0xe4, 0x9f, 0x01, 0x64, 0x03, 0x9a, 0xc9, 0x45, 0x38, 0xd0,
0x69, 0x7e, 0x59, 0xcc, 0x12, 0x9b, 0x83, 0xf5, 0xc3, 0x8b, 0x70, 0x80, 0x14, 0x9e, 0x15, 0xb3,
0x7f, 0x0b, 0x1a, 0x12, 0x66, 0x64, 0xf9, 0x72, 0xff, 0xf3, 0xfd, 0xe7, 0xaf, 0xf6, 0xdd, 0xc3,
0xef, 0xef, 0x6f, 0x75, 0x67, 0xc8, 0x02, 0xb4, 0x36, 0xb7, 0x90, 0xd2, 0x11, 0xb0, 0x58, 0x91,
0x83, 0xcd, 0xc3, 0x43, 0x85, 0x54, 0x6c, 0xc2, 0x0e, 0xf2, 0x09, 0x6a, 0x7e, 0xca, 0x80, 0xff,
0x11, 0x2c, 0x6a, 0x58, 0x76, 0x8a, 0x18, 0x33, 0x20, 0x77, 0x8a, 0x40, 0x95, 0x91, 0xe7, 0xd8,
0x5d, 0xe8, 0x3c, 0xa1, 0xe9, 0xd3, 0xf0, 0x38, 0x92, 0x35, 0xfd, 0xcf, 0x1a, 0x2c, 0x28, 0x48,
0x54, 0x74, 0x0f, 0x16, 0xfc, 0x21, 0x0d, 0x53, 0x3f, 0xbd, 0x70, 0x0d, 0x7b, 0x41, 0x1e, 0x66,
0xaa, 0xb6, 0x17, 0xf8, 0x9e, 0xf4, 0x23, 0xf1, 0x04, 0x3b, 0x3f, 0x33, 0x1d, 0x40, 0xb7, 0xdb,
0x20, 0x5d, 0x71, 0x33, 0x45, 0x69, 0x1e, 0x93, 0x40, 0x0c, 0x17, 0xdb, 0x8c, 0xfa, 0x84, 0xab,
0x9c, 0x65, 0x59, 0x6c, 0xa9, 0x78, 0x4d, 0x6c, 0xc8, 0x75, 0xae, 0x27, 0x28, 0xa0, 0xe0, 0xa8,
0x99, 0xe5, 0xf2, 0x31, 0xef, 0xa8, 0xd1, 0x9c, 0x3d, 0x8d, 0x82, 0xb3, 0x87, 0xc9, 0xcf, 0x8b,
0x70, 0x40, 0x87, 0x6e, 0x1a, 0xb9, 0x28, 0xe7, 0x91, 0x24, 0x1a, 0x4e, 0x1e, 0x66, 0xfb, 0x46,
0x4a, 0x93, 0x34, 0xa4, 0xdc, 0xe2, 0xdd, 0x40, 0x2b, 0xa8, 0x84, 0xd8, 0xf9, 0x60, 0x12, 0xfb,
0x49, 0xaf, 0x8d, 0x6e, 0x1c, 0xfc, 0x4d, 0xbe, 0x0d, 0xd7, 0x8e, 0x68, 0x92, 0xba, 0xa7, 0xd4,
0x1b, 0xd2, 0x18, 0xc9, 0x8b, 0xfb, 0x8b, 0xb8, 0xca, 0x55, 0x9e, 0xc9, 0x08, 0xf7, 0x8c, 0xc6,
0x89, 0x1f, 0x85, 0xa8, 0x6c, 0x35, 0x1d, 0x99, 0x64, 0xf5, 0xb1, 0xc1, 0xab, 0x8d, 0x5a, 0xcd,
0xe0, 0x02, 0x0e, 0xbc, 0x3c, 0x93, 0xdc, 0x86, 0x59, 0x1c, 0x40, 0xd2, 0xeb, 0x22, 0xcd, 0xb4,
0x33, 0x9e, 0xf7, 0x43, 0x47, 0xe4, 0xb1, 0x55, 0x1e, 0x44, 0x41, 0x14, 0xa3, 0xc6, 0xd5, 0x74,
0x78, 0xc2, 0x9c, 0x9d, 0x93, 0xd8, 0x1b, 0x9f, 0x0a, 0xad, 0x2b, 0x0f, 0x7f, 0x56, 0x6b, 0xb4,
0xba, 0x6d, 0xfb, 0xcf, 0x41, 0x1d, 0xab, 0xc5, 0xea, 0x70, 0x32, 0x2d, 0x51, 0x1d, 0xa2, 0x3d,
0x98, 0x0b, 0x69, 0x7a, 0x1e, 0xc5, 0xaf, 0xa5, 0x53, 0x52, 0x24, 0xed, 0x9f, 0xe2, 0x09, 0x4d,
0x39, 0xe9, 0x5e, 0xa2, 0x6a, 0xc9, 0xce, 0xd9, 0x7c, 0xa9, 0x92, 0x53, 0x4f, 0x1c, 0x1a, 0x1b,
0x08, 0x1c, 0x9e, 0x7a, 0x4c, 0xd6, 0x1a, 0xab, 0xcf, 0xcf, 0xe1, 0x2d, 0xc4, 0x76, 0xf9, 0xe2,
0xdf, 0x86, 0x8e, 0x74, 0xff, 0x25, 0x6e, 0x40, 0x8f, 0x53, 0x69, 0x45, 0x0b, 0x27, 0x23, 0x3c,
0xac, 0xef, 0xd1, 0xe3, 0xd4, 0xde, 0x87, 0x45, 0x21, 0xff, 0x9e, 0x8f, 0xa9, 0x6c, 0xfa, 0x37,
0xca, 0x74, 0x89, 0xd6, 0xc6, 0x92, 0x29, 0x30, 0xb9, 0xc3, 0xd3, 0x2c, 0x69, 0x3b, 0x40, 0x74,
0x79, 0x2a, 0x2a, 0x14, 0x9b, 0xb9, 0xb4, 0x13, 0x8a, 0xe1, 0x18, 0x18, 0x9b, 0x9f, 0x64, 0x32,
0x18, 0x48, 0xa7, 0x6d, 0xc3, 0x91, 0x49, 0xfb, 0x9f, 0x58, 0xb0, 0x84, 0xb5, 0x49, 0x6d, 0x48,
0xec, 0x59, 0x1f, 0x7f, 0x85, 0x6e, 0x4a, 0x2b, 0x2d, 0xb7, 0x4d, 0x2e, 0x43, 0x5d, 0xdf, 0xc5,
0x78, 0xe2, 0xab, 0xdb, 0x64, 0x6a, 0x79, 0x9b, 0x8c, 0xfd, 0x77, 0x2d, 0x58, 0xe4, 0x1b, 0x09,
0x6a, 0xdb, 0x62, 0xf8, 0x7f, 0x1e, 0xe6, 0xb9, 0x46, 0x20, 0xa4, 0x82, 0xe8, 0x68, 0x26, 0x5a,
0x11, 0xe5, 0x85, 0x77, 0x67, 0x1c, 0xb3, 0x30, 0xf9, 0x14, 0xb5, 0xb2, 0xd0, 0x45, 0xb4, 0xc4,
0xbd, 0x6f, 0xce, 0xf5, 0xee, 0x8c, 0xa3, 0x15, 0x7f, 0xd4, 0x60, 0xca, 0x32, 0xc3, 0xed, 0x27,
0x30, 0x6f, 0x34, 0x64, 0xd8, 0x83, 0xda, 0xdc, 0x1e, 0x54, 0x30, 0xbc, 0x56, 0x4a, 0x0c, 0xaf,
0xff, 0xb2, 0x0a, 0x84, 0x11, 0x4b, 0x6e, 0x35, 0xd6, 0x4c, 0xef, 0x85, 0xf4, 0xf4, 0x67, 0x10,
0xd9, 0x00, 0xa2, 0x25, 0xa5, 0x57, 0xa5, 0xaa, 0xbc, 0x2a, 0x25, 0xb9, 0x4c, 0xd4, 0x0a, 0xad,
0x43, 0x79, 0x2c, 0xf0, 0xac, 0xcf, 0xa7, 0xbe, 0x34, 0x8f, 0xed, 0x8c, 0xe8, 0xbe, 0x60, 0xa7,
0x12, 0x71, 0x3e, 0x96, 0xe9, 0xfc, 0x1a, 0xcf, 0x5e, 0xba, 0xc6, 0x73, 0x05, 0xbb, 0x9b, 0x76,
0x42, 0x6b, 0x98, 0x27, 0xb4, 0xdb, 0x30, 0x2f, 0xbd, 0x14, 0xdc, 0xd1, 0x2a, 0x8e, 0xc3, 0x06,
0x48, 0xee, 0x43, 0x57, 0x1e, 0x92, 0xd4, 0x31, 0x90, 0xbb, 0x11, 0x0b, 0x38, 0xdb, 0x03, 0x32,
0x4b, 0x5c, 0x0b, 0x3b, 0x9b, 0x01, 0x78, 0xa6, 0x62, 0x54, 0xe2, 0x4e, 0x42, 0xe1, 0xe5, 0xa7,
0x43, 0x3c, 0x08, 0xb3, 0x33, 0x55, 0x3e, 0xc3, 0xfe, 0x5b, 0x16, 0x74, 0xd9, 0xba, 0x19, 0xa4,
0xf9, 0x09, 0x20, 0x67, 0x5c, 0x91, 0x32, 0x8d, 0xb2, 0xe4, 0x63, 0x68, 0x62, 0x3a, 0x1a, 0xd3,
0x50, 0xd0, 0x65, 0xcf, 0xa4, 0xcb, 0x4c, 0xa6, 0xec, 0xce, 0x38, 0x59, 0x61, 0x8d, 0x2a, 0xff,
0x83, 0x05, 0x2d, 0xd1, 0xca, 0x2f, 0x6c, 0xe9, 0xe9, 0x6b, 0x61, 0x19, 0x5c, 0x01, 0xcb, 0xa2,
0x30, 0xee, 0xc1, 0xc2, 0xc8, 0x4b, 0x27, 0x31, 0xdb, 0xd3, 0x0d, 0x2b, 0x4f, 0x1e, 0x66, 0x1b,
0x34, 0x8a, 0xcf, 0xc4, 0x4d, 0xfd, 0xc0, 0x95, 0xb9, 0x22, 0x00, 0xa2, 0x2c, 0x8b, 0x49, 0x91,
0x24, 0xf5, 0x4e, 0xa8, 0xd8, 0x7b, 0x79, 0xc2, 0xee, 0xc1, 0xca, 0x41, 0xe6, 0xb9, 0xd1, 0x74,
0x6c, 0xfb, 0x9f, 0xcd, 0xc3, 0x6a, 0x21, 0x4b, 0x85, 0x6b, 0x09, 0xd3, 0x45, 0xe0, 0x8f, 0x8e,
0x22, 0x75, 0x40, 0xb1, 0x74, 0xab, 0x86, 0x91, 0x45, 0x4e, 0xe0, 0x9a, 0x54, 0x32, 0xd8, 0x9c,
0x66, 0x1b, 0x62, 0x05, 0x77, 0xba, 0x0f, 0xcd, 0x25, 0xcc, 0x37, 0x28, 0x71, 0x9d, 0x91, 0xcb,
0xeb, 0x23, 0xa7, 0xd0, 0x53, 0xda, 0x8c, 0x10, 0xd8, 0x9a, 0xc6, 0xc3, 0xda, 0xfa, 0xe0, 0x92,
0xb6, 0x0c, 0x95, 0xdc, 0x99, 0x5a, 0x1b, 0xb9, 0x80, 0x5b, 0x32, 0x0f, 0x25, 0x72, 0xb1, 0xbd,
0xda, 0x95, 0xc6, 0x86, 0x87, 0x0d, 0xb3, 0xd1, 0x4b, 0x2a, 0x26, 0x3f, 0x86, 0x95, 0x73, 0xcf,
0x4f, 0x65, 0xb7, 0x34, 0xfd, 0xa2, 0x8e, 0x4d, 0x6e, 0x5c, 0xd2, 0xe4, 0x2b, 0xfe, 0xb1, 0xb1,
0x4d, 0x4d, 0xa9, 0xb1, 0xff, 0xc7, 0x15, 0xe8, 0x98, 0xf5, 0x30, 0x32, 0x15, 0xbc, 0x2f, 0x65,
0xa0, 0xd4, 0x48, 0x73, 0x70, 0xf1, 0x9c, 0x5f, 0x29, 0x3b, 0xe7, 0xeb, 0x27, 0xeb, 0xea, 0x65,
0x26, 0xc2, 0xda, 0xd5, 0x4c, 0x84, 0xf5, 0x52, 0x13, 0xe1, 0x74, 0x4b, 0xd2, 0xec, 0x2f, 0x6a,
0x49, 0x9a, 0x7b, 0xab, 0x25, 0xa9, 0xff, 0xff, 0x2c, 0x20, 0x45, 0xea, 0x25, 0x4f, 0xb8, 0x69,
0x23, 0xa4, 0x81, 0x10, 0x62, 0xdf, 0xbc, 0x1a, 0x07, 0xc8, 0xd5, 0x92, 0x5f, 0x33, 0x56, 0xd4,
0x63, 0xa6, 0x74, 0x15, 0x6b, 0xde, 0x29, 0xcb, 0xca, 0x99, 0x49, 0x6b, 0x97, 0x9b, 0x49, 0xeb,
0x97, 0x9b, 0x49, 0x67, 0xf3, 0x66, 0xd2, 0xfe, 0x5f, 0xb3, 0x60, 0xa9, 0x84, 0xcc, 0x7e, 0x75,
0x03, 0x67, 0x84, 0x61, 0x48, 0x9f, 0x8a, 0x20, 0x0c, 0x1d, 0xec, 0xff, 0x25, 0x98, 0x37, 0x58,
0xeb, 0x57, 0xd7, 0x7e, 0x5e, 0x4b, 0xe4, 0x94, 0x6d, 0x60, 0xfd, 0xff, 0x5d, 0x01, 0x52, 0x64,
0xef, 0x5f, 0x6b, 0x1f, 0x8a, 0xf3, 0x54, 0x2d, 0x99, 0xa7, 0x3f, 0xd3, 0x9d, 0xe7, 0x03, 0x58,
0x14, 0x81, 0xa0, 0x9a, 0x31, 0x8b, 0x53, 0x4c, 0x31, 0x83, 0xe9, 0xc9, 0xa6, 0x8d, 0xba, 0x61,
0x04, 0xbe, 0x69, 0xdb, 0x6f, 0xce, 0x54, 0x6d, 0xf7, 0xa1, 0x27, 0x66, 0x68, 0xe7, 0x8c, 0x86,
0xe9, 0xe1, 0xe4, 0x88, 0x47, 0x42, 0xfa, 0x51, 0x88, 0x6a, 0xa0, 0x9e, 0x29, 0x14, 0x8a, 0x6f,
0x43, 0x5b, 0xdf, 0x3e, 0xc4, 0x72, 0xe4, 0xec, 0x99, 0x4c, 0x95, 0xd0, 0x4b, 0x91, 0x6d, 0xe8,
0xa0, 0x90, 0x1c, 0xaa, 0xef, 0x2a, 0xf8, 0xdd, 0x5b, 0x6c, 0x34, 0xbb, 0x33, 0x4e, 0xee, 0x1b,
0xf2, 0x9b, 0xd0, 0x31, 0x0f, 0x80, 0x42, 0x2b, 0x29, 0x3b, 0x11, 0xb0, 0xcf, 0xcd, 0xc2, 0x64,
0x13, 0xba, 0xf9, 0x13, 0xa4, 0x88, 0xe6, 0x99, 0x52, 0x41, 0xa1, 0x38, 0xf9, 0x58, 0x38, 0x2c,
0xeb, 0x68, 0x3b, 0xb9, 0x6d, 0x7e, 0xa6, 0x4d, 0xd3, 0x3a, 0xff, 0xa3, 0xb9, 0x30, 0x7f, 0x07,
0x20, 0xc3, 0x48, 0x17, 0xda, 0xcf, 0x0f, 0x76, 0xf6, 0xdd, 0xad, 0xdd, 0xcd, 0xfd, 0xfd, 0x9d,
0xbd, 0xee, 0x0c, 0x21, 0xd0, 0x41, 0x53, 0xdf, 0xb6, 0xc2, 0x2c, 0x86, 0x09, 0xe3, 0x8a, 0xc4,
0x2a, 0x64, 0x19, 0xba, 0x4f, 0xf7, 0x73, 0x68, 0xf5, 0x51, 0x53, 0xf1, 0x87, 0xbd, 0x02, 0xcb,
0x3c, 0xd0, 0xf7, 0x11, 0x27, 0x0f, 0xa9, 0x9d, 0xfc, 0x43, 0x0b, 0xae, 0xe5, 0x32, 0xb2, 0x90,
0x2f, 0xae, 0x80, 0x98, 0x5a, 0x89, 0x09, 0xa2, 0x03, 0x42, 0xea, 0x9a, 0x39, 0x09, 0x52, 0xcc,
0x60, 0x34, 0xaf, 0xe9, 0xa6, 0x39, 0x4e, 0x2a, 0xcb, 0xb2, 0x57, 0x55, 0x64, 0x4d, 0xae, 0xe3,
0xc7, 0x3c, 0x80, 0x58, 0xcf, 0xc8, 0x1c, 0xc0, 0x66, 0x97, 0x65, 0x92, 0x1d, 0x2b, 0x0c, 0x65,
0xc7, 0xec, 0x6f, 0x69, 0x9e, 0xfd, 0x7f, 0x6a, 0x40, 0xbe, 0x3b, 0xa1, 0xf1, 0x05, 0xc6, 0x74,
0x29, 0xcb, 0xe9, 0x6a, 0xde, 0x2e, 0x38, 0x3b, 0x9e, 0x1c, 0x7d, 0x4e, 0x2f, 0x64, 0x0c, 0x66,
0xe5, 0x4a, 0x31, 0x98, 0x65, 0x31, 0x90, 0xb5, 0xcb, 0x63, 0x20, 0xeb, 0x97, 0xc5, 0x40, 0x7e,
0x0d, 0xe6, 0xfd, 0x93, 0x30, 0x62, 0xe2, 0x80, 0xa9, 0x10, 0x49, 0x6f, 0x76, 0xad, 0xca, 0x8e,
0xde, 0x02, 0xdc, 0x67, 0x18, 0xf9, 0x34, 0x2b, 0x44, 0x87, 0x27, 0x18, 0xb3, 0xab, 0x0b, 0x88,
0x9d, 0xe1, 0x09, 0xdd, 0x8b, 0x06, 0x5e, 0x1a, 0xc5, 0x78, 0x4e, 0x93, 0x1f, 0x33, 0x3c, 0x21,
0xb7, 0xa1, 0x93, 0x44, 0x13, 0xa6, 0x54, 0xc9, 0x69, 0xe0, 0x86, 0xa6, 0x36, 0x47, 0x0f, 0xf8,
0x64, 0xac, 0xc3, 0xd2, 0x24, 0xa1, 0xee, 0xc8, 0x4f, 0x12, 0xb6, 0x71, 0x0e, 0xa2, 0x30, 0x8d,
0xa3, 0x40, 0x98, 0x9b, 0x16, 0x27, 0x09, 0x7d, 0xc6, 0x73, 0xb6, 0x78, 0x06, 0xf9, 0x76, 0xd6,
0xa5, 0xb1, 0xe7, 0xc7, 0x49, 0x0f, 0xb0, 0x4b, 0x72, 0xa4, 0xac, 0xdf, 0x07, 0x9e, 0x1f, 0xab,
0xbe, 0xb0, 0x44, 0x92, 0x8b, 0xcd, 0x6c, 0xe5, 0x63, 0x33, 0x7f, 0x54, 0x1e, 0x9b, 0x39, 0x8f,
0x55, 0x3f, 0x14, 0x55, 0x17, 0x97, 0xf8, 0xea, 0x21, 0x9a, 0xbf, 0x9a, 0xa0, 0x4b, 0x11, 0x27,
0xb8, 0x0e, 0x0d, 0x39, 0x4c, 0x76, 0x56, 0x3f, 0x8e, 0xa3, 0x91, 0x3c, 0xab, 0xb3, 0xdf, 0xa4,
0x03, 0x95, 0x34, 0x12, 0x1f, 0x57, 0xd2, 0xc8, 0xfe, 0x5d, 0x68, 0x69, 0x2b, 0x45, 0xde, 0xe3,
0x66, 0x03, 0xa6, 0x13, 0x8a, 0x43, 0x3e, 0xf7, 0xf6, 0x34, 0x05, 0xfa, 0x74, 0x48, 0xbe, 0x01,
0x8b, 0x43, 0x3f, 0xa6, 0x18, 0xe6, 0xec, 0xc6, 0xf4, 0x8c, 0xc6, 0x89, 0x34, 0x89, 0x74, 0x55,
0x86, 0xc3, 0x71, 0xdb, 0x85, 0x25, 0x63, 0x6a, 0x94, 0x70, 0x98, 0xc5, 0xe0, 0x46, 0x69, 0x95,
0x35, 0x03, 0x1f, 0x45, 0x1e, 0xdb, 0x56, 0x85, 0x35, 0xc7, 0x1d, 0xc7, 0xd1, 0x11, 0x36, 0x62,
0x39, 0x06, 0x66, 0xff, 0xaf, 0x2a, 0x54, 0x77, 0xa3, 0xb1, 0xee, 0xa3, 0xb2, 0x8a, 0x3e, 0x2a,
0xa1, 0xff, 0xba, 0x4a, 0xbd, 0x15, 0x4a, 0x8a, 0x01, 0x92, 0xfb, 0xd0, 0x61, 0x9c, 0x96, 0x46,
0x4c, 0xdf, 0x3f, 0xf7, 0x62, 0x1e, 0x09, 0x59, 0x45, 0xf2, 0xcd, 0xe5, 0x90, 0x65, 0xa8, 0x2a,
0xb5, 0x0d, 0x0b, 0xb0, 0x24, 0x3b, 0x6c, 0x62, 0x1c, 0xc0, 0x85, 0x30, 0xbd, 0x8a, 0x14, 0x13,
0x5c, 0xe6, 0xf7, 0x9c, 0x9d, 0xf9, 0xe6, 0x5b, 0x96, 0xc5, 0x74, 0x71, 0xc6, 0xb0, 0xa3, 0x4c,
0xb5, 0x55, 0x69, 0xdd, 0xa9, 0xd0, 0x30, 0x9d, 0x0a, 0x6b, 0xd0, 0x4a, 0x83, 0x33, 0x77, 0xec,
0x5d, 0x04, 0x91, 0x37, 0x14, 0x8c, 0xa2, 0x43, 0xe4, 0x21, 0xc0, 0x68, 0x3c, 0x16, 0x54, 0x8c,
0x16, 0x84, 0xd6, 0x46, 0x57, 0xcc, 0xfe, 0xb3, 0x83, 0x03, 0x4e, 0x7d, 0x8e, 0x56, 0x86, 0xec,
0x40, 0xa7, 0x34, 0x2c, 0xf9, 0xa6, 0xf4, 0x56, 0x47, 0xe3, 0xf5, 0x12, 0x3a, 0xcf, 0x7d, 0xd4,
0xff, 0x6d, 0x20, 0xbf, 0x64, 0x54, 0xf1, 0x2b, 0x68, 0xaa, 0x1e, 0xea, 0xb1, 0xbc, 0x18, 0x92,
0xd2, 0x32, 0x63, 0x79, 0x31, 0x02, 0xe5, 0x0e, 0x74, 0xf8, 0x6e, 0xa3, 0xe4, 0x27, 0x0f, 0x23,
0xc8, 0xa1, 0xf6, 0x9f, 0x5a, 0x50, 0x47, 0xca, 0x63, 0xea, 0x17, 0xcf, 0x53, 0xce, 0x3d, 0xec,
0xda, 0xbc, 0x93, 0x87, 0x89, 0x6d, 0x5c, 0x57, 0xa8, 0x28, 0x32, 0xd0, 0xaf, 0x2c, 0xac, 0x41,
0x53, 0xb5, 0xa4, 0x91, 0x52, 0x06, 0x92, 0x5b, 0x50, 0x3b, 0x8d, 0xc6, 0xf2, 0x84, 0x0a, 0xd9,
0x8c, 0x3a, 0x88, 0x67, 0xfd, 0x61, 0xf5, 0xf1, 0x21, 0xf0, 0x53, 0x40, 0x1e, 0x2e, 0x19, 0xeb,
0x6c, 0xe9, 0x58, 0x5f, 0xc2, 0x02, 0x93, 0x0f, 0x9a, 0xb3, 0x63, 0xfa, 0x5e, 0xf4, 0x3e, 0x53,
0x6d, 0x06, 0xc1, 0x64, 0x48, 0x75, 0x3b, 0x01, 0x1a, 0xb3, 0x05, 0x2e, 0x35, 0x64, 0xfb, 0x9f,
0x5b, 0x5c, 0xee, 0xb0, 0x7a, 0xc9, 0x3d, 0xa8, 0xb1, 0x6d, 0x23, 0x67, 0x16, 0x52, 0x61, 0x42,
0xac, 0x9c, 0x83, 0x25, 0xd8, 0x2a, 0xa2, 0xb9, 0x59, 0xaf, 0x9d, 0x1b, 0x9b, 0xb3, 0x43, 0xb6,
0x1a, 0x59, 0xee, 0x6c, 0x9a, 0x43, 0xc9, 0xba, 0xe6, 0xab, 0xab, 0x19, 0x5b, 0x91, 0xd4, 0xa4,
0x86, 0x27, 0x54, 0xf3, 0xd1, 0xfd, 0xa1, 0x05, 0xf3, 0x46, 0x9f, 0x18, 0xf7, 0x60, 0x30, 0x3f,
0xb7, 0x32, 0x89, 0x95, 0xd7, 0x21, 0x9d, 0xf3, 0x2a, 0x26, 0xe7, 0x29, 0x9f, 0x4f, 0x55, 0xf7,
0xf9, 0x3c, 0x84, 0x66, 0x76, 0x5f, 0xc5, 0xec, 0x14, 0x6b, 0x51, 0x06, 0x4c, 0x65, 0x85, 0x32,
0xaf, 0x42, 0x5d, 0xf3, 0x2a, 0xd8, 0x9f, 0x42, 0x4b, 0x2b, 0xaf, 0x7b, 0x05, 0x2c, 0xc3, 0x2b,
0xa0, 0xa2, 0x09, 0x2b, 0x59, 0x34, 0xa1, 0xfd, 0xb3, 0x0a, 0xcc, 0x33, 0xf2, 0xf6, 0xc3, 0x93,
0x83, 0x28, 0xf0, 0x07, 0x17, 0x48, 0x56, 0x92, 0x92, 0x85, 0xda, 0x20, 0xc9, 0xdc, 0x84, 0x99,
0x18, 0x52, 0x21, 0xd4, 0x5c, 0x66, 0xaa, 0x34, 0x13, 0xaa, 0x4c, 0x24, 0x1d, 0x79, 0x09, 0xd5,
0x2e, 0xb0, 0x38, 0x26, 0xc8, 0x44, 0x1f, 0x03, 0x30, 0x36, 0x74, 0xe4, 0x07, 0x81, 0xcf, 0xcb,
0xf2, 0xf3, 0x6e, 0x59, 0x16, 0x6b, 0x73, 0xe8, 0x27, 0xde, 0x51, 0xe6, 0xcf, 0x55, 0x69, 0x34,
0x96, 0x7a, 0x6f, 0x34, 0x63, 0x29, 0x0f, 0x26, 0x37, 0xc1, 0xfc, 0x42, 0xce, 0x15, 0x16, 0xd2,
0xfe, 0xb7, 0x15, 0x68, 0x69, 0x64, 0xc1, 0xd8, 0xb9, 0x74, 0xdf, 0xd3, 0x50, 0x11, 0xe8, 0x10,
0x1a, 0x16, 0x14, 0x0d, 0x21, 0xb7, 0xcd, 0x56, 0xd1, 0x71, 0x82, 0x0c, 0x6f, 0x90, 0xd0, 0x0d,
0x68, 0x32, 0xd2, 0xff, 0x10, 0xcd, 0x35, 0xe2, 0xb2, 0x98, 0x02, 0x64, 0xee, 0x06, 0xe6, 0xd6,
0xb3, 0x5c, 0x04, 0xde, 0x1a, 0xfa, 0xf0, 0x31, 0xb4, 0x45, 0x35, 0xb8, 0xc6, 0x38, 0xe8, 0x8c,
0xf9, 0x8c, 0xf5, 0x77, 0x8c, 0x92, 0xf2, 0xcb, 0x0d, 0xf9, 0x65, 0xe3, 0xb2, 0x2f, 0x65, 0x49,
0xfb, 0x89, 0x8a, 0x2a, 0x79, 0x12, 0x7b, 0xe3, 0x53, 0x29, 0x50, 0x1e, 0xc2, 0x92, 0x94, 0x1b,
0x93, 0xd0, 0x0b, 0xc3, 0x68, 0x12, 0x0e, 0xa8, 0x0c, 0x3c, 0x2c, 0xcb, 0xb2, 0x87, 0x2a, 0x4c,
0x1d, 0x2b, 0x22, 0xf7, 0xa1, 0xce, 0x15, 0x4f, 0xae, 0x1e, 0x94, 0x8b, 0x10, 0x5e, 0x84, 0xdc,
0x83, 0x3a, 0xd7, 0x3f, 0x2b, 0x53, 0x99, 0x9e, 0x17, 0xb0, 0xd7, 0x61, 0x01, 0xe3, 0xe2, 0x35,
0xd9, 0xf7, 0x4e, 0x99, 0xda, 0x30, 0x3b, 0xe0, 0xd1, 0xf3, 0xcb, 0x40, 0xf6, 0x39, 0x5f, 0xe9,
0xbe, 0xe1, 0x3f, 0xad, 0x42, 0x4b, 0x83, 0x99, 0x7c, 0x42, 0x87, 0x9e, 0x3b, 0xf4, 0xbd, 0x11,
0x4d, 0x69, 0x2c, 0x78, 0x29, 0x87, 0xb2, 0x72, 0xde, 0xd9, 0x89, 0x1b, 0x4d, 0x52, 0x77, 0x48,
0x4f, 0x62, 0x4a, 0x85, 0x3e, 0x93, 0x43, 0x59, 0x39, 0x46, 0xcd, 0x5a, 0x39, 0xee, 0x82, 0xcb,
0xa1, 0xd2, 0xd3, 0xcb, 0xe7, 0xa9, 0x96, 0x79, 0x7a, 0xf9, 0xac, 0xe4, 0x25, 0x6b, 0xbd, 0x44,
0xb2, 0x7e, 0x04, 0x2b, 0x5c, 0x86, 0x0a, 0xe9, 0xe1, 0xe6, 0x88, 0x6b, 0x4a, 0x2e, 0xb9, 0x0f,
0x5d, 0xd6, 0x67, 0xc9, 0x1a, 0x89, 0xff, 0x53, 0xce, 0x63, 0x96, 0x53, 0xc0, 0x59, 0x59, 0x74,
0x3d, 0xe8, 0x65, 0x79, 0xb8, 0x4d, 0x01, 0xc7, 0xb2, 0xde, 0x1b, 0xb3, 0x6c, 0x53, 0x94, 0xcd,
0xe1, 0xe4, 0x63, 0x58, 0x1d, 0xd1, 0xa1, 0xef, 0x99, 0x55, 0xb8, 0xd9, 0x26, 0x3f, 0x2d, 0x9b,
0xb5, 0xc2, 0x66, 0xe1, 0xa7, 0xd1, 0xe8, 0xc8, 0xe7, 0x1b, 0x1b, 0x77, 0x92, 0xd4, 0x9c, 0x02,
0x6e, 0xcf, 0x43, 0xeb, 0x30, 0x8d, 0xc6, 0x72, 0xe9, 0x3b, 0xd0, 0xe6, 0x49, 0x11, 0x6a, 0xfa,
0x0e, 0x5c, 0x47, 0x7a, 0x7d, 0x11, 0x8d, 0xa3, 0x20, 0x3a, 0xb9, 0x30, 0x4c, 0x1d, 0xff, 0xde,
0x82, 0x25, 0x23, 0x37, 0xb3, 0x75, 0xa0, 0x5d, 0x56, 0xc6, 0x07, 0x72, 0x12, 0x5f, 0xd4, 0xb6,
0x05, 0x5e, 0x90, 0xbb, 0xc1, 0x5e, 0x8a, 0x90, 0xc1, 0xcd, 0xec, 0xd2, 0x8b, 0xfc, 0x90, 0xd3,
0x7b, 0xaf, 0x48, 0xef, 0xe2, 0x7b, 0x79, 0x1d, 0x46, 0x56, 0xf1, 0x9b, 0x22, 0x38, 0x6a, 0x28,
0x06, 0x5d, 0x35, 0x03, 0x5a, 0x74, 0xd3, 0x98, 0xec, 0xc1, 0x40, 0x81, 0x89, 0xfd, 0x73, 0x0b,
0x20, 0xeb, 0x1d, 0x86, 0xd4, 0xa8, 0xad, 0x8d, 0xdf, 0x0f, 0xd7, 0xb6, 0xb1, 0xf7, 0xa0, 0xad,
0xa2, 0x22, 0xb2, 0xdd, 0xb2, 0x25, 0x31, 0xa6, 0x5d, 0xdc, 0x85, 0x85, 0x93, 0x20, 0x3a, 0x42,
0x2d, 0x06, 0x63, 0x97, 0x13, 0x11, 0x70, 0xdb, 0xe1, 0xf0, 0x63, 0x81, 0x66, 0x5b, 0x6b, 0x4d,
0xdf, 0x5a, 0xcb, 0x37, 0xca, 0x9f, 0x55, 0x94, 0x6b, 0x3a, 0x9b, 0x89, 0xb7, 0x72, 0x39, 0xd9,
0x28, 0x88, 0xf5, 0x29, 0xde, 0x60, 0x3c, 0x03, 0x1d, 0x5c, 0x6a, 0x29, 0xff, 0x14, 0x3a, 0x31,
0x97, 0x99, 0x52, 0xa0, 0xd6, 0xde, 0x22, 0x50, 0xe7, 0x63, 0x63, 0x67, 0x7e, 0x1f, 0xba, 0xde,
0xf0, 0x8c, 0xc6, 0xa9, 0x8f, 0x96, 0x43, 0x54, 0xa3, 0xf8, 0x00, 0x17, 0x34, 0x1c, 0xb5, 0x95,
0xbb, 0xb0, 0x20, 0xc2, 0x9f, 0x55, 0x49, 0x71, 0x53, 0x32, 0x83, 0x59, 0x41, 0xfb, 0x1f, 0x4b,
0x4f, 0xb8, 0xb9, 0xba, 0x6f, 0x9f, 0x15, 0x7d, 0x84, 0x95, 0xdc, 0x08, 0xbf, 0x26, 0x3c, 0xd3,
0x43, 0x69, 0xa2, 0xac, 0x6a, 0x61, 0x76, 0x43, 0x11, 0x49, 0x60, 0x4e, 0x6b, 0xed, 0x2a, 0xd3,
0x6a, 0xff, 0x27, 0x0b, 0xe6, 0x76, 0xa3, 0xf1, 0x2e, 0x9b, 0x62, 0xa6, 0xe3, 0x30, 0x36, 0x51,
0x77, 0x0f, 0x64, 0xf2, 0x92, 0x70, 0xc4, 0x52, 0xad, 0x64, 0x3e, 0xaf, 0x95, 0xfc, 0x36, 0xbc,
0x83, 0x46, 0xf2, 0x38, 0x1a, 0x47, 0x31, 0x63, 0x57, 0x2f, 0xe0, 0x2a, 0x48, 0x14, 0xa6, 0xa7,
0x52, 0x9c, 0xbe, 0xad, 0x08, 0x5a, 0xae, 0x82, 0xf4, 0xcc, 0xe5, 0x27, 0x3c, 0xa1, 0x45, 0x71,
0x29, 0x5b, 0xcc, 0xb0, 0x7f, 0x03, 0x9a, 0x78, 0xc2, 0xc0, 0xa1, 0x7d, 0x00, 0xcd, 0xd3, 0x68,
0xec, 0x9e, 0xfa, 0x61, 0x2a, 0xd9, 0xbf, 0x93, 0xa9, 0xfe, 0xbb, 0x38, 0x29, 0xaa, 0x80, 0xfd,
0x27, 0xb3, 0x30, 0xf7, 0x34, 0x3c, 0x8b, 0xfc, 0x01, 0x7a, 0xdf, 0x47, 0x74, 0x14, 0xc9, 0xdb,
0x18, 0xec, 0x37, 0x5e, 0x78, 0xce, 0xee, 0x4b, 0x72, 0x16, 0xd2, 0x10, 0x76, 0x26, 0x8d, 0xf5,
0xfb, 0x8e, 0x22, 0x95, 0x1d, 0xb4, 0xea, 0xda, 0x7d, 0x16, 0x56, 0x1b, 0xbf, 0x87, 0x87, 0x73,
0xc7, 0xa3, 0x68, 0x35, 0x84, 0x4d, 0xbe, 0x08, 0x93, 0xe4, 0x71, 0x74, 0x3c, 0xa6, 0x47, 0x40,
0x78, 0xce, 0x8e, 0x29, 0x77, 0x73, 0x28, 0xd5, 0x8b, 0x9d, 0xb3, 0x75, 0x90, 0xa9, 0x67, 0xfc,
0x03, 0x5e, 0x86, 0x6f, 0x07, 0x3a, 0xc4, 0x14, 0xd4, 0xfc, 0x2d, 0x60, 0x7e, 0x93, 0x3b, 0x0f,
0x33, 0x69, 0x3e, 0xa4, 0x4a, 0xe8, 0xf2, 0x71, 0x02, 0xbf, 0x33, 0x9a, 0xc7, 0xb5, 0xd3, 0x39,
0x8f, 0x13, 0x97, 0xa7, 0x73, 0x46, 0x32, 0x5e, 0x10, 0x1c, 0x79, 0x83, 0xd7, 0xfc, 0x30, 0xd9,
0xe6, 0xde, 0x31, 0x03, 0xc4, 0x60, 0xc7, 0x6c, 0x5d, 0x31, 0x22, 0xa9, 0xe6, 0xe8, 0x10, 0xd9,
0x80, 0x16, 0x5a, 0x2e, 0xc4, 0xca, 0x76, 0x70, 0x65, 0xbb, 0xba, 0x69, 0x03, 0xd7, 0x56, 0x2f,
0xa4, 0xc7, 0x05, 0x2c, 0x14, 0x22, 0xb7, 0xbd, 0xe1, 0x50, 0x84, 0x54, 0x74, 0xf9, 0x9d, 0x49,
0x05, 0xa0, 0x6d, 0x84, 0x4f, 0x18, 0x2f, 0xb0, 0x88, 0x05, 0x0c, 0x8c, 0xdc, 0xe2, 0x96, 0xc3,
0xb1, 0xe7, 0x0f, 0x31, 0x08, 0x89, 0x1f, 0x3f, 0x15, 0xc6, 0xea, 0x90, 0xbf, 0x71, 0xe3, 0x5c,
0xc2, 0x59, 0x31, 0x30, 0x36, 0x37, 0x2a, 0x3d, 0xca, 0x42, 0xbd, 0x4d, 0x90, 0x7c, 0x88, 0x4e,
0xed, 0x94, 0x62, 0x3c, 0x77, 0x67, 0xe3, 0x1d, 0x31, 0x66, 0x41, 0xb6, 0xf2, 0xef, 0x21, 0x2b,
0xe2, 0xf0, 0x92, 0x4c, 0x6d, 0xe3, 0x7e, 0x85, 0x15, 0x43, 0x6d, 0x13, 0x45, 0xd1, 0xaf, 0xc0,
0x0b, 0xd8, 0x9b, 0xd0, 0xd6, 0x2b, 0x20, 0x0d, 0xa8, 0x3d, 0x3f, 0xd8, 0xd9, 0xef, 0xce, 0x90,
0x16, 0xcc, 0x1d, 0xee, 0xbc, 0x78, 0xb1, 0xb7, 0xb3, 0xdd, 0xb5, 0x48, 0x1b, 0x1a, 0x2a, 0x86,
0xb5, 0xc2, 0x52, 0x9b, 0x5b, 0x5b, 0x3b, 0x07, 0x2f, 0x76, 0xb6, 0xbb, 0xd5, 0xcf, 0x6a, 0x8d,
0x4a, 0xb7, 0x6a, 0xff, 0x51, 0x15, 0x5a, 0x5a, 0xfd, 0x97, 0xd8, 0x8c, 0x6e, 0x01, 0xe0, 0x89,
0x22, 0x8b, 0x69, 0xa9, 0x39, 0x1a, 0xc2, 0x24, 0xa4, 0x3a, 0x6b, 0x57, 0xf9, 0x05, 0x52, 0x99,
0xc6, 0x59, 0xc3, 0x9b, 0x9a, 0xba, 0x13, 0xa7, 0xee, 0x98, 0x20, 0xa3, 0x28, 0x01, 0x60, 0x60,
0x25, 0xe7, 0x43, 0x1d, 0x62, 0x2b, 0x14, 0xd3, 0x24, 0x0a, 0xce, 0x28, 0x2f, 0xc2, 0xf5, 0x32,
0x03, 0x63, 0x6d, 0x09, 0x51, 0xa3, 0x05, 0x3d, 0xd7, 0x1d, 0x13, 0x24, 0xdf, 0x94, 0x2b, 0xd4,
0xc0, 0x15, 0x5a, 0x2d, 0x4e, 0xb7, 0xb1, 0x3a, 0xcf, 0x0a, 0x46, 0x9f, 0x26, 0x2e, 0xd3, 0xd7,
0x8b, 0xdf, 0xfd, 0x7a, 0x8c, 0x3f, 0x29, 0x90, 0xcd, 0xe1, 0x50, 0x34, 0xab, 0xdf, 0x8f, 0x8d,
0xf5, 0x0b, 0xd9, 0x52, 0xb6, 0x95, 0xc8, 0x8f, 0x4a, 0xb9, 0xfc, 0x78, 0x2b, 0x97, 0xd9, 0x4f,
0xa1, 0x75, 0xa0, 0x5d, 0xf1, 0xb6, 0x99, 0xa8, 0x95, 0x97, 0xbb, 0xb9, 0x10, 0xe6, 0x46, 0x9f,
0x0c, 0xd5, 0xba, 0x54, 0xd1, 0xbb, 0x64, 0xff, 0x23, 0x8b, 0xdf, 0x9a, 0x53, 0x43, 0xe0, 0xed,
0xdb, 0xd0, 0x56, 0x7e, 0x83, 0xec, 0xa2, 0x81, 0x81, 0xb1, 0x32, 0xd8, 0x1d, 0x37, 0x3a, 0x3e,
0x4e, 0xa8, 0x0c, 0x09, 0x36, 0x30, 0xa9, 0xd5, 0x32, 0x3d, 0xd9, 0xe7, 0x2d, 0x24, 0x22, 0x34,
0xb8, 0x80, 0x33, 0xca, 0x15, 0x76, 0x5b, 0x19, 0x0c, 0xad, 0xd2, 0xea, 0x3e, 0x44, 0x7e, 0xa6,
0xef, 0x43, 0x43, 0xd5, 0x6b, 0x6e, 0x59, 0xb2, 0xa4, 0xca, 0x67, 0x5b, 0x23, 0x9e, 0x78, 0x8d,
0x4e, 0x73, 0x06, 0x2a, 0x66, 0x90, 0x75, 0x20, 0xc7, 0x7e, 0x9c, 0x2f, 0xce, 0x39, 0xaa, 0x24,
0xc7, 0x7e, 0x05, 0x4b, 0x52, 0x1c, 0x68, 0xea, 0xb6, 0xb9, 0x90, 0xd6, 0x65, 0xe2, 0xb2, 0x52,
0x14, 0x97, 0xf6, 0xbf, 0xa9, 0xc1, 0x9c, 0x58, 0xed, 0xc2, 0x53, 0x01, 0x7c, 0xc3, 0x35, 0x30,
0xd2, 0x33, 0x2e, 0x84, 0x22, 0x21, 0x88, 0x4d, 0xf4, 0x5e, 0x7e, 0x1b, 0xcc, 0x8c, 0x7f, 0xb9,
0xad, 0x70, 0x05, 0x6a, 0x63, 0x2f, 0x3d, 0x45, 0xdb, 0x10, 0xa7, 0x25, 0x4c, 0x4b, 0xf3, 0x72,
0xdd, 0x34, 0x2f, 0x97, 0x3d, 0x90, 0xc0, 0x75, 0xbe, 0xe2, 0x03, 0x09, 0x37, 0xa0, 0xc9, 0xb7,
0xed, 0xcc, 0x82, 0x9c, 0x01, 0xb9, 0x6d, 0xbe, 0x51, 0xd8, 0xe6, 0xaf, 0xbe, 0x01, 0x7f, 0x1b,
0x66, 0xf9, 0x25, 0x21, 0x11, 0xfa, 0x7d, 0x43, 0x3a, 0x88, 0x79, 0x39, 0xf9, 0x97, 0xc7, 0x8f,
0x39, 0xa2, 0xac, 0x7e, 0xcd, 0xb8, 0x65, 0x5e, 0x33, 0xd6, 0x0d, 0xdf, 0xed, 0x9c, 0xe1, 0xfb,
0x3e, 0x74, 0xd5, 0xf4, 0xa1, 0xa5, 0x2a, 0x4c, 0x44, 0x64, 0x70, 0x01, 0xcf, 0xf6, 0x97, 0x8e,
0xb1, 0xbf, 0x30, 0x89, 0xb5, 0x99, 0xa6, 0x74, 0x34, 0x4e, 0xe5, 0xfe, 0xf2, 0x18, 0xe6, 0x8d,
0x4e, 0xb2, 0x6d, 0x45, 0x04, 0xa4, 0x77, 0x67, 0xc8, 0x3c, 0x34, 0x9f, 0xee, 0xbb, 0x8f, 0xf7,
0x9e, 0x3e, 0xd9, 0x7d, 0xd1, 0xb5, 0x58, 0xf2, 0xf0, 0xe5, 0xd6, 0xd6, 0xce, 0xce, 0x36, 0x6e,
0x33, 0x00, 0xb3, 0x8f, 0x37, 0x9f, 0xb2, 0x2d, 0xa7, 0x6a, 0xff, 0x5f, 0x0b, 0x5a, 0x5a, 0xf5,
0xe4, 0x3b, 0x6a, 0x66, 0xf8, 0x4d, 0xd4, 0x9b, 0xc5, 0x2e, 0xac, 0x4b, 0xc1, 0xab, 0x4d, 0x8d,
0x7a, 0x13, 0xa2, 0x32, 0xf5, 0x4d, 0x08, 0xb6, 0x3c, 0x1e, 0xaf, 0x41, 0xcd, 0x03, 0x3f, 0x86,
0xe4, 0x61, 0x1e, 0x23, 0x94, 0xed, 0x16, 0xac, 0x24, 0x37, 0xbd, 0xe5, 0x61, 0xfb, 0x23, 0x80,
0xac, 0x37, 0xe6, 0xb0, 0x67, 0xcc, 0x61, 0x5b, 0xda, 0xb0, 0x2b, 0xf6, 0x36, 0x17, 0x18, 0x62,
0x0a, 0x95, 0x87, 0xf3, 0x9b, 0x40, 0xa4, 0xa5, 0x07, 0x63, 0xf1, 0xc6, 0x01, 0x4d, 0xe5, 0x15,
0x91, 0x45, 0x91, 0xf3, 0x54, 0x65, 0xc8, 0x5b, 0x4e, 0x59, 0x2d, 0x99, 0xdc, 0x11, 0x14, 0x97,
0x97, 0x3b, 0xa2, 0xa8, 0xa3, 0xf2, 0xed, 0x3e, 0xf4, 0xb6, 0x29, 0xab, 0x6d, 0x33, 0x08, 0x72,
0xdd, 0x61, 0x47, 0xf5, 0x92, 0x3c, 0x71, 0x8e, 0xff, 0x2e, 0x5c, 0xdb, 0xe4, 0xb7, 0x41, 0x7e,
0x55, 0xc1, 0xc2, 0x76, 0x0f, 0x56, 0xf2, 0x55, 0x8a, 0xc6, 0x1e, 0xc3, 0xe2, 0x36, 0x3d, 0x9a,
0x9c, 0xec, 0xd1, 0xb3, 0xac, 0x21, 0x02, 0xb5, 0xe4, 0x34, 0x3a, 0x17, 0xf3, 0x83, 0xbf, 0xc9,
0x4d, 0x80, 0x80, 0x95, 0x71, 0x93, 0x31, 0x1d, 0xc8, 0x9b, 0xbe, 0x88, 0x1c, 0x8e, 0xe9, 0xc0,
0xfe, 0x08, 0x88, 0x5e, 0x8f, 0x98, 0x2f, 0xa6, 0x5b, 0x4f, 0x8e, 0xdc, 0xe4, 0x22, 0x49, 0xe9,
0x48, 0x5e, 0x61, 0xd6, 0x21, 0xfb, 0x2e, 0xb4, 0x0f, 0xbc, 0x0b, 0x87, 0xfe, 0x44, 0xbc, 0x41,
0xb2, 0x0a, 0x73, 0x63, 0xef, 0x82, 0xf1, 0xb3, 0x32, 0xff, 0x63, 0xb6, 0xfd, 0x2f, 0xaa, 0x30,
0xcb, 0x4b, 0xb2, 0x5a, 0x87, 0x34, 0x49, 0xfd, 0x10, 0x79, 0x4c, 0xd6, 0xaa, 0x41, 0x05, 0x81,
0x59, 0x29, 0x11, 0x98, 0xc2, 0x26, 0x25, 0x6f, 0x4c, 0x0a, 0x92, 0x35, 0x30, 0x26, 0xb6, 0xb2,
0xa8, 0x7f, 0x4e, 0xa9, 0x19, 0x90, 0xf3, 0xaf, 0x65, 0x1a, 0x3c, 0xef, 0x9f, 0xdc, 0x0b, 0x84,
0x4c, 0xd4, 0xa1, 0xd2, 0x73, 0xc2, 0x1c, 0x17, 0x9d, 0x85, 0x73, 0x42, 0xe1, 0x3c, 0xd0, 0xb8,
0xc2, 0x79, 0x80, 0x1b, 0xaa, 0xde, 0x76, 0x1e, 0x80, 0xab, 0x9c, 0x07, 0xae, 0xe2, 0xd7, 0xea,
0x43, 0x03, 0xf7, 0x74, 0x4d, 0x44, 0xca, 0xb4, 0x4d, 0xa0, 0x8b, 0xcf, 0x39, 0xb0, 0x33, 0xab,
0xa4, 0xfd, 0xbf, 0x67, 0x41, 0x57, 0x50, 0xa1, 0xca, 0x93, 0x9e, 0xde, 0xb7, 0xdd, 0xfb, 0xbb,
0x0d, 0xf3, 0x78, 0x62, 0x56, 0xf2, 0x58, 0x78, 0x4d, 0x0d, 0x90, 0xcd, 0x83, 0x8c, 0x37, 0x1b,
0xf9, 0x81, 0x58, 0x54, 0x1d, 0x92, 0x22, 0x3d, 0xf6, 0x44, 0xf4, 0xbb, 0xe5, 0xa8, 0xb4, 0xfd,
0xc7, 0x16, 0x2c, 0x6a, 0x1d, 0x16, 0x54, 0xfc, 0x29, 0xb4, 0xd5, 0xab, 0x29, 0x54, 0x69, 0x1c,
0xab, 0x26, 0xdb, 0x65, 0x9f, 0x19, 0x85, 0x91, 0x18, 0xbc, 0x0b, 0xec, 0x60, 0x32, 0x19, 0x89,
0xad, 0x5e, 0x87, 0xd8, 0x24, 0x9f, 0x53, 0xfa, 0x5a, 0x15, 0xe1, 0xca, 0x86, 0x81, 0xa1, 0xa7,
0x81, 0x9d, 0xf4, 0x55, 0xa1, 0x9a, 0xf0, 0x34, 0xe8, 0xa0, 0xfd, 0x57, 0x2a, 0xb0, 0xc4, 0x4d,
0x37, 0xc2, 0x64, 0xa6, 0x2e, 0xae, 0xcf, 0x72, 0x2b, 0x16, 0xe7, 0xe8, 0xdd, 0x19, 0x47, 0xa4,
0xc9, 0x77, 0xae, 0x68, 0x6e, 0x52, 0x21, 0xf9, 0x53, 0xd6, 0xa2, 0x5a, 0xb6, 0x16, 0x6f, 0x99,
0xe9, 0x32, 0xa7, 0x4f, 0xbd, 0xdc, 0xe9, 0x73, 0x25, 0x27, 0xcb, 0xa3, 0x39, 0xa8, 0x27, 0x83,
0x68, 0x4c, 0xed, 0x15, 0x58, 0x36, 0xa7, 0x40, 0x08, 0xba, 0x9f, 0x5b, 0xd0, 0x7b, 0xcc, 0x7d,
0xda, 0x7e, 0x78, 0xb2, 0xeb, 0x27, 0x69, 0x14, 0xab, 0x57, 0x40, 0x6e, 0x01, 0x24, 0xa9, 0x17,
0x8b, 0xa3, 0x0f, 0xd7, 0xd7, 0x34, 0x84, 0x8d, 0x84, 0x86, 0x43, 0x9e, 0xcb, 0x57, 0x50, 0xa5,
0x0b, 0xfa, 0xb0, 0x30, 0x3f, 0x19, 0x5a, 0xe5, 0x1d, 0x7e, 0x91, 0x85, 0x75, 0x99, 0x9e, 0xe1,
0xee, 0xc1, 0x6d, 0x3a, 0x39, 0xd4, 0xfe, 0xfd, 0x0a, 0x2c, 0x64, 0x9d, 0xc4, 0x60, 0x2b, 0x53,
0x06, 0x09, 0x55, 0x32, 0x93, 0x41, 0xc2, 0x55, 0xe4, 0xfa, 0x4c, 0xb7, 0xd4, 0x2c, 0x50, 0x1a,
0x4a, 0x6e, 0x43, 0x4b, 0xa6, 0xa2, 0x49, 0xaa, 0x5d, 0xc7, 0xd7, 0x61, 0x1e, 0x9a, 0xce, 0xb4,
0x5b, 0xa1, 0xa9, 0x8b, 0x14, 0x5e, 0x0d, 0x1c, 0xa5, 0xf8, 0x25, 0x9f, 0x79, 0x99, 0x64, 0x27,
0x26, 0xa6, 0x16, 0xf2, 0x97, 0x91, 0x50, 0x25, 0xd4, 0xd5, 0xa5, 0x86, 0x7a, 0xc6, 0x48, 0x71,
0x26, 0xaf, 0x31, 0xbb, 0x57, 0x50, 0x73, 0x74, 0x48, 0x5a, 0x00, 0xa2, 0x89, 0xe6, 0x1f, 0xaf,
0x39, 0x06, 0x66, 0xff, 0x9e, 0x05, 0xd7, 0x4b, 0x96, 0x51, 0x70, 0xea, 0x36, 0x2c, 0x1e, 0xab,
0x4c, 0x39, 0xd5, 0x9c, 0x5d, 0x57, 0x64, 0x80, 0x91, 0x39, 0xbd, 0x4e, 0xf1, 0x03, 0x75, 0x62,
0xe0, 0x8b, 0x67, 0x5c, 0x23, 0x29, 0x66, 0xd8, 0x07, 0xd0, 0xdf, 0x79, 0xc3, 0x18, 0x7f, 0x4b,
0x7f, 0x93, 0x52, 0x52, 0xd6, 0x46, 0x41, 0xb0, 0x5d, 0x6e, 0x78, 0x3c, 0x86, 0x79, 0xa3, 0x2e,
0xf2, 0xad, 0xab, 0x56, 0xa2, 0xf3, 0xe8, 0x9a, 0x58, 0x75, 0xfe, 0xa8, 0xa6, 0xbc, 0xcc, 0xa2,
0x41, 0xf6, 0x19, 0x2c, 0x3c, 0x9b, 0x04, 0xa9, 0x9f, 0x3d, 0xb0, 0x49, 0xbe, 0x23, 0x3e, 0xc2,
0x2a, 0xe4, 0xd4, 0x95, 0x36, 0xa5, 0x97, 0x63, 0x33, 0x36, 0x62, 0x35, 0xb9, 0xc5, 0x16, 0x8b,
0x19, 0xf6, 0x75, 0x58, 0xcd, 0x9a, 0xe4, 0x73, 0x27, 0x37, 0x87, 0x3f, 0xb0, 0x78, 0x44, 0xa6,
0xf9, 0xde, 0x27, 0x79, 0x02, 0x4b, 0x89, 0x1f, 0x9e, 0x04, 0x54, 0xaf, 0x27, 0x11, 0x33, 0x71,
0xcd, 0xec, 0x9e, 0x78, 0x13, 0xd4, 0x29, 0xfb, 0x82, 0x11, 0x48, 0x79, 0x47, 0x33, 0x02, 0xc9,
0x4d, 0x49, 0xd9, 0x00, 0x3e, 0x83, 0x8e, 0xd9, 0x18, 0xf9, 0x58, 0xdc, 0x41, 0xc9, 0x7a, 0xa6,
0x7b, 0x0a, 0x4d, 0xca, 0x30, 0x4a, 0xda, 0x3f, 0xb3, 0xa0, 0xe7, 0x50, 0x46, 0xc6, 0x54, 0x6b,
0x54, 0x50, 0xcf, 0xa7, 0x85, 0x6a, 0xa7, 0x0f, 0x58, 0xdd, 0x6d, 0x91, 0x63, 0x5d, 0x9f, 0xba,
0x28, 0xbb, 0x33, 0x25, 0xa3, 0x7a, 0xd4, 0x80, 0x59, 0x31, 0xbe, 0x55, 0xb8, 0x26, 0xba, 0x24,
0xbb, 0x93, 0xb9, 0x98, 0x8c, 0x46, 0x0d, 0x17, 0x53, 0x1f, 0x7a, 0xfc, 0xb1, 0x17, 0x7d, 0x1c,
0xe2, 0xc3, 0x6d, 0x20, 0xcf, 0xbc, 0x81, 0x17, 0x47, 0x51, 0x78, 0x40, 0x63, 0x11, 0x42, 0x87,
0x0a, 0x14, 0x7a, 0x60, 0xa4, 0xae, 0xc7, 0x53, 0xf2, 0x7d, 0x92, 0x28, 0x94, 0xef, 0xc0, 0xf0,
0x94, 0xed, 0xc0, 0xd2, 0x23, 0xef, 0x35, 0x95, 0x35, 0x65, 0xb3, 0xd4, 0x1a, 0xab, 0x4a, 0xe5,
0xdc, 0xcb, 0xeb, 0x65, 0xc5, 0x66, 0x1d, 0xbd, 0xb4, 0xbd, 0x01, 0xcb, 0x66, 0x9d, 0x42, 0x94,
0xf4, 0xa1, 0x31, 0x12, 0x98, 0xe8, 0x9d, 0x4a, 0xdf, 0xff, 0x12, 0x5a, 0xda, 0x03, 0x3e, 0x64,
0x15, 0x96, 0x5e, 0x3d, 0x7d, 0xb1, 0xbf, 0x73, 0x78, 0xe8, 0x1e, 0xbc, 0x7c, 0xf4, 0xf9, 0xce,
0xf7, 0xdd, 0xdd, 0xcd, 0xc3, 0xdd, 0xee, 0x0c, 0x59, 0x01, 0xb2, 0xbf, 0x73, 0xf8, 0x62, 0x67,
0xdb, 0xc0, 0x2d, 0x72, 0x0b, 0xfa, 0x2f, 0xf7, 0x5f, 0x1e, 0xee, 0x6c, 0xbb, 0x65, 0xdf, 0x55,
0xc8, 0x4d, 0xb8, 0x2e, 0xf2, 0x4b, 0x3e, 0xaf, 0xde, 0xff, 0x14, 0xba, 0x79, 0x4b, 0x99, 0x61,
0x61, 0x7c, 0x9b, 0x29, 0x72, 0xe3, 0x67, 0x55, 0xe8, 0xf0, 0x18, 0x59, 0xfe, 0x62, 0x2e, 0x8d,
0xc9, 0x33, 0x98, 0x13, 0x4f, 0x2f, 0x13, 0x49, 0x5a, 0xe6, 0x63, 0xcf, 0xfd, 0x95, 0x3c, 0x2c,
0x96, 0x75, 0xe9, 0xaf, 0xfe, 0xc7, 0xff, 0xf1, 0xb7, 0x2b, 0xf3, 0xa4, 0xf5, 0xe0, 0xec, 0xc3,
0x07, 0x27, 0x34, 0x4c, 0x58, 0x1d, 0xbf, 0x03, 0x90, 0x3d, 0x28, 0x4c, 0x7a, 0xca, 0x30, 0x93,
0x7b, 0x6d, 0xb9, 0x7f, 0xbd, 0x24, 0x47, 0xd4, 0x7b, 0x1d, 0xeb, 0x5d, 0xb2, 0x3b, 0xac, 0x5e,
0x3f, 0xf4, 0x53, 0xfe, 0xb8, 0xf0, 0x27, 0xd6, 0x7d, 0x32, 0x84, 0xb6, 0xfe, 0xd4, 0x2f, 0x91,
0x1e, 0xc3, 0x92, 0xc7, 0x8a, 0xfb, 0xef, 0x94, 0xe6, 0x49, 0x5a, 0xc6, 0x36, 0xae, 0xd9, 0x5d,
0xd6, 0xc6, 0x04, 0x4b, 0x64, 0xad, 0x04, 0x9c, 0xc3, 0xb3, 0x17, 0x7d, 0xc9, 0x0d, 0x8d, 0xe9,
0x0a, 0xef, 0x09, 0xf7, 0x6f, 0x4e, 0xc9, 0x15, 0x6d, 0xdd, 0xc4, 0xb6, 0x56, 0x6d, 0xc2, 0xda,
0x1a, 0x60, 0x19, 0xf9, 0x9e, 0xf0, 0x27, 0xd6, 0xfd, 0x8d, 0x7f, 0x77, 0x17, 0x9a, 0x2a, 0x9a,
0x80, 0xfc, 0x18, 0xe6, 0x8d, 0x20, 0x66, 0x22, 0x87, 0x51, 0x16, 0xf3, 0xdc, 0xbf, 0x51, 0x9e,
0x29, 0x1a, 0xbe, 0x85, 0x0d, 0xf7, 0xc8, 0x0a, 0x6b, 0x58, 0x44, 0x01, 0x3f, 0xc0, 0x70, 0x7c,
0x7e, 0xa3, 0xf7, 0xb5, 0x26, 0xc9, 0x78, 0x63, 0x37, 0xf2, 0xc2, 0xc5, 0x68, 0xed, 0xe6, 0x94,
0x5c, 0xd1, 0xdc, 0x0d, 0x6c, 0x6e, 0x85, 0x2c, 0xeb, 0xcd, 0x29, 0x0f, 0x3f, 0xc5, 0x6b, 0xec,
0xfa, 0x63, 0xb7, 0xe4, 0xa6, 0x22, 0xac, 0xb2, 0x47, 0x70, 0x15, 0x89, 0x14, 0x5f, 0xc2, 0xb5,
0x7b, 0xd8, 0x14, 0x21, 0xb8, 0x7c, 0xfa, 0x5b, 0xb7, 0xe4, 0x08, 0x5a, 0xda, 0x5b, 0x72, 0xe4,
0xfa, 0xd4, 0x77, 0xef, 0xfa, 0xfd, 0xb2, 0xac, 0xb2, 0xa1, 0xe8, 0xf5, 0x3f, 0x60, 0x8a, 0xce,
0x0f, 0xa1, 0xa9, 0x5e, 0x27, 0x23, 0xab, 0xda, 0x6b, 0x71, 0xfa, 0x6b, 0x6a, 0xfd, 0x5e, 0x31,
0xa3, 0x8c, 0xf8, 0xf4, 0xda, 0x19, 0xf1, 0xbd, 0x82, 0x96, 0xf6, 0x02, 0x99, 0x1a, 0x40, 0xf1,
0x95, 0x33, 0x35, 0x80, 0x92, 0x07, 0xcb, 0xec, 0x45, 0x6c, 0xa2, 0x45, 0x9a, 0x48, 0xdf, 0xe9,
0x9b, 0x28, 0x21, 0x7b, 0x70, 0x4d, 0x48, 0xec, 0x23, 0xfa, 0x55, 0x96, 0xa1, 0xe4, 0x7d, 0xe1,
0x87, 0x16, 0xf9, 0x14, 0x1a, 0xf2, 0xa1, 0x39, 0xb2, 0x52, 0xfe, 0x60, 0x5e, 0x7f, 0xb5, 0x80,
0x0b, 0xf1, 0xfa, 0x7d, 0x80, 0xec, 0xb9, 0x33, 0x25, 0x24, 0x0a, 0xcf, 0xa7, 0x29, 0x0a, 0x28,
0xbe, 0x8d, 0x66, 0xaf, 0xe0, 0x00, 0xbb, 0x04, 0x85, 0x44, 0x48, 0xcf, 0xe5, 0x8b, 0x15, 0x3f,
0x82, 0x96, 0xf6, 0xe2, 0x99, 0x9a, 0xbe, 0xe2, 0x6b, 0x69, 0x6a, 0xfa, 0x4a, 0x1e, 0x48, 0xb3,
0xfb, 0x58, 0xfb, 0xb2, 0xbd, 0xc0, 0x6a, 0x4f, 0xfc, 0x93, 0x70, 0xc4, 0x0b, 0xb0, 0x05, 0x3a,
0x85, 0x79, 0xe3, 0x59, 0x33, 0xc5, 0xa1, 0x65, 0x8f, 0xa6, 0x29, 0x0e, 0x2d, 0x7d, 0x09, 0x4d,
0xd2, 0x99, 0xbd, 0xc8, 0xda, 0x39, 0xc3, 0x22, 0x5a, 0x4b, 0x3f, 0x80, 0x96, 0xf6, 0x44, 0x99,
0x1a, 0x4b, 0xf1, 0x35, 0x34, 0x35, 0x96, 0xb2, 0x17, 0xcd, 0x96, 0xb1, 0x8d, 0x8e, 0x8d, 0xa4,
0x80, 0x6f, 0x2f, 0xb0, 0xba, 0x7f, 0x0c, 0x1d, 0xf3, 0xd1, 0x32, 0xc5, 0xfb, 0xa5, 0xcf, 0x9f,
0x29, 0xde, 0x9f, 0xf2, 0xd2, 0x99, 0x20, 0xe9, 0xfb, 0x4b, 0xaa, 0x91, 0x07, 0x5f, 0x88, 0x78,
0xc4, 0x2f, 0xc9, 0x77, 0x99, 0x80, 0x13, 0x8f, 0x61, 0x90, 0x55, 0x8d, 0x6a, 0xf5, 0x27, 0x33,
0x14, 0xbf, 0x14, 0xde, 0xcd, 0x30, 0x89, 0x99, 0xbf, 0x1e, 0x81, 0xbb, 0x16, 0x3e, 0x8a, 0xa1,
0xed, 0x5a, 0xfa, 0xbb, 0x19, 0xda, 0xae, 0x65, 0xbc, 0x9d, 0x91, 0xdf, 0xb5, 0x52, 0x9f, 0xd5,
0x11, 0xc2, 0x42, 0xee, 0xa2, 0x95, 0xe2, 0x8a, 0xf2, 0xbb, 0xb0, 0xfd, 0x5b, 0x6f, 0xbf, 0x9f,
0x65, 0x4a, 0x10, 0x29, 0x04, 0x1f, 0xc8, 0x9b, 0xc7, 0xbf, 0x0b, 0x6d, 0xfd, 0x21, 0x25, 0xa2,
0xb3, 0x72, 0xbe, 0xa5, 0x77, 0x4a, 0xf3, 0xcc, 0xc5, 0x25, 0x6d, 0xbd, 0x19, 0xf2, 0x3d, 0x58,
0x51, 0xac, 0xae, 0xdf, 0xdd, 0x49, 0xc8, 0xbb, 0x25, 0x37, 0x7a, 0x74, 0x3d, 0xae, 0x7f, 0x7d,
0xea, 0x95, 0x9f, 0x87, 0x16, 0x23, 0x1a, 0xf3, 0x75, 0x9a, 0x6c, 0xc3, 0x28, 0x7b, 0x94, 0x27,
0xdb, 0x30, 0x4a, 0x9f, 0xb4, 0x91, 0x44, 0x43, 0x96, 0x8c, 0x39, 0xe2, 0xa1, 0x1b, 0xe4, 0x07,
0xb0, 0xa0, 0xdd, 0x8e, 0x3c, 0xbc, 0x08, 0x07, 0x8a, 0x01, 0x8a, 0x97, 0xf7, 0xfb, 0x65, 0xa7,
0x14, 0x7b, 0x15, 0xeb, 0x5f, 0xb4, 0x8d, 0xc9, 0x61, 0xc4, 0xbf, 0x05, 0x2d, 0xfd, 0xe6, 0xe5,
0x5b, 0xea, 0x5d, 0xd5, 0xb2, 0xf4, 0x7b, 0xe7, 0x0f, 0x2d, 0x72, 0xc0, 0x43, 0xf8, 0xd4, 0x4b,
0xb9, 0x51, 0x9c, 0xdf, 0x3e, 0xcd, 0x17, 0x74, 0xd5, 0x42, 0x96, 0xbd, 0x9d, 0x7c, 0xcf, 0x7a,
0x68, 0x91, 0xbf, 0x6f, 0x41, 0xdb, 0xb8, 0x19, 0x69, 0x04, 0x44, 0xe5, 0x7a, 0xd6, 0xd3, 0xf3,
0xf4, 0xae, 0xd9, 0x0e, 0x0e, 0x7b, 0xef, 0xfe, 0x67, 0xc6, 0xb4, 0x7e, 0x61, 0x18, 0xd4, 0xd6,
0xf3, 0xcf, 0xe5, 0x7e, 0x99, 0x2f, 0xa0, 0x3f, 0x99, 0xf0, 0xe5, 0x43, 0x8b, 0xfc, 0xa1, 0x05,
0x1d, 0xd3, 0x8c, 0xac, 0x86, 0x5b, 0x6a, 0xb0, 0x56, 0x8b, 0x3f, 0xc5, 0xf6, 0xfc, 0x03, 0xec,
0xe5, 0x8b, 0xfb, 0x8e, 0xd1, 0x4b, 0xf1, 0x12, 0xd2, 0x2f, 0xd7, 0x5b, 0xf2, 0x09, 0x7f, 0x85,
0x5e, 0x7a, 0xd0, 0x48, 0xf1, 0xd5, 0x72, 0x45, 0x30, 0xfa, 0xdb, 0xe0, 0xb8, 0x08, 0x3f, 0xe2,
0xcf, 0xc4, 0x4a, 0x37, 0x0c, 0xa3, 0xbb, 0xab, 0x7e, 0x6f, 0xdf, 0xc6, 0x31, 0xdd, 0xb2, 0xaf,
0x1b, 0x63, 0xca, 0xef, 0xf0, 0x9b, 0xbc, 0x77, 0xe2, 0x59, 0xef, 0x6c, 0x8b, 0x2a, 0x3c, 0xf5,
0x3d, 0xbd, 0x93, 0x23, 0xde, 0x49, 0x51, 0xdc, 0x60, 0x8e, 0x2b, 0x56, 0x63, 0xdf, 0xc7, 0xbe,
0xde, 0xb6, 0xdf, 0x9d, 0xda, 0xd7, 0x07, 0x68, 0x0c, 0x66, 0x3d, 0x3e, 0x00, 0xc8, 0x3c, 0xde,
0x24, 0xe7, 0x6d, 0x55, 0x22, 0xa3, 0xe8, 0x14, 0x37, 0x39, 0x50, 0x3a, 0x65, 0x59, 0x8d, 0x3f,
0xe4, 0x02, 0xf0, 0xa9, 0xf4, 0xd3, 0xea, 0x6a, 0x8e, 0xe9, 0x96, 0x36, 0xd4, 0x9c, 0x7c, 0xfd,
0x86, 0xf8, 0x53, 0x4e, 0xdf, 0x97, 0x30, 0xbf, 0x17, 0x45, 0xaf, 0x27, 0x63, 0x15, 0xab, 0x64,
0xfa, 0x69, 0x76, 0xbd, 0xe4, 0xb4, 0x9f, 0x1b, 0x85, 0xbd, 0x86, 0x55, 0xf5, 0x49, 0x4f, 0xab,
0xea, 0xc1, 0x17, 0x99, 0x37, 0xfd, 0x4b, 0xe2, 0xc1, 0xa2, 0x92, 0xaa, 0xaa, 0xe3, 0x7d, 0xb3,
0x1a, 0x43, 0x96, 0xe6, 0x9b, 0x30, 0xf4, 0x71, 0xd9, 0xdb, 0x07, 0x89, 0xac, 0x13, 0x65, 0x4a,
0x7b, 0x9b, 0x0e, 0xf0, 0xd2, 0x14, 0x3a, 0x3b, 0x96, 0xb2, 0x8e, 0x2b, 0x2f, 0x49, 0x7f, 0xde,
0x00, 0xcd, 0x9d, 0x66, 0xec, 0x5d, 0xc4, 0xf4, 0x27, 0x0f, 0xbe, 0x10, 0x6e, 0x94, 0x2f, 0xe5,
0x4e, 0x23, 0xfd, 0x4c, 0xc6, 0x4e, 0x93, 0x73, 0x4c, 0x19, 0x3b, 0x4d, 0xc1, 0x31, 0x65, 0x4c,
0xb5, 0xf4, 0x73, 0x91, 0x00, 0x16, 0x0b, 0xbe, 0x2c, 0xb5, 0xc9, 0x4c, 0xf3, 0x80, 0xf5, 0xd7,
0xa6, 0x17, 0x30, 0x5b, 0xbb, 0x6f, 0xb6, 0x76, 0x08, 0xf3, 0xdb, 0x94, 0x4f, 0x16, 0x0f, 0xce,
0xce, 0x5d, 0xaf, 0xd5, 0x43, 0xbf, 0xf3, 0x5b, 0x02, 0xe6, 0x99, 0xaa, 0x04, 0x46, 0x45, 0x93,
0x1f, 0x42, 0xeb, 0x09, 0x4d, 0x65, 0x34, 0xb6, 0x52, 0x66, 0x73, 0xe1, 0xd9, 0xfd, 0x92, 0x60,
0x6e, 0x93, 0x66, 0xb0, 0xb6, 0x07, 0x74, 0x78, 0x42, 0xb9, 0x70, 0x72, 0xfd, 0xe1, 0x97, 0xe4,
0x2f, 0x62, 0xe5, 0xea, 0x3a, 0xca, 0x8a, 0x16, 0x5a, 0xab, 0x57, 0xbe, 0x90, 0xc3, 0xcb, 0x6a,
0x0e, 0xa3, 0x21, 0xd5, 0x94, 0xaa, 0x10, 0x5a, 0xda, 0x75, 0x36, 0xc5, 0x40, 0xc5, 0xdb, 0x7f,
0x8a, 0x81, 0x4a, 0x6e, 0xbf, 0xd9, 0xf7, 0xb0, 0x1d, 0x9b, 0xac, 0x65, 0xed, 0xf0, 0x1b, 0x6f,
0x59, 0x4b, 0x0f, 0xbe, 0xf0, 0x46, 0xe9, 0x97, 0xe4, 0x15, 0xbe, 0x4c, 0xa6, 0x47, 0x9b, 0x67,
0xda, 0x79, 0x3e, 0x30, 0x5d, 0x4d, 0x96, 0x96, 0x65, 0x6a, 0xec, 0xbc, 0x29, 0xd4, 0xbd, 0xbe,
0x03, 0x70, 0x98, 0x46, 0xe3, 0x6d, 0x8f, 0x8e, 0xa2, 0x30, 0x93, 0xb5, 0x59, 0xac, 0x73, 0x26,
0xbf, 0xb4, 0x80, 0x67, 0xf2, 0x4a, 0x3b, 0xce, 0x18, 0x01, 0xfb, 0x92, 0xb8, 0xa6, 0x86, 0x43,
0xab, 0x09, 0x29, 0x09, 0x89, 0x7e, 0x68, 0x91, 0x4d, 0x80, 0xcc, 0x99, 0xa9, 0x0e, 0x27, 0x05,
0x3f, 0xa9, 0x12, 0x7b, 0x25, 0x9e, 0xcf, 0x03, 0x68, 0x66, 0xde, 0xad, 0xd5, 0xec, 0x72, 0xab,
0xe1, 0x0b, 0x53, 0x3b, 0x78, 0xc1, 0xe7, 0x64, 0x77, 0x71, 0xaa, 0x80, 0x34, 0xd8, 0x54, 0xa1,
0x23, 0xc9, 0x87, 0x25, 0xde, 0x41, 0xa5, 0xe0, 0x60, 0x8c, 0xae, 0x1c, 0x49, 0x89, 0xdf, 0x47,
0x71, 0x73, 0xa9, 0x43, 0xc4, 0xb0, 0xb1, 0x30, 0x6a, 0xe5, 0xf1, 0xc1, 0x4c, 0x34, 0x8f, 0x60,
0xb1, 0x60, 0x63, 0x57, 0x2c, 0x3d, 0xcd, 0x89, 0xa2, 0x58, 0x7a, 0xaa, 0x79, 0xde, 0xbe, 0x86,
0x4d, 0x2e, 0xd8, 0x80, 0x67, 0xaa, 0x73, 0x3f, 0x1d, 0x9c, 0xb2, 0xe6, 0xfe, 0xc0, 0x82, 0xa5,
0x12, 0x13, 0x3a, 0x79, 0x4f, 0x1e, 0xcf, 0xa7, 0x9a, 0xd7, 0xfb, 0xa5, 0x16, 0x56, 0xfb, 0x10,
0xdb, 0x79, 0x46, 0x3e, 0x37, 0x36, 0x36, 0x6e, 0xdc, 0x14, 0x9c, 0xf9, 0x56, 0xa5, 0xa2, 0x54,
0xa3, 0xf8, 0x09, 0xac, 0xf2, 0x8e, 0x6c, 0x06, 0x41, 0xce, 0xfa, 0x7b, 0xab, 0xf0, 0x9f, 0xaa,
0x0c, 0xab, 0x76, 0x7f, 0xfa, 0x7f, 0xb2, 0x9a, 0xa2, 0x00, 0xf3, 0xae, 0x92, 0x09, 0x74, 0xf3,
0x16, 0x55, 0x32, 0xbd, 0xae, 0xfe, 0xbb, 0xc6, 0x41, 0xb3, 0xc4, 0x0a, 0xfb, 0x75, 0x6c, 0xec,
0x5d, 0xbb, 0x5f, 0x36, 0x2f, 0xfc, 0xec, 0xc9, 0xd6, 0xe3, 0x2f, 0x2b, 0xf3, 0x6f, 0x6e, 0x9c,
0xb2, 0x81, 0x69, 0xf6, 0x6a, 0x75, 0xd4, 0x2d, 0xb7, 0x1e, 0xdf, 0xc1, 0xe6, 0xd7, 0xec, 0x77,
0xca, 0x9a, 0x8f, 0xf9, 0x27, 0xfc, 0xd0, 0xbb, 0x9a, 0xe7, 0x6b, 0xd9, 0x83, 0xb5, 0xb2, 0xf5,
0x9e, 0x7a, 0x7a, 0xc9, 0xcd, 0xf5, 0x0c, 0xea, 0x76, 0x6d, 0xdd, 0xdc, 0xab, 0xd8, 0xa7, 0xc4,
0xae, 0xac, 0xd8, 0xa7, 0xcc, 0x3e, 0x6c, 0xea, 0x35, 0xd2, 0x32, 0xfc, 0x89, 0x75, 0xff, 0xd1,
0xdd, 0x1f, 0x7c, 0xfd, 0xc4, 0x4f, 0x4f, 0x27, 0x47, 0xeb, 0x83, 0x68, 0xf4, 0x20, 0x90, 0x66,
0x3d, 0x71, 0x6f, 0xe5, 0x41, 0x10, 0x0e, 0x1f, 0x60, 0xb5, 0x47, 0xb3, 0xf8, 0xaf, 0xf5, 0xbe,
0xf5, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x32, 0xb9, 0xa2, 0x8c, 0x6f, 0x00, 0x00,
0xe5, 0xb4, 0x20, 0x24, 0x40, 0xa0, 0x93, 0xf6, 0x90, 0xd0, 0x89, 0x07, 0x10, 0x12, 0x12, 0x87,
0x8e, 0x27, 0x1e, 0x4e, 0x42, 0x42, 0x3c, 0x80, 0x84, 0xc4, 0x03, 0x08, 0x81, 0x04, 0x27, 0xc4,
0x1b, 0xbc, 0xa3, 0xf8, 0xe2, 0x4f, 0x46, 0x64, 0x66, 0xb5, 0x3d, 0xbb, 0x7b, 0xfb, 0xe4, 0x8a,
0x5f, 0x44, 0xc6, 0xdf, 0xef, 0xfb, 0xe2, 0x8b, 0xef, 0xfb, 0x22, 0x0c, 0xcd, 0x78, 0x3c, 0x58,
0x1f, 0xc7, 0x51, 0x1a, 0x91, 0x7a, 0x10, 0xc6, 0xe3, 0x41, 0xff, 0xc6, 0x49, 0x14, 0x9d, 0x04,
0xf4, 0x81, 0x37, 0xf6, 0x1f, 0x78, 0x61, 0x18, 0xa5, 0x5e, 0xea, 0x47, 0x61, 0xc2, 0x0b, 0xd9,
0x3f, 0x82, 0xce, 0x13, 0x1a, 0x1e, 0x52, 0x3a, 0x74, 0xe8, 0x4f, 0x26, 0x34, 0x49, 0xc9, 0x37,
0x60, 0xd1, 0xa3, 0x3f, 0xa5, 0x74, 0xe8, 0x8e, 0xbd, 0x24, 0x19, 0x9f, 0xc6, 0x5e, 0x42, 0x7b,
0xd6, 0x9a, 0x75, 0xaf, 0xed, 0x74, 0x79, 0xc6, 0x81, 0xc2, 0xc9, 0x7b, 0xd0, 0x4e, 0x58, 0x51,
0x1a, 0xa6, 0x71, 0x34, 0xbe, 0xe8, 0x55, 0xb0, 0x5c, 0x8b, 0x61, 0x3b, 0x1c, 0xb2, 0x03, 0x58,
0x50, 0x2d, 0x24, 0xe3, 0x28, 0x4c, 0x28, 0x79, 0x08, 0xcb, 0x03, 0x7f, 0x7c, 0x4a, 0x63, 0x17,
0x3f, 0x1e, 0x85, 0x74, 0x14, 0x85, 0xfe, 0xa0, 0x67, 0xad, 0x55, 0xef, 0x35, 0x1d, 0xc2, 0xf3,
0xd8, 0x17, 0xcf, 0x44, 0x0e, 0xb9, 0x0b, 0x0b, 0x34, 0xe4, 0x38, 0x1d, 0xe2, 0x57, 0xa2, 0xa9,
0x4e, 0x06, 0xb3, 0x0f, 0xec, 0xbf, 0x51, 0x81, 0xc5, 0xa7, 0xa1, 0x9f, 0xbe, 0xf2, 0x82, 0x80,
0xa6, 0x72, 0x4c, 0x77, 0x61, 0xe1, 0x1c, 0x01, 0x1c, 0xd3, 0x79, 0x14, 0x0f, 0xc5, 0x88, 0x3a,
0x1c, 0x3e, 0x10, 0xe8, 0xd4, 0x9e, 0x55, 0xa6, 0xf6, 0xac, 0x74, 0xba, 0xaa, 0x53, 0xa6, 0xeb,
0x2e, 0x2c, 0xc4, 0x74, 0x10, 0x9d, 0xd1, 0xf8, 0xc2, 0x3d, 0xf7, 0xc3, 0x61, 0x74, 0xde, 0xab,
0xad, 0x59, 0xf7, 0xea, 0x4e, 0x47, 0xc2, 0xaf, 0x10, 0x25, 0x8f, 0x60, 0x61, 0x70, 0xea, 0x85,
0x21, 0x0d, 0xdc, 0x23, 0x6f, 0xf0, 0x7a, 0x32, 0x4e, 0x7a, 0xf5, 0x35, 0xeb, 0x5e, 0x6b, 0xe3,
0xfa, 0x3a, 0xae, 0xea, 0xfa, 0xd6, 0xa9, 0x17, 0x3e, 0xc2, 0x9c, 0xc3, 0xd0, 0x1b, 0x27, 0xa7,
0x51, 0xea, 0x74, 0xc4, 0x17, 0x1c, 0x4e, 0xec, 0x65, 0x20, 0xfa, 0x4c, 0xf0, 0xb9, 0xb7, 0xff,
0x89, 0x05, 0x4b, 0x2f, 0xc3, 0x20, 0x1a, 0xbc, 0xfe, 0x05, 0xa7, 0xa8, 0x64, 0x0c, 0x95, 0xab,
0x8e, 0xa1, 0xfa, 0x55, 0xc7, 0xb0, 0x02, 0xcb, 0x66, 0x67, 0xc5, 0x28, 0x28, 0x5c, 0x63, 0x5f,
0x9f, 0x50, 0xd9, 0x2d, 0x39, 0x8c, 0xf7, 0xa1, 0x3b, 0x98, 0xc4, 0x31, 0x0d, 0x0b, 0xe3, 0x58,
0x10, 0xb8, 0x1a, 0xc8, 0x7b, 0xd0, 0x0e, 0xe9, 0x79, 0x56, 0x4c, 0xd0, 0x6e, 0x48, 0xcf, 0x65,
0x11, 0xbb, 0x07, 0x2b, 0xf9, 0x66, 0x44, 0x07, 0xfe, 0x9b, 0x05, 0xb5, 0x97, 0xe9, 0x9b, 0x88,
0xac, 0x43, 0x2d, 0xbd, 0x18, 0x73, 0x0e, 0xe9, 0x6c, 0x10, 0x31, 0xb4, 0xcd, 0xe1, 0x30, 0xa6,
0x49, 0xf2, 0xe2, 0x62, 0x4c, 0x9d, 0xb6, 0xc7, 0x13, 0x2e, 0x2b, 0x47, 0x7a, 0x30, 0x27, 0xd2,
0xd8, 0x60, 0xd3, 0x91, 0x49, 0x72, 0x0b, 0xc0, 0x1b, 0x45, 0x93, 0x30, 0x75, 0x13, 0x2f, 0xc5,
0xa9, 0xaa, 0x3a, 0x1a, 0x42, 0x6e, 0x40, 0x73, 0xfc, 0xda, 0x4d, 0x06, 0xb1, 0x3f, 0x4e, 0x91,
0x6c, 0x9a, 0x4e, 0x06, 0x90, 0x6f, 0x40, 0x23, 0x9a, 0xa4, 0xe3, 0xc8, 0x0f, 0x53, 0x41, 0x2a,
0x0b, 0xa2, 0x2f, 0xcf, 0x27, 0xe9, 0x01, 0x83, 0x1d, 0x55, 0x80, 0xdc, 0x86, 0xf9, 0x41, 0x14,
0x1e, 0xfb, 0xf1, 0x88, 0x0b, 0x83, 0xde, 0x2c, 0xb6, 0x66, 0x82, 0xf6, 0x1f, 0x55, 0xa0, 0xf5,
0x22, 0xf6, 0xc2, 0xc4, 0x1b, 0x30, 0x80, 0x75, 0x3d, 0x7d, 0xe3, 0x9e, 0x7a, 0xc9, 0x29, 0x8e,
0xb6, 0xe9, 0xc8, 0x24, 0x59, 0x81, 0x59, 0xde, 0x51, 0x1c, 0x53, 0xd5, 0x11, 0x29, 0xf2, 0x01,
0x2c, 0x86, 0x93, 0x91, 0x6b, 0xb6, 0x55, 0x45, 0x6a, 0x29, 0x66, 0xb0, 0x09, 0x38, 0x62, 0x6b,
0xcd, 0x9b, 0xe0, 0x23, 0xd4, 0x10, 0x62, 0x43, 0x5b, 0xa4, 0xa8, 0x7f, 0x72, 0xca, 0x87, 0x59,
0x77, 0x0c, 0x8c, 0xd5, 0x91, 0xfa, 0x23, 0xea, 0x26, 0xa9, 0x37, 0x1a, 0x8b, 0x61, 0x69, 0x08,
0xe6, 0x47, 0xa9, 0x17, 0xb8, 0xc7, 0x94, 0x26, 0xbd, 0x39, 0x91, 0xaf, 0x10, 0x72, 0x07, 0x3a,
0x43, 0x9a, 0xa4, 0xae, 0x58, 0x14, 0x9a, 0xf4, 0x1a, 0xc8, 0xfa, 0x39, 0x94, 0xd5, 0x13, 0x7b,
0xe7, 0x2e, 0x9b, 0x00, 0xfa, 0xa6, 0xd7, 0xe4, 0x7d, 0xcd, 0x10, 0x46, 0x39, 0x4f, 0x68, 0xaa,
0xcd, 0x5e, 0x22, 0x28, 0xd4, 0xde, 0x03, 0xa2, 0xc1, 0xdb, 0x34, 0xf5, 0xfc, 0x20, 0x21, 0x1f,
0x41, 0x3b, 0xd5, 0x0a, 0xa3, 0x28, 0x6c, 0x29, 0x72, 0xd2, 0x3e, 0x70, 0x8c, 0x72, 0xf6, 0x29,
0x34, 0x1e, 0x53, 0xba, 0xe7, 0x8f, 0xfc, 0x94, 0xac, 0x40, 0xfd, 0xd8, 0x7f, 0x43, 0x39, 0xc1,
0x57, 0x77, 0x67, 0x1c, 0x9e, 0x24, 0xef, 0x02, 0xe0, 0x0f, 0x77, 0xa4, 0x08, 0x6b, 0x77, 0xc6,
0x69, 0x22, 0xf6, 0x8c, 0x51, 0x56, 0x1f, 0xe6, 0xc6, 0x34, 0x1e, 0x50, 0xb9, 0x7e, 0xbb, 0x33,
0x8e, 0x04, 0x1e, 0xcd, 0x41, 0x3d, 0x60, 0xb5, 0xdb, 0xbf, 0x57, 0x87, 0xd6, 0x21, 0x0d, 0x15,
0xa7, 0x11, 0xa8, 0xb1, 0x39, 0x11, 0xdc, 0x85, 0xbf, 0xc9, 0xd7, 0xa0, 0x85, 0xf3, 0x94, 0xa4,
0xb1, 0x1f, 0x9e, 0x70, 0x02, 0x7f, 0x54, 0xe9, 0x59, 0x0e, 0x30, 0xf8, 0x10, 0x51, 0xd2, 0x85,
0xaa, 0x37, 0x92, 0x04, 0xce, 0x7e, 0x92, 0xeb, 0xd0, 0xf0, 0x46, 0x29, 0xef, 0x5e, 0x1b, 0xe1,
0x39, 0x6f, 0x94, 0x62, 0xd7, 0xde, 0x83, 0xf6, 0xd8, 0xbb, 0x18, 0x31, 0x7e, 0x56, 0x54, 0xd1,
0x76, 0x5a, 0x02, 0xdb, 0x65, 0x64, 0xb1, 0x01, 0x4b, 0x7a, 0x11, 0xd9, 0x78, 0x5d, 0x35, 0xbe,
0xa8, 0x95, 0x16, 0x7d, 0xb8, 0x0b, 0x0b, 0xf2, 0x9b, 0x98, 0x8f, 0x07, 0x69, 0xa5, 0xe9, 0x74,
0x04, 0x2c, 0x47, 0x79, 0x0f, 0xba, 0xc7, 0x7e, 0xe8, 0x05, 0xee, 0x20, 0x48, 0xcf, 0xdc, 0x21,
0x0d, 0x52, 0x0f, 0xa9, 0xa6, 0xee, 0x74, 0x10, 0xdf, 0x0a, 0xd2, 0xb3, 0x6d, 0x86, 0x92, 0x0f,
0xa0, 0x79, 0x4c, 0xa9, 0x8b, 0x93, 0xd5, 0x6b, 0x18, 0x1c, 0x28, 0x57, 0xc8, 0x69, 0x1c, 0xcb,
0xb5, 0xfa, 0x00, 0xba, 0xd1, 0x24, 0x3d, 0x89, 0xfc, 0xf0, 0xc4, 0x65, 0x32, 0xcf, 0xf5, 0x87,
0x48, 0x45, 0xb5, 0x47, 0x95, 0x87, 0x96, 0xd3, 0x91, 0x79, 0x4c, 0xfa, 0x3c, 0x1d, 0x92, 0x3b,
0xb0, 0x10, 0x78, 0x49, 0xea, 0x9e, 0x46, 0x63, 0x77, 0x3c, 0x39, 0x7a, 0x4d, 0x2f, 0x7a, 0xf3,
0x38, 0x11, 0xf3, 0x0c, 0xde, 0x8d, 0xc6, 0x07, 0x08, 0x92, 0x9b, 0x00, 0xd8, 0x4f, 0xde, 0x09,
0x58, 0xb3, 0xee, 0xcd, 0x3b, 0x4d, 0x86, 0xf0, 0x46, 0xbf, 0x0f, 0x4b, 0xb8, 0x3c, 0x83, 0x49,
0x92, 0x46, 0x23, 0x97, 0xc9, 0xeb, 0x78, 0x98, 0xf4, 0x5a, 0x48, 0x6b, 0xef, 0x8b, 0xce, 0x6a,
0x6b, 0xbc, 0xbe, 0x4d, 0x93, 0x74, 0x0b, 0x0b, 0x3b, 0xbc, 0x2c, 0xdb, 0xd4, 0x2f, 0x9c, 0xc5,
0x61, 0x1e, 0x27, 0x1f, 0x00, 0xf1, 0x82, 0x20, 0x3a, 0x77, 0x13, 0x1a, 0x1c, 0xbb, 0x62, 0x12,
0x7b, 0x9d, 0x35, 0xeb, 0x5e, 0xc3, 0xe9, 0x62, 0xce, 0x21, 0x0d, 0x8e, 0x0f, 0x38, 0xde, 0xdf,
0x86, 0x95, 0xf2, 0xaa, 0x19, 0x71, 0xb0, 0xd1, 0x31, 0xa2, 0xaa, 0x39, 0xec, 0x27, 0x59, 0x86,
0xfa, 0x99, 0x17, 0x4c, 0xa8, 0x90, 0xcf, 0x3c, 0xf1, 0x49, 0xe5, 0x63, 0xcb, 0xfe, 0x97, 0x16,
0xb4, 0x79, 0x6f, 0x85, 0x5e, 0x71, 0x1b, 0xe6, 0xe5, 0xaa, 0xd2, 0x38, 0x8e, 0x62, 0x21, 0xa6,
0x4c, 0x90, 0xdc, 0x87, 0xae, 0x04, 0xc6, 0x31, 0xf5, 0x47, 0xde, 0x89, 0xac, 0xbb, 0x80, 0x93,
0x8d, 0xac, 0xc6, 0x38, 0x9a, 0xa4, 0x54, 0xec, 0x60, 0x6d, 0x31, 0x57, 0x0e, 0xc3, 0x1c, 0xb3,
0x08, 0x13, 0x53, 0x25, 0x24, 0x6b, 0x60, 0xf6, 0xdf, 0xb1, 0x80, 0xb0, 0xae, 0xbf, 0x88, 0x78,
0x15, 0x82, 0xda, 0xf2, 0xd4, 0x6e, 0x5d, 0x99, 0xda, 0x2b, 0x6f, 0xa3, 0x76, 0x1b, 0xea, 0xbc,
0xf7, 0xb5, 0x92, 0xde, 0xf3, 0xac, 0xcf, 0x6a, 0x8d, 0x6a, 0xb7, 0x66, 0xff, 0xe7, 0x2a, 0x2c,
0x6f, 0xf1, 0x2d, 0x78, 0x73, 0x30, 0xa0, 0x63, 0xc5, 0x07, 0xef, 0x42, 0x2b, 0x8c, 0x86, 0x54,
0x52, 0x1f, 0xef, 0x18, 0x30, 0x48, 0x23, 0xbd, 0x53, 0xcf, 0x0f, 0x79, 0xc7, 0xf9, 0x7c, 0x36,
0x11, 0xc1, 0x6e, 0xdf, 0x81, 0x85, 0x31, 0x0d, 0x87, 0x3a, 0xb9, 0x73, 0x25, 0x69, 0x5e, 0xc0,
0x82, 0xd2, 0xdf, 0x85, 0xd6, 0xf1, 0x84, 0x97, 0x63, 0x42, 0xa2, 0x86, 0x74, 0x00, 0x02, 0xda,
0xe4, 0xb2, 0x62, 0x3c, 0x49, 0x4e, 0x31, 0xb7, 0x8e, 0xb9, 0x73, 0x2c, 0xcd, 0xb2, 0x6e, 0x02,
0x0c, 0x27, 0x49, 0x2a, 0xa8, 0x7f, 0x16, 0x33, 0x9b, 0x0c, 0xe1, 0xd4, 0xff, 0x4d, 0x58, 0x1a,
0x79, 0x6f, 0x5c, 0xa4, 0x1f, 0xd7, 0x0f, 0xdd, 0xe3, 0x00, 0x77, 0x91, 0x39, 0x2c, 0xd7, 0x1d,
0x79, 0x6f, 0xbe, 0xc7, 0x72, 0x9e, 0x86, 0x8f, 0x11, 0x67, 0x22, 0x42, 0xaa, 0x2f, 0x31, 0x4d,
0x68, 0x7c, 0x46, 0x91, 0xab, 0x6b, 0x4a, 0x47, 0x71, 0x38, 0xca, 0x7a, 0x34, 0x62, 0xe3, 0x4e,
0x83, 0x01, 0x67, 0x61, 0x67, 0x6e, 0xe4, 0x87, 0xbb, 0x69, 0x30, 0x20, 0x37, 0x00, 0x98, 0x4c,
0x18, 0xd3, 0xd8, 0x7d, 0x7d, 0x8e, 0xfc, 0x58, 0x43, 0x19, 0x70, 0x40, 0xe3, 0xcf, 0xcf, 0xc9,
0x3b, 0xd0, 0x1c, 0x24, 0x28, 0x54, 0xbc, 0x8b, 0x5e, 0x0b, 0x99, 0xb5, 0x31, 0x48, 0x98, 0x38,
0xf1, 0x2e, 0x18, 0x43, 0xb1, 0xde, 0x7a, 0xb8, 0x0a, 0x74, 0x88, 0xd5, 0x27, 0x28, 0x1d, 0xe7,
0xb1, 0xb3, 0x9b, 0x22, 0x83, 0xb5, 0x93, 0x90, 0xaf, 0xc1, 0xbc, 0xec, 0xec, 0x71, 0xe0, 0x9d,
0x24, 0x28, 0x1e, 0xe6, 0x9d, 0xb6, 0x00, 0x1f, 0x33, 0xcc, 0x7e, 0xc5, 0x95, 0x26, 0x6d, 0x6d,
0x05, 0xdf, 0xb0, 0xed, 0x1b, 0x11, 0x5c, 0xd7, 0x86, 0x23, 0x52, 0x65, 0x8b, 0x56, 0x29, 0x59,
0x34, 0xfb, 0xe7, 0x16, 0xb4, 0x45, 0xcd, 0xa8, 0x69, 0x90, 0x87, 0x40, 0xe4, 0x2a, 0xa6, 0x6f,
0xfc, 0xa1, 0x7b, 0x74, 0x91, 0xd2, 0x84, 0x13, 0xcd, 0xee, 0x8c, 0x53, 0x92, 0xc7, 0xe4, 0xa1,
0x81, 0x26, 0x69, 0xcc, 0x69, 0x7a, 0x77, 0xc6, 0x29, 0xe4, 0x30, 0x16, 0x63, 0xba, 0xcc, 0x24,
0x75, 0xfd, 0x70, 0x48, 0xdf, 0x20, 0x29, 0xcd, 0x3b, 0x06, 0xf6, 0xa8, 0x03, 0x6d, 0xfd, 0x3b,
0xfb, 0xc7, 0xd0, 0x90, 0x9a, 0x10, 0x6a, 0x01, 0xb9, 0x7e, 0x39, 0x1a, 0x42, 0xfa, 0xd0, 0x30,
0x7b, 0xe1, 0x34, 0xbe, 0x4a, 0xdb, 0xf6, 0x5f, 0x80, 0xee, 0x1e, 0x23, 0xa2, 0x90, 0x11, 0xad,
0x50, 0xef, 0x56, 0x60, 0x56, 0x63, 0x9e, 0xa6, 0x23, 0x52, 0x6c, 0x1f, 0x3d, 0x8d, 0x92, 0x54,
0xb4, 0x83, 0xbf, 0xed, 0x3f, 0xb1, 0x80, 0xec, 0x24, 0xa9, 0x3f, 0xf2, 0x52, 0xfa, 0x98, 0x2a,
0xf1, 0xf0, 0x1c, 0xda, 0xac, 0xb6, 0x17, 0xd1, 0x26, 0x57, 0xb6, 0xb8, 0x92, 0xf0, 0x0d, 0xc1,
0xce, 0xc5, 0x0f, 0xd6, 0xf5, 0xd2, 0x5c, 0x74, 0x1b, 0x15, 0x30, 0x6e, 0x4b, 0xbd, 0xf8, 0x84,
0xa6, 0xa8, 0x89, 0x09, 0x3d, 0x1e, 0x38, 0xb4, 0x15, 0x85, 0xc7, 0xfd, 0xdf, 0x82, 0xc5, 0x42,
0x1d, 0xba, 0x8c, 0x6e, 0x96, 0xc8, 0xe8, 0xaa, 0x2e, 0xa3, 0x07, 0xb0, 0x64, 0xf4, 0x4b, 0x50,
0x5c, 0x0f, 0xe6, 0x18, 0x63, 0xb0, 0x0d, 0xdf, 0xe2, 0x1b, 0xbe, 0x48, 0x92, 0x0d, 0x58, 0x3e,
0xa6, 0x34, 0xf6, 0x52, 0x4c, 0x22, 0xeb, 0xb0, 0x35, 0x11, 0x35, 0x97, 0xe6, 0xd9, 0xff, 0xdd,
0x82, 0x05, 0x26, 0x4d, 0x9f, 0x79, 0xe1, 0x85, 0x9c, 0xab, 0xbd, 0xd2, 0xb9, 0xba, 0xa7, 0x6d,
0x72, 0x5a, 0xe9, 0xaf, 0x3a, 0x51, 0xd5, 0xfc, 0x44, 0x91, 0x35, 0x68, 0x1b, 0xdd, 0xad, 0x73,
0xcd, 0x32, 0xf1, 0xd2, 0x03, 0x1a, 0x3f, 0xba, 0x48, 0xe9, 0x2f, 0x3f, 0x95, 0x77, 0xa0, 0x9b,
0x75, 0x5b, 0xcc, 0x23, 0x81, 0x1a, 0x23, 0x4c, 0x51, 0x01, 0xfe, 0xb6, 0xff, 0x81, 0xc5, 0x0b,
0x6e, 0x45, 0xbe, 0xd2, 0x3a, 0x59, 0x41, 0xa6, 0xbc, 0xca, 0x82, 0xec, 0xf7, 0x54, 0xad, 0xfd,
0x97, 0x1f, 0x2c, 0x93, 0x89, 0x09, 0x0d, 0x87, 0xae, 0x17, 0x04, 0x28, 0x88, 0x1b, 0xce, 0x1c,
0x4b, 0x6f, 0x06, 0x81, 0x7d, 0x17, 0x16, 0xb5, 0xde, 0xbd, 0x65, 0x1c, 0xfb, 0x40, 0xf6, 0xfc,
0x24, 0x7d, 0x19, 0x26, 0x63, 0x4d, 0x21, 0x7b, 0x07, 0x9a, 0x4c, 0xda, 0xb2, 0x9e, 0x71, 0xce,
0xad, 0x3b, 0x4c, 0xfc, 0xb2, 0x7e, 0x25, 0x98, 0xe9, 0xbd, 0x11, 0x99, 0x15, 0x91, 0xe9, 0xbd,
0xc1, 0x4c, 0xfb, 0x63, 0x58, 0x32, 0xea, 0x13, 0x4d, 0xbf, 0x07, 0xf5, 0x49, 0xfa, 0x26, 0x92,
0x2a, 0x77, 0x4b, 0x50, 0x08, 0x3b, 0xdc, 0x39, 0x3c, 0xc7, 0xfe, 0x14, 0x16, 0xf7, 0xe9, 0xb9,
0x60, 0x64, 0xd9, 0x91, 0x3b, 0x97, 0x1e, 0xfc, 0x30, 0xdf, 0x5e, 0x07, 0xa2, 0x7f, 0x9c, 0x31,
0x80, 0x3c, 0x06, 0x5a, 0xc6, 0x31, 0xd0, 0xbe, 0x03, 0xe4, 0xd0, 0x3f, 0x09, 0x9f, 0xd1, 0x24,
0xf1, 0x4e, 0x14, 0xeb, 0x77, 0xa1, 0x3a, 0x4a, 0x4e, 0x84, 0xa8, 0x62, 0x3f, 0xed, 0x6f, 0xc1,
0x92, 0x51, 0x4e, 0x54, 0x7c, 0x03, 0x9a, 0x89, 0x7f, 0x12, 0x7a, 0xe9, 0x24, 0xa6, 0xa2, 0xea,
0x0c, 0xb0, 0x1f, 0xc3, 0xf2, 0xf7, 0x68, 0xec, 0x1f, 0x5f, 0x5c, 0x56, 0xbd, 0x59, 0x4f, 0x25,
0x5f, 0xcf, 0x0e, 0x5c, 0xcb, 0xd5, 0x23, 0x9a, 0xe7, 0xe4, 0x2b, 0x56, 0xb2, 0xe1, 0xf0, 0x84,
0x26, 0xfb, 0x2a, 0xba, 0xec, 0xb3, 0x5f, 0x02, 0xd9, 0x8a, 0xc2, 0x90, 0x0e, 0xd2, 0x03, 0x4a,
0xe3, 0xcc, 0x02, 0x95, 0xd1, 0x6a, 0x6b, 0x63, 0x55, 0xcc, 0x6c, 0x5e, 0xa0, 0x0a, 0x22, 0x26,
0x50, 0x1b, 0xd3, 0x78, 0x84, 0x15, 0x37, 0x1c, 0xfc, 0x6d, 0x5f, 0x83, 0x25, 0xa3, 0x5a, 0x71,
0x66, 0xff, 0x10, 0xae, 0x6d, 0xfb, 0xc9, 0xa0, 0xd8, 0x60, 0x0f, 0xe6, 0xc6, 0x93, 0x23, 0x37,
0xe3, 0x44, 0x99, 0x64, 0xc7, 0xb8, 0xfc, 0x27, 0xa2, 0xb2, 0xbf, 0x6e, 0x41, 0x6d, 0xf7, 0xc5,
0xde, 0x16, 0xdb, 0x2b, 0xfc, 0x70, 0x10, 0x8d, 0x98, 0x16, 0xc6, 0x07, 0xad, 0xd2, 0x53, 0x39,
0xec, 0x06, 0x34, 0x51, 0x79, 0x63, 0x27, 0x57, 0xa1, 0x07, 0x65, 0x00, 0x3b, 0x35, 0xd3, 0x37,
0x63, 0x3f, 0xc6, 0x63, 0xb1, 0x3c, 0xec, 0xd6, 0x70, 0x9b, 0x29, 0x66, 0xd8, 0x3f, 0x9f, 0x83,
0x39, 0xb1, 0xf9, 0xf2, 0x8d, 0x3c, 0xf5, 0xcf, 0x68, 0xb6, 0x91, 0xb3, 0x14, 0x53, 0x8c, 0x63,
0x3a, 0x8a, 0x52, 0xa5, 0xbf, 0xf1, 0x65, 0x30, 0x41, 0xb4, 0x0a, 0x08, 0x25, 0x82, 0xdb, 0x11,
0xaa, 0xbc, 0x94, 0x01, 0x92, 0x1b, 0x30, 0x27, 0x95, 0x81, 0x9a, 0x3a, 0xb0, 0x48, 0x88, 0xcd,
0xc6, 0xc0, 0x1b, 0x7b, 0x03, 0x3f, 0xbd, 0x10, 0x62, 0x41, 0xa5, 0x59, 0xfd, 0x41, 0x34, 0xf0,
0x02, 0xf7, 0xc8, 0x0b, 0xbc, 0x70, 0x40, 0xa5, 0xd5, 0xc1, 0x00, 0xd9, 0x09, 0x5c, 0x74, 0x4b,
0x16, 0xe3, 0xa7, 0xf4, 0x1c, 0xca, 0xf6, 0xf0, 0x41, 0x34, 0x1a, 0xf9, 0x29, 0x3b, 0xb8, 0xa3,
0x6a, 0x56, 0x75, 0x34, 0x84, 0xdb, 0x38, 0x30, 0x75, 0xce, 0x67, 0xb0, 0x29, 0x6d, 0x1c, 0x1a,
0xc8, 0x6a, 0xc9, 0x69, 0x68, 0x55, 0x47, 0x43, 0xd8, 0x5a, 0x4c, 0xc2, 0x84, 0xa6, 0x69, 0x40,
0x87, 0xaa, 0x43, 0x2d, 0x2c, 0x56, 0xcc, 0x20, 0x0f, 0x61, 0x89, 0xdb, 0x12, 0x12, 0x2f, 0x8d,
0x92, 0x53, 0x3f, 0x71, 0x13, 0x76, 0x0c, 0xe2, 0x67, 0xda, 0xb2, 0x2c, 0xf2, 0x31, 0xac, 0xe6,
0xe0, 0x98, 0x0e, 0xa8, 0x7f, 0x46, 0x87, 0xa8, 0xc2, 0x55, 0x9d, 0x69, 0xd9, 0x64, 0x0d, 0x5a,
0xe1, 0x64, 0xe4, 0x4e, 0xc6, 0x43, 0x8f, 0x29, 0x31, 0x1d, 0x54, 0x2e, 0x75, 0x88, 0x7c, 0x08,
0x52, 0x4f, 0x13, 0xda, 0xe3, 0x82, 0x21, 0xe1, 0x18, 0xf5, 0x3a, 0x66, 0x09, 0x46, 0x98, 0x99,
0x4a, 0xda, 0x15, 0xe7, 0x47, 0x09, 0x20, 0x9f, 0xc4, 0xfe, 0x99, 0x97, 0xd2, 0xde, 0x22, 0x17,
0xea, 0x22, 0xc9, 0xbe, 0xf3, 0x43, 0x3f, 0xf5, 0xbd, 0x34, 0x8a, 0x7b, 0x04, 0xf3, 0x32, 0x80,
0x4d, 0x22, 0xd2, 0x47, 0x92, 0x7a, 0xe9, 0x24, 0x11, 0x1a, 0xea, 0x12, 0x12, 0x57, 0x31, 0x83,
0x7c, 0x04, 0x2b, 0x9c, 0x22, 0x30, 0x4b, 0xe8, 0xde, 0xa8, 0x2a, 0x2c, 0xe3, 0x8c, 0x4c, 0xc9,
0x65, 0x53, 0x29, 0x48, 0xa4, 0xf0, 0xe1, 0x35, 0x3e, 0x95, 0x53, 0xb2, 0x59, 0xff, 0x58, 0x0f,
0xfc, 0x81, 0x2b, 0x4a, 0x30, 0x16, 0x59, 0xc1, 0x51, 0x14, 0x33, 0x18, 0x89, 0x07, 0xfe, 0x31,
0x4d, 0xfd, 0x11, 0xed, 0xad, 0x72, 0x12, 0x97, 0x69, 0xc6, 0x80, 0x93, 0x31, 0xe6, 0xf4, 0x38,
0xc3, 0xf3, 0x94, 0xfd, 0xfb, 0x16, 0xdf, 0x7c, 0x04, 0xa3, 0x26, 0xda, 0xb1, 0x8a, 0xb3, 0xa8,
0x1b, 0x85, 0xc1, 0x85, 0xe0, 0x5a, 0xe0, 0xd0, 0xf3, 0x30, 0xb8, 0x60, 0x8a, 0xbd, 0x1f, 0xea,
0x45, 0xb8, 0x9c, 0x6b, 0x4b, 0x10, 0x0b, 0xbd, 0x0b, 0xad, 0xf1, 0xe4, 0x28, 0xf0, 0x07, 0xbc,
0x48, 0x95, 0xd7, 0xc2, 0x21, 0x2c, 0xc0, 0xce, 0x95, 0x7c, 0xa5, 0x78, 0x89, 0x1a, 0x96, 0x68,
0x09, 0x8c, 0x15, 0xb1, 0x1f, 0xc1, 0xb2, 0xd9, 0x41, 0x21, 0xd0, 0xef, 0x43, 0x43, 0xf0, 0xbf,
0x34, 0x14, 0x74, 0x34, 0xf3, 0x2d, 0x3b, 0x06, 0xa9, 0x7c, 0xfb, 0x5f, 0xd5, 0x60, 0x49, 0xa0,
0x5b, 0x41, 0x94, 0xd0, 0xc3, 0xc9, 0x68, 0xe4, 0xc5, 0x25, 0x82, 0xc5, 0xba, 0x44, 0xb0, 0x54,
0x8a, 0x82, 0xe5, 0x96, 0x71, 0xbe, 0xe4, 0x92, 0x49, 0x43, 0xc8, 0x3d, 0x58, 0x18, 0x04, 0x51,
0xc2, 0xd5, 0x7d, 0xdd, 0x82, 0x98, 0x87, 0x8b, 0xc2, 0xb0, 0x5e, 0x26, 0x0c, 0x75, 0x41, 0x36,
0x9b, 0x13, 0x64, 0x36, 0xb4, 0x59, 0xa5, 0x54, 0xca, 0xe6, 0x39, 0x71, 0xd8, 0xd2, 0x30, 0xd6,
0x9f, 0xbc, 0xd8, 0xe0, 0x32, 0x6a, 0xa1, 0x4c, 0x68, 0xf8, 0x23, 0x8a, 0xb2, 0x5f, 0x2b, 0xdd,
0x14, 0x42, 0xa3, 0x98, 0x45, 0x1e, 0x03, 0xf0, 0xb6, 0x50, 0x01, 0x01, 0x54, 0x40, 0xee, 0x98,
0xab, 0xa2, 0xcf, 0xff, 0x3a, 0x4b, 0x4c, 0x62, 0x8a, 0x4a, 0x89, 0xf6, 0xa5, 0xfd, 0x37, 0x2d,
0x68, 0x69, 0x79, 0xe4, 0x1a, 0x2c, 0x6e, 0x3d, 0x7f, 0x7e, 0xb0, 0xe3, 0x6c, 0xbe, 0x78, 0xfa,
0xbd, 0x1d, 0x77, 0x6b, 0xef, 0xf9, 0xe1, 0x4e, 0x77, 0x86, 0xc1, 0x7b, 0xcf, 0xb7, 0x36, 0xf7,
0xdc, 0xc7, 0xcf, 0x9d, 0x2d, 0x09, 0x5b, 0x64, 0x05, 0x88, 0xb3, 0xf3, 0xec, 0xf9, 0x8b, 0x1d,
0x03, 0xaf, 0x90, 0x2e, 0xb4, 0x1f, 0x39, 0x3b, 0x9b, 0x5b, 0xbb, 0x02, 0xa9, 0x92, 0x65, 0xe8,
0x3e, 0x7e, 0xb9, 0xbf, 0xfd, 0x74, 0xff, 0x89, 0xbb, 0xb5, 0xb9, 0xbf, 0xb5, 0xb3, 0xb7, 0xb3,
0xdd, 0xad, 0x91, 0x79, 0x68, 0x6e, 0x3e, 0xda, 0xdc, 0xdf, 0x7e, 0xbe, 0xbf, 0xb3, 0xdd, 0xad,
0xdb, 0xff, 0xc5, 0x82, 0x6b, 0xd8, 0xeb, 0x61, 0x9e, 0x49, 0xd6, 0xa0, 0x35, 0x88, 0xa2, 0x31,
0x53, 0xfc, 0xb3, 0xad, 0x4d, 0x87, 0x18, 0x03, 0x70, 0xa1, 0x70, 0x1c, 0xc5, 0x03, 0x2a, 0x78,
0x04, 0x10, 0x7a, 0xcc, 0x10, 0xc6, 0x00, 0x62, 0x79, 0x79, 0x09, 0xce, 0x22, 0x2d, 0x8e, 0xf1,
0x22, 0x2b, 0x30, 0x7b, 0x14, 0x53, 0x6f, 0x70, 0x2a, 0xb8, 0x43, 0xa4, 0xc8, 0xfb, 0xd9, 0xc9,
0x74, 0xc0, 0x66, 0x3f, 0xa0, 0x43, 0xa4, 0x98, 0x86, 0xb3, 0x20, 0xf0, 0x2d, 0x01, 0x33, 0x29,
0xe8, 0x1d, 0x79, 0xe1, 0x30, 0x0a, 0xe9, 0x50, 0xa8, 0xbd, 0x19, 0x60, 0x1f, 0xc0, 0x4a, 0x7e,
0x7c, 0x82, 0xc7, 0x3e, 0xd2, 0x78, 0x8c, 0x6b, 0xa1, 0xfd, 0xe9, 0xab, 0xa9, 0xf1, 0xdb, 0x7f,
0xad, 0x40, 0x8d, 0x29, 0x25, 0xd3, 0x15, 0x18, 0x5d, 0xcf, 0xac, 0x16, 0xdc, 0x0d, 0x78, 0xd8,
0xe5, 0x5b, 0x94, 0x30, 0xb4, 0x64, 0x48, 0x96, 0x1f, 0xd3, 0xc1, 0x99, 0x30, 0xb5, 0x68, 0x08,
0x63, 0x10, 0x76, 0x08, 0xc0, 0xaf, 0x05, 0x83, 0xc8, 0xb4, 0xcc, 0xc3, 0x2f, 0xe7, 0xb2, 0x3c,
0xfc, 0xae, 0x07, 0x73, 0x7e, 0x78, 0x14, 0x4d, 0xc2, 0x21, 0x32, 0x44, 0xc3, 0x91, 0x49, 0x74,
0x70, 0x20, 0xa3, 0x32, 0xf9, 0xc9, 0xc9, 0x3f, 0x03, 0xc8, 0x06, 0x34, 0x93, 0x8b, 0x70, 0xa0,
0xd3, 0xfc, 0xb2, 0x98, 0x25, 0x36, 0x07, 0xeb, 0x87, 0x17, 0xe1, 0x00, 0x29, 0x3c, 0x2b, 0x66,
0xff, 0x16, 0x34, 0x24, 0xcc, 0xc8, 0xf2, 0xe5, 0xfe, 0xe7, 0xfb, 0xcf, 0x5f, 0xed, 0xbb, 0x87,
0xdf, 0xdf, 0xdf, 0xea, 0xce, 0x90, 0x05, 0x68, 0x6d, 0x6e, 0x21, 0xa5, 0x23, 0x60, 0xb1, 0x22,
0x07, 0x9b, 0x87, 0x87, 0x0a, 0xa9, 0xd8, 0x84, 0x1d, 0xe4, 0x13, 0xd4, 0xfc, 0x94, 0x01, 0xff,
0x23, 0x58, 0xd4, 0xb0, 0xec, 0x14, 0x31, 0x66, 0x40, 0xee, 0x14, 0x81, 0x2a, 0x23, 0xcf, 0xb1,
0xbb, 0xd0, 0x79, 0x42, 0xd3, 0xa7, 0xe1, 0x71, 0x24, 0x6b, 0xfa, 0x9f, 0x35, 0x58, 0x50, 0x90,
0xa8, 0xe8, 0x1e, 0x2c, 0xf8, 0x43, 0x1a, 0xa6, 0x7e, 0x7a, 0xe1, 0x1a, 0xf6, 0x82, 0x3c, 0xcc,
0x54, 0x6d, 0x2f, 0xf0, 0x3d, 0xe9, 0x47, 0xe2, 0x09, 0x76, 0x7e, 0x66, 0x3a, 0x80, 0x6e, 0xb7,
0x41, 0xba, 0xe2, 0x66, 0x8a, 0xd2, 0x3c, 0x26, 0x81, 0x18, 0x2e, 0xb6, 0x19, 0xf5, 0x09, 0x57,
0x39, 0xcb, 0xb2, 0xd8, 0x52, 0xf1, 0x9a, 0xd8, 0x90, 0xeb, 0x5c, 0x4f, 0x50, 0x40, 0xc1, 0x51,
0x33, 0xcb, 0xe5, 0x63, 0xde, 0x51, 0xa3, 0x39, 0x7b, 0x1a, 0x05, 0x67, 0x0f, 0x93, 0x9f, 0x17,
0xe1, 0x80, 0x0e, 0xdd, 0x34, 0x72, 0x51, 0xce, 0x23, 0x49, 0x34, 0x9c, 0x3c, 0xcc, 0xf6, 0x8d,
0x94, 0x26, 0x69, 0x48, 0xb9, 0xc5, 0xbb, 0x81, 0x56, 0x50, 0x09, 0xb1, 0xf3, 0xc1, 0x24, 0xf6,
0x93, 0x5e, 0x1b, 0xdd, 0x38, 0xf8, 0x9b, 0x7c, 0x1b, 0xae, 0x1d, 0xd1, 0x24, 0x75, 0x4f, 0xa9,
0x37, 0xa4, 0x31, 0x92, 0x17, 0xf7, 0x17, 0x71, 0x95, 0xab, 0x3c, 0x93, 0x11, 0xee, 0x19, 0x8d,
0x13, 0x3f, 0x0a, 0x51, 0xd9, 0x6a, 0x3a, 0x32, 0xc9, 0xea, 0x63, 0x83, 0x57, 0x1b, 0xb5, 0x9a,
0xc1, 0x05, 0x1c, 0x78, 0x79, 0x26, 0xb9, 0x0d, 0xb3, 0x38, 0x80, 0xa4, 0xd7, 0x45, 0x9a, 0x69,
0x67, 0x3c, 0xef, 0x87, 0x8e, 0xc8, 0x63, 0xab, 0x3c, 0x88, 0x82, 0x28, 0x46, 0x8d, 0xab, 0xe9,
0xf0, 0x84, 0x39, 0x3b, 0x27, 0xb1, 0x37, 0x3e, 0x15, 0x5a, 0x57, 0x1e, 0xfe, 0xac, 0xd6, 0x68,
0x75, 0xdb, 0xf6, 0x9f, 0x83, 0x3a, 0x56, 0x8b, 0xd5, 0xe1, 0x64, 0x5a, 0xa2, 0x3a, 0x44, 0x7b,
0x30, 0x17, 0xd2, 0xf4, 0x3c, 0x8a, 0x5f, 0x4b, 0xa7, 0xa4, 0x48, 0xda, 0x3f, 0xc5, 0x13, 0x9a,
0x72, 0xd2, 0xbd, 0x44, 0xd5, 0x92, 0x9d, 0xb3, 0xf9, 0x52, 0x25, 0xa7, 0x9e, 0x38, 0x34, 0x36,
0x10, 0x38, 0x3c, 0xf5, 0x98, 0xac, 0x35, 0x56, 0x9f, 0x9f, 0xc3, 0x5b, 0x88, 0xed, 0xf2, 0xc5,
0xbf, 0x0d, 0x1d, 0xe9, 0xfe, 0x4b, 0xdc, 0x80, 0x1e, 0xa7, 0xd2, 0x8a, 0x16, 0x4e, 0x46, 0x78,
0x58, 0xdf, 0xa3, 0xc7, 0xa9, 0xbd, 0x0f, 0x8b, 0x42, 0xfe, 0x3d, 0x1f, 0x53, 0xd9, 0xf4, 0x6f,
0x94, 0xe9, 0x12, 0xad, 0x8d, 0x25, 0x53, 0x60, 0x72, 0x87, 0xa7, 0x59, 0xd2, 0x76, 0x80, 0xe8,
0xf2, 0x54, 0x54, 0x28, 0x36, 0x73, 0x69, 0x27, 0x14, 0xc3, 0x31, 0x30, 0x36, 0x3f, 0xc9, 0x64,
0x30, 0x90, 0x4e, 0xdb, 0x86, 0x23, 0x93, 0xf6, 0x7f, 0xb4, 0x60, 0x09, 0x6b, 0x93, 0xda, 0x90,
0xd8, 0xb3, 0x3e, 0xfe, 0x0a, 0xdd, 0x94, 0x56, 0x5a, 0x6e, 0x9b, 0x5c, 0x86, 0xba, 0xbe, 0x8b,
0xf1, 0xc4, 0x57, 0xb7, 0xc9, 0xd4, 0x0a, 0x36, 0x99, 0xfb, 0xd0, 0x1d, 0xd2, 0xc0, 0x47, 0xc7,
0xbd, 0xdc, 0x13, 0xb8, 0xea, 0x53, 0xc0, 0xed, 0xbf, 0x6b, 0xc1, 0x22, 0xdf, 0x74, 0x50, 0x33,
0x17, 0x53, 0xf5, 0xe7, 0x61, 0x9e, 0x6b, 0x0f, 0x42, 0x82, 0x88, 0x41, 0x65, 0x62, 0x18, 0x51,
0x5e, 0x78, 0x77, 0xc6, 0x31, 0x0b, 0x93, 0x4f, 0x51, 0x83, 0x0b, 0x5d, 0x44, 0x4b, 0x42, 0x01,
0xcc, 0x75, 0xd9, 0x9d, 0x71, 0xb4, 0xe2, 0x8f, 0x1a, 0x4c, 0xb1, 0x66, 0xb8, 0xfd, 0x04, 0xe6,
0x8d, 0x86, 0x0c, 0xdb, 0x51, 0x9b, 0xdb, 0x8e, 0x0a, 0x46, 0xda, 0x4a, 0x89, 0x91, 0xf6, 0x5f,
0x54, 0x81, 0x30, 0xc2, 0xca, 0xad, 0xdc, 0x9a, 0xe9, 0xe9, 0x90, 0x51, 0x01, 0x19, 0x44, 0x36,
0x80, 0x68, 0x49, 0xe9, 0x81, 0xa9, 0x2a, 0x0f, 0x4c, 0x49, 0x2e, 0x13, 0xcb, 0x42, 0x43, 0x51,
0xde, 0x0d, 0xb4, 0x0b, 0xf0, 0x65, 0x2a, 0xcd, 0x63, 0xbb, 0x28, 0xba, 0x3a, 0xd8, 0x09, 0x46,
0x9c, 0xa5, 0x65, 0x3a, 0x4f, 0x0f, 0xb3, 0x97, 0xd2, 0xc3, 0x5c, 0x81, 0x1e, 0xb4, 0xd3, 0x5c,
0xc3, 0x3c, 0xcd, 0xdd, 0x86, 0x79, 0xe9, 0xd1, 0xe0, 0x4e, 0x59, 0x71, 0x74, 0x36, 0x40, 0x46,
0x4f, 0xf2, 0x40, 0xa5, 0x8e, 0x8c, 0xdc, 0xe5, 0x58, 0xc0, 0xd9, 0x7e, 0x91, 0x59, 0xed, 0x5a,
0xd8, 0xd9, 0x0c, 0xc0, 0xf3, 0x17, 0xa3, 0x12, 0x77, 0x12, 0x8a, 0x88, 0x00, 0x3a, 0xc4, 0x43,
0x33, 0x3b, 0x7f, 0xe5, 0x33, 0xec, 0xbf, 0x65, 0x41, 0x97, 0xad, 0x9b, 0x41, 0x9a, 0x9f, 0x00,
0x72, 0xd1, 0x15, 0x29, 0xd3, 0x28, 0x4b, 0x3e, 0x86, 0x26, 0xa6, 0xa3, 0x31, 0x0d, 0x05, 0x5d,
0xf6, 0x4c, 0xba, 0xcc, 0xe4, 0xcf, 0xee, 0x8c, 0x93, 0x15, 0xd6, 0xa8, 0xf2, 0xdf, 0x5b, 0xd0,
0x12, 0xad, 0xfc, 0xc2, 0x56, 0xa1, 0xbe, 0x16, 0xc2, 0xc1, 0x95, 0xb5, 0x2c, 0x62, 0xe3, 0x1e,
0x2c, 0x8c, 0xbc, 0x74, 0x12, 0xb3, 0xfd, 0xdf, 0xb0, 0x08, 0xe5, 0x61, 0xb6, 0x99, 0xa3, 0xa8,
0x4d, 0xdc, 0xd4, 0x0f, 0x5c, 0x99, 0x2b, 0x82, 0x25, 0xca, 0xb2, 0x98, 0xc4, 0x49, 0x52, 0xef,
0x84, 0x8a, 0x7d, 0x9a, 0x27, 0xec, 0x1e, 0xac, 0x1c, 0x64, 0x5e, 0x1e, 0x4d, 0x1f, 0xb7, 0xff,
0xe9, 0x3c, 0xac, 0x16, 0xb2, 0x54, 0x68, 0x97, 0x30, 0x73, 0x04, 0xfe, 0xe8, 0x28, 0x52, 0x87,
0x19, 0x4b, 0xb7, 0x80, 0x18, 0x59, 0xe4, 0x04, 0xae, 0x49, 0x85, 0x84, 0xcd, 0x69, 0xb6, 0x79,
0x56, 0x70, 0x57, 0xfc, 0xd0, 0x5c, 0xc2, 0x7c, 0x83, 0x12, 0xd7, 0x19, 0xb9, 0xbc, 0x3e, 0x72,
0x0a, 0x3d, 0xa5, 0xf9, 0x08, 0xe1, 0xae, 0x69, 0x47, 0xac, 0xad, 0x0f, 0x2e, 0x69, 0xcb, 0x50,
0xdf, 0x9d, 0xa9, 0xb5, 0x91, 0x0b, 0xb8, 0x25, 0xf3, 0x50, 0x7a, 0x17, 0xdb, 0xab, 0x5d, 0x69,
0x6c, 0x78, 0x30, 0x31, 0x1b, 0xbd, 0xa4, 0x62, 0xf2, 0x63, 0x58, 0x39, 0xf7, 0xfc, 0x54, 0x76,
0x4b, 0xd3, 0x45, 0xea, 0xd8, 0xe4, 0xc6, 0x25, 0x4d, 0xbe, 0xe2, 0x1f, 0x1b, 0x5b, 0xda, 0x94,
0x1a, 0xfb, 0x7f, 0x5c, 0x81, 0x8e, 0x59, 0x0f, 0x23, 0x53, 0xc1, 0xfb, 0x52, 0x06, 0x4a, 0xed,
0x35, 0x07, 0x17, 0x6d, 0x02, 0x95, 0x32, 0x9b, 0x80, 0x7e, 0x0a, 0xaf, 0x5e, 0x66, 0x4e, 0xac,
0x5d, 0xcd, 0x9c, 0x58, 0x2f, 0x35, 0x27, 0x4e, 0xb7, 0x3a, 0xcd, 0xfe, 0xa2, 0x56, 0xa7, 0xb9,
0xb7, 0x5a, 0x9d, 0xfa, 0xff, 0xcf, 0x02, 0x52, 0xa4, 0x5e, 0xf2, 0x84, 0x9b, 0x41, 0x42, 0x1a,
0x08, 0x21, 0xf6, 0xcd, 0xab, 0x71, 0x80, 0x5c, 0x2d, 0xf9, 0x35, 0x63, 0x45, 0x3d, 0xbe, 0x4a,
0x57, 0xc7, 0xe6, 0x9d, 0xb2, 0xac, 0x9c, 0x49, 0xb5, 0x76, 0xb9, 0x49, 0xb5, 0x7e, 0xb9, 0x49,
0x75, 0x36, 0x6f, 0x52, 0xed, 0xff, 0x35, 0x0b, 0x96, 0x4a, 0xc8, 0xec, 0x57, 0x37, 0x70, 0x46,
0x18, 0x86, 0xf4, 0xa9, 0x08, 0xc2, 0xd0, 0xc1, 0xfe, 0x5f, 0x82, 0x79, 0x83, 0xb5, 0x7e, 0x75,
0xed, 0xe7, 0x35, 0x4a, 0x4e, 0xd9, 0x06, 0xd6, 0xff, 0xdf, 0x15, 0x20, 0x45, 0xf6, 0xfe, 0xb5,
0xf6, 0xa1, 0x38, 0x4f, 0xd5, 0x92, 0x79, 0xfa, 0x33, 0xdd, 0x79, 0x3e, 0x80, 0x45, 0x11, 0x34,
0xaa, 0x19, 0xbe, 0x38, 0xc5, 0x14, 0x33, 0x98, 0x4e, 0x6d, 0xda, 0xb3, 0x1b, 0x46, 0x90, 0x9c,
0xb6, 0xfd, 0xe6, 0xcc, 0xda, 0x76, 0x1f, 0x7a, 0x62, 0x86, 0x76, 0xce, 0x68, 0x98, 0x1e, 0x4e,
0x8e, 0x78, 0xd4, 0xa4, 0x1f, 0x85, 0xa8, 0x06, 0xea, 0x99, 0x42, 0xa1, 0xf8, 0x36, 0xb4, 0xf5,
0xed, 0x43, 0x2c, 0x47, 0xce, 0xf6, 0xc9, 0x54, 0x09, 0xbd, 0x14, 0xd9, 0x86, 0x0e, 0x0a, 0xc9,
0xa1, 0xfa, 0xae, 0x82, 0xdf, 0xbd, 0xc5, 0x9e, 0xb3, 0x3b, 0xe3, 0xe4, 0xbe, 0x21, 0xbf, 0x09,
0x1d, 0xf3, 0xb0, 0x28, 0xb4, 0x92, 0xb2, 0xd3, 0x03, 0xfb, 0xdc, 0x2c, 0x4c, 0x36, 0xa1, 0x9b,
0x3f, 0x6d, 0x8a, 0xc8, 0x9f, 0x29, 0x15, 0x14, 0x8a, 0x93, 0x8f, 0x85, 0x73, 0xb3, 0x8e, 0x76,
0x96, 0xdb, 0xe6, 0x67, 0xda, 0x34, 0xad, 0xf3, 0x3f, 0x9a, 0xbb, 0xf3, 0x77, 0x00, 0x32, 0x8c,
0x74, 0xa1, 0xfd, 0xfc, 0x60, 0x67, 0xdf, 0xdd, 0xda, 0xdd, 0xdc, 0xdf, 0xdf, 0xd9, 0xeb, 0xce,
0x10, 0x02, 0x1d, 0x34, 0x0b, 0x6e, 0x2b, 0xcc, 0x62, 0x98, 0x30, 0xc4, 0x48, 0xac, 0x42, 0x96,
0xa1, 0xfb, 0x74, 0x3f, 0x87, 0x56, 0x1f, 0x35, 0x15, 0x7f, 0xd8, 0x2b, 0xb0, 0xcc, 0x83, 0x82,
0x1f, 0x71, 0xf2, 0x90, 0xda, 0xc9, 0x3f, 0xb4, 0xe0, 0x5a, 0x2e, 0x23, 0x0b, 0x0f, 0xe3, 0x0a,
0x88, 0xa9, 0x95, 0x98, 0x20, 0x3a, 0x2b, 0xa4, 0xae, 0x99, 0x93, 0x20, 0xc5, 0x0c, 0x46, 0xf3,
0x9a, 0x6e, 0x9a, 0xe3, 0xa4, 0xb2, 0x2c, 0x7b, 0x55, 0x45, 0xe1, 0xe4, 0x3a, 0x7e, 0xcc, 0x83,
0x8d, 0xf5, 0x8c, 0xcc, 0x59, 0x6c, 0x76, 0x59, 0x26, 0xd9, 0xb1, 0xc2, 0x50, 0x76, 0xcc, 0xfe,
0x96, 0xe6, 0xd9, 0xff, 0xa7, 0x06, 0xe4, 0xbb, 0x13, 0x1a, 0x5f, 0x60, 0xfc, 0x97, 0xb2, 0xb2,
0xae, 0xe6, 0x6d, 0x88, 0xb3, 0xe3, 0xc9, 0xd1, 0xe7, 0xf4, 0x42, 0xc6, 0x6b, 0x56, 0xae, 0x14,
0xaf, 0x59, 0x16, 0x2f, 0x59, 0xbb, 0x3c, 0x5e, 0xb2, 0x7e, 0x59, 0xbc, 0xe4, 0xd7, 0x60, 0xde,
0x3f, 0x09, 0x23, 0x26, 0x0e, 0x98, 0x0a, 0x91, 0xf4, 0x66, 0xd7, 0xaa, 0xec, 0x98, 0x2e, 0xc0,
0x7d, 0x86, 0x91, 0x4f, 0xb3, 0x42, 0x74, 0x78, 0x82, 0xf1, 0xbd, 0xba, 0x80, 0xd8, 0x19, 0x9e,
0xd0, 0xbd, 0x68, 0xe0, 0xa5, 0x51, 0x8c, 0xe7, 0x34, 0xf9, 0x31, 0xc3, 0x13, 0x72, 0x1b, 0x3a,
0x49, 0x34, 0x61, 0x4a, 0x95, 0x9c, 0x06, 0x6e, 0x94, 0x6a, 0x73, 0xf4, 0x80, 0x4f, 0xc6, 0x3a,
0x2c, 0x4d, 0x12, 0xea, 0x8e, 0xfc, 0x24, 0x61, 0x1b, 0xe7, 0x20, 0x0a, 0xd3, 0x38, 0x0a, 0x84,
0x69, 0x6a, 0x71, 0x92, 0xd0, 0x67, 0x3c, 0x67, 0x8b, 0x67, 0x90, 0x6f, 0x67, 0x5d, 0x1a, 0x7b,
0x7e, 0x9c, 0xf4, 0x00, 0xbb, 0x24, 0x47, 0xca, 0xfa, 0x7d, 0xe0, 0xf9, 0xb1, 0xea, 0x0b, 0x4b,
0x24, 0xb9, 0x38, 0xce, 0x56, 0x3e, 0x8e, 0xf3, 0x47, 0xe5, 0x71, 0x9c, 0xf3, 0x58, 0xf5, 0x43,
0x51, 0x75, 0x71, 0x89, 0xaf, 0x1e, 0xce, 0xf9, 0xab, 0x09, 0xd0, 0x14, 0x31, 0x85, 0xeb, 0xd0,
0x90, 0xc3, 0x64, 0x67, 0xf5, 0xe3, 0x38, 0x1a, 0xc9, 0xb3, 0x3a, 0xfb, 0x4d, 0x3a, 0x50, 0x49,
0x23, 0xf1, 0x71, 0x25, 0x8d, 0xec, 0xdf, 0x85, 0x96, 0xb6, 0x52, 0xe4, 0x3d, 0x6e, 0x36, 0x60,
0x3a, 0xa1, 0x38, 0xe4, 0x73, 0xcf, 0x50, 0x53, 0xa0, 0x4f, 0x87, 0xe4, 0x1b, 0xb0, 0x38, 0xf4,
0x63, 0x8a, 0x21, 0xd1, 0x6e, 0x4c, 0xcf, 0x68, 0x9c, 0x48, 0xf3, 0x49, 0x57, 0x65, 0x38, 0x1c,
0xb7, 0x5d, 0x58, 0x32, 0xa6, 0x46, 0x09, 0x87, 0x59, 0x0c, 0x84, 0x94, 0x16, 0x5c, 0x33, 0x48,
0x52, 0xe4, 0xb1, 0x6d, 0x55, 0x58, 0x7e, 0xdc, 0x71, 0x1c, 0x1d, 0x61, 0x23, 0x96, 0x63, 0x60,
0xf6, 0xff, 0xaa, 0x42, 0x75, 0x37, 0x1a, 0xeb, 0xfe, 0x2c, 0xab, 0xe8, 0xcf, 0x12, 0xfa, 0xaf,
0xab, 0xd4, 0x5b, 0xa1, 0xa4, 0x18, 0x20, 0xb9, 0x0f, 0x1d, 0xc6, 0x69, 0x69, 0xc4, 0xf4, 0xfd,
0x73, 0x2f, 0xe6, 0x51, 0x93, 0x55, 0x24, 0xdf, 0x5c, 0x0e, 0x59, 0x86, 0xaa, 0x52, 0xdb, 0xb0,
0x00, 0x4b, 0xb2, 0xc3, 0x26, 0xc6, 0x0c, 0x5c, 0x08, 0x33, 0xad, 0x48, 0x31, 0xc1, 0x65, 0x7e,
0xcf, 0xd9, 0x99, 0x6f, 0xbe, 0x65, 0x59, 0x4c, 0x17, 0x67, 0x0c, 0x3b, 0xca, 0x54, 0x5b, 0x95,
0xd6, 0x1d, 0x10, 0x0d, 0xd3, 0x01, 0xb1, 0x06, 0xad, 0x34, 0x38, 0x73, 0xc7, 0xde, 0x45, 0x10,
0x79, 0x43, 0xc1, 0x28, 0x3a, 0x44, 0x1e, 0x02, 0x8c, 0xc6, 0x63, 0x41, 0xc5, 0x68, 0x41, 0x68,
0x6d, 0x74, 0xc5, 0xec, 0x3f, 0x3b, 0x38, 0xe0, 0xd4, 0xe7, 0x68, 0x65, 0xc8, 0x0e, 0x74, 0x4a,
0x43, 0x98, 0x6f, 0x4a, 0xcf, 0x76, 0x34, 0x5e, 0x2f, 0xa1, 0xf3, 0xdc, 0x47, 0xfd, 0xdf, 0x06,
0xf2, 0x4b, 0x46, 0x20, 0xbf, 0x82, 0xa6, 0xea, 0xa1, 0x1e, 0xf7, 0x8b, 0xe1, 0x2b, 0x2d, 0x33,
0xee, 0x17, 0xa3, 0x55, 0xee, 0x40, 0x87, 0xef, 0x36, 0x4a, 0x7e, 0xf2, 0x90, 0x83, 0x1c, 0x6a,
0xff, 0xa9, 0x05, 0x75, 0xa4, 0x3c, 0xa6, 0x7e, 0xf1, 0x3c, 0xe5, 0x08, 0xc4, 0xae, 0xcd, 0x3b,
0x79, 0x98, 0xd8, 0xc6, 0xd5, 0x86, 0x8a, 0x22, 0x03, 0xfd, 0x7a, 0xc3, 0x1a, 0x34, 0x55, 0x4b,
0x1a, 0x29, 0x65, 0x20, 0xb9, 0x05, 0xb5, 0xd3, 0x68, 0x2c, 0x4f, 0xa8, 0x90, 0xcd, 0xa8, 0x83,
0x78, 0xd6, 0x1f, 0x56, 0x1f, 0x1f, 0x02, 0x3f, 0x05, 0xe4, 0xe1, 0x92, 0xb1, 0xce, 0x96, 0x8e,
0xf5, 0x25, 0x2c, 0x30, 0xf9, 0xa0, 0x39, 0x46, 0xa6, 0xef, 0x45, 0xef, 0x33, 0xd5, 0x66, 0x10,
0x4c, 0x86, 0x54, 0xb7, 0x13, 0xa0, 0xe1, 0x5b, 0xe0, 0x52, 0x43, 0xb6, 0xff, 0x99, 0xc5, 0xe5,
0x0e, 0xab, 0x97, 0xdc, 0x83, 0x1a, 0xdb, 0x36, 0x72, 0x66, 0x21, 0x15, 0x52, 0xc4, 0xca, 0x39,
0x58, 0x82, 0xad, 0x22, 0x9a, 0xa6, 0xf5, 0xda, 0xb9, 0x61, 0x3a, 0x3b, 0x64, 0xab, 0x91, 0xe5,
0xce, 0xa6, 0x39, 0x94, 0xac, 0x6b, 0x7e, 0xbd, 0x9a, 0xb1, 0x15, 0x49, 0x4d, 0x6a, 0x78, 0x42,
0x35, 0x7f, 0xde, 0x1f, 0x5a, 0x30, 0x6f, 0xf4, 0x89, 0x71, 0x0f, 0x06, 0xfe, 0x73, 0x2b, 0x93,
0x58, 0x79, 0x1d, 0xd2, 0x39, 0xaf, 0x62, 0x72, 0x9e, 0xf2, 0x0f, 0x55, 0x75, 0xff, 0xd0, 0x43,
0x68, 0x66, 0x77, 0x5b, 0xcc, 0x4e, 0xb1, 0x16, 0x65, 0x70, 0x55, 0x56, 0x28, 0xf3, 0x40, 0xd4,
0x35, 0x0f, 0x84, 0xfd, 0x29, 0xb4, 0xb4, 0xf2, 0xba, 0x07, 0xc1, 0x32, 0x3c, 0x08, 0x2a, 0xf2,
0xb0, 0x92, 0x45, 0x1e, 0xda, 0x3f, 0xab, 0xc0, 0x3c, 0x23, 0x6f, 0x3f, 0x3c, 0x39, 0x88, 0x02,
0x7f, 0x70, 0x81, 0x64, 0x25, 0x29, 0x59, 0xa8, 0x0d, 0x92, 0xcc, 0x4d, 0x98, 0x89, 0x21, 0x15,
0x6e, 0xcd, 0x65, 0xa6, 0x4a, 0x33, 0xa1, 0xca, 0x44, 0xd2, 0x91, 0x97, 0x50, 0xed, 0xb2, 0x8b,
0x63, 0x82, 0x4c, 0xf4, 0x31, 0x00, 0xe3, 0x48, 0x47, 0x7e, 0x10, 0xf8, 0xbc, 0x2c, 0x3f, 0xef,
0x96, 0x65, 0xb1, 0x36, 0x87, 0x7e, 0xe2, 0x1d, 0x65, 0xbe, 0x5f, 0x95, 0x46, 0x63, 0xa9, 0xf7,
0x46, 0x33, 0x96, 0xf2, 0xc0, 0x73, 0x13, 0xcc, 0x2f, 0xe4, 0x5c, 0x61, 0x21, 0xed, 0x7f, 0x53,
0x81, 0x96, 0x46, 0x16, 0x8c, 0x9d, 0x4b, 0xf7, 0x3d, 0x0d, 0x15, 0x41, 0x11, 0xa1, 0x61, 0x41,
0xd1, 0x10, 0x72, 0xdb, 0x6c, 0x15, 0x9d, 0x2c, 0xc8, 0xf0, 0x06, 0x09, 0xdd, 0x80, 0x26, 0x23,
0xfd, 0x0f, 0xd1, 0x5c, 0x23, 0x2e, 0x96, 0x29, 0x40, 0xe6, 0x6e, 0x60, 0x6e, 0x3d, 0xcb, 0x45,
0xe0, 0xad, 0x61, 0x12, 0x1f, 0x43, 0x5b, 0x54, 0x83, 0x6b, 0x8c, 0x83, 0xce, 0x98, 0xcf, 0x58,
0x7f, 0xc7, 0x28, 0x29, 0xbf, 0xdc, 0x90, 0x5f, 0x36, 0x2e, 0xfb, 0x52, 0x96, 0xb4, 0x9f, 0xa8,
0x08, 0x94, 0x27, 0xb1, 0x37, 0x3e, 0x95, 0x02, 0xe5, 0x21, 0x2c, 0x49, 0xb9, 0x31, 0x09, 0xbd,
0x30, 0x8c, 0x26, 0xe1, 0x80, 0xca, 0x20, 0xc5, 0xb2, 0x2c, 0x7b, 0xa8, 0x42, 0xda, 0xb1, 0x22,
0x72, 0x1f, 0xea, 0x5c, 0xf1, 0xe4, 0xea, 0x41, 0xb9, 0x08, 0xe1, 0x45, 0xc8, 0x3d, 0xa8, 0x73,
0xfd, 0xb3, 0x32, 0x95, 0xe9, 0x79, 0x01, 0x7b, 0x1d, 0x16, 0x30, 0x86, 0x5e, 0x93, 0x7d, 0xef,
0x94, 0xa9, 0x0d, 0xb3, 0x03, 0x1e, 0x69, 0xbf, 0x0c, 0x64, 0x9f, 0xf3, 0x95, 0xee, 0x47, 0xfe,
0xd3, 0x2a, 0xb4, 0x34, 0x98, 0xc9, 0x27, 0x74, 0xfe, 0xb9, 0x43, 0xdf, 0x1b, 0xd1, 0x94, 0xc6,
0x82, 0x97, 0x72, 0x28, 0x2b, 0xe7, 0x9d, 0x9d, 0xb8, 0xd1, 0x24, 0x75, 0x87, 0xf4, 0x24, 0xa6,
0x54, 0xe8, 0x33, 0x39, 0x94, 0x95, 0x63, 0xd4, 0xac, 0x95, 0xe3, 0xee, 0xba, 0x1c, 0x2a, 0xbd,
0xc2, 0x7c, 0x9e, 0x6a, 0x99, 0x57, 0x98, 0xcf, 0x4a, 0x5e, 0xb2, 0xd6, 0x4b, 0x24, 0xeb, 0x47,
0xb0, 0xc2, 0x65, 0xa8, 0x90, 0x1e, 0x6e, 0x8e, 0xb8, 0xa6, 0xe4, 0x92, 0xfb, 0xd0, 0x65, 0x7d,
0x96, 0xac, 0x91, 0xf8, 0x3f, 0xe5, 0x3c, 0x66, 0x39, 0x05, 0x9c, 0x95, 0x45, 0xd7, 0x83, 0x5e,
0x96, 0x87, 0xe6, 0x14, 0x70, 0x2c, 0xeb, 0xbd, 0x31, 0xcb, 0x36, 0x45, 0xd9, 0x1c, 0x4e, 0x3e,
0x86, 0xd5, 0x11, 0x1d, 0xfa, 0x9e, 0x59, 0x85, 0x9b, 0x6d, 0xf2, 0xd3, 0xb2, 0x59, 0x2b, 0x6c,
0x16, 0x7e, 0x1a, 0x8d, 0x8e, 0x7c, 0xbe, 0xb1, 0x71, 0x27, 0x49, 0xcd, 0x29, 0xe0, 0xf6, 0x3c,
0xb4, 0x0e, 0xd3, 0x68, 0x2c, 0x97, 0xbe, 0x03, 0x6d, 0x9e, 0x14, 0x61, 0xa9, 0xef, 0xc0, 0x75,
0xa4, 0xd7, 0x17, 0xd1, 0x38, 0x0a, 0xa2, 0x93, 0x0b, 0xc3, 0xd4, 0xf1, 0xef, 0x2c, 0x58, 0x32,
0x72, 0x33, 0x5b, 0x07, 0xda, 0x65, 0x65, 0x2c, 0x21, 0x27, 0xf1, 0x45, 0x6d, 0x5b, 0xe0, 0x05,
0xb9, 0x1b, 0xec, 0xa5, 0x08, 0x2f, 0xdc, 0xcc, 0x2e, 0xc8, 0xc8, 0x0f, 0x39, 0xbd, 0xf7, 0x8a,
0xf4, 0x2e, 0xbe, 0x97, 0x57, 0x67, 0x64, 0x15, 0xbf, 0x29, 0x02, 0xa9, 0x86, 0x62, 0xd0, 0x55,
0x33, 0xf8, 0x45, 0x37, 0x8d, 0xc9, 0x1e, 0x0c, 0x14, 0x98, 0xd8, 0x3f, 0xb7, 0x00, 0xb2, 0xde,
0x61, 0xf8, 0x8d, 0xda, 0xda, 0xf8, 0x5d, 0x72, 0x6d, 0x1b, 0x7b, 0x0f, 0xda, 0x2a, 0x82, 0x22,
0xdb, 0x2d, 0x5b, 0x12, 0x63, 0xda, 0xc5, 0x5d, 0x58, 0x38, 0x09, 0xa2, 0x23, 0xd4, 0x62, 0x30,
0xce, 0x39, 0x11, 0xc1, 0xb9, 0x1d, 0x0e, 0x3f, 0x16, 0x68, 0xb6, 0xb5, 0xd6, 0xf4, 0xad, 0xb5,
0x7c, 0xa3, 0xfc, 0x59, 0x45, 0xb9, 0xb1, 0xb3, 0x99, 0x78, 0x2b, 0x97, 0x93, 0x8d, 0x82, 0x58,
0x9f, 0xe2, 0x39, 0xc6, 0x33, 0xd0, 0xc1, 0xa5, 0x96, 0xf2, 0x4f, 0xa1, 0x13, 0x73, 0x99, 0x29,
0x05, 0x6a, 0xed, 0x2d, 0x02, 0x75, 0x3e, 0x36, 0x76, 0xe6, 0xf7, 0xa1, 0xeb, 0x0d, 0xcf, 0x68,
0x9c, 0xfa, 0x68, 0x39, 0x44, 0x35, 0x8a, 0x0f, 0x70, 0x41, 0xc3, 0x51, 0x5b, 0xb9, 0x0b, 0x0b,
0x22, 0x54, 0x5a, 0x95, 0x14, 0xb7, 0x2a, 0x33, 0x98, 0x15, 0xb4, 0xff, 0xb1, 0xf4, 0x9a, 0x9b,
0xab, 0xfb, 0xf6, 0x59, 0xd1, 0x47, 0x58, 0xc9, 0x8d, 0xf0, 0x6b, 0xc2, 0x33, 0x3d, 0x94, 0x26,
0xca, 0xaa, 0x16, 0x92, 0x37, 0x14, 0x51, 0x07, 0xe6, 0xb4, 0xd6, 0xae, 0x32, 0xad, 0xf6, 0x7f,
0xb2, 0x60, 0x6e, 0x37, 0x1a, 0xef, 0xb2, 0x29, 0x66, 0x3a, 0x0e, 0x63, 0x13, 0x75, 0x4f, 0x41,
0x26, 0x2f, 0x09, 0x5d, 0x2c, 0xd5, 0x4a, 0xe6, 0xf3, 0x5a, 0xc9, 0x6f, 0xc3, 0x3b, 0x68, 0x24,
0x8f, 0xa3, 0x71, 0x14, 0x33, 0x76, 0xf5, 0x02, 0xae, 0x82, 0x44, 0x61, 0x7a, 0x2a, 0xc5, 0xe9,
0xdb, 0x8a, 0xa0, 0xe5, 0x2a, 0x48, 0xcf, 0x5c, 0x7e, 0xc2, 0x13, 0x5a, 0x14, 0x97, 0xb2, 0xc5,
0x0c, 0xfb, 0x37, 0xa0, 0x89, 0x27, 0x0c, 0x1c, 0xda, 0x07, 0xd0, 0x3c, 0x8d, 0xc6, 0xee, 0xa9,
0x1f, 0xa6, 0x92, 0xfd, 0x3b, 0x99, 0xea, 0xbf, 0x8b, 0x93, 0xa2, 0x0a, 0xd8, 0x7f, 0x32, 0x0b,
0x73, 0x4f, 0xc3, 0xb3, 0xc8, 0x1f, 0xa0, 0xf7, 0x7d, 0x44, 0x47, 0x91, 0xbc, 0xb9, 0xc1, 0x7e,
0xe3, 0xe5, 0xe8, 0xec, 0x6e, 0x25, 0x67, 0x21, 0x0d, 0x61, 0x67, 0xd2, 0x58, 0xbf, 0x1b, 0x29,
0x52, 0xd9, 0x41, 0xab, 0xae, 0xdd, 0x7d, 0x61, 0xb5, 0xf1, 0x3b, 0x7b, 0x38, 0x77, 0x3c, 0xe2,
0x56, 0x43, 0xd8, 0xe4, 0x8b, 0x90, 0x4a, 0x1e, 0x73, 0xc7, 0xe3, 0x7f, 0x04, 0x84, 0xe7, 0xec,
0x98, 0x72, 0x37, 0x87, 0x52, 0xbd, 0xd8, 0x39, 0x5b, 0x07, 0x99, 0x7a, 0xc6, 0x3f, 0xe0, 0x65,
0xf8, 0x76, 0xa0, 0x43, 0x4c, 0x41, 0xcd, 0xdf, 0x18, 0xe6, 0xb7, 0xbe, 0xf3, 0x30, 0x8f, 0xb3,
0x50, 0x42, 0x97, 0x8f, 0x13, 0xf8, 0xfd, 0xd2, 0x3c, 0xae, 0x9d, 0xce, 0x79, 0x4c, 0xb9, 0x3c,
0x9d, 0x33, 0x92, 0xf1, 0x82, 0xe0, 0xc8, 0x1b, 0xbc, 0xe6, 0x87, 0xc9, 0x36, 0xf7, 0x8e, 0x19,
0x20, 0x06, 0x46, 0x66, 0xeb, 0x8a, 0xd1, 0x4b, 0x35, 0x47, 0x87, 0xc8, 0x06, 0xb4, 0xd0, 0x72,
0x21, 0x56, 0xb6, 0x83, 0x2b, 0xdb, 0xd5, 0x4d, 0x1b, 0xb8, 0xb6, 0x7a, 0x21, 0x3d, 0x2e, 0x60,
0xa1, 0x10, 0xe5, 0xed, 0x0d, 0x87, 0x22, 0xa4, 0xa2, 0xcb, 0xef, 0x57, 0x2a, 0x00, 0x6d, 0x23,
0x7c, 0xc2, 0x78, 0x81, 0x45, 0x2c, 0x60, 0x60, 0xe4, 0x16, 0xb7, 0x1c, 0x8e, 0x3d, 0x7f, 0x88,
0x01, 0x4b, 0xfc, 0xf8, 0xa9, 0x30, 0x56, 0x87, 0xfc, 0x8d, 0x1b, 0xe7, 0x12, 0xce, 0x8a, 0x81,
0xb1, 0xb9, 0x51, 0xe9, 0x51, 0x16, 0x16, 0x6e, 0x82, 0xe4, 0x43, 0x74, 0x6a, 0xa7, 0x14, 0x63,
0xbf, 0x3b, 0x1b, 0xef, 0x88, 0x31, 0x0b, 0xb2, 0x95, 0x7f, 0x0f, 0x59, 0x11, 0x87, 0x97, 0x64,
0x6a, 0x1b, 0xf7, 0x2b, 0xac, 0x18, 0x6a, 0x9b, 0x28, 0x8a, 0x7e, 0x05, 0x5e, 0xc0, 0xde, 0x84,
0xb6, 0x5e, 0x01, 0x69, 0x40, 0xed, 0xf9, 0xc1, 0xce, 0x7e, 0x77, 0x86, 0xb4, 0x60, 0xee, 0x70,
0xe7, 0xc5, 0x8b, 0xbd, 0x9d, 0xed, 0xae, 0x45, 0xda, 0xd0, 0x50, 0xf1, 0xae, 0x15, 0x96, 0xda,
0xdc, 0xda, 0xda, 0x39, 0x78, 0xb1, 0xb3, 0xdd, 0xad, 0x7e, 0x56, 0x6b, 0x54, 0xba, 0x55, 0xfb,
0x8f, 0xaa, 0xd0, 0xd2, 0xea, 0xbf, 0xc4, 0x66, 0x74, 0x0b, 0x00, 0x4f, 0x14, 0x59, 0x4c, 0x4b,
0xcd, 0xd1, 0x10, 0x26, 0x21, 0xd5, 0x59, 0xbb, 0xca, 0x2f, 0x9b, 0xca, 0x34, 0xce, 0x1a, 0xde,
0xea, 0xd4, 0x9d, 0x38, 0x75, 0xc7, 0x04, 0x19, 0x45, 0x09, 0x00, 0x83, 0x30, 0x39, 0x1f, 0xea,
0x10, 0x5b, 0xa1, 0x98, 0x26, 0x51, 0x70, 0x46, 0x79, 0x11, 0xae, 0x97, 0x19, 0x18, 0x6b, 0x4b,
0x88, 0x1a, 0x2d, 0x40, 0xba, 0xee, 0x98, 0x20, 0xf9, 0xa6, 0x5c, 0xa1, 0x06, 0xae, 0xd0, 0x6a,
0x71, 0xba, 0x8d, 0xd5, 0x79, 0x56, 0x30, 0xfa, 0x34, 0x71, 0x99, 0xbe, 0x5e, 0xfc, 0xee, 0xd7,
0x63, 0xfc, 0x49, 0x81, 0x6c, 0x0e, 0x87, 0xa2, 0x59, 0xfd, 0x2e, 0x6d, 0xac, 0x5f, 0xde, 0x96,
0xb2, 0xad, 0x44, 0x7e, 0x54, 0xca, 0xe5, 0xc7, 0x5b, 0xb9, 0xcc, 0x7e, 0x0a, 0xad, 0x03, 0xed,
0x3a, 0xb8, 0xcd, 0x44, 0xad, 0xbc, 0x08, 0xce, 0x85, 0x30, 0x37, 0xfa, 0x64, 0xa8, 0xd6, 0xa5,
0x8a, 0xde, 0x25, 0xfb, 0x1f, 0x59, 0xfc, 0x86, 0x9d, 0x1a, 0x02, 0x6f, 0xdf, 0x86, 0xb6, 0xf2,
0x1b, 0x64, 0x97, 0x12, 0x0c, 0x8c, 0x95, 0xc1, 0xee, 0xb8, 0xd1, 0xf1, 0x71, 0x42, 0x65, 0xf8,
0xb0, 0x81, 0x49, 0xad, 0x96, 0xe9, 0xc9, 0x3e, 0x6f, 0x21, 0x11, 0x61, 0xc4, 0x05, 0x9c, 0x51,
0xae, 0xb0, 0xdb, 0xca, 0xc0, 0x69, 0x95, 0x56, 0x77, 0x27, 0xf2, 0x33, 0x7d, 0x1f, 0x1a, 0xaa,
0x5e, 0x73, 0xcb, 0x92, 0x25, 0x55, 0x3e, 0xdb, 0x1a, 0xf1, 0xc4, 0x6b, 0x74, 0x9a, 0x33, 0x50,
0x31, 0x83, 0xac, 0x03, 0x39, 0xf6, 0xe3, 0x7c, 0x71, 0xce, 0x51, 0x25, 0x39, 0xf6, 0x2b, 0x58,
0x92, 0xe2, 0x40, 0x53, 0xb7, 0xcd, 0x85, 0xb4, 0x2e, 0x13, 0x97, 0x95, 0xa2, 0xb8, 0xb4, 0xff,
0x75, 0x0d, 0xe6, 0xc4, 0x6a, 0x17, 0x9e, 0x15, 0xe0, 0x1b, 0xae, 0x81, 0x91, 0x9e, 0x71, 0x79,
0x14, 0x09, 0x41, 0x6c, 0xa2, 0xf7, 0xf2, 0xdb, 0x60, 0x66, 0xfc, 0xcb, 0x6d, 0x85, 0x2b, 0x50,
0x1b, 0x7b, 0xe9, 0x29, 0xda, 0x86, 0x38, 0x2d, 0x61, 0x5a, 0x9a, 0x97, 0xeb, 0xa6, 0x79, 0xb9,
0xec, 0x31, 0x05, 0xae, 0xf3, 0x15, 0x1f, 0x53, 0xb8, 0x01, 0x4d, 0xbe, 0x6d, 0x67, 0x16, 0xe4,
0x0c, 0xc8, 0x6d, 0xf3, 0x8d, 0xc2, 0x36, 0x7f, 0xf5, 0x0d, 0xf8, 0xdb, 0x30, 0xcb, 0x2f, 0x14,
0x89, 0x30, 0xf1, 0x1b, 0xd2, 0x41, 0xcc, 0xcb, 0xc9, 0xbf, 0x3c, 0x7e, 0xcc, 0x11, 0x65, 0xf5,
0x2b, 0xc9, 0x2d, 0xf3, 0x4a, 0xb2, 0x6e, 0xf8, 0x6e, 0xe7, 0x0c, 0xdf, 0xf7, 0xa1, 0xab, 0xa6,
0x0f, 0x2d, 0x55, 0x61, 0x22, 0xa2, 0x88, 0x0b, 0x78, 0xb6, 0xbf, 0x74, 0x8c, 0xfd, 0x85, 0x49,
0xac, 0xcd, 0x34, 0xa5, 0xa3, 0x71, 0x2a, 0xf7, 0x97, 0xc7, 0x30, 0x6f, 0x74, 0x92, 0x6d, 0x2b,
0x22, 0x78, 0xbd, 0x3b, 0x43, 0xe6, 0xa1, 0xf9, 0x74, 0xdf, 0x7d, 0xbc, 0xf7, 0xf4, 0xc9, 0xee,
0x8b, 0xae, 0xc5, 0x92, 0x87, 0x2f, 0xb7, 0xb6, 0x76, 0x76, 0xb6, 0x71, 0x9b, 0x01, 0x98, 0x7d,
0xbc, 0xf9, 0x94, 0x6d, 0x39, 0x55, 0xfb, 0xff, 0x5a, 0xd0, 0xd2, 0xaa, 0x27, 0xdf, 0x51, 0x33,
0xc3, 0x6f, 0xad, 0xde, 0x2c, 0x76, 0x61, 0x5d, 0x0a, 0x5e, 0x6d, 0x6a, 0xd4, 0xfb, 0x11, 0x95,
0xa9, 0xef, 0x47, 0xb0, 0xe5, 0xf1, 0x78, 0x0d, 0x6a, 0x1e, 0xf8, 0x31, 0x24, 0x0f, 0xf3, 0x18,
0xa1, 0x6c, 0xb7, 0x60, 0x25, 0xb9, 0xe9, 0x2d, 0x0f, 0xdb, 0x1f, 0x01, 0x64, 0xbd, 0x31, 0x87,
0x3d, 0x63, 0x0e, 0xdb, 0xd2, 0x86, 0x5d, 0xb1, 0xb7, 0xb9, 0xc0, 0x10, 0x53, 0xa8, 0x3c, 0x9c,
0xdf, 0x04, 0x22, 0x2d, 0x3d, 0x18, 0x8b, 0x37, 0x0e, 0x68, 0x2a, 0xaf, 0x93, 0x2c, 0x8a, 0x9c,
0xa7, 0x2a, 0x43, 0xde, 0x88, 0xca, 0x6a, 0xc9, 0xe4, 0x8e, 0xa0, 0xb8, 0xbc, 0xdc, 0x11, 0x45,
0x1d, 0x95, 0x6f, 0xf7, 0xa1, 0xb7, 0x4d, 0x59, 0x6d, 0x9b, 0x41, 0x90, 0xeb, 0x0e, 0x3b, 0xaa,
0x97, 0xe4, 0x89, 0x73, 0xfc, 0x77, 0xe1, 0xda, 0x26, 0xbf, 0x39, 0xf2, 0xab, 0x0a, 0x2c, 0xb6,
0x7b, 0xb0, 0x92, 0xaf, 0x52, 0x34, 0xf6, 0x18, 0x16, 0xb7, 0xe9, 0xd1, 0xe4, 0x64, 0x8f, 0x9e,
0x65, 0x0d, 0x11, 0xa8, 0x25, 0xa7, 0xd1, 0xb9, 0x98, 0x1f, 0xfc, 0x4d, 0x6e, 0x02, 0x04, 0xac,
0x8c, 0x9b, 0x8c, 0xe9, 0x40, 0xde, 0x0a, 0x46, 0xe4, 0x70, 0x4c, 0x07, 0xf6, 0x47, 0x40, 0xf4,
0x7a, 0xc4, 0x7c, 0x31, 0xdd, 0x7a, 0x72, 0xe4, 0x26, 0x17, 0x49, 0x4a, 0x47, 0xf2, 0xba, 0xb3,
0x0e, 0xd9, 0x77, 0xa1, 0x7d, 0xe0, 0x5d, 0x38, 0xf4, 0x27, 0xe2, 0xbd, 0x92, 0x55, 0x98, 0x1b,
0x7b, 0x17, 0x8c, 0x9f, 0x95, 0xf9, 0x1f, 0xb3, 0xed, 0x7f, 0x5e, 0x85, 0x59, 0x5e, 0x92, 0xd5,
0x3a, 0xa4, 0x49, 0xea, 0x87, 0xc8, 0x63, 0xb2, 0x56, 0x0d, 0x2a, 0x08, 0xcc, 0x4a, 0x89, 0xc0,
0x14, 0x36, 0x29, 0x79, 0xbb, 0x52, 0x90, 0xac, 0x81, 0x31, 0xb1, 0x95, 0xdd, 0x10, 0xe0, 0x94,
0x9a, 0x01, 0x39, 0xff, 0x5a, 0xa6, 0xc1, 0xf3, 0xfe, 0xc9, 0xbd, 0x40, 0xc8, 0x44, 0x1d, 0x2a,
0x3d, 0x27, 0xcc, 0xc9, 0x78, 0xec, 0xdc, 0x39, 0xa1, 0x70, 0x1e, 0x68, 0x5c, 0xe1, 0x3c, 0xc0,
0x0d, 0x55, 0x6f, 0x3b, 0x0f, 0xc0, 0x55, 0xce, 0x03, 0x57, 0xf1, 0x6b, 0xf5, 0xa1, 0x81, 0x7b,
0xba, 0x26, 0x22, 0x65, 0xda, 0x26, 0xd0, 0xc5, 0xa7, 0x1f, 0xd8, 0x99, 0x55, 0xd2, 0xfe, 0xdf,
0xb3, 0xa0, 0x2b, 0xa8, 0x50, 0xe5, 0x49, 0x4f, 0xef, 0xdb, 0xee, 0x08, 0xde, 0x86, 0x79, 0x3c,
0x31, 0x2b, 0x79, 0x2c, 0xbc, 0xa6, 0x06, 0xc8, 0xe6, 0x41, 0xc6, 0x9b, 0x8d, 0xfc, 0x40, 0x2c,
0xaa, 0x0e, 0x49, 0x91, 0x1e, 0x7b, 0x22, 0x52, 0xde, 0x72, 0x54, 0xda, 0xfe, 0x63, 0x0b, 0x16,
0xb5, 0x0e, 0x0b, 0x2a, 0xfe, 0x14, 0xda, 0xea, 0x85, 0x15, 0xaa, 0x34, 0x8e, 0x55, 0x93, 0xed,
0xb2, 0xcf, 0x8c, 0xc2, 0x48, 0x0c, 0xde, 0x05, 0x76, 0x30, 0x99, 0x8c, 0xc4, 0x56, 0xaf, 0x43,
0x6c, 0x92, 0xcf, 0x29, 0x7d, 0xad, 0x8a, 0x70, 0x65, 0xc3, 0xc0, 0xd0, 0xd3, 0xc0, 0x4e, 0xfa,
0xaa, 0x50, 0x4d, 0x78, 0x1a, 0x74, 0xd0, 0xfe, 0x2b, 0x15, 0x58, 0xe2, 0xa6, 0x1b, 0x61, 0x32,
0x53, 0x97, 0xdc, 0x67, 0xb9, 0x15, 0x8b, 0x73, 0xf4, 0xee, 0x8c, 0x23, 0xd2, 0xe4, 0x3b, 0x57,
0x34, 0x37, 0xa9, 0x90, 0xfc, 0x29, 0x6b, 0x51, 0x2d, 0x5b, 0x8b, 0xb7, 0xcc, 0x74, 0x99, 0xd3,
0xa7, 0x5e, 0xee, 0xf4, 0xb9, 0x92, 0x93, 0xe5, 0xd1, 0x1c, 0xd4, 0x93, 0x41, 0x34, 0xa6, 0xf6,
0x0a, 0x2c, 0x9b, 0x53, 0x20, 0x04, 0xdd, 0xcf, 0x2d, 0xe8, 0x3d, 0xe6, 0x3e, 0x6d, 0x3f, 0x3c,
0xd9, 0xf5, 0x93, 0x34, 0x8a, 0xd5, 0x8b, 0x21, 0xb7, 0x00, 0x92, 0xd4, 0x8b, 0xc5, 0xd1, 0x87,
0xeb, 0x6b, 0x1a, 0xc2, 0x46, 0x42, 0xc3, 0x21, 0xcf, 0xe5, 0x2b, 0xa8, 0xd2, 0x05, 0x7d, 0x58,
0x98, 0x9f, 0x0c, 0xad, 0xf2, 0x0e, 0xbf, 0xf4, 0xc2, 0xba, 0x4c, 0xcf, 0x70, 0xf7, 0xe0, 0x36,
0x9d, 0x1c, 0x6a, 0xff, 0x7e, 0x05, 0x16, 0xb2, 0x4e, 0x62, 0xb0, 0x95, 0x29, 0x83, 0x84, 0x2a,
0x99, 0xc9, 0x20, 0xe1, 0x2a, 0x72, 0x7d, 0xa6, 0x5b, 0x6a, 0x16, 0x28, 0x0d, 0x25, 0xb7, 0xa1,
0x25, 0x53, 0xd1, 0x24, 0xd5, 0xae, 0xee, 0xeb, 0x30, 0x0f, 0x4d, 0x67, 0xda, 0xad, 0xd0, 0xd4,
0x45, 0x0a, 0xaf, 0x11, 0x8e, 0x52, 0xfc, 0x92, 0xcf, 0xbc, 0x4c, 0xb2, 0x13, 0x13, 0x53, 0x0b,
0xf9, 0x2b, 0x4a, 0xa8, 0x12, 0xea, 0xea, 0x52, 0x43, 0x3d, 0x79, 0xa4, 0x38, 0x93, 0xd7, 0x98,
0xdd, 0x2b, 0xa8, 0x39, 0x3a, 0x24, 0x2d, 0x00, 0xd1, 0x44, 0xf3, 0x8f, 0xd7, 0x1c, 0x03, 0xb3,
0x7f, 0xcf, 0x82, 0xeb, 0x25, 0xcb, 0x28, 0x38, 0x75, 0x1b, 0x16, 0x8f, 0x55, 0xa6, 0x9c, 0x6a,
0xce, 0xae, 0x2b, 0x32, 0xc0, 0xc8, 0x9c, 0x5e, 0xa7, 0xf8, 0x81, 0x3a, 0x31, 0xf0, 0xc5, 0x33,
0xae, 0x91, 0x14, 0x33, 0xec, 0x03, 0xe8, 0xef, 0xbc, 0x61, 0x8c, 0xbf, 0xa5, 0xbf, 0x5f, 0x29,
0x29, 0x6b, 0xa3, 0x20, 0xd8, 0x2e, 0x37, 0x3c, 0x1e, 0xc3, 0xbc, 0x51, 0x17, 0xf9, 0xd6, 0x55,
0x2b, 0xd1, 0x79, 0x74, 0x4d, 0xac, 0x3a, 0x7f, 0x80, 0x53, 0x5e, 0x66, 0xd1, 0x20, 0xfb, 0x0c,
0x16, 0x9e, 0x4d, 0x82, 0xd4, 0xcf, 0x1e, 0xe3, 0x24, 0xdf, 0x11, 0x1f, 0x61, 0x15, 0x72, 0xea,
0x4a, 0x9b, 0xd2, 0xcb, 0xb1, 0x19, 0x1b, 0xb1, 0x9a, 0xdc, 0x62, 0x8b, 0xc5, 0x0c, 0xfb, 0x3a,
0xac, 0x66, 0x4d, 0xf2, 0xb9, 0x93, 0x9b, 0xc3, 0x1f, 0x58, 0x3c, 0x22, 0xd3, 0x7c, 0x1b, 0x94,
0x3c, 0x81, 0xa5, 0xc4, 0x0f, 0x4f, 0x02, 0xaa, 0xd7, 0x93, 0x88, 0x99, 0xb8, 0x66, 0x76, 0x4f,
0xbc, 0x1f, 0xea, 0x94, 0x7d, 0xc1, 0x08, 0xa4, 0xbc, 0xa3, 0x19, 0x81, 0xe4, 0xa6, 0xa4, 0x6c,
0x00, 0x9f, 0x41, 0xc7, 0x6c, 0x8c, 0x7c, 0x2c, 0xee, 0xa0, 0x64, 0x3d, 0xd3, 0x3d, 0x85, 0x26,
0x65, 0x18, 0x25, 0xed, 0x9f, 0x59, 0xd0, 0x73, 0x28, 0x23, 0x63, 0xaa, 0x35, 0x2a, 0xa8, 0xe7,
0xd3, 0x42, 0xb5, 0xd3, 0x07, 0xac, 0xee, 0xb6, 0xc8, 0xb1, 0xae, 0x4f, 0x5d, 0x94, 0xdd, 0x99,
0x92, 0x51, 0x3d, 0x6a, 0xc0, 0xac, 0x18, 0xdf, 0x2a, 0x5c, 0x13, 0x5d, 0x92, 0xdd, 0xc9, 0x5c,
0x4c, 0x46, 0xa3, 0x86, 0x8b, 0xa9, 0x0f, 0x3d, 0xfe, 0x30, 0x8c, 0x3e, 0x0e, 0xf1, 0xe1, 0x36,
0x90, 0x67, 0xde, 0xc0, 0x8b, 0xa3, 0x28, 0x3c, 0xa0, 0xb1, 0x08, 0xa1, 0x43, 0x05, 0x0a, 0x3d,
0x30, 0x52, 0xd7, 0xe3, 0x29, 0xf9, 0x96, 0x49, 0x14, 0xca, 0x37, 0x63, 0x78, 0xca, 0x76, 0x60,
0xe9, 0x91, 0xf7, 0x9a, 0xca, 0x9a, 0xb2, 0x59, 0x6a, 0x8d, 0x55, 0xa5, 0x72, 0xee, 0xe5, 0xf5,
0xb2, 0x62, 0xb3, 0x8e, 0x5e, 0xda, 0xde, 0x80, 0x65, 0xb3, 0x4e, 0x21, 0x4a, 0xfa, 0xd0, 0x18,
0x09, 0x4c, 0xf4, 0x4e, 0xa5, 0xef, 0x7f, 0x09, 0x2d, 0xed, 0xb1, 0x1f, 0xb2, 0x0a, 0x4b, 0xaf,
0x9e, 0xbe, 0xd8, 0xdf, 0x39, 0x3c, 0x74, 0x0f, 0x5e, 0x3e, 0xfa, 0x7c, 0xe7, 0xfb, 0xee, 0xee,
0xe6, 0xe1, 0x6e, 0x77, 0x86, 0xac, 0x00, 0xd9, 0xdf, 0x39, 0x7c, 0xb1, 0xb3, 0x6d, 0xe0, 0x16,
0xb9, 0x05, 0xfd, 0x97, 0xfb, 0x2f, 0x0f, 0x77, 0xb6, 0xdd, 0xb2, 0xef, 0x2a, 0xe4, 0x26, 0x5c,
0x17, 0xf9, 0x25, 0x9f, 0x57, 0xef, 0x7f, 0x0a, 0xdd, 0xbc, 0xa5, 0xcc, 0xb0, 0x30, 0xbe, 0xcd,
0x14, 0xb9, 0xf1, 0xb3, 0x2a, 0x74, 0x78, 0x8c, 0x2c, 0x7f, 0x5d, 0x97, 0xc6, 0xe4, 0x19, 0xcc,
0x89, 0x67, 0x9a, 0x89, 0x24, 0x2d, 0xf3, 0x61, 0xe8, 0xfe, 0x4a, 0x1e, 0x16, 0xcb, 0xba, 0xf4,
0x57, 0xff, 0xc3, 0xff, 0xf8, 0xdb, 0x95, 0x79, 0xd2, 0x7a, 0x70, 0xf6, 0xe1, 0x83, 0x13, 0x1a,
0x26, 0xac, 0x8e, 0xdf, 0x01, 0xc8, 0x1e, 0x1f, 0x26, 0x3d, 0x65, 0x98, 0xc9, 0xbd, 0xcc, 0xdc,
0xbf, 0x5e, 0x92, 0x23, 0xea, 0xbd, 0x8e, 0xf5, 0x2e, 0xd9, 0x1d, 0x56, 0xaf, 0x1f, 0xfa, 0x29,
0x7f, 0x88, 0xf8, 0x13, 0xeb, 0x3e, 0x19, 0x42, 0x5b, 0x7f, 0x16, 0x98, 0x48, 0x8f, 0x61, 0xc9,
0xc3, 0xc6, 0xfd, 0x77, 0x4a, 0xf3, 0x24, 0x2d, 0x63, 0x1b, 0xd7, 0xec, 0x2e, 0x6b, 0x63, 0x82,
0x25, 0xb2, 0x56, 0x02, 0xce, 0xe1, 0xd9, 0xeb, 0xbf, 0xe4, 0x86, 0xc6, 0x74, 0x85, 0xb7, 0x87,
0xfb, 0x37, 0xa7, 0xe4, 0x8a, 0xb6, 0x6e, 0x62, 0x5b, 0xab, 0x36, 0x61, 0x6d, 0x0d, 0xb0, 0x8c,
0x7c, 0x7b, 0xf8, 0x13, 0xeb, 0xfe, 0xc6, 0xbf, 0xbd, 0x0b, 0x4d, 0x15, 0x4d, 0x40, 0x7e, 0x0c,
0xf3, 0x46, 0x10, 0x33, 0x91, 0xc3, 0x28, 0x8b, 0x79, 0xee, 0xdf, 0x28, 0xcf, 0x14, 0x0d, 0xdf,
0xc2, 0x86, 0x7b, 0x64, 0x85, 0x35, 0x2c, 0xa2, 0x80, 0x1f, 0x60, 0x38, 0x3e, 0xbf, 0xfd, 0xfb,
0x5a, 0x93, 0x64, 0xbc, 0xb1, 0x1b, 0x79, 0xe1, 0x62, 0xb4, 0x76, 0x73, 0x4a, 0xae, 0x68, 0xee,
0x06, 0x36, 0xb7, 0x42, 0x96, 0xf5, 0xe6, 0x94, 0x87, 0x9f, 0xe2, 0x95, 0x77, 0xfd, 0x61, 0x5c,
0x72, 0x53, 0x11, 0x56, 0xd9, 0x83, 0xb9, 0x8a, 0x44, 0x8a, 0xaf, 0xe6, 0xda, 0x3d, 0x6c, 0x8a,
0x10, 0x5c, 0x3e, 0xfd, 0x5d, 0x5c, 0x72, 0x04, 0x2d, 0xed, 0xdd, 0x39, 0x72, 0x7d, 0xea, 0x1b,
0x79, 0xfd, 0x7e, 0x59, 0x56, 0xd9, 0x50, 0xf4, 0xfa, 0x1f, 0x30, 0x45, 0xe7, 0x87, 0xd0, 0x54,
0x2f, 0x99, 0x91, 0x55, 0xed, 0x65, 0x39, 0xfd, 0xe5, 0xb5, 0x7e, 0xaf, 0x98, 0x51, 0x46, 0x7c,
0x7a, 0xed, 0x8c, 0xf8, 0x5e, 0x41, 0x4b, 0x7b, 0xad, 0x4c, 0x0d, 0xa0, 0xf8, 0x22, 0x9a, 0x1a,
0x40, 0xc9, 0xe3, 0x66, 0xf6, 0x22, 0x36, 0xd1, 0x22, 0x4d, 0xa4, 0xef, 0xf4, 0x4d, 0x94, 0x90,
0x3d, 0xb8, 0x26, 0x24, 0xf6, 0x11, 0xfd, 0x2a, 0xcb, 0x50, 0xf2, 0x16, 0xf1, 0x43, 0x8b, 0x7c,
0x0a, 0x0d, 0xf9, 0x28, 0x1d, 0x59, 0x29, 0x7f, 0x5c, 0xaf, 0xbf, 0x5a, 0xc0, 0x85, 0x78, 0xfd,
0x3e, 0x40, 0xf6, 0x34, 0x9a, 0x12, 0x12, 0x85, 0xa7, 0xd6, 0x14, 0x05, 0x14, 0xdf, 0x51, 0xb3,
0x57, 0x70, 0x80, 0x5d, 0x82, 0x42, 0x22, 0xa4, 0xe7, 0xf2, 0x75, 0x8b, 0x1f, 0x41, 0x4b, 0x7b,
0x1d, 0x4d, 0x4d, 0x5f, 0xf1, 0x65, 0x35, 0x35, 0x7d, 0x25, 0x8f, 0xa9, 0xd9, 0x7d, 0xac, 0x7d,
0xd9, 0x5e, 0x60, 0xb5, 0x27, 0xfe, 0x49, 0x38, 0xe2, 0x05, 0xd8, 0x02, 0x9d, 0xc2, 0xbc, 0xf1,
0x04, 0x9a, 0xe2, 0xd0, 0xb2, 0x07, 0xd6, 0x14, 0x87, 0x96, 0xbe, 0x9a, 0x26, 0xe9, 0xcc, 0x5e,
0x64, 0xed, 0x9c, 0x61, 0x11, 0xad, 0xa5, 0x1f, 0x40, 0x4b, 0x7b, 0xce, 0x4c, 0x8d, 0xa5, 0xf8,
0x72, 0x9a, 0x1a, 0x4b, 0xd9, 0xeb, 0x67, 0xcb, 0xd8, 0x46, 0xc7, 0x46, 0x52, 0xc0, 0x77, 0x1a,
0x58, 0xdd, 0x3f, 0x86, 0x8e, 0xf9, 0xc0, 0x99, 0xe2, 0xfd, 0xd2, 0xa7, 0xd2, 0x14, 0xef, 0x4f,
0x79, 0x15, 0x4d, 0x90, 0xf4, 0xfd, 0x25, 0xd5, 0xc8, 0x83, 0x2f, 0x44, 0x3c, 0xe2, 0x97, 0xe4,
0xbb, 0x4c, 0xc0, 0x89, 0x87, 0x33, 0xc8, 0xaa, 0x46, 0xb5, 0xfa, 0xf3, 0x1a, 0x8a, 0x5f, 0x0a,
0x6f, 0x6c, 0x98, 0xc4, 0xcc, 0x5f, 0x9a, 0xc0, 0x5d, 0x0b, 0x1f, 0xd0, 0xd0, 0x76, 0x2d, 0xfd,
0x8d, 0x0d, 0x6d, 0xd7, 0x32, 0xde, 0xd9, 0xc8, 0xef, 0x5a, 0xa9, 0xcf, 0xea, 0x08, 0x61, 0x21,
0x77, 0xd1, 0x4a, 0x71, 0x45, 0xf9, 0x5d, 0xd8, 0xfe, 0xad, 0xb7, 0xdf, 0xcf, 0x32, 0x25, 0x88,
0x14, 0x82, 0x0f, 0xe4, 0xcd, 0xe3, 0xdf, 0x85, 0xb6, 0xfe, 0xe8, 0x12, 0xd1, 0x59, 0x39, 0xdf,
0xd2, 0x3b, 0xa5, 0x79, 0xe6, 0xe2, 0x92, 0xb6, 0xde, 0x0c, 0xf9, 0x1e, 0xac, 0x28, 0x56, 0xd7,
0xef, 0xee, 0x24, 0xe4, 0xdd, 0x92, 0x1b, 0x3d, 0xba, 0x1e, 0xd7, 0xbf, 0x3e, 0xf5, 0xca, 0xcf,
0x43, 0x8b, 0x11, 0x8d, 0xf9, 0x92, 0x4d, 0xb6, 0x61, 0x94, 0x3d, 0xe0, 0x93, 0x6d, 0x18, 0xa5,
0xcf, 0xdf, 0x48, 0xa2, 0x21, 0x4b, 0xc6, 0x1c, 0xf1, 0xd0, 0x0d, 0xf2, 0x03, 0x58, 0xd0, 0x6e,
0x47, 0x1e, 0x5e, 0x84, 0x03, 0xc5, 0x00, 0xc5, 0xcb, 0xfb, 0xfd, 0xb2, 0x53, 0x8a, 0xbd, 0x8a,
0xf5, 0x2f, 0xda, 0xc6, 0xe4, 0x30, 0xe2, 0xdf, 0x82, 0x96, 0x7e, 0xf3, 0xf2, 0x2d, 0xf5, 0xae,
0x6a, 0x59, 0xfa, 0xbd, 0xf3, 0x87, 0x16, 0x39, 0xe0, 0x21, 0x7c, 0xea, 0x55, 0xdd, 0x28, 0xce,
0x6f, 0x9f, 0xe6, 0x6b, 0xbb, 0x6a, 0x21, 0xcb, 0xde, 0x59, 0xbe, 0x67, 0x3d, 0xb4, 0xc8, 0xdf,
0xb7, 0xa0, 0x6d, 0xdc, 0x8c, 0x34, 0x02, 0xa2, 0x72, 0x3d, 0xeb, 0xe9, 0x79, 0x7a, 0xd7, 0x6c,
0x07, 0x87, 0xbd, 0x77, 0xff, 0x33, 0x63, 0x5a, 0xbf, 0x30, 0x0c, 0x6a, 0xeb, 0xf9, 0xa7, 0x75,
0xbf, 0xcc, 0x17, 0xd0, 0x9f, 0x4c, 0xf8, 0xf2, 0xa1, 0x45, 0xfe, 0xd0, 0x82, 0x8e, 0x69, 0x46,
0x56, 0xc3, 0x2d, 0x35, 0x58, 0xab, 0xc5, 0x9f, 0x62, 0x7b, 0xfe, 0x01, 0xf6, 0xf2, 0xc5, 0x7d,
0xc7, 0xe8, 0xa5, 0x78, 0x35, 0xe9, 0x97, 0xeb, 0x2d, 0xf9, 0x84, 0xbf, 0x58, 0x2f, 0x3d, 0x68,
0xa4, 0xf8, 0xc2, 0xb9, 0x22, 0x18, 0xfd, 0x1d, 0x71, 0x5c, 0x84, 0x1f, 0xf1, 0x27, 0x65, 0xa5,
0x1b, 0x86, 0xd1, 0xdd, 0x55, 0xbf, 0xb7, 0x6f, 0xe3, 0x98, 0x6e, 0xd9, 0xd7, 0x8d, 0x31, 0xe5,
0x77, 0xf8, 0x4d, 0xde, 0x3b, 0xf1, 0x04, 0x78, 0xb6, 0x45, 0x15, 0x9e, 0x05, 0x9f, 0xde, 0xc9,
0x11, 0xef, 0xa4, 0x28, 0x6e, 0x30, 0xc7, 0x15, 0xab, 0xb1, 0xef, 0x63, 0x5f, 0x6f, 0xdb, 0xef,
0x4e, 0xed, 0xeb, 0x03, 0x34, 0x06, 0xb3, 0x1e, 0x1f, 0x00, 0x64, 0x1e, 0x6f, 0x92, 0xf3, 0xb6,
0x2a, 0x91, 0x51, 0x74, 0x8a, 0x9b, 0x1c, 0x28, 0x9d, 0xb2, 0xac, 0xc6, 0x1f, 0x72, 0x01, 0xf8,
0x54, 0xfa, 0x69, 0x75, 0x35, 0xc7, 0x74, 0x4b, 0x1b, 0x6a, 0x4e, 0xbe, 0x7e, 0x43, 0xfc, 0x29,
0xa7, 0xef, 0x4b, 0x98, 0xdf, 0x8b, 0xa2, 0xd7, 0x93, 0xb1, 0x8a, 0x55, 0x32, 0xfd, 0x34, 0xbb,
0x5e, 0x72, 0xda, 0xcf, 0x8d, 0xc2, 0x5e, 0xc3, 0xaa, 0xfa, 0xa4, 0xa7, 0x55, 0xf5, 0xe0, 0x8b,
0xcc, 0x9b, 0xfe, 0x25, 0xf1, 0x60, 0x51, 0x49, 0x55, 0xd5, 0xf1, 0xbe, 0x59, 0x8d, 0x21, 0x4b,
0xf3, 0x4d, 0x18, 0xfa, 0xb8, 0xec, 0xed, 0x83, 0x44, 0xd6, 0x89, 0x32, 0xa5, 0xbd, 0x4d, 0x07,
0x78, 0x69, 0x0a, 0x9d, 0x1d, 0x4b, 0x59, 0xc7, 0x95, 0x97, 0xa4, 0x3f, 0x6f, 0x80, 0xe6, 0x4e,
0x33, 0xf6, 0x2e, 0x62, 0xfa, 0x93, 0x07, 0x5f, 0x08, 0x37, 0xca, 0x97, 0x72, 0xa7, 0x91, 0x7e,
0x26, 0x63, 0xa7, 0xc9, 0x39, 0xa6, 0x8c, 0x9d, 0xa6, 0xe0, 0x98, 0x32, 0xa6, 0x5a, 0xfa, 0xb9,
0x48, 0x00, 0x8b, 0x05, 0x5f, 0x96, 0xda, 0x64, 0xa6, 0x79, 0xc0, 0xfa, 0x6b, 0xd3, 0x0b, 0x98,
0xad, 0xdd, 0x37, 0x5b, 0x3b, 0x84, 0xf9, 0x6d, 0xca, 0x27, 0x8b, 0x07, 0x67, 0xe7, 0xae, 0xd7,
0xea, 0xa1, 0xdf, 0xf9, 0x2d, 0x01, 0xf3, 0x4c, 0x55, 0x02, 0xa3, 0xa2, 0xc9, 0x0f, 0xa1, 0xf5,
0x84, 0xa6, 0x32, 0x1a, 0x5b, 0x29, 0xb3, 0xb9, 0xf0, 0xec, 0x7e, 0x49, 0x30, 0xb7, 0x49, 0x33,
0x58, 0xdb, 0x03, 0x3a, 0x3c, 0xa1, 0x5c, 0x38, 0xb9, 0xfe, 0xf0, 0x4b, 0xf2, 0x17, 0xb1, 0x72,
0x75, 0x1d, 0x65, 0x45, 0x0b, 0xad, 0xd5, 0x2b, 0x5f, 0xc8, 0xe1, 0x65, 0x35, 0x87, 0xd1, 0x90,
0x6a, 0x4a, 0x55, 0x08, 0x2d, 0xed, 0x3a, 0x9b, 0x62, 0xa0, 0xe2, 0xed, 0x3f, 0xc5, 0x40, 0x25,
0xb7, 0xdf, 0xec, 0x7b, 0xd8, 0x8e, 0x4d, 0xd6, 0xb2, 0x76, 0xf8, 0x8d, 0xb7, 0xac, 0xa5, 0x07,
0x5f, 0x78, 0xa3, 0xf4, 0x4b, 0xf2, 0x0a, 0x5f, 0x31, 0xd3, 0xa3, 0xcd, 0x33, 0xed, 0x3c, 0x1f,
0x98, 0xae, 0x26, 0x4b, 0xcb, 0x32, 0x35, 0x76, 0xde, 0x14, 0xea, 0x5e, 0xdf, 0x01, 0x38, 0x4c,
0xa3, 0xf1, 0xb6, 0x47, 0x47, 0x51, 0x98, 0xc9, 0xda, 0x2c, 0xd6, 0x39, 0x93, 0x5f, 0x5a, 0xc0,
0x33, 0x79, 0xa5, 0x1d, 0x67, 0x8c, 0x80, 0x7d, 0x49, 0x5c, 0x53, 0xc3, 0xa1, 0xd5, 0x84, 0x94,
0x84, 0x44, 0x3f, 0xb4, 0xc8, 0x26, 0x40, 0xe6, 0xcc, 0x54, 0x87, 0x93, 0x82, 0x9f, 0x54, 0x89,
0xbd, 0x12, 0xcf, 0xe7, 0x01, 0x34, 0x33, 0xef, 0xd6, 0x6a, 0x76, 0xb9, 0xd5, 0xf0, 0x85, 0xa9,
0x1d, 0xbc, 0xe0, 0x73, 0xb2, 0xbb, 0x38, 0x55, 0x40, 0x1a, 0x6c, 0xaa, 0xd0, 0x91, 0xe4, 0xc3,
0x12, 0xef, 0xa0, 0x52, 0x70, 0x30, 0x46, 0x57, 0x8e, 0xa4, 0xc4, 0xef, 0xa3, 0xb8, 0xb9, 0xd4,
0x21, 0x62, 0xd8, 0x58, 0x18, 0xb5, 0xf2, 0xf8, 0x60, 0x26, 0x9a, 0x47, 0xb0, 0x58, 0xb0, 0xb1,
0x2b, 0x96, 0x9e, 0xe6, 0x44, 0x51, 0x2c, 0x3d, 0xd5, 0x3c, 0x6f, 0x5f, 0xc3, 0x26, 0x17, 0x6c,
0xc0, 0x33, 0xd5, 0xb9, 0x9f, 0x0e, 0x4e, 0x59, 0x73, 0x7f, 0x60, 0xc1, 0x52, 0x89, 0x09, 0x9d,
0xbc, 0x27, 0x8f, 0xe7, 0x53, 0xcd, 0xeb, 0xfd, 0x52, 0x0b, 0xab, 0x7d, 0x88, 0xed, 0x3c, 0x23,
0x9f, 0x1b, 0x1b, 0x1b, 0x37, 0x6e, 0x0a, 0xce, 0x7c, 0xab, 0x52, 0x51, 0xaa, 0x51, 0xfc, 0x04,
0x56, 0x79, 0x47, 0x36, 0x83, 0x20, 0x67, 0xfd, 0xbd, 0x55, 0xf8, 0xaf, 0x56, 0x86, 0x55, 0xbb,
0x3f, 0xfd, 0xbf, 0x5e, 0x4d, 0x51, 0x80, 0x79, 0x57, 0xc9, 0x04, 0xba, 0x79, 0x8b, 0x2a, 0x99,
0x5e, 0x57, 0xff, 0x5d, 0xe3, 0xa0, 0x59, 0x62, 0x85, 0xfd, 0x3a, 0x36, 0xf6, 0xae, 0xdd, 0x2f,
0x9b, 0x17, 0x7e, 0xf6, 0x64, 0xeb, 0xf1, 0x97, 0x95, 0xf9, 0x37, 0x37, 0x4e, 0xd9, 0xc0, 0x34,
0x7b, 0xb5, 0x3a, 0xea, 0x96, 0x5b, 0x8f, 0xef, 0x60, 0xf3, 0x6b, 0xf6, 0x3b, 0x65, 0xcd, 0xc7,
0xfc, 0x13, 0x7e, 0xe8, 0x5d, 0xcd, 0xf3, 0xb5, 0xec, 0xc1, 0x5a, 0xd9, 0x7a, 0x4f, 0x3d, 0xbd,
0xe4, 0xe6, 0x7a, 0x06, 0x75, 0xbb, 0xb6, 0x6e, 0xee, 0x55, 0xec, 0x53, 0x62, 0x57, 0x56, 0xec,
0x53, 0x66, 0x1f, 0x36, 0xf5, 0x1a, 0x69, 0x19, 0xfe, 0xc4, 0xba, 0xff, 0xe8, 0xee, 0x0f, 0xbe,
0x7e, 0xe2, 0xa7, 0xa7, 0x93, 0xa3, 0xf5, 0x41, 0x34, 0x7a, 0x10, 0x48, 0xb3, 0x9e, 0xb8, 0xb7,
0xf2, 0x20, 0x08, 0x87, 0x0f, 0xb0, 0xda, 0xa3, 0x59, 0xfc, 0x37, 0x7c, 0xdf, 0xfa, 0xff, 0x01,
0x00, 0x00, 0xff, 0xff, 0x20, 0x48, 0xd9, 0x84, 0xb8, 0x6f, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.

@ -1557,6 +1557,14 @@ message CloseChannelRequest {
/// A manual fee rate set in sat/byte that should be used when crafting the closure transaction.
int64 sat_per_byte = 4;
/*
An optional address to send funds to in the case of a cooperative close.
If the channel was opened with an upfront shutdown script and this field
is set, the request to close will fail because the channel must pay out
to the upfront shutdown addresss.
*/
string delivery_address = 5 [json_name = "delivery_address"];
}
message CloseStatusUpdate {

@ -494,6 +494,13 @@
"required": false,
"type": "string",
"format": "int64"
},
{
"name": "delivery_address",
"description": "An optional address to send funds to in the case of a cooperative close.\nIf the channel was opened with an upfront shutdown script and this field\nis set, the request to close will fail because the channel must pay out\nto the upfront shutdown addresss.",
"in": "query",
"required": false,
"type": "string"
}
],
"tags": [

56
peer.go

@ -2122,6 +2122,37 @@ func (p *peer) fetchActiveChanCloser(chanID lnwire.ChannelID) (*channelCloser, e
return chanCloser, nil
}
// chooseDeliveryScript takes two optionally set shutdown scripts and returns
// a suitable script to close out to. This may be nil if neither script is
// set. If both scripts are set, this function will error if they do not match.
func chooseDeliveryScript(upfront,
requested lnwire.DeliveryAddress) (lnwire.DeliveryAddress, error) {
// If no upfront upfront shutdown script was provided, return the user
// requested address (which may be nil).
if len(upfront) == 0 {
return requested, nil
}
// If an upfront shutdown script was provided, and the user did not request
// a custom shutdown script, return the upfront address.
if len(requested) == 0 {
return upfront, nil
}
// If both an upfront shutdown script and a custom close script were
// provided, error if the user provided shutdown script does not match
// the upfront shutdown script (because closing out to a different script
// would violate upfront shutdown).
if !bytes.Equal(upfront, requested) {
return nil, errUpfrontShutdownScriptMismatch
}
// The user requested script matches the upfront shutdown script, so we
// can return it without error.
return upfront, nil
}
// handleLocalCloseReq kicks-off the workflow to execute a cooperative or
// forced unilateral closure of the channel initiated by a local subsystem.
func (p *peer) handleLocalCloseReq(req *htlcswitch.ChanClose) {
@ -2144,13 +2175,26 @@ func (p *peer) handleLocalCloseReq(req *htlcswitch.ChanClose) {
// out this channel on-chain, so we execute the cooperative channel
// closure workflow.
case htlcswitch.CloseRegular:
// First, we'll fetch a delivery script that we'll use to send the
// funds to in the case of a successful negotiation. If an upfront
// shutdown script was set, we will use it. Otherwise, we get a fresh
// delivery script.
deliveryScript := channel.LocalUpfrontShutdownScript()
// First, we'll choose a delivery address that we'll use to send the
// funds to in the case of a successful negotiation.
// An upfront shutdown and user provided script are both optional,
// but must be equal if both set (because we cannot serve a request
// to close out to a script which violates upfront shutdown). Get the
// appropriate address to close out to (which may be nil if neither
// are set) and error if they are both set and do not match.
deliveryScript, err := chooseDeliveryScript(
channel.LocalUpfrontShutdownScript(), req.DeliveryScript,
)
if err != nil {
peerLog.Errorf("cannot close channel %v: %v", req.ChanPoint, err)
req.Err <- err
return
}
// If neither an upfront address or a user set address was
// provided, generate a fresh script.
if len(deliveryScript) == 0 {
var err error
deliveryScript, err = p.genDeliveryScript()
if err != nil {
peerLog.Errorf(err.Error())

@ -3,17 +3,32 @@
package lnd
import (
"bytes"
"testing"
"time"
"github.com/btcsuite/btcd/txscript"
"github.com/btcsuite/btcd/wire"
"github.com/btcsuite/btcutil"
"github.com/lightningnetwork/lnd/chainntnfs"
"github.com/lightningnetwork/lnd/channeldb"
"github.com/lightningnetwork/lnd/htlcswitch"
"github.com/lightningnetwork/lnd/lnwallet/chainfee"
"github.com/lightningnetwork/lnd/lnwire"
)
var (
// p2SHAddress is a valid pay to script hash address.
p2SHAddress = "2NBFNJTktNa7GZusGbDbGKRZTxdK9VVez3n"
// p2wshAddress is a valid pay to witness script hash address.
p2wshAddress = "bc1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3qccfmv3"
// timeout is a timeout value to use for tests which need ot wait for
// a return value on a channel.
timeout = time.Second * 5
)
// TestPeerChannelClosureAcceptFeeResponder tests the shutdown responder's
// behavior if we can agree on the fee immediately.
func TestPeerChannelClosureAcceptFeeResponder(t *testing.T) {
@ -25,7 +40,8 @@ func TestPeerChannelClosureAcceptFeeResponder(t *testing.T) {
broadcastTxChan := make(chan *wire.MsgTx)
responder, responderChan, initiatorChan, cleanUp, err := createTestPeer(
notifier, broadcastTxChan)
notifier, broadcastTxChan, noUpdate,
)
if err != nil {
t.Fatalf("unable to create test channels: %v", err)
}
@ -45,7 +61,7 @@ func TestPeerChannelClosureAcceptFeeResponder(t *testing.T) {
select {
case outMsg := <-responder.outgoingQueue:
msg = outMsg.msg
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("did not receive shutdown message")
}
@ -61,7 +77,7 @@ func TestPeerChannelClosureAcceptFeeResponder(t *testing.T) {
select {
case outMsg := <-responder.outgoingQueue:
msg = outMsg.msg
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("did not receive ClosingSigned message")
}
@ -94,7 +110,7 @@ func TestPeerChannelClosureAcceptFeeResponder(t *testing.T) {
// the closing transaction.
select {
case <-broadcastTxChan:
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("closing tx not broadcast")
}
@ -113,7 +129,8 @@ func TestPeerChannelClosureAcceptFeeInitiator(t *testing.T) {
broadcastTxChan := make(chan *wire.MsgTx)
initiator, initiatorChan, responderChan, cleanUp, err := createTestPeer(
notifier, broadcastTxChan)
notifier, broadcastTxChan, noUpdate,
)
if err != nil {
t.Fatalf("unable to create test channels: %v", err)
}
@ -136,7 +153,7 @@ func TestPeerChannelClosureAcceptFeeInitiator(t *testing.T) {
select {
case outMsg := <-initiator.outgoingQueue:
msg = outMsg.msg
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("did not receive shutdown request")
}
@ -184,7 +201,7 @@ func TestPeerChannelClosureAcceptFeeInitiator(t *testing.T) {
select {
case outMsg := <-initiator.outgoingQueue:
msg = outMsg.msg
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("did not receive closing signed message")
}
@ -202,7 +219,7 @@ func TestPeerChannelClosureAcceptFeeInitiator(t *testing.T) {
// the closing transaction.
select {
case <-broadcastTxChan:
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("closing tx not broadcast")
}
@ -222,7 +239,7 @@ func TestPeerChannelClosureFeeNegotiationsResponder(t *testing.T) {
broadcastTxChan := make(chan *wire.MsgTx)
responder, responderChan, initiatorChan, cleanUp, err := createTestPeer(
notifier, broadcastTxChan,
notifier, broadcastTxChan, noUpdate,
)
if err != nil {
t.Fatalf("unable to create test channels: %v", err)
@ -244,7 +261,7 @@ func TestPeerChannelClosureFeeNegotiationsResponder(t *testing.T) {
select {
case outMsg := <-responder.outgoingQueue:
msg = outMsg.msg
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("did not receive shutdown message")
}
@ -260,7 +277,7 @@ func TestPeerChannelClosureFeeNegotiationsResponder(t *testing.T) {
select {
case outMsg := <-responder.outgoingQueue:
msg = outMsg.msg
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("did not receive closing signed message")
}
@ -296,7 +313,7 @@ func TestPeerChannelClosureFeeNegotiationsResponder(t *testing.T) {
select {
case outMsg := <-responder.outgoingQueue:
msg = outMsg.msg
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("did not receive closing signed message")
}
@ -338,7 +355,7 @@ func TestPeerChannelClosureFeeNegotiationsResponder(t *testing.T) {
select {
case outMsg := <-responder.outgoingQueue:
msg = outMsg.msg
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("did not receive closing signed message")
}
@ -382,7 +399,7 @@ func TestPeerChannelClosureFeeNegotiationsResponder(t *testing.T) {
// the closing transaction.
select {
case <-broadcastTxChan:
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("closing tx not broadcast")
}
@ -402,7 +419,8 @@ func TestPeerChannelClosureFeeNegotiationsInitiator(t *testing.T) {
broadcastTxChan := make(chan *wire.MsgTx)
initiator, initiatorChan, responderChan, cleanUp, err := createTestPeer(
notifier, broadcastTxChan)
notifier, broadcastTxChan, noUpdate,
)
if err != nil {
t.Fatalf("unable to create test channels: %v", err)
}
@ -426,7 +444,7 @@ func TestPeerChannelClosureFeeNegotiationsInitiator(t *testing.T) {
select {
case outMsg := <-initiator.outgoingQueue:
msg = outMsg.msg
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("did not receive shutdown request")
}
@ -477,7 +495,7 @@ func TestPeerChannelClosureFeeNegotiationsInitiator(t *testing.T) {
select {
case outMsg := <-initiator.outgoingQueue:
msg = outMsg.msg
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("did not receive closing signed")
}
closingSignedMsg, ok := msg.(*lnwire.ClosingSigned)
@ -495,7 +513,7 @@ func TestPeerChannelClosureFeeNegotiationsInitiator(t *testing.T) {
select {
case outMsg := <-initiator.outgoingQueue:
msg = outMsg.msg
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("did not receive closing signed")
}
closingSignedMsg, ok = msg.(*lnwire.ClosingSigned)
@ -541,7 +559,7 @@ func TestPeerChannelClosureFeeNegotiationsInitiator(t *testing.T) {
select {
case outMsg := <-initiator.outgoingQueue:
msg = outMsg.msg
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("did not receive closing signed")
}
@ -584,7 +602,233 @@ func TestPeerChannelClosureFeeNegotiationsInitiator(t *testing.T) {
// Wait for closing tx to be broadcasted.
select {
case <-broadcastTxChan:
case <-time.After(time.Second * 5):
case <-time.After(timeout):
t.Fatalf("closing tx not broadcast")
}
}
// TestChooseDeliveryScript tests that chooseDeliveryScript correctly errors
// when upfront and user set scripts that do not match are provided, allows
// matching values and returns appropriate values in the case where one or none
// are set.
func TestChooseDeliveryScript(t *testing.T) {
// generate non-zero scripts for testing.
script1 := genScript(t, p2SHAddress)
script2 := genScript(t, p2wshAddress)
tests := []struct {
name string
userScript lnwire.DeliveryAddress
shutdownScript lnwire.DeliveryAddress
expectedScript lnwire.DeliveryAddress
expectedError error
}{
{
name: "Neither set",
userScript: nil,
shutdownScript: nil,
expectedScript: nil,
expectedError: nil,
},
{
name: "Both set and equal",
userScript: script1,
shutdownScript: script1,
expectedScript: script1,
expectedError: nil,
},
{
name: "Both set and not equal",
userScript: script1,
shutdownScript: script2,
expectedScript: nil,
expectedError: errUpfrontShutdownScriptMismatch,
},
{
name: "Only upfront script",
userScript: nil,
shutdownScript: script1,
expectedScript: script1,
expectedError: nil,
},
{
name: "Only user script",
userScript: script2,
shutdownScript: nil,
expectedScript: script2,
expectedError: nil,
},
}
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
script, err := chooseDeliveryScript(
test.shutdownScript, test.userScript,
)
if err != test.expectedError {
t.Fatalf("Expected: %v, got: %v", test.expectedError, err)
}
if !bytes.Equal(script, test.expectedScript) {
t.Fatalf("Expected: %x, got: %x", test.expectedScript, script)
}
})
}
}
// TestCustomShutdownScript tests that the delivery script of a shutdown
// message can be set to a specified address. It checks that setting a close
// script fails for channels which have an upfront shutdown script already set.
func TestCustomShutdownScript(t *testing.T) {
script := genScript(t, p2SHAddress)
// setShutdown is a function which sets the upfront shutdown address for
// the local channel.
setShutdown := func(a, b *channeldb.OpenChannel) {
a.LocalShutdownScript = script
b.RemoteShutdownScript = script
}
tests := []struct {
name string
// update is a function used to set values on the channel set up for the
// test. It is used to set values for upfront shutdown addresses.
update func(a, b *channeldb.OpenChannel)
// userCloseScript is the address specified by the user.
userCloseScript lnwire.DeliveryAddress
// expectedScript is the address we expect to be set on the shutdown
// message.
expectedScript lnwire.DeliveryAddress
// expectedError is the error we expect, if any.
expectedError error
}{
{
name: "User set script",
update: noUpdate,
userCloseScript: script,
expectedScript: script,
},
{
name: "No user set script",
update: noUpdate,
},
{
name: "Shutdown set, no user script",
update: setShutdown,
expectedScript: script,
},
{
name: "Shutdown set, user script matches",
update: setShutdown,
userCloseScript: script,
expectedScript: script,
},
{
name: "Shutdown set, user script different",
update: setShutdown,
userCloseScript: []byte("different addr"),
expectedError: errUpfrontShutdownScriptMismatch,
},
}
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
notifier := &mockNotfier{
confChannel: make(chan *chainntnfs.TxConfirmation),
}
broadcastTxChan := make(chan *wire.MsgTx)
// Open a channel.
initiator, initiatorChan, _, cleanUp, err := createTestPeer(
notifier, broadcastTxChan, test.update,
)
if err != nil {
t.Fatalf("unable to create test channels: %v", err)
}
defer cleanUp()
// Request initiator to cooperatively close the channel, with
// a specified delivery address.
updateChan := make(chan interface{}, 1)
errChan := make(chan error, 1)
chanPoint := initiatorChan.ChannelPoint()
closeCommand := htlcswitch.ChanClose{
CloseType: htlcswitch.CloseRegular,
ChanPoint: chanPoint,
Updates: updateChan,
TargetFeePerKw: 12500,
DeliveryScript: test.userCloseScript,
Err: errChan,
}
// Send the close command for the correct channel and check that a
// shutdown message is sent.
initiator.localCloseChanReqs <- &closeCommand
var msg lnwire.Message
select {
case outMsg := <-initiator.outgoingQueue:
msg = outMsg.msg
case <-time.After(timeout):
t.Fatalf("did not receive shutdown message")
case err := <-errChan:
// Fail if we do not expect an error.
if err != test.expectedError {
t.Fatalf("error closing channel: %v", err)
}
// Terminate the test early if have received an error, no
// further action is expected.
return
}
// Check that we have received a shutdown message.
shutdownMsg, ok := msg.(*lnwire.Shutdown)
if !ok {
t.Fatalf("expected shutdown message, got %T", msg)
}
// If the test has not specified an expected address, do not check
// whether the shutdown address matches. This covers the case where
// we epect shutdown to a random address and cannot match it.
if len(test.expectedScript) == 0 {
return
}
// Check that the Shutdown message includes the expected delivery
// script.
if !bytes.Equal(test.expectedScript, shutdownMsg.Address) {
t.Fatalf("expected delivery script: %x, got: %x",
test.expectedScript, shutdownMsg.Address)
}
})
}
}
// genScript creates a script paying out to the address provided, which must
// be a valid address.
func genScript(t *testing.T, address string) lnwire.DeliveryAddress {
// Generate an address which can be used for testing.
deliveryAddr, err := btcutil.DecodeAddress(
address,
activeNetParams.Params,
)
if err != nil {
t.Fatalf("invalid delivery address: %v", err)
}
script, err := txscript.PayToAddrScript(deliveryAddr)
if err != nil {
t.Fatalf("cannot create script: %v", err)
}
return script
}

@ -1881,8 +1881,28 @@ func (r *rpcServer) CloseChannel(in *lnrpc.CloseChannelRequest,
// cooperative channel closure. So we'll forward the request to
// the htlc switch which will handle the negotiation and
// broadcast details.
var deliveryScript lnwire.DeliveryAddress
// If a delivery address to close out to was specified, decode it.
if len(in.DeliveryAddress) > 0 {
// Decode the address provided.
addr, err := btcutil.DecodeAddress(
in.DeliveryAddress, activeNetParams.Params,
)
if err != nil {
return fmt.Errorf("invalid delivery address: %v", err)
}
// Create a script to pay out to the address provided.
deliveryScript, err = txscript.PayToAddrScript(addr)
if err != nil {
return err
}
}
updateChan, errChan = r.server.htlcSwitch.CloseLink(
chanPoint, htlcswitch.CloseRegular, feeRate,
chanPoint, htlcswitch.CloseRegular, feeRate, deliveryScript,
)
}
out:

@ -824,7 +824,11 @@ func newServer(listenAddrs []net.Addr, chanDB *channeldb.DB,
closureType htlcswitch.ChannelCloseType) {
// TODO(conner): Properly respect the update and error channels
// returned by CloseLink.
s.htlcSwitch.CloseLink(chanPoint, closureType, 0)
// Instruct the switch to close the channel. Provide no close out
// delivery script or target fee per kw because user input is not
// available when the remote peer closes the channel.
s.htlcSwitch.CloseLink(chanPoint, closureType, 0, nil)
}
// We will use the following channel to reliably hand off contract

@ -90,10 +90,16 @@ var (
}
)
// noUpdate is a function which can be used as a parameter in createTestPeer to
// call the setup code with no custom values on the channels set up.
var noUpdate = func(a, b *channeldb.OpenChannel) {}
// createTestPeer creates a channel between two nodes, and returns a peer for
// one of the nodes, together with the channel seen from both nodes.
func createTestPeer(notifier chainntnfs.ChainNotifier,
publTx chan *wire.MsgTx) (*peer, *lnwallet.LightningChannel,
// one of the nodes, together with the channel seen from both nodes. It takes
// an updateChan function which can be used to modify the default values on
// the channel states for each peer.
func createTestPeer(notifier chainntnfs.ChainNotifier, publTx chan *wire.MsgTx,
updateChan func(a, b *channeldb.OpenChannel)) (*peer, *lnwallet.LightningChannel,
*lnwallet.LightningChannel, func(), error) {
aliceKeyPriv, aliceKeyPub := btcec.PrivKeyFromBytes(btcec.S256(),
@ -285,6 +291,9 @@ func createTestPeer(notifier chainntnfs.ChainNotifier,
Packager: channeldb.NewChannelPackager(shortChanID),
}
// Set custom values on the channel states.
updateChan(aliceChannelState, bobChannelState)
aliceAddr := &net.TCPAddr{
IP: net.ParseIP("127.0.0.1"),
Port: 18555,