package rpc
import (
"context"
"github.com/livekit/psrpc"
"github.com/livekit/psrpc/pkg/client"
"github.com/livekit/psrpc/pkg/info"
"github.com/livekit/psrpc/pkg/rand"
"github.com/livekit/psrpc/pkg/server"
"github.com/livekit/psrpc/version"
)
import google_protobuf "google.golang.org/protobuf/types/known/emptypb"
import livekit4 "github.com/livekit/protocol/livekit"
import livekit5 "github.com/livekit/protocol/livekit"
var _ = version.PsrpcVersion_0_7
type IOInfoClient interface {
CreateEgress(ctx context.Context, req *livekit4.EgressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
UpdateEgress(ctx context.Context, req *livekit4.EgressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
GetEgress(ctx context.Context, req *GetEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error)
ListEgress(ctx context.Context, req *livekit4.ListEgressRequest, opts ...psrpc.RequestOption) (*livekit4.ListEgressResponse, error)
UpdateMetrics(ctx context.Context, req *UpdateMetricsRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
CreateIngress(ctx context.Context, req *livekit5.IngressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
GetIngressInfo(ctx context.Context, req *GetIngressInfoRequest, opts ...psrpc.RequestOption) (*GetIngressInfoResponse, error)
UpdateIngressState(ctx context.Context, req *UpdateIngressStateRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
GetSIPTrunkAuthentication(ctx context.Context, req *GetSIPTrunkAuthenticationRequest, opts ...psrpc.RequestOption) (*GetSIPTrunkAuthenticationResponse, error)
EvaluateSIPDispatchRules(ctx context.Context, req *EvaluateSIPDispatchRulesRequest, opts ...psrpc.RequestOption) (*EvaluateSIPDispatchRulesResponse, error)
UpdateSIPCallState(ctx context.Context, req *UpdateSIPCallStateRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
RecordCallContext(ctx context.Context, req *RecordCallContextRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
Close()
}
type IOInfoServerImpl interface {
CreateEgress(context.Context, *livekit4.EgressInfo) (*google_protobuf.Empty, error)
UpdateEgress(context.Context, *livekit4.EgressInfo) (*google_protobuf.Empty, error)
GetEgress(context.Context, *GetEgressRequest) (*livekit4.EgressInfo, error)
ListEgress(context.Context, *livekit4.ListEgressRequest) (*livekit4.ListEgressResponse, error)
UpdateMetrics(context.Context, *UpdateMetricsRequest) (*google_protobuf.Empty, error)
CreateIngress(context.Context, *livekit5.IngressInfo) (*google_protobuf.Empty, error)
GetIngressInfo(context.Context, *GetIngressInfoRequest) (*GetIngressInfoResponse, error)
UpdateIngressState(context.Context, *UpdateIngressStateRequest) (*google_protobuf.Empty, error)
GetSIPTrunkAuthentication(context.Context, *GetSIPTrunkAuthenticationRequest) (*GetSIPTrunkAuthenticationResponse, error)
EvaluateSIPDispatchRules(context.Context, *EvaluateSIPDispatchRulesRequest) (*EvaluateSIPDispatchRulesResponse, error)
UpdateSIPCallState(context.Context, *UpdateSIPCallStateRequest) (*google_protobuf.Empty, error)
RecordCallContext(context.Context, *RecordCallContextRequest) (*google_protobuf.Empty, error)
}
type IOInfoServer interface {
Shutdown()
Kill()
}
type iOInfoClient struct {
client *client.RPCClient
}
func NewIOInfoClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (IOInfoClient, error) {
sd := &info.ServiceDefinition{
Name: "IOInfo",
ID: rand.NewClientID(),
}
sd.RegisterMethod("CreateEgress", false, false, true, true)
sd.RegisterMethod("UpdateEgress", false, false, true, true)
sd.RegisterMethod("GetEgress", false, false, true, true)
sd.RegisterMethod("ListEgress", false, false, true, true)
sd.RegisterMethod("UpdateMetrics", false, false, true, true)
sd.RegisterMethod("CreateIngress", false, false, true, true)
sd.RegisterMethod("GetIngressInfo", false, false, true, true)
sd.RegisterMethod("UpdateIngressState", false, false, true, true)
sd.RegisterMethod("GetSIPTrunkAuthentication", false, false, true, true)
sd.RegisterMethod("EvaluateSIPDispatchRules", false, false, true, true)
sd.RegisterMethod("UpdateSIPCallState", false, false, true, true)
sd.RegisterMethod("RecordCallContext", false, false, true, true)
rpcClient, err := client.NewRPCClient(sd, bus, opts...)
if err != nil {
return nil, err
}
return &iOInfoClient{
client: rpcClient,
}, nil
}
func (c *iOInfoClient) CreateEgress(ctx context.Context, req *livekit4.EgressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "CreateEgress", nil, req, opts...)
}
func (c *iOInfoClient) UpdateEgress(ctx context.Context, req *livekit4.EgressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "UpdateEgress", nil, req, opts...)
}
func (c *iOInfoClient) GetEgress(ctx context.Context, req *GetEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error) {
return client.RequestSingle[*livekit4.EgressInfo](ctx, c.client, "GetEgress", nil, req, opts...)
}
func (c *iOInfoClient) ListEgress(ctx context.Context, req *livekit4.ListEgressRequest, opts ...psrpc.RequestOption) (*livekit4.ListEgressResponse, error) {
return client.RequestSingle[*livekit4.ListEgressResponse](ctx, c.client, "ListEgress", nil, req, opts...)
}
func (c *iOInfoClient) UpdateMetrics(ctx context.Context, req *UpdateMetricsRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "UpdateMetrics", nil, req, opts...)
}
func (c *iOInfoClient) CreateIngress(ctx context.Context, req *livekit5.IngressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "CreateIngress", nil, req, opts...)
}
func (c *iOInfoClient) GetIngressInfo(ctx context.Context, req *GetIngressInfoRequest, opts ...psrpc.RequestOption) (*GetIngressInfoResponse, error) {
return client.RequestSingle[*GetIngressInfoResponse](ctx, c.client, "GetIngressInfo", nil, req, opts...)
}
func (c *iOInfoClient) UpdateIngressState(ctx context.Context, req *UpdateIngressStateRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "UpdateIngressState", nil, req, opts...)
}
func (c *iOInfoClient) GetSIPTrunkAuthentication(ctx context.Context, req *GetSIPTrunkAuthenticationRequest, opts ...psrpc.RequestOption) (*GetSIPTrunkAuthenticationResponse, error) {
return client.RequestSingle[*GetSIPTrunkAuthenticationResponse](ctx, c.client, "GetSIPTrunkAuthentication", nil, req, opts...)
}
func (c *iOInfoClient) EvaluateSIPDispatchRules(ctx context.Context, req *EvaluateSIPDispatchRulesRequest, opts ...psrpc.RequestOption) (*EvaluateSIPDispatchRulesResponse, error) {
return client.RequestSingle[*EvaluateSIPDispatchRulesResponse](ctx, c.client, "EvaluateSIPDispatchRules", nil, req, opts...)
}
func (c *iOInfoClient) UpdateSIPCallState(ctx context.Context, req *UpdateSIPCallStateRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "UpdateSIPCallState", nil, req, opts...)
}
func (c *iOInfoClient) RecordCallContext(ctx context.Context, req *RecordCallContextRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "RecordCallContext", nil, req, opts...)
}
func (s *iOInfoClient) Close() {
s.client.Close()
}
type iOInfoServer struct {
svc IOInfoServerImpl
rpc *server.RPCServer
}
func NewIOInfoServer(svc IOInfoServerImpl, bus psrpc.MessageBus, opts ...psrpc.ServerOption) (IOInfoServer, error) {
sd := &info.ServiceDefinition{
Name: "IOInfo",
ID: rand.NewServerID(),
}
s := server.NewRPCServer(sd, bus, opts...)
sd.RegisterMethod("CreateEgress", false, false, true, true)
var err error
err = server.RegisterHandler(s, "CreateEgress", nil, svc.CreateEgress, nil)
if err != nil {
s.Close(false)
return nil, err
}
sd.RegisterMethod("UpdateEgress", false, false, true, true)
err = server.RegisterHandler(s, "UpdateEgress", nil, svc.UpdateEgress, nil)
if err != nil {
s.Close(false)
return nil, err
}
sd.RegisterMethod("GetEgress", false, false, true, true)
err = server.RegisterHandler(s, "GetEgress", nil, svc.GetEgress, nil)
if err != nil {
s.Close(false)
return nil, err
}
sd.RegisterMethod("ListEgress", false, false, true, true)
err = server.RegisterHandler(s, "ListEgress", nil, svc.ListEgress, nil)
if err != nil {
s.Close(false)
return nil, err
}
sd.RegisterMethod("UpdateMetrics", false, false, true, true)
err = server.RegisterHandler(s, "UpdateMetrics", nil, svc.UpdateMetrics, nil)
if err != nil {
s.Close(false)
return nil, err
}
sd.RegisterMethod("CreateIngress", false, false, true, true)
err = server.RegisterHandler(s, "CreateIngress", nil, svc.CreateIngress, nil)
if err != nil {
s.Close(false)
return nil, err
}
sd.RegisterMethod("GetIngressInfo", false, false, true, true)
err = server.RegisterHandler(s, "GetIngressInfo", nil, svc.GetIngressInfo, nil)
if err != nil {
s.Close(false)
return nil, err
}
sd.RegisterMethod("UpdateIngressState", false, false, true, true)
err = server.RegisterHandler(s, "UpdateIngressState", nil, svc.UpdateIngressState, nil)
if err != nil {
s.Close(false)
return nil, err
}
sd.RegisterMethod("GetSIPTrunkAuthentication", false, false, true, true)
err = server.RegisterHandler(s, "GetSIPTrunkAuthentication", nil, svc.GetSIPTrunkAuthentication, nil)
if err != nil {
s.Close(false)
return nil, err
}
sd.RegisterMethod("EvaluateSIPDispatchRules", false, false, true, true)
err = server.RegisterHandler(s, "EvaluateSIPDispatchRules", nil, svc.EvaluateSIPDispatchRules, nil)
if err != nil {
s.Close(false)
return nil, err
}
sd.RegisterMethod("UpdateSIPCallState", false, false, true, true)
err = server.RegisterHandler(s, "UpdateSIPCallState", nil, svc.UpdateSIPCallState, nil)
if err != nil {
s.Close(false)
return nil, err
}
sd.RegisterMethod("RecordCallContext", false, false, true, true)
err = server.RegisterHandler(s, "RecordCallContext", nil, svc.RecordCallContext, nil)
if err != nil {
s.Close(false)
return nil, err
}
return &iOInfoServer{
svc: svc,
rpc: s,
}, nil
}
func (s *iOInfoServer) Shutdown() {
s.rpc.Close(false)
}
func (s *iOInfoServer) Kill() {
s.rpc.Close(true)
}
type UnimplementedIOInfoServer struct{}
func (UnimplementedIOInfoServer) CreateEgress(context.Context, *livekit4.EgressInfo) (*google_protobuf.Empty, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIOInfoServer) UpdateEgress(context.Context, *livekit4.EgressInfo) (*google_protobuf.Empty, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIOInfoServer) GetEgress(context.Context, *GetEgressRequest) (*livekit4.EgressInfo, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIOInfoServer) ListEgress(context.Context, *livekit4.ListEgressRequest) (*livekit4.ListEgressResponse, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIOInfoServer) UpdateMetrics(context.Context, *UpdateMetricsRequest) (*google_protobuf.Empty, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIOInfoServer) CreateIngress(context.Context, *livekit5.IngressInfo) (*google_protobuf.Empty, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIOInfoServer) GetIngressInfo(context.Context, *GetIngressInfoRequest) (*GetIngressInfoResponse, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIOInfoServer) UpdateIngressState(context.Context, *UpdateIngressStateRequest) (*google_protobuf.Empty, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIOInfoServer) GetSIPTrunkAuthentication(context.Context, *GetSIPTrunkAuthenticationRequest) (*GetSIPTrunkAuthenticationResponse, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIOInfoServer) EvaluateSIPDispatchRules(context.Context, *EvaluateSIPDispatchRulesRequest) (*EvaluateSIPDispatchRulesResponse, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIOInfoServer) UpdateSIPCallState(context.Context, *UpdateSIPCallStateRequest) (*google_protobuf.Empty, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIOInfoServer) RecordCallContext(context.Context, *RecordCallContextRequest) (*google_protobuf.Empty, error) {
return nil, psrpc.ErrUnimplemented
}
var psrpcFileDescriptor4 = []byte{
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x19, 0xcb, 0x72, 0x1b, 0xc7,
0xd1, 0x20, 0x41, 0x12, 0x68, 0x80, 0x04, 0x38, 0x22, 0x99, 0x25, 0x58, 0x96, 0x20, 0x2a, 0xb2,
0x28, 0x85, 0x06, 0x63, 0xe6, 0x60, 0x47, 0xb6, 0x64, 0x93, 0xc0, 0x52, 0x82, 0x2d, 0x91, 0xd0,
0x12, 0xa8, 0x8a, 0x53, 0x49, 0x6d, 0x96, 0xbb, 0x03, 0x70, 0xcd, 0xc5, 0xce, 0x66, 0x76, 0x96,
0x12, 0xe3, 0xf2, 0x2d, 0x55, 0xc9, 0x21, 0xce, 0x21, 0x47, 0x5d, 0xf2, 0x05, 0xf9, 0x83, 0xdc,
0x72, 0xcc, 0x2f, 0xe4, 0x13, 0xf8, 0x11, 0xa9, 0x79, 0x2c, 0xb0, 0x78, 0x09, 0x84, 0x52, 0x95,
0x13, 0x66, 0xfb, 0x35, 0x3d, 0x3d, 0xdd, 0x3d, 0xdd, 0x0d, 0xc8, 0xd3, 0xc0, 0xde, 0x73, 0x49,
0x25, 0xa0, 0x84, 0x11, 0x34, 0x4f, 0x03, 0xbb, 0xb4, 0xe6, 0xb9, 0x97, 0xf8, 0xc2, 0x65, 0x26,
0xee, 0x50, 0x1c, 0x86, 0x12, 0x55, 0x5a, 0x8f, 0xa1, 0xae, 0x9f, 0x04, 0xaf, 0xc6, 0xe0, 0xd0,
0x0d, 0x14, 0x08, 0xc5, 0x20, 0x4a, 0x48, 0x57, 0xc1, 0xd6, 0x3c, 0xd2, 0xe9, 0x60, 0xba, 0x47,
0x02, 0xe6, 0x12, 0x3f, 0x66, 0xde, 0xea, 0x10, 0xd2, 0xf1, 0xf0, 0x9e, 0xf8, 0x3a, 0x8b, 0xda,
0x7b, 0xb8, 0x1b, 0xb0, 0x2b, 0x85, 0xbc, 0x3d, 0x8c, 0x74, 0x22, 0x6a, 0x71, 0x6e, 0x89, 0xdf,
0x7e, 0x02, 0xc5, 0x67, 0x98, 0xe9, 0x42, 0x19, 0x03, 0xff, 0x3e, 0xc2, 0x21, 0x43, 0x0f, 0x21,
0x2b, 0x95, 0x36, 0x5d, 0x47, 0x4b, 0x95, 0x53, 0x3b, 0xd9, 0xc3, 0xfc, 0xdb, 0xeb, 0xdd, 0x8c,
0x04, 0xd6, 0x6b, 0x46, 0xbc, 0x72, 0xb6, 0xff, 0x94, 0x82, 0xb5, 0x56, 0xe0, 0x58, 0x0c, 0xbf,
0xc4, 0x8c, 0xba, 0x76, 0x4f, 0xc6, 0x03, 0x48, 0xbb, 0x7e, 0x9b, 0x08, 0xf6, 0xdc, 0xfe, 0xad,
0x8a, 0x3a, 0x4d, 0x45, 0xee, 0x54, 0xf7, 0xdb, 0xc4, 0x10, 0x04, 0x68, 0x1b, 0x96, 0xad, 0xcb,
0x8e, 0x69, 0x07, 0x91, 0x19, 0x85, 0x56, 0x07, 0x6b, 0xf3, 0xe5, 0xd4, 0xce, 0x9c, 0x91, 0xb3,
0x2e, 0x3b, 0xd5, 0x20, 0x6a, 0x71, 0x10, 0xa7, 0xe9, 0x5a, 0x6f, 0x12, 0x34, 0x69, 0x49, 0xd3,
0xb5, 0xde, 0xc4, 0x34, 0xdb, 0x0e, 0xac, 0x3f, 0xc3, 0xac, 0xee, 0xf7, 0xe5, 0x2b, 0x4d, 0x76,
0x01, 0x94, 0xb1, 0xfb, 0xc7, 0x59, 0x7e, 0x7b, 0xbd, 0x9b, 0x55, 0xd0, 0x7a, 0xcd, 0xe8, 0x2d,
0x1d, 0xf4, 0x21, 0x40, 0xc8, 0x28, 0xb6, 0xba, 0xe6, 0x05, 0xbe, 0xd2, 0xe6, 0x38, 0xb5, 0x91,
0x95, 0x90, 0x6f, 0xf0, 0xd5, 0xf6, 0xbf, 0xe7, 0x61, 0x63, 0x78, 0x9b, 0x30, 0x20, 0x7e, 0x88,
0xd1, 0xce, 0xc0, 0x89, 0xd7, 0x7a, 0x27, 0x4e, 0xd2, 0xca, 0x23, 0xaf, 0xc1, 0x02, 0x23, 0x17,
0xd8, 0x57, 0xe2, 0xe5, 0x07, 0x5a, 0x87, 0xc5, 0xd7, 0xa1, 0x19, 0x51, 0x4f, 0x58, 0x20, 0x6b,
0x2c, 0xbc, 0x0e, 0x5b, 0xd4, 0xe3, 0xea, 0x07, 0x94, 0x7c, 0x87, 0x6d, 0xc6, 0xd5, 0x5f, 0xec,
0xab, 0xaf, 0xa0, 0x5c, 0xfd, 0x78, 0xe9, 0xa0, 0x16, 0xac, 0x70, 0x1f, 0x71, 0xfd, 0x8e, 0xd9,
0x76, 0xb1, 0xe7, 0x84, 0x5a, 0xba, 0x3c, 0xbf, 0x93, 0xdb, 0xaf, 0x54, 0x68, 0x60, 0x57, 0xc6,
0x6b, 0x5e, 0x79, 0x21, 0x39, 0x8e, 0x04, 0x83, 0xee, 0x33, 0x7a, 0x65, 0x2c, 0x7b, 0x49, 0x18,
0x32, 0x60, 0xb9, 0x8d, 0x2d, 0x16, 0x51, 0x6c, 0xb6, 0x3d, 0xab, 0x13, 0x6a, 0x0b, 0x42, 0xea,
0xc7, 0xef, 0x92, 0x7a, 0x24, 0x19, 0x8e, 0x38, 0xbd, 0x14, 0x9a, 0x6f, 0x27, 0x40, 0xa5, 0xaf,
0x00, 0x8d, 0x6e, 0x8c, 0x8a, 0x30, 0xcf, 0x0d, 0x2f, 0xae, 0xc9, 0xe0, 0x4b, 0x6e, 0xad, 0x4b,
0xcb, 0x8b, 0x70, 0x6c, 0x2d, 0xf1, 0xf1, 0x78, 0xee, 0xb3, 0x54, 0xe9, 0x4b, 0x58, 0x1d, 0xd9,
0x64, 0x16, 0x01, 0xdb, 0x97, 0xb0, 0x29, 0x9d, 0x57, 0xe9, 0x7f, 0xca, 0x2c, 0x86, 0xdf, 0xcf,
0x6f, 0x7e, 0x06, 0x0b, 0x21, 0xe7, 0x16, 0x9b, 0xe4, 0xf6, 0xd7, 0x87, 0xaf, 0x5f, 0x8a, 0x96,
0x34, 0xdb, 0x7f, 0x9c, 0x83, 0xf2, 0x33, 0xcc, 0x4e, 0xeb, 0x8d, 0x26, 0x8d, 0xfc, 0x8b, 0x83,
0x88, 0x9d, 0x63, 0x9f, 0xb9, 0xb6, 0x08, 0xcc, 0x78, 0xff, 0x3d, 0xc8, 0x85, 0x6e, 0x60, 0xda,
0x96, 0xe7, 0xf5, 0x6f, 0xbe, 0xa0, 0xa5, 0xb8, 0x0a, 0xa1, 0x1b, 0x54, 0x2d, 0xcf, 0xe3, 0x2a,
0xc4, 0x4b, 0x07, 0x6d, 0x40, 0xba, 0x4d, 0x49, 0x57, 0x1e, 0xf3, 0x70, 0x4e, 0x4b, 0x19, 0xe2,
0x1b, 0xdd, 0x81, 0x2c, 0xff, 0x35, 0xcf, 0x49, 0xc8, 0xb4, 0xa5, 0x1e, 0x32, 0xc3, 0x81, 0xcf,
0x49, 0xc8, 0x10, 0x82, 0x39, 0x46, 0xa4, 0xd7, 0x09, 0xcc, 0x1c, 0x23, 0x68, 0x0b, 0x96, 0x18,
0x91, 0x2c, 0x0b, 0x3d, 0xc4, 0x22, 0x23, 0x82, 0xe1, 0x1e, 0xe4, 0x42, 0x6a, 0x9b, 0x96, 0xe3,
0xf0, 0xa3, 0x89, 0x68, 0x94, 0x04, 0x10, 0x52, 0xfb, 0x40, 0x42, 0x51, 0x19, 0xd2, 0x5c, 0x77,
0x2d, 0x23, 0x0c, 0x92, 0x17, 0xae, 0x72, 0x5a, 0x6f, 0x70, 0x65, 0x0d, 0x81, 0xd9, 0xfe, 0x67,
0x1a, 0xee, 0xbe, 0xc3, 0x0c, 0x2a, 0xae, 0x0e, 0x21, 0x13, 0x85, 0x98, 0xfa, 0x56, 0x17, 0xab,
0x5b, 0xf8, 0xe8, 0xcf, 0xd7, 0xbb, 0xa9, 0xbf, 0x5d, 0xef, 0xde, 0xfe, 0x82, 0x62, 0xc7, 0xb2,
0x19, 0x76, 0xca, 0x3b, 0xdf, 0x7f, 0x5f, 0xae, 0x9c, 0xba, 0x7f, 0xc0, 0xe5, 0x1f, 0x7e, 0x28,
0x9f, 0x5d, 0x31, 0x1c, 0x3e, 0x7c, 0x6a, 0xf4, 0xf8, 0xb8, 0x8c, 0xc0, 0x0a, 0xc3, 0xd7, 0x84,
0x3a, 0xca, 0x3c, 0x37, 0x96, 0x11, 0xf3, 0x21, 0x04, 0x69, 0x87, 0x92, 0x40, 0xd8, 0x29, 0x63,
0x88, 0x35, 0xfa, 0x39, 0xe4, 0xf9, 0x1d, 0x31, 0xae, 0x3e, 0xbf, 0x24, 0x69, 0x89, 0x95, 0xb7,
0xd7, 0xbb, 0x10, 0xba, 0x81, 0x38, 0x55, 0xbd, 0x66, 0xf4, 0xd7, 0xce, 0x50, 0x38, 0x2f, 0x4c,
0x09, 0xe7, 0xc7, 0xb0, 0x1c, 0x50, 0x72, 0xe9, 0x3a, 0x98, 0x9a, 0x22, 0xb9, 0x2c, 0x0e, 0x79,
0x57, 0x43, 0x61, 0x45, 0xe4, 0xe5, 0x83, 0xc4, 0x17, 0xfa, 0x12, 0x00, 0x53, 0x4a, 0xa8, 0x69,
0x13, 0x07, 0x8b, 0x7b, 0x5f, 0xd9, 0x2f, 0xc7, 0xb7, 0x30, 0xc6, 0xe0, 0x3a, 0x27, 0x36, 0xb2,
0x82, 0xa7, 0x4a, 0x1c, 0x8c, 0x7e, 0x3b, 0x1c, 0xf4, 0x19, 0x11, 0xf4, 0x9f, 0xc5, 0x41, 0xff,
0xee, 0x7b, 0x9b, 0x1a, 0xff, 0xff, 0x73, 0xf4, 0xfe, 0x63, 0x01, 0xee, 0xe8, 0xfc, 0xd3, 0x62,
0xf8, 0xb4, 0xde, 0xa8, 0xb9, 0x61, 0x60, 0x31, 0xfb, 0xdc, 0x88, 0x3c, 0x1c, 0x4e, 0x08, 0xa2,
0xcc, 0xd4, 0x20, 0xaa, 0x01, 0xe2, 0x0c, 0x81, 0x45, 0x99, 0x6b, 0xbb, 0x81, 0xe5, 0xb3, 0x7e,
0xf4, 0x6f, 0x08, 0xbe, 0x62, 0xe8, 0x06, 0x8d, 0x3e, 0xba, 0x5e, 0x33, 0x86, 0x21, 0xce, 0x88,
0x5f, 0xc0, 0x54, 0xbf, 0x78, 0x08, 0x2b, 0x5c, 0x49, 0x9e, 0xb8, 0xfd, 0xa8, 0x7b, 0x86, 0x69,
0x22, 0x8c, 0x97, 0x15, 0xe6, 0x58, 0x20, 0xd0, 0x7d, 0xc8, 0xc7, 0xa4, 0x22, 0x3e, 0x73, 0x3d,
0xc2, 0x9c, 0x82, 0x8b, 0x20, 0x7d, 0x00, 0x82, 0x0f, 0x3b, 0xb1, 0xc0, 0x7e, 0x80, 0xe7, 0x25,
0x42, 0xc9, 0xbb, 0x51, 0x34, 0x17, 0x61, 0x3e, 0x70, 0x7d, 0xe9, 0xb0, 0x06, 0x5f, 0xf2, 0xf7,
0xca, 0x27, 0x26, 0x07, 0x2e, 0x8a, 0x88, 0x58, 0xf0, 0x49, 0xc3, 0xf5, 0xb9, 0x34, 0xb5, 0xed,
0x50, 0xbe, 0x01, 0x09, 0x16, 0xba, 0xfd, 0x25, 0x05, 0x45, 0xfc, 0x86, 0x51, 0xcb, 0xb4, 0x18,
0xa3, 0xee, 0x59, 0xc4, 0x70, 0xa8, 0x65, 0x85, 0x7b, 0xfd, 0x52, 0xb8, 0xd7, 0x94, 0x7b, 0xad,
0xe8, 0x9c, 0xf9, 0xa0, 0xc7, 0x2b, 0x9c, 0xe7, 0xc6, 0x31, 0x5d, 0xc0, 0x83, 0xdc, 0xbd, 0x54,
0x95, 0x9f, 0x94, 0xaa, 0x4a, 0x87, 0xb0, 0x36, 0x6e, 0xcb, 0x99, 0xfc, 0xf5, 0x3f, 0x05, 0x28,
0x4f, 0x3e, 0x97, 0xca, 0x76, 0x5b, 0x90, 0xe5, 0x05, 0x9f, 0xd9, 0x4f, 0x77, 0x46, 0x86, 0x03,
0x8e, 0x79, 0x1a, 0xfb, 0x04, 0xd6, 0x06, 0x1d, 0x93, 0x87, 0x1d, 0x8b, 0xcb, 0x94, 0x5b, 0x41,
0xd2, 0x07, 0x25, 0x0a, 0xbd, 0x82, 0x62, 0x92, 0x45, 0x88, 0x5d, 0x9a, 0x29, 0x03, 0x16, 0x12,
0xfc, 0x42, 0x8b, 0x6f, 0x07, 0xb5, 0xe8, 0x62, 0x66, 0x39, 0x16, 0xb3, 0x54, 0x70, 0xdd, 0x54,
0x6c, 0x52, 0xdb, 0x97, 0x4a, 0x04, 0xfa, 0x7b, 0x0a, 0x36, 0x92, 0xb2, 0x13, 0xde, 0x91, 0x13,
0xde, 0xf1, 0xd5, 0x14, 0xef, 0x50, 0xb9, 0x27, 0x11, 0x8d, 0xef, 0xeb, 0x24, 0xeb, 0xc1, 0x38,
0x19, 0xdc, 0xbd, 0xa9, 0xf4, 0x41, 0xe1, 0xfa, 0xe2, 0x31, 0x90, 0xee, 0xad, 0xc0, 0x3c, 0x06,
0xbe, 0x88, 0x0b, 0xbc, 0xf4, 0x4c, 0x26, 0x19, 0x29, 0x04, 0x17, 0x92, 0x85, 0x60, 0x05, 0x16,
0x29, 0x0e, 0x23, 0x8f, 0x89, 0x78, 0x5b, 0xd9, 0xdf, 0x88, 0xdd, 0xb4, 0x67, 0x02, 0x81, 0x35,
0x14, 0xd5, 0x48, 0x0e, 0xca, 0x4e, 0xcd, 0x41, 0x47, 0xb0, 0xc6, 0x39, 0x1c, 0x25, 0xcf, 0xa4,
0x91, 0x87, 0xfb, 0xd9, 0x6b, 0xfd, 0xed, 0xf5, 0xee, 0x6a, 0xe8, 0x06, 0x49, 0x8b, 0xd7, 0x6b,
0xc6, 0x08, 0x68, 0xf8, 0x8d, 0xcb, 0x4f, 0x79, 0xe3, 0x18, 0x2c, 0x9d, 0x63, 0xcb, 0xc1, 0x34,
0xd4, 0x96, 0xc5, 0x1d, 0xef, 0xdf, 0xec, 0x8e, 0x9f, 0x4b, 0xa6, 0xd9, 0x6e, 0x35, 0xde, 0x0a,
0x51, 0x58, 0x57, 0x4b, 0x93, 0x91, 0xa4, 0x9f, 0xad, 0x08, 0x1d, 0x9e, 0xce, 0xa4, 0x43, 0x93,
0x0c, 0x79, 0x99, 0x71, 0xeb, 0x7c, 0x14, 0xc3, 0xf7, 0xec, 0x6f, 0xc4, 0xb7, 0x8d, 0xcf, 0x8d,
0x66, 0xd9, 0xb3, 0x2f, 0xb0, 0x49, 0x92, 0x36, 0x30, 0x6e, 0x59, 0xa3, 0x18, 0x74, 0x08, 0x05,
0xd7, 0xb7, 0xbd, 0xc8, 0xc1, 0xbd, 0xdd, 0x6e, 0x09, 0xf7, 0xd9, 0xec, 0xd5, 0x10, 0xa7, 0xf5,
0x86, 0xa4, 0x3e, 0x91, 0x6d, 0xa5, 0xb1, 0xa2, 0x38, 0x62, 0x19, 0x4f, 0xa1, 0x88, 0x7d, 0xeb,
0x8c, 0xe7, 0x74, 0xf5, 0x82, 0x87, 0x5a, 0xa1, 0x3c, 0xbf, 0xb3, 0x92, 0xe8, 0xeb, 0x4e, 0xeb,
0x0d, 0xf5, 0x9a, 0x1b, 0x05, 0x45, 0xac, 0xbe, 0x85, 0x0e, 0xd4, 0xf5, 0x45, 0x53, 0xc2, 0xdc,
0x2e, 0x26, 0x11, 0xd3, 0x8a, 0x22, 0xd3, 0x6e, 0x56, 0x64, 0x77, 0x5a, 0x89, 0xbb, 0xd3, 0x4a,
0x4d, 0x75, 0xa7, 0xc6, 0x8a, 0xe2, 0x68, 0x4a, 0x06, 0xa4, 0xc3, 0xaa, 0x68, 0x01, 0xf9, 0x43,
0x1e, 0xb7, 0xb0, 0xda, 0xea, 0x34, 0x29, 0x05, 0xde, 0x21, 0x5a, 0x9e, 0x17, 0x03, 0xd0, 0x1d,
0xc8, 0x89, 0xf4, 0x1a, 0x50, 0x1c, 0x62, 0xa6, 0xad, 0x89, 0x00, 0x03, 0x0e, 0x6a, 0x08, 0x08,
0xfa, 0x5c, 0x11, 0xd8, 0xc4, 0x6f, 0xbb, 0x1d, 0x6d, 0x5d, 0xec, 0x50, 0xea, 0x1d, 0xd3, 0x20,
0xa4, 0x5b, 0x15, 0xa8, 0x78, 0x0b, 0xc1, 0x2c, 0x41, 0xe8, 0x08, 0x8a, 0x5d, 0xec, 0xb8, 0x96,
0x89, 0x7d, 0x9b, 0x5e, 0x09, 0x6b, 0x6a, 0x1b, 0xc2, 0xda, 0x5b, 0x49, 0x43, 0xbd, 0xe4, 0x34,
0x7a, 0x8f, 0xc4, 0x28, 0x74, 0x07, 0x01, 0xe8, 0x37, 0xc3, 0x95, 0xd7, 0x4f, 0x84, 0x83, 0x7c,
0x7a, 0x33, 0x07, 0x99, 0x56, 0x78, 0x3d, 0x87, 0xd2, 0xe4, 0xfc, 0x38, 0x53, 0x03, 0xf6, 0x18,
0xf2, 0x49, 0x0f, 0x9c, 0x89, 0xf7, 0x08, 0xb4, 0x49, 0xd1, 0x33, 0xab, 0x9c, 0x49, 0x11, 0xf1,
0xff, 0x6d, 0x26, 0x7f, 0x4c, 0xc5, 0xdd, 0xa4, 0x2a, 0x1d, 0x06, 0xba, 0xc9, 0x4f, 0x20, 0x2b,
0x8b, 0xd0, 0x71, 0x23, 0x02, 0xc5, 0x20, 0x8a, 0xf8, 0x8c, 0xad, 0x56, 0xe8, 0x09, 0x2c, 0x33,
0x6a, 0xf9, 0x61, 0x3b, 0x2e, 0xfe, 0x65, 0x6b, 0xa9, 0x25, 0xd9, 0x9a, 0x8a, 0x40, 0xd6, 0xff,
0x2c, 0xf1, 0xb5, 0xfd, 0x12, 0x34, 0x03, 0xdb, 0x84, 0x3a, 0x5c, 0x74, 0x95, 0xf8, 0x0c, 0xbf,
0x61, 0xef, 0xaf, 0xcd, 0xf6, 0xbf, 0xe6, 0x60, 0x49, 0x61, 0xd0, 0x23, 0x00, 0xef, 0xa2, 0x57,
0x54, 0x27, 0x26, 0x44, 0xde, 0x85, 0xaa, 0xa8, 0xe3, 0x95, 0xc3, 0x0b, 0x9a, 0x90, 0x44, 0xd4,
0xc6, 0xa6, 0x1b, 0x28, 0xa3, 0x65, 0x24, 0xa0, 0x1e, 0xa0, 0x87, 0xb0, 0x14, 0x97, 0x9d, 0xf3,
0x42, 0x8b, 0x42, 0x52, 0x8b, 0x16, 0x75, 0x8d, 0x18, 0x8f, 0xee, 0xa9, 0xee, 0x36, 0x3d, 0x9e,
0x2e, 0x6e, 0x75, 0x79, 0x27, 0xbb, 0x30, 0x9e, 0x84, 0xb7, 0xb5, 0x77, 0x61, 0xfe, 0xd2, 0xb5,
0xb4, 0x45, 0x11, 0x4f, 0x23, 0x14, 0x1c, 0x87, 0x3e, 0x1e, 0x6c, 0x19, 0x96, 0xfa, 0xcf, 0xd7,
0xd8, 0x86, 0x61, 0xf0, 0xb1, 0xcb, 0xbc, 0xfb, 0xb1, 0x7b, 0xf4, 0x3b, 0x58, 0x1d, 0x79, 0xb1,
0x91, 0x06, 0x6b, 0x2f, 0xf4, 0x67, 0x07, 0xd5, 0x6f, 0xcd, 0x83, 0x6a, 0x55, 0x6f, 0x34, 0xcd,
0x13, 0xc3, 0x6c, 0xd4, 0x8f, 0x8b, 0x1f, 0x20, 0x80, 0x45, 0x09, 0x2a, 0xa6, 0x50, 0x01, 0x72,
0x86, 0xfe, 0xaa, 0xa5, 0x9f, 0x36, 0x05, 0x72, 0x8e, 0x23, 0x0d, 0xfd, 0x6b, 0xbd, 0xda, 0x2c,
0xce, 0xa3, 0x0c, 0xa4, 0x6b, 0xc6, 0x49, 0xa3, 0x98, 0x7e, 0xf4, 0xd7, 0x14, 0x6c, 0xbd, 0xa3,
0xc1, 0x43, 0x1f, 0xc2, 0xe6, 0x69, 0xbd, 0x61, 0x36, 0x8d, 0xd6, 0xf1, 0x37, 0xe6, 0x41, 0xab,
0xf9, 0xdc, 0xd4, 0x0d, 0xe3, 0xc4, 0x30, 0x8f, 0x4f, 0x8e, 0xf5, 0xe2, 0x07, 0xe8, 0x01, 0xdc,
0x1b, 0x8b, 0x7e, 0xd5, 0x3a, 0x69, 0x1e, 0x98, 0xfa, 0xaf, 0xaa, 0xba, 0x5e, 0xd3, 0x6b, 0xc5,
0xd4, 0x44, 0xc2, 0xe3, 0x13, 0x05, 0x3b, 0x3a, 0x69, 0x1d, 0xd7, 0x8a, 0x73, 0xfb, 0x3f, 0x2e,
0xc1, 0x62, 0xfd, 0x44, 0x78, 0xf4, 0xe7, 0x90, 0xaf, 0x52, 0x6c, 0x31, 0x2c, 0xa7, 0x80, 0x68,
0xdc, 0x58, 0xb0, 0xb4, 0x31, 0x92, 0xce, 0xf5, 0x6e, 0xc0, 0xae, 0x38, 0xb3, 0x0c, 0xaf, 0xf7,
0x61, 0xfe, 0x14, 0xb2, 0xbd, 0x31, 0x27, 0x5a, 0x8f, 0x3b, 0xd8, 0x81, 0xb1, 0x67, 0x69, 0x9c,
0x40, 0xa4, 0x03, 0xbc, 0x70, 0xc3, 0x98, 0xb3, 0xff, 0x10, 0xf4, 0x81, 0x31, 0xfb, 0xd6, 0x58,
0x5c, 0x6f, 0x88, 0xb1, 0x3c, 0x30, 0x26, 0x45, 0x9b, 0x42, 0x87, 0x71, 0xa3, 0xd3, 0x89, 0x67,
0x78, 0x02, 0xcb, 0xd2, 0x7a, 0x6a, 0xa4, 0x84, 0xc6, 0xce, 0x18, 0x27, 0xb2, 0xd7, 0x61, 0x65,
0x70, 0x52, 0x87, 0x4a, 0x63, 0xc7, 0x77, 0xf1, 0x69, 0x26, 0x8f, 0xf6, 0xd0, 0x0b, 0x40, 0xa3,
0x73, 0x33, 0x74, 0x3b, 0x71, 0xa4, 0x31, 0x03, 0xb5, 0x89, 0x8a, 0x7d, 0x07, 0x9b, 0x13, 0xa7,
0x09, 0xe8, 0xfe, 0xb4, 0x69, 0x83, 0x94, 0xfd, 0xd1, 0xcd, 0x86, 0x12, 0xa8, 0x03, 0xda, 0xa4,
0xf7, 0x13, 0xfd, 0xf4, 0x26, 0x9d, 0x67, 0xe9, 0xfe, 0x8d, 0x1e, 0xe1, 0xbe, 0x89, 0x92, 0x8f,
0xc1, 0x80, 0x89, 0xc6, 0xbc, 0x12, 0x13, 0x4d, 0xf4, 0x35, 0xac, 0x8e, 0xe4, 0x72, 0xf4, 0xa1,
0x10, 0x36, 0x29, 0xc7, 0x4f, 0x92, 0x75, 0x78, 0xf7, 0xd7, 0x77, 0x3a, 0x2e, 0x3b, 0x8f, 0xce,
0x2a, 0x36, 0xe9, 0xee, 0x29, 0x0f, 0x92, 0xff, 0x0f, 0xd8, 0xc4, 0xdb, 0xa3, 0x81, 0x7d, 0xb6,
0x28, 0xbe, 0x7e, 0xf1, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x57, 0x0e, 0xc6, 0xd7, 0x18,
0x00, 0x00,
}