go-waku/waku/v2/protocol/pb/waku_store.pb.go

454 lines
16 KiB
Go
Raw Normal View History

// Code generated by protoc-gen-go. DO NOT EDIT.
2021-03-18 16:40:47 +00:00
// source: waku_store.proto
2021-04-22 00:09:37 +00:00
package pb
2021-03-18 16:40:47 +00:00
import (
2021-04-07 21:16:29 +00:00
fmt "fmt"
proto "github.com/golang/protobuf/proto"
2021-04-07 21:16:29 +00:00
math "math"
2021-03-18 16:40:47 +00:00
)
2021-04-07 21:16:29 +00:00
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
2021-03-18 16:40:47 +00:00
2021-04-07 21:16:29 +00:00
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
2021-03-18 16:40:47 +00:00
type PagingInfo_Direction int32
const (
2021-04-07 21:16:29 +00:00
PagingInfo_BACKWARD PagingInfo_Direction = 0
PagingInfo_FORWARD PagingInfo_Direction = 1
2021-03-18 16:40:47 +00:00
)
2021-04-07 21:16:29 +00:00
var PagingInfo_Direction_name = map[int32]string{
0: "BACKWARD",
1: "FORWARD",
}
2021-03-18 16:40:47 +00:00
2021-04-07 21:16:29 +00:00
var PagingInfo_Direction_value = map[string]int32{
"BACKWARD": 0,
"FORWARD": 1,
2021-03-18 16:40:47 +00:00
}
func (x PagingInfo_Direction) String() string {
2021-04-07 21:16:29 +00:00
return proto.EnumName(PagingInfo_Direction_name, int32(x))
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
func (PagingInfo_Direction) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_ca6891f77a46e680, []int{1, 0}
2021-03-18 16:40:47 +00:00
}
type HistoryResponse_Error int32
const (
HistoryResponse_NONE HistoryResponse_Error = 0
HistoryResponse_INVALID_CURSOR HistoryResponse_Error = 1
)
var HistoryResponse_Error_name = map[int32]string{
0: "NONE",
1: "INVALID_CURSOR",
}
var HistoryResponse_Error_value = map[string]int32{
"NONE": 0,
"INVALID_CURSOR": 1,
}
func (x HistoryResponse_Error) String() string {
return proto.EnumName(HistoryResponse_Error_name, int32(x))
}
func (HistoryResponse_Error) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_ca6891f77a46e680, []int{4, 0}
}
2021-04-07 21:16:29 +00:00
type Index struct {
Digest []byte `protobuf:"bytes,1,opt,name=digest,proto3" json:"digest,omitempty"`
ReceiverTime float64 `protobuf:"fixed64,2,opt,name=receiverTime,proto3" json:"receiverTime,omitempty"`
SenderTime float64 `protobuf:"fixed64,3,opt,name=senderTime,proto3" json:"senderTime,omitempty"`
2021-04-07 21:16:29 +00:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *Index) Reset() { *m = Index{} }
func (m *Index) String() string { return proto.CompactTextString(m) }
func (*Index) ProtoMessage() {}
func (*Index) Descriptor() ([]byte, []int) {
return fileDescriptor_ca6891f77a46e680, []int{0}
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *Index) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Index.Unmarshal(m, b)
2021-04-07 21:16:29 +00:00
}
func (m *Index) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Index.Marshal(b, m, deterministic)
2021-04-07 21:16:29 +00:00
}
func (m *Index) XXX_Merge(src proto.Message) {
xxx_messageInfo_Index.Merge(m, src)
}
func (m *Index) XXX_Size() int {
return xxx_messageInfo_Index.Size(m)
2021-04-07 21:16:29 +00:00
}
func (m *Index) XXX_DiscardUnknown() {
xxx_messageInfo_Index.DiscardUnknown(m)
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
var xxx_messageInfo_Index proto.InternalMessageInfo
2021-03-18 16:40:47 +00:00
2021-04-07 21:16:29 +00:00
func (m *Index) GetDigest() []byte {
if m != nil {
return m.Digest
}
return nil
2021-03-18 16:40:47 +00:00
}
func (m *Index) GetReceiverTime() float64 {
if m != nil {
return m.ReceiverTime
}
return 0
}
func (m *Index) GetSenderTime() float64 {
2021-04-07 21:16:29 +00:00
if m != nil {
return m.SenderTime
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
return 0
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
type PagingInfo struct {
PageSize uint64 `protobuf:"varint,1,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
Cursor *Index `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor,omitempty"`
Direction PagingInfo_Direction `protobuf:"varint,3,opt,name=direction,proto3,enum=pb.PagingInfo_Direction" json:"direction,omitempty"`
2021-04-07 21:16:29 +00:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *PagingInfo) Reset() { *m = PagingInfo{} }
func (m *PagingInfo) String() string { return proto.CompactTextString(m) }
func (*PagingInfo) ProtoMessage() {}
func (*PagingInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_ca6891f77a46e680, []int{1}
}
2021-04-07 21:16:29 +00:00
func (m *PagingInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PagingInfo.Unmarshal(m, b)
2021-04-07 21:16:29 +00:00
}
func (m *PagingInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PagingInfo.Marshal(b, m, deterministic)
2021-04-07 21:16:29 +00:00
}
func (m *PagingInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_PagingInfo.Merge(m, src)
}
func (m *PagingInfo) XXX_Size() int {
return xxx_messageInfo_PagingInfo.Size(m)
2021-04-07 21:16:29 +00:00
}
func (m *PagingInfo) XXX_DiscardUnknown() {
xxx_messageInfo_PagingInfo.DiscardUnknown(m)
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
var xxx_messageInfo_PagingInfo proto.InternalMessageInfo
func (m *PagingInfo) GetPageSize() uint64 {
if m != nil {
return m.PageSize
}
return 0
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *PagingInfo) GetCursor() *Index {
if m != nil {
return m.Cursor
2021-03-18 16:40:47 +00:00
}
return nil
}
2021-04-07 21:16:29 +00:00
func (m *PagingInfo) GetDirection() PagingInfo_Direction {
if m != nil {
return m.Direction
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
return PagingInfo_BACKWARD
2021-03-18 16:40:47 +00:00
}
2021-04-20 21:46:35 +00:00
type ContentFilter struct {
ContentTopic string `protobuf:"bytes,1,opt,name=contentTopic,proto3" json:"contentTopic,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ContentFilter) Reset() { *m = ContentFilter{} }
func (m *ContentFilter) String() string { return proto.CompactTextString(m) }
func (*ContentFilter) ProtoMessage() {}
func (*ContentFilter) Descriptor() ([]byte, []int) {
return fileDescriptor_ca6891f77a46e680, []int{2}
}
2021-04-20 21:46:35 +00:00
func (m *ContentFilter) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ContentFilter.Unmarshal(m, b)
2021-04-20 21:46:35 +00:00
}
func (m *ContentFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ContentFilter.Marshal(b, m, deterministic)
2021-04-20 21:46:35 +00:00
}
func (m *ContentFilter) XXX_Merge(src proto.Message) {
xxx_messageInfo_ContentFilter.Merge(m, src)
}
func (m *ContentFilter) XXX_Size() int {
return xxx_messageInfo_ContentFilter.Size(m)
2021-04-20 21:46:35 +00:00
}
func (m *ContentFilter) XXX_DiscardUnknown() {
xxx_messageInfo_ContentFilter.DiscardUnknown(m)
}
var xxx_messageInfo_ContentFilter proto.InternalMessageInfo
func (m *ContentFilter) GetContentTopic() string {
if m != nil {
return m.ContentTopic
}
return ""
}
2021-04-07 21:16:29 +00:00
type HistoryQuery struct {
PubsubTopic string `protobuf:"bytes,2,opt,name=pubsubTopic,proto3" json:"pubsubTopic,omitempty"`
ContentFilters []*ContentFilter `protobuf:"bytes,3,rep,name=contentFilters,proto3" json:"contentFilters,omitempty"`
PagingInfo *PagingInfo `protobuf:"bytes,4,opt,name=pagingInfo,proto3" json:"pagingInfo,omitempty"`
StartTime float64 `protobuf:"fixed64,5,opt,name=startTime,proto3" json:"startTime,omitempty"`
EndTime float64 `protobuf:"fixed64,6,opt,name=endTime,proto3" json:"endTime,omitempty"`
2021-04-20 21:46:35 +00:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *HistoryQuery) Reset() { *m = HistoryQuery{} }
func (m *HistoryQuery) String() string { return proto.CompactTextString(m) }
func (*HistoryQuery) ProtoMessage() {}
func (*HistoryQuery) Descriptor() ([]byte, []int) {
2021-04-20 21:46:35 +00:00
return fileDescriptor_ca6891f77a46e680, []int{3}
2021-04-07 21:16:29 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *HistoryQuery) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HistoryQuery.Unmarshal(m, b)
2021-04-07 21:16:29 +00:00
}
func (m *HistoryQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_HistoryQuery.Marshal(b, m, deterministic)
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *HistoryQuery) XXX_Merge(src proto.Message) {
xxx_messageInfo_HistoryQuery.Merge(m, src)
}
func (m *HistoryQuery) XXX_Size() int {
return xxx_messageInfo_HistoryQuery.Size(m)
2021-04-07 21:16:29 +00:00
}
func (m *HistoryQuery) XXX_DiscardUnknown() {
xxx_messageInfo_HistoryQuery.DiscardUnknown(m)
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
var xxx_messageInfo_HistoryQuery proto.InternalMessageInfo
2021-03-18 16:40:47 +00:00
func (m *HistoryQuery) GetPubsubTopic() string {
if m != nil {
return m.PubsubTopic
}
return ""
}
2021-04-20 21:46:35 +00:00
func (m *HistoryQuery) GetContentFilters() []*ContentFilter {
2021-04-07 21:16:29 +00:00
if m != nil {
2021-04-20 21:46:35 +00:00
return m.ContentFilters
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
return nil
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *HistoryQuery) GetPagingInfo() *PagingInfo {
if m != nil {
return m.PagingInfo
}
return nil
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *HistoryQuery) GetStartTime() float64 {
if m != nil {
return m.StartTime
2021-03-18 16:40:47 +00:00
}
return 0
}
2021-04-07 21:16:29 +00:00
func (m *HistoryQuery) GetEndTime() float64 {
if m != nil {
return m.EndTime
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
return 0
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
type HistoryResponse struct {
// the first field is reserved for future use
Messages []*WakuMessage `protobuf:"bytes,2,rep,name=messages,proto3" json:"messages,omitempty"`
PagingInfo *PagingInfo `protobuf:"bytes,3,opt,name=pagingInfo,proto3" json:"pagingInfo,omitempty"`
Error HistoryResponse_Error `protobuf:"varint,4,opt,name=error,proto3,enum=pb.HistoryResponse_Error" json:"error,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-04-07 21:16:29 +00:00
}
func (m *HistoryResponse) Reset() { *m = HistoryResponse{} }
func (m *HistoryResponse) String() string { return proto.CompactTextString(m) }
func (*HistoryResponse) ProtoMessage() {}
func (*HistoryResponse) Descriptor() ([]byte, []int) {
2021-04-20 21:46:35 +00:00
return fileDescriptor_ca6891f77a46e680, []int{4}
2021-04-07 21:16:29 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *HistoryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HistoryResponse.Unmarshal(m, b)
2021-04-07 21:16:29 +00:00
}
func (m *HistoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_HistoryResponse.Marshal(b, m, deterministic)
2021-04-07 21:16:29 +00:00
}
func (m *HistoryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_HistoryResponse.Merge(m, src)
}
func (m *HistoryResponse) XXX_Size() int {
return xxx_messageInfo_HistoryResponse.Size(m)
2021-04-07 21:16:29 +00:00
}
func (m *HistoryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_HistoryResponse.DiscardUnknown(m)
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
var xxx_messageInfo_HistoryResponse proto.InternalMessageInfo
2021-03-18 16:40:47 +00:00
2021-04-07 21:16:29 +00:00
func (m *HistoryResponse) GetMessages() []*WakuMessage {
if m != nil {
return m.Messages
}
return nil
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *HistoryResponse) GetPagingInfo() *PagingInfo {
if m != nil {
return m.PagingInfo
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
return nil
2021-03-18 16:40:47 +00:00
}
func (m *HistoryResponse) GetError() HistoryResponse_Error {
if m != nil {
return m.Error
}
return HistoryResponse_NONE
}
2021-04-07 21:16:29 +00:00
type HistoryRPC struct {
RequestId string `protobuf:"bytes,1,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
Query *HistoryQuery `protobuf:"bytes,2,opt,name=query,proto3" json:"query,omitempty"`
Response *HistoryResponse `protobuf:"bytes,3,opt,name=response,proto3" json:"response,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *HistoryRPC) Reset() { *m = HistoryRPC{} }
func (m *HistoryRPC) String() string { return proto.CompactTextString(m) }
func (*HistoryRPC) ProtoMessage() {}
func (*HistoryRPC) Descriptor() ([]byte, []int) {
2021-04-20 21:46:35 +00:00
return fileDescriptor_ca6891f77a46e680, []int{5}
2021-04-07 21:16:29 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *HistoryRPC) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HistoryRPC.Unmarshal(m, b)
2021-04-07 21:16:29 +00:00
}
func (m *HistoryRPC) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_HistoryRPC.Marshal(b, m, deterministic)
2021-04-07 21:16:29 +00:00
}
func (m *HistoryRPC) XXX_Merge(src proto.Message) {
xxx_messageInfo_HistoryRPC.Merge(m, src)
}
func (m *HistoryRPC) XXX_Size() int {
return xxx_messageInfo_HistoryRPC.Size(m)
2021-04-07 21:16:29 +00:00
}
func (m *HistoryRPC) XXX_DiscardUnknown() {
xxx_messageInfo_HistoryRPC.DiscardUnknown(m)
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
var xxx_messageInfo_HistoryRPC proto.InternalMessageInfo
func (m *HistoryRPC) GetRequestId() string {
if m != nil {
return m.RequestId
}
return ""
2021-03-18 16:40:47 +00:00
}
2021-04-07 21:16:29 +00:00
func (m *HistoryRPC) GetQuery() *HistoryQuery {
if m != nil {
return m.Query
2021-03-18 16:40:47 +00:00
}
return nil
}
2021-04-07 21:16:29 +00:00
func (m *HistoryRPC) GetResponse() *HistoryResponse {
if m != nil {
return m.Response
2021-03-18 16:40:47 +00:00
}
return nil
}
2021-04-07 21:16:29 +00:00
func init() {
proto.RegisterEnum("pb.PagingInfo_Direction", PagingInfo_Direction_name, PagingInfo_Direction_value)
proto.RegisterEnum("pb.HistoryResponse_Error", HistoryResponse_Error_name, HistoryResponse_Error_value)
proto.RegisterType((*Index)(nil), "pb.Index")
proto.RegisterType((*PagingInfo)(nil), "pb.PagingInfo")
proto.RegisterType((*ContentFilter)(nil), "pb.ContentFilter")
proto.RegisterType((*HistoryQuery)(nil), "pb.HistoryQuery")
proto.RegisterType((*HistoryResponse)(nil), "pb.HistoryResponse")
proto.RegisterType((*HistoryRPC)(nil), "pb.HistoryRPC")
2021-04-07 21:16:29 +00:00
}
2021-03-18 16:40:47 +00:00
func init() {
proto.RegisterFile("waku_store.proto", fileDescriptor_ca6891f77a46e680)
2021-04-07 21:16:29 +00:00
}
2021-03-18 16:40:47 +00:00
var fileDescriptor_ca6891f77a46e680 = []byte{
// 509 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x93, 0x6f, 0x6b, 0x13, 0x41,
0x10, 0xc6, 0xbb, 0xf9, 0xd7, 0xdc, 0x24, 0xa6, 0x71, 0x04, 0x39, 0x8b, 0x4a, 0x3c, 0xb0, 0x04,
0x84, 0x2b, 0xa4, 0x20, 0xf8, 0x32, 0x26, 0x2d, 0x06, 0x35, 0xa9, 0xdb, 0x6a, 0x5f, 0x86, 0xcb,
0xdd, 0x18, 0x96, 0xda, 0xdb, 0xeb, 0xee, 0x9e, 0x5a, 0x5f, 0xfb, 0x6d, 0xfc, 0x1e, 0x7e, 0x01,
0xbf, 0x90, 0xdc, 0x66, 0xf3, 0x17, 0xc1, 0x97, 0xf3, 0xcc, 0xef, 0xf2, 0x3c, 0x33, 0xb3, 0x81,
0xf6, 0xb7, 0xe8, 0x3a, 0x9f, 0x6a, 0x23, 0x15, 0x85, 0x99, 0x92, 0x46, 0x62, 0x29, 0x9b, 0x1d,
0xa2, 0x55, 0x6f, 0x48, 0xeb, 0x68, 0xee, 0xf4, 0x20, 0x86, 0xea, 0x28, 0x4d, 0xe8, 0x3b, 0x3e,
0x84, 0x5a, 0x22, 0xe6, 0xa4, 0x8d, 0xcf, 0x3a, 0xac, 0xdb, 0xe4, 0xae, 0xc2, 0x00, 0x9a, 0x8a,
0x62, 0x12, 0x5f, 0x49, 0x5d, 0x8a, 0x1b, 0xf2, 0x4b, 0x1d, 0xd6, 0x65, 0x7c, 0x4b, 0xc3, 0xa7,
0x00, 0x9a, 0xd2, 0xc4, 0x11, 0x65, 0x4b, 0x6c, 0x28, 0xc1, 0x2f, 0x06, 0x70, 0x1e, 0xcd, 0x45,
0x3a, 0x1f, 0xa5, 0x9f, 0x25, 0x1e, 0x42, 0x3d, 0x8b, 0xe6, 0x74, 0x21, 0x7e, 0x90, 0x35, 0xab,
0xf0, 0x55, 0x8d, 0xcf, 0xa0, 0x16, 0xe7, 0x4a, 0x4b, 0x65, 0x8d, 0x1a, 0x3d, 0x2f, 0xcc, 0x66,
0xa1, 0x4d, 0xc8, 0x5d, 0x03, 0x5f, 0x82, 0x97, 0x08, 0x45, 0xb1, 0x11, 0x32, 0xb5, 0x66, 0xad,
0x9e, 0x5f, 0x50, 0x6b, 0x87, 0x70, 0xb8, 0xec, 0xf3, 0x35, 0x1a, 0x1c, 0x81, 0xb7, 0xd2, 0xb1,
0x09, 0xf5, 0xd7, 0xfd, 0xc1, 0xdb, 0xab, 0x3e, 0x1f, 0xb6, 0xf7, 0xb0, 0x01, 0xfb, 0x67, 0x13,
0x6e, 0x0b, 0x16, 0x9c, 0xc0, 0xbd, 0x81, 0x4c, 0x0d, 0xa5, 0xe6, 0x4c, 0x7c, 0x31, 0xa4, 0x8a,
0x15, 0xc4, 0x0b, 0xe1, 0x52, 0x66, 0x22, 0xb6, 0x99, 0x3d, 0xbe, 0xa5, 0x05, 0x7f, 0x18, 0x34,
0xdf, 0x88, 0x62, 0xe3, 0x77, 0x1f, 0x72, 0x52, 0x77, 0xd8, 0x81, 0x46, 0x96, 0xcf, 0x74, 0x3e,
0x5b, 0x7c, 0x53, 0xb2, 0xdf, 0x6c, 0x4a, 0xf8, 0x0a, 0x5a, 0xf1, 0xa6, 0x8f, 0xf6, 0xcb, 0x9d,
0x72, 0xb7, 0xd1, 0xbb, 0x5f, 0x0c, 0xb3, 0x95, 0x80, 0xef, 0x80, 0x18, 0x02, 0x64, 0xab, 0x69,
0xfd, 0x8a, 0xdd, 0x54, 0x6b, 0x7b, 0x07, 0x7c, 0x83, 0xc0, 0xc7, 0xe0, 0x69, 0x13, 0x29, 0x63,
0xef, 0x53, 0xb5, 0xf7, 0x59, 0x0b, 0xe8, 0xc3, 0x3e, 0xa5, 0x89, 0xed, 0xd5, 0x6c, 0x6f, 0x59,
0x06, 0xbf, 0x19, 0x1c, 0xb8, 0xa9, 0x38, 0xe9, 0x4c, 0xa6, 0x9a, 0xf0, 0x05, 0xd4, 0xdd, 0x13,
0xd2, 0x7e, 0xc9, 0x06, 0x3e, 0x28, 0x9c, 0xaf, 0xa2, 0xeb, 0xfc, 0xfd, 0x42, 0xe7, 0x2b, 0x60,
0x27, 0x68, 0xf9, 0xbf, 0x41, 0x8f, 0xa1, 0x4a, 0x4a, 0x49, 0x65, 0x67, 0x6a, 0xf5, 0x1e, 0x15,
0xe8, 0x4e, 0x80, 0xf0, 0xb4, 0x00, 0xf8, 0x82, 0x0b, 0x9e, 0x43, 0xd5, 0xd6, 0x58, 0x87, 0xca,
0x78, 0x32, 0x3e, 0x6d, 0xef, 0x21, 0x42, 0x6b, 0x34, 0xfe, 0xd4, 0x7f, 0x37, 0x1a, 0x4e, 0x07,
0x1f, 0xf9, 0xc5, 0x84, 0xb7, 0x59, 0xf0, 0x93, 0x01, 0x2c, 0x7f, 0xe7, 0x7c, 0x80, 0x4f, 0x00,
0x14, 0xdd, 0xe6, 0xa4, 0xcd, 0x54, 0x24, 0xee, 0x9e, 0x9e, 0x53, 0x46, 0x09, 0x1e, 0x41, 0xf5,
0xb6, 0x38, 0xa2, 0x7b, 0x83, 0xed, 0x8d, 0x14, 0xf6, 0xb8, 0x7c, 0xd1, 0xc6, 0x63, 0xa8, 0x2b,
0x97, 0xca, 0xcd, 0xf6, 0xe0, 0x1f, 0x81, 0xf9, 0x0a, 0x9a, 0xd5, 0xec, 0x9f, 0xee, 0xe4, 0x6f,
0x00, 0x00, 0x00, 0xff, 0xff, 0xea, 0xcf, 0xa2, 0x96, 0xa0, 0x03, 0x00, 0x00,
2021-03-18 16:40:47 +00:00
}