CLI: Send/wait for TriggerAction group

This commit is contained in:
MaMe82 2018-10-26 15:09:55 +02:00
parent cdf8a0dbce
commit d50c854419
7 changed files with 590 additions and 305 deletions

97
cli_client/cmd_trigger.go Normal file
View File

@ -0,0 +1,97 @@
package cli_client
import (
"fmt"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"os"
)
const (
templateFlagTriggerGroupName = "group-name"
templateFlagTriggerGroupValue = "group-value"
)
var (
// deploy
tmpTriggerGroupName = ""
tmpTriggerGroupValue = int32(0)
)
func TriggerCheckFlags(cmd *cobra.Command) {
valDefined,nameDefined := false,false
cmd.Flags().Visit(func(flag *pflag.Flag) {
if flag.Name == templateFlagTriggerGroupName {
nameDefined = true
}
if flag.Name == templateFlagTriggerGroupValue {
valDefined = true
}
})
check := true
if !nameDefined {
fmt.Printf("The '%s' flag has to be set\n", templateFlagTriggerGroupName)
check = false
}
if !valDefined {
fmt.Printf("The '%s' flag has to be set\n", templateFlagTriggerGroupValue)
check = false
}
if !check {
os.Exit(-1)
}
}
func init() {
cmdTrigger := &cobra.Command{
Use: "trigger",
Short: "Fire a group send action or wait for a group receive trigger",
}
cmdTriggerSend := &cobra.Command{
Use: "send",
Short: "Fire a group send action",
Run: func(cmd *cobra.Command, args []string) {
TriggerCheckFlags(cmd)
fmt.Printf("Sending value %d to group '%s'...", tmpTriggerGroupValue, tmpTriggerGroupName)
err := ClientTriggerGroupSend(StrRemoteHost,StrRemotePort,tmpTriggerGroupName,tmpTriggerGroupValue)
if err != nil {
fmt.Println("error: ", err)
os.Exit(-1)
}
fmt.Println("success")
},
}
cmdTriggerWait := &cobra.Command{
Use: "wait",
Short: "wait for a group receive trigger",
Long: ``,
Run: func(cmd *cobra.Command, args []string) {
TriggerCheckFlags(cmd)
fmt.Printf("Waiting for value %d on group '%s'...", tmpTriggerGroupValue, tmpTriggerGroupName)
err := ClientTriggerGroupWait(StrRemoteHost,StrRemotePort,tmpTriggerGroupName,tmpTriggerGroupValue)
if err != nil {
fmt.Println("error: ", err)
os.Exit(-1)
}
fmt.Println("received")
},
}
rootCmd.AddCommand(cmdTrigger)
cmdTrigger.AddCommand(cmdTriggerSend, cmdTriggerWait)
cmdTriggerSend.Flags().StringVarP(&tmpTriggerGroupName, templateFlagTriggerGroupName, "n", "","Name of the group to send to")
cmdTriggerSend.Flags().Int32VarP(&tmpTriggerGroupValue, templateFlagTriggerGroupValue, "v", 0,"The value to send")
cmdTriggerWait.Flags().StringVarP(&tmpTriggerGroupName, templateFlagTriggerGroupName, "n", "","Name of the group to listen")
cmdTriggerWait.Flags().Int32VarP(&tmpTriggerGroupValue, templateFlagTriggerGroupValue, "v", 0,"The value to wait for")
}

View File

@ -38,6 +38,35 @@ func ClientConnectServer(rpcHost string, rpcPort string) (
return
}
func ClientTriggerGroupWait(host string, port string, groupname string, value int32) (err error) {
address := host + ":" + port
connection, err := grpc.Dial(address, grpc.WithInsecure())
if err != nil { return errors.New(fmt.Sprintf("Could not connect to P4wnP1 RPC server: %v", err)) }
defer connection.Close()
rpcClient := pb.NewP4WNP1Client(connection)
ctx := context.Background()
_,err = rpcClient.WaitTriggerGroupReceive(ctx, &pb.TriggerGroupReceive{GroupName: groupname, Value: value})
return
}
func ClientTriggerGroupSend(host string, port string, groupname string, value int32) (err error) {
address := host + ":" + port
connection, err := grpc.Dial(address, grpc.WithInsecure())
if err != nil { return errors.New(fmt.Sprintf("Could not connect to P4wnP1 RPC server: %v", err)) }
defer connection.Close()
rpcClient := pb.NewP4WNP1Client(connection)
ctx := context.Background()
ctx,cancel := context.WithTimeout(ctx,TIMEOUT_SHORT)
defer cancel()
_,err = rpcClient.FireActionGroupSend(ctx, &pb.ActionGroupSend{GroupName: groupname, Value: value})
return
}
func ClientCreateTempDir(host string, port string, dir string, prefix string) (resultPath string, err error) {
return clientCreateTempDirOfFile(host,port,dir,prefix,true)
}

View File

