You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

426 lines
17 KiB

  1. // Code generated by protoc-gen-gogo. DO NOT EDIT.
  2. // source: proto/privval/msgs.proto
  3. package privval
  4. import (
  5. fmt "fmt"
  6. _ "github.com/gogo/protobuf/gogoproto"
  7. proto "github.com/gogo/protobuf/proto"
  8. keys "github.com/tendermint/tendermint/proto/crypto/keys"
  9. types "github.com/tendermint/tendermint/proto/types"
  10. math "math"
  11. )
  12. // Reference imports to suppress errors if they are not otherwise used.
  13. var _ = proto.Marshal
  14. var _ = fmt.Errorf
  15. var _ = math.Inf
  16. // This is a compile-time assertion to ensure that this generated file
  17. // is compatible with the proto package it is being compiled against.
  18. // A compilation error at this line likely means your copy of the
  19. // proto package needs to be updated.
  20. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
  21. type RemoteSignerError struct {
  22. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  23. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  24. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  25. XXX_unrecognized []byte `json:"-"`
  26. XXX_sizecache int32 `json:"-"`
  27. }
  28. func (m *RemoteSignerError) Reset() { *m = RemoteSignerError{} }
  29. func (m *RemoteSignerError) String() string { return proto.CompactTextString(m) }
  30. func (*RemoteSignerError) ProtoMessage() {}
  31. func (*RemoteSignerError) Descriptor() ([]byte, []int) {
  32. return fileDescriptor_9ec52cc5e378f9a4, []int{0}
  33. }
  34. func (m *RemoteSignerError) XXX_Unmarshal(b []byte) error {
  35. return xxx_messageInfo_RemoteSignerError.Unmarshal(m, b)
  36. }
  37. func (m *RemoteSignerError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  38. return xxx_messageInfo_RemoteSignerError.Marshal(b, m, deterministic)
  39. }
  40. func (m *RemoteSignerError) XXX_Merge(src proto.Message) {
  41. xxx_messageInfo_RemoteSignerError.Merge(m, src)
  42. }
  43. func (m *RemoteSignerError) XXX_Size() int {
  44. return xxx_messageInfo_RemoteSignerError.Size(m)
  45. }
  46. func (m *RemoteSignerError) XXX_DiscardUnknown() {
  47. xxx_messageInfo_RemoteSignerError.DiscardUnknown(m)
  48. }
  49. var xxx_messageInfo_RemoteSignerError proto.InternalMessageInfo
  50. func (m *RemoteSignerError) GetCode() int32 {
  51. if m != nil {
  52. return m.Code
  53. }
  54. return 0
  55. }
  56. func (m *RemoteSignerError) GetDescription() string {
  57. if m != nil {
  58. return m.Description
  59. }
  60. return ""
  61. }
  62. // PubKeyRequest requests the consensus public key from the remote signer.
  63. type PubKeyRequest struct {
  64. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  65. XXX_unrecognized []byte `json:"-"`
  66. XXX_sizecache int32 `json:"-"`
  67. }
  68. func (m *PubKeyRequest) Reset() { *m = PubKeyRequest{} }
  69. func (m *PubKeyRequest) String() string { return proto.CompactTextString(m) }
  70. func (*PubKeyRequest) ProtoMessage() {}
  71. func (*PubKeyRequest) Descriptor() ([]byte, []int) {
  72. return fileDescriptor_9ec52cc5e378f9a4, []int{1}
  73. }
  74. func (m *PubKeyRequest) XXX_Unmarshal(b []byte) error {
  75. return xxx_messageInfo_PubKeyRequest.Unmarshal(m, b)
  76. }
  77. func (m *PubKeyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  78. return xxx_messageInfo_PubKeyRequest.Marshal(b, m, deterministic)
  79. }
  80. func (m *PubKeyRequest) XXX_Merge(src proto.Message) {
  81. xxx_messageInfo_PubKeyRequest.Merge(m, src)
  82. }
  83. func (m *PubKeyRequest) XXX_Size() int {
  84. return xxx_messageInfo_PubKeyRequest.Size(m)
  85. }
  86. func (m *PubKeyRequest) XXX_DiscardUnknown() {
  87. xxx_messageInfo_PubKeyRequest.DiscardUnknown(m)
  88. }
  89. var xxx_messageInfo_PubKeyRequest proto.InternalMessageInfo
  90. // PubKeyResponse is a response message containing the public key.
  91. type PubKeyResponse struct {
  92. PubKey keys.PublicKey `protobuf:"bytes,1,opt,name=pub_key,json=pubKey,proto3" json:"pub_key"`
  93. Error *RemoteSignerError `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
  94. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  95. XXX_unrecognized []byte `json:"-"`
  96. XXX_sizecache int32 `json:"-"`
  97. }
  98. func (m *PubKeyResponse) Reset() { *m = PubKeyResponse{} }
  99. func (m *PubKeyResponse) String() string { return proto.CompactTextString(m) }
  100. func (*PubKeyResponse) ProtoMessage() {}
  101. func (*PubKeyResponse) Descriptor() ([]byte, []int) {
  102. return fileDescriptor_9ec52cc5e378f9a4, []int{2}
  103. }
  104. func (m *PubKeyResponse) XXX_Unmarshal(b []byte) error {
  105. return xxx_messageInfo_PubKeyResponse.Unmarshal(m, b)
  106. }
  107. func (m *PubKeyResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  108. return xxx_messageInfo_PubKeyResponse.Marshal(b, m, deterministic)
  109. }
  110. func (m *PubKeyResponse) XXX_Merge(src proto.Message) {
  111. xxx_messageInfo_PubKeyResponse.Merge(m, src)
  112. }
  113. func (m *PubKeyResponse) XXX_Size() int {
  114. return xxx_messageInfo_PubKeyResponse.Size(m)
  115. }
  116. func (m *PubKeyResponse) XXX_DiscardUnknown() {
  117. xxx_messageInfo_PubKeyResponse.DiscardUnknown(m)
  118. }
  119. var xxx_messageInfo_PubKeyResponse proto.InternalMessageInfo
  120. func (m *PubKeyResponse) GetPubKey() keys.PublicKey {
  121. if m != nil {
  122. return m.PubKey
  123. }
  124. return keys.PublicKey{}
  125. }
  126. func (m *PubKeyResponse) GetError() *RemoteSignerError {
  127. if m != nil {
  128. return m.Error
  129. }
  130. return nil
  131. }
  132. // SignVoteRequest is a request to sign a vote
  133. type SignVoteRequest struct {
  134. Vote types.Vote `protobuf:"bytes,1,opt,name=vote,proto3" json:"vote"`
  135. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  136. XXX_unrecognized []byte `json:"-"`
  137. XXX_sizecache int32 `json:"-"`
  138. }
  139. func (m *SignVoteRequest) Reset() { *m = SignVoteRequest{} }
  140. func (m *SignVoteRequest) String() string { return proto.CompactTextString(m) }
  141. func (*SignVoteRequest) ProtoMessage() {}
  142. func (*SignVoteRequest) Descriptor() ([]byte, []int) {
  143. return fileDescriptor_9ec52cc5e378f9a4, []int{3}
  144. }
  145. func (m *SignVoteRequest) XXX_Unmarshal(b []byte) error {
  146. return xxx_messageInfo_SignVoteRequest.Unmarshal(m, b)
  147. }
  148. func (m *SignVoteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  149. return xxx_messageInfo_SignVoteRequest.Marshal(b, m, deterministic)
  150. }
  151. func (m *SignVoteRequest) XXX_Merge(src proto.Message) {
  152. xxx_messageInfo_SignVoteRequest.Merge(m, src)
  153. }
  154. func (m *SignVoteRequest) XXX_Size() int {
  155. return xxx_messageInfo_SignVoteRequest.Size(m)
  156. }
  157. func (m *SignVoteRequest) XXX_DiscardUnknown() {
  158. xxx_messageInfo_SignVoteRequest.DiscardUnknown(m)
  159. }
  160. var xxx_messageInfo_SignVoteRequest proto.InternalMessageInfo
  161. func (m *SignVoteRequest) GetVote() types.Vote {
  162. if m != nil {
  163. return m.Vote
  164. }
  165. return types.Vote{}
  166. }
  167. // SignedVoteResponse is a response containing a signed vote or an error
  168. type SignVoteResponse struct {
  169. Vote types.Vote `protobuf:"bytes,1,opt,name=vote,proto3" json:"vote"`
  170. Error *RemoteSignerError `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
  171. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  172. XXX_unrecognized []byte `json:"-"`
  173. XXX_sizecache int32 `json:"-"`
  174. }
  175. func (m *SignVoteResponse) Reset() { *m = SignVoteResponse{} }
  176. func (m *SignVoteResponse) String() string { return proto.CompactTextString(m) }
  177. func (*SignVoteResponse) ProtoMessage() {}
  178. func (*SignVoteResponse) Descriptor() ([]byte, []int) {
  179. return fileDescriptor_9ec52cc5e378f9a4, []int{4}
  180. }
  181. func (m *SignVoteResponse) XXX_Unmarshal(b []byte) error {
  182. return xxx_messageInfo_SignVoteResponse.Unmarshal(m, b)
  183. }
  184. func (m *SignVoteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  185. return xxx_messageInfo_SignVoteResponse.Marshal(b, m, deterministic)
  186. }
  187. func (m *SignVoteResponse) XXX_Merge(src proto.Message) {
  188. xxx_messageInfo_SignVoteResponse.Merge(m, src)
  189. }
  190. func (m *SignVoteResponse) XXX_Size() int {
  191. return xxx_messageInfo_SignVoteResponse.Size(m)
  192. }
  193. func (m *SignVoteResponse) XXX_DiscardUnknown() {
  194. xxx_messageInfo_SignVoteResponse.DiscardUnknown(m)
  195. }
  196. var xxx_messageInfo_SignVoteResponse proto.InternalMessageInfo
  197. func (m *SignVoteResponse) GetVote() types.Vote {
  198. if m != nil {
  199. return m.Vote
  200. }
  201. return types.Vote{}
  202. }
  203. func (m *SignVoteResponse) GetError() *RemoteSignerError {
  204. if m != nil {
  205. return m.Error
  206. }
  207. return nil
  208. }
  209. // SignProposalRequest is a request to sign a proposal
  210. type SignProposalRequest struct {
  211. Proposal types.Proposal `protobuf:"bytes,1,opt,name=proposal,proto3" json:"proposal"`
  212. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  213. XXX_unrecognized []byte `json:"-"`
  214. XXX_sizecache int32 `json:"-"`
  215. }
  216. func (m *SignProposalRequest) Reset() { *m = SignProposalRequest{} }
  217. func (m *SignProposalRequest) String() string { return proto.CompactTextString(m) }
  218. func (*SignProposalRequest) ProtoMessage() {}
  219. func (*SignProposalRequest) Descriptor() ([]byte, []int) {
  220. return fileDescriptor_9ec52cc5e378f9a4, []int{5}
  221. }
  222. func (m *SignProposalRequest) XXX_Unmarshal(b []byte) error {
  223. return xxx_messageInfo_SignProposalRequest.Unmarshal(m, b)
  224. }
  225. func (m *SignProposalRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  226. return xxx_messageInfo_SignProposalRequest.Marshal(b, m, deterministic)
  227. }
  228. func (m *SignProposalRequest) XXX_Merge(src proto.Message) {
  229. xxx_messageInfo_SignProposalRequest.Merge(m, src)
  230. }
  231. func (m *SignProposalRequest) XXX_Size() int {
  232. return xxx_messageInfo_SignProposalRequest.Size(m)
  233. }
  234. func (m *SignProposalRequest) XXX_DiscardUnknown() {
  235. xxx_messageInfo_SignProposalRequest.DiscardUnknown(m)
  236. }
  237. var xxx_messageInfo_SignProposalRequest proto.InternalMessageInfo
  238. func (m *SignProposalRequest) GetProposal() types.Proposal {
  239. if m != nil {
  240. return m.Proposal
  241. }
  242. return types.Proposal{}
  243. }
  244. // SignedProposalResponse is response containing a signed proposal or an error
  245. type SignedProposalResponse struct {
  246. Proposal types.Proposal `protobuf:"bytes,1,opt,name=proposal,proto3" json:"proposal"`
  247. Error *RemoteSignerError `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
  248. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  249. XXX_unrecognized []byte `json:"-"`
  250. XXX_sizecache int32 `json:"-"`
  251. }
  252. func (m *SignedProposalResponse) Reset() { *m = SignedProposalResponse{} }
  253. func (m *SignedProposalResponse) String() string { return proto.CompactTextString(m) }
  254. func (*SignedProposalResponse) ProtoMessage() {}
  255. func (*SignedProposalResponse) Descriptor() ([]byte, []int) {
  256. return fileDescriptor_9ec52cc5e378f9a4, []int{6}
  257. }
  258. func (m *SignedProposalResponse) XXX_Unmarshal(b []byte) error {
  259. return xxx_messageInfo_SignedProposalResponse.Unmarshal(m, b)
  260. }
  261. func (m *SignedProposalResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  262. return xxx_messageInfo_SignedProposalResponse.Marshal(b, m, deterministic)
  263. }
  264. func (m *SignedProposalResponse) XXX_Merge(src proto.Message) {
  265. xxx_messageInfo_SignedProposalResponse.Merge(m, src)
  266. }
  267. func (m *SignedProposalResponse) XXX_Size() int {
  268. return xxx_messageInfo_SignedProposalResponse.Size(m)
  269. }
  270. func (m *SignedProposalResponse) XXX_DiscardUnknown() {
  271. xxx_messageInfo_SignedProposalResponse.DiscardUnknown(m)
  272. }
  273. var xxx_messageInfo_SignedProposalResponse proto.InternalMessageInfo
  274. func (m *SignedProposalResponse) GetProposal() types.Proposal {
  275. if m != nil {
  276. return m.Proposal
  277. }
  278. return types.Proposal{}
  279. }
  280. func (m *SignedProposalResponse) GetError() *RemoteSignerError {
  281. if m != nil {
  282. return m.Error
  283. }
  284. return nil
  285. }
  286. // PingRequest is a request to confirm that the connection is alive.
  287. type PingRequest struct {
  288. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  289. XXX_unrecognized []byte `json:"-"`
  290. XXX_sizecache int32 `json:"-"`
  291. }
  292. func (m *PingRequest) Reset() { *m = PingRequest{} }
  293. func (m *PingRequest) String() string { return proto.CompactTextString(m) }
  294. func (*PingRequest) ProtoMessage() {}
  295. func (*PingRequest) Descriptor() ([]byte, []int) {
  296. return fileDescriptor_9ec52cc5e378f9a4, []int{7}
  297. }
  298. func (m *PingRequest) XXX_Unmarshal(b []byte) error {
  299. return xxx_messageInfo_PingRequest.Unmarshal(m, b)
  300. }
  301. func (m *PingRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  302. return xxx_messageInfo_PingRequest.Marshal(b, m, deterministic)
  303. }
  304. func (m *PingRequest) XXX_Merge(src proto.Message) {
  305. xxx_messageInfo_PingRequest.Merge(m, src)
  306. }
  307. func (m *PingRequest) XXX_Size() int {
  308. return xxx_messageInfo_PingRequest.Size(m)
  309. }
  310. func (m *PingRequest) XXX_DiscardUnknown() {
  311. xxx_messageInfo_PingRequest.DiscardUnknown(m)
  312. }
  313. var xxx_messageInfo_PingRequest proto.InternalMessageInfo
  314. // PingResponse is a response to confirm that the connection is alive.
  315. type PingResponse struct {
  316. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  317. XXX_unrecognized []byte `json:"-"`
  318. XXX_sizecache int32 `json:"-"`
  319. }
  320. func (m *PingResponse) Reset() { *m = PingResponse{} }
  321. func (m *PingResponse) String() string { return proto.CompactTextString(m) }
  322. func (*PingResponse) ProtoMessage() {}
  323. func (*PingResponse) Descriptor() ([]byte, []int) {
  324. return fileDescriptor_9ec52cc5e378f9a4, []int{8}
  325. }
  326. func (m *PingResponse) XXX_Unmarshal(b []byte) error {
  327. return xxx_messageInfo_PingResponse.Unmarshal(m, b)
  328. }
  329. func (m *PingResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  330. return xxx_messageInfo_PingResponse.Marshal(b, m, deterministic)
  331. }
  332. func (m *PingResponse) XXX_Merge(src proto.Message) {
  333. xxx_messageInfo_PingResponse.Merge(m, src)
  334. }
  335. func (m *PingResponse) XXX_Size() int {
  336. return xxx_messageInfo_PingResponse.Size(m)
  337. }
  338. func (m *PingResponse) XXX_DiscardUnknown() {
  339. xxx_messageInfo_PingResponse.DiscardUnknown(m)
  340. }
  341. var xxx_messageInfo_PingResponse proto.InternalMessageInfo
  342. func init() {
  343. proto.RegisterType((*RemoteSignerError)(nil), "tendermint.proto.privval.RemoteSignerError")
  344. proto.RegisterType((*PubKeyRequest)(nil), "tendermint.proto.privval.PubKeyRequest")
  345. proto.RegisterType((*PubKeyResponse)(nil), "tendermint.proto.privval.PubKeyResponse")
  346. proto.RegisterType((*SignVoteRequest)(nil), "tendermint.proto.privval.SignVoteRequest")
  347. proto.RegisterType((*SignVoteResponse)(nil), "tendermint.proto.privval.SignVoteResponse")
  348. proto.RegisterType((*SignProposalRequest)(nil), "tendermint.proto.privval.SignProposalRequest")
  349. proto.RegisterType((*SignedProposalResponse)(nil), "tendermint.proto.privval.SignedProposalResponse")
  350. proto.RegisterType((*PingRequest)(nil), "tendermint.proto.privval.PingRequest")
  351. proto.RegisterType((*PingResponse)(nil), "tendermint.proto.privval.PingResponse")
  352. }
  353. func init() { proto.RegisterFile("proto/privval/msgs.proto", fileDescriptor_9ec52cc5e378f9a4) }
  354. var fileDescriptor_9ec52cc5e378f9a4 = []byte{
  355. // 401 bytes of a gzipped FileDescriptorProto
  356. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xd1, 0xca, 0xd3, 0x30,
  357. 0x1c, 0xc5, 0xad, 0x6c, 0x53, 0xff, 0x75, 0x9b, 0x56, 0xd0, 0x32, 0x14, 0x4b, 0x2f, 0x74, 0x20,
  358. 0xa4, 0x32, 0xc1, 0x7b, 0x07, 0x0a, 0x63, 0x37, 0xa5, 0x82, 0xa0, 0x37, 0x63, 0x6d, 0xff, 0x74,
  359. 0x61, 0x6b, 0x13, 0x93, 0x74, 0xd0, 0x87, 0xf0, 0x09, 0xbc, 0xf0, 0x75, 0x7c, 0x0a, 0x9f, 0x45,
  360. 0x9a, 0xa4, 0x5f, 0xf7, 0x31, 0x76, 0xf3, 0xb1, 0xbb, 0xe4, 0xe4, 0x7f, 0x4e, 0xce, 0x2f, 0xb4,
  361. 0xe0, 0x73, 0xc1, 0x14, 0x8b, 0xb8, 0xa0, 0xc7, 0xe3, 0xf6, 0x10, 0x95, 0xb2, 0x90, 0x44, 0x4b,
  362. 0x9e, 0xaf, 0xb0, 0xca, 0x51, 0x94, 0xb4, 0x52, 0x46, 0x21, 0x76, 0x68, 0xf6, 0x46, 0xed, 0xa8,
  363. 0xc8, 0x37, 0x7c, 0x2b, 0x54, 0x13, 0x19, 0x7f, 0xc1, 0x0a, 0xd6, 0xaf, 0xcc, 0xfc, 0xec, 0x95,
  364. 0x51, 0x32, 0xd1, 0x70, 0xc5, 0xa2, 0x3d, 0x36, 0x32, 0x52, 0x0d, 0x47, 0x7b, 0xc1, 0xec, 0x85,
  365. 0x39, 0xd6, 0xd2, 0xe9, 0x41, 0xb8, 0x82, 0xa7, 0x09, 0x96, 0x4c, 0xe1, 0x57, 0x5a, 0x54, 0x28,
  366. 0x3e, 0x0b, 0xc1, 0x84, 0xe7, 0xc1, 0x20, 0x63, 0x39, 0xfa, 0x4e, 0xe0, 0xcc, 0x87, 0x89, 0x5e,
  367. 0x7b, 0x01, 0xb8, 0x39, 0xca, 0x4c, 0x50, 0xae, 0x28, 0xab, 0xfc, 0xfb, 0x81, 0x33, 0x7f, 0x94,
  368. 0x9c, 0x4a, 0xe1, 0x14, 0xc6, 0x71, 0x9d, 0xae, 0xb1, 0x49, 0xf0, 0x67, 0x8d, 0x52, 0x85, 0xbf,
  369. 0x1d, 0x98, 0x74, 0x8a, 0xe4, 0xac, 0x92, 0xe8, 0x7d, 0x81, 0x07, 0xbc, 0x4e, 0x37, 0x7b, 0x6c,
  370. 0x74, 0xb8, 0xbb, 0x78, 0x4b, 0xce, 0xd0, 0x0d, 0x03, 0x69, 0x19, 0x48, 0x5c, 0xa7, 0x07, 0x9a,
  371. 0xad, 0xb1, 0x59, 0x0e, 0xfe, 0xfe, 0x7b, 0x7d, 0x2f, 0x19, 0x71, 0x9d, 0xe7, 0x7d, 0x82, 0x21,
  372. 0xb6, 0x55, 0x75, 0x0f, 0x77, 0xf1, 0x8e, 0x5c, 0x7a, 0x40, 0x72, 0x46, 0x97, 0x18, 0x67, 0xb8,
  373. 0x82, 0x69, 0xab, 0x7e, 0x63, 0x0a, 0x6d, 0x61, 0xef, 0x23, 0x0c, 0x8e, 0x4c, 0xa1, 0xad, 0xf6,
  374. 0xf2, 0x3c, 0xd4, 0xbc, 0x5c, 0x6b, 0xb1, 0x7d, 0xf4, 0x7c, 0xf8, 0xcb, 0x81, 0x27, 0x7d, 0x96,
  375. 0x45, 0xbd, 0x63, 0xd8, 0x35, 0xd0, 0xbe, 0xc3, 0xb3, 0x56, 0x8d, 0x05, 0xe3, 0x4c, 0x6e, 0x0f,
  376. 0x1d, 0xde, 0x12, 0x1e, 0x72, 0x2b, 0xd9, 0x56, 0xc1, 0xa5, 0x56, 0x9d, 0xd5, 0x36, 0xbb, 0xf1,
  377. 0x85, 0x7f, 0x1c, 0x78, 0xae, 0x6f, 0xcc, 0xfb, 0x74, 0x0b, 0x7c, 0x85, 0xf8, 0x6b, 0xc0, 0x8f,
  378. 0xc1, 0x8d, 0x69, 0x55, 0x74, 0x1f, 0xe1, 0x04, 0x1e, 0x9b, 0xad, 0x69, 0xb9, 0x7c, 0xff, 0x83,
  379. 0x14, 0x54, 0xed, 0xea, 0x94, 0x64, 0xac, 0x8c, 0xfa, 0xf8, 0xd3, 0xe5, 0xad, 0xff, 0x34, 0x1d,
  380. 0xe9, 0xed, 0x87, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd1, 0x00, 0x13, 0x1c, 0xbf, 0x03, 0x00,
  381. 0x00,
  382. }