Files
protocol/rpc/io.psrpc.go
Nishad c84cf2c280 Adding a trunk info field that will give us more details (#1250)
* Adding TrunkInfo to SipCallInfo as well as GetSIPTrunkAuthenticationResponse

* generated protobuf

* Directly using provider info instead of deprecated SipTrunkInfo

* generated protobuf

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2025-10-12 15:01:53 +05:30

482 lines
24 KiB
Go

// Code generated by protoc-gen-psrpc v0.7.0, DO NOT EDIT.
// source: rpc/io.proto
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
// =======================
// IOInfo Client Interface
// =======================
type IOInfoClient interface {
// egress
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)
// ingress
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)
// sip
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 immediately, without waiting for pending RPCs
Close()
}
// ===========================
// IOInfo ServerImpl Interface
// ===========================
type IOInfoServerImpl interface {
// egress
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)
// ingress
CreateIngress(context.Context, *livekit5.IngressInfo) (*google_protobuf.Empty, error)
GetIngressInfo(context.Context, *GetIngressInfoRequest) (*GetIngressInfoResponse, error)
UpdateIngressState(context.Context, *UpdateIngressStateRequest) (*google_protobuf.Empty, error)
// sip
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)
}
// =======================
// IOInfo Server Interface
// =======================
type IOInfoServer interface {
// Close and wait for pending RPCs to complete
Shutdown()
// Close immediately, without waiting for pending RPCs
Kill()
}
// =============
// IOInfo Client
// =============
type iOInfoClient struct {
client *client.RPCClient
}
// NewIOInfoClient creates a psrpc client that implements the IOInfoClient interface.
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()
}
// =============
// IOInfo Server
// =============
type iOInfoServer struct {
svc IOInfoServerImpl
rpc *server.RPCServer
}
// NewIOInfoServer builds a RPCServer that will route requests
// to the corresponding method in the provided svc implementation.
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)
}
// ===========================
// IOInfo Unimplemented Server
// ===========================
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{
// 1803 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x18, 0xcb, 0x56, 0x1b, 0xc9,
0x35, 0x42, 0x0f, 0xd0, 0x95, 0x84, 0x44, 0x21, 0x38, 0x8d, 0xc8, 0xd8, 0x58, 0x13, 0x67, 0x70,
0x72, 0x22, 0x32, 0x64, 0x91, 0xc4, 0x73, 0x66, 0x32, 0x20, 0x0b, 0x5b, 0x13, 0x6c, 0x2b, 0x0d,
0x2c, 0x92, 0x4d, 0xa7, 0xe8, 0x2e, 0x89, 0x1a, 0x5a, 0x5d, 0x9d, 0xaa, 0x6a, 0x6c, 0xbe, 0x20,
0xab, 0xf9, 0x84, 0xfc, 0x4a, 0x7e, 0x22, 0xbf, 0x91, 0x7d, 0xb2, 0x9c, 0x53, 0x8f, 0x96, 0x5a,
0x48, 0x32, 0x30, 0x2b, 0xa9, 0xee, 0xfb, 0x5d, 0xb7, 0x1a, 0xaa, 0x3c, 0xf6, 0x0f, 0x28, 0xeb,
0xc4, 0x9c, 0x49, 0x86, 0xf2, 0x3c, 0xf6, 0x5b, 0xcd, 0x90, 0xde, 0x90, 0x6b, 0x2a, 0x3d, 0x32,
0xe2, 0x44, 0x08, 0x83, 0x6a, 0x6d, 0xa5, 0x50, 0x1a, 0x65, 0xc1, 0x1b, 0x29, 0x58, 0xd0, 0xd8,
0x82, 0x50, 0x0a, 0xe2, 0x8c, 0x8d, 0x2d, 0x6c, 0x77, 0xc4, 0xd8, 0x28, 0x24, 0x07, 0xfa, 0x74,
0x99, 0x0c, 0x0f, 0xc8, 0x38, 0x96, 0xb7, 0x16, 0xf9, 0xe4, 0x2e, 0x32, 0x48, 0x38, 0x96, 0x94,
0x45, 0x06, 0xdf, 0x3e, 0x80, 0xc6, 0x6b, 0x22, 0x7b, 0x5a, 0xad, 0x4b, 0xfe, 0x91, 0x10, 0x21,
0xd1, 0x2e, 0x94, 0x8d, 0x79, 0x1e, 0x0d, 0x9c, 0xdc, 0x5e, 0x6e, 0xbf, 0xec, 0xae, 0x19, 0x40,
0x3f, 0x68, 0xff, 0x33, 0x07, 0xcd, 0x8b, 0x38, 0xc0, 0x92, 0xbc, 0x25, 0x92, 0x53, 0x7f, 0xc2,
0xf5, 0x05, 0x14, 0x68, 0x34, 0x64, 0x9a, 0xa1, 0x72, 0xb8, 0xd9, 0xb1, 0x96, 0x76, 0x8c, 0xec,
0x7e, 0x34, 0x64, 0xae, 0x26, 0x40, 0x6d, 0xa8, 0xe1, 0x9b, 0x91, 0xe7, 0xc7, 0x89, 0x97, 0x08,
0x3c, 0x22, 0x4e, 0x7e, 0x2f, 0xb7, 0xbf, 0xe2, 0x56, 0xf0, 0xcd, 0xa8, 0x1b, 0x27, 0x17, 0x0a,
0xa4, 0x68, 0xc6, 0xf8, 0x63, 0x86, 0xa6, 0x60, 0x68, 0xc6, 0xf8, 0x63, 0x4a, 0xd3, 0xbe, 0x80,
0xad, 0xd7, 0x44, 0xf6, 0xa3, 0xa9, 0x7c, 0x6b, 0xc9, 0x67, 0x00, 0x36, 0x90, 0x53, 0x07, 0xca,
0x16, 0xd2, 0x0f, 0x14, 0x5a, 0x48, 0x4e, 0xf0, 0xd8, 0xbb, 0x26, 0xb7, 0xce, 0x8a, 0x41, 0x1b,
0xc8, 0x9f, 0xc9, 0x6d, 0xfb, 0x5f, 0x79, 0xd8, 0xbe, 0x2b, 0x57, 0xc4, 0x2c, 0x12, 0x04, 0xed,
0xcf, 0xb8, 0xd8, 0x9c, 0xb8, 0x98, 0xa5, 0x35, 0x3e, 0x36, 0xa1, 0x28, 0xd9, 0x35, 0x89, 0xac,
0x78, 0x73, 0x40, 0x5b, 0x50, 0xfa, 0x20, 0xbc, 0x84, 0x87, 0xda, 0xe5, 0xb2, 0x5b, 0xfc, 0x20,
0x2e, 0x78, 0x88, 0x2e, 0x60, 0x3d, 0x64, 0xa3, 0x11, 0x8d, 0x46, 0xde, 0x90, 0x92, 0x30, 0x10,
0x4e, 0x61, 0x2f, 0xbf, 0x5f, 0x39, 0xec, 0x74, 0x78, 0xec, 0x77, 0x16, 0xdb, 0xd2, 0x39, 0x35,
0x1c, 0x27, 0x9a, 0xa1, 0x17, 0x49, 0x7e, 0xeb, 0xd6, 0xc2, 0x2c, 0x0c, 0xb9, 0x50, 0x1b, 0x12,
0x2c, 0x13, 0x4e, 0xbc, 0x61, 0x88, 0x47, 0xc2, 0x29, 0x6a, 0xa9, 0xbf, 0xf9, 0x94, 0xd4, 0x13,
0xc3, 0x70, 0xa2, 0xe8, 0x8d, 0xd0, 0xea, 0x30, 0x03, 0x6a, 0x7d, 0x0b, 0x68, 0x5e, 0x31, 0x6a,
0x40, 0x5e, 0x85, 0xd2, 0x44, 0x5a, 0xfd, 0x55, 0xfe, 0xdf, 0xe0, 0x30, 0x21, 0xa9, 0xff, 0xfa,
0xf0, 0x72, 0xe5, 0x0f, 0xb9, 0xd6, 0x9f, 0x60, 0x63, 0x4e, 0xc9, 0x63, 0x04, 0xb4, 0x47, 0xb0,
0x63, 0xea, 0xcf, 0xda, 0x7f, 0x26, 0xb1, 0x24, 0x0f, 0x4c, 0xfd, 0xaf, 0xa1, 0x28, 0x14, 0xb9,
0x96, 0x5a, 0x39, 0xdc, 0xba, 0x9b, 0x41, 0x23, 0xcb, 0xd0, 0xb4, 0xff, 0x97, 0x83, 0xbd, 0xd7,
0x44, 0x9e, 0xf5, 0x07, 0xe7, 0x3c, 0x89, 0xae, 0x8f, 0x12, 0x79, 0x45, 0x22, 0x49, 0x7d, 0xdd,
0x3e, 0xa9, 0xc2, 0x36, 0x54, 0x04, 0x8d, 0x3d, 0x1f, 0x87, 0xa1, 0xd2, 0x58, 0x52, 0x1a, 0x8f,
0x57, 0x9c, 0x9c, 0x5b, 0x16, 0x34, 0xee, 0xe2, 0x30, 0xec, 0x07, 0x68, 0x1b, 0x0a, 0x43, 0xce,
0xc6, 0xc6, 0x15, 0x8d, 0xd4, 0x67, 0xf4, 0x14, 0xca, 0xea, 0xd7, 0xbb, 0x62, 0x42, 0x3a, 0xab,
0x13, 0xe4, 0x9a, 0x02, 0xbe, 0x61, 0x42, 0x22, 0x04, 0x2b, 0x92, 0x99, 0x5a, 0xd1, 0x98, 0x15,
0xc9, 0xd0, 0x2e, 0xac, 0x4a, 0x66, 0x58, 0x8a, 0x13, 0x44, 0x49, 0x32, 0xcd, 0xf0, 0x39, 0x54,
0x04, 0xf7, 0x3d, 0x1c, 0x04, 0xca, 0x1b, 0xdd, 0x34, 0x86, 0x00, 0x04, 0xf7, 0x8f, 0x0c, 0x14,
0xed, 0x41, 0x41, 0x99, 0xeb, 0xac, 0xe9, 0x18, 0x54, 0x75, 0x39, 0x9c, 0xf5, 0x07, 0xca, 0x58,
0x57, 0x63, 0xda, 0xff, 0xcd, 0xc1, 0xb3, 0x4f, 0x78, 0x6e, 0xbb, 0xa1, 0x05, 0x6b, 0x89, 0x20,
0x3c, 0xc2, 0x63, 0x92, 0x4e, 0x89, 0xf4, 0xac, 0x70, 0x31, 0x16, 0xe2, 0x03, 0xe3, 0x81, 0xcd,
0xe0, 0xe4, 0x8c, 0x10, 0x14, 0x02, 0xce, 0x62, 0xed, 0xd7, 0x9a, 0xab, 0xff, 0xa3, 0x3d, 0xa8,
0xaa, 0x30, 0x4a, 0xa5, 0x4e, 0xc5, 0x51, 0x5b, 0xee, 0x82, 0xa0, 0xb1, 0xb6, 0xc0, 0x74, 0x6d,
0xcc, 0xd9, 0xf7, 0xc4, 0x97, 0x0a, 0x5f, 0x34, 0x99, 0xb5, 0x90, 0x7e, 0x80, 0x5e, 0x42, 0x2d,
0xe6, 0xec, 0x86, 0x06, 0x84, 0x7b, 0xba, 0x47, 0x4b, 0x77, 0x32, 0x3c, 0xb0, 0x58, 0x5d, 0xee,
0xd5, 0x38, 0x73, 0x6a, 0xff, 0xa7, 0x00, 0x4f, 0x7b, 0xaa, 0xc0, 0xb0, 0x24, 0x67, 0xfd, 0xc1,
0x2b, 0x2a, 0x62, 0x2c, 0xfd, 0x2b, 0x37, 0x09, 0x89, 0x58, 0x92, 0xe7, 0xb5, 0x45, 0x79, 0xfe,
0x2d, 0x20, 0x45, 0x13, 0x63, 0x2e, 0xa9, 0x4f, 0x63, 0x1c, 0xc9, 0x49, 0x11, 0x6a, 0xd2, 0x86,
0xa0, 0xf1, 0x60, 0x8a, 0xec, 0x07, 0x73, 0x6e, 0xc3, 0x9c, 0xdb, 0x2f, 0x60, 0x5d, 0xe9, 0x54,
0xb3, 0x21, 0x4a, 0xc6, 0x97, 0x84, 0x67, 0xaa, 0xa8, 0x66, 0x31, 0xef, 0x34, 0x02, 0x3d, 0x87,
0x6a, 0x4a, 0xaa, 0xcb, 0xa3, 0x32, 0x21, 0xac, 0x58, 0xb8, 0xae, 0x91, 0x2f, 0x40, 0xf3, 0x91,
0x20, 0x15, 0x38, 0xad, 0xaf, 0xaa, 0x41, 0x58, 0x79, 0x0f, 0x2a, 0xa6, 0x06, 0xe4, 0x63, 0x1a,
0xd9, 0x7c, 0xa8, 0xbf, 0x6a, 0xc8, 0x45, 0xcc, 0x53, 0xc0, 0x92, 0x4e, 0x70, 0x31, 0x62, 0x03,
0x1a, 0x29, 0x69, 0x56, 0xed, 0x9d, 0x72, 0x07, 0x03, 0xd6, 0xb6, 0x05, 0xd0, 0x20, 0x1f, 0x25,
0xc7, 0x1e, 0x96, 0x92, 0xd3, 0xcb, 0x44, 0x12, 0xe1, 0x94, 0xf5, 0xd4, 0xfa, 0xa3, 0x2e, 0xd3,
0x7b, 0xb2, 0xd4, 0xe9, 0x29, 0xe6, 0xa3, 0x09, 0xaf, 0x99, 0x60, 0x75, 0x32, 0x0b, 0x9d, 0x34,
0x40, 0x75, 0x59, 0x03, 0xb4, 0x8e, 0xa1, 0xb9, 0x48, 0xd4, 0xa3, 0xe6, 0xd4, 0xbf, 0xab, 0xb0,
0xb7, 0xdc, 0x5e, 0xdb, 0x43, 0xbb, 0x50, 0x56, 0x37, 0xb9, 0x97, 0x6d, 0x22, 0x05, 0x78, 0xa7,
0x9a, 0xe8, 0x4b, 0x68, 0xce, 0xd6, 0x92, 0x6a, 0x42, 0x99, 0x5e, 0x59, 0x9b, 0x71, 0xb6, 0x94,
0x0c, 0x0a, 0xbd, 0x80, 0x46, 0x96, 0x45, 0x8b, 0xd5, 0xa1, 0x76, 0xeb, 0x19, 0xf8, 0x22, 0xe9,
0x63, 0x22, 0x71, 0x80, 0x25, 0x36, 0xa5, 0x3d, 0x23, 0xfd, 0xad, 0x45, 0xa1, 0x0f, 0xb0, 0x9d,
0x65, 0xc9, 0x24, 0xa9, 0xa2, 0x93, 0xf4, 0xed, 0x3d, 0x49, 0xb2, 0x97, 0x4c, 0xa6, 0x07, 0xee,
0xe6, 0x6a, 0x2b, 0x5e, 0x84, 0x53, 0xc5, 0xc3, 0x4d, 0x8a, 0x75, 0x61, 0xe9, 0xc9, 0x61, 0x8a,
0xc7, 0x82, 0x55, 0x85, 0x4d, 0xee, 0xdc, 0xc2, 0xe2, 0x3b, 0xb7, 0x98, 0xbd, 0x73, 0x3b, 0x50,
0xe2, 0x44, 0x24, 0xa1, 0xd4, 0x55, 0xba, 0x7e, 0xb8, 0x9d, 0x56, 0xc1, 0xc4, 0x64, 0x8d, 0x75,
0x2d, 0xd5, 0x5c, 0xa7, 0x96, 0xe7, 0x3a, 0xf5, 0x00, 0x9a, 0x8a, 0x22, 0xb0, 0xfc, 0x1e, 0x4f,
0x42, 0x32, 0xed, 0xe9, 0x0d, 0x41, 0xe3, 0x6c, 0x34, 0xe6, 0x26, 0x5a, 0xf5, 0xee, 0x44, 0x3b,
0x85, 0xd5, 0x2b, 0x82, 0x03, 0xc2, 0x85, 0x53, 0xd3, 0xd1, 0x3d, 0x7c, 0x58, 0x74, 0xdf, 0x18,
0x26, 0x13, 0xcf, 0x54, 0x04, 0xe2, 0xb0, 0x65, 0xff, 0x7a, 0x92, 0x65, 0x33, 0xb7, 0xae, 0x65,
0x7f, 0xf3, 0x28, 0xd9, 0xe7, 0xec, 0x6e, 0xde, 0x36, 0xaf, 0xe6, 0x31, 0x4a, 0xe7, 0x54, 0x91,
0x52, 0x9b, 0xfa, 0x83, 0x1e, 0xa3, 0x73, 0x2a, 0xf0, 0x9c, 0xcd, 0xf8, 0xb6, 0x89, 0xe7, 0x31,
0xe8, 0x18, 0xea, 0x34, 0xf2, 0xc3, 0x24, 0x20, 0x13, 0x6d, 0x9b, 0x3a, 0xc1, 0x3b, 0x93, 0x9b,
0xe0, 0xac, 0x3f, 0x30, 0xd4, 0xef, 0x63, 0x75, 0x9f, 0x09, 0x77, 0xdd, 0x72, 0xa4, 0x32, 0xbe,
0x81, 0x06, 0x89, 0xf0, 0xa5, 0x9a, 0x55, 0x76, 0xf9, 0x11, 0x4e, 0x7d, 0x2f, 0xbf, 0xbf, 0x9e,
0xd9, 0x6a, 0xcf, 0xfa, 0x03, 0xbb, 0xc6, 0xb8, 0x75, 0x4b, 0x6c, 0xcf, 0xda, 0x06, 0x4e, 0x23,
0xbd, 0xcf, 0x49, 0x3a, 0x26, 0x2c, 0x91, 0x4e, 0x43, 0x8f, 0x9a, 0x9d, 0x8e, 0xd9, 0xc6, 0x3b,
0xe9, 0x36, 0xde, 0x79, 0x65, 0xb7, 0x71, 0x77, 0xdd, 0x72, 0x9c, 0x1b, 0x06, 0xd4, 0x83, 0x0d,
0xbd, 0x00, 0xab, 0xfb, 0x26, 0x5d, 0xd9, 0x9d, 0x8d, 0xfb, 0xa4, 0xd4, 0xd5, 0x7e, 0x8c, 0xc3,
0x30, 0x05, 0xa0, 0xa7, 0x50, 0xd1, 0xf3, 0x25, 0xe6, 0x44, 0x10, 0xe9, 0x34, 0x4d, 0xd5, 0x2a,
0xd0, 0x40, 0x43, 0xd0, 0x57, 0x96, 0xc0, 0x67, 0xd1, 0x90, 0x8e, 0x9c, 0x2d, 0xad, 0xa1, 0x35,
0x71, 0xd3, 0x65, 0x6c, 0xdc, 0xd5, 0xa8, 0x54, 0x85, 0x66, 0x36, 0x20, 0x74, 0x02, 0x8d, 0x31,
0x09, 0x28, 0xf6, 0x48, 0xe4, 0xf3, 0x5b, 0x1d, 0x4d, 0x67, 0x5b, 0x47, 0x7b, 0x37, 0x1b, 0xa8,
0xb7, 0x8a, 0xa6, 0x37, 0x21, 0x71, 0xeb, 0xe3, 0x59, 0x40, 0xeb, 0x0d, 0xb4, 0x96, 0xcf, 0x84,
0x47, 0x6d, 0x97, 0x2f, 0xa1, 0x9a, 0xad, 0x91, 0x47, 0xf1, 0x9e, 0x80, 0xb3, 0xac, 0xbe, 0x1f,
0x2b, 0x67, 0x59, 0xcd, 0x3e, 0xea, 0x02, 0xf9, 0x21, 0x97, 0x6e, 0xba, 0xf6, 0x72, 0x9a, 0xd9,
0x74, 0xbf, 0x84, 0xb2, 0x59, 0x46, 0x16, 0x3d, 0x48, 0x2c, 0x83, 0xde, 0x75, 0xd6, 0x7c, 0xfb,
0x0f, 0x7d, 0x0d, 0x35, 0xc9, 0x71, 0x24, 0x86, 0xe9, 0x8e, 0x64, 0xb6, 0x60, 0x27, 0xcb, 0x76,
0x6e, 0x09, 0xcc, 0x9a, 0x24, 0x33, 0xa7, 0xf6, 0x5b, 0x70, 0x5c, 0xe2, 0x33, 0x1e, 0x28, 0xd1,
0x5d, 0x16, 0x49, 0xf2, 0x51, 0xfe, 0x74, 0x6b, 0xda, 0xff, 0xcf, 0xc1, 0xaa, 0xc5, 0xa0, 0x9f,
0x03, 0x84, 0xd7, 0x93, 0xe5, 0xca, 0xde, 0x83, 0xe1, 0xb5, 0xdd, 0xab, 0x76, 0xa1, 0x2c, 0x58,
0xc2, 0x7d, 0xe2, 0xd1, 0x38, 0xdd, 0x26, 0x0d, 0xa0, 0x1f, 0xa3, 0x17, 0xb0, 0x9a, 0x6e, 0x28,
0x79, 0xad, 0xb7, 0x9e, 0xd5, 0x7b, 0xc1, 0xa9, 0x9b, 0xe2, 0xd1, 0xe7, 0x76, 0x0f, 0x2f, 0x2c,
0xa6, 0x4b, 0x97, 0x72, 0xb5, 0x73, 0x17, 0x17, 0x93, 0xa8, 0x05, 0xfc, 0x19, 0xe4, 0x6f, 0x28,
0x76, 0x4a, 0x7a, 0x86, 0xcd, 0x51, 0x28, 0x1c, 0x7a, 0x32, 0xbb, 0x2c, 0xae, 0xda, 0x27, 0x66,
0xba, 0x28, 0xfe, 0xea, 0xef, 0xb0, 0x31, 0x77, 0xd3, 0x20, 0x07, 0x9a, 0xa7, 0xbd, 0xd7, 0x47,
0xdd, 0xbf, 0x7a, 0x47, 0xdd, 0x6e, 0x6f, 0x70, 0xee, 0xbd, 0x77, 0xbd, 0x41, 0xff, 0x5d, 0xe3,
0x67, 0x08, 0xa0, 0x64, 0x40, 0x8d, 0x1c, 0xaa, 0x43, 0xc5, 0xed, 0xfd, 0xe5, 0xa2, 0x77, 0x76,
0xae, 0x91, 0x2b, 0x0a, 0xe9, 0xf6, 0xbe, 0xeb, 0x75, 0xcf, 0x1b, 0x79, 0xb4, 0x06, 0x85, 0x57,
0xee, 0xfb, 0x41, 0xa3, 0x70, 0xf8, 0xc3, 0x2a, 0x94, 0xfa, 0xef, 0x75, 0xd6, 0xbf, 0x82, 0x6a,
0x97, 0x13, 0x2c, 0x89, 0x79, 0x88, 0xa3, 0x45, 0x2f, 0xf3, 0xd6, 0xf6, 0xdc, 0x4c, 0xe9, 0x8d,
0x63, 0x79, 0xab, 0x98, 0x4d, 0x09, 0xfe, 0x14, 0xe6, 0xdf, 0x43, 0x79, 0xf2, 0x6d, 0x01, 0x6d,
0xa5, 0xcf, 0xce, 0x99, 0x6f, 0x0d, 0xad, 0x45, 0x02, 0x51, 0x0f, 0xe0, 0x94, 0x8a, 0x94, 0x73,
0x3a, 0x8d, 0xa6, 0xc0, 0x94, 0x7d, 0x77, 0x21, 0xce, 0x2e, 0x57, 0xc7, 0x50, 0x9b, 0xf9, 0x52,
0x81, 0x76, 0xb4, 0x0d, 0x8b, 0xbe, 0x5e, 0x2c, 0xf5, 0xe1, 0x6b, 0xa8, 0x99, 0xe8, 0xd9, 0x17,
0x22, 0x5a, 0xf8, 0xea, 0x5f, 0xca, 0xde, 0x87, 0xf5, 0xd9, 0x97, 0x36, 0x6a, 0x2d, 0x7c, 0x7e,
0xa7, 0xde, 0x2c, 0x7f, 0x9a, 0xa3, 0x53, 0x40, 0xf3, 0xef, 0x5e, 0xf4, 0x24, 0xe3, 0xd2, 0x82,
0x07, 0xf1, 0x52, 0xc3, 0xbe, 0x87, 0x9d, 0xa5, 0x2f, 0x3c, 0xf4, 0x3c, 0xb5, 0xe3, 0x93, 0x6f,
0xdf, 0xd6, 0x2f, 0xef, 0x23, 0xb3, 0x96, 0x8f, 0xc0, 0x59, 0x76, 0xcb, 0xa3, 0x5f, 0x3c, 0x64,
0xaf, 0x6f, 0x3d, 0x7f, 0xd0, 0xaa, 0x30, 0x0d, 0x51, 0x76, 0x60, 0xce, 0x84, 0x68, 0xc1, 0x24,
0x5d, 0x1a, 0xa2, 0xef, 0x60, 0x63, 0x6e, 0xde, 0xa1, 0xcf, 0xb4, 0xb0, 0x65, 0x73, 0x70, 0x99,
0xac, 0xe3, 0x67, 0x7f, 0x7b, 0x3a, 0xa2, 0xf2, 0x2a, 0xb9, 0xec, 0xf8, 0x6c, 0x7c, 0x60, 0x2b,
0xc8, 0x7c, 0x94, 0xf3, 0x59, 0x78, 0xc0, 0x63, 0xff, 0xb2, 0xa4, 0x4f, 0xbf, 0xfb, 0x31, 0x00,
0x00, 0xff, 0xff, 0x11, 0x08, 0x3c, 0xc0, 0x36, 0x14, 0x00, 0x00,
}