* ExportRoom internal flag * generated protobuf --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
512 lines
19 KiB
Go
512 lines
19 KiB
Go
// Code generated by protoc-gen-psrpc v0.7.0, DO NOT EDIT.
|
|
// source: rpc/egress.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 livekit4 "github.com/livekit/protocol/livekit"
|
|
|
|
var _ = version.PsrpcVersion_0_7
|
|
|
|
// ===============================
|
|
// EgressInternal Client Interface
|
|
// ===============================
|
|
|
|
type EgressInternalClient interface {
|
|
StartEgress(ctx context.Context, topic string, req *StartEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error)
|
|
|
|
ListActiveEgress(ctx context.Context, topic string, req *ListActiveEgressRequest, opts ...psrpc.RequestOption) (<-chan *psrpc.Response[*ListActiveEgressResponse], error)
|
|
|
|
// Close immediately, without waiting for pending RPCs
|
|
Close()
|
|
}
|
|
|
|
// ===================================
|
|
// EgressInternal ServerImpl Interface
|
|
// ===================================
|
|
|
|
type EgressInternalServerImpl interface {
|
|
StartEgress(context.Context, *StartEgressRequest) (*livekit4.EgressInfo, error)
|
|
StartEgressAffinity(context.Context, *StartEgressRequest) float32
|
|
|
|
ListActiveEgress(context.Context, *ListActiveEgressRequest) (*ListActiveEgressResponse, error)
|
|
}
|
|
|
|
// ===============================
|
|
// EgressInternal Server Interface
|
|
// ===============================
|
|
|
|
type EgressInternalServer interface {
|
|
RegisterStartEgressTopic(topic string) error
|
|
DeregisterStartEgressTopic(topic string)
|
|
RegisterListActiveEgressTopic(topic string) error
|
|
DeregisterListActiveEgressTopic(topic string)
|
|
|
|
// Close and wait for pending RPCs to complete
|
|
Shutdown()
|
|
|
|
// Close immediately, without waiting for pending RPCs
|
|
Kill()
|
|
}
|
|
|
|
// =====================
|
|
// EgressInternal Client
|
|
// =====================
|
|
|
|
type egressInternalClient struct {
|
|
client *client.RPCClient
|
|
}
|
|
|
|
// NewEgressInternalClient creates a psrpc client that implements the EgressInternalClient interface.
|
|
func NewEgressInternalClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (EgressInternalClient, error) {
|
|
sd := &info.ServiceDefinition{
|
|
Name: "EgressInternal",
|
|
ID: rand.NewClientID(),
|
|
}
|
|
|
|
sd.RegisterMethod("StartEgress", true, false, true, false)
|
|
sd.RegisterMethod("ListActiveEgress", false, true, false, false)
|
|
|
|
rpcClient, err := client.NewRPCClient(sd, bus, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &egressInternalClient{
|
|
client: rpcClient,
|
|
}, nil
|
|
}
|
|
|
|
func (c *egressInternalClient) StartEgress(ctx context.Context, topic string, req *StartEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error) {
|
|
return client.RequestSingle[*livekit4.EgressInfo](ctx, c.client, "StartEgress", []string{topic}, req, opts...)
|
|
}
|
|
|
|
func (c *egressInternalClient) ListActiveEgress(ctx context.Context, topic string, req *ListActiveEgressRequest, opts ...psrpc.RequestOption) (<-chan *psrpc.Response[*ListActiveEgressResponse], error) {
|
|
return client.RequestMulti[*ListActiveEgressResponse](ctx, c.client, "ListActiveEgress", []string{topic}, req, opts...)
|
|
}
|
|
|
|
func (s *egressInternalClient) Close() {
|
|
s.client.Close()
|
|
}
|
|
|
|
// =====================
|
|
// EgressInternal Server
|
|
// =====================
|
|
|
|
type egressInternalServer struct {
|
|
svc EgressInternalServerImpl
|
|
rpc *server.RPCServer
|
|
}
|
|
|
|
// NewEgressInternalServer builds a RPCServer that will route requests
|
|
// to the corresponding method in the provided svc implementation.
|
|
func NewEgressInternalServer(svc EgressInternalServerImpl, bus psrpc.MessageBus, opts ...psrpc.ServerOption) (EgressInternalServer, error) {
|
|
sd := &info.ServiceDefinition{
|
|
Name: "EgressInternal",
|
|
ID: rand.NewServerID(),
|
|
}
|
|
|
|
s := server.NewRPCServer(sd, bus, opts...)
|
|
|
|
sd.RegisterMethod("StartEgress", true, false, true, false)
|
|
sd.RegisterMethod("ListActiveEgress", false, true, false, false)
|
|
return &egressInternalServer{
|
|
svc: svc,
|
|
rpc: s,
|
|
}, nil
|
|
}
|
|
|
|
func (s *egressInternalServer) RegisterStartEgressTopic(topic string) error {
|
|
return server.RegisterHandler(s.rpc, "StartEgress", []string{topic}, s.svc.StartEgress, s.svc.StartEgressAffinity)
|
|
}
|
|
|
|
func (s *egressInternalServer) DeregisterStartEgressTopic(topic string) {
|
|
s.rpc.DeregisterHandler("StartEgress", []string{topic})
|
|
}
|
|
|
|
func (s *egressInternalServer) RegisterListActiveEgressTopic(topic string) error {
|
|
return server.RegisterHandler(s.rpc, "ListActiveEgress", []string{topic}, s.svc.ListActiveEgress, nil)
|
|
}
|
|
|
|
func (s *egressInternalServer) DeregisterListActiveEgressTopic(topic string) {
|
|
s.rpc.DeregisterHandler("ListActiveEgress", []string{topic})
|
|
}
|
|
|
|
func (s *egressInternalServer) Shutdown() {
|
|
s.rpc.Close(false)
|
|
}
|
|
|
|
func (s *egressInternalServer) Kill() {
|
|
s.rpc.Close(true)
|
|
}
|
|
|
|
// ===================================
|
|
// EgressInternal Unimplemented Server
|
|
// ===================================
|
|
|
|
type UnimplementedEgressInternalServer struct{}
|
|
|
|
func (UnimplementedEgressInternalServer) StartEgress(context.Context, *StartEgressRequest) (*livekit4.EgressInfo, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
func (UnimplementedEgressInternalServer) StartEgressAffinity(context.Context, *StartEgressRequest) float32 {
|
|
return -1
|
|
}
|
|
|
|
func (UnimplementedEgressInternalServer) ListActiveEgress(context.Context, *ListActiveEgressRequest) (*ListActiveEgressResponse, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
// ==============================
|
|
// EgressHandler Client Interface
|
|
// ==============================
|
|
|
|
type EgressHandlerClient interface {
|
|
UpdateEgress(ctx context.Context, topic string, req *livekit4.UpdateEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error)
|
|
|
|
StopEgress(ctx context.Context, topic string, req *livekit4.StopEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error)
|
|
|
|
// --- Deprecated ---
|
|
UpdateStream(ctx context.Context, topic string, req *livekit4.UpdateStreamRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error)
|
|
|
|
// Close immediately, without waiting for pending RPCs
|
|
Close()
|
|
}
|
|
|
|
// ==================================
|
|
// EgressHandler ServerImpl Interface
|
|
// ==================================
|
|
|
|
type EgressHandlerServerImpl interface {
|
|
UpdateEgress(context.Context, *livekit4.UpdateEgressRequest) (*livekit4.EgressInfo, error)
|
|
|
|
StopEgress(context.Context, *livekit4.StopEgressRequest) (*livekit4.EgressInfo, error)
|
|
|
|
// --- Deprecated ---
|
|
UpdateStream(context.Context, *livekit4.UpdateStreamRequest) (*livekit4.EgressInfo, error)
|
|
}
|
|
|
|
// ==============================
|
|
// EgressHandler Server Interface
|
|
// ==============================
|
|
|
|
type EgressHandlerServer interface {
|
|
RegisterUpdateEgressTopic(topic string) error
|
|
DeregisterUpdateEgressTopic(topic string)
|
|
RegisterStopEgressTopic(topic string) error
|
|
DeregisterStopEgressTopic(topic string)
|
|
// --- Deprecated ---
|
|
RegisterUpdateStreamTopic(topic string) error
|
|
DeregisterUpdateStreamTopic(topic string)
|
|
|
|
// Close and wait for pending RPCs to complete
|
|
Shutdown()
|
|
|
|
// Close immediately, without waiting for pending RPCs
|
|
Kill()
|
|
}
|
|
|
|
// ====================
|
|
// EgressHandler Client
|
|
// ====================
|
|
|
|
type egressHandlerClient struct {
|
|
client *client.RPCClient
|
|
}
|
|
|
|
// NewEgressHandlerClient creates a psrpc client that implements the EgressHandlerClient interface.
|
|
func NewEgressHandlerClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (EgressHandlerClient, error) {
|
|
sd := &info.ServiceDefinition{
|
|
Name: "EgressHandler",
|
|
ID: rand.NewClientID(),
|
|
}
|
|
|
|
sd.RegisterMethod("UpdateEgress", false, false, true, true)
|
|
sd.RegisterMethod("StopEgress", false, false, true, true)
|
|
sd.RegisterMethod("UpdateStream", false, false, true, true)
|
|
|
|
rpcClient, err := client.NewRPCClient(sd, bus, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &egressHandlerClient{
|
|
client: rpcClient,
|
|
}, nil
|
|
}
|
|
|
|
func (c *egressHandlerClient) UpdateEgress(ctx context.Context, topic string, req *livekit4.UpdateEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error) {
|
|
return client.RequestSingle[*livekit4.EgressInfo](ctx, c.client, "UpdateEgress", []string{topic}, req, opts...)
|
|
}
|
|
|
|
func (c *egressHandlerClient) StopEgress(ctx context.Context, topic string, req *livekit4.StopEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error) {
|
|
return client.RequestSingle[*livekit4.EgressInfo](ctx, c.client, "StopEgress", []string{topic}, req, opts...)
|
|
}
|
|
|
|
func (c *egressHandlerClient) UpdateStream(ctx context.Context, topic string, req *livekit4.UpdateStreamRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error) {
|
|
return client.RequestSingle[*livekit4.EgressInfo](ctx, c.client, "UpdateStream", []string{topic}, req, opts...)
|
|
}
|
|
|
|
func (s *egressHandlerClient) Close() {
|
|
s.client.Close()
|
|
}
|
|
|
|
// ====================
|
|
// EgressHandler Server
|
|
// ====================
|
|
|
|
type egressHandlerServer struct {
|
|
svc EgressHandlerServerImpl
|
|
rpc *server.RPCServer
|
|
}
|
|
|
|
// NewEgressHandlerServer builds a RPCServer that will route requests
|
|
// to the corresponding method in the provided svc implementation.
|
|
func NewEgressHandlerServer(svc EgressHandlerServerImpl, bus psrpc.MessageBus, opts ...psrpc.ServerOption) (EgressHandlerServer, error) {
|
|
sd := &info.ServiceDefinition{
|
|
Name: "EgressHandler",
|
|
ID: rand.NewServerID(),
|
|
}
|
|
|
|
s := server.NewRPCServer(sd, bus, opts...)
|
|
|
|
sd.RegisterMethod("UpdateEgress", false, false, true, true)
|
|
sd.RegisterMethod("StopEgress", false, false, true, true)
|
|
sd.RegisterMethod("UpdateStream", false, false, true, true)
|
|
return &egressHandlerServer{
|
|
svc: svc,
|
|
rpc: s,
|
|
}, nil
|
|
}
|
|
|
|
func (s *egressHandlerServer) RegisterUpdateEgressTopic(topic string) error {
|
|
return server.RegisterHandler(s.rpc, "UpdateEgress", []string{topic}, s.svc.UpdateEgress, nil)
|
|
}
|
|
|
|
func (s *egressHandlerServer) DeregisterUpdateEgressTopic(topic string) {
|
|
s.rpc.DeregisterHandler("UpdateEgress", []string{topic})
|
|
}
|
|
|
|
func (s *egressHandlerServer) RegisterStopEgressTopic(topic string) error {
|
|
return server.RegisterHandler(s.rpc, "StopEgress", []string{topic}, s.svc.StopEgress, nil)
|
|
}
|
|
|
|
func (s *egressHandlerServer) DeregisterStopEgressTopic(topic string) {
|
|
s.rpc.DeregisterHandler("StopEgress", []string{topic})
|
|
}
|
|
|
|
func (s *egressHandlerServer) RegisterUpdateStreamTopic(topic string) error {
|
|
return server.RegisterHandler(s.rpc, "UpdateStream", []string{topic}, s.svc.UpdateStream, nil)
|
|
}
|
|
|
|
func (s *egressHandlerServer) DeregisterUpdateStreamTopic(topic string) {
|
|
s.rpc.DeregisterHandler("UpdateStream", []string{topic})
|
|
}
|
|
|
|
func (s *egressHandlerServer) Shutdown() {
|
|
s.rpc.Close(false)
|
|
}
|
|
|
|
func (s *egressHandlerServer) Kill() {
|
|
s.rpc.Close(true)
|
|
}
|
|
|
|
// ==================================
|
|
// EgressHandler Unimplemented Server
|
|
// ==================================
|
|
|
|
type UnimplementedEgressHandlerServer struct{}
|
|
|
|
func (UnimplementedEgressHandlerServer) UpdateEgress(context.Context, *livekit4.UpdateEgressRequest) (*livekit4.EgressInfo, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedEgressHandlerServer) StopEgress(context.Context, *livekit4.StopEgressRequest) (*livekit4.EgressInfo, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedEgressHandlerServer) UpdateStream(context.Context, *livekit4.UpdateStreamRequest) (*livekit4.EgressInfo, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
// =============================
|
|
// ReplayExport Client Interface
|
|
// =============================
|
|
|
|
type ReplayExportClient interface {
|
|
EgressReady(ctx context.Context, topic string, req *EgressReadyRequest, opts ...psrpc.RequestOption) (*EgressReadyResponse, error)
|
|
|
|
// Close immediately, without waiting for pending RPCs
|
|
Close()
|
|
}
|
|
|
|
// =================================
|
|
// ReplayExport ServerImpl Interface
|
|
// =================================
|
|
|
|
type ReplayExportServerImpl interface {
|
|
EgressReady(context.Context, *EgressReadyRequest) (*EgressReadyResponse, error)
|
|
}
|
|
|
|
// =============================
|
|
// ReplayExport Server Interface
|
|
// =============================
|
|
|
|
type ReplayExportServer interface {
|
|
RegisterEgressReadyTopic(topic string) error
|
|
DeregisterEgressReadyTopic(topic string)
|
|
|
|
// Close and wait for pending RPCs to complete
|
|
Shutdown()
|
|
|
|
// Close immediately, without waiting for pending RPCs
|
|
Kill()
|
|
}
|
|
|
|
// ===================
|
|
// ReplayExport Client
|
|
// ===================
|
|
|
|
type replayExportClient struct {
|
|
client *client.RPCClient
|
|
}
|
|
|
|
// NewReplayExportClient creates a psrpc client that implements the ReplayExportClient interface.
|
|
func NewReplayExportClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (ReplayExportClient, error) {
|
|
sd := &info.ServiceDefinition{
|
|
Name: "ReplayExport",
|
|
ID: rand.NewClientID(),
|
|
}
|
|
|
|
sd.RegisterMethod("EgressReady", false, false, false, true)
|
|
|
|
rpcClient, err := client.NewRPCClient(sd, bus, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &replayExportClient{
|
|
client: rpcClient,
|
|
}, nil
|
|
}
|
|
|
|
func (c *replayExportClient) EgressReady(ctx context.Context, topic string, req *EgressReadyRequest, opts ...psrpc.RequestOption) (*EgressReadyResponse, error) {
|
|
return client.RequestSingle[*EgressReadyResponse](ctx, c.client, "EgressReady", []string{topic}, req, opts...)
|
|
}
|
|
|
|
func (s *replayExportClient) Close() {
|
|
s.client.Close()
|
|
}
|
|
|
|
// ===================
|
|
// ReplayExport Server
|
|
// ===================
|
|
|
|
type replayExportServer struct {
|
|
svc ReplayExportServerImpl
|
|
rpc *server.RPCServer
|
|
}
|
|
|
|
// NewReplayExportServer builds a RPCServer that will route requests
|
|
// to the corresponding method in the provided svc implementation.
|
|
func NewReplayExportServer(svc ReplayExportServerImpl, bus psrpc.MessageBus, opts ...psrpc.ServerOption) (ReplayExportServer, error) {
|
|
sd := &info.ServiceDefinition{
|
|
Name: "ReplayExport",
|
|
ID: rand.NewServerID(),
|
|
}
|
|
|
|
s := server.NewRPCServer(sd, bus, opts...)
|
|
|
|
sd.RegisterMethod("EgressReady", false, false, false, true)
|
|
return &replayExportServer{
|
|
svc: svc,
|
|
rpc: s,
|
|
}, nil
|
|
}
|
|
|
|
func (s *replayExportServer) RegisterEgressReadyTopic(topic string) error {
|
|
return server.RegisterHandler(s.rpc, "EgressReady", []string{topic}, s.svc.EgressReady, nil)
|
|
}
|
|
|
|
func (s *replayExportServer) DeregisterEgressReadyTopic(topic string) {
|
|
s.rpc.DeregisterHandler("EgressReady", []string{topic})
|
|
}
|
|
|
|
func (s *replayExportServer) Shutdown() {
|
|
s.rpc.Close(false)
|
|
}
|
|
|
|
func (s *replayExportServer) Kill() {
|
|
s.rpc.Close(true)
|
|
}
|
|
|
|
// =================================
|
|
// ReplayExport Unimplemented Server
|
|
// =================================
|
|
|
|
type UnimplementedReplayExportServer struct{}
|
|
|
|
func (UnimplementedReplayExportServer) EgressReady(context.Context, *EgressReadyRequest) (*EgressReadyResponse, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
var psrpcFileDescriptor2 = []byte{
|
|
// 740 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xc1, 0x6e, 0xeb, 0x44,
|
|
0x14, 0x65, 0x12, 0xc5, 0x89, 0x6f, 0x9a, 0xbc, 0x30, 0xef, 0xa1, 0x37, 0xc9, 0x7b, 0x55, 0xd3,
|
|
0x94, 0x85, 0x37, 0x24, 0x55, 0x2a, 0x90, 0xd8, 0x20, 0x9a, 0x36, 0xa2, 0x91, 0x0a, 0x04, 0x97,
|
|
0x0a, 0x09, 0x90, 0xac, 0x89, 0x3d, 0x04, 0x2b, 0xb6, 0x67, 0x18, 0x8f, 0x5b, 0xfa, 0x09, 0xfd,
|
|
0x13, 0xd6, 0x5d, 0xb0, 0xe8, 0x37, 0xc1, 0x3f, 0x20, 0x8f, 0x1d, 0xd7, 0x49, 0x28, 0x2a, 0x2b,
|
|
0xdb, 0xe7, 0xdc, 0x73, 0xe6, 0xde, 0x3b, 0xbe, 0x17, 0x3a, 0x52, 0xb8, 0x23, 0xb6, 0x94, 0x2c,
|
|
0x8e, 0x87, 0x42, 0x72, 0xc5, 0x71, 0x55, 0x0a, 0xb7, 0xd7, 0xe2, 0x42, 0xf9, 0x3c, 0xca, 0xb1,
|
|
0xde, 0x9b, 0x80, 0x2f, 0x97, 0x4c, 0x8e, 0xb6, 0x51, 0xff, 0x86, 0xad, 0x7c, 0xe5, 0x94, 0xf5,
|
|
0x83, 0xbf, 0x6b, 0x80, 0xaf, 0x14, 0x95, 0x6a, 0xaa, 0x51, 0x9b, 0xfd, 0x96, 0xb0, 0x58, 0x61,
|
|
0x0b, 0xcc, 0x2c, 0xcc, 0xf1, 0x3d, 0x82, 0xfa, 0xc8, 0x32, 0x27, 0xcd, 0xc7, 0x79, 0x23, 0xc3,
|
|
0x66, 0xe7, 0xf6, 0xfa, 0xcd, 0xc3, 0x9f, 0x82, 0x91, 0xbd, 0x93, 0x4e, 0x1f, 0x59, 0xcd, 0xf1,
|
|
0xbb, 0x61, 0x7e, 0xce, 0x70, 0xd7, 0xf6, 0xe2, 0x03, 0x3b, 0x0f, 0xc6, 0x9f, 0x81, 0x21, 0x99,
|
|
0x08, 0xe8, 0x1d, 0xf9, 0x50, 0xcb, 0xde, 0x17, 0xb2, 0xe9, 0xef, 0x82, 0x4b, 0x65, 0x6b, 0xb2,
|
|
0xa4, 0xcb, 0xa2, 0xf1, 0x25, 0xb4, 0x25, 0xe7, 0xa1, 0xe3, 0xf2, 0x50, 0xf0, 0xd8, 0x57, 0x8c,
|
|
0xd4, 0xb4, 0xfe, 0xa8, 0xd0, 0xdb, 0x9c, 0x87, 0x67, 0x6b, 0x76, 0xfb, 0xf8, 0x96, 0x2c, 0xb3,
|
|
0xf8, 0x13, 0xa8, 0xde, 0xb2, 0x05, 0x69, 0x6a, 0x8b, 0x6e, 0x61, 0xf1, 0x03, 0x5b, 0x6c, 0x0b,
|
|
0xd3, 0x38, 0x3c, 0x85, 0xa6, 0xa0, 0x52, 0xf9, 0xae, 0x2f, 0x68, 0xa4, 0x48, 0x4b, 0xcb, 0x0e,
|
|
0x0b, 0xd9, 0xfc, 0x89, 0xdb, 0x96, 0x97, 0x75, 0xf8, 0x5b, 0x78, 0xa5, 0x24, 0x75, 0x57, 0xa5,
|
|
0x22, 0x0c, 0x6d, 0xf5, 0x71, 0x61, 0xf5, 0x7d, 0xca, 0x3f, 0x5b, 0x45, 0x5b, 0x6d, 0xd0, 0xf8,
|
|
0x04, 0x6a, 0x1a, 0x21, 0xf5, 0xad, 0x2b, 0xd0, 0x36, 0xdb, 0xea, 0x2c, 0x16, 0x0f, 0xa0, 0xae,
|
|
0x3b, 0xe9, 0x7b, 0xa4, 0xaa, 0x2f, 0xd8, 0x7c, 0x9c, 0x1b, 0x29, 0x32, 0x3b, 0xb7, 0xb3, 0xa7,
|
|
0x87, 0xdf, 0x81, 0xa9, 0x63, 0x22, 0x1a, 0x32, 0x82, 0xd3, 0x28, 0xbb, 0x91, 0x02, 0xdf, 0xd0,
|
|
0x90, 0xe1, 0x2e, 0xd4, 0x14, 0x5f, 0xb1, 0x88, 0x34, 0xb4, 0xbc, 0xfa, 0xc7, 0x1c, 0xd9, 0x19,
|
|
0x82, 0x3f, 0x02, 0xe3, 0x36, 0x76, 0x12, 0x19, 0x10, 0x53, 0x8b, 0x6a, 0xb7, 0xf1, 0xb5, 0x0c,
|
|
0xf0, 0x31, 0xbc, 0x71, 0x03, 0x9e, 0x78, 0xce, 0x82, 0xba, 0xab, 0x44, 0x38, 0x2c, 0xa2, 0x8b,
|
|
0x80, 0x79, 0x04, 0xfa, 0xc8, 0x6a, 0xd8, 0x58, 0x73, 0x13, 0x4d, 0x4d, 0x33, 0x06, 0x1f, 0x41,
|
|
0x8b, 0xc5, 0xca, 0x0f, 0xa9, 0x62, 0x9e, 0xe3, 0x8a, 0x84, 0xb4, 0xfb, 0xc8, 0x42, 0xf6, 0x5e,
|
|
0x01, 0x9e, 0x89, 0x04, 0x1f, 0x40, 0x53, 0x32, 0x25, 0xef, 0x1c, 0x97, 0x27, 0x91, 0x22, 0xaf,
|
|
0xfa, 0xc8, 0xaa, 0xd9, 0xa0, 0xa1, 0xb3, 0x14, 0x99, 0x98, 0x50, 0x97, 0x59, 0xf9, 0x83, 0x2e,
|
|
0xbc, 0xbd, 0xf4, 0x63, 0x75, 0xea, 0x2a, 0xff, 0x66, 0xb3, 0xaf, 0x83, 0xcf, 0x81, 0xec, 0x52,
|
|
0xb1, 0xe0, 0x51, 0xcc, 0xf0, 0x3e, 0x40, 0x31, 0x0f, 0x31, 0x41, 0xfd, 0xaa, 0x65, 0xda, 0xe6,
|
|
0x7a, 0x06, 0xe2, 0xc1, 0x17, 0x80, 0xd7, 0x02, 0xea, 0xdd, 0xfd, 0xef, 0x21, 0x1a, 0x7c, 0x07,
|
|
0xaf, 0x37, 0xf4, 0xf9, 0xa9, 0x5d, 0x68, 0xc4, 0xe9, 0x10, 0x39, 0x54, 0x69, 0x7d, 0xd5, 0xae,
|
|
0xeb, 0xef, 0x53, 0x95, 0xd6, 0xec, 0x25, 0x92, 0xa6, 0x03, 0xee, 0x84, 0x31, 0xa9, 0x68, 0x16,
|
|
0xd6, 0xd0, 0xd7, 0xf1, 0xf8, 0x4f, 0x04, 0xed, 0xcc, 0x73, 0x16, 0x29, 0x26, 0x23, 0x1a, 0xe0,
|
|
0xaf, 0xa0, 0x59, 0x9a, 0x49, 0xfc, 0x76, 0x28, 0x85, 0xfb, 0x2f, 0x53, 0xda, 0x7b, 0xfd, 0x34,
|
|
0x8b, 0xb9, 0xc1, 0x2f, 0x7c, 0x00, 0x0f, 0xf7, 0xc8, 0xe8, 0xa0, 0x2f, 0xd1, 0x31, 0xc2, 0x3f,
|
|
0x41, 0x67, 0xbb, 0x53, 0xf8, 0xbd, 0x76, 0x7b, 0xa6, 0xb7, 0xbd, 0xfd, 0x67, 0xd8, 0xac, 0xd0,
|
|
0xc2, 0xbc, 0x62, 0xa1, 0xf1, 0x5f, 0x08, 0x5a, 0x19, 0x7d, 0x41, 0x23, 0x2f, 0x60, 0x12, 0xcf,
|
|
0x60, 0xef, 0x5a, 0x78, 0x54, 0x3d, 0x1d, 0xb5, 0xce, 0xaf, 0x0c, 0xff, 0x67, 0xf6, 0xc6, 0xc3,
|
|
0x3d, 0xaa, 0x74, 0x10, 0x9e, 0x02, 0x5c, 0x29, 0x2e, 0x72, 0xa3, 0x5e, 0x69, 0x57, 0xad, 0xc1,
|
|
0x17, 0xd9, 0x14, 0x19, 0x5d, 0x29, 0xc9, 0x68, 0xb8, 0x93, 0x51, 0x06, 0xbf, 0xc4, 0x6a, 0xfc,
|
|
0x33, 0xec, 0x65, 0xbb, 0x2e, 0xdb, 0x7b, 0xf8, 0x12, 0x9a, 0xa5, 0x5f, 0x21, 0xbf, 0xa4, 0xdd,
|
|
0x9f, 0xab, 0x47, 0x76, 0x89, 0xcd, 0x66, 0xf6, 0x2a, 0x7d, 0x34, 0x39, 0xfc, 0xf1, 0x60, 0xe9,
|
|
0xab, 0x5f, 0x93, 0xc5, 0xd0, 0xe5, 0xe1, 0x28, 0x4f, 0x63, 0xa4, 0x57, 0xbf, 0xcb, 0x83, 0x91,
|
|
0x14, 0xee, 0xc2, 0xd0, 0x5f, 0x27, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xc5, 0xe0, 0x2a, 0xe4,
|
|
0x5c, 0x06, 0x00, 0x00,
|
|
}
|