@ -6362,6 +6362,9 @@ type P4WNP1Client interface {
DeployStoredTriggerActionSetReplace(ctx context.Context, in *StringMessage, opts ...grpcweb.CallOption) (*TriggerActionSet, error)
DeployStoredTriggerActionSetAdd(ctx context.Context, in *StringMessage, opts ...grpcweb.CallOption) (*TriggerActionSet, error)
DeleteStoredTriggerActionSet(ctx context.Context, in *StringMessage, opts ...grpcweb.CallOption) (*Empty, error)
// TriggerAction for cli (trigger group send and wait for group receive)
WaitTriggerGroupReceive(ctx context.Context, in *TriggerGroupReceive, opts ...grpcweb.CallOption) (*Empty, error)
FireActionGroupSend(ctx context.Context, in *ActionGroupSend, opts ...grpcweb.CallOption) (*Empty, error)
// DB backup&restore
DBBackup(ctx context.Context, in *StringMessage, opts ...grpcweb.CallOption) (*Empty, error)
DBRestore(ctx context.Context, in *StringMessage, opts ...grpcweb.CallOption) (*Empty, error)
@ -6980,6 +6983,24 @@ func (c *p4WNP1Client) DeleteStoredTriggerActionSet(ctx context.Context, in *Str
return new(Empty).Unmarshal(resp)
}
func (c *p4WNP1Client) WaitTriggerGroupReceive(ctx context.Context, in *TriggerGroupReceive, opts ...grpcweb.CallOption) (*Empty, error) {
resp, err := c.client.RPCCall(ctx, "WaitTriggerGroupReceive", in.Marshal(), opts...)
if err != nil {
return nil, err
}
return new(Empty).Unmarshal(resp)
}
func (c *p4WNP1Client) FireActionGroupSend(ctx context.Context, in *ActionGroupSend, opts ...grpcweb.CallOption) (*Empty, error) {
resp, err := c.client.RPCCall(ctx, "FireActionGroupSend", in.Marshal(), opts...)
if err != nil {
return nil, err
}
return new(Empty).Unmarshal(resp)
}
func (c *p4WNP1Client) DBBackup(ctx context.Context, in *StringMessage, opts ...grpcweb.CallOption) (*Empty, error) {
resp, err := c.client.RPCCall(ctx, "DBBackup", in.Marshal(), opts...)
if err != nil {

View File

@ -3072,6 +3072,9 @@ type P4WNP1Client interface {
DeployStoredTriggerActionSetReplace(ctx context.Context, in *StringMessage, opts ...grpc.CallOption) (*TriggerActionSet, error)
DeployStoredTriggerActionSetAdd(ctx context.Context, in *StringMessage, opts ...grpc.CallOption) (*TriggerActionSet, error)
DeleteStoredTriggerActionSet(ctx context.Context, in *StringMessage, opts ...grpc.CallOption) (*Empty, error)
// TriggerAction for cli (trigger group send and wait for group receive)
WaitTriggerGroupReceive(ctx context.Context, in *TriggerGroupReceive, opts ...grpc.CallOption) (*Empty, error)
FireActionGroupSend(ctx context.Context, in *ActionGroupSend, opts ...grpc.CallOption) (*Empty, error)
// DB backup&restore
DBBackup(ctx context.Context, in *StringMessage, opts ...grpc.CallOption) (*Empty, error)
DBRestore(ctx context.Context, in *StringMessage, opts ...grpc.CallOption) (*Empty, error)
@ -3687,6 +3690,24 @@ func (c *p4WNP1Client) DeleteStoredTriggerActionSet(ctx context.Context, in *Str
return out, nil
}
func (c *p4WNP1Client) WaitTriggerGroupReceive(ctx context.Context, in *TriggerGroupReceive, opts ...grpc.CallOption) (*Empty, error) {
out := new(Empty)
err := grpc.Invoke(ctx, "/P4wnP1_grpc.P4WNP1/WaitTriggerGroupReceive", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *p4WNP1Client) FireActionGroupSend(ctx context.Context, in *ActionGroupSend, opts ...grpc.CallOption) (*Empty, error) {
out := new(Empty)
err := grpc.Invoke(ctx, "/P4wnP1_grpc.P4WNP1/FireActionGroupSend", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *p4WNP1Client) DBBackup(ctx context.Context, in *StringMessage, opts ...grpc.CallOption) (*Empty, error) {
out := new(Empty)
err := grpc.Invoke(ctx, "/P4wnP1_grpc.P4WNP1/DBBackup", in, out, c.cc, opts...)
@ -3808,6 +3829,9 @@ type P4WNP1Server interface {
DeployStoredTriggerActionSetReplace(context.Context, *StringMessage) (*TriggerActionSet, error)
DeployStoredTriggerActionSetAdd(context.Context, *StringMessage) (*TriggerActionSet, error)
DeleteStoredTriggerActionSet(context.Context, *StringMessage) (*Empty, error)
// TriggerAction for cli (trigger group send and wait for group receive)
WaitTriggerGroupReceive(context.Context, *TriggerGroupReceive) (*Empty, error)
FireActionGroupSend(context.Context, *ActionGroupSend) (*Empty, error)
// DB backup&restore
DBBackup(context.Context, *StringMessage) (*Empty, error)
DBRestore(context.Context, *StringMessage) (*Empty, error)
@ -4975,6 +4999,42 @@ func _P4WNP1_DeleteStoredTriggerActionSet_Handler(srv interface{}, ctx context.C
return interceptor(ctx, in, info, handler)
}
func _P4WNP1_WaitTriggerGroupReceive_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(TriggerGroupReceive)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(P4WNP1Server).WaitTriggerGroupReceive(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/P4wnP1_grpc.P4WNP1/WaitTriggerGroupReceive",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(P4WNP1Server).WaitTriggerGroupReceive(ctx, req.(*TriggerGroupReceive))
}
return interceptor(ctx, in, info, handler)
}
func _P4WNP1_FireActionGroupSend_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ActionGroupSend)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(P4WNP1Server).FireActionGroupSend(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/P4wnP1_grpc.P4WNP1/FireActionGroupSend",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(P4WNP1Server).FireActionGroupSend(ctx, req.(*ActionGroupSend))
}
return interceptor(ctx, in, info, handler)
}
func _P4WNP1_DBBackup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(StringMessage)
if err := dec(in); err != nil {
@ -5321,6 +5381,14 @@ var _P4WNP1_serviceDesc = grpc.ServiceDesc{
MethodName: "DeleteStoredTriggerActionSet",
Handler: _P4WNP1_DeleteStoredTriggerActionSet_Handler,
},
{
MethodName: "WaitTriggerGroupReceive",
Handler: _P4WNP1_WaitTriggerGroupReceive_Handler,
},
{
MethodName: "FireActionGroupSend",
Handler: _P4WNP1_FireActionGroupSend_Handler,
},
{
MethodName: "DBBackup",
Handler: _P4WNP1_DBBackup_Handler,
@ -5355,301 +5423,303 @@ var _P4WNP1_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("grpc.proto", fileDescriptor0) }
var fileDescriptor0 = []byte{
// 4725 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x5b, 0x4b, 0x77, 0x1b, 0x47,
0x76, 0xc6, 0x83, 0x0f, 0xe0, 0x02, 0x20, 0x9b, 0x25, 0x92, 0x82, 0xa8, 0x77, 0x5b, 0xb6, 0x35,
0xf4, 0x98, 0xb6, 0x69, 0x59, 0x96, 0x3d, 0x76, 0x3c, 0x78, 0x11, 0x80, 0x04, 0x02, 0x98, 0x6a,
0x40, 0x9c, 0x57, 0xa6, 0xa7, 0xd9, 0x5d, 0x04, 0xdb, 0x02, 0xba, 0x91, 0x7e, 0x90, 0x66, 0x16,
0x93, 0x93, 0x39, 0x27, 0xe7, 0x64, 0x91, 0x7d, 0xfe, 0x45, 0x76, 0x49, 0xfe, 0x47, 0xfe, 0x45,
0x36, 0x73, 0xb2, 0xc9, 0x26, 0x9b, 0xcc, 0xa9, 0xaa, 0x7e, 0x02, 0x0d, 0x92, 0xa2, 0xec, 0x5d,
0xd5, 0xad, 0x5b, 0x5f, 0x55, 0xdd, 0x57, 0xdd, 0xba, 0x0d, 0x00, 0x8c, 0xac, 0xa9, 0xba, 0x37,
0xb5, 0x4c, 0xc7, 0x44, 0x85, 0xfe, 0xb3, 0x73, 0xa3, 0xff, 0x99, 0x4c, 0x49, 0xe2, 0x3f, 0xa6,
0xe1, 0x61, 0x75, 0xec, 0x12, 0xc7, 0x34, 0x9d, 0x53, 0x4c, 0xfe, 0xce, 0x25, 0xb6, 0x23, 0x11,
0xc7, 0xd1, 0x8d, 0x91, 0x2d, 0x39, 0xa6, 0xa5, 0x8c, 0x08, 0x12, 0xa1, 0x38, 0x20, 0x93, 0xe9,
0x58, 0x71, 0x48, 0x57, 0x99, 0x90, 0x72, 0xfa, 0x51, 0xfa, 0x69, 0x1e, 0xc7, 0x68, 0xe8, 0x6b,
0xc8, 0xd9, 0xde, 0xb4, 0x72, 0xe6, 0x51, 0xfa, 0x69, 0x61, 0xff, 0xc1, 0x5e, 0x64, 0x9d, 0xbd,
0x60, 0x0d, 0x1f, 0x1c, 0x07, 0xfc, 0xe2, 0x3f, 0xa5, 0x61, 0x63, 0x6e, 0x1c, 0xfd, 0x02, 0x32,
0xaa, 0xce, 0xd6, 0x2a, 0xec, 0x7f, 0x94, 0x8c, 0x55, 0x33, 0x0d, 0xc7, 0x32, 0xc7, 0x63, 0x62,
0xb5, 0x8d, 0x13, 0xd3, 0x9a, 0x28, 0x8e, 0x6e, 0x1a, 0x38, 0xa3, 0xea, 0xe8, 0x73, 0xc8, 0x28,
0xfe, 0x46, 0xde, 0x4b, 0x9e, 0x5c, 0x19, 0x11, 0x23, 0x38, 0x2a, 0xce, 0x28, 0xb6, 0xb8, 0x0b,
0xdb, 0xc9, 0xa3, 0x48, 0x80, 0xec, 0x54, 0x37, 0xbc, 0x83, 0xd3, 0xa6, 0xf8, 0x7f, 0x69, 0xb8,
0x1d, 0x30, 0x77, 0x89, 0x73, 0x6e, 0x5a, 0x6f, 0x24, 0x62, 0x9d, 0xe9, 0x2a, 0x41, 0xcf, 0x60,
0xdb, 0x22, 0x23, 0xdd, 0x76, 0x88, 0x25, 0x9b, 0x96, 0xec, 0x1a, 0x7e, 0x8f, 0x01, 0xe4, 0xf0,
0xa6, 0xdf, 0xef, 0x59, 0xc3, 0x60, 0x0c, 0xed, 0xc2, 0x86, 0x4d, 0xac, 0x33, 0x3e, 0x47, 0x35,
0x0d, 0x83, 0xa8, 0x0e, 0x3b, 0x41, 0x0e, 0xaf, 0xf3, 0x81, 0x9e, 0x55, 0xe3, 0x64, 0xf4, 0x0d,
0x2c, 0x39, 0x17, 0x53, 0x52, 0xce, 0x3e, 0x4a, 0x3f, 0x5d, 0xdb, 0x7f, 0x9a, 0x7c, 0xc0, 0xf8,
0xae, 0x06, 0x17, 0x53, 0x82, 0xd9, 0x2c, 0xf4, 0x00, 0x0a, 0x13, 0x45, 0xa5, 0xcb, 0x18, 0x54,
0x9d, 0x4b, 0xec, 0x54, 0xf9, 0x89, 0xa2, 0xf6, 0x2c, 0xa6, 0xcb, 0x87, 0x50, 0x38, 0xb6, 0x74,
0x6d, 0x44, 0xf8, 0xf8, 0x32, 0x1b, 0x07, 0x4e, 0xa2, 0x0c, 0xe2, 0x7f, 0x2f, 0xc1, 0xdd, 0x04,
0x25, 0x04, 0xe2, 0x2a, 0xc3, 0xea, 0xd4, 0x3c, 0x27, 0x16, 0xd1, 0xbc, 0x13, 0xfb, 0x5d, 0xf4,
0x08, 0x0a, 0xde, 0xd1, 0x94, 0xe3, 0x31, 0xf1, 0x8e, 0x17, 0x25, 0xa1, 0x9f, 0x81, 0x70, 0xa2,
0xd8, 0x8e, 0x1c, 0x65, 0xcb, 0x72, 0x29, 0x50, 0x7a, 0x2d, 0xc2, 0x2a, 0x42, 0x51, 0xd3, 0x6d,
0xd5, 0x3c, 0x23, 0x16, 0x63, 0x5b, 0x62, 0x6c, 0x31, 0x1a, 0xda, 0x81, 0xdc, 0xb1, 0x69, 0x68,
0x6c, 0x7c, 0x99, 0x8d, 0x07, 0x7d, 0xb4, 0x07, 0xb7, 0xc6, 0xba, 0xf1, 0x46, 0x1e, 0x93, 0x33,
0x32, 0x96, 0x6d, 0xa2, 0xba, 0x96, 0xee, 0x5c, 0x94, 0x57, 0x18, 0xdb, 0x06, 0x1d, 0xea, 0xd0,
0x11, 0xc9, 0x1b, 0x40, 0xfb, 0xb0, 0xc5, 0x98, 0x88, 0x6c, 0xeb, 0x93, 0xe9, 0x98, 0xc8, 0x53,
0x45, 0xb7, 0x74, 0x63, 0x54, 0x5e, 0x65, 0x33, 0x6e, 0xf1, 0x41, 0x89, 0x8d, 0xf5, 0xf9, 0x10,
0xda, 0x82, 0x95, 0x63, 0x4b, 0x26, 0x9a, 0x55, 0xce, 0x31, 0xa6, 0xe5, 0x63, 0xab, 0xa1, 0x59,
0xe8, 0x3e, 0xc0, 0xa9, 0x3e, 0x3a, 0x95, 0xed, 0x29, 0x21, 0x5a, 0x39, 0xcf, 0x86, 0xf2, 0x94,
0x22, 0x51, 0x02, 0x1d, 0x1e, 0x9b, 0xe7, 0x32, 0x31, 0x88, 0x35, 0xba, 0x28, 0x03, 0x1f, 0x1e,
0x9b, 0xe7, 0x0d, 0x46, 0xa0, 0x52, 0x54, 0xb4, 0x33, 0x62, 0x39, 0xba, 0x4d, 0x97, 0x2f, 0x70,
0x29, 0x46, 0x48, 0xe8, 0x63, 0x40, 0xde, 0x56, 0x3d, 0x39, 0xea, 0xa6, 0x61, 0x97, 0x8b, 0xfc,
0x64, 0x7c, 0xa4, 0x16, 0x0e, 0xd0, 0xf5, 0x34, 0x72, 0xec, 0x8e, 0xe4, 0x37, 0xe4, 0xc2, 0x2e,
0x97, 0xf8, 0x7a, 0x8c, 0xf2, 0x8a, 0x5c, 0x70, 0x7d, 0x5a, 0xfa, 0x99, 0xa2, 0x5e, 0x94, 0xd7,
0x3c, 0x7d, 0xf2, 0x2e, 0xfa, 0x0a, 0xca, 0x6a, 0xa0, 0x7f, 0xba, 0xd6, 0x89, 0x3e, 0x72, 0x2d,
0xe6, 0x87, 0xe5, 0x75, 0xc6, 0x7a, 0x3b, 0x1c, 0xaf, 0x45, 0x87, 0xd1, 0xfb, 0xb0, 0x66, 0x3b,
0x8a, 0xa3, 0xab, 0xb2, 0xa2, 0x69, 0x16, 0xb1, 0xed, 0xb2, 0xc0, 0x26, 0x94, 0x38, 0xb5, 0xc2,
0x89, 0xe2, 0x5f, 0x96, 0xe0, 0xc1, 0xe5, 0x0e, 0x4f, 0xb7, 0xe7, 0x43, 0x50, 0x73, 0x2b, 0x62,
0xbf, 0x8b, 0x3e, 0x82, 0x8d, 0x63, 0x7f, 0xae, 0x7c, 0x46, 0x2c, 0x9b, 0xee, 0x8b, 0x1a, 0x5d,
0x09, 0x0b, 0xc1, 0xc0, 0x6b, 0x4e, 0xa7, 0xe6, 0x34, 0x51, 0x0c, 0xf7, 0x44, 0x51, 0x1d, 0xd7,
0x22, 0x16, 0xb3, 0xba, 0x12, 0x8e, 0xd1, 0xd0, 0x11, 0x20, 0xdb, 0x9d, 0x4e, 0x4d, 0xcb, 0x21,
0x9a, 0x1c, 0x04, 0xbc, 0x25, 0x16, 0x67, 0x9e, 0x5e, 0x15, 0xa4, 0x82, 0x60, 0xb3, 0x11, 0x60,
0x04, 0x2e, 0x23, 0x81, 0xa0, 0xba, 0x96, 0x45, 0x0c, 0x27, 0x84, 0x5d, 0x7e, 0x4b, 0xd8, 0x75,
0x0f, 0x21, 0x00, 0xfd, 0x00, 0xd6, 0xd5, 0xb1, 0x62, 0xdb, 0xb2, 0x79, 0x22, 0x6b, 0x84, 0x46,
0x01, 0x66, 0xdc, 0x45, 0x5c, 0x62, 0xe4, 0xde, 0x49, 0x9d, 0x11, 0x11, 0x82, 0x25, 0xe6, 0xe9,
0xab, 0xcc, 0xd3, 0x59, 0x9b, 0x9a, 0x84, 0x7d, 0x6a, 0x5a, 0x0e, 0x8f, 0x01, 0x39, 0x1e, 0x23,
0x18, 0x85, 0xc5, 0x88, 0xc7, 0x50, 0xd4, 0x6d, 0x59, 0x39, 0x53, 0xf4, 0x31, 0xf3, 0x2d, 0x6e,
0xc2, 0x05, 0xdd, 0xae, 0xf8, 0x24, 0xf4, 0x0b, 0xd8, 0xb1, 0x79, 0xec, 0x91, 0x0d, 0x1e, 0x8a,
0x64, 0x2f, 0xc0, 0x19, 0xca, 0xd4, 0x33, 0xea, 0xdb, 0x1e, 0x47, 0x24, 0x56, 0x11, 0xab, 0xab,
0x4c, 0xd1, 0xb7, 0x70, 0x77, 0xc1, 0xe4, 0xa9, 0x62, 0xb8, 0x9e, 0xc9, 0x97, 0x93, 0x66, 0xf7,
0x15, 0xc3, 0x45, 0x5f, 0xc1, 0x9d, 0x05, 0xd3, 0x47, 0x86, 0xe7, 0x06, 0xdb, 0x49, 0x93, 0x9b,
0x86, 0xf8, 0x3d, 0x08, 0x03, 0x4b, 0x1f, 0x8d, 0x88, 0x55, 0x61, 0xde, 0x21, 0x11, 0x07, 0x55,
0x61, 0x2d, 0x46, 0xa3, 0x86, 0x96, 0x7d, 0x5a, 0xd8, 0xdf, 0x89, 0xe9, 0x26, 0xc6, 0x82, 0x67,
0x66, 0x50, 0x21, 0xb3, 0xdb, 0x33, 0xc3, 0x85, 0xcc, 0x02, 0xe9, 0x7f, 0x00, 0x94, 0x62, 0x6c,
0x68, 0x0d, 0x32, 0x3a, 0x8f, 0x9a, 0x25, 0x9c, 0xd1, 0x35, 0x6a, 0xdb, 0xa6, 0x41, 0xa4, 0x53,
0xd3, 0xbf, 0x0b, 0xfc, 0x2e, 0x8d, 0x6c, 0xba, 0x4d, 0x67, 0x9d, 0xf9, 0x01, 0x32, 0xe8, 0xa3,
0x7b, 0x90, 0xd7, 0x27, 0x13, 0xd7, 0x89, 0x84, 0xc5, 0x90, 0x80, 0x3a, 0xb0, 0xe6, 0x9d, 0x5d,
0x72, 0x14, 0x6a, 0x85, 0x9e, 0xa5, 0x89, 0x49, 0xa7, 0x91, 0x62, 0x9c, 0xad, 0x14, 0x9e, 0x99,
0x8b, 0x7e, 0x0d, 0xc8, 0xb5, 0x8f, 0x9b, 0x8a, 0x36, 0x22, 0x7e, 0x74, 0x26, 0x1a, 0xb3, 0xb3,
0xc2, 0xfe, 0x07, 0x49, 0x88, 0x43, 0xa9, 0x3a, 0xc3, 0xdd, 0x4a, 0xe1, 0x04, 0x0c, 0xa4, 0xc0,
0x56, 0x40, 0xad, 0xd3, 0xa0, 0xee, 0x83, 0xaf, 0x32, 0xf0, 0x9f, 0x5d, 0x0a, 0x1e, 0x9d, 0xd0,
0x4a, 0xe1, 0x64, 0x24, 0xd4, 0x86, 0xd2, 0xb9, 0x7e, 0xa2, 0x57, 0xfa, 0xbe, 0x24, 0x72, 0x0c,
0xfa, 0x71, 0x12, 0xf4, 0x51, 0x94, 0xb1, 0x95, 0xc2, 0xf1, 0x99, 0x54, 0x0e, 0x94, 0x10, 0x6c,
0xbf, 0x62, 0x4b, 0x8e, 0xc2, 0xfc, 0x62, 0x81, 0x1c, 0x8e, 0xe6, 0xb8, 0xa9, 0x1c, 0xe6, 0x31,
0x58, 0x6e, 0x65, 0x9f, 0x76, 0xcc, 0x91, 0x6e, 0x30, 0xb7, 0x29, 0xec, 0xdf, 0x4b, 0xd4, 0x94,
0xd4, 0x62, 0x3c, 0xad, 0x14, 0x0e, 0xf8, 0x11, 0x06, 0x41, 0x3b, 0x55, 0xa7, 0x1d, 0xa2, 0xd8,
0xa4, 0x69, 0x29, 0x06, 0x3d, 0x63, 0x81, 0x61, 0x3c, 0x49, 0xc2, 0xa8, 0xb7, 0x6a, 0xfd, 0x28,
0x6f, 0x2b, 0x85, 0xe7, 0xe6, 0xa3, 0x03, 0x28, 0x8e, 0x2c, 0xd3, 0x9d, 0x62, 0xa2, 0x12, 0x6a,
0x7d, 0x45, 0x86, 0xf7, 0x28, 0x09, 0xaf, 0x19, 0xe1, 0x6b, 0xa5, 0x70, 0x6c, 0x1e, 0xfa, 0x03,
0x6c, 0x46, 0xfb, 0x12, 0xcd, 0x3e, 0x0d, 0x95, 0xb0, 0xfb, 0x67, 0x36, 0xee, 0x25, 0xe0, 0xf9,
0xfc, 0xad, 0x14, 0x4e, 0xc4, 0x41, 0xcf, 0x60, 0x65, 0x34, 0xd5, 0xcd, 0xb6, 0xc1, 0x6e, 0xad,
0x05, 0xde, 0xda, 0xec, 0xb7, 0x7b, 0x6d, 0x2a, 0x33, 0x8f, 0x17, 0xd5, 0x01, 0x8e, 0x15, 0xfb,
0x54, 0x52, 0x2d, 0x7d, 0xea, 0xb0, 0x4b, 0x6c, 0xd6, 0x33, 0xbc, 0xb8, 0x40, 0xf5, 0x5e, 0x0d,
0x38, 0x5b, 0x69, 0x1c, 0x99, 0x87, 0x2a, 0x90, 0x3f, 0xd5, 0x35, 0x0f, 0x44, 0x48, 0x30, 0xaa,
0x08, 0x48, 0xab, 0x5d, 0x0f, 0x30, 0xc2, 0x59, 0x48, 0x85, 0x6d, 0x8d, 0x4c, 0xc7, 0xe6, 0x85,
0x1f, 0xcf, 0xfd, 0x84, 0xbb, 0xbc, 0x91, 0x60, 0xff, 0x1c, 0xaf, 0x9e, 0x38, 0xa1, 0x95, 0xc6,
0x0b, 0xa0, 0xd0, 0x2e, 0x64, 0xc7, 0xe6, 0xa8, 0x8c, 0x18, 0xe2, 0x76, 0x02, 0x62, 0xc7, 0x1c,
0xb5, 0xd2, 0x98, 0x32, 0xa1, 0xe7, 0xb0, 0x4a, 0x65, 0xd4, 0x73, 0x9d, 0xf2, 0xad, 0x04, 0x81,
0x72, 0x7e, 0x2a, 0xcf, 0x9e, 0x4b, 0x8f, 0xe2, 0x33, 0xa3, 0x6f, 0x20, 0xcf, 0xf4, 0x23, 0x11,
0x43, 0x2b, 0x6f, 0x26, 0x18, 0xb0, 0x37, 0xd3, 0xe7, 0xa1, 0x62, 0x08, 0x26, 0x54, 0xf3, 0xb0,
0xea, 0xa9, 0xaa, 0x9a, 0x83, 0x15, 0xce, 0x2a, 0xde, 0x86, 0xad, 0xc4, 0xf8, 0x24, 0xde, 0x85,
0x3b, 0x0b, 0xc3, 0x8c, 0xf8, 0x00, 0xee, 0x5d, 0x16, 0x26, 0xc4, 0x6d, 0xd8, 0x4c, 0xf2, 0xf5,
0x08, 0xe8, 0xbc, 0xcf, 0x8a, 0x9f, 0xc0, 0xfa, 0x8c, 0x03, 0xd2, 0xf0, 0x3b, 0xa6, 0x8d, 0xa1,
0xed, 0xe5, 0xfc, 0x79, 0x1c, 0x12, 0xc4, 0x3b, 0x70, 0x7b, 0x81, 0xb7, 0x89, 0x6d, 0xb8, 0x95,
0x60, 0xe8, 0x14, 0x8f, 0xc9, 0x23, 0xf2, 0xfa, 0x0a, 0x09, 0x68, 0x13, 0x96, 0xcf, 0x94, 0xb1,
0xcb, 0x6f, 0x96, 0x65, 0xcc, 0x3b, 0xe2, 0x3f, 0xc0, 0xdd, 0x4b, 0x7c, 0xe6, 0x0a, 0xc8, 0x5d,
0x10, 0xda, 0x23, 0xc3, 0xb4, 0x48, 0xcf, 0x75, 0x7a, 0x27, 0x3d, 0x4b, 0x23, 0x96, 0x77, 0xfd,
0xcc, 0xd1, 0xd1, 0x36, 0xac, 0xb0, 0x15, 0xed, 0x72, 0xf6, 0x51, 0xf6, 0xe9, 0x32, 0xf6, 0x7a,
0xe2, 0x7f, 0xa6, 0x83, 0xbb, 0x8d, 0xfb, 0x18, 0xda, 0xe3, 0xf6, 0xd3, 0x75, 0x27, 0x6c, 0xc5,
0xb5, 0xfd, 0xcd, 0x98, 0x15, 0x50, 0xae, 0xae, 0x3b, 0xc1, 0x3e, 0x13, 0xfa, 0x16, 0x60, 0xea,
0x8e, 0xc7, 0xc3, 0x69, 0xdd, 0x3c, 0xe7, 0x69, 0xdb, 0xda, 0xfe, 0xfd, 0xb9, 0x29, 0x6d, 0xa3,
0x1f, 0x30, 0xe1, 0xc8, 0x04, 0xf4, 0x25, 0x00, 0x77, 0xe9, 0x86, 0x36, 0xf2, 0x9f, 0x4a, 0xb7,
0x13, 0xa6, 0xd3, 0x61, 0x1c, 0x61, 0x15, 0xbf, 0x84, 0xad, 0x44, 0x17, 0x47, 0x0f, 0x00, 0x6c,
0xd6, 0x8a, 0x48, 0x2d, 0x42, 0x11, 0x9f, 0xc3, 0x66, 0x92, 0x5b, 0x5f, 0x39, 0xef, 0x7f, 0xd3,
0x70, 0xef, 0x32, 0xff, 0xa5, 0xa9, 0xa9, 0x93, 0xf0, 0x02, 0x8f, 0xd2, 0xd0, 0x4b, 0xef, 0x4d,
0xc8, 0xe5, 0xf4, 0xfc, 0xda, 0xc1, 0x61, 0xcf, 0x6f, 0x84, 0x2f, 0x44, 0x91, 0x84, 0x2f, 0x7e,
0x4a, 0x45, 0x1b, 0x50, 0x3a, 0x18, 0x76, 0x3a, 0xb2, 0xd4, 0x18, 0x0c, 0xda, 0xdd, 0xa6, 0x24,
0xa4, 0x50, 0x01, 0x56, 0xbb, 0x8d, 0xc1, 0x51, 0x0f, 0xbf, 0x12, 0xd2, 0x28, 0x07, 0x4b, 0x47,
0xed, 0x83, 0xb6, 0x90, 0x41, 0xab, 0x90, 0x1d, 0x4a, 0x55, 0x21, 0x8b, 0x4a, 0x90, 0xaf, 0x76,
0x86, 0x8d, 0x41, 0xaf, 0x37, 0x68, 0x09, 0x4b, 0xe8, 0x16, 0xac, 0x0f, 0x70, 0xbb, 0xd9, 0x6c,
0x60, 0xb9, 0x52, 0x1b, 0xb4, 0x7b, 0x5d, 0x49, 0x58, 0x16, 0x0b, 0x90, 0x0f, 0x82, 0x8c, 0x38,
0x85, 0x52, 0x2c, 0x82, 0xbc, 0xb5, 0xb9, 0x7c, 0x12, 0xf5, 0x83, 0xb5, 0xfd, 0x3b, 0x73, 0xdc,
0x3d, 0xd7, 0x79, 0x4d, 0x19, 0x7c, 0x17, 0x69, 0xc0, 0xfa, 0x4c, 0xe4, 0xb9, 0x91, 0xa7, 0x9d,
0xc3, 0x0e, 0x0d, 0x0b, 0xef, 0x50, 0x3c, 0xf9, 0x62, 0xae, 0x78, 0x12, 0xdf, 0xfc, 0x91, 0x7e,
0xa0, 0x27, 0xd4, 0x4d, 0xfe, 0x35, 0x0b, 0xc5, 0xe8, 0x50, 0x90, 0xc7, 0xa7, 0x23, 0x79, 0xfc,
0x0e, 0xe4, 0x34, 0xdd, 0xa6, 0x79, 0x9f, 0xe6, 0xb9, 0x70, 0xd0, 0xa7, 0x76, 0x69, 0x91, 0x91,
0x3b, 0x56, 0x1c, 0xd3, 0xba, 0x60, 0x1e, 0x92, 0xc7, 0x11, 0x0a, 0xfa, 0x0e, 0x8a, 0x34, 0x35,
0xd6, 0x8d, 0x91, 0x3c, 0x31, 0x35, 0x9e, 0x49, 0xae, 0xcd, 0xc4, 0x6e, 0xba, 0x81, 0x23, 0xce,
0x74, 0x68, 0x6a, 0x04, 0x17, 0xce, 0xc3, 0x0e, 0x7a, 0x0e, 0x79, 0xc5, 0x75, 0x4e, 0xf9, 0xec,
0xe5, 0x04, 0xb5, 0xd0, 0xd9, 0x15, 0xd7, 0x39, 0x65, 0x53, 0x73, 0x8a, 0xd7, 0xa2, 0x59, 0xaf,
0x7a, 0xaa, 0x18, 0x06, 0x19, 0xb3, 0x44, 0xb2, 0x84, 0xfd, 0x2e, 0xda, 0x83, 0x15, 0x65, 0x2a,
0x57, 0x25, 0xc9, 0x4b, 0x02, 0x6f, 0xcf, 0xc1, 0x55, 0x25, 0xa9, 0x76, 0x32, 0xc2, 0xcb, 0xca,
0xb4, 0x2a, 0x49, 0xe8, 0x3b, 0xfa, 0x04, 0xd2, 0xe9, 0xb3, 0xaa, 0x2a, 0x49, 0xf2, 0x58, 0xb7,
0x9d, 0x72, 0x8e, 0xa5, 0xee, 0x0b, 0x27, 0x96, 0x38, 0x7f, 0x55, 0x92, 0x3a, 0xba, 0xed, 0xa0,
0xbb, 0xec, 0x22, 0x27, 0xb2, 0x6d, 0xeb, 0xfe, 0x43, 0x3d, 0x47, 0x09, 0x92, 0xad, 0x6b, 0x34,
0xf6, 0x19, 0xe4, 0x87, 0x89, 0x69, 0x78, 0x6f, 0x66, 0xaf, 0x27, 0xfe, 0x5b, 0x1a, 0xf2, 0x4c,
0x33, 0x0e, 0xf5, 0xde, 0x3d, 0x58, 0x62, 0x02, 0xe0, 0x56, 0xbc, 0x33, 0xaf, 0x5a, 0xca, 0xc5,
0x24, 0xc0, 0xf8, 0xa2, 0xa7, 0xcf, 0xc4, 0x4f, 0x8f, 0x60, 0x89, 0xed, 0x83, 0xab, 0x8a, 0xb5,
0x51, 0x0d, 0x66, 0xdf, 0x7d, 0xde, 0x7b, 0xf4, 0x12, 0x1b, 0x9a, 0x9d, 0x21, 0xee, 0x03, 0x84,
0x22, 0xa0, 0xcb, 0x48, 0x52, 0xbb, 0xee, 0xdb, 0x11, 0x6d, 0x23, 0x01, 0xb2, 0x7d, 0xe9, 0x95,
0xf7, 0x7a, 0xa1, 0x4d, 0xf1, 0x31, 0x94, 0x24, 0xc7, 0xa2, 0xaa, 0x26, 0xb6, 0x4d, 0x4d, 0x5d,
0x80, 0xec, 0xc4, 0x1e, 0xf9, 0x55, 0xb2, 0x89, 0x3d, 0x12, 0x3f, 0x05, 0x14, 0x63, 0xa9, 0x58,
0x96, 0x72, 0x41, 0x4d, 0x72, 0x62, 0x8f, 0x58, 0x9b, 0xbd, 0xa3, 0xf2, 0x38, 0xe8, 0x8b, 0x7b,
0x50, 0x6c, 0x9c, 0x11, 0xc3, 0xf1, 0xbc, 0x89, 0x9a, 0x28, 0x55, 0x1a, 0x31, 0x68, 0x1c, 0x62,
0xd0, 0x59, 0x1c, 0xa1, 0x88, 0x0a, 0x00, 0xe3, 0x67, 0x8e, 0x8d, 0x76, 0x60, 0xd5, 0xb1, 0xd9,
0x82, 0x7c, 0x17, 0xad, 0x14, 0xf6, 0x09, 0x68, 0x1b, 0x96, 0x9d, 0x63, 0xd3, 0xe4, 0x32, 0xcd,
0xb5, 0x52, 0x98, 0x77, 0x51, 0x19, 0x56, 0x1c, 0xdd, 0x70, 0x9e, 0x3f, 0x63, 0x52, 0xcd, 0xd2,
0x4c, 0x90, 0xf7, 0xab, 0xcb, 0x90, 0x3d, 0x53, 0xc6, 0x62, 0x07, 0x96, 0xd9, 0x12, 0x54, 0x2c,
0x4e, 0xb8, 0x0b, 0x5e, 0x4b, 0xfb, 0x24, 0xb8, 0xfd, 0x32, 0x09, 0x66, 0x15, 0x6e, 0x2d, 0xb8,
0x16, 0xff, 0x08, 0x9b, 0xd4, 0xf7, 0xeb, 0xba, 0xd5, 0xb3, 0x0e, 0xf4, 0x31, 0xf1, 0x0f, 0x2a,
0x40, 0x56, 0xd3, 0xfd, 0x6c, 0x81, 0x36, 0xa9, 0x71, 0x4d, 0x2d, 0x72, 0xa2, 0xff, 0xe0, 0x09,
0xdd, 0xeb, 0x51, 0x91, 0x98, 0xc6, 0xf8, 0xe2, 0xc0, 0x1c, 0x6b, 0x5e, 0x95, 0x22, 0x87, 0x23,
0x14, 0x7a, 0x7d, 0xcd, 0xac, 0x60, 0x4f, 0x4d, 0xc3, 0x26, 0xdc, 0xdd, 0x6d, 0x77, 0xec, 0xf4,
0x15, 0xe7, 0xd4, 0xbf, 0x86, 0x42, 0x8a, 0xf8, 0x2f, 0x69, 0x58, 0xc7, 0x44, 0xd1, 0xa2, 0xdb,
0xfa, 0x02, 0x56, 0x4e, 0xf8, 0x42, 0xe9, 0x84, 0xfb, 0xb7, 0xa2, 0xaa, 0xc4, 0xb6, 0xf5, 0xe3,
0x31, 0xe1, 0x6b, 0x63, 0x8f, 0x99, 0xaa, 0xf8, 0x44, 0x1f, 0x13, 0x23, 0x7c, 0xf0, 0x06, 0x7d,
0x1a, 0x45, 0x6d, 0x7a, 0x3f, 0x72, 0x79, 0x63, 0xde, 0xa1, 0xe7, 0x1f, 0x13, 0x83, 0x99, 0x6e,
0x16, 0xd3, 0xa6, 0x58, 0x07, 0x21, 0xdc, 0x8d, 0x77, 0x84, 0x7b, 0x90, 0xb7, 0x88, 0xa2, 0xd5,
0x4c, 0xd7, 0x70, 0x3c, 0x3d, 0x84, 0x04, 0xaa, 0x20, 0x4d, 0x71, 0x14, 0xb6, 0x62, 0x11, 0xb3,
0xb6, 0xf8, 0xef, 0x69, 0x10, 0x8e, 0x2c, 0xdd, 0x21, 0x3f, 0xf1, 0xa9, 0xb6, 0x69, 0x60, 0x9a,
0xd2, 0x0c, 0x97, 0x6b, 0xc4, 0xeb, 0xb1, 0xaa, 0x92, 0x6b, 0x3b, 0x5d, 0xd3, 0x69, 0xfc, 0x40,
0xa3, 0x8f, 0x57, 0xa4, 0x8c, 0xd2, 0x82, 0x7d, 0x2f, 0x47, 0xf6, 0xfd, 0x3e, 0xac, 0xd3, 0x1d,
0xb7, 0x8d, 0x13, 0xd3, 0xdf, 0x35, 0x82, 0xa5, 0x69, 0xa8, 0x39, 0xd6, 0x16, 0xff, 0x04, 0x42,
0xc8, 0xe6, 0x09, 0x29, 0xe9, 0x1a, 0xa0, 0x91, 0x43, 0xff, 0x7b, 0xbe, 0xed, 0x2c, 0x66, 0x6d,
0x4a, 0x63, 0x71, 0x89, 0x17, 0xba, 0x82, 0xd8, 0x33, 0x31, 0xb5, 0x81, 0xee, 0xd5, 0x85, 0xb3,
0xd8, 0xef, 0x52, 0xb5, 0xe9, 0x76, 0x5d, 0xb7, 0xbc, 0x32, 0x2a, 0xef, 0x88, 0xbf, 0x05, 0x21,
0xc8, 0x73, 0x22, 0x3e, 0xcb, 0x93, 0x9b, 0xa8, 0x9d, 0x85, 0x14, 0xf4, 0x01, 0xac, 0x39, 0xfa,
0x84, 0x98, 0xae, 0x23, 0x11, 0xd5, 0x34, 0x34, 0xdb, 0x0b, 0x73, 0x33, 0x54, 0xf1, 0x01, 0x14,
0x03, 0xec, 0x97, 0xe6, 0xf1, 0x6c, 0x6d, 0x44, 0x7c, 0x12, 0x59, 0xfb, 0xa5, 0x79, 0xcc, 0xc2,
0xb5, 0x00, 0x59, 0x5d, 0xe3, 0xe5, 0x99, 0x12, 0xa6, 0x4d, 0xf1, 0x35, 0x94, 0x5b, 0xed, 0x3a,
0x76, 0x0d, 0x43, 0x37, 0x46, 0x2f, 0xcd, 0x63, 0x16, 0x6d, 0x31, 0xb3, 0xfa, 0x08, 0x62, 0x96,
0x55, 0x5b, 0x10, 0x2c, 0x9d, 0x4d, 0xda, 0x9a, 0x2f, 0x25, 0xda, 0xa6, 0x8a, 0xb5, 0x4d, 0xd7,
0x52, 0x89, 0x17, 0x75, 0xbd, 0x9e, 0xf8, 0x27, 0x58, 0x8f, 0x9c, 0x9c, 0xc1, 0x7d, 0x04, 0xd9,
0xef, 0xcd, 0x63, 0xef, 0x9b, 0x45, 0x3c, 0xfc, 0x46, 0x37, 0x8a, 0x29, 0x17, 0x95, 0x92, 0x6e,
0x1f, 0xe8, 0x86, 0x6e, 0x9f, 0x06, 0x57, 0x73, 0x84, 0x12, 0x7a, 0xeb, 0x4b, 0xdb, 0x34, 0xc2,
0xcb, 0xd9, 0xa7, 0x88, 0x7b, 0x50, 0xe8, 0x34, 0xea, 0xc1, 0xdd, 0xff, 0x10, 0x0a, 0xc7, 0xac,
0x9a, 0xad, 0x06, 0xbe, 0x51, 0xc2, 0xc0, 0x48, 0xcc, 0x39, 0xc4, 0x1f, 0xe0, 0xce, 0x50, 0xaa,
0xbe, 0x43, 0x96, 0xf2, 0xe5, 0x5c, 0x96, 0x72, 0x37, 0x9e, 0x62, 0xb1, 0x07, 0x55, 0x42, 0x9e,
0xf2, 0x97, 0x65, 0x58, 0x8b, 0x0f, 0x52, 0x33, 0x23, 0x06, 0x4f, 0x4a, 0xbc, 0x2f, 0x04, 0x5e,
0x97, 0x2a, 0xf0, 0x4c, 0xd7, 0xfc, 0x7b, 0xe6, 0x4c, 0xd7, 0xf8, 0xc7, 0x17, 0xff, 0xce, 0xa3,
0xcd, 0xb9, 0x4a, 0x2d, 0xff, 0x82, 0x11, 0xaf, 0xd4, 0xb2, 0x9a, 0xb5, 0xa9, 0xb9, 0xaa, 0xe3,
0x7d, 0xc0, 0xf0, 0xbb, 0x4c, 0xa1, 0xc4, 0xd2, 0x15, 0x9e, 0x5b, 0x50, 0x85, 0xb2, 0x1e, 0x7a,
0x00, 0x05, 0xd7, 0x26, 0x72, 0xad, 0x5e, 0x93, 0x1b, 0xb5, 0x43, 0xaf, 0xa8, 0x9f, 0x77, 0x6d,
0x52, 0xab, 0xd7, 0x1a, 0xb5, 0x43, 0x9a, 0x09, 0xd0, 0x71, 0xdc, 0xad, 0xb7, 0x25, 0xaf, 0x9a,
0x9f, 0x73, 0x6d, 0xc2, 0xfa, 0xe8, 0x29, 0x08, 0x74, 0xb0, 0xd5, 0xae, 0xcb, 0xaf, 0x1a, 0xbf,
0xa9, 0xf6, 0x2a, 0xb8, 0xee, 0x65, 0x0b, 0x6b, 0xae, 0x4d, 0x5a, 0xed, 0xba, 0x4f, 0x45, 0x22,
0x94, 0x7c, 0xce, 0xc3, 0xde, 0x50, 0x6a, 0x78, 0x95, 0xd0, 0x02, 0x67, 0x63, 0x24, 0x7f, 0x2b,
0x94, 0x07, 0x57, 0x8e, 0xbc, 0x6a, 0x67, 0x9e, 0x73, 0xe0, 0xca, 0x11, 0xba, 0x0d, 0xab, 0x74,
0x7c, 0x78, 0x28, 0x79, 0xc5, 0xcc, 0x15, 0xd7, 0x26, 0xc3, 0x43, 0x09, 0xdd, 0x07, 0xa0, 0x03,
0x52, 0x03, 0xb7, 0x2b, 0x1d, 0xbf, 0x90, 0xef, 0xda, 0x84, 0x13, 0xd0, 0x4b, 0x58, 0xb3, 0x0c,
0x4d, 0xb7, 0xc3, 0x1a, 0xf3, 0x5a, 0xc2, 0x27, 0xb2, 0xb8, 0xae, 0x1a, 0xce, 0x29, 0xb1, 0x0c,
0xe2, 0xe0, 0x12, 0x9b, 0x1a, 0xa8, 0xf0, 0x10, 0x04, 0x55, 0x53, 0x65, 0xa2, 0x4e, 0x42, 0xb4,
0xf5, 0xeb, 0xa3, 0xad, 0xa9, 0x9a, 0xda, 0x50, 0x27, 0x01, 0x5c, 0x05, 0x8a, 0xee, 0x24, 0xb2,
0x31, 0x21, 0xe1, 0x23, 0x62, 0x1c, 0x6a, 0x78, 0x28, 0xe1, 0x82, 0x3b, 0x09, 0x77, 0xf4, 0x19,
0x6c, 0x69, 0xe4, 0x4c, 0xa6, 0x71, 0x51, 0x3e, 0xd5, 0x35, 0xf9, 0x0d, 0xb9, 0x38, 0x36, 0x15,
0x4b, 0x63, 0xd5, 0x8d, 0x3c, 0x46, 0x1a, 0x39, 0xa3, 0xf1, 0xa7, 0xa5, 0x6b, 0xaf, 0xbc, 0x11,
0xf4, 0x11, 0xa0, 0xd8, 0x94, 0x89, 0xe9, 0xda, 0x84, 0x55, 0x37, 0xf2, 0x78, 0x3d, 0xe4, 0x3f,
0xa4, 0x64, 0xf4, 0x21, 0x08, 0x31, 0x66, 0x4b, 0x39, 0x67, 0xe5, 0x8c, 0x3c, 0x2e, 0x85, 0xac,
0x58, 0x39, 0x17, 0xfb, 0xb0, 0x9d, 0x7c, 0x6a, 0x96, 0x4d, 0x9a, 0xb6, 0xc3, 0x3e, 0x79, 0x78,
0x4e, 0x96, 0xa3, 0x84, 0x8a, 0xa6, 0x59, 0xe8, 0x0e, 0xe4, 0x28, 0x3e, 0x1b, 0xe3, 0xf6, 0xbf,
0xaa, 0x91, 0x33, 0x3a, 0x24, 0x7e, 0x0b, 0x1b, 0x73, 0x87, 0xa7, 0x11, 0x59, 0xd5, 0x2c, 0x73,
0xe2, 0xb9, 0x10, 0xef, 0xd0, 0x18, 0x46, 0x2f, 0x25, 0xbf, 0xce, 0x4c, 0xdb, 0xe2, 0x3f, 0xa7,
0xe1, 0x41, 0x20, 0xf9, 0x9b, 0x47, 0x80, 0xea, 0x5c, 0x04, 0x88, 0x17, 0x36, 0xfd, 0x25, 0xda,
0x86, 0x43, 0xac, 0x13, 0x45, 0x25, 0x09, 0xc1, 0x40, 0x86, 0xc7, 0xfc, 0x1d, 0x4a, 0xb4, 0x85,
0xec, 0xe8, 0x6b, 0x58, 0x62, 0xa9, 0x3a, 0xaf, 0xb2, 0x5f, 0x77, 0x11, 0x36, 0x47, 0xfc, 0x73,
0x16, 0xee, 0x2c, 0x46, 0x4e, 0xba, 0x1b, 0xbf, 0xf3, 0xee, 0x41, 0xfe, 0x6e, 0xfc, 0xe8, 0x7a,
0xab, 0xed, 0x45, 0x12, 0x76, 0x1a, 0xca, 0xa7, 0xde, 0x07, 0xab, 0x67, 0x7e, 0xa8, 0x0e, 0x29,
0x34, 0x6f, 0x30, 0x88, 0x33, 0x51, 0xec, 0x37, 0xcf, 0xbc, 0x58, 0x15, 0xf4, 0xa3, 0x91, 0x70,
0x39, 0x1e, 0x09, 0x7b, 0x80, 0xb4, 0x53, 0x75, 0xca, 0x3f, 0x4c, 0x04, 0xb9, 0x3d, 0x2f, 0xac,
0x3f, 0x8c, 0x6d, 0xb2, 0xde, 0xaa, 0xf5, 0xe3, 0x6c, 0x38, 0x61, 0x2a, 0x7a, 0x02, 0x25, 0x5f,
0x0d, 0x6d, 0x63, 0x68, 0x13, 0x2f, 0xc4, 0xc5, 0x89, 0x62, 0x0d, 0x96, 0xd8, 0x1b, 0x0c, 0x60,
0xe5, 0xb0, 0xd2, 0x1d, 0x56, 0x3a, 0x42, 0x0a, 0xad, 0x43, 0x81, 0xae, 0x21, 0xd7, 0x3a, 0xed,
0x46, 0x77, 0x20, 0xa4, 0x03, 0x82, 0xd4, 0xc0, 0xaf, 0x1b, 0x58, 0xc8, 0xd0, 0xe7, 0xfe, 0xb0,
0x7b, 0x58, 0xe9, 0x56, 0x9a, 0x8d, 0xba, 0x90, 0x15, 0xff, 0x3f, 0x0b, 0x68, 0x7e, 0x57, 0x61,
0x36, 0xdf, 0x37, 0xad, 0xe0, 0x8e, 0x0a, 0x29, 0xe8, 0x29, 0xac, 0xf3, 0x5e, 0x20, 0x6e, 0xcf,
0x8c, 0x67, 0xc9, 0xac, 0xc4, 0x46, 0x14, 0x9b, 0x65, 0x75, 0x9e, 0xc4, 0x43, 0x02, 0xda, 0x05,
0xc1, 0x30, 0x1d, 0xfa, 0xb0, 0x34, 0x2d, 0xdd, 0x51, 0xd8, 0x37, 0x12, 0x9e, 0x78, 0xcd, 0xd1,
0xd1, 0x1e, 0x20, 0xcd, 0xec, 0x9a, 0x4e, 0x55, 0x37, 0xb4, 0x70, 0x59, 0xae, 0x8b, 0x84, 0x11,
0x9a, 0xbd, 0xa8, 0xca, 0x78, 0x7c, 0xac, 0xa8, 0x6f, 0xbc, 0xf2, 0x2e, 0xbf, 0x46, 0x66, 0xa8,
0xe8, 0x19, 0xac, 0x58, 0x8a, 0x31, 0x22, 0x76, 0x79, 0x95, 0x59, 0xf1, 0xbd, 0x05, 0x2a, 0xc3,
0x94, 0x09, 0x7b, 0xbc, 0xe8, 0x00, 0x56, 0xcd, 0x29, 0xff, 0xc4, 0xc4, 0xdf, 0xa9, 0x3f, 0xbf,
0x42, 0xd3, 0x7b, 0x3d, 0xce, 0xde, 0x30, 0x1c, 0xeb, 0x02, 0xfb, 0x93, 0x51, 0x0d, 0x0a, 0xfc,
0x3b, 0x6a, 0xcb, 0xb4, 0x1d, 0xbb, 0x9c, 0x67, 0x58, 0x8f, 0x17, 0x61, 0x05, 0x9c, 0x38, 0x3a,
0x6b, 0xe7, 0x6b, 0x28, 0x46, 0xd1, 0xe9, 0x4d, 0xfc, 0x86, 0x5c, 0x78, 0x7a, 0xa3, 0xcd, 0x78,
0x45, 0x24, 0xef, 0x55, 0x44, 0xbe, 0xce, 0xbc, 0x48, 0x8b, 0x26, 0xac, 0xcf, 0x9c, 0x91, 0x65,
0x34, 0xb4, 0xd1, 0x31, 0xcf, 0x83, 0xba, 0x68, 0x84, 0x12, 0x8c, 0x0f, 0xa7, 0x53, 0xe2, 0x47,
0xc0, 0x08, 0x25, 0xd0, 0x39, 0xcb, 0x4e, 0xa3, 0x3a, 0xa7, 0x04, 0xf1, 0x05, 0x6c, 0x26, 0x9d,
0x88, 0xbd, 0x4a, 0x15, 0x35, 0x78, 0x95, 0x2a, 0x2a, 0xcb, 0xfa, 0xa6, 0x1e, 0x7e, 0x46, 0x9f,
0x8a, 0xab, 0xb0, 0xdc, 0x98, 0x4c, 0x9d, 0x8b, 0xdd, 0x17, 0x91, 0x9f, 0x35, 0xcc, 0xff, 0x7a,
0x02, 0xad, 0x42, 0xb6, 0x5b, 0xe9, 0x0b, 0x29, 0x94, 0x83, 0xa5, 0x7e, 0xa5, 0x3b, 0x14, 0xd2,
0x68, 0x05, 0x32, 0xcd, 0xae, 0x90, 0xd9, 0xfd, 0x18, 0x84, 0xd9, 0x5a, 0x24, 0x1d, 0x1b, 0x7a,
0xdc, 0xf5, 0xde, 0x51, 0x57, 0x48, 0x53, 0x80, 0xde, 0xc1, 0x81, 0x90, 0xd9, 0xfd, 0x04, 0x20,
0xac, 0x3d, 0x52, 0x4f, 0xc3, 0x6d, 0xa9, 0xdd, 0x6d, 0xf2, 0xb2, 0xda, 0x41, 0xa5, 0xd3, 0xa1,
0x1d, 0x56, 0x56, 0xab, 0xf6, 0x06, 0x2d, 0x21, 0xb3, 0xfb, 0x3f, 0x69, 0x58, 0xf5, 0x0a, 0x5e,
0x28, 0x0f, 0xcb, 0xdd, 0xe1, 0xa1, 0xfc, 0x99, 0x90, 0xf2, 0x9b, 0xfb, 0x42, 0xda, 0x6f, 0x7e,
0x2e, 0x64, 0xfc, 0xe6, 0x33, 0x21, 0xeb, 0x37, 0xbf, 0x10, 0x96, 0xfc, 0xe6, 0x73, 0x61, 0xd9,
0x6f, 0x7e, 0x29, 0xac, 0xf8, 0xcd, 0x17, 0xc2, 0xaa, 0xdf, 0xfc, 0x4a, 0xc8, 0xd1, 0x1d, 0xb1,
0x25, 0x3e, 0x15, 0xf2, 0x41, 0xfb, 0x33, 0x01, 0x82, 0xf6, 0xbe, 0x50, 0x08, 0xda, 0x9f, 0x0b,
0xc5, 0xa0, 0xfd, 0x4c, 0x28, 0x05, 0xed, 0x2f, 0x84, 0xb5, 0xa0, 0xfd, 0x5c, 0x58, 0x0f, 0xda,
0x5f, 0x0a, 0x42, 0xd0, 0x7e, 0x21, 0x6c, 0x04, 0xed, 0xaf, 0x04, 0xe4, 0xb7, 0xf7, 0x3f, 0x15,
0x6e, 0xed, 0x7e, 0x0c, 0xc5, 0x68, 0xd1, 0x8e, 0x0a, 0xaf, 0xd3, 0x3b, 0xe2, 0xf2, 0x6c, 0xb5,
0x9b, 0x2d, 0x21, 0x4d, 0xd9, 0x07, 0xbd, 0x66, 0xb3, 0xd3, 0x10, 0x32, 0xbb, 0x75, 0x58, 0x9f,
0x29, 0x45, 0x51, 0x59, 0x0e, 0xbb, 0xaf, 0xba, 0x54, 0xf6, 0x29, 0xaa, 0x8d, 0x4a, 0x9f, 0xeb,
0x40, 0x1a, 0x54, 0x84, 0x0c, 0xba, 0x05, 0xeb, 0xd2, 0xa0, 0x22, 0x1f, 0x54, 0xda, 0x9d, 0xde,
0xeb, 0x06, 0x96, 0x2b, 0x7d, 0x21, 0xbb, 0x5b, 0x87, 0x52, 0xac, 0x22, 0x83, 0xb6, 0x60, 0x83,
0x72, 0x75, 0x7b, 0x03, 0xb9, 0xd6, 0xeb, 0x76, 0x1b, 0xb5, 0x41, 0xa3, 0xce, 0x05, 0x5f, 0xe9,
0xcb, 0x43, 0x0a, 0xb8, 0x01, 0x25, 0xca, 0x11, 0x8e, 0x66, 0x76, 0x3f, 0xe0, 0x75, 0x39, 0xbf,
0xb0, 0x85, 0x8a, 0x90, 0x3b, 0xea, 0x57, 0xf6, 0xe5, 0xbe, 0xf4, 0x8a, 0xef, 0xbf, 0xd7, 0x6f,
0x74, 0x85, 0xf4, 0xee, 0xdf, 0x80, 0x30, 0xfb, 0xd6, 0xa4, 0xfb, 0x1b, 0x1c, 0x52, 0xb3, 0x11,
0xa0, 0x58, 0xad, 0x48, 0x2d, 0x59, 0xaa, 0xe1, 0x76, 0x7f, 0x20, 0xf1, 0xa0, 0x4b, 0x33, 0x42,
0x9f, 0x90, 0xd9, 0xff, 0xaf, 0x8f, 0x61, 0xa5, 0xff, 0xec, 0xa8, 0xdb, 0xff, 0x0c, 0x9d, 0xc0,
0xe3, 0x26, 0x71, 0xae, 0xf8, 0xa1, 0x04, 0x8a, 0x5f, 0x6d, 0xd4, 0xe6, 0x77, 0xde, 0xe6, 0xa7,
0x55, 0x62, 0x0a, 0xfd, 0x39, 0x0d, 0x4f, 0xf8, 0xfd, 0x7d, 0xc5, 0x5a, 0x6f, 0x83, 0xfb, 0xb6,
0x9b, 0x78, 0x0d, 0x77, 0xa2, 0x87, 0x8d, 0xff, 0x56, 0x2b, 0xe9, 0x90, 0xd7, 0xf9, 0x09, 0x98,
0x98, 0x42, 0xdf, 0xc3, 0xbd, 0x99, 0xb3, 0xc5, 0xa1, 0xaf, 0x03, 0x73, 0xdd, 0xb5, 0x7e, 0x0d,
0x3b, 0x52, 0xe4, 0x0c, 0x33, 0x3f, 0x21, 0x7b, 0x72, 0x9d, 0x9f, 0x74, 0xed, 0x24, 0x1c, 0x55,
0x4c, 0xa1, 0xdf, 0xc1, 0xed, 0x99, 0x53, 0x84, 0xf7, 0xef, 0xe5, 0xbf, 0xc9, 0xdb, 0xb9, 0x62,
0x5c, 0x4c, 0xa1, 0xdf, 0xc3, 0x36, 0xcd, 0x18, 0xc9, 0x3c, 0xf6, 0xcf, 0x93, 0xe7, 0x26, 0xa7,
0x9b, 0x0b, 0xb6, 0xfe, 0x5b, 0xd8, 0x69, 0x12, 0x87, 0x2d, 0xa0, 0xcd, 0xaf, 0x10, 0xaf, 0x9c,
0xc6, 0x0a, 0x8b, 0xd7, 0xd8, 0xf9, 0xdf, 0xc2, 0x7d, 0xef, 0x03, 0xc8, 0x4f, 0x02, 0xff, 0x2b,
0x0a, 0x3f, 0x26, 0x0e, 0xb9, 0x09, 0x7c, 0xb2, 0x34, 0x30, 0x3c, 0x60, 0x60, 0x7e, 0xbe, 0xfc,
0x63, 0x60, 0x0e, 0xe0, 0x6e, 0x47, 0xb7, 0x17, 0x8a, 0x38, 0xc9, 0x79, 0x1e, 0x2e, 0x5e, 0x84,
0xd7, 0x6c, 0x53, 0xe8, 0x10, 0xca, 0x4d, 0xe2, 0xf8, 0xfb, 0x8c, 0xbd, 0x54, 0x12, 0x21, 0x2f,
0x2b, 0x1c, 0x88, 0x29, 0xd4, 0x82, 0x5b, 0x1c, 0xeb, 0x9d, 0x91, 0x0e, 0x60, 0xa3, 0x49, 0x9c,
0x99, 0xe2, 0xc3, 0x0d, 0x70, 0x7a, 0xb0, 0x21, 0xcd, 0xe1, 0x5c, 0x36, 0xe7, 0x2a, 0xc0, 0x5f,
0xc2, 0x5a, 0x93, 0x38, 0xd1, 0x02, 0x4e, 0xd2, 0xae, 0xca, 0x31, 0x5a, 0x84, 0x9b, 0x23, 0x48,
0x71, 0x84, 0x85, 0xdc, 0x0b, 0x6c, 0xa1, 0x0e, 0xc5, 0x43, 0xd3, 0x35, 0x9c, 0xe1, 0xa1, 0xc4,
0xb2, 0xe6, 0x2b, 0x1e, 0xdb, 0x0b, 0x50, 0xfa, 0x20, 0x30, 0x6b, 0x1a, 0x4a, 0xd5, 0xf0, 0x87,
0x67, 0x31, 0xce, 0x85, 0x65, 0xa7, 0x05, 0x88, 0xbf, 0x82, 0xcd, 0x20, 0x0a, 0x44, 0x51, 0x2f,
0xb3, 0xf6, 0x2b, 0xc4, 0x3d, 0xf0, 0x63, 0xe2, 0x8f, 0x8a, 0xfa, 0x8a, 0xa2, 0x86, 0x3e, 0x7f,
0x5d, 0xd4, 0xe4, 0x53, 0x77, 0xa0, 0x1c, 0xf3, 0xf6, 0x77, 0x43, 0xeb, 0xc2, 0x56, 0xe8, 0xe7,
0x51, 0xa8, 0x1b, 0x7b, 0x78, 0x91, 0x57, 0x51, 0xbd, 0xd7, 0xcd, 0xfd, 0xe4, 0xea, 0xa6, 0xa7,
0xe7, 0x9d, 0x7b, 0x8b, 0x86, 0x6d, 0x77, 0xec, 0x30, 0xb8, 0xf5, 0x28, 0xdc, 0x4b, 0xf3, 0xf8,
0x2a, 0xc4, 0xc5, 0xe5, 0x54, 0x16, 0x29, 0xb7, 0x5a, 0xed, 0x3a, 0x35, 0x9a, 0xa0, 0xc6, 0xca,
0x2b, 0xb2, 0x8b, 0x67, 0x5d, 0xb9, 0xc5, 0x06, 0xa0, 0x56, 0xbb, 0x5e, 0x53, 0x0c, 0x95, 0x8c,
0xc3, 0x5d, 0x5e, 0x02, 0xb8, 0x48, 0x11, 0xb7, 0xf9, 0xd6, 0xbc, 0x0a, 0x74, 0xc0, 0x9f, 0xac,
0x8a, 0xfb, 0x0b, 0xf1, 0xa9, 0x3a, 0xc5, 0x14, 0xaa, 0xc2, 0x76, 0xb0, 0xad, 0xca, 0x78, 0x7c,
0x05, 0xdc, 0xa2, 0x0c, 0x61, 0x2b, 0xb6, 0x27, 0xbf, 0x2a, 0x7e, 0xd9, 0xe9, 0xde, 0x9f, 0x1d,
0x4a, 0xac, 0xa8, 0xb3, 0x0d, 0x16, 0x0e, 0xa4, 0xe0, 0x8b, 0xcb, 0x8c, 0x5a, 0x67, 0xbf, 0xc4,
0x2c, 0xd8, 0xe0, 0x2b, 0x80, 0x03, 0xc9, 0xff, 0xf8, 0x83, 0xe2, 0x9a, 0x9a, 0xf9, 0x42, 0x35,
0x23, 0xb1, 0xd9, 0x2f, 0x46, 0x4c, 0x03, 0xa5, 0x03, 0xa9, 0x49, 0x1c, 0xff, 0x3b, 0xc9, 0x0c,
0xde, 0xcc, 0x57, 0x96, 0x19, 0xbc, 0xd9, 0x8f, 0x2b, 0x62, 0x0a, 0xfd, 0x11, 0xb6, 0x0e, 0xa4,
0x9a, 0x45, 0x14, 0x87, 0xc4, 0xbe, 0xb3, 0xa1, 0x99, 0x5f, 0x0d, 0x26, 0x7c, 0xe5, 0xdb, 0x11,
0x2f, 0x63, 0x09, 0x56, 0xf8, 0x25, 0x14, 0xd8, 0x97, 0xc3, 0x0e, 0x2b, 0x7a, 0xcc, 0x68, 0x25,
0xfa, 0x79, 0x74, 0x56, 0x7c, 0x74, 0x48, 0x4c, 0x7d, 0x9a, 0x46, 0x4d, 0x28, 0x34, 0xd4, 0xd3,
0xe0, 0xcb, 0xd1, 0x65, 0xf1, 0xe3, 0x92, 0x31, 0x31, 0x85, 0xda, 0x80, 0x78, 0x40, 0x8a, 0xfd,
0xd0, 0x60, 0xf1, 0xa7, 0xe5, 0x9d, 0xed, 0xe4, 0xcf, 0xdb, 0x62, 0x0a, 0x7d, 0x03, 0xc5, 0x26,
0x71, 0xc2, 0xcf, 0xe2, 0x49, 0xf6, 0xba, 0x78, 0xf6, 0x01, 0x6c, 0x73, 0x71, 0x04, 0xc4, 0xda,
0x29, 0x2f, 0x99, 0xbc, 0x1d, 0x0e, 0x86, 0x0d, 0x16, 0x14, 0x8f, 0xf4, 0x93, 0xf0, 0x3c, 0x1f,
0xce, 0xb0, 0x2f, 0xfa, 0x35, 0xc7, 0xc2, 0x2b, 0x70, 0x2b, 0xb8, 0xb0, 0x62, 0xb8, 0x97, 0xc9,
0x7d, 0xb1, 0x0c, 0x19, 0x62, 0x39, 0x7a, 0x5f, 0x5d, 0x1b, 0x74, 0xf1, 0xb9, 0x3b, 0x14, 0x31,
0xbc, 0xab, 0xae, 0x8d, 0x98, 0x7c, 0xe2, 0x43, 0xb8, 0x13, 0xbb, 0xac, 0xde, 0x11, 0xae, 0xc7,
0x95, 0x9b, 0xb0, 0xb5, 0x1b, 0x5e, 0x57, 0x32, 0x3c, 0xe4, 0x5b, 0x5b, 0x5c, 0x09, 0xbe, 0x66,
0x55, 0x79, 0xc1, 0x8e, 0x4d, 0xf8, 0xb0, 0x49, 0x9c, 0xca, 0x78, 0x7c, 0x75, 0x31, 0x3b, 0xe9,
0x08, 0x7b, 0xf1, 0x4a, 0xdc, 0x55, 0x18, 0x62, 0x0a, 0x8d, 0xe1, 0x49, 0x24, 0xc5, 0x5e, 0xbc,
0xda, 0x65, 0xc2, 0xbf, 0xe6, 0x91, 0xc5, 0x14, 0x52, 0xbd, 0xa7, 0xc7, 0xe2, 0x75, 0x92, 0xcb,
0xe4, 0x6f, 0xe5, 0x36, 0xdf, 0x83, 0x18, 0xb8, 0xcd, 0x4f, 0x7d, 0xa0, 0xdf, 0xc0, 0xfb, 0x51,
0x87, 0xba, 0xd9, 0x72, 0xc9, 0xc7, 0x60, 0xd0, 0xa1, 0x67, 0xfd, 0x98, 0xd0, 0xbf, 0x87, 0xf7,
0x42, 0xbf, 0x78, 0x3b, 0x0b, 0xbb, 0x86, 0x93, 0x60, 0xb8, 0x1b, 0x31, 0xa9, 0xb9, 0x3f, 0x3d,
0x5c, 0x9d, 0x9e, 0xcc, 0x4e, 0x61, 0x8e, 0xe7, 0xbd, 0xb2, 0x67, 0xc7, 0x30, 0x99, 0x8e, 0x15,
0x75, 0x36, 0x1f, 0x98, 0xe5, 0xba, 0x7a, 0x81, 0xdf, 0xc1, 0x9d, 0xe4, 0x05, 0x2a, 0x9a, 0xf6,
0xce, 0xe0, 0x7f, 0xf0, 0x0b, 0x40, 0xf3, 0xbb, 0x9f, 0x98, 0x67, 0xef, 0xbe, 0xf9, 0xd8, 0xeb,
0x7b, 0x76, 0xfc, 0xc6, 0x7a, 0xec, 0xc0, 0x16, 0x43, 0x9c, 0xd3, 0xe0, 0x15, 0xdb, 0x4d, 0xb6,
0xb9, 0x63, 0x78, 0x2f, 0xea, 0x29, 0x8b, 0xf4, 0x78, 0x99, 0x31, 0x5f, 0x43, 0xce, 0x0f, 0x2f,
0x5b, 0x83, 0xaa, 0xf2, 0x9d, 0xf0, 0xfb, 0x54, 0x8f, 0xa1, 0x4b, 0xce, 0x09, 0xe6, 0xed, 0x3d,
0xf1, 0x1b, 0xc8, 0xd5, 0xab, 0x55, 0x45, 0x7d, 0xe3, 0x4e, 0x6f, 0x30, 0xfb, 0x5b, 0xc8, 0xd7,
0xab, 0x98, 0xd8, 0x74, 0x37, 0x37, 0xba, 0x6d, 0x37, 0x43, 0xb3, 0x09, 0xb2, 0xf2, 0x1b, 0xdb,
0x4b, 0xec, 0x6d, 0x18, 0xfe, 0xbc, 0xf9, 0x1d, 0xec, 0xef, 0x56, 0x88, 0xe7, 0x4b, 0xe9, 0xa6,
0x68, 0xc7, 0x2b, 0xec, 0x5f, 0xca, 0x9f, 0xff, 0x35, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xb1, 0xe7,
0xee, 0xb3, 0x3c, 0x00, 0x00,
// 4754 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x7b, 0x49, 0x73, 0x23, 0x47,
0x76, 0x3f, 0x16, 0x2e, 0xc0, 0x03, 0x40, 0x16, 0xb3, 0xb9, 0xa0, 0xd9, 0x7b, 0xa9, 0x25, 0xf5,
0x50, 0x23, 0x4a, 0xa2, 0xa8, 0x56, 0x4b, 0x23, 0xfd, 0x35, 0xd8, 0x08, 0xa0, 0x1b, 0x04, 0xa0,
0x2a, 0xa0, 0x39, 0xdb, 0x7f, 0x6a, 0x0a, 0x55, 0x49, 0xb0, 0xd4, 0x40, 0x15, 0x5c, 0x0b, 0x29,
0xfa, 0x30, 0x0e, 0x4f, 0x84, 0x23, 0x7c, 0xf0, 0xdd, 0xdf, 0xc2, 0x37, 0xdb, 0x9f, 0xc9, 0x97,
0x89, 0xb9, 0xf8, 0xe2, 0x8b, 0x1d, 0x99, 0x59, 0x3b, 0x0a, 0x24, 0x9b, 0x2d, 0xdd, 0x32, 0x5f,
0xbe, 0xfc, 0x65, 0xe6, 0xdb, 0xf2, 0xe5, 0x2b, 0x00, 0x60, 0x6c, 0xce, 0x94, 0xfd, 0x99, 0x69,
0xd8, 0x06, 0x2a, 0xf4, 0x0f, 0x2f, 0xf4, 0xfe, 0x67, 0x12, 0x21, 0xf1, 0xff, 0x98, 0x86, 0x47,
0xd5, 0x89, 0x83, 0x6d, 0xc3, 0xb0, 0xcf, 0x04, 0xfc, 0x77, 0x0e, 0xb6, 0x6c, 0x11, 0xdb, 0xb6,
0xa6, 0x8f, 0x2d, 0xd1, 0x36, 0x4c, 0x79, 0x8c, 0x11, 0x0f, 0xc5, 0x01, 0x9e, 0xce, 0x26, 0xb2,
0x8d, 0xbb, 0xf2, 0x14, 0x97, 0xd3, 0x8f, 0xd3, 0xcf, 0xf2, 0x42, 0x84, 0x86, 0xbe, 0x86, 0x9c,
0xe5, 0x4e, 0x2b, 0x67, 0x1e, 0xa7, 0x9f, 0x15, 0x0e, 0x1e, 0xee, 0x87, 0xd6, 0xd9, 0xf7, 0xd7,
0xf0, 0xc0, 0x05, 0x9f, 0x9f, 0xff, 0xa7, 0x34, 0x6c, 0xcc, 0x8d, 0xa3, 0x5f, 0x41, 0x46, 0xd1,
0xe8, 0x5a, 0x85, 0x83, 0x8f, 0x92, 0xb1, 0x6a, 0x86, 0x6e, 0x9b, 0xc6, 0x64, 0x82, 0xcd, 0xb6,
0x7e, 0x6a, 0x98, 0x53, 0xd9, 0xd6, 0x0c, 0x5d, 0xc8, 0x28, 0x1a, 0xfa, 0x1c, 0x32, 0xb2, 0xb7,
0x91, 0xf7, 0x92, 0x27, 0x57, 0xc6, 0x58, 0xf7, 0x8f, 0x2a, 0x64, 0x64, 0x8b, 0xdf, 0x83, 0xed,
0xe4, 0x51, 0xc4, 0x41, 0x76, 0xa6, 0xe9, 0xee, 0xc1, 0x49, 0x93, 0xff, 0x9f, 0x34, 0xec, 0xf8,
0xcc, 0x5d, 0x6c, 0x5f, 0x18, 0xe6, 0x1b, 0x11, 0x9b, 0xe7, 0x9a, 0x82, 0xd1, 0x21, 0x6c, 0x9b,
0x78, 0xac, 0x59, 0x36, 0x36, 0x25, 0xc3, 0x94, 0x1c, 0xdd, 0xeb, 0x51, 0x80, 0x9c, 0xb0, 0xe9,
0xf5, 0x7b, 0xe6, 0xd0, 0x1f, 0x43, 0x7b, 0xb0, 0x61, 0x61, 0xf3, 0x9c, 0xcd, 0x51, 0x0c, 0x5d,
0xc7, 0x8a, 0x4d, 0x4f, 0x90, 0x13, 0xd6, 0xd9, 0x40, 0xcf, 0xac, 0x31, 0x32, 0xfa, 0x06, 0x96,
0xec, 0xcb, 0x19, 0x2e, 0x67, 0x1f, 0xa7, 0x9f, 0xad, 0x1d, 0x3c, 0x4b, 0x3e, 0x60, 0x74, 0x57,
0x83, 0xcb, 0x19, 0x16, 0xe8, 0x2c, 0xf4, 0x10, 0x0a, 0x53, 0x59, 0x21, 0xcb, 0xe8, 0x44, 0x9d,
0x4b, 0xf4, 0x54, 0xf9, 0xa9, 0xac, 0xf4, 0x4c, 0xaa, 0xcb, 0x47, 0x50, 0x18, 0x99, 0x9a, 0x3a,
0xc6, 0x6c, 0x7c, 0x99, 0x8e, 0x03, 0x23, 0x11, 0x06, 0xfe, 0xbf, 0x96, 0xe0, 0x5e, 0x82, 0x12,
0x7c, 0x71, 0x95, 0x61, 0x75, 0x66, 0x5c, 0x60, 0x13, 0xab, 0xee, 0x89, 0xbd, 0x2e, 0x7a, 0x0c,
0x05, 0xf7, 0x68, 0xf2, 0x68, 0x82, 0xdd, 0xe3, 0x85, 0x49, 0xe8, 0x17, 0xc0, 0x9d, 0xca, 0x96,
0x2d, 0x85, 0xd9, 0xb2, 0x4c, 0x0a, 0x84, 0x5e, 0x0b, 0xb1, 0xf2, 0x50, 0x54, 0x35, 0x4b, 0x31,
0xce, 0xb1, 0x49, 0xd9, 0x96, 0x28, 0x5b, 0x84, 0x86, 0x76, 0x21, 0x37, 0x32, 0x74, 0x95, 0x8e,
0x2f, 0xd3, 0x71, 0xbf, 0x8f, 0xf6, 0xe1, 0xce, 0x44, 0xd3, 0xdf, 0x48, 0x13, 0x7c, 0x8e, 0x27,
0x92, 0x85, 0x15, 0xc7, 0xd4, 0xec, 0xcb, 0xf2, 0x0a, 0x65, 0xdb, 0x20, 0x43, 0x1d, 0x32, 0x22,
0xba, 0x03, 0xe8, 0x00, 0xb6, 0x28, 0x13, 0x96, 0x2c, 0x6d, 0x3a, 0x9b, 0x60, 0x69, 0x26, 0x6b,
0xa6, 0xa6, 0x8f, 0xcb, 0xab, 0x74, 0xc6, 0x1d, 0x36, 0x28, 0xd2, 0xb1, 0x3e, 0x1b, 0x42, 0x5b,
0xb0, 0x32, 0x32, 0x25, 0xac, 0x9a, 0xe5, 0x1c, 0x65, 0x5a, 0x1e, 0x99, 0x0d, 0xd5, 0x44, 0x0f,
0x00, 0xce, 0xb4, 0xf1, 0x99, 0x64, 0xcd, 0x30, 0x56, 0xcb, 0x79, 0x3a, 0x94, 0x27, 0x14, 0x91,
0x10, 0xc8, 0xf0, 0xc4, 0xb8, 0x90, 0xb0, 0x8e, 0xcd, 0xf1, 0x65, 0x19, 0xd8, 0xf0, 0xc4, 0xb8,
0x68, 0x50, 0x02, 0x91, 0xa2, 0xac, 0x9e, 0x63, 0xd3, 0xd6, 0x2c, 0xb2, 0x7c, 0x81, 0x49, 0x31,
0x44, 0x42, 0x1f, 0x03, 0x72, 0xb7, 0xea, 0xca, 0x51, 0x33, 0x74, 0xab, 0x5c, 0x64, 0x27, 0x63,
0x23, 0xb5, 0x60, 0x80, 0xac, 0xa7, 0xe2, 0x91, 0x33, 0x96, 0xde, 0xe0, 0x4b, 0xab, 0x5c, 0x62,
0xeb, 0x51, 0xca, 0x2b, 0x7c, 0xc9, 0xf4, 0x69, 0x6a, 0xe7, 0xb2, 0x72, 0x59, 0x5e, 0x73, 0xf5,
0xc9, 0xba, 0xe8, 0x2b, 0x28, 0x2b, 0xbe, 0xfe, 0xc9, 0x5a, 0xa7, 0xda, 0xd8, 0x31, 0xa9, 0x1f,
0x96, 0xd7, 0x29, 0xeb, 0x4e, 0x30, 0x5e, 0x0b, 0x0f, 0xa3, 0xf7, 0x61, 0xcd, 0xb2, 0x65, 0x5b,
0x53, 0x24, 0x59, 0x55, 0x4d, 0x6c, 0x59, 0x65, 0x8e, 0x4e, 0x28, 0x31, 0x6a, 0x85, 0x11, 0xf9,
0xbf, 0x2e, 0xc1, 0xc3, 0xab, 0x1d, 0x9e, 0x6c, 0xcf, 0x83, 0x20, 0xe6, 0x56, 0x14, 0xbc, 0x2e,
0xfa, 0x08, 0x36, 0x46, 0xde, 0x5c, 0xe9, 0x1c, 0x9b, 0x16, 0xd9, 0x17, 0x31, 0xba, 0x92, 0xc0,
0xf9, 0x03, 0xaf, 0x19, 0x9d, 0x98, 0xd3, 0x54, 0xd6, 0x9d, 0x53, 0x59, 0xb1, 0x1d, 0x13, 0x9b,
0xd4, 0xea, 0x4a, 0x42, 0x84, 0x86, 0x4e, 0x00, 0x59, 0xce, 0x6c, 0x66, 0x98, 0x36, 0x56, 0x25,
0x3f, 0xe0, 0x2d, 0xd1, 0x38, 0xf3, 0xec, 0xba, 0x20, 0xe5, 0x07, 0x9b, 0x0d, 0x1f, 0xc3, 0x77,
0x19, 0x11, 0x38, 0xc5, 0x31, 0x4d, 0xac, 0xdb, 0x01, 0xec, 0xf2, 0x5b, 0xc2, 0xae, 0xbb, 0x08,
0x3e, 0xe8, 0x07, 0xb0, 0xae, 0x4c, 0x64, 0xcb, 0x92, 0x8c, 0x53, 0x49, 0xc5, 0x24, 0x0a, 0x50,
0xe3, 0x2e, 0x0a, 0x25, 0x4a, 0xee, 0x9d, 0xd6, 0x29, 0x11, 0x21, 0x58, 0xa2, 0x9e, 0xbe, 0x4a,
0x3d, 0x9d, 0xb6, 0x89, 0x49, 0x58, 0x67, 0x86, 0x69, 0xb3, 0x18, 0x90, 0x63, 0x31, 0x82, 0x52,
0x68, 0x8c, 0x78, 0x02, 0x45, 0xcd, 0x92, 0xe4, 0x73, 0x59, 0x9b, 0x50, 0xdf, 0x62, 0x26, 0x5c,
0xd0, 0xac, 0x8a, 0x47, 0x42, 0xbf, 0x82, 0x5d, 0x8b, 0xc5, 0x1e, 0x49, 0x67, 0xa1, 0x48, 0x72,
0x03, 0x9c, 0x2e, 0xcf, 0x5c, 0xa3, 0xde, 0x71, 0x39, 0x42, 0xb1, 0x0a, 0x9b, 0x5d, 0x79, 0x86,
0xbe, 0x85, 0x7b, 0x0b, 0x26, 0xcf, 0x64, 0xdd, 0x71, 0x4d, 0xbe, 0x9c, 0x34, 0xbb, 0x2f, 0xeb,
0x0e, 0xfa, 0x0a, 0xee, 0x2e, 0x98, 0x3e, 0xd6, 0x5d, 0x37, 0xd8, 0x4e, 0x9a, 0xdc, 0xd4, 0xf9,
0x1f, 0x80, 0x1b, 0x98, 0xda, 0x78, 0x8c, 0xcd, 0x0a, 0xf5, 0x0e, 0x11, 0xdb, 0xa8, 0x0a, 0x6b,
0x11, 0x1a, 0x31, 0xb4, 0xec, 0xb3, 0xc2, 0xc1, 0x6e, 0x44, 0x37, 0x11, 0x16, 0x21, 0x36, 0x83,
0x08, 0x99, 0xde, 0x9e, 0x19, 0x26, 0x64, 0x1a, 0x48, 0xff, 0x03, 0xa0, 0x14, 0x61, 0x43, 0x6b,
0x90, 0xd1, 0x58, 0xd4, 0x2c, 0x09, 0x19, 0x4d, 0x25, 0xb6, 0x6d, 0xe8, 0x58, 0x3c, 0x33, 0xbc,
0xbb, 0xc0, 0xeb, 0x92, 0xc8, 0xa6, 0x59, 0x64, 0xd6, 0xb9, 0x17, 0x20, 0xfd, 0x3e, 0xba, 0x0f,
0x79, 0x6d, 0x3a, 0x75, 0xec, 0x50, 0x58, 0x0c, 0x08, 0xa8, 0x03, 0x6b, 0xee, 0xd9, 0x45, 0x5b,
0x26, 0x56, 0xe8, 0x5a, 0x1a, 0x9f, 0x74, 0x1a, 0x31, 0xc2, 0xd9, 0x4a, 0x09, 0xb1, 0xb9, 0xe8,
0x37, 0x80, 0x1c, 0x6b, 0xd4, 0x94, 0xd5, 0x31, 0xf6, 0xa2, 0x33, 0x56, 0xa9, 0x9d, 0x15, 0x0e,
0x3e, 0x48, 0x42, 0x1c, 0x8a, 0xd5, 0x18, 0x77, 0x2b, 0x25, 0x24, 0x60, 0x20, 0x19, 0xb6, 0x7c,
0x6a, 0x9d, 0x04, 0x75, 0x0f, 0x7c, 0x95, 0x82, 0xff, 0xe2, 0x4a, 0xf0, 0xf0, 0x84, 0x56, 0x4a,
0x48, 0x46, 0x42, 0x6d, 0x28, 0x5d, 0x68, 0xa7, 0x5a, 0xa5, 0xef, 0x49, 0x22, 0x47, 0xa1, 0x9f,
0x24, 0x41, 0x9f, 0x84, 0x19, 0x5b, 0x29, 0x21, 0x3a, 0x93, 0xc8, 0x81, 0x10, 0xfc, 0xed, 0x57,
0x2c, 0xd1, 0x96, 0xa9, 0x5f, 0x2c, 0x90, 0xc3, 0xc9, 0x1c, 0x37, 0x91, 0xc3, 0x3c, 0x06, 0xcd,
0xad, 0xac, 0xb3, 0x8e, 0x31, 0xd6, 0x74, 0xea, 0x36, 0x85, 0x83, 0xfb, 0x89, 0x9a, 0x12, 0x5b,
0x94, 0xa7, 0x95, 0x12, 0x7c, 0x7e, 0x24, 0x00, 0xa7, 0x9e, 0x29, 0xb3, 0x0e, 0x96, 0x2d, 0xdc,
0x34, 0x65, 0x9d, 0x9c, 0xb1, 0x40, 0x31, 0x9e, 0x26, 0x61, 0xd4, 0x5b, 0xb5, 0x7e, 0x98, 0xb7,
0x95, 0x12, 0xe6, 0xe6, 0xa3, 0x23, 0x28, 0x8e, 0x4d, 0xc3, 0x99, 0x09, 0x58, 0xc1, 0xc4, 0xfa,
0x8a, 0x14, 0xef, 0x71, 0x12, 0x5e, 0x33, 0xc4, 0xd7, 0x4a, 0x09, 0x91, 0x79, 0xe8, 0x8f, 0xb0,
0x19, 0xee, 0x8b, 0x24, 0xfb, 0xd4, 0x15, 0x4c, 0xef, 0x9f, 0x78, 0xdc, 0x4b, 0xc0, 0xf3, 0xf8,
0x5b, 0x29, 0x21, 0x11, 0x07, 0x1d, 0xc2, 0xca, 0x78, 0xa6, 0x19, 0x6d, 0x9d, 0xde, 0x5a, 0x0b,
0xbc, 0xb5, 0xd9, 0x6f, 0xf7, 0xda, 0x44, 0x66, 0x2e, 0x2f, 0xaa, 0x03, 0x8c, 0x64, 0xeb, 0x4c,
0x54, 0x4c, 0x6d, 0x66, 0xd3, 0x4b, 0x2c, 0xee, 0x19, 0x6e, 0x5c, 0x20, 0x7a, 0xaf, 0xfa, 0x9c,
0xad, 0xb4, 0x10, 0x9a, 0x87, 0x2a, 0x90, 0x3f, 0xd3, 0x54, 0x17, 0x84, 0x4b, 0x30, 0xaa, 0x10,
0x48, 0xab, 0x5d, 0xf7, 0x31, 0x82, 0x59, 0x48, 0x81, 0x6d, 0x15, 0xcf, 0x26, 0xc6, 0xa5, 0x17,
0xcf, 0xbd, 0x84, 0xbb, 0xbc, 0x91, 0x60, 0xff, 0x0c, 0xaf, 0x9e, 0x38, 0xa1, 0x95, 0x16, 0x16,
0x40, 0xa1, 0x3d, 0xc8, 0x4e, 0x8c, 0x71, 0x19, 0x51, 0xc4, 0xed, 0x04, 0xc4, 0x8e, 0x31, 0x6e,
0xa5, 0x05, 0xc2, 0x84, 0x9e, 0xc3, 0x2a, 0x91, 0x51, 0xcf, 0xb1, 0xcb, 0x77, 0x12, 0x04, 0xca,
0xf8, 0x89, 0x3c, 0x7b, 0x0e, 0x39, 0x8a, 0xc7, 0x8c, 0xbe, 0x81, 0x3c, 0xd5, 0x8f, 0x88, 0x75,
0xb5, 0xbc, 0x99, 0x60, 0xc0, 0xee, 0x4c, 0x8f, 0x87, 0x88, 0xc1, 0x9f, 0x50, 0xcd, 0xc3, 0xaa,
0xab, 0xaa, 0x6a, 0x0e, 0x56, 0x18, 0x2b, 0xbf, 0x03, 0x5b, 0x89, 0xf1, 0x89, 0xbf, 0x07, 0x77,
0x17, 0x86, 0x19, 0xfe, 0x21, 0xdc, 0xbf, 0x2a, 0x4c, 0xf0, 0xdb, 0xb0, 0x99, 0xe4, 0xeb, 0x21,
0xd0, 0x79, 0x9f, 0xe5, 0x3f, 0x81, 0xf5, 0x98, 0x03, 0x92, 0xf0, 0x3b, 0x21, 0x8d, 0xa1, 0xe5,
0xe6, 0xfc, 0x79, 0x21, 0x20, 0xf0, 0x77, 0x61, 0x67, 0x81, 0xb7, 0xf1, 0x6d, 0xb8, 0x93, 0x60,
0xe8, 0x04, 0x8f, 0xca, 0x23, 0xf4, 0xfa, 0x0a, 0x08, 0x68, 0x13, 0x96, 0xcf, 0xe5, 0x89, 0xc3,
0x6e, 0x96, 0x65, 0x81, 0x75, 0xf8, 0x7f, 0x80, 0x7b, 0x57, 0xf8, 0xcc, 0x35, 0x90, 0x7b, 0xc0,
0xb5, 0xc7, 0xba, 0x61, 0xe2, 0x9e, 0x63, 0xf7, 0x4e, 0x7b, 0xa6, 0x8a, 0x4d, 0xf7, 0xfa, 0x99,
0xa3, 0xa3, 0x6d, 0x58, 0xa1, 0x2b, 0x5a, 0xe5, 0xec, 0xe3, 0xec, 0xb3, 0x65, 0xc1, 0xed, 0xf1,
0xff, 0x99, 0xf6, 0xef, 0x36, 0xe6, 0x63, 0x68, 0x9f, 0xd9, 0x4f, 0xd7, 0x99, 0xd2, 0x15, 0xd7,
0x0e, 0x36, 0x23, 0x56, 0x40, 0xb8, 0xba, 0xce, 0x54, 0xf0, 0x98, 0xd0, 0xb7, 0x00, 0x33, 0x67,
0x32, 0x19, 0xce, 0xea, 0xc6, 0x05, 0x4b, 0xdb, 0xd6, 0x0e, 0x1e, 0xcc, 0x4d, 0x69, 0xeb, 0x7d,
0x9f, 0x49, 0x08, 0x4d, 0x40, 0x5f, 0x02, 0x30, 0x97, 0x6e, 0xa8, 0x63, 0xef, 0xa9, 0xb4, 0x93,
0x30, 0x9d, 0x0c, 0x0b, 0x21, 0x56, 0xfe, 0x4b, 0xd8, 0x4a, 0x74, 0x71, 0xf4, 0x10, 0xc0, 0xa2,
0xad, 0x90, 0xd4, 0x42, 0x14, 0xfe, 0x39, 0x6c, 0x26, 0xb9, 0xf5, 0xb5, 0xf3, 0xfe, 0x3b, 0x0d,
0xf7, 0xaf, 0xf2, 0x5f, 0x92, 0x9a, 0xda, 0x09, 0x2f, 0xf0, 0x30, 0x0d, 0xbd, 0x74, 0xdf, 0x84,
0x4c, 0x4e, 0xcf, 0x6f, 0x1c, 0x1c, 0xf6, 0xbd, 0x46, 0xf0, 0x42, 0xe4, 0x71, 0xf0, 0xe2, 0x27,
0x54, 0xb4, 0x01, 0xa5, 0xa3, 0x61, 0xa7, 0x23, 0x89, 0x8d, 0xc1, 0xa0, 0xdd, 0x6d, 0x8a, 0x5c,
0x0a, 0x15, 0x60, 0xb5, 0xdb, 0x18, 0x9c, 0xf4, 0x84, 0x57, 0x5c, 0x1a, 0xe5, 0x60, 0xe9, 0xa4,
0x7d, 0xd4, 0xe6, 0x32, 0x68, 0x15, 0xb2, 0x43, 0xb1, 0xca, 0x65, 0x51, 0x09, 0xf2, 0xd5, 0xce,
0xb0, 0x31, 0xe8, 0xf5, 0x06, 0x2d, 0x6e, 0x09, 0xdd, 0x81, 0xf5, 0x81, 0xd0, 0x6e, 0x36, 0x1b,
0x82, 0x54, 0xa9, 0x0d, 0xda, 0xbd, 0xae, 0xc8, 0x2d, 0xf3, 0x05, 0xc8, 0xfb, 0x41, 0x86, 0x9f,
0x41, 0x29, 0x12, 0x41, 0xde, 0xda, 0x5c, 0x3e, 0x09, 0xfb, 0xc1, 0xda, 0xc1, 0xdd, 0x39, 0xee,
0x9e, 0x63, 0xbf, 0x26, 0x0c, 0x9e, 0x8b, 0x34, 0x60, 0x3d, 0x16, 0x79, 0x6e, 0xe5, 0x69, 0x17,
0xb0, 0x4b, 0xc2, 0xc2, 0x3b, 0x14, 0x4f, 0xbe, 0x98, 0x2b, 0x9e, 0x44, 0x37, 0x7f, 0xa2, 0x1d,
0x69, 0x09, 0x75, 0x93, 0x7f, 0xcd, 0x42, 0x31, 0x3c, 0xe4, 0xe7, 0xf1, 0xe9, 0x50, 0x1e, 0xbf,
0x0b, 0x39, 0x55, 0xb3, 0x48, 0xde, 0xa7, 0xba, 0x2e, 0xec, 0xf7, 0x89, 0x5d, 0x9a, 0x78, 0xec,
0x4c, 0x64, 0xdb, 0x30, 0x2f, 0xa9, 0x87, 0xe4, 0x85, 0x10, 0x05, 0x7d, 0x07, 0x45, 0x92, 0x1a,
0x6b, 0xfa, 0x58, 0x9a, 0x1a, 0x2a, 0xcb, 0x24, 0xd7, 0x62, 0xb1, 0x9b, 0x6c, 0xe0, 0x84, 0x31,
0x1d, 0x1b, 0x2a, 0x16, 0x0a, 0x17, 0x41, 0x07, 0x3d, 0x87, 0xbc, 0xec, 0xd8, 0x67, 0x6c, 0xf6,
0x72, 0x82, 0x5a, 0xc8, 0xec, 0x8a, 0x63, 0x9f, 0xd1, 0xa9, 0x39, 0xd9, 0x6d, 0x91, 0xac, 0x57,
0x39, 0x93, 0x75, 0x1d, 0x4f, 0x68, 0x22, 0x59, 0x12, 0xbc, 0x2e, 0xda, 0x87, 0x15, 0x79, 0x26,
0x55, 0x45, 0xd1, 0x4d, 0x02, 0x77, 0xe6, 0xe0, 0xaa, 0xa2, 0x58, 0x3b, 0x1d, 0x0b, 0xcb, 0xf2,
0xac, 0x2a, 0x8a, 0xe8, 0x3b, 0xf2, 0x04, 0xd2, 0xc8, 0xb3, 0xaa, 0x2a, 0x8a, 0xd2, 0x44, 0xb3,
0xec, 0x72, 0x8e, 0xa6, 0xee, 0x0b, 0x27, 0x96, 0x18, 0x7f, 0x55, 0x14, 0x3b, 0x9a, 0x65, 0xa3,
0x7b, 0xf4, 0x22, 0xc7, 0x92, 0x65, 0x69, 0xde, 0x43, 0x3d, 0x47, 0x08, 0xa2, 0xa5, 0xa9, 0x24,
0xf6, 0xe9, 0xf8, 0xc7, 0xa9, 0xa1, 0xbb, 0x6f, 0x66, 0xb7, 0xc7, 0xff, 0x5b, 0x1a, 0xf2, 0x54,
0x33, 0x36, 0xf1, 0xde, 0x7d, 0x58, 0xa2, 0x02, 0x60, 0x56, 0xbc, 0x3b, 0xaf, 0x5a, 0xc2, 0x45,
0x25, 0x40, 0xf9, 0xc2, 0xa7, 0xcf, 0x44, 0x4f, 0x8f, 0x60, 0x89, 0xee, 0x83, 0xa9, 0x8a, 0xb6,
0x51, 0x0d, 0xe2, 0xef, 0x3e, 0xf7, 0x3d, 0x7a, 0x85, 0x0d, 0xc5, 0x67, 0xf0, 0x07, 0x00, 0x81,
0x08, 0xc8, 0x32, 0xa2, 0xd8, 0xae, 0x7b, 0x76, 0x44, 0xda, 0x88, 0x83, 0x6c, 0x5f, 0x7c, 0xe5,
0xbe, 0x5e, 0x48, 0x93, 0x7f, 0x02, 0x25, 0xd1, 0x36, 0x89, 0xaa, 0xb1, 0x65, 0x11, 0x53, 0xe7,
0x20, 0x3b, 0xb5, 0xc6, 0x5e, 0x95, 0x6c, 0x6a, 0x8d, 0xf9, 0x4f, 0x01, 0x45, 0x58, 0x2a, 0xa6,
0x29, 0x5f, 0x12, 0x93, 0x9c, 0x5a, 0x63, 0xda, 0xa6, 0xef, 0xa8, 0xbc, 0xe0, 0xf7, 0xf9, 0x7d,
0x28, 0x36, 0xce, 0xb1, 0x6e, 0xbb, 0xde, 0x44, 0x4c, 0x94, 0x28, 0x0d, 0xeb, 0x24, 0x0e, 0x51,
0xe8, 0xac, 0x10, 0xa2, 0xf0, 0x32, 0x00, 0xe5, 0xa7, 0x8e, 0x8d, 0x76, 0x61, 0xd5, 0xb6, 0xe8,
0x82, 0x6c, 0x17, 0xad, 0x94, 0xe0, 0x11, 0xd0, 0x36, 0x2c, 0xdb, 0x23, 0xc3, 0x60, 0x32, 0xcd,
0xb5, 0x52, 0x02, 0xeb, 0xa2, 0x32, 0xac, 0xd8, 0x9a, 0x6e, 0x3f, 0x3f, 0xa4, 0x52, 0xcd, 0x92,
0x4c, 0x90, 0xf5, 0xab, 0xcb, 0x90, 0x3d, 0x97, 0x27, 0x7c, 0x07, 0x96, 0xe9, 0x12, 0x44, 0x2c,
0x76, 0xb0, 0x0b, 0x56, 0x4b, 0xfb, 0xc4, 0xbf, 0xfd, 0x32, 0x09, 0x66, 0x15, 0x6c, 0xcd, 0xbf,
0x16, 0xff, 0x04, 0x9b, 0xc4, 0xf7, 0xeb, 0x9a, 0xd9, 0x33, 0x8f, 0xb4, 0x09, 0xf6, 0x0e, 0xca,
0x41, 0x56, 0xd5, 0xbc, 0x6c, 0x81, 0x34, 0x89, 0x71, 0xcd, 0x4c, 0x7c, 0xaa, 0xfd, 0xe8, 0x0a,
0xdd, 0xed, 0x11, 0x91, 0x18, 0xfa, 0xe4, 0xf2, 0xc8, 0x98, 0xa8, 0x6e, 0x95, 0x22, 0x27, 0x84,
0x28, 0xe4, 0xfa, 0x8a, 0xad, 0x60, 0xcd, 0x0c, 0xdd, 0xc2, 0xcc, 0xdd, 0x2d, 0x67, 0x62, 0xf7,
0x65, 0xfb, 0xcc, 0xbb, 0x86, 0x02, 0x0a, 0xff, 0x2f, 0x69, 0x58, 0x17, 0xb0, 0xac, 0x86, 0xb7,
0xf5, 0x05, 0xac, 0x9c, 0xb2, 0x85, 0xd2, 0x09, 0xf7, 0x6f, 0x45, 0x51, 0xb0, 0x65, 0x69, 0xa3,
0x09, 0x66, 0x6b, 0x0b, 0x2e, 0x33, 0x51, 0xf1, 0xa9, 0x36, 0xc1, 0x7a, 0xf0, 0xe0, 0xf5, 0xfb,
0x24, 0x8a, 0x5a, 0xe4, 0x7e, 0x64, 0xf2, 0x16, 0x58, 0x87, 0x9c, 0x7f, 0x82, 0x75, 0x6a, 0xba,
0x59, 0x81, 0x34, 0xf9, 0x3a, 0x70, 0xc1, 0x6e, 0xdc, 0x23, 0xdc, 0x87, 0xbc, 0x89, 0x65, 0xb5,
0x66, 0x38, 0xba, 0xed, 0xea, 0x21, 0x20, 0x10, 0x05, 0xa9, 0xb2, 0x2d, 0xd3, 0x15, 0x8b, 0x02,
0x6d, 0xf3, 0xff, 0x9e, 0x06, 0xee, 0xc4, 0xd4, 0x6c, 0xfc, 0x33, 0x9f, 0x6a, 0x9b, 0x04, 0xa6,
0x19, 0xc9, 0x70, 0x99, 0x46, 0xdc, 0x1e, 0xad, 0x2a, 0x39, 0x96, 0xdd, 0x35, 0xec, 0xc6, 0x8f,
0x24, 0xfa, 0xb8, 0x45, 0xca, 0x30, 0xcd, 0xdf, 0xf7, 0x72, 0x68, 0xdf, 0xef, 0xc3, 0x3a, 0xd9,
0x71, 0x5b, 0x3f, 0x35, 0xbc, 0x5d, 0x23, 0x58, 0x9a, 0x05, 0x9a, 0xa3, 0x6d, 0xfe, 0xcf, 0xc0,
0x05, 0x6c, 0xae, 0x90, 0x92, 0xae, 0x01, 0x12, 0x39, 0xb4, 0xbf, 0x67, 0xdb, 0xce, 0x0a, 0xb4,
0x4d, 0x68, 0x34, 0x2e, 0xb1, 0x42, 0x97, 0x1f, 0x7b, 0xa6, 0x86, 0x3a, 0xd0, 0xdc, 0xba, 0x70,
0x56, 0xf0, 0xba, 0x44, 0x6d, 0x9a, 0x55, 0xd7, 0x4c, 0xb7, 0x8c, 0xca, 0x3a, 0xfc, 0xef, 0x80,
0xf3, 0xf3, 0x9c, 0x90, 0xcf, 0xb2, 0xe4, 0x26, 0x6c, 0x67, 0x01, 0x05, 0x7d, 0x00, 0x6b, 0xb6,
0x36, 0xc5, 0x86, 0x63, 0x8b, 0x58, 0x31, 0x74, 0xd5, 0x72, 0xc3, 0x5c, 0x8c, 0xca, 0x3f, 0x84,
0xa2, 0x8f, 0xfd, 0xd2, 0x18, 0xc5, 0x6b, 0x23, 0xfc, 0xd3, 0xd0, 0xda, 0x2f, 0x8d, 0x11, 0x0d,
0xd7, 0x1c, 0x64, 0x35, 0x95, 0x95, 0x67, 0x4a, 0x02, 0x69, 0xf2, 0xaf, 0xa1, 0xdc, 0x6a, 0xd7,
0x05, 0x47, 0xd7, 0x35, 0x7d, 0xfc, 0xd2, 0x18, 0xd1, 0x68, 0x2b, 0x50, 0xab, 0x0f, 0x21, 0x66,
0x69, 0xb5, 0x05, 0xc1, 0xd2, 0xf9, 0xb4, 0xad, 0x7a, 0x52, 0x22, 0x6d, 0xa2, 0x58, 0xcb, 0x70,
0x4c, 0x05, 0xbb, 0x51, 0xd7, 0xed, 0xf1, 0x7f, 0x86, 0xf5, 0xd0, 0xc9, 0x29, 0xdc, 0x47, 0x90,
0xfd, 0xc1, 0x18, 0xb9, 0xdf, 0x2c, 0xa2, 0xe1, 0x37, 0xbc, 0x51, 0x81, 0x70, 0x11, 0x29, 0x69,
0xd6, 0x91, 0xa6, 0x6b, 0xd6, 0x99, 0x7f, 0x35, 0x87, 0x28, 0x81, 0xb7, 0xbe, 0xb4, 0x0c, 0x3d,
0xb8, 0x9c, 0x3d, 0x0a, 0xbf, 0x0f, 0x85, 0x4e, 0xa3, 0xee, 0xdf, 0xfd, 0x8f, 0xa0, 0x30, 0xa2,
0xd5, 0x6c, 0xc5, 0xf7, 0x8d, 0x92, 0x00, 0x94, 0x44, 0x9d, 0x83, 0xff, 0x11, 0xee, 0x0e, 0xc5,
0xea, 0x3b, 0x64, 0x29, 0x5f, 0xce, 0x65, 0x29, 0xf7, 0xa2, 0x29, 0x16, 0x7d, 0x50, 0x25, 0xe4,
0x29, 0x7f, 0x5d, 0x86, 0xb5, 0xe8, 0x20, 0x31, 0x33, 0xac, 0xb3, 0xa4, 0xc4, 0xfd, 0x42, 0xe0,
0x76, 0x89, 0x02, 0xcf, 0x35, 0xd5, 0xbb, 0x67, 0xce, 0x35, 0x95, 0x7d, 0x7c, 0xf1, 0xee, 0x3c,
0xd2, 0x9c, 0xab, 0xd4, 0xb2, 0x2f, 0x18, 0xd1, 0x4a, 0x2d, 0xad, 0x59, 0x1b, 0xaa, 0xa3, 0xd8,
0xee, 0x07, 0x0c, 0xaf, 0x4b, 0x15, 0x8a, 0x4d, 0x4d, 0x66, 0xb9, 0x05, 0x51, 0x28, 0xed, 0xa1,
0x87, 0x50, 0x70, 0x2c, 0x2c, 0xd5, 0xea, 0x35, 0xa9, 0x51, 0x3b, 0x76, 0x8b, 0xfa, 0x79, 0xc7,
0xc2, 0xb5, 0x7a, 0xad, 0x51, 0x3b, 0x26, 0x99, 0x00, 0x19, 0x17, 0xba, 0xf5, 0xb6, 0xe8, 0x56,
0xf3, 0x73, 0x8e, 0x85, 0x69, 0x1f, 0x3d, 0x03, 0x8e, 0x0c, 0xb6, 0xda, 0x75, 0xe9, 0x55, 0xe3,
0xb7, 0xd5, 0x5e, 0x45, 0xa8, 0xbb, 0xd9, 0xc2, 0x9a, 0x63, 0xe1, 0x56, 0xbb, 0xee, 0x51, 0x11,
0x0f, 0x25, 0x8f, 0xf3, 0xb8, 0x37, 0x14, 0x1b, 0x6e, 0x25, 0xb4, 0xc0, 0xd8, 0x28, 0xc9, 0xdb,
0x0a, 0xe1, 0x11, 0x2a, 0x27, 0x6e, 0xb5, 0x33, 0xcf, 0x38, 0x84, 0xca, 0x09, 0xda, 0x81, 0x55,
0x32, 0x3e, 0x3c, 0x16, 0xdd, 0x62, 0xe6, 0x8a, 0x63, 0xe1, 0xe1, 0xb1, 0x88, 0x1e, 0x00, 0x90,
0x01, 0xb1, 0x21, 0xb4, 0x2b, 0x1d, 0xaf, 0x90, 0xef, 0x58, 0x98, 0x11, 0xd0, 0x4b, 0x58, 0x33,
0x75, 0x55, 0xb3, 0x82, 0x1a, 0xf3, 0x5a, 0xc2, 0x27, 0xb2, 0xa8, 0xae, 0x1a, 0xf6, 0x19, 0x36,
0x75, 0x6c, 0x0b, 0x25, 0x3a, 0xd5, 0x57, 0xe1, 0x31, 0x70, 0x8a, 0xaa, 0x48, 0x58, 0x99, 0x06,
0x68, 0xeb, 0x37, 0x47, 0x5b, 0x53, 0x54, 0xa5, 0xa1, 0x4c, 0x7d, 0xb8, 0x0a, 0x14, 0x9d, 0x69,
0x68, 0x63, 0x5c, 0xc2, 0x47, 0xc4, 0x28, 0xd4, 0xf0, 0x58, 0x14, 0x0a, 0xce, 0x34, 0xd8, 0xd1,
0x67, 0xb0, 0xa5, 0xe2, 0x73, 0x89, 0xc4, 0x45, 0xe9, 0x4c, 0x53, 0xa5, 0x37, 0xf8, 0x72, 0x64,
0xc8, 0xa6, 0x4a, 0xab, 0x1b, 0x79, 0x01, 0xa9, 0xf8, 0x9c, 0xc4, 0x9f, 0x96, 0xa6, 0xbe, 0x72,
0x47, 0xd0, 0x47, 0x80, 0x22, 0x53, 0xa6, 0x86, 0x63, 0x61, 0x5a, 0xdd, 0xc8, 0x0b, 0xeb, 0x01,
0xff, 0x31, 0x21, 0xa3, 0x0f, 0x81, 0x8b, 0x30, 0x9b, 0xf2, 0x05, 0x2d, 0x67, 0xe4, 0x85, 0x52,
0xc0, 0x2a, 0xc8, 0x17, 0x7c, 0x1f, 0xb6, 0x93, 0x4f, 0x4d, 0xb3, 0x49, 0xc3, 0xb2, 0xe9, 0x27,
0x0f, 0xd7, 0xc9, 0x72, 0x84, 0x50, 0x51, 0x55, 0x13, 0xdd, 0x85, 0x1c, 0xc1, 0xa7, 0x63, 0xcc,
0xfe, 0x57, 0x55, 0x7c, 0x4e, 0x86, 0xf8, 0x6f, 0x61, 0x63, 0xee, 0xf0, 0x24, 0x22, 0x2b, 0xaa,
0x69, 0x4c, 0x5d, 0x17, 0x62, 0x1d, 0x12, 0xc3, 0xc8, 0xa5, 0xe4, 0xd5, 0x99, 0x49, 0x9b, 0xff,
0xe7, 0x34, 0x3c, 0xf4, 0x25, 0x7f, 0xfb, 0x08, 0x50, 0x9d, 0x8b, 0x00, 0xd1, 0xc2, 0xa6, 0xb7,
0x44, 0x5b, 0xb7, 0xb1, 0x79, 0x2a, 0x2b, 0x38, 0x21, 0x18, 0x48, 0xf0, 0x84, 0xbd, 0x43, 0xb1,
0xba, 0x90, 0x1d, 0x7d, 0x0d, 0x4b, 0x34, 0x55, 0x67, 0x55, 0xf6, 0x9b, 0x2e, 0x42, 0xe7, 0xf0,
0x7f, 0xc9, 0xc2, 0xdd, 0xc5, 0xc8, 0x49, 0x77, 0xe3, 0x77, 0xee, 0x3d, 0xc8, 0xde, 0x8d, 0x1f,
0xdd, 0x6c, 0xb5, 0xfd, 0x50, 0xc2, 0x4e, 0x42, 0xf9, 0xcc, 0xfd, 0x60, 0x75, 0xe8, 0x85, 0xea,
0x80, 0x42, 0xf2, 0x06, 0x1d, 0xdb, 0x53, 0xd9, 0x7a, 0x73, 0xe8, 0xc6, 0x2a, 0xbf, 0x1f, 0x8e,
0x84, 0xcb, 0xd1, 0x48, 0xd8, 0x03, 0xa4, 0x9e, 0x29, 0x33, 0xf6, 0x61, 0xc2, 0xcf, 0xed, 0x59,
0x61, 0xfd, 0x51, 0x64, 0x93, 0xf5, 0x56, 0xad, 0x1f, 0x65, 0x13, 0x12, 0xa6, 0xa2, 0xa7, 0x50,
0xf2, 0xd4, 0xd0, 0xd6, 0x87, 0x16, 0x76, 0x43, 0x5c, 0x94, 0xc8, 0xd7, 0x60, 0x89, 0xbe, 0xc1,
0x00, 0x56, 0x8e, 0x2b, 0xdd, 0x61, 0xa5, 0xc3, 0xa5, 0xd0, 0x3a, 0x14, 0xc8, 0x1a, 0x52, 0xad,
0xd3, 0x6e, 0x74, 0x07, 0x5c, 0xda, 0x27, 0x88, 0x0d, 0xe1, 0x75, 0x43, 0xe0, 0x32, 0xe4, 0xb9,
0x3f, 0xec, 0x1e, 0x57, 0xba, 0x95, 0x66, 0xa3, 0xce, 0x65, 0xf9, 0xff, 0xcd, 0x02, 0x9a, 0xdf,
0x55, 0x90, 0xcd, 0xf7, 0x0d, 0xd3, 0xbf, 0xa3, 0x02, 0x0a, 0x7a, 0x06, 0xeb, 0xac, 0xe7, 0x8b,
0xdb, 0x35, 0xe3, 0x38, 0x99, 0x96, 0xd8, 0xb0, 0x6c, 0xd1, 0xac, 0xce, 0x95, 0x78, 0x40, 0x40,
0x7b, 0xc0, 0xe9, 0x86, 0x4d, 0x1e, 0x96, 0x86, 0xa9, 0xd9, 0x32, 0xfd, 0x46, 0xc2, 0x12, 0xaf,
0x39, 0x3a, 0xda, 0x07, 0xa4, 0x1a, 0x5d, 0xc3, 0xae, 0x6a, 0xba, 0x1a, 0x2c, 0xcb, 0x74, 0x91,
0x30, 0x42, 0xb2, 0x17, 0x45, 0x9e, 0x4c, 0x46, 0xb2, 0xf2, 0xc6, 0x2d, 0xef, 0xb2, 0x6b, 0x24,
0x46, 0x45, 0x87, 0xb0, 0x62, 0xca, 0xfa, 0x18, 0x5b, 0xe5, 0x55, 0x6a, 0xc5, 0xf7, 0x17, 0xa8,
0x4c, 0x20, 0x4c, 0x82, 0xcb, 0x8b, 0x8e, 0x60, 0xd5, 0x98, 0xb1, 0x4f, 0x4c, 0xec, 0x9d, 0xfa,
0xcb, 0x6b, 0x34, 0xbd, 0xdf, 0x63, 0xec, 0x0d, 0xdd, 0x36, 0x2f, 0x05, 0x6f, 0x32, 0xaa, 0x41,
0x81, 0x7d, 0x47, 0x6d, 0x19, 0x96, 0x6d, 0x95, 0xf3, 0x14, 0xeb, 0xc9, 0x22, 0x2c, 0x9f, 0x53,
0x08, 0xcf, 0xda, 0xfd, 0x1a, 0x8a, 0x61, 0x74, 0x72, 0x13, 0xbf, 0xc1, 0x97, 0xae, 0xde, 0x48,
0x33, 0x5a, 0x11, 0xc9, 0xbb, 0x15, 0x91, 0xaf, 0x33, 0x2f, 0xd2, 0xbc, 0x01, 0xeb, 0xb1, 0x33,
0xd2, 0x8c, 0x86, 0x34, 0x3a, 0xc6, 0x85, 0x5f, 0x17, 0x0d, 0x51, 0xfc, 0xf1, 0xe1, 0x6c, 0x86,
0xbd, 0x08, 0x18, 0xa2, 0xf8, 0x3a, 0xa7, 0xd9, 0x69, 0x58, 0xe7, 0x84, 0xc0, 0xbf, 0x80, 0xcd,
0xa4, 0x13, 0xd1, 0x57, 0xa9, 0xac, 0xf8, 0xaf, 0x52, 0x59, 0xa1, 0x59, 0xdf, 0xcc, 0xc5, 0xcf,
0x68, 0x33, 0x7e, 0x15, 0x96, 0x1b, 0xd3, 0x99, 0x7d, 0xb9, 0xf7, 0x22, 0xf4, 0xb3, 0x86, 0xf9,
0x5f, 0x4f, 0xa0, 0x55, 0xc8, 0x76, 0x2b, 0x7d, 0x2e, 0x85, 0x72, 0xb0, 0xd4, 0xaf, 0x74, 0x87,
0x5c, 0x1a, 0xad, 0x40, 0xa6, 0xd9, 0xe5, 0x32, 0x7b, 0x1f, 0x03, 0x17, 0xaf, 0x45, 0x92, 0xb1,
0xa1, 0xcb, 0x5d, 0xef, 0x9d, 0x74, 0xb9, 0x34, 0x01, 0xe8, 0x1d, 0x1d, 0x71, 0x99, 0xbd, 0x4f,
0x00, 0x82, 0xda, 0x23, 0xf1, 0x34, 0xa1, 0x2d, 0xb6, 0xbb, 0x4d, 0x56, 0x56, 0x3b, 0xaa, 0x74,
0x3a, 0xa4, 0x43, 0xcb, 0x6a, 0xd5, 0xde, 0xa0, 0xc5, 0x65, 0xf6, 0xfe, 0x96, 0x86, 0x55, 0xb7,
0xe0, 0x85, 0xf2, 0xb0, 0xdc, 0x1d, 0x1e, 0x4b, 0x9f, 0x71, 0x29, 0xaf, 0x79, 0xc0, 0xa5, 0xbd,
0xe6, 0xe7, 0x5c, 0xc6, 0x6b, 0x1e, 0x72, 0x59, 0xaf, 0xf9, 0x05, 0xb7, 0xe4, 0x35, 0x9f, 0x73,
0xcb, 0x5e, 0xf3, 0x4b, 0x6e, 0xc5, 0x6b, 0xbe, 0xe0, 0x56, 0xbd, 0xe6, 0x57, 0x5c, 0x8e, 0xec,
0x88, 0x2e, 0xf1, 0x29, 0x97, 0xf7, 0xdb, 0x9f, 0x71, 0xe0, 0xb7, 0x0f, 0xb8, 0x82, 0xdf, 0xfe,
0x9c, 0x2b, 0xfa, 0xed, 0x43, 0xae, 0xe4, 0xb7, 0xbf, 0xe0, 0xd6, 0xfc, 0xf6, 0x73, 0x6e, 0xdd,
0x6f, 0x7f, 0xc9, 0x71, 0x7e, 0xfb, 0x05, 0xb7, 0xe1, 0xb7, 0xbf, 0xe2, 0x90, 0xd7, 0x3e, 0xf8,
0x94, 0xbb, 0xb3, 0xf7, 0x31, 0x14, 0xc3, 0x45, 0x3b, 0x22, 0xbc, 0x4e, 0xef, 0x84, 0xc9, 0xb3,
0xd5, 0x6e, 0xb6, 0xb8, 0x34, 0x61, 0x1f, 0xf4, 0x9a, 0xcd, 0x4e, 0x83, 0xcb, 0xec, 0xd5, 0x61,
0x3d, 0x56, 0x8a, 0x22, 0xb2, 0x1c, 0x76, 0x5f, 0x75, 0x89, 0xec, 0x53, 0x44, 0x1b, 0x95, 0x3e,
0xd3, 0x81, 0x38, 0xa8, 0x70, 0x19, 0x74, 0x07, 0xd6, 0xc5, 0x41, 0x45, 0x3a, 0xaa, 0xb4, 0x3b,
0xbd, 0xd7, 0x0d, 0x41, 0xaa, 0xf4, 0xb9, 0xec, 0x5e, 0x1d, 0x4a, 0x91, 0x8a, 0x0c, 0xda, 0x82,
0x0d, 0xc2, 0xd5, 0xed, 0x0d, 0xa4, 0x5a, 0xaf, 0xdb, 0x6d, 0xd4, 0x06, 0x8d, 0x3a, 0x13, 0x7c,
0xa5, 0x2f, 0x0d, 0x09, 0xe0, 0x06, 0x94, 0x08, 0x47, 0x30, 0x9a, 0xd9, 0xfb, 0x80, 0xd5, 0xe5,
0xbc, 0xc2, 0x16, 0x2a, 0x42, 0xee, 0xa4, 0x5f, 0x39, 0x90, 0xfa, 0xe2, 0x2b, 0xb6, 0xff, 0x5e,
0xbf, 0xd1, 0xe5, 0xd2, 0x7b, 0xff, 0x0f, 0xb8, 0xf8, 0x5b, 0x93, 0xec, 0x6f, 0x70, 0x4c, 0xcc,
0x86, 0x83, 0x62, 0xb5, 0x22, 0xb6, 0x24, 0xb1, 0x26, 0xb4, 0xfb, 0x03, 0x91, 0x05, 0x5d, 0x92,
0x11, 0x7a, 0x84, 0xcc, 0xc1, 0xdf, 0xf6, 0x61, 0xa5, 0x7f, 0x78, 0xd2, 0xed, 0x7f, 0x86, 0x4e,
0xe1, 0x49, 0x13, 0xdb, 0xd7, 0xfc, 0x50, 0x02, 0x45, 0xaf, 0x36, 0x62, 0xf3, 0xbb, 0x6f, 0xf3,
0xd3, 0x2a, 0x3e, 0x85, 0xfe, 0x92, 0x86, 0xa7, 0xec, 0xfe, 0xbe, 0x66, 0xad, 0xb7, 0xc1, 0x7d,
0xdb, 0x4d, 0xbc, 0x86, 0xbb, 0xe1, 0xc3, 0x46, 0x7f, 0xab, 0x95, 0x74, 0xc8, 0x9b, 0xfc, 0x04,
0x8c, 0x4f, 0xa1, 0x1f, 0xe0, 0x7e, 0xec, 0x6c, 0x51, 0xe8, 0x9b, 0xc0, 0xdc, 0x74, 0xad, 0xdf,
0xc0, 0xae, 0x18, 0x3a, 0x43, 0xec, 0x27, 0x64, 0x4f, 0x6f, 0xf2, 0x93, 0xae, 0xdd, 0x84, 0xa3,
0xf2, 0x29, 0xf4, 0x7b, 0xd8, 0x89, 0x9d, 0x22, 0xb8, 0x7f, 0xaf, 0xfe, 0x4d, 0xde, 0xee, 0x35,
0xe3, 0x7c, 0x0a, 0xfd, 0x01, 0xb6, 0x49, 0xc6, 0x88, 0xe7, 0xb1, 0x7f, 0x99, 0x3c, 0x37, 0x39,
0xdd, 0x5c, 0xb0, 0xf5, 0xdf, 0xc1, 0x6e, 0x13, 0xdb, 0x74, 0x01, 0x75, 0x7e, 0x85, 0x68, 0xe5,
0x34, 0x52, 0x58, 0xbc, 0xc1, 0xce, 0xff, 0x3f, 0x3c, 0x70, 0x3f, 0x80, 0xfc, 0x2c, 0xf0, 0xdf,
0x13, 0xf8, 0x09, 0xb6, 0xf1, 0x6d, 0xe0, 0x93, 0xa5, 0x21, 0xc0, 0x43, 0x0a, 0xe6, 0xe5, 0xcb,
0x3f, 0x05, 0xe6, 0x00, 0xee, 0x75, 0x34, 0x6b, 0xa1, 0x88, 0x93, 0x9c, 0xe7, 0xd1, 0xe2, 0x45,
0x58, 0xcd, 0x36, 0x85, 0x8e, 0xa1, 0xdc, 0xc4, 0xb6, 0xb7, 0xcf, 0xc8, 0x4b, 0x25, 0x11, 0xf2,
0xaa, 0xc2, 0x01, 0x9f, 0x42, 0x2d, 0xb8, 0xc3, 0xb0, 0xde, 0x19, 0xe9, 0x08, 0x36, 0x9a, 0xd8,
0x8e, 0x15, 0x1f, 0x6e, 0x81, 0xd3, 0x83, 0x0d, 0x71, 0x0e, 0xe7, 0xaa, 0x39, 0xd7, 0x01, 0xfe,
0x1a, 0xd6, 0x9a, 0xd8, 0x0e, 0x17, 0x70, 0x92, 0x76, 0x55, 0x8e, 0xd0, 0x42, 0xdc, 0x0c, 0x41,
0x8c, 0x22, 0x2c, 0xe4, 0x5e, 0x60, 0x0b, 0x75, 0x28, 0x1e, 0x1b, 0x8e, 0x6e, 0x0f, 0x8f, 0x45,
0x9a, 0x35, 0x5f, 0xf3, 0xd8, 0x5e, 0x80, 0xd2, 0x07, 0x8e, 0x5a, 0xd3, 0x50, 0xac, 0x06, 0x3f,
0x3c, 0x8b, 0x70, 0x2e, 0x2c, 0x3b, 0x2d, 0x40, 0xfc, 0x1e, 0x36, 0xfd, 0x28, 0x10, 0x46, 0xbd,
0xca, 0xda, 0xaf, 0x11, 0xf7, 0xc0, 0x8b, 0x89, 0x3f, 0x29, 0xea, 0x2b, 0x82, 0x1a, 0xf8, 0xfc,
0x4d, 0x51, 0x93, 0x4f, 0xdd, 0x81, 0x72, 0xc4, 0xdb, 0xdf, 0x0d, 0xad, 0x0b, 0x5b, 0x81, 0x9f,
0x87, 0xa1, 0x6e, 0xed, 0xe1, 0x45, 0x56, 0x45, 0x75, 0x5f, 0x37, 0x0f, 0x92, 0xab, 0x9b, 0xae,
0x9e, 0x77, 0xef, 0x2f, 0x1a, 0xb6, 0x9c, 0x89, 0x4d, 0xe1, 0xd6, 0xc3, 0x70, 0x2f, 0x8d, 0xd1,
0x75, 0x88, 0x8b, 0xcb, 0xa9, 0x34, 0x52, 0x6e, 0xb5, 0xda, 0x75, 0x62, 0x34, 0x7e, 0x8d, 0x95,
0x55, 0x64, 0x17, 0xcf, 0xba, 0x76, 0x8b, 0x0d, 0x40, 0xad, 0x76, 0xbd, 0x26, 0xeb, 0x0a, 0x9e,
0x04, 0xbb, 0xbc, 0x02, 0x70, 0x91, 0x22, 0x76, 0xd8, 0xd6, 0xdc, 0x0a, 0xb4, 0xcf, 0x9f, 0xac,
0x8a, 0x07, 0x0b, 0xf1, 0x89, 0x3a, 0xf9, 0x14, 0xaa, 0xc2, 0xb6, 0xbf, 0xad, 0xca, 0x64, 0x72,
0x0d, 0xdc, 0xa2, 0x0c, 0x61, 0x2b, 0xb2, 0x27, 0xaf, 0x2a, 0x7e, 0xd5, 0xe9, 0xde, 0x8f, 0x0f,
0x25, 0x56, 0xd4, 0xe9, 0x06, 0x0b, 0x47, 0xa2, 0xff, 0xc5, 0x25, 0xa6, 0xd6, 0xf8, 0x97, 0x98,
0x05, 0x1b, 0x7c, 0x05, 0x70, 0x24, 0x7a, 0x1f, 0x7f, 0x50, 0x54, 0x53, 0xb1, 0x2f, 0x54, 0x31,
0x89, 0xc5, 0xbf, 0x18, 0x51, 0x0d, 0x94, 0x8e, 0xc4, 0x26, 0xb6, 0xbd, 0xef, 0x24, 0x31, 0xbc,
0xd8, 0x57, 0x96, 0x18, 0x5e, 0xfc, 0xe3, 0x0a, 0x9f, 0x42, 0x7f, 0x82, 0xad, 0x23, 0xb1, 0x66,
0x62, 0xd9, 0xc6, 0x91, 0xef, 0x6c, 0x28, 0xf6, 0xab, 0xc1, 0x84, 0xaf, 0x7c, 0xbb, 0xfc, 0x55,
0x2c, 0xfe, 0x0a, 0xbf, 0x86, 0x02, 0xfd, 0x72, 0xd8, 0xa1, 0x45, 0x8f, 0x98, 0x56, 0xc2, 0x9f,
0x47, 0xe3, 0xe2, 0x23, 0x43, 0x7c, 0xea, 0xd3, 0x34, 0x6a, 0x42, 0xa1, 0xa1, 0x9c, 0xf9, 0x5f,
0x8e, 0xae, 0x8a, 0x1f, 0x57, 0x8c, 0xf1, 0x29, 0xd4, 0x06, 0xc4, 0x02, 0x52, 0xe4, 0x87, 0x06,
0x8b, 0x3f, 0x2d, 0xef, 0x6e, 0x27, 0x7f, 0xde, 0xe6, 0x53, 0xe8, 0x1b, 0x28, 0x36, 0xb1, 0x1d,
0x7c, 0x16, 0x4f, 0xb2, 0xd7, 0xc5, 0xb3, 0x8f, 0x60, 0x9b, 0x89, 0xc3, 0x27, 0xd6, 0xce, 0x58,
0xc9, 0xe4, 0xed, 0x70, 0x04, 0xd8, 0xa0, 0x41, 0xf1, 0x44, 0x3b, 0x0d, 0xce, 0xf3, 0x61, 0x8c,
0x7d, 0xd1, 0xaf, 0x39, 0x16, 0x5e, 0x81, 0x5b, 0xfe, 0x85, 0x15, 0xc1, 0xbd, 0x4a, 0xee, 0x8b,
0x65, 0x48, 0x11, 0xcb, 0xe1, 0xfb, 0xea, 0xc6, 0xa0, 0x8b, 0xcf, 0xdd, 0x21, 0x88, 0xc1, 0x5d,
0x75, 0x63, 0xc4, 0xe4, 0x13, 0x1f, 0xc3, 0xdd, 0xc8, 0x65, 0xf5, 0x8e, 0x70, 0x3d, 0xa6, 0xdc,
0x84, 0xad, 0xdd, 0xf2, 0xba, 0x92, 0xe0, 0x11, 0xdb, 0xda, 0xe2, 0x4a, 0xf0, 0x0d, 0xab, 0xca,
0x0b, 0x76, 0x6c, 0xc0, 0x87, 0x4d, 0x6c, 0x57, 0x26, 0x93, 0xeb, 0x8b, 0xd9, 0x49, 0x47, 0xd8,
0x8f, 0x56, 0xe2, 0xae, 0xc3, 0xe0, 0x53, 0x68, 0x02, 0x4f, 0x43, 0x29, 0xf6, 0xe2, 0xd5, 0xae,
0x12, 0xfe, 0x0d, 0x8f, 0xcc, 0xa7, 0x90, 0xe2, 0x3e, 0x3d, 0x16, 0xaf, 0x93, 0x5c, 0x26, 0x7f,
0x2b, 0xb7, 0xf9, 0x01, 0x78, 0xdf, 0x6d, 0x7e, 0xee, 0x03, 0xfd, 0x16, 0xde, 0x0f, 0x3b, 0xd4,
0xed, 0x96, 0x4b, 0x3e, 0x06, 0x85, 0x0e, 0x3c, 0xeb, 0xa7, 0x84, 0xfe, 0x03, 0xbc, 0x17, 0xf8,
0xc5, 0xdb, 0x59, 0xd8, 0x0d, 0x9c, 0x44, 0x80, 0x7b, 0x21, 0x93, 0x9a, 0xfb, 0xd3, 0xc3, 0xf5,
0xe9, 0x49, 0x7c, 0x0a, 0x75, 0x3c, 0xf7, 0x95, 0x1d, 0x1f, 0x13, 0xf0, 0x6c, 0x22, 0x2b, 0xf1,
0x7c, 0x20, 0xce, 0x75, 0xfd, 0x02, 0xbf, 0x87, 0xbb, 0xc9, 0x0b, 0x54, 0x54, 0xf5, 0x9d, 0xc1,
0xff, 0xe8, 0x15, 0x80, 0xe6, 0x77, 0x3f, 0x35, 0xce, 0xdf, 0x7d, 0xf3, 0x91, 0xd7, 0x77, 0x7c,
0xfc, 0xd6, 0x7a, 0xec, 0xc0, 0x16, 0x45, 0x9c, 0xd3, 0xe0, 0x35, 0xdb, 0x4d, 0xb6, 0xb9, 0x11,
0xbc, 0x17, 0xf6, 0x94, 0x45, 0x7a, 0xbc, 0xca, 0x98, 0x6f, 0x20, 0xe7, 0x47, 0x57, 0xad, 0x41,
0x54, 0xf9, 0x4e, 0xf8, 0x7d, 0xa2, 0xc7, 0xc0, 0x25, 0xe7, 0x04, 0xf3, 0xf6, 0x9e, 0xf8, 0x3d,
0xec, 0x9c, 0xc8, 0x9a, 0x9d, 0xf4, 0xeb, 0xec, 0x6b, 0xff, 0xf8, 0xb0, 0x00, 0xb2, 0x0d, 0x77,
0x8e, 0x34, 0x13, 0xcf, 0xfd, 0x04, 0xf5, 0xaa, 0x9f, 0xc6, 0x2f, 0x80, 0xfa, 0x06, 0x72, 0xf5,
0x6a, 0x55, 0x56, 0xde, 0x38, 0xb3, 0x5b, 0x9c, 0xed, 0x5b, 0xc8, 0xd7, 0xab, 0x02, 0xb6, 0x88,
0xac, 0x6e, 0x95, 0x0b, 0x6c, 0x06, 0x46, 0xed, 0xbf, 0x19, 0x6e, 0x6d, 0xcd, 0x91, 0x97, 0x6b,
0xf0, 0xe3, 0xeb, 0x77, 0xf0, 0x8e, 0x3b, 0x01, 0x9e, 0x27, 0xa5, 0xdb, 0xa2, 0x8d, 0x56, 0xe8,
0x7f, 0xa8, 0x3f, 0xff, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xef, 0x93, 0x7d, 0xae, 0x51, 0x3d,
0x00, 0x00,
}

View File

@ -95,6 +95,12 @@ service P4WNP1 {
rpc DeployStoredTriggerActionSetAdd(StringMessage) returns (TriggerActionSet) {} // Replaces registered TriggerActions with given set, returns a set ONLY OF ADDED TriggerActions (with assigned IDs)
rpc DeleteStoredTriggerActionSet(StringMessage) returns (Empty) {}
//TriggerAction for cli (trigger group send and wait for group receive)
rpc WaitTriggerGroupReceive(TriggerGroupReceive) returns (Empty) {}
rpc FireActionGroupSend(ActionGroupSend) returns (Empty) {}
// DB backup&restore
rpc DBBackup(StringMessage) returns(Empty) {}
rpc DBRestore(StringMessage) returns(Empty) {}

View File

@ -7,24 +7,23 @@ import (
"errors"
"fmt"
"github.com/improbable-eng/grpc-web/go/grpcweb"
"github.com/mame82/P4wnP1_go/common"
"github.com/mame82/P4wnP1_go/common_web"
pb "github.com/mame82/P4wnP1_go/proto"
"github.com/mame82/P4wnP1_go/service/bluetooth"
"github.com/mame82/mblue-toolz/toolz"
"golang.org/x/net/context"
"google.golang.org/grpc"
"io"
"io/ioutil"
"log"
"net"
"path/filepath"
"net/http"
"os"
"path"
"path/filepath"
"strings"
"time"
"github.com/mame82/P4wnP1_go/common"
"io/ioutil"
"os"
)
var (
@ -53,6 +52,69 @@ type server struct {
listenAddrWeb string
}
func (s *server) WaitTriggerGroupReceive(rpcCtx context.Context, triggerGR *pb.TriggerGroupReceive) (e *pb.Empty, err error) {
e = &pb.Empty{}
triggerVal := triggerGR.Value
triggerGroupName := triggerGR.GroupName
//register a proper event listener
evtRcv := s.rootSvc.SubSysEvent.RegisterReceiver(common_web.EVT_TRIGGER)
defer evtRcv.Cancel()
Outer:
for {
select {
case evt := <- evtRcv.EventQueue:
// avoid consuming empty messages, because channel is closed
if evt == nil {
break Outer // abort loop on "nil" event, as this indicates the EventQueue channel has been closed
}
// check if received trigger event applies to TriggerGroupReceive
if ttEvt := common_web.EvtTriggerType(evt.Values[0].GetTint64()); ttEvt == common_web.TRIGGER_EVT_TYPE_GROUP_RECEIVE {
evGroupName,evValue,err := DeconstructEventTriggerGroupReceive(evt)
if err != nil {
continue // error parsing as groupReceiveEvent --> ignore
}
//check if group matches
if evGroupName != triggerGroupName {
continue // don't handle on group mismatch, but return without error
}
// check if received value matches
if evValue != triggerVal {
continue // don't handle on value mismatch, but return without error
}
//consume remaining events (shouldn't be necessary)
//for len(evtRcv.EventQueue) > 0 { <- evtRcv.EventQueue }
// if here, we have a hit and exit the loop without error
break Outer
}
case <- evtRcv.Ctx.Done():
// evvent Receiver cancelled or unregistered
err = errors.New("EventListener for WaitTriggerGroupReceive aborted")
break Outer
case <- rpcCtx.Done():
// evvent Receiver cancelled or unregistered
err = errors.New("RPC call to WaitTriggerGroupReceive aborted")
break Outer
}
}
/*
if err != nil {
fmt.Println("Aborted")
}
*/
return
}
func (s *server) FireActionGroupSend(ctx context.Context, gs *pb.ActionGroupSend) (e *pb.Empty, err error) {
e = &pb.Empty{}
s.rootSvc.SubSysEvent.Emit(ConstructEventTriggerGroupReceive(gs.GroupName, gs.Value))
return
}
func (s *server) DeployBluetoothSettings(ctx context.Context, settings *pb.BluetoothSettings) (resultSettings *pb.BluetoothSettings, err error) {
as := settings.As
ci := settings.Ci

View File

@ -149,11 +149,11 @@ func NewService() (svc *Service, err error) {
svc.SubSysBluetooth = NewBtService(svc, time.Second * 120) //Depends on NetworkSubSys (try to bring up bluetooth for up to 120s in background)
svc.SubSysRPC = NewRpcServerService(svc) //Depends on all other
svc.SubSysTriggerActions = NewTriggerActionManager(svc) //Depends on EventManager, UsbGadgetManager (to trigger HID scripts)
svc.SubSysDwc2ConnectWatcher = NewDwc2ConnectWatcher(svc) // Depends on EventManager, should be started before USB gadget settings are deployed (to avoid missing initial state change)
svc.SubSysRPC = NewRpcServerService(svc) //Depends on all other
return
}