status-go/protocol/protobuf/application_metadata_messag...

260 lines
14 KiB
Go
Raw Normal View History

// Code generated by protoc-gen-go. DO NOT EDIT.
// source: application_metadata_message.proto
package protobuf
import (
fmt "fmt"
2020-01-02 09:10:19 +00:00
proto "github.com/golang/protobuf/proto"
math "math"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// 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
type ApplicationMetadataMessage_Type int32
const (
ApplicationMetadataMessage_UNKNOWN ApplicationMetadataMessage_Type = 0
ApplicationMetadataMessage_CHAT_MESSAGE ApplicationMetadataMessage_Type = 1
ApplicationMetadataMessage_CONTACT_UPDATE ApplicationMetadataMessage_Type = 2
ApplicationMetadataMessage_MEMBERSHIP_UPDATE_MESSAGE ApplicationMetadataMessage_Type = 3
ApplicationMetadataMessage_PAIR_INSTALLATION ApplicationMetadataMessage_Type = 4
ApplicationMetadataMessage_SYNC_INSTALLATION ApplicationMetadataMessage_Type = 5
ApplicationMetadataMessage_REQUEST_ADDRESS_FOR_TRANSACTION ApplicationMetadataMessage_Type = 6
ApplicationMetadataMessage_ACCEPT_REQUEST_ADDRESS_FOR_TRANSACTION ApplicationMetadataMessage_Type = 7
ApplicationMetadataMessage_DECLINE_REQUEST_ADDRESS_FOR_TRANSACTION ApplicationMetadataMessage_Type = 8
ApplicationMetadataMessage_REQUEST_TRANSACTION ApplicationMetadataMessage_Type = 9
ApplicationMetadataMessage_SEND_TRANSACTION ApplicationMetadataMessage_Type = 10
ApplicationMetadataMessage_DECLINE_REQUEST_TRANSACTION ApplicationMetadataMessage_Type = 11
ApplicationMetadataMessage_SYNC_INSTALLATION_CONTACT ApplicationMetadataMessage_Type = 12
ApplicationMetadataMessage_SYNC_INSTALLATION_ACCOUNT ApplicationMetadataMessage_Type = 13
ApplicationMetadataMessage_SYNC_INSTALLATION_PUBLIC_CHAT ApplicationMetadataMessage_Type = 14
2020-07-03 08:26:35 +00:00
ApplicationMetadataMessage_CONTACT_CODE_ADVERTISEMENT ApplicationMetadataMessage_Type = 15
ApplicationMetadataMessage_PUSH_NOTIFICATION_REGISTRATION ApplicationMetadataMessage_Type = 16
ApplicationMetadataMessage_PUSH_NOTIFICATION_REGISTRATION_RESPONSE ApplicationMetadataMessage_Type = 17
2020-06-30 07:50:59 +00:00
ApplicationMetadataMessage_PUSH_NOTIFICATION_QUERY ApplicationMetadataMessage_Type = 18
2020-07-03 08:26:35 +00:00
ApplicationMetadataMessage_PUSH_NOTIFICATION_QUERY_RESPONSE ApplicationMetadataMessage_Type = 19
ApplicationMetadataMessage_PUSH_NOTIFICATION_REQUEST ApplicationMetadataMessage_Type = 20
ApplicationMetadataMessage_PUSH_NOTIFICATION_RESPONSE ApplicationMetadataMessage_Type = 21
ApplicationMetadataMessage_EMOJI_REACTION ApplicationMetadataMessage_Type = 22
2020-08-07 13:49:37 +00:00
ApplicationMetadataMessage_GROUP_CHAT_INVITATION ApplicationMetadataMessage_Type = 23
ApplicationMetadataMessage_CHAT_IDENTITY ApplicationMetadataMessage_Type = 24
ApplicationMetadataMessage_COMMUNITY_DESCRIPTION ApplicationMetadataMessage_Type = 25
ApplicationMetadataMessage_COMMUNITY_INVITATION ApplicationMetadataMessage_Type = 26
2021-01-11 10:32:51 +00:00
ApplicationMetadataMessage_COMMUNITY_REQUEST_TO_JOIN ApplicationMetadataMessage_Type = 27
ApplicationMetadataMessage_PIN_MESSAGE ApplicationMetadataMessage_Type = 28
2021-06-07 08:31:27 +00:00
ApplicationMetadataMessage_EDIT_MESSAGE ApplicationMetadataMessage_Type = 29
ApplicationMetadataMessage_STATUS_UPDATE ApplicationMetadataMessage_Type = 30
ApplicationMetadataMessage_DELETE_MESSAGE ApplicationMetadataMessage_Type = 31
ApplicationMetadataMessage_SYNC_INSTALLATION_COMMUNITY ApplicationMetadataMessage_Type = 32
Anon Metrics Broadcast (#2198) * Protobufs and adapters * Added basic anon metric service and config init * Added fibonacci interval incrementer * Added basic Client.Start func and integrated interval incrementer * Added new processed field to app metrics table * Added id column to app metrics table * Added migration clean up * Added appmetrics GetUnprocessed and SetToProcessedByIDs and tests There was a wierd bug where metrics in the db that did not explicitly insert a value would be NULL, so could not be found by . In addition I've added a new primary id field to the app_metrics table so that updates could be done against very specific metric rows. * Updated adaptors and db to handle proto_id I need a way to distinguish individual metric items from each other so that I can ignore the ones that have been seen before. * Moved incrementer into dedicated file * Resolve incrementer test fail * Finalised the main loop functionality * Implemented delete loop framework * Updated adaptors file name * Added delete loop delay and quit, and tweak on RawMessage gen * Completed delete loop logic * Added DBLock to prevent deletion during mainLoop * Added postgres DB connection, integrated into anonmetrics.Server * Removed proto_id from SQL migration and model * Integrated postgres with Server and updated adaptors * Function name update * Added sample config files for client and server * Fixes and testing for low level e2e * make generate * Fix lint * Fix for receiving an anonMetricBatch not in server mode * Postgres test fixes * Tidy up, make vendor and make generate * delinting * Fixing database tests * Attempted fix of does: cannot open `does' (No such file or directory) not: cannot open `not' (No such file or directory) exist: cannot open `exist' (No such file or directory) error on sql resource loas * Moved all anon metric postgres migration logic and sources into a the protocol/anonmetrics package or sub packages. I don't know if this will fix the does: cannot open `does' (No such file or directory) not: cannot open `not' (No such file or directory) exist: cannot open `exist' (No such file or directory) error that happens in Jenkins but this could work * Lint for the lint god * Why doesn't the linter list all its problems at once? * test tweaks * Fix for wakuV2 change * DB reset change * Fix for postgres db migrations fails * More robust implementation of postgres test setup and teardown * Added block for anon metrics functionality * Version Bump to 0.84.0 * Added test to check anon metrics broadcast is deactivated * Protobufs and adapters * Added basic anon metric service and config init * Added new processed field to app metrics table * Added id column to app metrics table * Added migration clean up * Added appmetrics GetUnprocessed and SetToProcessedByIDs and tests There was a wierd bug where metrics in the db that did not explicitly insert a value would be NULL, so could not be found by . In addition I've added a new primary id field to the app_metrics table so that updates could be done against very specific metric rows. * Updated adaptors and db to handle proto_id I need a way to distinguish individual metric items from each other so that I can ignore the ones that have been seen before. * Added postgres DB connection, integrated into anonmetrics.Server * Removed proto_id from SQL migration and model * Integrated postgres with Server and updated adaptors * Added sample config files for client and server * Fix lint * Fix for receiving an anonMetricBatch not in server mode * Postgres test fixes * Tidy up, make vendor and make generate * Moved all anon metric postgres migration logic and sources into a the protocol/anonmetrics package or sub packages. I don't know if this will fix the does: cannot open `does' (No such file or directory) not: cannot open `not' (No such file or directory) exist: cannot open `exist' (No such file or directory) error that happens in Jenkins but this could work
2021-09-01 12:02:18 +00:00
ApplicationMetadataMessage_ANONYMOUS_METRIC_BATCH ApplicationMetadataMessage_Type = 33
2021-10-05 17:26:02 +00:00
ApplicationMetadataMessage_SYNC_CHAT_REMOVED ApplicationMetadataMessage_Type = 34
2021-10-12 10:33:32 +00:00
ApplicationMetadataMessage_SYNC_CHAT_MESSAGES_READ ApplicationMetadataMessage_Type = 35
)
var ApplicationMetadataMessage_Type_name = map[int32]string{
0: "UNKNOWN",
1: "CHAT_MESSAGE",
2: "CONTACT_UPDATE",
3: "MEMBERSHIP_UPDATE_MESSAGE",
4: "PAIR_INSTALLATION",
5: "SYNC_INSTALLATION",
6: "REQUEST_ADDRESS_FOR_TRANSACTION",
7: "ACCEPT_REQUEST_ADDRESS_FOR_TRANSACTION",
8: "DECLINE_REQUEST_ADDRESS_FOR_TRANSACTION",
9: "REQUEST_TRANSACTION",
10: "SEND_TRANSACTION",
11: "DECLINE_REQUEST_TRANSACTION",
12: "SYNC_INSTALLATION_CONTACT",
13: "SYNC_INSTALLATION_ACCOUNT",
14: "SYNC_INSTALLATION_PUBLIC_CHAT",
2020-07-03 08:26:35 +00:00
15: "CONTACT_CODE_ADVERTISEMENT",
16: "PUSH_NOTIFICATION_REGISTRATION",
17: "PUSH_NOTIFICATION_REGISTRATION_RESPONSE",
2020-06-30 07:50:59 +00:00
18: "PUSH_NOTIFICATION_QUERY",
2020-07-03 08:26:35 +00:00
19: "PUSH_NOTIFICATION_QUERY_RESPONSE",
20: "PUSH_NOTIFICATION_REQUEST",
21: "PUSH_NOTIFICATION_RESPONSE",
22: "EMOJI_REACTION",
2020-08-07 13:49:37 +00:00
23: "GROUP_CHAT_INVITATION",
24: "CHAT_IDENTITY",
25: "COMMUNITY_DESCRIPTION",
26: "COMMUNITY_INVITATION",
2021-01-11 10:32:51 +00:00
27: "COMMUNITY_REQUEST_TO_JOIN",
28: "PIN_MESSAGE",
2021-06-07 08:31:27 +00:00
29: "EDIT_MESSAGE",
30: "STATUS_UPDATE",
31: "DELETE_MESSAGE",
32: "SYNC_INSTALLATION_COMMUNITY",
Anon Metrics Broadcast (#2198) * Protobufs and adapters * Added basic anon metric service and config init * Added fibonacci interval incrementer * Added basic Client.Start func and integrated interval incrementer * Added new processed field to app metrics table * Added id column to app metrics table * Added migration clean up * Added appmetrics GetUnprocessed and SetToProcessedByIDs and tests There was a wierd bug where metrics in the db that did not explicitly insert a value would be NULL, so could not be found by . In addition I've added a new primary id field to the app_metrics table so that updates could be done against very specific metric rows. * Updated adaptors and db to handle proto_id I need a way to distinguish individual metric items from each other so that I can ignore the ones that have been seen before. * Moved incrementer into dedicated file * Resolve incrementer test fail * Finalised the main loop functionality * Implemented delete loop framework * Updated adaptors file name * Added delete loop delay and quit, and tweak on RawMessage gen * Completed delete loop logic * Added DBLock to prevent deletion during mainLoop * Added postgres DB connection, integrated into anonmetrics.Server * Removed proto_id from SQL migration and model * Integrated postgres with Server and updated adaptors * Function name update * Added sample config files for client and server * Fixes and testing for low level e2e * make generate * Fix lint * Fix for receiving an anonMetricBatch not in server mode * Postgres test fixes * Tidy up, make vendor and make generate * delinting * Fixing database tests * Attempted fix of does: cannot open `does' (No such file or directory) not: cannot open `not' (No such file or directory) exist: cannot open `exist' (No such file or directory) error on sql resource loas * Moved all anon metric postgres migration logic and sources into a the protocol/anonmetrics package or sub packages. I don't know if this will fix the does: cannot open `does' (No such file or directory) not: cannot open `not' (No such file or directory) exist: cannot open `exist' (No such file or directory) error that happens in Jenkins but this could work * Lint for the lint god * Why doesn't the linter list all its problems at once? * test tweaks * Fix for wakuV2 change * DB reset change * Fix for postgres db migrations fails * More robust implementation of postgres test setup and teardown * Added block for anon metrics functionality * Version Bump to 0.84.0 * Added test to check anon metrics broadcast is deactivated * Protobufs and adapters * Added basic anon metric service and config init * Added new processed field to app metrics table * Added id column to app metrics table * Added migration clean up * Added appmetrics GetUnprocessed and SetToProcessedByIDs and tests There was a wierd bug where metrics in the db that did not explicitly insert a value would be NULL, so could not be found by . In addition I've added a new primary id field to the app_metrics table so that updates could be done against very specific metric rows. * Updated adaptors and db to handle proto_id I need a way to distinguish individual metric items from each other so that I can ignore the ones that have been seen before. * Added postgres DB connection, integrated into anonmetrics.Server * Removed proto_id from SQL migration and model * Integrated postgres with Server and updated adaptors * Added sample config files for client and server * Fix lint * Fix for receiving an anonMetricBatch not in server mode * Postgres test fixes * Tidy up, make vendor and make generate * Moved all anon metric postgres migration logic and sources into a the protocol/anonmetrics package or sub packages. I don't know if this will fix the does: cannot open `does' (No such file or directory) not: cannot open `not' (No such file or directory) exist: cannot open `exist' (No such file or directory) error that happens in Jenkins but this could work
2021-09-01 12:02:18 +00:00
33: "ANONYMOUS_METRIC_BATCH",
2021-10-05 17:26:02 +00:00
34: "SYNC_CHAT_REMOVED",
2021-10-12 10:33:32 +00:00
35: "SYNC_CHAT_MESSAGES_READ",
}
var ApplicationMetadataMessage_Type_value = map[string]int32{
"UNKNOWN": 0,
"CHAT_MESSAGE": 1,
"CONTACT_UPDATE": 2,
"MEMBERSHIP_UPDATE_MESSAGE": 3,
"PAIR_INSTALLATION": 4,
"SYNC_INSTALLATION": 5,
"REQUEST_ADDRESS_FOR_TRANSACTION": 6,
"ACCEPT_REQUEST_ADDRESS_FOR_TRANSACTION": 7,
"DECLINE_REQUEST_ADDRESS_FOR_TRANSACTION": 8,
"REQUEST_TRANSACTION": 9,
"SEND_TRANSACTION": 10,
"DECLINE_REQUEST_TRANSACTION": 11,
"SYNC_INSTALLATION_CONTACT": 12,
"SYNC_INSTALLATION_ACCOUNT": 13,
"SYNC_INSTALLATION_PUBLIC_CHAT": 14,
2020-07-03 08:26:35 +00:00
"CONTACT_CODE_ADVERTISEMENT": 15,
"PUSH_NOTIFICATION_REGISTRATION": 16,
"PUSH_NOTIFICATION_REGISTRATION_RESPONSE": 17,
2020-06-30 07:50:59 +00:00
"PUSH_NOTIFICATION_QUERY": 18,
2020-07-03 08:26:35 +00:00
"PUSH_NOTIFICATION_QUERY_RESPONSE": 19,
"PUSH_NOTIFICATION_REQUEST": 20,
"PUSH_NOTIFICATION_RESPONSE": 21,
"EMOJI_REACTION": 22,
2020-08-07 13:49:37 +00:00
"GROUP_CHAT_INVITATION": 23,
"CHAT_IDENTITY": 24,
"COMMUNITY_DESCRIPTION": 25,
"COMMUNITY_INVITATION": 26,
2021-01-11 10:32:51 +00:00
"COMMUNITY_REQUEST_TO_JOIN": 27,
"PIN_MESSAGE": 28,
2021-06-07 08:31:27 +00:00
"EDIT_MESSAGE": 29,
"STATUS_UPDATE": 30,
"DELETE_MESSAGE": 31,
"SYNC_INSTALLATION_COMMUNITY": 32,
Anon Metrics Broadcast (#2198) * Protobufs and adapters * Added basic anon metric service and config init * Added fibonacci interval incrementer * Added basic Client.Start func and integrated interval incrementer * Added new processed field to app metrics table * Added id column to app metrics table * Added migration clean up * Added appmetrics GetUnprocessed and SetToProcessedByIDs and tests There was a wierd bug where metrics in the db that did not explicitly insert a value would be NULL, so could not be found by . In addition I've added a new primary id field to the app_metrics table so that updates could be done against very specific metric rows. * Updated adaptors and db to handle proto_id I need a way to distinguish individual metric items from each other so that I can ignore the ones that have been seen before. * Moved incrementer into dedicated file * Resolve incrementer test fail * Finalised the main loop functionality * Implemented delete loop framework * Updated adaptors file name * Added delete loop delay and quit, and tweak on RawMessage gen * Completed delete loop logic * Added DBLock to prevent deletion during mainLoop * Added postgres DB connection, integrated into anonmetrics.Server * Removed proto_id from SQL migration and model * Integrated postgres with Server and updated adaptors * Function name update * Added sample config files for client and server * Fixes and testing for low level e2e * make generate * Fix lint * Fix for receiving an anonMetricBatch not in server mode * Postgres test fixes * Tidy up, make vendor and make generate * delinting * Fixing database tests * Attempted fix of does: cannot open `does' (No such file or directory) not: cannot open `not' (No such file or directory) exist: cannot open `exist' (No such file or directory) error on sql resource loas * Moved all anon metric postgres migration logic and sources into a the protocol/anonmetrics package or sub packages. I don't know if this will fix the does: cannot open `does' (No such file or directory) not: cannot open `not' (No such file or directory) exist: cannot open `exist' (No such file or directory) error that happens in Jenkins but this could work * Lint for the lint god * Why doesn't the linter list all its problems at once? * test tweaks * Fix for wakuV2 change * DB reset change * Fix for postgres db migrations fails * More robust implementation of postgres test setup and teardown * Added block for anon metrics functionality * Version Bump to 0.84.0 * Added test to check anon metrics broadcast is deactivated * Protobufs and adapters * Added basic anon metric service and config init * Added new processed field to app metrics table * Added id column to app metrics table * Added migration clean up * Added appmetrics GetUnprocessed and SetToProcessedByIDs and tests There was a wierd bug where metrics in the db that did not explicitly insert a value would be NULL, so could not be found by . In addition I've added a new primary id field to the app_metrics table so that updates could be done against very specific metric rows. * Updated adaptors and db to handle proto_id I need a way to distinguish individual metric items from each other so that I can ignore the ones that have been seen before. * Added postgres DB connection, integrated into anonmetrics.Server * Removed proto_id from SQL migration and model * Integrated postgres with Server and updated adaptors * Added sample config files for client and server * Fix lint * Fix for receiving an anonMetricBatch not in server mode * Postgres test fixes * Tidy up, make vendor and make generate * Moved all anon metric postgres migration logic and sources into a the protocol/anonmetrics package or sub packages. I don't know if this will fix the does: cannot open `does' (No such file or directory) not: cannot open `not' (No such file or directory) exist: cannot open `exist' (No such file or directory) error that happens in Jenkins but this could work
2021-09-01 12:02:18 +00:00
"ANONYMOUS_METRIC_BATCH": 33,
2021-10-05 17:26:02 +00:00
"SYNC_CHAT_REMOVED": 34,
2021-10-12 10:33:32 +00:00
"SYNC_CHAT_MESSAGES_READ": 35,
}
func (x ApplicationMetadataMessage_Type) String() string {
return proto.EnumName(ApplicationMetadataMessage_Type_name, int32(x))
}
func (ApplicationMetadataMessage_Type) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_ad09a6406fcf24c7, []int{0, 0}
}
type ApplicationMetadataMessage struct {
// Signature of the payload field
Signature []byte `protobuf:"bytes,1,opt,name=signature,proto3" json:"signature,omitempty"`
// This is the encoded protobuf of the application level message, i.e ChatMessage
Payload []byte `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
// The type of protobuf message sent
Type ApplicationMetadataMessage_Type `protobuf:"varint,3,opt,name=type,proto3,enum=protobuf.ApplicationMetadataMessage_Type" json:"type,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ApplicationMetadataMessage) Reset() { *m = ApplicationMetadataMessage{} }
func (m *ApplicationMetadataMessage) String() string { return proto.CompactTextString(m) }
func (*ApplicationMetadataMessage) ProtoMessage() {}
func (*ApplicationMetadataMessage) Descriptor() ([]byte, []int) {
return fileDescriptor_ad09a6406fcf24c7, []int{0}
}
func (m *ApplicationMetadataMessage) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ApplicationMetadataMessage.Unmarshal(m, b)
}
func (m *ApplicationMetadataMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ApplicationMetadataMessage.Marshal(b, m, deterministic)
}
func (m *ApplicationMetadataMessage) XXX_Merge(src proto.Message) {
xxx_messageInfo_ApplicationMetadataMessage.Merge(m, src)
}
func (m *ApplicationMetadataMessage) XXX_Size() int {
return xxx_messageInfo_ApplicationMetadataMessage.Size(m)
}
func (m *ApplicationMetadataMessage) XXX_DiscardUnknown() {
xxx_messageInfo_ApplicationMetadataMessage.DiscardUnknown(m)
}
var xxx_messageInfo_ApplicationMetadataMessage proto.InternalMessageInfo
func (m *ApplicationMetadataMessage) GetSignature() []byte {
if m != nil {
return m.Signature
}
return nil
}
func (m *ApplicationMetadataMessage) GetPayload() []byte {
if m != nil {
return m.Payload
}
return nil
}
func (m *ApplicationMetadataMessage) GetType() ApplicationMetadataMessage_Type {
if m != nil {
return m.Type
}
return ApplicationMetadataMessage_UNKNOWN
}
func init() {
proto.RegisterEnum("protobuf.ApplicationMetadataMessage_Type", ApplicationMetadataMessage_Type_name, ApplicationMetadataMessage_Type_value)
proto.RegisterType((*ApplicationMetadataMessage)(nil), "protobuf.ApplicationMetadataMessage")
}
func init() {
proto.RegisterFile("application_metadata_message.proto", fileDescriptor_ad09a6406fcf24c7)
}
var fileDescriptor_ad09a6406fcf24c7 = []byte{
2021-10-12 10:33:32 +00:00
// 632 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x54, 0x5b, 0x4f, 0x1b, 0x3d,
0x10, 0xfd, 0x02, 0x7c, 0x04, 0x26, 0x5c, 0x8c, 0xb9, 0x85, 0x70, 0x0b, 0xa1, 0x6a, 0x69, 0x2b,
0xa5, 0x52, 0xfb, 0x58, 0xf5, 0xc1, 0xf1, 0x0e, 0xc4, 0x34, 0x6b, 0x2f, 0xb6, 0x97, 0x2a, 0x7d,
0xb1, 0x96, 0x92, 0x22, 0x24, 0x20, 0x11, 0x84, 0x07, 0x7e, 0x45, 0x7f, 0x6f, 0xdf, 0x2a, 0x6f,
0x2e, 0x1b, 0x4a, 0x28, 0x4f, 0xc9, 0x9e, 0x73, 0x66, 0x66, 0xe7, 0xcc, 0xcc, 0x42, 0x25, 0xe9,
0x74, 0xae, 0x2e, 0x7f, 0x24, 0xdd, 0xcb, 0xf6, 0x8d, 0xbb, 0x6e, 0x75, 0x93, 0xf3, 0xa4, 0x9b,
0xb8, 0xeb, 0xd6, 0xdd, 0x5d, 0x72, 0xd1, 0xaa, 0x76, 0x6e, 0xdb, 0xdd, 0x36, 0x9d, 0x49, 0x7f,
0xce, 0xee, 0x7f, 0x56, 0x7e, 0xcd, 0x42, 0x89, 0x65, 0x01, 0x61, 0x5f, 0x1f, 0xf6, 0xe4, 0x74,
0x0b, 0x66, 0xef, 0x2e, 0x2f, 0x6e, 0x92, 0xee, 0xfd, 0x6d, 0xab, 0x98, 0x2b, 0xe7, 0x0e, 0xe6,
0x74, 0x06, 0xd0, 0x22, 0xe4, 0x3b, 0xc9, 0xc3, 0x55, 0x3b, 0x39, 0x2f, 0x4e, 0xa4, 0xdc, 0xe0,
0x91, 0x7e, 0x81, 0xa9, 0xee, 0x43, 0xa7, 0x55, 0x9c, 0x2c, 0xe7, 0x0e, 0x16, 0x3e, 0xbe, 0xad,
0x0e, 0xea, 0x55, 0x9f, 0xaf, 0x55, 0xb5, 0x0f, 0x9d, 0x96, 0x4e, 0xc3, 0x2a, 0xbf, 0xf3, 0x30,
0xe5, 0x1f, 0x69, 0x01, 0xf2, 0xb1, 0xfc, 0x2a, 0xd5, 0x37, 0x49, 0xfe, 0xa3, 0x04, 0xe6, 0x78,
0x9d, 0x59, 0x17, 0xa2, 0x31, 0xec, 0x08, 0x49, 0x8e, 0x52, 0x58, 0xe0, 0x4a, 0x5a, 0xc6, 0xad,
0x8b, 0xa3, 0x80, 0x59, 0x24, 0x13, 0x74, 0x1b, 0x36, 0x42, 0x0c, 0x6b, 0xa8, 0x4d, 0x5d, 0x44,
0x7d, 0x78, 0x18, 0x32, 0x49, 0x57, 0x61, 0x29, 0x62, 0x42, 0x3b, 0x21, 0x8d, 0x65, 0x8d, 0x06,
0xb3, 0x42, 0x49, 0x32, 0xe5, 0x61, 0xd3, 0x94, 0xfc, 0x31, 0xfc, 0x3f, 0xdd, 0x87, 0x5d, 0x8d,
0x27, 0x31, 0x1a, 0xeb, 0x58, 0x10, 0x68, 0x34, 0xc6, 0x1d, 0x2a, 0xed, 0xac, 0x66, 0xd2, 0x30,
0x9e, 0x8a, 0xa6, 0xe9, 0x3b, 0x78, 0xcd, 0x38, 0xc7, 0xc8, 0xba, 0x97, 0xb4, 0x79, 0xfa, 0x1e,
0xde, 0x04, 0xc8, 0x1b, 0x42, 0xe2, 0x8b, 0xe2, 0x19, 0xba, 0x0e, 0xcb, 0x03, 0xd1, 0x28, 0x31,
0x4b, 0x57, 0x80, 0x18, 0x94, 0xc1, 0x23, 0x14, 0xe8, 0x2e, 0x6c, 0xfe, 0x9d, 0x7b, 0x54, 0x50,
0xf0, 0xd6, 0x3c, 0x69, 0xd2, 0xf5, 0x0d, 0x24, 0x73, 0xe3, 0x69, 0xc6, 0xb9, 0x8a, 0xa5, 0x25,
0xf3, 0x74, 0x0f, 0xb6, 0x9f, 0xd2, 0x51, 0x5c, 0x6b, 0x08, 0xee, 0xfc, 0x5c, 0xc8, 0x02, 0xdd,
0x81, 0xd2, 0x60, 0x1e, 0x5c, 0x05, 0xe8, 0x58, 0x70, 0x8a, 0xda, 0x0a, 0x83, 0x21, 0x4a, 0x4b,
0x16, 0x69, 0x05, 0x76, 0xa2, 0xd8, 0xd4, 0x9d, 0x54, 0x56, 0x1c, 0x0a, 0xde, 0x4b, 0xa1, 0xf1,
0x48, 0x18, 0xab, 0x7b, 0x96, 0x13, 0xef, 0xd0, 0xbf, 0x35, 0x4e, 0xa3, 0x89, 0x94, 0x34, 0x48,
0x96, 0xe8, 0x26, 0xac, 0x3f, 0x15, 0x9f, 0xc4, 0xa8, 0x9b, 0x84, 0xd2, 0x57, 0x50, 0x7e, 0x86,
0xcc, 0x52, 0x2c, 0xfb, 0xae, 0xc7, 0xd5, 0x4b, 0xfd, 0x23, 0x2b, 0xbe, 0xa5, 0x71, 0x74, 0x3f,
0x7c, 0xd5, 0xaf, 0x20, 0x86, 0xea, 0x58, 0x38, 0x8d, 0x7d, 0x9f, 0xd7, 0xe8, 0x06, 0xac, 0x1e,
0x69, 0x15, 0x47, 0xa9, 0x2d, 0x4e, 0xc8, 0x53, 0x61, 0x7b, 0xdd, 0xad, 0xd3, 0x25, 0x98, 0xef,
0x81, 0x01, 0x4a, 0x2b, 0x6c, 0x93, 0x14, 0xbd, 0x9a, 0xab, 0x30, 0x8c, 0xa5, 0xb0, 0x4d, 0x17,
0xa0, 0xe1, 0x5a, 0x44, 0xa9, 0x7a, 0x83, 0x16, 0x61, 0x25, 0xa3, 0x46, 0xf2, 0x94, 0xfc, 0x5b,
0x67, 0xcc, 0x70, 0xda, 0xca, 0x1d, 0x2b, 0x21, 0xc9, 0x26, 0x5d, 0x84, 0x42, 0x24, 0xe4, 0x70,
0xed, 0xb7, 0xfc, 0xed, 0x60, 0x20, 0xb2, 0xdb, 0xd9, 0xf6, 0x6f, 0x62, 0x2c, 0xb3, 0xb1, 0x19,
0x9c, 0xce, 0x8e, 0xef, 0x25, 0xc0, 0x06, 0x8e, 0xdc, 0xcb, 0xae, 0x5f, 0xaa, 0x71, 0x3b, 0xd3,
0x2f, 0x4d, 0xca, 0xb4, 0x04, 0x6b, 0x4c, 0x2a, 0xd9, 0x0c, 0x55, 0x6c, 0x5c, 0x88, 0x56, 0x0b,
0xee, 0x6a, 0xcc, 0xf2, 0x3a, 0xd9, 0x1b, 0x5e, 0x55, 0xda, 0xb2, 0xc6, 0x50, 0x9d, 0x62, 0x40,
0x2a, 0x7e, 0x6a, 0x19, 0xdc, 0x2f, 0x65, 0xbc, 0x81, 0x01, 0xd9, 0xaf, 0xcd, 0x7f, 0x2f, 0x54,
0x3f, 0x7c, 0x1e, 0x7c, 0x30, 0xce, 0xa6, 0xd3, 0x7f, 0x9f, 0xfe, 0x04, 0x00, 0x00, 0xff, 0xff,
0x92, 0x88, 0x0b, 0xf2, 0xd7, 0x04, 0x00, 0x00,
}