| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517 |
- // Code generated by protoc-gen-gogo. DO NOT EDIT.
- // source: example.proto
- /*
- Package test is a generated protocol buffer package.
- It is generated from these files:
- example.proto
- It has these top-level messages:
- A
- B
- C
- U
- E
- R
- CastType
- */
- package test
- import proto "github.com/gogo/protobuf/proto"
- import fmt "fmt"
- import math "math"
- import _ "github.com/gogo/protobuf/gogoproto"
- import github_com_gogo_protobuf_test "github.com/gogo/protobuf/test"
- import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom"
- import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor"
- import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto"
- import compress_gzip "compress/gzip"
- import bytes "bytes"
- import io_ioutil "io/ioutil"
- import strings "strings"
- import reflect "reflect"
- import io "io"
- // 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.GoGoProtoPackageIsVersion2 // please upgrade the proto package
- type A struct {
- Description string `protobuf:"bytes,1,opt,name=Description" json:"Description"`
- Number int64 `protobuf:"varint,2,opt,name=Number" json:"Number"`
- Id github_com_gogo_protobuf_test.Uuid `protobuf:"bytes,3,opt,name=Id,customtype=github.com/gogo/protobuf/test.Uuid" json:"Id"`
- XXX_unrecognized []byte `json:"-"`
- }
- func (m *A) Reset() { *m = A{} }
- func (*A) ProtoMessage() {}
- func (*A) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{0} }
- type B struct {
- A `protobuf:"bytes,1,opt,name=A,embedded=A" json:"A"`
- G []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=G,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"G"`
- XXX_unrecognized []byte `json:"-"`
- }
- func (m *B) Reset() { *m = B{} }
- func (*B) ProtoMessage() {}
- func (*B) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{1} }
- type C struct {
- MySize *int64 `protobuf:"varint,1,opt,name=size" json:"size,omitempty"`
- XXX_unrecognized []byte `json:"-"`
- }
- func (m *C) Reset() { *m = C{} }
- func (*C) ProtoMessage() {}
- func (*C) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{2} }
- func (m *C) GetMySize() int64 {
- if m != nil && m.MySize != nil {
- return *m.MySize
- }
- return 0
- }
- type U struct {
- A *A `protobuf:"bytes,1,opt,name=A" json:"A,omitempty"`
- B *B `protobuf:"bytes,2,opt,name=B" json:"B,omitempty"`
- XXX_unrecognized []byte `json:"-"`
- }
- func (m *U) Reset() { *m = U{} }
- func (*U) ProtoMessage() {}
- func (*U) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{3} }
- func (m *U) GetA() *A {
- if m != nil {
- return m.A
- }
- return nil
- }
- func (m *U) GetB() *B {
- if m != nil {
- return m.B
- }
- return nil
- }
- type E struct {
- XXX_extensions []byte `protobuf:"bytes,0,opt" json:"-"`
- XXX_unrecognized []byte `json:"-"`
- }
- func (m *E) Reset() { *m = E{} }
- func (*E) ProtoMessage() {}
- func (*E) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{4} }
- var extRange_E = []proto.ExtensionRange{
- {Start: 1, End: 536870911},
- }
- func (*E) ExtensionRangeArray() []proto.ExtensionRange {
- return extRange_E
- }
- func (m *E) GetExtensions() *[]byte {
- if m.XXX_extensions == nil {
- m.XXX_extensions = make([]byte, 0)
- }
- return &m.XXX_extensions
- }
- type R struct {
- Recognized *uint32 `protobuf:"varint,1,opt,name=recognized" json:"recognized,omitempty"`
- }
- func (m *R) Reset() { *m = R{} }
- func (*R) ProtoMessage() {}
- func (*R) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{5} }
- func (m *R) GetRecognized() uint32 {
- if m != nil && m.Recognized != nil {
- return *m.Recognized
- }
- return 0
- }
- type CastType struct {
- Int32 *int32 `protobuf:"varint,1,opt,name=Int32,casttype=int32" json:"Int32,omitempty"`
- XXX_unrecognized []byte `json:"-"`
- }
- func (m *CastType) Reset() { *m = CastType{} }
- func (*CastType) ProtoMessage() {}
- func (*CastType) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{6} }
- func (m *CastType) GetInt32() int32 {
- if m != nil && m.Int32 != nil {
- return *m.Int32
- }
- return 0
- }
- func init() {
- proto.RegisterType((*A)(nil), "test.A")
- proto.RegisterType((*B)(nil), "test.B")
- proto.RegisterType((*C)(nil), "test.C")
- proto.RegisterType((*U)(nil), "test.U")
- proto.RegisterType((*E)(nil), "test.E")
- proto.RegisterType((*R)(nil), "test.R")
- proto.RegisterType((*CastType)(nil), "test.CastType")
- }
- func (this *B) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) {
- return ExampleDescription()
- }
- func ExampleDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) {
- d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{}
- var gzipped = []byte{
- // 3926 bytes of a gzipped FileDescriptorSet
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x7a, 0x59, 0x70, 0x1c, 0xd7,
- 0x75, 0x36, 0x7b, 0x16, 0x60, 0xe6, 0xcc, 0x60, 0xd0, 0xb8, 0x00, 0xc9, 0x21, 0x24, 0x01, 0xe4,
- 0x68, 0x03, 0x29, 0x19, 0xf4, 0x4f, 0x71, 0x53, 0xf3, 0xb7, 0x95, 0x99, 0xc1, 0x10, 0x1e, 0x06,
- 0x9b, 0x7b, 0x00, 0x8b, 0x72, 0x1e, 0xba, 0x1a, 0x3d, 0x17, 0x83, 0x26, 0x7b, 0xba, 0xdb, 0xdd,
- 0x3d, 0x24, 0xc1, 0xca, 0x03, 0x53, 0xca, 0xe6, 0x4a, 0x25, 0xce, 0x56, 0x15, 0x5b, 0x91, 0x15,
- 0xd9, 0x55, 0x89, 0x14, 0x3b, 0x9b, 0xe3, 0xc4, 0x71, 0xf2, 0x12, 0xbf, 0x38, 0xe1, 0x53, 0x4a,
- 0x7e, 0x4b, 0xa5, 0x52, 0x2c, 0x89, 0xa5, 0xaa, 0x6c, 0x4a, 0xa2, 0xc4, 0x7a, 0x48, 0x45, 0x2f,
- 0xa9, 0xbb, 0xf5, 0xf4, 0x2c, 0x40, 0x0f, 0x5c, 0x25, 0xf9, 0x09, 0xe8, 0x73, 0xcf, 0xf7, 0xf5,
- 0xb9, 0xe7, 0x9e, 0x7b, 0xce, 0xb9, 0xb7, 0x07, 0xbe, 0x79, 0x19, 0x4e, 0xb6, 0x1c, 0xa7, 0x65,
- 0xe1, 0xb3, 0xae, 0xe7, 0x04, 0xce, 0x76, 0x67, 0xe7, 0x6c, 0x13, 0xfb, 0x86, 0x67, 0xba, 0x81,
- 0xe3, 0x2d, 0x52, 0x19, 0x9a, 0x64, 0x1a, 0x8b, 0x42, 0xa3, 0xb4, 0x0a, 0x53, 0x57, 0x4d, 0x0b,
- 0x2f, 0x85, 0x8a, 0x0d, 0x1c, 0xa0, 0xcb, 0x90, 0xda, 0x31, 0x2d, 0x5c, 0x94, 0x4e, 0x26, 0x17,
- 0x72, 0xe7, 0x9e, 0x58, 0xec, 0x03, 0x2d, 0xf6, 0x22, 0x36, 0x88, 0x58, 0xa5, 0x88, 0xd2, 0xbb,
- 0x29, 0x98, 0x1e, 0x32, 0x8a, 0x10, 0xa4, 0x6c, 0xbd, 0x4d, 0x18, 0xa5, 0x85, 0xac, 0x4a, 0xff,
- 0x47, 0x45, 0x18, 0x77, 0x75, 0xe3, 0xa6, 0xde, 0xc2, 0xc5, 0x04, 0x15, 0x8b, 0x47, 0x34, 0x07,
- 0xd0, 0xc4, 0x2e, 0xb6, 0x9b, 0xd8, 0x36, 0xf6, 0x8a, 0xc9, 0x93, 0xc9, 0x85, 0xac, 0x1a, 0x91,
- 0xa0, 0x67, 0x60, 0xca, 0xed, 0x6c, 0x5b, 0xa6, 0xa1, 0x45, 0xd4, 0xe0, 0x64, 0x72, 0x21, 0xad,
- 0xca, 0x6c, 0x60, 0xa9, 0xab, 0xfc, 0x34, 0x4c, 0xde, 0xc6, 0xfa, 0xcd, 0xa8, 0x6a, 0x8e, 0xaa,
- 0x16, 0x88, 0x38, 0xa2, 0x58, 0x85, 0x7c, 0x1b, 0xfb, 0xbe, 0xde, 0xc2, 0x5a, 0xb0, 0xe7, 0xe2,
- 0x62, 0x8a, 0xce, 0xfe, 0xe4, 0xc0, 0xec, 0xfb, 0x67, 0x9e, 0xe3, 0xa8, 0xcd, 0x3d, 0x17, 0xa3,
- 0x32, 0x64, 0xb1, 0xdd, 0x69, 0x33, 0x86, 0xf4, 0x3e, 0xfe, 0xab, 0xd9, 0x9d, 0x76, 0x3f, 0x4b,
- 0x86, 0xc0, 0x38, 0xc5, 0xb8, 0x8f, 0xbd, 0x5b, 0xa6, 0x81, 0x8b, 0x63, 0x94, 0xe0, 0xe9, 0x01,
- 0x82, 0x06, 0x1b, 0xef, 0xe7, 0x10, 0x38, 0x54, 0x85, 0x2c, 0xbe, 0x13, 0x60, 0xdb, 0x37, 0x1d,
- 0xbb, 0x38, 0x4e, 0x49, 0x9e, 0x1c, 0xb2, 0x8a, 0xd8, 0x6a, 0xf6, 0x53, 0x74, 0x71, 0xe8, 0x22,
- 0x8c, 0x3b, 0x6e, 0x60, 0x3a, 0xb6, 0x5f, 0xcc, 0x9c, 0x94, 0x16, 0x72, 0xe7, 0x1e, 0x1d, 0x1a,
- 0x08, 0xeb, 0x4c, 0x47, 0x15, 0xca, 0xa8, 0x0e, 0xb2, 0xef, 0x74, 0x3c, 0x03, 0x6b, 0x86, 0xd3,
- 0xc4, 0x9a, 0x69, 0xef, 0x38, 0xc5, 0x2c, 0x25, 0x98, 0x1f, 0x9c, 0x08, 0x55, 0xac, 0x3a, 0x4d,
- 0x5c, 0xb7, 0x77, 0x1c, 0xb5, 0xe0, 0xf7, 0x3c, 0xa3, 0x63, 0x30, 0xe6, 0xef, 0xd9, 0x81, 0x7e,
- 0xa7, 0x98, 0xa7, 0x11, 0xc2, 0x9f, 0x4a, 0x7f, 0x39, 0x06, 0x93, 0xa3, 0x84, 0xd8, 0x15, 0x48,
- 0xef, 0x90, 0x59, 0x16, 0x13, 0x87, 0xf1, 0x01, 0xc3, 0xf4, 0x3a, 0x71, 0xec, 0x47, 0x74, 0x62,
- 0x19, 0x72, 0x36, 0xf6, 0x03, 0xdc, 0x64, 0x11, 0x91, 0x1c, 0x31, 0xa6, 0x80, 0x81, 0x06, 0x43,
- 0x2a, 0xf5, 0x23, 0x85, 0xd4, 0x75, 0x98, 0x0c, 0x4d, 0xd2, 0x3c, 0xdd, 0x6e, 0x89, 0xd8, 0x3c,
- 0x1b, 0x67, 0xc9, 0x62, 0x4d, 0xe0, 0x54, 0x02, 0x53, 0x0b, 0xb8, 0xe7, 0x19, 0x2d, 0x01, 0x38,
- 0x36, 0x76, 0x76, 0xb4, 0x26, 0x36, 0xac, 0x62, 0x66, 0x1f, 0x2f, 0xad, 0x13, 0x95, 0x01, 0x2f,
- 0x39, 0x4c, 0x6a, 0x58, 0xe8, 0xf9, 0x6e, 0xa8, 0x8d, 0xef, 0x13, 0x29, 0xab, 0x6c, 0x93, 0x0d,
- 0x44, 0xdb, 0x16, 0x14, 0x3c, 0x4c, 0xe2, 0x1e, 0x37, 0xf9, 0xcc, 0xb2, 0xd4, 0x88, 0xc5, 0xd8,
- 0x99, 0xa9, 0x1c, 0xc6, 0x26, 0x36, 0xe1, 0x45, 0x1f, 0xd1, 0xe3, 0x10, 0x0a, 0x34, 0x1a, 0x56,
- 0x40, 0xb3, 0x50, 0x5e, 0x08, 0xd7, 0xf4, 0x36, 0x9e, 0xbd, 0x0b, 0x85, 0x5e, 0xf7, 0xa0, 0x19,
- 0x48, 0xfb, 0x81, 0xee, 0x05, 0x34, 0x0a, 0xd3, 0x2a, 0x7b, 0x40, 0x32, 0x24, 0xb1, 0xdd, 0xa4,
- 0x59, 0x2e, 0xad, 0x92, 0x7f, 0xd1, 0x4f, 0x74, 0x27, 0x9c, 0xa4, 0x13, 0x7e, 0x6a, 0x70, 0x45,
- 0x7b, 0x98, 0xfb, 0xe7, 0x3d, 0x7b, 0x09, 0x26, 0x7a, 0x26, 0x30, 0xea, 0xab, 0x4b, 0x3f, 0x0d,
- 0x47, 0x87, 0x52, 0xa3, 0xeb, 0x30, 0xd3, 0xb1, 0x4d, 0x3b, 0xc0, 0x9e, 0xeb, 0x61, 0x12, 0xb1,
- 0xec, 0x55, 0xc5, 0x7f, 0x1a, 0xdf, 0x27, 0xe6, 0xb6, 0xa2, 0xda, 0x8c, 0x45, 0x9d, 0xee, 0x0c,
- 0x0a, 0xcf, 0x64, 0x33, 0xff, 0x3c, 0x2e, 0xdf, 0xbb, 0x77, 0xef, 0x5e, 0xa2, 0xf4, 0xe5, 0x31,
- 0x98, 0x19, 0xb6, 0x67, 0x86, 0x6e, 0xdf, 0x63, 0x30, 0x66, 0x77, 0xda, 0xdb, 0xd8, 0xa3, 0x4e,
- 0x4a, 0xab, 0xfc, 0x09, 0x95, 0x21, 0x6d, 0xe9, 0xdb, 0xd8, 0x2a, 0xa6, 0x4e, 0x4a, 0x0b, 0x85,
- 0x73, 0xcf, 0x8c, 0xb4, 0x2b, 0x17, 0x57, 0x08, 0x44, 0x65, 0x48, 0xf4, 0x69, 0x48, 0xf1, 0x14,
- 0x4d, 0x18, 0xce, 0x8c, 0xc6, 0x40, 0xf6, 0x92, 0x4a, 0x71, 0xe8, 0x11, 0xc8, 0x92, 0xbf, 0x2c,
- 0x36, 0xc6, 0xa8, 0xcd, 0x19, 0x22, 0x20, 0x71, 0x81, 0x66, 0x21, 0x43, 0xb7, 0x49, 0x13, 0x8b,
- 0xd2, 0x16, 0x3e, 0x93, 0xc0, 0x6a, 0xe2, 0x1d, 0xbd, 0x63, 0x05, 0xda, 0x2d, 0xdd, 0xea, 0x60,
- 0x1a, 0xf0, 0x59, 0x35, 0xcf, 0x85, 0x9f, 0x23, 0x32, 0x34, 0x0f, 0x39, 0xb6, 0xab, 0x4c, 0xbb,
- 0x89, 0xef, 0xd0, 0xec, 0x99, 0x56, 0xd9, 0x46, 0xab, 0x13, 0x09, 0x79, 0xfd, 0x0d, 0xdf, 0xb1,
- 0x45, 0x68, 0xd2, 0x57, 0x10, 0x01, 0x7d, 0xfd, 0xa5, 0xfe, 0xc4, 0xfd, 0xd8, 0xf0, 0xe9, 0xf5,
- 0xc7, 0x54, 0xe9, 0x3b, 0x09, 0x48, 0xd1, 0x7c, 0x31, 0x09, 0xb9, 0xcd, 0x97, 0x36, 0x6a, 0xda,
- 0xd2, 0xfa, 0x56, 0x65, 0xa5, 0x26, 0x4b, 0xa8, 0x00, 0x40, 0x05, 0x57, 0x57, 0xd6, 0xcb, 0x9b,
- 0x72, 0x22, 0x7c, 0xae, 0xaf, 0x6d, 0x5e, 0x3c, 0x2f, 0x27, 0x43, 0xc0, 0x16, 0x13, 0xa4, 0xa2,
- 0x0a, 0xcf, 0x9d, 0x93, 0xd3, 0x48, 0x86, 0x3c, 0x23, 0xa8, 0x5f, 0xaf, 0x2d, 0x5d, 0x3c, 0x2f,
- 0x8f, 0xf5, 0x4a, 0x9e, 0x3b, 0x27, 0x8f, 0xa3, 0x09, 0xc8, 0x52, 0x49, 0x65, 0x7d, 0x7d, 0x45,
- 0xce, 0x84, 0x9c, 0x8d, 0x4d, 0xb5, 0xbe, 0xb6, 0x2c, 0x67, 0x43, 0xce, 0x65, 0x75, 0x7d, 0x6b,
- 0x43, 0x86, 0x90, 0x61, 0xb5, 0xd6, 0x68, 0x94, 0x97, 0x6b, 0x72, 0x2e, 0xd4, 0xa8, 0xbc, 0xb4,
- 0x59, 0x6b, 0xc8, 0xf9, 0x1e, 0xb3, 0x9e, 0x3b, 0x27, 0x4f, 0x84, 0xaf, 0xa8, 0xad, 0x6d, 0xad,
- 0xca, 0x05, 0x34, 0x05, 0x13, 0xec, 0x15, 0xc2, 0x88, 0xc9, 0x3e, 0xd1, 0xc5, 0xf3, 0xb2, 0xdc,
- 0x35, 0x84, 0xb1, 0x4c, 0xf5, 0x08, 0x2e, 0x9e, 0x97, 0x51, 0xa9, 0x0a, 0x69, 0x1a, 0x5d, 0x08,
- 0x41, 0x61, 0xa5, 0x5c, 0xa9, 0xad, 0x68, 0xeb, 0x1b, 0x9b, 0xf5, 0xf5, 0xb5, 0xf2, 0x8a, 0x2c,
- 0x75, 0x65, 0x6a, 0xed, 0xb3, 0x5b, 0x75, 0xb5, 0xb6, 0x24, 0x27, 0xa2, 0xb2, 0x8d, 0x5a, 0x79,
- 0xb3, 0xb6, 0x24, 0x27, 0x4b, 0x06, 0xcc, 0x0c, 0xcb, 0x93, 0x43, 0x77, 0x46, 0x64, 0x89, 0x13,
- 0xfb, 0x2c, 0x31, 0xe5, 0x1a, 0x58, 0xe2, 0xaf, 0x4b, 0x30, 0x3d, 0xa4, 0x56, 0x0c, 0x7d, 0xc9,
- 0x0b, 0x90, 0x66, 0x21, 0xca, 0xaa, 0xe7, 0xe9, 0xa1, 0x45, 0x87, 0x06, 0xec, 0x40, 0x05, 0xa5,
- 0xb8, 0x68, 0x07, 0x91, 0xdc, 0xa7, 0x83, 0x20, 0x14, 0x03, 0x46, 0xbe, 0x2c, 0x41, 0x71, 0x3f,
- 0xee, 0x98, 0x44, 0x91, 0xe8, 0x49, 0x14, 0x57, 0xfa, 0x0d, 0x38, 0xb5, 0xff, 0x1c, 0x06, 0xac,
- 0x78, 0x43, 0x82, 0x63, 0xc3, 0x1b, 0xad, 0xa1, 0x36, 0x7c, 0x1a, 0xc6, 0xda, 0x38, 0xd8, 0x75,
- 0x44, 0xb3, 0xf1, 0xd4, 0x90, 0x12, 0x46, 0x86, 0xfb, 0x7d, 0xc5, 0x51, 0xd1, 0x1a, 0x98, 0xdc,
- 0xaf, 0x5b, 0x62, 0xd6, 0x0c, 0x58, 0xfa, 0xc5, 0x04, 0x1c, 0x1d, 0x4a, 0x3e, 0xd4, 0xd0, 0xc7,
- 0x00, 0x4c, 0xdb, 0xed, 0x04, 0xac, 0xa1, 0x60, 0xf9, 0x29, 0x4b, 0x25, 0x74, 0xef, 0x93, 0xdc,
- 0xd3, 0x09, 0xc2, 0xf1, 0x24, 0x1d, 0x07, 0x26, 0xa2, 0x0a, 0x97, 0xbb, 0x86, 0xa6, 0xa8, 0xa1,
- 0x73, 0xfb, 0xcc, 0x74, 0xa0, 0x56, 0x7f, 0x12, 0x64, 0xc3, 0x32, 0xb1, 0x1d, 0x68, 0x7e, 0xe0,
- 0x61, 0xbd, 0x6d, 0xda, 0x2d, 0x9a, 0x80, 0x33, 0x4a, 0x7a, 0x47, 0xb7, 0x7c, 0xac, 0x4e, 0xb2,
- 0xe1, 0x86, 0x18, 0x25, 0x08, 0x5a, 0xe3, 0xbc, 0x08, 0x62, 0xac, 0x07, 0xc1, 0x86, 0x43, 0x44,
- 0xe9, 0xdb, 0x19, 0xc8, 0x45, 0xda, 0x52, 0x74, 0x0a, 0xf2, 0x37, 0xf4, 0x5b, 0xba, 0x26, 0x8e,
- 0x1a, 0xcc, 0x13, 0x39, 0x22, 0xdb, 0xe0, 0xc7, 0x8d, 0x4f, 0xc2, 0x0c, 0x55, 0x71, 0x3a, 0x01,
- 0xf6, 0x34, 0xc3, 0xd2, 0x7d, 0x9f, 0x3a, 0x2d, 0x43, 0x55, 0x11, 0x19, 0x5b, 0x27, 0x43, 0x55,
- 0x31, 0x82, 0x2e, 0xc0, 0x34, 0x45, 0xb4, 0x3b, 0x56, 0x60, 0xba, 0x16, 0xd6, 0xc8, 0xe1, 0xc7,
- 0xa7, 0x89, 0x38, 0xb4, 0x6c, 0x8a, 0x68, 0xac, 0x72, 0x05, 0x62, 0x91, 0x8f, 0x96, 0xe0, 0x31,
- 0x0a, 0x6b, 0x61, 0x1b, 0x7b, 0x7a, 0x80, 0x35, 0xfc, 0x85, 0x8e, 0x6e, 0xf9, 0x9a, 0x6e, 0x37,
- 0xb5, 0x5d, 0xdd, 0xdf, 0x2d, 0xce, 0x10, 0x82, 0x4a, 0xa2, 0x28, 0xa9, 0x27, 0x88, 0xe2, 0x32,
- 0xd7, 0xab, 0x51, 0xb5, 0xb2, 0xdd, 0xfc, 0x8c, 0xee, 0xef, 0x22, 0x05, 0x8e, 0x51, 0x16, 0x3f,
- 0xf0, 0x4c, 0xbb, 0xa5, 0x19, 0xbb, 0xd8, 0xb8, 0xa9, 0x75, 0x82, 0x9d, 0xcb, 0xc5, 0x47, 0xa2,
- 0xef, 0xa7, 0x16, 0x36, 0xa8, 0x4e, 0x95, 0xa8, 0x6c, 0x05, 0x3b, 0x97, 0x51, 0x03, 0xf2, 0x64,
- 0x31, 0xda, 0xe6, 0x5d, 0xac, 0xed, 0x38, 0x1e, 0xad, 0x2c, 0x85, 0x21, 0x3b, 0x3b, 0xe2, 0xc1,
- 0xc5, 0x75, 0x0e, 0x58, 0x75, 0x9a, 0x58, 0x49, 0x37, 0x36, 0x6a, 0xb5, 0x25, 0x35, 0x27, 0x58,
- 0xae, 0x3a, 0x1e, 0x09, 0xa8, 0x96, 0x13, 0x3a, 0x38, 0xc7, 0x02, 0xaa, 0xe5, 0x08, 0xf7, 0x5e,
- 0x80, 0x69, 0xc3, 0x60, 0x73, 0x36, 0x0d, 0x8d, 0x1f, 0x51, 0xfc, 0xa2, 0xdc, 0xe3, 0x2c, 0xc3,
- 0x58, 0x66, 0x0a, 0x3c, 0xc6, 0x7d, 0xf4, 0x3c, 0x1c, 0xed, 0x3a, 0x2b, 0x0a, 0x9c, 0x1a, 0x98,
- 0x65, 0x3f, 0xf4, 0x02, 0x4c, 0xbb, 0x7b, 0x83, 0x40, 0xd4, 0xf3, 0x46, 0x77, 0xaf, 0x1f, 0x76,
- 0x09, 0x66, 0xdc, 0x5d, 0x77, 0x10, 0x37, 0x1d, 0xc5, 0x21, 0x77, 0xd7, 0xed, 0x07, 0x3e, 0x49,
- 0xcf, 0xab, 0x1e, 0x36, 0xf4, 0x00, 0x37, 0x8b, 0xc7, 0xa3, 0xea, 0x91, 0x01, 0x74, 0x16, 0x64,
- 0xc3, 0xd0, 0xb0, 0xad, 0x6f, 0x5b, 0x58, 0xd3, 0x3d, 0x6c, 0xeb, 0x7e, 0x71, 0x3e, 0xaa, 0x5c,
- 0x30, 0x8c, 0x1a, 0x1d, 0x2d, 0xd3, 0x41, 0x74, 0x06, 0xa6, 0x9c, 0xed, 0x1b, 0x06, 0x0b, 0x49,
- 0xcd, 0xf5, 0xf0, 0x8e, 0x79, 0xa7, 0xf8, 0x04, 0xf5, 0xef, 0x24, 0x19, 0xa0, 0x01, 0xb9, 0x41,
- 0xc5, 0xe8, 0x34, 0xc8, 0x86, 0xbf, 0xab, 0x7b, 0x2e, 0xed, 0x09, 0x7c, 0x57, 0x37, 0x70, 0xf1,
- 0x49, 0xa6, 0xca, 0xe4, 0x6b, 0x42, 0x4c, 0xb6, 0x84, 0x7f, 0xdb, 0xdc, 0x09, 0x04, 0xe3, 0xd3,
- 0x6c, 0x4b, 0x50, 0x19, 0x67, 0x5b, 0x00, 0x99, 0xb8, 0xa2, 0xe7, 0xc5, 0x0b, 0x54, 0xad, 0xe0,
- 0xee, 0xba, 0xd1, 0xf7, 0x3e, 0x0e, 0x13, 0x44, 0xb3, 0xfb, 0xd2, 0xd3, 0xac, 0x9f, 0x71, 0x77,
- 0x23, 0x6f, 0xfc, 0xc8, 0x5a, 0xcb, 0x92, 0x02, 0xf9, 0x68, 0x7c, 0xa2, 0x2c, 0xb0, 0x08, 0x95,
- 0x25, 0x52, 0xeb, 0xab, 0xeb, 0x4b, 0xa4, 0x4a, 0x7f, 0xbe, 0x26, 0x27, 0x48, 0xb7, 0xb0, 0x52,
- 0xdf, 0xac, 0x69, 0xea, 0xd6, 0xda, 0x66, 0x7d, 0xb5, 0x26, 0x27, 0xa3, 0x6d, 0xe9, 0xf7, 0x13,
- 0x50, 0xe8, 0x3d, 0x61, 0xa0, 0xff, 0x0f, 0xc7, 0xc5, 0x75, 0x80, 0x8f, 0x03, 0xed, 0xb6, 0xe9,
- 0xd1, 0x2d, 0xd3, 0xd6, 0x59, 0x87, 0x1d, 0x2e, 0xda, 0x0c, 0xd7, 0x6a, 0xe0, 0xe0, 0x45, 0xd3,
- 0x23, 0x1b, 0xa2, 0xad, 0x07, 0x68, 0x05, 0xe6, 0x6d, 0x47, 0xf3, 0x03, 0xdd, 0x6e, 0xea, 0x5e,
- 0x53, 0xeb, 0x5e, 0xc4, 0x68, 0xba, 0x61, 0x60, 0xdf, 0x77, 0x58, 0xa9, 0x0a, 0x59, 0x1e, 0xb5,
- 0x9d, 0x06, 0x57, 0xee, 0xe6, 0xf0, 0x32, 0x57, 0xed, 0x0b, 0xb0, 0xe4, 0x7e, 0x01, 0xf6, 0x08,
- 0x64, 0xdb, 0xba, 0xab, 0x61, 0x3b, 0xf0, 0xf6, 0x68, 0x5f, 0x99, 0x51, 0x33, 0x6d, 0xdd, 0xad,
- 0x91, 0xe7, 0x8f, 0xa7, 0xbd, 0xff, 0xc7, 0x24, 0xe4, 0xa3, 0xbd, 0x25, 0x69, 0xd5, 0x0d, 0x5a,
- 0x47, 0x24, 0x9a, 0x69, 0x1e, 0x3f, 0xb0, 0x13, 0x5d, 0xac, 0x92, 0x02, 0xa3, 0x8c, 0xb1, 0x8e,
- 0x4f, 0x65, 0x48, 0x52, 0xdc, 0x49, 0x6e, 0xc1, 0xec, 0x14, 0x93, 0x51, 0xf9, 0x13, 0x5a, 0x86,
- 0xb1, 0x1b, 0x3e, 0xe5, 0x1e, 0xa3, 0xdc, 0x4f, 0x1c, 0xcc, 0x7d, 0xad, 0x41, 0xc9, 0xb3, 0xd7,
- 0x1a, 0xda, 0xda, 0xba, 0xba, 0x5a, 0x5e, 0x51, 0x39, 0x1c, 0x9d, 0x80, 0x94, 0xa5, 0xdf, 0xdd,
- 0xeb, 0x2d, 0x45, 0x54, 0x34, 0xaa, 0xe3, 0x4f, 0x40, 0xea, 0x36, 0xd6, 0x6f, 0xf6, 0x16, 0x00,
- 0x2a, 0xfa, 0x08, 0x43, 0xff, 0x2c, 0xa4, 0xa9, 0xbf, 0x10, 0x00, 0xf7, 0x98, 0x7c, 0x04, 0x65,
- 0x20, 0x55, 0x5d, 0x57, 0x49, 0xf8, 0xcb, 0x90, 0x67, 0x52, 0x6d, 0xa3, 0x5e, 0xab, 0xd6, 0xe4,
- 0x44, 0xe9, 0x02, 0x8c, 0x31, 0x27, 0x90, 0xad, 0x11, 0xba, 0x41, 0x3e, 0xc2, 0x1f, 0x39, 0x87,
- 0x24, 0x46, 0xb7, 0x56, 0x2b, 0x35, 0x55, 0x4e, 0x44, 0x97, 0xd7, 0x87, 0x7c, 0xb4, 0xad, 0xfc,
- 0x78, 0x62, 0xea, 0xaf, 0x24, 0xc8, 0x45, 0xda, 0x44, 0xd2, 0xa0, 0xe8, 0x96, 0xe5, 0xdc, 0xd6,
- 0x74, 0xcb, 0xd4, 0x7d, 0x1e, 0x14, 0x40, 0x45, 0x65, 0x22, 0x19, 0x75, 0xd1, 0x3e, 0x16, 0xe3,
- 0x5f, 0x93, 0x40, 0xee, 0x6f, 0x31, 0xfb, 0x0c, 0x94, 0x7e, 0xac, 0x06, 0xbe, 0x2a, 0x41, 0xa1,
- 0xb7, 0xaf, 0xec, 0x33, 0xef, 0xd4, 0x8f, 0xd5, 0xbc, 0xb7, 0x13, 0x30, 0xd1, 0xd3, 0x4d, 0x8e,
- 0x6a, 0xdd, 0x17, 0x60, 0xca, 0x6c, 0xe2, 0xb6, 0xeb, 0x04, 0xd8, 0x36, 0xf6, 0x34, 0x0b, 0xdf,
- 0xc2, 0x56, 0xb1, 0x44, 0x13, 0xc5, 0xd9, 0x83, 0xfb, 0xd5, 0xc5, 0x7a, 0x17, 0xb7, 0x42, 0x60,
- 0xca, 0x74, 0x7d, 0xa9, 0xb6, 0xba, 0xb1, 0xbe, 0x59, 0x5b, 0xab, 0xbe, 0xa4, 0x6d, 0xad, 0xfd,
- 0xe4, 0xda, 0xfa, 0x8b, 0x6b, 0xaa, 0x6c, 0xf6, 0xa9, 0x7d, 0x84, 0x5b, 0x7d, 0x03, 0xe4, 0x7e,
- 0xa3, 0xd0, 0x71, 0x18, 0x66, 0x96, 0x7c, 0x04, 0x4d, 0xc3, 0xe4, 0xda, 0xba, 0xd6, 0xa8, 0x2f,
- 0xd5, 0xb4, 0xda, 0xd5, 0xab, 0xb5, 0xea, 0x66, 0x83, 0x1d, 0xe0, 0x43, 0xed, 0xcd, 0xde, 0x4d,
- 0xfd, 0x4a, 0x12, 0xa6, 0x87, 0x58, 0x82, 0xca, 0xfc, 0xec, 0xc0, 0x8e, 0x33, 0x9f, 0x18, 0xc5,
- 0xfa, 0x45, 0x52, 0xf2, 0x37, 0x74, 0x2f, 0xe0, 0x47, 0x8d, 0xd3, 0x40, 0xbc, 0x64, 0x07, 0xe6,
- 0x8e, 0x89, 0x3d, 0x7e, 0xdf, 0xc1, 0x0e, 0x14, 0x93, 0x5d, 0x39, 0xbb, 0xf2, 0x78, 0x16, 0x90,
- 0xeb, 0xf8, 0x66, 0x60, 0xde, 0xc2, 0x9a, 0x69, 0x8b, 0xcb, 0x11, 0x72, 0xc0, 0x48, 0xa9, 0xb2,
- 0x18, 0xa9, 0xdb, 0x41, 0xa8, 0x6d, 0xe3, 0x96, 0xde, 0xa7, 0x4d, 0x12, 0x78, 0x52, 0x95, 0xc5,
- 0x48, 0xa8, 0x7d, 0x0a, 0xf2, 0x4d, 0xa7, 0x43, 0xba, 0x2e, 0xa6, 0x47, 0xea, 0x85, 0xa4, 0xe6,
- 0x98, 0x2c, 0x54, 0xe1, 0xfd, 0x74, 0xf7, 0x56, 0x26, 0xaf, 0xe6, 0x98, 0x8c, 0xa9, 0x3c, 0x0d,
- 0x93, 0x7a, 0xab, 0xe5, 0x11, 0x72, 0x41, 0xc4, 0x4e, 0x08, 0x85, 0x50, 0x4c, 0x15, 0x67, 0xaf,
- 0x41, 0x46, 0xf8, 0x81, 0x94, 0x64, 0xe2, 0x09, 0xcd, 0x65, 0x37, 0x73, 0x89, 0x85, 0xac, 0x9a,
- 0xb1, 0xc5, 0xe0, 0x29, 0xc8, 0x9b, 0xbe, 0xd6, 0xbd, 0x64, 0x4e, 0x9c, 0x4c, 0x2c, 0x64, 0xd4,
- 0x9c, 0xe9, 0x87, 0x17, 0x74, 0xa5, 0x37, 0x12, 0x50, 0xe8, 0xbd, 0x24, 0x47, 0x4b, 0x90, 0xb1,
- 0x1c, 0x43, 0xa7, 0xa1, 0xc5, 0xbe, 0xd0, 0x2c, 0xc4, 0xdc, 0xab, 0x2f, 0xae, 0x70, 0x7d, 0x35,
- 0x44, 0xce, 0xfe, 0x9d, 0x04, 0x19, 0x21, 0x46, 0xc7, 0x20, 0xe5, 0xea, 0xc1, 0x2e, 0xa5, 0x4b,
- 0x57, 0x12, 0xb2, 0xa4, 0xd2, 0x67, 0x22, 0xf7, 0x5d, 0xdd, 0xa6, 0x21, 0xc0, 0xe5, 0xe4, 0x99,
- 0xac, 0xab, 0x85, 0xf5, 0x26, 0x3d, 0x7e, 0x38, 0xed, 0x36, 0xb6, 0x03, 0x5f, 0xac, 0x2b, 0x97,
- 0x57, 0xb9, 0x18, 0x3d, 0x03, 0x53, 0x81, 0xa7, 0x9b, 0x56, 0x8f, 0x6e, 0x8a, 0xea, 0xca, 0x62,
- 0x20, 0x54, 0x56, 0xe0, 0x84, 0xe0, 0x6d, 0xe2, 0x40, 0x37, 0x76, 0x71, 0xb3, 0x0b, 0x1a, 0xa3,
- 0x37, 0xb0, 0xc7, 0xb9, 0xc2, 0x12, 0x1f, 0x17, 0xd8, 0xd2, 0x0f, 0x24, 0x98, 0x12, 0x07, 0xa6,
- 0x66, 0xe8, 0xac, 0x55, 0x00, 0xdd, 0xb6, 0x9d, 0x20, 0xea, 0xae, 0xc1, 0x50, 0x1e, 0xc0, 0x2d,
- 0x96, 0x43, 0x90, 0x1a, 0x21, 0x98, 0x6d, 0x03, 0x74, 0x47, 0xf6, 0x75, 0xdb, 0x3c, 0xe4, 0xf8,
- 0x17, 0x10, 0xfa, 0x19, 0x8d, 0x1d, 0xb1, 0x81, 0x89, 0xc8, 0xc9, 0x0a, 0xcd, 0x40, 0x7a, 0x1b,
- 0xb7, 0x4c, 0x9b, 0xdf, 0x6b, 0xb2, 0x07, 0x71, 0x57, 0x9b, 0x0a, 0xef, 0x6a, 0x2b, 0xd7, 0x61,
- 0xda, 0x70, 0xda, 0xfd, 0xe6, 0x56, 0xe4, 0xbe, 0x63, 0xbe, 0xff, 0x19, 0xe9, 0xf3, 0xd0, 0x6d,
- 0x31, 0xbf, 0x9e, 0x48, 0x2e, 0x6f, 0x54, 0xbe, 0x91, 0x98, 0x5d, 0x66, 0xb8, 0x0d, 0x31, 0x4d,
- 0x15, 0xef, 0x58, 0xd8, 0x20, 0xa6, 0xc3, 0x0f, 0x9f, 0x82, 0x4f, 0xb4, 0xcc, 0x60, 0xb7, 0xb3,
- 0xbd, 0x68, 0x38, 0xed, 0xb3, 0x2d, 0xa7, 0xe5, 0x74, 0x3f, 0x1b, 0x92, 0x27, 0xfa, 0x40, 0xff,
- 0xe3, 0x9f, 0x0e, 0xb3, 0xa1, 0x74, 0x36, 0xf6, 0x3b, 0xa3, 0xb2, 0x06, 0xd3, 0x5c, 0x59, 0xa3,
- 0xdf, 0x2e, 0xd8, 0x11, 0x02, 0x1d, 0x78, 0xff, 0x53, 0xfc, 0xd6, 0xbb, 0xb4, 0x56, 0xab, 0x53,
- 0x1c, 0x4a, 0xc6, 0xd8, 0x29, 0x43, 0x51, 0xe1, 0x68, 0x0f, 0x1f, 0xdb, 0x97, 0xd8, 0x8b, 0x61,
- 0xfc, 0x3e, 0x67, 0x9c, 0x8e, 0x30, 0x36, 0x38, 0x54, 0xa9, 0xc2, 0xc4, 0x61, 0xb8, 0xfe, 0x86,
- 0x73, 0xe5, 0x71, 0x94, 0x64, 0x19, 0x26, 0x29, 0x89, 0xd1, 0xf1, 0x03, 0xa7, 0x4d, 0x93, 0xde,
- 0xc1, 0x34, 0x7f, 0xfb, 0x2e, 0xdb, 0x28, 0x05, 0x02, 0xab, 0x86, 0x28, 0x45, 0x01, 0xfa, 0xb9,
- 0xa6, 0x89, 0x0d, 0x2b, 0x86, 0xe1, 0x3e, 0x37, 0x24, 0xd4, 0x57, 0x3e, 0x07, 0x33, 0xe4, 0x7f,
- 0x9a, 0x93, 0xa2, 0x96, 0xc4, 0xdf, 0x76, 0x15, 0x7f, 0xf0, 0x32, 0xdb, 0x8b, 0xd3, 0x21, 0x41,
- 0xc4, 0xa6, 0xc8, 0x2a, 0xb6, 0x70, 0x10, 0x60, 0xcf, 0xd7, 0x74, 0x6b, 0x98, 0x79, 0x91, 0xeb,
- 0x82, 0xe2, 0x57, 0xde, 0xeb, 0x5d, 0xc5, 0x65, 0x86, 0x2c, 0x5b, 0x96, 0xb2, 0x05, 0xc7, 0x87,
- 0x44, 0xc5, 0x08, 0x9c, 0xaf, 0x70, 0xce, 0x99, 0x81, 0xc8, 0x20, 0xb4, 0x1b, 0x20, 0xe4, 0xe1,
- 0x5a, 0x8e, 0xc0, 0xf9, 0xdb, 0x9c, 0x13, 0x71, 0xac, 0x58, 0x52, 0xc2, 0x78, 0x0d, 0xa6, 0x6e,
- 0x61, 0x6f, 0xdb, 0xf1, 0xf9, 0x15, 0xcd, 0x08, 0x74, 0xaf, 0x72, 0xba, 0x49, 0x0e, 0xa4, 0x77,
- 0x36, 0x84, 0xeb, 0x79, 0xc8, 0xec, 0xe8, 0x06, 0x1e, 0x81, 0xe2, 0xab, 0x9c, 0x62, 0x9c, 0xe8,
- 0x13, 0x68, 0x19, 0xf2, 0x2d, 0x87, 0x97, 0xa5, 0x78, 0xf8, 0x6b, 0x1c, 0x9e, 0x13, 0x18, 0x4e,
- 0xe1, 0x3a, 0x6e, 0xc7, 0x22, 0x35, 0x2b, 0x9e, 0xe2, 0x77, 0x04, 0x85, 0xc0, 0x70, 0x8a, 0x43,
- 0xb8, 0xf5, 0x75, 0x41, 0xe1, 0x47, 0xfc, 0xf9, 0x02, 0xe4, 0x1c, 0xdb, 0xda, 0x73, 0xec, 0x51,
- 0x8c, 0xf8, 0x1a, 0x67, 0x00, 0x0e, 0x21, 0x04, 0x57, 0x20, 0x3b, 0xea, 0x42, 0xfc, 0xee, 0x7b,
- 0x62, 0x7b, 0x88, 0x15, 0x58, 0x86, 0x49, 0x91, 0xa0, 0x4c, 0xc7, 0x1e, 0x81, 0xe2, 0xf7, 0x38,
- 0x45, 0x21, 0x02, 0xe3, 0xd3, 0x08, 0xb0, 0x1f, 0xb4, 0xf0, 0x28, 0x24, 0x6f, 0x88, 0x69, 0x70,
- 0x08, 0x77, 0xe5, 0x36, 0xb6, 0x8d, 0xdd, 0xd1, 0x18, 0xde, 0x14, 0xae, 0x14, 0x18, 0x42, 0x51,
- 0x85, 0x89, 0xb6, 0xee, 0xf9, 0xbb, 0xba, 0x35, 0xd2, 0x72, 0xfc, 0x3e, 0xe7, 0xc8, 0x87, 0x20,
- 0xee, 0x91, 0x8e, 0x7d, 0x18, 0x9a, 0x6f, 0x08, 0x8f, 0x44, 0x60, 0x7c, 0xeb, 0xf9, 0x01, 0xbd,
- 0xcf, 0x3a, 0x0c, 0xdb, 0x37, 0xc5, 0xd6, 0x63, 0xd8, 0xd5, 0x28, 0xe3, 0x15, 0xc8, 0xfa, 0xe6,
- 0xdd, 0x91, 0x68, 0xfe, 0x40, 0xac, 0x34, 0x05, 0x10, 0xf0, 0x4b, 0x70, 0x62, 0x68, 0x99, 0x18,
- 0x81, 0xec, 0x0f, 0x39, 0xd9, 0xb1, 0x21, 0xa5, 0x82, 0xa7, 0x84, 0xc3, 0x52, 0xfe, 0x91, 0x48,
- 0x09, 0xb8, 0x8f, 0x6b, 0x83, 0x1c, 0x14, 0x7c, 0x7d, 0xe7, 0x70, 0x5e, 0xfb, 0x63, 0xe1, 0x35,
- 0x86, 0xed, 0xf1, 0xda, 0x26, 0x1c, 0xe3, 0x8c, 0x87, 0x5b, 0xd7, 0x3f, 0x11, 0x89, 0x95, 0xa1,
- 0xb7, 0x7a, 0x57, 0xf7, 0xa7, 0x60, 0x36, 0x74, 0xa7, 0xe8, 0x48, 0x7d, 0xad, 0xad, 0xbb, 0x23,
- 0x30, 0x7f, 0x8b, 0x33, 0x8b, 0x8c, 0x1f, 0xb6, 0xb4, 0xfe, 0xaa, 0xee, 0x12, 0xf2, 0xeb, 0x50,
- 0x14, 0xe4, 0x1d, 0xdb, 0xc3, 0x86, 0xd3, 0xb2, 0xcd, 0xbb, 0xb8, 0x39, 0x02, 0xf5, 0x9f, 0xf6,
- 0x2d, 0xd5, 0x56, 0x04, 0x4e, 0x98, 0xeb, 0x20, 0x87, 0xbd, 0x8a, 0x66, 0xb6, 0x5d, 0xc7, 0x0b,
- 0x62, 0x18, 0xbf, 0x2d, 0x56, 0x2a, 0xc4, 0xd5, 0x29, 0x4c, 0xa9, 0x41, 0x81, 0x3e, 0x8e, 0x1a,
- 0x92, 0x7f, 0xc6, 0x89, 0x26, 0xba, 0x28, 0x9e, 0x38, 0x0c, 0xa7, 0xed, 0xea, 0xde, 0x28, 0xf9,
- 0xef, 0xcf, 0x45, 0xe2, 0xe0, 0x10, 0x9e, 0x38, 0x82, 0x3d, 0x17, 0x93, 0x6a, 0x3f, 0x02, 0xc3,
- 0x77, 0x44, 0xe2, 0x10, 0x18, 0x4e, 0x21, 0x1a, 0x86, 0x11, 0x28, 0xfe, 0x42, 0x50, 0x08, 0x0c,
- 0xa1, 0xf8, 0x6c, 0xb7, 0xd0, 0x7a, 0xb8, 0x65, 0xfa, 0x81, 0xc7, 0xfa, 0xe0, 0x83, 0xa9, 0xbe,
- 0xfb, 0x5e, 0x6f, 0x13, 0xa6, 0x46, 0xa0, 0xca, 0x35, 0x98, 0xec, 0x6b, 0x31, 0x50, 0xdc, 0x6f,
- 0x3f, 0x8a, 0x3f, 0xf3, 0x01, 0x4f, 0x46, 0xbd, 0x1d, 0x86, 0xb2, 0x42, 0xd6, 0xbd, 0xb7, 0x0f,
- 0x88, 0x27, 0x7b, 0xf9, 0x83, 0x70, 0xe9, 0x7b, 0xda, 0x00, 0xe5, 0x2a, 0x4c, 0xf4, 0xf4, 0x00,
- 0xf1, 0x54, 0x3f, 0xcb, 0xa9, 0xf2, 0xd1, 0x16, 0x40, 0xb9, 0x00, 0x29, 0x52, 0xcf, 0xe3, 0xe1,
- 0x3f, 0xc7, 0xe1, 0x54, 0x5d, 0xf9, 0x14, 0x64, 0x44, 0x1d, 0x8f, 0x87, 0xfe, 0x3c, 0x87, 0x86,
- 0x10, 0x02, 0x17, 0x35, 0x3c, 0x1e, 0xfe, 0x0b, 0x02, 0x2e, 0x20, 0x04, 0x3e, 0xba, 0x0b, 0xbf,
- 0xf7, 0x4b, 0x29, 0x9e, 0x87, 0x85, 0xef, 0xae, 0xc0, 0x38, 0x2f, 0xde, 0xf1, 0xe8, 0x2f, 0xf2,
- 0x97, 0x0b, 0x84, 0x72, 0x09, 0xd2, 0x23, 0x3a, 0xfc, 0x97, 0x39, 0x94, 0xe9, 0x2b, 0x55, 0xc8,
- 0x45, 0x0a, 0x76, 0x3c, 0xfc, 0x57, 0x38, 0x3c, 0x8a, 0x22, 0xa6, 0xf3, 0x82, 0x1d, 0x4f, 0xf0,
- 0x25, 0x61, 0x3a, 0x47, 0x10, 0xb7, 0x89, 0x5a, 0x1d, 0x8f, 0xfe, 0x55, 0xe1, 0x75, 0x01, 0x51,
- 0x5e, 0x80, 0x6c, 0x98, 0x7f, 0xe3, 0xf1, 0xbf, 0xc6, 0xf1, 0x5d, 0x0c, 0xf1, 0x40, 0x24, 0xff,
- 0xc7, 0x53, 0xfc, 0xba, 0xf0, 0x40, 0x04, 0x45, 0xb6, 0x51, 0x7f, 0x4d, 0x8f, 0x67, 0xfa, 0x0d,
- 0xb1, 0x8d, 0xfa, 0x4a, 0x3a, 0x59, 0x4d, 0x9a, 0x06, 0xe3, 0x29, 0x7e, 0x53, 0xac, 0x26, 0xd5,
- 0x27, 0x66, 0xf4, 0x17, 0xc9, 0x78, 0x8e, 0xdf, 0x12, 0x66, 0xf4, 0xd5, 0x48, 0x65, 0x03, 0xd0,
- 0x60, 0x81, 0x8c, 0xe7, 0xfb, 0x32, 0xe7, 0x9b, 0x1a, 0xa8, 0x8f, 0xca, 0x8b, 0x70, 0x6c, 0x78,
- 0x71, 0x8c, 0x67, 0xfd, 0xca, 0x07, 0x7d, 0xc7, 0x99, 0x68, 0x6d, 0x54, 0x36, 0xbb, 0x59, 0x36,
- 0x5a, 0x18, 0xe3, 0x69, 0x5f, 0xf9, 0xa0, 0x37, 0xd1, 0x46, 0xeb, 0xa2, 0x52, 0x06, 0xe8, 0xd6,
- 0xa4, 0x78, 0xae, 0x57, 0x39, 0x57, 0x04, 0x44, 0xb6, 0x06, 0x2f, 0x49, 0xf1, 0xf8, 0xaf, 0x8a,
- 0xad, 0xc1, 0x11, 0x64, 0x6b, 0x88, 0x6a, 0x14, 0x8f, 0x7e, 0x4d, 0x6c, 0x0d, 0x01, 0x51, 0xae,
- 0x40, 0xc6, 0xee, 0x58, 0x16, 0x89, 0x2d, 0x74, 0xf0, 0xcf, 0x99, 0x8a, 0xff, 0xf2, 0x21, 0x07,
- 0x0b, 0x80, 0x72, 0x01, 0xd2, 0xb8, 0xbd, 0x8d, 0x9b, 0x71, 0xc8, 0x7f, 0xfd, 0x50, 0xe4, 0x13,
- 0xa2, 0xad, 0xbc, 0x00, 0xc0, 0x0e, 0xd3, 0xf4, 0x2b, 0x51, 0x0c, 0xf6, 0xdf, 0x3e, 0xe4, 0xbf,
- 0x94, 0xe8, 0x42, 0xba, 0x04, 0xec, 0x77, 0x17, 0x07, 0x13, 0xbc, 0xd7, 0x4b, 0x40, 0x0f, 0xe0,
- 0xcf, 0xc3, 0xf8, 0x0d, 0xdf, 0xb1, 0x03, 0xbd, 0x15, 0x87, 0xfe, 0x77, 0x8e, 0x16, 0xfa, 0xc4,
- 0x61, 0x6d, 0xc7, 0xc3, 0x81, 0xde, 0xf2, 0xe3, 0xb0, 0xff, 0xc1, 0xb1, 0x21, 0x80, 0x80, 0x0d,
- 0xdd, 0x0f, 0x46, 0x99, 0xf7, 0x7f, 0x0a, 0xb0, 0x00, 0x10, 0xa3, 0xc9, 0xff, 0x37, 0xf1, 0x5e,
- 0x1c, 0xf6, 0x7d, 0x61, 0x34, 0xd7, 0x57, 0x3e, 0x05, 0x59, 0xf2, 0x2f, 0xfb, 0xf5, 0x50, 0x0c,
- 0xf8, 0xbf, 0x38, 0xb8, 0x8b, 0x20, 0x6f, 0xf6, 0x83, 0x66, 0x60, 0xc6, 0x3b, 0xfb, 0xbf, 0xf9,
- 0x4a, 0x0b, 0x7d, 0xa5, 0x0c, 0x39, 0x3f, 0x68, 0x36, 0x3b, 0xbc, 0xa3, 0x89, 0x81, 0xff, 0xf0,
- 0xc3, 0xf0, 0x90, 0x1b, 0x62, 0x2a, 0xa7, 0x86, 0x5f, 0xd6, 0xc1, 0xb2, 0xb3, 0xec, 0xb0, 0x6b,
- 0x3a, 0xf8, 0xeb, 0x14, 0x4c, 0xe0, 0x3b, 0x7a, 0xdb, 0x15, 0x0a, 0x28, 0x45, 0x4a, 0xc7, 0xec,
- 0xe1, 0xae, 0xe2, 0x4a, 0x5f, 0x92, 0x40, 0x2a, 0xa3, 0xa7, 0x20, 0xb7, 0xd4, 0x2d, 0x5c, 0xec,
- 0x87, 0x2d, 0x95, 0xd4, 0xfd, 0x07, 0xf3, 0x47, 0xd4, 0xe8, 0x00, 0x7a, 0x14, 0xc6, 0xd6, 0xba,
- 0x3f, 0x8e, 0x4a, 0x72, 0x15, 0x2e, 0x43, 0x0a, 0x24, 0xea, 0xec, 0x23, 0x59, 0xbe, 0x72, 0x86,
- 0x8c, 0xfc, 0xc3, 0x83, 0xf9, 0xd2, 0xbe, 0xe6, 0x10, 0x6b, 0x17, 0xb7, 0x3a, 0x66, 0x53, 0x4d,
- 0xd4, 0x9b, 0x4a, 0xe6, 0x17, 0x5f, 0x9f, 0x3f, 0xf2, 0xe6, 0xeb, 0xf3, 0x52, 0xc9, 0x06, 0xa9,
- 0x82, 0xe6, 0x41, 0x2a, 0x53, 0x33, 0x72, 0xe7, 0xc6, 0x17, 0xa9, 0x66, 0xb9, 0x92, 0x21, 0x94,
- 0x6f, 0x3d, 0x98, 0x97, 0x54, 0xa9, 0x8c, 0x2a, 0x20, 0x2d, 0xd3, 0xbb, 0xe4, 0x7c, 0xe5, 0x3c,
- 0x7f, 0xd5, 0xb3, 0x07, 0xbe, 0xea, 0x2c, 0xdb, 0x0b, 0x8b, 0x5b, 0xa6, 0x1d, 0xfc, 0xbf, 0x73,
- 0x97, 0x55, 0x69, 0x59, 0x49, 0xbd, 0x4f, 0xde, 0xf7, 0x38, 0x48, 0x55, 0x34, 0x07, 0x29, 0x92,
- 0x98, 0xe8, 0x2b, 0x93, 0x15, 0x78, 0xf8, 0x60, 0x7e, 0x6c, 0x75, 0xaf, 0x61, 0xde, 0xc5, 0x2a,
- 0x95, 0x97, 0x2e, 0x81, 0xb4, 0x85, 0x8e, 0x0e, 0x1a, 0x45, 0x4c, 0x39, 0x0a, 0x52, 0x85, 0xff,
- 0x74, 0x8e, 0x8b, 0x2b, 0xaa, 0x54, 0x51, 0x52, 0xf7, 0x09, 0xfb, 0x34, 0x48, 0xb5, 0x33, 0x99,
- 0x8c, 0xc4, 0x3e, 0x90, 0x28, 0xa9, 0xfb, 0x5f, 0x9b, 0x3f, 0x52, 0x3a, 0x0d, 0x92, 0x8a, 0xe6,
- 0x00, 0xba, 0x39, 0x95, 0xd2, 0x4e, 0xa8, 0x11, 0x89, 0x92, 0x7a, 0x8b, 0xa8, 0x3e, 0x03, 0x99,
- 0xaa, 0xee, 0x8b, 0x9f, 0x53, 0xa5, 0xeb, 0x76, 0xf0, 0xdc, 0x39, 0x6e, 0x65, 0xf6, 0x7f, 0x1f,
- 0xcc, 0xa7, 0x4d, 0x22, 0x50, 0x99, 0xbc, 0xf2, 0xec, 0xdf, 0xbf, 0x33, 0x77, 0xe4, 0xed, 0x77,
- 0xe6, 0xa4, 0xf7, 0xdf, 0x99, 0x93, 0xfe, 0xe7, 0x9d, 0x39, 0xe9, 0xde, 0xc3, 0x39, 0xe9, 0xcd,
- 0x87, 0x73, 0xd2, 0x77, 0x1f, 0xce, 0x49, 0xdf, 0x7b, 0x38, 0x27, 0xdd, 0x7f, 0x38, 0x27, 0xbd,
- 0xf5, 0x70, 0x4e, 0x7a, 0xfb, 0xe1, 0x9c, 0xf4, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x9d, 0xf3,
- 0x72, 0x31, 0xe6, 0x31, 0x00, 0x00,
- }
- r := bytes.NewReader(gzipped)
- gzipr, err := compress_gzip.NewReader(r)
- if err != nil {
- panic(err)
- }
- ungzipped, err := io_ioutil.ReadAll(gzipr)
- if err != nil {
- panic(err)
- }
- if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil {
- panic(err)
- }
- return d
- }
- func (this *A) VerboseEqual(that interface{}) error {
- if that == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that == nil && this != nil")
- }
- that1, ok := that.(*A)
- if !ok {
- that2, ok := that.(A)
- if ok {
- that1 = &that2
- } else {
- return fmt.Errorf("that is not of type *A")
- }
- }
- if that1 == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that is type *A but is nil && this != nil")
- } else if this == nil {
- return fmt.Errorf("that is type *A but is not nil && this == nil")
- }
- if this.Description != that1.Description {
- return fmt.Errorf("Description this(%v) Not Equal that(%v)", this.Description, that1.Description)
- }
- if this.Number != that1.Number {
- return fmt.Errorf("Number this(%v) Not Equal that(%v)", this.Number, that1.Number)
- }
- if !this.Id.Equal(that1.Id) {
- return fmt.Errorf("Id this(%v) Not Equal that(%v)", this.Id, that1.Id)
- }
- if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
- return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized)
- }
- return nil
- }
- func (this *A) Equal(that interface{}) bool {
- if that == nil {
- if this == nil {
- return true
- }
- return false
- }
- that1, ok := that.(*A)
- if !ok {
- that2, ok := that.(A)
- if ok {
- that1 = &that2
- } else {
- return false
- }
- }
- if that1 == nil {
- if this == nil {
- return true
- }
- return false
- } else if this == nil {
- return false
- }
- if this.Description != that1.Description {
- return false
- }
- if this.Number != that1.Number {
- return false
- }
- if !this.Id.Equal(that1.Id) {
- return false
- }
- if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
- return false
- }
- return true
- }
- func (this *B) VerboseEqual(that interface{}) error {
- if that == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that == nil && this != nil")
- }
- that1, ok := that.(*B)
- if !ok {
- that2, ok := that.(B)
- if ok {
- that1 = &that2
- } else {
- return fmt.Errorf("that is not of type *B")
- }
- }
- if that1 == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that is type *B but is nil && this != nil")
- } else if this == nil {
- return fmt.Errorf("that is type *B but is not nil && this == nil")
- }
- if !this.A.Equal(&that1.A) {
- return fmt.Errorf("A this(%v) Not Equal that(%v)", this.A, that1.A)
- }
- if len(this.G) != len(that1.G) {
- return fmt.Errorf("G this(%v) Not Equal that(%v)", len(this.G), len(that1.G))
- }
- for i := range this.G {
- if !this.G[i].Equal(that1.G[i]) {
- return fmt.Errorf("G this[%v](%v) Not Equal that[%v](%v)", i, this.G[i], i, that1.G[i])
- }
- }
- if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
- return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized)
- }
- return nil
- }
- func (this *B) Equal(that interface{}) bool {
- if that == nil {
- if this == nil {
- return true
- }
- return false
- }
- that1, ok := that.(*B)
- if !ok {
- that2, ok := that.(B)
- if ok {
- that1 = &that2
- } else {
- return false
- }
- }
- if that1 == nil {
- if this == nil {
- return true
- }
- return false
- } else if this == nil {
- return false
- }
- if !this.A.Equal(&that1.A) {
- return false
- }
- if len(this.G) != len(that1.G) {
- return false
- }
- for i := range this.G {
- if !this.G[i].Equal(that1.G[i]) {
- return false
- }
- }
- if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
- return false
- }
- return true
- }
- func (this *C) VerboseEqual(that interface{}) error {
- if that == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that == nil && this != nil")
- }
- that1, ok := that.(*C)
- if !ok {
- that2, ok := that.(C)
- if ok {
- that1 = &that2
- } else {
- return fmt.Errorf("that is not of type *C")
- }
- }
- if that1 == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that is type *C but is nil && this != nil")
- } else if this == nil {
- return fmt.Errorf("that is type *C but is not nil && this == nil")
- }
- if this.MySize != nil && that1.MySize != nil {
- if *this.MySize != *that1.MySize {
- return fmt.Errorf("MySize this(%v) Not Equal that(%v)", *this.MySize, *that1.MySize)
- }
- } else if this.MySize != nil {
- return fmt.Errorf("this.MySize == nil && that.MySize != nil")
- } else if that1.MySize != nil {
- return fmt.Errorf("MySize this(%v) Not Equal that(%v)", this.MySize, that1.MySize)
- }
- if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
- return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized)
- }
- return nil
- }
- func (this *C) Equal(that interface{}) bool {
- if that == nil {
- if this == nil {
- return true
- }
- return false
- }
- that1, ok := that.(*C)
- if !ok {
- that2, ok := that.(C)
- if ok {
- that1 = &that2
- } else {
- return false
- }
- }
- if that1 == nil {
- if this == nil {
- return true
- }
- return false
- } else if this == nil {
- return false
- }
- if this.MySize != nil && that1.MySize != nil {
- if *this.MySize != *that1.MySize {
- return false
- }
- } else if this.MySize != nil {
- return false
- } else if that1.MySize != nil {
- return false
- }
- if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
- return false
- }
- return true
- }
- func (this *U) VerboseEqual(that interface{}) error {
- if that == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that == nil && this != nil")
- }
- that1, ok := that.(*U)
- if !ok {
- that2, ok := that.(U)
- if ok {
- that1 = &that2
- } else {
- return fmt.Errorf("that is not of type *U")
- }
- }
- if that1 == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that is type *U but is nil && this != nil")
- } else if this == nil {
- return fmt.Errorf("that is type *U but is not nil && this == nil")
- }
- if !this.A.Equal(that1.A) {
- return fmt.Errorf("A this(%v) Not Equal that(%v)", this.A, that1.A)
- }
- if !this.B.Equal(that1.B) {
- return fmt.Errorf("B this(%v) Not Equal that(%v)", this.B, that1.B)
- }
- if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
- return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized)
- }
- return nil
- }
- func (this *U) Equal(that interface{}) bool {
- if that == nil {
- if this == nil {
- return true
- }
- return false
- }
- that1, ok := that.(*U)
- if !ok {
- that2, ok := that.(U)
- if ok {
- that1 = &that2
- } else {
- return false
- }
- }
- if that1 == nil {
- if this == nil {
- return true
- }
- return false
- } else if this == nil {
- return false
- }
- if !this.A.Equal(that1.A) {
- return false
- }
- if !this.B.Equal(that1.B) {
- return false
- }
- if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
- return false
- }
- return true
- }
- func (this *E) VerboseEqual(that interface{}) error {
- if that == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that == nil && this != nil")
- }
- that1, ok := that.(*E)
- if !ok {
- that2, ok := that.(E)
- if ok {
- that1 = &that2
- } else {
- return fmt.Errorf("that is not of type *E")
- }
- }
- if that1 == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that is type *E but is nil && this != nil")
- } else if this == nil {
- return fmt.Errorf("that is type *E but is not nil && this == nil")
- }
- if !bytes.Equal(this.XXX_extensions, that1.XXX_extensions) {
- return fmt.Errorf("XXX_extensions this(%v) Not Equal that(%v)", this.XXX_extensions, that1.XXX_extensions)
- }
- if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
- return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized)
- }
- return nil
- }
- func (this *E) Equal(that interface{}) bool {
- if that == nil {
- if this == nil {
- return true
- }
- return false
- }
- that1, ok := that.(*E)
- if !ok {
- that2, ok := that.(E)
- if ok {
- that1 = &that2
- } else {
- return false
- }
- }
- if that1 == nil {
- if this == nil {
- return true
- }
- return false
- } else if this == nil {
- return false
- }
- if !bytes.Equal(this.XXX_extensions, that1.XXX_extensions) {
- return false
- }
- if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
- return false
- }
- return true
- }
- func (this *R) VerboseEqual(that interface{}) error {
- if that == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that == nil && this != nil")
- }
- that1, ok := that.(*R)
- if !ok {
- that2, ok := that.(R)
- if ok {
- that1 = &that2
- } else {
- return fmt.Errorf("that is not of type *R")
- }
- }
- if that1 == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that is type *R but is nil && this != nil")
- } else if this == nil {
- return fmt.Errorf("that is type *R but is not nil && this == nil")
- }
- if this.Recognized != nil && that1.Recognized != nil {
- if *this.Recognized != *that1.Recognized {
- return fmt.Errorf("Recognized this(%v) Not Equal that(%v)", *this.Recognized, *that1.Recognized)
- }
- } else if this.Recognized != nil {
- return fmt.Errorf("this.Recognized == nil && that.Recognized != nil")
- } else if that1.Recognized != nil {
- return fmt.Errorf("Recognized this(%v) Not Equal that(%v)", this.Recognized, that1.Recognized)
- }
- return nil
- }
- func (this *R) Equal(that interface{}) bool {
- if that == nil {
- if this == nil {
- return true
- }
- return false
- }
- that1, ok := that.(*R)
- if !ok {
- that2, ok := that.(R)
- if ok {
- that1 = &that2
- } else {
- return false
- }
- }
- if that1 == nil {
- if this == nil {
- return true
- }
- return false
- } else if this == nil {
- return false
- }
- if this.Recognized != nil && that1.Recognized != nil {
- if *this.Recognized != *that1.Recognized {
- return false
- }
- } else if this.Recognized != nil {
- return false
- } else if that1.Recognized != nil {
- return false
- }
- return true
- }
- func (this *CastType) VerboseEqual(that interface{}) error {
- if that == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that == nil && this != nil")
- }
- that1, ok := that.(*CastType)
- if !ok {
- that2, ok := that.(CastType)
- if ok {
- that1 = &that2
- } else {
- return fmt.Errorf("that is not of type *CastType")
- }
- }
- if that1 == nil {
- if this == nil {
- return nil
- }
- return fmt.Errorf("that is type *CastType but is nil && this != nil")
- } else if this == nil {
- return fmt.Errorf("that is type *CastType but is not nil && this == nil")
- }
- if this.Int32 != nil && that1.Int32 != nil {
- if *this.Int32 != *that1.Int32 {
- return fmt.Errorf("Int32 this(%v) Not Equal that(%v)", *this.Int32, *that1.Int32)
- }
- } else if this.Int32 != nil {
- return fmt.Errorf("this.Int32 == nil && that.Int32 != nil")
- } else if that1.Int32 != nil {
- return fmt.Errorf("Int32 this(%v) Not Equal that(%v)", this.Int32, that1.Int32)
- }
- if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
- return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized)
- }
- return nil
- }
- func (this *CastType) Equal(that interface{}) bool {
- if that == nil {
- if this == nil {
- return true
- }
- return false
- }
- that1, ok := that.(*CastType)
- if !ok {
- that2, ok := that.(CastType)
- if ok {
- that1 = &that2
- } else {
- return false
- }
- }
- if that1 == nil {
- if this == nil {
- return true
- }
- return false
- } else if this == nil {
- return false
- }
- if this.Int32 != nil && that1.Int32 != nil {
- if *this.Int32 != *that1.Int32 {
- return false
- }
- } else if this.Int32 != nil {
- return false
- } else if that1.Int32 != nil {
- return false
- }
- if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
- return false
- }
- return true
- }
- type AFace interface {
- Proto() github_com_gogo_protobuf_proto.Message
- GetDescription() string
- GetNumber() int64
- GetId() github_com_gogo_protobuf_test.Uuid
- }
- func (this *A) Proto() github_com_gogo_protobuf_proto.Message {
- return this
- }
- func (this *A) TestProto() github_com_gogo_protobuf_proto.Message {
- return NewAFromFace(this)
- }
- func (this *A) GetDescription() string {
- return this.Description
- }
- func (this *A) GetNumber() int64 {
- return this.Number
- }
- func (this *A) GetId() github_com_gogo_protobuf_test.Uuid {
- return this.Id
- }
- func NewAFromFace(that AFace) *A {
- this := &A{}
- this.Description = that.GetDescription()
- this.Number = that.GetNumber()
- this.Id = that.GetId()
- return this
- }
- func (this *A) GoString() string {
- if this == nil {
- return "nil"
- }
- s := make([]string, 0, 7)
- s = append(s, "&test.A{")
- s = append(s, "Description: "+fmt.Sprintf("%#v", this.Description)+",\n")
- s = append(s, "Number: "+fmt.Sprintf("%#v", this.Number)+",\n")
- s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n")
- if this.XXX_unrecognized != nil {
- s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n")
- }
- s = append(s, "}")
- return strings.Join(s, "")
- }
- func (this *B) GoString() string {
- if this == nil {
- return "nil"
- }
- s := make([]string, 0, 6)
- s = append(s, "&test.B{")
- s = append(s, "A: "+strings.Replace(this.A.GoString(), `&`, ``, 1)+",\n")
- if this.G != nil {
- s = append(s, "G: "+fmt.Sprintf("%#v", this.G)+",\n")
- }
- if this.XXX_unrecognized != nil {
- s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n")
- }
- s = append(s, "}")
- return strings.Join(s, "")
- }
- func (this *C) GoString() string {
- if this == nil {
- return "nil"
- }
- s := make([]string, 0, 5)
- s = append(s, "&test.C{")
- if this.MySize != nil {
- s = append(s, "MySize: "+valueToGoStringExample(this.MySize, "int64")+",\n")
- }
- if this.XXX_unrecognized != nil {
- s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n")
- }
- s = append(s, "}")
- return strings.Join(s, "")
- }
- func (this *U) GoString() string {
- if this == nil {
- return "nil"
- }
- s := make([]string, 0, 6)
- s = append(s, "&test.U{")
- if this.A != nil {
- s = append(s, "A: "+fmt.Sprintf("%#v", this.A)+",\n")
- }
- if this.B != nil {
- s = append(s, "B: "+fmt.Sprintf("%#v", this.B)+",\n")
- }
- if this.XXX_unrecognized != nil {
- s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n")
- }
- s = append(s, "}")
- return strings.Join(s, "")
- }
- func (this *E) GoString() string {
- if this == nil {
- return "nil"
- }
- s := make([]string, 0, 4)
- s = append(s, "&test.E{")
- if this.XXX_extensions != nil {
- s = append(s, "XXX_extensions: "+fmt.Sprintf("%#v", this.XXX_extensions)+",\n")
- }
- if this.XXX_unrecognized != nil {
- s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n")
- }
- s = append(s, "}")
- return strings.Join(s, "")
- }
- func (this *R) GoString() string {
- if this == nil {
- return "nil"
- }
- s := make([]string, 0, 5)
- s = append(s, "&test.R{")
- if this.Recognized != nil {
- s = append(s, "Recognized: "+valueToGoStringExample(this.Recognized, "uint32")+",\n")
- }
- s = append(s, "}")
- return strings.Join(s, "")
- }
- func (this *CastType) GoString() string {
- if this == nil {
- return "nil"
- }
- s := make([]string, 0, 5)
- s = append(s, "&test.CastType{")
- if this.Int32 != nil {
- s = append(s, "Int32: "+valueToGoStringExample(this.Int32, "int32")+",\n")
- }
- if this.XXX_unrecognized != nil {
- s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n")
- }
- s = append(s, "}")
- return strings.Join(s, "")
- }
- func valueToGoStringExample(v interface{}, typ string) string {
- rv := reflect.ValueOf(v)
- if rv.IsNil() {
- return "nil"
- }
- pv := reflect.Indirect(rv).Interface()
- return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv)
- }
- func (m *A) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *A) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- dAtA[i] = 0xa
- i++
- i = encodeVarintExample(dAtA, i, uint64(len(m.Description)))
- i += copy(dAtA[i:], m.Description)
- dAtA[i] = 0x10
- i++
- i = encodeVarintExample(dAtA, i, uint64(m.Number))
- dAtA[i] = 0x1a
- i++
- i = encodeVarintExample(dAtA, i, uint64(m.Id.Size()))
- n1, err := m.Id.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n1
- if m.XXX_unrecognized != nil {
- i += copy(dAtA[i:], m.XXX_unrecognized)
- }
- return i, nil
- }
- func (m *B) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *B) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- dAtA[i] = 0xa
- i++
- i = encodeVarintExample(dAtA, i, uint64(m.A.Size()))
- n2, err := m.A.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n2
- if len(m.G) > 0 {
- for _, msg := range m.G {
- dAtA[i] = 0x12
- i++
- i = encodeVarintExample(dAtA, i, uint64(msg.Size()))
- n, err := msg.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n
- }
- }
- if m.XXX_unrecognized != nil {
- i += copy(dAtA[i:], m.XXX_unrecognized)
- }
- return i, nil
- }
- func (m *C) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *C) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- if m.MySize != nil {
- dAtA[i] = 0x8
- i++
- i = encodeVarintExample(dAtA, i, uint64(*m.MySize))
- }
- if m.XXX_unrecognized != nil {
- i += copy(dAtA[i:], m.XXX_unrecognized)
- }
- return i, nil
- }
- func (m *U) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *U) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- if m.A != nil {
- dAtA[i] = 0xa
- i++
- i = encodeVarintExample(dAtA, i, uint64(m.A.Size()))
- n3, err := m.A.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n3
- }
- if m.B != nil {
- dAtA[i] = 0x12
- i++
- i = encodeVarintExample(dAtA, i, uint64(m.B.Size()))
- n4, err := m.B.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n4
- }
- if m.XXX_unrecognized != nil {
- i += copy(dAtA[i:], m.XXX_unrecognized)
- }
- return i, nil
- }
- func (m *E) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *E) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- if m.XXX_extensions != nil {
- i += copy(dAtA[i:], m.XXX_extensions)
- }
- if m.XXX_unrecognized != nil {
- i += copy(dAtA[i:], m.XXX_unrecognized)
- }
- return i, nil
- }
- func (m *R) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *R) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- if m.Recognized != nil {
- dAtA[i] = 0x8
- i++
- i = encodeVarintExample(dAtA, i, uint64(*m.Recognized))
- }
- return i, nil
- }
- func (m *CastType) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *CastType) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- if m.Int32 != nil {
- dAtA[i] = 0x8
- i++
- i = encodeVarintExample(dAtA, i, uint64(*m.Int32))
- }
- if m.XXX_unrecognized != nil {
- i += copy(dAtA[i:], m.XXX_unrecognized)
- }
- return i, nil
- }
- func encodeVarintExample(dAtA []byte, offset int, v uint64) int {
- for v >= 1<<7 {
- dAtA[offset] = uint8(v&0x7f | 0x80)
- v >>= 7
- offset++
- }
- dAtA[offset] = uint8(v)
- return offset + 1
- }
- func NewPopulatedA(r randyExample, easy bool) *A {
- this := &A{}
- this.Description = string(randStringExample(r))
- this.Number = int64(r.Int63())
- if r.Intn(2) == 0 {
- this.Number *= -1
- }
- v1 := github_com_gogo_protobuf_test.NewPopulatedUuid(r)
- this.Id = *v1
- if !easy && r.Intn(10) != 0 {
- this.XXX_unrecognized = randUnrecognizedExample(r, 4)
- }
- return this
- }
- func NewPopulatedB(r randyExample, easy bool) *B {
- this := &B{}
- v2 := NewPopulatedA(r, easy)
- this.A = *v2
- if r.Intn(10) != 0 {
- v3 := r.Intn(10)
- this.G = make([]github_com_gogo_protobuf_test_custom.Uint128, v3)
- for i := 0; i < v3; i++ {
- v4 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r)
- this.G[i] = *v4
- }
- }
- if !easy && r.Intn(10) != 0 {
- this.XXX_unrecognized = randUnrecognizedExample(r, 3)
- }
- return this
- }
- func NewPopulatedC(r randyExample, easy bool) *C {
- this := &C{}
- if r.Intn(10) != 0 {
- v5 := int64(r.Int63())
- if r.Intn(2) == 0 {
- v5 *= -1
- }
- this.MySize = &v5
- }
- if !easy && r.Intn(10) != 0 {
- this.XXX_unrecognized = randUnrecognizedExample(r, 2)
- }
- return this
- }
- func NewPopulatedU(r randyExample, easy bool) *U {
- this := &U{}
- fieldNum := r.Intn(2)
- switch fieldNum {
- case 0:
- this.A = NewPopulatedA(r, easy)
- case 1:
- this.B = NewPopulatedB(r, easy)
- }
- return this
- }
- func NewPopulatedE(r randyExample, easy bool) *E {
- this := &E{}
- if !easy && r.Intn(10) != 0 {
- l := r.Intn(5)
- for i := 0; i < l; i++ {
- fieldNumber := r.Intn(536870911) + 1
- wire := r.Intn(4)
- if wire == 3 {
- wire = 5
- }
- dAtA := randFieldExample(nil, r, fieldNumber, wire)
- github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA)
- }
- }
- return this
- }
- func NewPopulatedR(r randyExample, easy bool) *R {
- this := &R{}
- if r.Intn(10) != 0 {
- v6 := uint32(r.Uint32())
- this.Recognized = &v6
- }
- if !easy && r.Intn(10) != 0 {
- }
- return this
- }
- func NewPopulatedCastType(r randyExample, easy bool) *CastType {
- this := &CastType{}
- if r.Intn(10) != 0 {
- v7 := int32(r.Int63())
- if r.Intn(2) == 0 {
- v7 *= -1
- }
- this.Int32 = &v7
- }
- if !easy && r.Intn(10) != 0 {
- this.XXX_unrecognized = randUnrecognizedExample(r, 2)
- }
- return this
- }
- type randyExample interface {
- Float32() float32
- Float64() float64
- Int63() int64
- Int31() int32
- Uint32() uint32
- Intn(n int) int
- }
- func randUTF8RuneExample(r randyExample) rune {
- ru := r.Intn(62)
- if ru < 10 {
- return rune(ru + 48)
- } else if ru < 36 {
- return rune(ru + 55)
- }
- return rune(ru + 61)
- }
- func randStringExample(r randyExample) string {
- v8 := r.Intn(100)
- tmps := make([]rune, v8)
- for i := 0; i < v8; i++ {
- tmps[i] = randUTF8RuneExample(r)
- }
- return string(tmps)
- }
- func randUnrecognizedExample(r randyExample, maxFieldNumber int) (dAtA []byte) {
- l := r.Intn(5)
- for i := 0; i < l; i++ {
- wire := r.Intn(4)
- if wire == 3 {
- wire = 5
- }
- fieldNumber := maxFieldNumber + r.Intn(100)
- dAtA = randFieldExample(dAtA, r, fieldNumber, wire)
- }
- return dAtA
- }
- func randFieldExample(dAtA []byte, r randyExample, fieldNumber int, wire int) []byte {
- key := uint32(fieldNumber)<<3 | uint32(wire)
- switch wire {
- case 0:
- dAtA = encodeVarintPopulateExample(dAtA, uint64(key))
- v9 := r.Int63()
- if r.Intn(2) == 0 {
- v9 *= -1
- }
- dAtA = encodeVarintPopulateExample(dAtA, uint64(v9))
- case 1:
- dAtA = encodeVarintPopulateExample(dAtA, uint64(key))
- dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)))
- case 2:
- dAtA = encodeVarintPopulateExample(dAtA, uint64(key))
- ll := r.Intn(100)
- dAtA = encodeVarintPopulateExample(dAtA, uint64(ll))
- for j := 0; j < ll; j++ {
- dAtA = append(dAtA, byte(r.Intn(256)))
- }
- default:
- dAtA = encodeVarintPopulateExample(dAtA, uint64(key))
- dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)))
- }
- return dAtA
- }
- func encodeVarintPopulateExample(dAtA []byte, v uint64) []byte {
- for v >= 1<<7 {
- dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80))
- v >>= 7
- }
- dAtA = append(dAtA, uint8(v))
- return dAtA
- }
- func (m *A) Size() (n int) {
- var l int
- _ = l
- l = len(m.Description)
- n += 1 + l + sovExample(uint64(l))
- n += 1 + sovExample(uint64(m.Number))
- l = m.Id.Size()
- n += 1 + l + sovExample(uint64(l))
- if m.XXX_unrecognized != nil {
- n += len(m.XXX_unrecognized)
- }
- return n
- }
- func (m *B) Size() (n int) {
- var l int
- _ = l
- l = m.A.Size()
- n += 1 + l + sovExample(uint64(l))
- if len(m.G) > 0 {
- for _, e := range m.G {
- l = e.Size()
- n += 1 + l + sovExample(uint64(l))
- }
- }
- if m.XXX_unrecognized != nil {
- n += len(m.XXX_unrecognized)
- }
- return n
- }
- func (m *C) Size() (n int) {
- var l int
- _ = l
- if m.MySize != nil {
- n += 1 + sovExample(uint64(*m.MySize))
- }
- if m.XXX_unrecognized != nil {
- n += len(m.XXX_unrecognized)
- }
- return n
- }
- func (m *U) Size() (n int) {
- var l int
- _ = l
- if m.A != nil {
- l = m.A.Size()
- n += 1 + l + sovExample(uint64(l))
- }
- if m.B != nil {
- l = m.B.Size()
- n += 1 + l + sovExample(uint64(l))
- }
- if m.XXX_unrecognized != nil {
- n += len(m.XXX_unrecognized)
- }
- return n
- }
- func (m *E) Size() (n int) {
- var l int
- _ = l
- if m.XXX_extensions != nil {
- n += len(m.XXX_extensions)
- }
- if m.XXX_unrecognized != nil {
- n += len(m.XXX_unrecognized)
- }
- return n
- }
- func (m *R) Size() (n int) {
- var l int
- _ = l
- if m.Recognized != nil {
- n += 1 + sovExample(uint64(*m.Recognized))
- }
- return n
- }
- func (m *CastType) Size() (n int) {
- var l int
- _ = l
- if m.Int32 != nil {
- n += 1 + sovExample(uint64(*m.Int32))
- }
- if m.XXX_unrecognized != nil {
- n += len(m.XXX_unrecognized)
- }
- return n
- }
- func sovExample(x uint64) (n int) {
- for {
- n++
- x >>= 7
- if x == 0 {
- break
- }
- }
- return n
- }
- func sozExample(x uint64) (n int) {
- return sovExample(uint64((x << 1) ^ uint64((int64(x) >> 63))))
- }
- func (this *A) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&A{`,
- `Description:` + fmt.Sprintf("%v", this.Description) + `,`,
- `Number:` + fmt.Sprintf("%v", this.Number) + `,`,
- `Id:` + fmt.Sprintf("%v", this.Id) + `,`,
- `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *B) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&B{`,
- `A:` + strings.Replace(strings.Replace(this.A.String(), "A", "A", 1), `&`, ``, 1) + `,`,
- `G:` + fmt.Sprintf("%v", this.G) + `,`,
- `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *C) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&C{`,
- `MySize:` + valueToStringExample(this.MySize) + `,`,
- `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *U) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&U{`,
- `A:` + strings.Replace(fmt.Sprintf("%v", this.A), "A", "A", 1) + `,`,
- `B:` + strings.Replace(fmt.Sprintf("%v", this.B), "B", "B", 1) + `,`,
- `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *E) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&E{`,
- `XXX_extensions:` + github_com_gogo_protobuf_proto.StringFromExtensionsBytes(this.XXX_extensions) + `,`,
- `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *R) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&R{`,
- `Recognized:` + valueToStringExample(this.Recognized) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *CastType) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&CastType{`,
- `Int32:` + valueToStringExample(this.Int32) + `,`,
- `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
- `}`,
- }, "")
- return s
- }
- func valueToStringExample(v interface{}) string {
- rv := reflect.ValueOf(v)
- if rv.IsNil() {
- return "nil"
- }
- pv := reflect.Indirect(rv).Interface()
- return fmt.Sprintf("*%v", pv)
- }
- func (this *U) GetValue() interface{} {
- if this.A != nil {
- return this.A
- }
- if this.B != nil {
- return this.B
- }
- return nil
- }
- func (this *U) SetValue(value interface{}) bool {
- switch vt := value.(type) {
- case *A:
- this.A = vt
- case *B:
- this.B = vt
- default:
- return false
- }
- return true
- }
- func (m *A) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: A: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: A: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Description", wireType)
- }
- var stringLen uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- stringLen |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- intStringLen := int(stringLen)
- if intStringLen < 0 {
- return ErrInvalidLengthExample
- }
- postIndex := iNdEx + intStringLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.Description = string(dAtA[iNdEx:postIndex])
- iNdEx = postIndex
- case 2:
- if wireType != 0 {
- return fmt.Errorf("proto: wrong wireType = %d for field Number", wireType)
- }
- m.Number = 0
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- m.Number |= (int64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- case 3:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType)
- }
- var byteLen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- byteLen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if byteLen < 0 {
- return ErrInvalidLengthExample
- }
- postIndex := iNdEx + byteLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- if err := m.Id.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- default:
- iNdEx = preIndex
- skippy, err := skipExample(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthExample
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *B) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: B: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: B: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field A", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthExample
- }
- postIndex := iNdEx + msglen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- if err := m.A.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- case 2:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field G", wireType)
- }
- var byteLen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- byteLen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if byteLen < 0 {
- return ErrInvalidLengthExample
- }
- postIndex := iNdEx + byteLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- var v github_com_gogo_protobuf_test_custom.Uint128
- m.G = append(m.G, v)
- if err := m.G[len(m.G)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- default:
- iNdEx = preIndex
- skippy, err := skipExample(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthExample
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *C) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: C: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: C: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 0 {
- return fmt.Errorf("proto: wrong wireType = %d for field MySize", wireType)
- }
- var v int64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- v |= (int64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- m.MySize = &v
- default:
- iNdEx = preIndex
- skippy, err := skipExample(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthExample
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *U) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: U: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: U: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field A", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthExample
- }
- postIndex := iNdEx + msglen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- if m.A == nil {
- m.A = &A{}
- }
- if err := m.A.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- case 2:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field B", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthExample
- }
- postIndex := iNdEx + msglen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- if m.B == nil {
- m.B = &B{}
- }
- if err := m.B.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- default:
- iNdEx = preIndex
- skippy, err := skipExample(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthExample
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *E) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: E: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: E: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- default:
- if (fieldNum >= 1) && (fieldNum < 536870912) {
- var sizeOfWire int
- for {
- sizeOfWire++
- wire >>= 7
- if wire == 0 {
- break
- }
- }
- iNdEx -= sizeOfWire
- skippy, err := skipExample(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthExample
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- github_com_gogo_protobuf_proto.AppendExtension(m, int32(fieldNum), dAtA[iNdEx:iNdEx+skippy])
- iNdEx += skippy
- } else {
- iNdEx = preIndex
- skippy, err := skipExample(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthExample
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
- iNdEx += skippy
- }
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *R) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: R: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: R: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 0 {
- return fmt.Errorf("proto: wrong wireType = %d for field Recognized", wireType)
- }
- var v uint32
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- v |= (uint32(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- m.Recognized = &v
- default:
- iNdEx = preIndex
- skippy, err := skipExample(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthExample
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *CastType) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: CastType: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: CastType: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 0 {
- return fmt.Errorf("proto: wrong wireType = %d for field Int32", wireType)
- }
- var v int32
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowExample
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- v |= (int32(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- m.Int32 = &v
- default:
- iNdEx = preIndex
- skippy, err := skipExample(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthExample
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func skipExample(dAtA []byte) (n int, err error) {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return 0, ErrIntOverflowExample
- }
- if iNdEx >= l {
- return 0, io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- wireType := int(wire & 0x7)
- switch wireType {
- case 0:
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return 0, ErrIntOverflowExample
- }
- if iNdEx >= l {
- return 0, io.ErrUnexpectedEOF
- }
- iNdEx++
- if dAtA[iNdEx-1] < 0x80 {
- break
- }
- }
- return iNdEx, nil
- case 1:
- iNdEx += 8
- return iNdEx, nil
- case 2:
- var length int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return 0, ErrIntOverflowExample
- }
- if iNdEx >= l {
- return 0, io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- length |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- iNdEx += length
- if length < 0 {
- return 0, ErrInvalidLengthExample
- }
- return iNdEx, nil
- case 3:
- for {
- var innerWire uint64
- var start int = iNdEx
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return 0, ErrIntOverflowExample
- }
- if iNdEx >= l {
- return 0, io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- innerWire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- innerWireType := int(innerWire & 0x7)
- if innerWireType == 4 {
- break
- }
- next, err := skipExample(dAtA[start:])
- if err != nil {
- return 0, err
- }
- iNdEx = start + next
- }
- return iNdEx, nil
- case 4:
- return iNdEx, nil
- case 5:
- iNdEx += 4
- return iNdEx, nil
- default:
- return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
- }
- }
- panic("unreachable")
- }
- var (
- ErrInvalidLengthExample = fmt.Errorf("proto: negative length found during unmarshaling")
- ErrIntOverflowExample = fmt.Errorf("proto: integer overflow")
- )
- func init() { proto.RegisterFile("example.proto", fileDescriptorExample) }
- var fileDescriptorExample = []byte{
- // 425 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x90, 0x41, 0x6b, 0x13, 0x41,
- 0x14, 0xc7, 0xf3, 0x36, 0xdb, 0xba, 0x7d, 0x6d, 0x41, 0x46, 0x0a, 0x41, 0x64, 0x26, 0xac, 0x20,
- 0xb1, 0xd6, 0x0d, 0x46, 0x41, 0xd9, 0x5b, 0xa6, 0x4a, 0xc9, 0x41, 0x0f, 0xa3, 0xf9, 0x00, 0x4d,
- 0x32, 0xc6, 0x01, 0xb3, 0x13, 0xb2, 0xb3, 0x60, 0x73, 0xda, 0xa3, 0x37, 0xbf, 0x42, 0xbd, 0xf5,
- 0x23, 0x78, 0xf4, 0x98, 0x63, 0x8e, 0xe2, 0x61, 0x69, 0xe6, 0x13, 0xf4, 0x28, 0x9e, 0x64, 0xa6,
- 0x41, 0x02, 0x62, 0x6f, 0xfb, 0x7e, 0xef, 0xed, 0xff, 0xff, 0x63, 0x70, 0x5f, 0x7e, 0x3a, 0x9d,
- 0x4c, 0x3f, 0xca, 0x64, 0x3a, 0xd3, 0x46, 0x93, 0xd0, 0xc8, 0xdc, 0xdc, 0x7d, 0x3c, 0x56, 0xe6,
- 0x43, 0x31, 0x48, 0x86, 0x7a, 0xd2, 0x1e, 0xeb, 0xb1, 0x6e, 0xfb, 0xe5, 0xa0, 0x78, 0xef, 0x27,
- 0x3f, 0xf8, 0xaf, 0xeb, 0x9f, 0xe2, 0x2f, 0x80, 0xd0, 0x25, 0x0f, 0x70, 0xf7, 0xa5, 0xcc, 0x87,
- 0x33, 0x35, 0x35, 0x4a, 0x67, 0x0d, 0x68, 0x42, 0x6b, 0x87, 0x87, 0x8b, 0x8a, 0xd5, 0xc4, 0xe6,
- 0x82, 0xdc, 0xc3, 0xed, 0x37, 0xc5, 0x64, 0x20, 0x67, 0x8d, 0xa0, 0x09, 0xad, 0xfa, 0xfa, 0x64,
- 0xcd, 0x48, 0x8a, 0x41, 0x6f, 0xd4, 0xa8, 0x37, 0xa1, 0xb5, 0xc7, 0x0f, 0xdd, 0xe6, 0x67, 0xc5,
- 0xe2, 0xff, 0xea, 0x38, 0xdb, 0xa4, 0x5f, 0xa8, 0x91, 0x08, 0x7a, 0xa3, 0x34, 0xfa, 0x7c, 0xce,
- 0x6a, 0x17, 0xe7, 0x0c, 0xe2, 0x0c, 0x81, 0x13, 0x86, 0xd0, 0xf5, 0x1a, 0xbb, 0x9d, 0x5b, 0x89,
- 0xbf, 0xec, 0xf2, 0xc8, 0x45, 0x2e, 0x2b, 0x06, 0x02, 0xba, 0x84, 0x23, 0x9c, 0x34, 0x82, 0x66,
- 0xbd, 0xb5, 0xc7, 0x9f, 0xad, 0xab, 0x8e, 0x6e, 0xac, 0x6a, 0x0f, 0x8b, 0xdc, 0xe8, 0x49, 0xd2,
- 0x57, 0x99, 0x79, 0xd2, 0x79, 0x21, 0xe0, 0x24, 0x0d, 0xaf, 0x5c, 0xdf, 0x7d, 0x84, 0x63, 0x42,
- 0x31, 0xcc, 0xd5, 0x5c, 0xfa, 0xca, 0x3a, 0x47, 0x5b, 0xb1, 0xed, 0xd7, 0x67, 0x6f, 0xd5, 0x5c,
- 0x0a, 0xcf, 0xe3, 0xe7, 0x08, 0x7d, 0x72, 0xf0, 0xaf, 0x94, 0x53, 0x39, 0x40, 0xe0, 0xfe, 0x3d,
- 0xfe, 0x62, 0x2e, 0x80, 0xa7, 0xe1, 0xc2, 0xa5, 0xdf, 0x41, 0x78, 0x75, 0x18, 0x45, 0x70, 0xbb,
- 0x2c, 0xcb, 0x32, 0x48, 0xc3, 0xc5, 0x57, 0x56, 0x8b, 0x1f, 0x22, 0x08, 0x42, 0x11, 0x67, 0x72,
- 0xa8, 0xc7, 0x99, 0x9a, 0xcb, 0x91, 0x8f, 0xdd, 0x17, 0x1b, 0x24, 0x0d, 0x97, 0xee, 0xf4, 0x11,
- 0x46, 0xc7, 0xa7, 0xb9, 0x79, 0x77, 0x36, 0x95, 0x84, 0xe1, 0x56, 0x2f, 0x33, 0x4f, 0x3b, 0x6b,
- 0xcb, 0x9d, 0xdf, 0x15, 0xdb, 0x52, 0x0e, 0x88, 0x6b, 0xce, 0x8f, 0x7e, 0xac, 0x68, 0xed, 0x72,
- 0x45, 0xe1, 0x6a, 0x45, 0xe1, 0xd7, 0x8a, 0x42, 0x69, 0x29, 0x5c, 0x58, 0x0a, 0xdf, 0x2c, 0x85,
- 0xef, 0x96, 0xc2, 0xc2, 0x52, 0x58, 0x5a, 0x0a, 0x97, 0x96, 0xc2, 0x9f, 0x00, 0x00, 0x00, 0xff,
- 0xff, 0x71, 0x9d, 0xd3, 0x01, 0x3f, 0x02, 0x00, 0x00,
- }
|