123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: company.proto
- // package声明符,用来防止不同的消息类型有命名冲突
- package v1
- import (
- fmt "fmt"
- 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 CompanyInfoRequest struct {
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CompanyInfoRequest) Reset() { *m = CompanyInfoRequest{} }
- func (m *CompanyInfoRequest) String() string { return proto.CompactTextString(m) }
- func (*CompanyInfoRequest) ProtoMessage() {}
- func (*CompanyInfoRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_ade57ca5b8f3903f, []int{0}
- }
- func (m *CompanyInfoRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CompanyInfoRequest.Unmarshal(m, b)
- }
- func (m *CompanyInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CompanyInfoRequest.Marshal(b, m, deterministic)
- }
- func (m *CompanyInfoRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CompanyInfoRequest.Merge(m, src)
- }
- func (m *CompanyInfoRequest) XXX_Size() int {
- return xxx_messageInfo_CompanyInfoRequest.Size(m)
- }
- func (m *CompanyInfoRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_CompanyInfoRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_CompanyInfoRequest proto.InternalMessageInfo
- func (m *CompanyInfoRequest) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- type CompanyInfoReply struct {
- // 审核状态
- ApproveStatus int32 `protobuf:"varint,1,opt,name=approve_status,json=approveStatus,proto3" json:"approve_status"`
- // 申请人
- Applicant string `protobuf:"bytes,2,opt,name=applicant,proto3" json:"applicant"`
- // 申请人电话
- ApplicantPhone string `protobuf:"bytes,3,opt,name=applicant_phone,json=applicantPhone,proto3" json:"applicant_phone"`
- // 公司名称
- CompanyName string `protobuf:"bytes,4,opt,name=company_name,json=companyName,proto3" json:"company_name"`
- // 公司电话
- CompanyPhone string `protobuf:"bytes,5,opt,name=company_phone,json=companyPhone,proto3" json:"company_phone"`
- // 申请人职位
- ApplicantDuty string `protobuf:"bytes,6,opt,name=applicant_duty,json=applicantDuty,proto3" json:"applicant_duty"`
- // 法人
- LegalPerson string `protobuf:"bytes,7,opt,name=legal_person,json=legalPerson,proto3" json:"legal_person"`
- // 公司地址
- CompanyAddr string `protobuf:"bytes,8,opt,name=company_addr,json=companyAddr,proto3" json:"company_addr"`
- // 社会信用码
- SocialCode string `protobuf:"bytes,9,opt,name=social_code,json=socialCode,proto3" json:"social_code"`
- // 营业执照
- BusinessLicense string `protobuf:"bytes,10,opt,name=business_license,json=businessLicense,proto3" json:"business_license"`
- // 申请人身份
- ApplicantIdentification string `protobuf:"bytes,11,opt,name=applicant_identification,json=applicantIdentification,proto3" json:"applicant_identification"`
- // 营业执照类型 1 多证合一营业执照 2 普通营业执照
- LicenseType int32 `protobuf:"varint,12,opt,name=license_type,json=licenseType,proto3" json:"license_type"`
- // 免费小区个数
- FreeGardenCount int32 `protobuf:"varint,13,opt,name=free_garden_count,json=freeGardenCount,proto3" json:"free_garden_count"`
- // 已有小区个数
- GardenCount int32 `protobuf:"varint,14,opt,name=garden_count,json=gardenCount,proto3" json:"garden_count"`
- // 账户名
- Username string `protobuf:"bytes,15,opt,name=username,proto3" json:"username"`
- // 密码
- Password string `protobuf:"bytes,16,opt,name=password,proto3" json:"password"`
- // 申请时间
- CreatedAt string `protobuf:"bytes,17,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
- // 审批时间
- ApprovedAt string `protobuf:"bytes,18,opt,name=approved_at,json=approvedAt,proto3" json:"approved_at"`
- // 小区有效天数
- Expire int32 `protobuf:"varint,19,opt,name=expire,proto3" json:"expire"`
- // 公司logo
- Logo string `protobuf:"bytes,20,opt,name=logo,proto3" json:"logo"`
- // 简介
- Desc string `protobuf:"bytes,21,opt,name=desc,proto3" json:"desc"`
- // 网址
- Site string `protobuf:"bytes,22,opt,name=site,proto3" json:"site"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CompanyInfoReply) Reset() { *m = CompanyInfoReply{} }
- func (m *CompanyInfoReply) String() string { return proto.CompactTextString(m) }
- func (*CompanyInfoReply) ProtoMessage() {}
- func (*CompanyInfoReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_ade57ca5b8f3903f, []int{1}
- }
- func (m *CompanyInfoReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CompanyInfoReply.Unmarshal(m, b)
- }
- func (m *CompanyInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CompanyInfoReply.Marshal(b, m, deterministic)
- }
- func (m *CompanyInfoReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CompanyInfoReply.Merge(m, src)
- }
- func (m *CompanyInfoReply) XXX_Size() int {
- return xxx_messageInfo_CompanyInfoReply.Size(m)
- }
- func (m *CompanyInfoReply) XXX_DiscardUnknown() {
- xxx_messageInfo_CompanyInfoReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_CompanyInfoReply proto.InternalMessageInfo
- func (m *CompanyInfoReply) GetApproveStatus() int32 {
- if m != nil {
- return m.ApproveStatus
- }
- return 0
- }
- func (m *CompanyInfoReply) GetApplicant() string {
- if m != nil {
- return m.Applicant
- }
- return ""
- }
- func (m *CompanyInfoReply) GetApplicantPhone() string {
- if m != nil {
- return m.ApplicantPhone
- }
- return ""
- }
- func (m *CompanyInfoReply) GetCompanyName() string {
- if m != nil {
- return m.CompanyName
- }
- return ""
- }
- func (m *CompanyInfoReply) GetCompanyPhone() string {
- if m != nil {
- return m.CompanyPhone
- }
- return ""
- }
- func (m *CompanyInfoReply) GetApplicantDuty() string {
- if m != nil {
- return m.ApplicantDuty
- }
- return ""
- }
- func (m *CompanyInfoReply) GetLegalPerson() string {
- if m != nil {
- return m.LegalPerson
- }
- return ""
- }
- func (m *CompanyInfoReply) GetCompanyAddr() string {
- if m != nil {
- return m.CompanyAddr
- }
- return ""
- }
- func (m *CompanyInfoReply) GetSocialCode() string {
- if m != nil {
- return m.SocialCode
- }
- return ""
- }
- func (m *CompanyInfoReply) GetBusinessLicense() string {
- if m != nil {
- return m.BusinessLicense
- }
- return ""
- }
- func (m *CompanyInfoReply) GetApplicantIdentification() string {
- if m != nil {
- return m.ApplicantIdentification
- }
- return ""
- }
- func (m *CompanyInfoReply) GetLicenseType() int32 {
- if m != nil {
- return m.LicenseType
- }
- return 0
- }
- func (m *CompanyInfoReply) GetFreeGardenCount() int32 {
- if m != nil {
- return m.FreeGardenCount
- }
- return 0
- }
- func (m *CompanyInfoReply) GetGardenCount() int32 {
- if m != nil {
- return m.GardenCount
- }
- return 0
- }
- func (m *CompanyInfoReply) GetUsername() string {
- if m != nil {
- return m.Username
- }
- return ""
- }
- func (m *CompanyInfoReply) GetPassword() string {
- if m != nil {
- return m.Password
- }
- return ""
- }
- func (m *CompanyInfoReply) GetCreatedAt() string {
- if m != nil {
- return m.CreatedAt
- }
- return ""
- }
- func (m *CompanyInfoReply) GetApprovedAt() string {
- if m != nil {
- return m.ApprovedAt
- }
- return ""
- }
- func (m *CompanyInfoReply) GetExpire() int32 {
- if m != nil {
- return m.Expire
- }
- return 0
- }
- func (m *CompanyInfoReply) GetLogo() string {
- if m != nil {
- return m.Logo
- }
- return ""
- }
- func (m *CompanyInfoReply) GetDesc() string {
- if m != nil {
- return m.Desc
- }
- return ""
- }
- func (m *CompanyInfoReply) GetSite() string {
- if m != nil {
- return m.Site
- }
- return ""
- }
- type CompanyObjStatisticSetRequest struct {
- GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- ObjType int32 `protobuf:"varint,2,opt,name=obj_type,json=objType,proto3" json:"obj_type"`
- // 为负数表示减少
- TotalIncrease int64 `protobuf:"varint,3,opt,name=total_increase,json=totalIncrease,proto3" json:"total_increase"`
- Cid int64 `protobuf:"varint,4,opt,name=cid,proto3" json:"cid"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CompanyObjStatisticSetRequest) Reset() { *m = CompanyObjStatisticSetRequest{} }
- func (m *CompanyObjStatisticSetRequest) String() string { return proto.CompactTextString(m) }
- func (*CompanyObjStatisticSetRequest) ProtoMessage() {}
- func (*CompanyObjStatisticSetRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_ade57ca5b8f3903f, []int{2}
- }
- func (m *CompanyObjStatisticSetRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CompanyObjStatisticSetRequest.Unmarshal(m, b)
- }
- func (m *CompanyObjStatisticSetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CompanyObjStatisticSetRequest.Marshal(b, m, deterministic)
- }
- func (m *CompanyObjStatisticSetRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CompanyObjStatisticSetRequest.Merge(m, src)
- }
- func (m *CompanyObjStatisticSetRequest) XXX_Size() int {
- return xxx_messageInfo_CompanyObjStatisticSetRequest.Size(m)
- }
- func (m *CompanyObjStatisticSetRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_CompanyObjStatisticSetRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_CompanyObjStatisticSetRequest proto.InternalMessageInfo
- func (m *CompanyObjStatisticSetRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *CompanyObjStatisticSetRequest) GetObjType() int32 {
- if m != nil {
- return m.ObjType
- }
- return 0
- }
- func (m *CompanyObjStatisticSetRequest) GetTotalIncrease() int64 {
- if m != nil {
- return m.TotalIncrease
- }
- return 0
- }
- func (m *CompanyObjStatisticSetRequest) GetCid() int64 {
- if m != nil {
- return m.Cid
- }
- return 0
- }
- type CompanyObjStatisticSetReply struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CompanyObjStatisticSetReply) Reset() { *m = CompanyObjStatisticSetReply{} }
- func (m *CompanyObjStatisticSetReply) String() string { return proto.CompactTextString(m) }
- func (*CompanyObjStatisticSetReply) ProtoMessage() {}
- func (*CompanyObjStatisticSetReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_ade57ca5b8f3903f, []int{3}
- }
- func (m *CompanyObjStatisticSetReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CompanyObjStatisticSetReply.Unmarshal(m, b)
- }
- func (m *CompanyObjStatisticSetReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CompanyObjStatisticSetReply.Marshal(b, m, deterministic)
- }
- func (m *CompanyObjStatisticSetReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CompanyObjStatisticSetReply.Merge(m, src)
- }
- func (m *CompanyObjStatisticSetReply) XXX_Size() int {
- return xxx_messageInfo_CompanyObjStatisticSetReply.Size(m)
- }
- func (m *CompanyObjStatisticSetReply) XXX_DiscardUnknown() {
- xxx_messageInfo_CompanyObjStatisticSetReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_CompanyObjStatisticSetReply proto.InternalMessageInfo
- type CompanyDealStatisticSetRequest struct {
- GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- Amount int64 `protobuf:"varint,2,opt,name=amount,proto3" json:"amount"`
- DateTimestamp int64 `protobuf:"varint,3,opt,name=date_timestamp,json=dateTimestamp,proto3" json:"date_timestamp"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CompanyDealStatisticSetRequest) Reset() { *m = CompanyDealStatisticSetRequest{} }
- func (m *CompanyDealStatisticSetRequest) String() string { return proto.CompactTextString(m) }
- func (*CompanyDealStatisticSetRequest) ProtoMessage() {}
- func (*CompanyDealStatisticSetRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_ade57ca5b8f3903f, []int{4}
- }
- func (m *CompanyDealStatisticSetRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CompanyDealStatisticSetRequest.Unmarshal(m, b)
- }
- func (m *CompanyDealStatisticSetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CompanyDealStatisticSetRequest.Marshal(b, m, deterministic)
- }
- func (m *CompanyDealStatisticSetRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CompanyDealStatisticSetRequest.Merge(m, src)
- }
- func (m *CompanyDealStatisticSetRequest) XXX_Size() int {
- return xxx_messageInfo_CompanyDealStatisticSetRequest.Size(m)
- }
- func (m *CompanyDealStatisticSetRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_CompanyDealStatisticSetRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_CompanyDealStatisticSetRequest proto.InternalMessageInfo
- func (m *CompanyDealStatisticSetRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *CompanyDealStatisticSetRequest) GetAmount() int64 {
- if m != nil {
- return m.Amount
- }
- return 0
- }
- func (m *CompanyDealStatisticSetRequest) GetDateTimestamp() int64 {
- if m != nil {
- return m.DateTimestamp
- }
- return 0
- }
- type CompanyDealStatisticSetReply struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CompanyDealStatisticSetReply) Reset() { *m = CompanyDealStatisticSetReply{} }
- func (m *CompanyDealStatisticSetReply) String() string { return proto.CompactTextString(m) }
- func (*CompanyDealStatisticSetReply) ProtoMessage() {}
- func (*CompanyDealStatisticSetReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_ade57ca5b8f3903f, []int{5}
- }
- func (m *CompanyDealStatisticSetReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CompanyDealStatisticSetReply.Unmarshal(m, b)
- }
- func (m *CompanyDealStatisticSetReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CompanyDealStatisticSetReply.Marshal(b, m, deterministic)
- }
- func (m *CompanyDealStatisticSetReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CompanyDealStatisticSetReply.Merge(m, src)
- }
- func (m *CompanyDealStatisticSetReply) XXX_Size() int {
- return xxx_messageInfo_CompanyDealStatisticSetReply.Size(m)
- }
- func (m *CompanyDealStatisticSetReply) XXX_DiscardUnknown() {
- xxx_messageInfo_CompanyDealStatisticSetReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_CompanyDealStatisticSetReply proto.InternalMessageInfo
- func init() {
- proto.RegisterType((*CompanyInfoRequest)(nil), "pb_v1.CompanyInfoRequest")
- proto.RegisterType((*CompanyInfoReply)(nil), "pb_v1.CompanyInfoReply")
- proto.RegisterType((*CompanyObjStatisticSetRequest)(nil), "pb_v1.CompanyObjStatisticSetRequest")
- proto.RegisterType((*CompanyObjStatisticSetReply)(nil), "pb_v1.CompanyObjStatisticSetReply")
- proto.RegisterType((*CompanyDealStatisticSetRequest)(nil), "pb_v1.CompanyDealStatisticSetRequest")
- proto.RegisterType((*CompanyDealStatisticSetReply)(nil), "pb_v1.CompanyDealStatisticSetReply")
- }
- func init() {
- proto.RegisterFile("company.proto", fileDescriptor_ade57ca5b8f3903f)
- }
- var fileDescriptor_ade57ca5b8f3903f = []byte{
- // 620 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0xcf, 0x6f, 0x13, 0x3b,
- 0x10, 0xc7, 0x95, 0xa4, 0x49, 0x93, 0x49, 0xf3, 0xa3, 0x7e, 0xaf, 0xad, 0xdf, 0xeb, 0x0f, 0x4a,
- 0xa0, 0xa2, 0x20, 0x41, 0x55, 0x71, 0xe2, 0x58, 0x5a, 0x09, 0x45, 0x42, 0x50, 0xa5, 0x3d, 0x71,
- 0x59, 0x39, 0xeb, 0x69, 0x70, 0xb5, 0x59, 0x9b, 0xb5, 0x53, 0x58, 0x89, 0x3f, 0x82, 0xbf, 0x97,
- 0x13, 0xf2, 0xd8, 0xd9, 0x36, 0x87, 0x1e, 0xb8, 0xd9, 0x9f, 0xf9, 0x7a, 0xe6, 0xeb, 0xf1, 0xec,
- 0x42, 0x2f, 0xd5, 0x73, 0x23, 0xf2, 0xf2, 0x8d, 0x29, 0xb4, 0xd3, 0xac, 0x69, 0xa6, 0xc9, 0xdd,
- 0xe9, 0xe8, 0x39, 0xb0, 0xf3, 0xc0, 0xc7, 0xf9, 0x8d, 0x9e, 0xe0, 0xb7, 0x05, 0x5a, 0xc7, 0xfa,
- 0x50, 0x57, 0x92, 0xd7, 0x0e, 0x6b, 0xc7, 0x8d, 0x49, 0x5d, 0xc9, 0xd1, 0xef, 0x26, 0x0c, 0x57,
- 0x64, 0x26, 0x2b, 0xd9, 0x11, 0xf4, 0x85, 0x31, 0x85, 0xbe, 0xc3, 0xc4, 0x3a, 0xe1, 0x16, 0x96,
- 0x0e, 0x34, 0x27, 0xbd, 0x48, 0xaf, 0x08, 0xb2, 0x3d, 0xe8, 0x08, 0x63, 0x32, 0x95, 0x8a, 0xdc,
- 0xf1, 0xfa, 0x61, 0xed, 0xb8, 0x33, 0xb9, 0x07, 0xec, 0x05, 0x0c, 0xaa, 0x4d, 0x62, 0xbe, 0xea,
- 0x1c, 0x79, 0x83, 0x34, 0xfd, 0x0a, 0x5f, 0x7a, 0xca, 0x9e, 0xc2, 0x46, 0xbc, 0x40, 0x92, 0x8b,
- 0x39, 0xf2, 0x35, 0x52, 0x75, 0x23, 0xfb, 0x24, 0xe6, 0xc8, 0x9e, 0x55, 0x77, 0x8c, 0x99, 0x9a,
- 0xa4, 0x59, 0x9e, 0x0b, 0x79, 0x82, 0xeb, 0x58, 0x50, 0x2e, 0x5c, 0xc9, 0x5b, 0xa4, 0xea, 0x55,
- 0xf4, 0x62, 0xe1, 0x4a, 0x5f, 0x2e, 0xc3, 0x99, 0xc8, 0x12, 0x83, 0x85, 0xd5, 0x39, 0x5f, 0x0f,
- 0xe5, 0x88, 0x5d, 0x12, 0x7a, 0xe8, 0x48, 0x48, 0x59, 0xf0, 0xf6, 0x8a, 0xa3, 0x33, 0x29, 0x0b,
- 0xf6, 0x04, 0xba, 0x56, 0xa7, 0x4a, 0x64, 0x49, 0xaa, 0x25, 0xf2, 0x0e, 0x29, 0x20, 0xa0, 0x73,
- 0x2d, 0x91, 0xbd, 0x84, 0xe1, 0x74, 0x61, 0x55, 0x8e, 0xd6, 0x26, 0x99, 0x4a, 0x31, 0xb7, 0xc8,
- 0x81, 0x54, 0x83, 0x25, 0xff, 0x18, 0x30, 0x7b, 0x07, 0xfc, 0xde, 0xb8, 0x92, 0x98, 0x3b, 0x75,
- 0xa3, 0x52, 0xe1, 0x94, 0xce, 0x79, 0x97, 0x8e, 0xec, 0x54, 0xf1, 0xf1, 0x4a, 0x98, 0x2e, 0x13,
- 0xb2, 0x24, 0xae, 0x34, 0xc8, 0x37, 0xe8, 0x9d, 0xba, 0x91, 0x5d, 0x97, 0x06, 0xd9, 0x2b, 0xd8,
- 0xbc, 0x29, 0x10, 0x93, 0x99, 0x28, 0x24, 0xe6, 0x49, 0xaa, 0x17, 0xb9, 0xe3, 0x3d, 0xd2, 0x0d,
- 0x7c, 0xe0, 0x03, 0xf1, 0x73, 0x8f, 0x7d, 0xba, 0x15, 0x59, 0x3f, 0xa4, 0x9b, 0x3d, 0x90, 0xfc,
- 0x0f, 0xed, 0x85, 0xc5, 0x82, 0x5e, 0x6a, 0x40, 0xe6, 0xaa, 0xbd, 0x8f, 0x19, 0x61, 0xed, 0x77,
- 0x5d, 0x48, 0x3e, 0x0c, 0xb1, 0xe5, 0x9e, 0xed, 0x03, 0xa4, 0x05, 0x0a, 0x87, 0x32, 0x11, 0x8e,
- 0x6f, 0x86, 0x69, 0x89, 0xe4, 0xcc, 0xf9, 0x7e, 0xc6, 0xe1, 0xa2, 0x38, 0x0b, 0xfd, 0x5c, 0xa2,
- 0x33, 0xc7, 0xb6, 0xa1, 0x85, 0x3f, 0x8c, 0x2a, 0x90, 0xff, 0x43, 0xa6, 0xe2, 0x8e, 0x31, 0x58,
- 0xcb, 0xf4, 0x4c, 0xf3, 0x7f, 0xe9, 0x04, 0xad, 0x3d, 0x93, 0x68, 0x53, 0xbe, 0x15, 0x98, 0x5f,
- 0x7b, 0x66, 0x95, 0x43, 0xbe, 0x1d, 0x98, 0x5f, 0x8f, 0x7e, 0xd5, 0x60, 0x3f, 0x0e, 0xff, 0xe7,
- 0xe9, 0xad, 0x9f, 0x6a, 0x65, 0x9d, 0x4a, 0xaf, 0xd0, 0x2d, 0x3f, 0x97, 0x5d, 0xe8, 0xc4, 0x86,
- 0x54, 0x5f, 0x4d, 0x3b, 0x80, 0xb1, 0x64, 0xff, 0x41, 0x5b, 0x4f, 0x6f, 0x43, 0xe3, 0xeb, 0x64,
- 0x6a, 0x5d, 0x4f, 0x6f, 0xa9, 0xe9, 0x47, 0xd0, 0x77, 0xda, 0x89, 0x2c, 0x51, 0xb9, 0xbf, 0xa3,
- 0x0d, 0xb3, 0xdf, 0x98, 0xf4, 0x88, 0x8e, 0x23, 0x64, 0x43, 0x68, 0xa4, 0x4a, 0xd2, 0xc4, 0x37,
- 0x26, 0x7e, 0x39, 0xda, 0x87, 0xdd, 0xc7, 0x1c, 0x99, 0xac, 0x1c, 0xfd, 0x84, 0x83, 0x18, 0xbe,
- 0x40, 0x91, 0xfd, 0xb5, 0xe3, 0x6d, 0x68, 0x89, 0x39, 0xbd, 0x6c, 0x9d, 0x22, 0x71, 0xe7, 0xed,
- 0x4a, 0xe1, 0x30, 0x71, 0x6a, 0x8e, 0xd6, 0x89, 0xb9, 0x59, 0xda, 0xf5, 0xf4, 0x7a, 0x09, 0x47,
- 0x07, 0xb0, 0xf7, 0x68, 0x75, 0x93, 0x95, 0xef, 0x77, 0xbe, 0x6c, 0x99, 0x42, 0x1b, 0x2c, 0x5c,
- 0xf9, 0x3a, 0xd4, 0x3c, 0x31, 0xd3, 0x93, 0xbb, 0xd3, 0x69, 0x8b, 0xfe, 0x4c, 0x6f, 0xff, 0x04,
- 0x00, 0x00, 0xff, 0xff, 0xf8, 0x1e, 0x15, 0x64, 0xaa, 0x04, 0x00, 0x00,
- }
|