1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
|
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/firestore/v1/query.proto
package firestore // import "google.golang.org/genproto/googleapis/firestore/v1"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import wrappers "github.com/golang/protobuf/ptypes/wrappers"
import _ "google.golang.org/genproto/googleapis/api/annotations"
// 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.ProtoPackageIsVersion2 // please upgrade the proto package
// A sort direction.
type StructuredQuery_Direction int32
const (
// Unspecified.
StructuredQuery_DIRECTION_UNSPECIFIED StructuredQuery_Direction = 0
// Ascending.
StructuredQuery_ASCENDING StructuredQuery_Direction = 1
// Descending.
StructuredQuery_DESCENDING StructuredQuery_Direction = 2
)
var StructuredQuery_Direction_name = map[int32]string{
0: "DIRECTION_UNSPECIFIED",
1: "ASCENDING",
2: "DESCENDING",
}
var StructuredQuery_Direction_value = map[string]int32{
"DIRECTION_UNSPECIFIED": 0,
"ASCENDING": 1,
"DESCENDING": 2,
}
func (x StructuredQuery_Direction) String() string {
return proto.EnumName(StructuredQuery_Direction_name, int32(x))
}
func (StructuredQuery_Direction) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{0, 0}
}
// A composite filter operator.
type StructuredQuery_CompositeFilter_Operator int32
const (
// Unspecified. This value must not be used.
StructuredQuery_CompositeFilter_OPERATOR_UNSPECIFIED StructuredQuery_CompositeFilter_Operator = 0
// The results are required to satisfy each of the combined filters.
StructuredQuery_CompositeFilter_AND StructuredQuery_CompositeFilter_Operator = 1
)
var StructuredQuery_CompositeFilter_Operator_name = map[int32]string{
0: "OPERATOR_UNSPECIFIED",
1: "AND",
}
var StructuredQuery_CompositeFilter_Operator_value = map[string]int32{
"OPERATOR_UNSPECIFIED": 0,
"AND": 1,
}
func (x StructuredQuery_CompositeFilter_Operator) String() string {
return proto.EnumName(StructuredQuery_CompositeFilter_Operator_name, int32(x))
}
func (StructuredQuery_CompositeFilter_Operator) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{0, 2, 0}
}
// A field filter operator.
type StructuredQuery_FieldFilter_Operator int32
const (
// Unspecified. This value must not be used.
StructuredQuery_FieldFilter_OPERATOR_UNSPECIFIED StructuredQuery_FieldFilter_Operator = 0
// Less than. Requires that the field come first in `order_by`.
StructuredQuery_FieldFilter_LESS_THAN StructuredQuery_FieldFilter_Operator = 1
// Less than or equal. Requires that the field come first in `order_by`.
StructuredQuery_FieldFilter_LESS_THAN_OR_EQUAL StructuredQuery_FieldFilter_Operator = 2
// Greater than. Requires that the field come first in `order_by`.
StructuredQuery_FieldFilter_GREATER_THAN StructuredQuery_FieldFilter_Operator = 3
// Greater than or equal. Requires that the field come first in
// `order_by`.
StructuredQuery_FieldFilter_GREATER_THAN_OR_EQUAL StructuredQuery_FieldFilter_Operator = 4
// Equal.
StructuredQuery_FieldFilter_EQUAL StructuredQuery_FieldFilter_Operator = 5
// Contains. Requires that the field is an array.
StructuredQuery_FieldFilter_ARRAY_CONTAINS StructuredQuery_FieldFilter_Operator = 7
)
var StructuredQuery_FieldFilter_Operator_name = map[int32]string{
0: "OPERATOR_UNSPECIFIED",
1: "LESS_THAN",
2: "LESS_THAN_OR_EQUAL",
3: "GREATER_THAN",
4: "GREATER_THAN_OR_EQUAL",
5: "EQUAL",
7: "ARRAY_CONTAINS",
}
var StructuredQuery_FieldFilter_Operator_value = map[string]int32{
"OPERATOR_UNSPECIFIED": 0,
"LESS_THAN": 1,
"LESS_THAN_OR_EQUAL": 2,
"GREATER_THAN": 3,
"GREATER_THAN_OR_EQUAL": 4,
"EQUAL": 5,
"ARRAY_CONTAINS": 7,
}
func (x StructuredQuery_FieldFilter_Operator) String() string {
return proto.EnumName(StructuredQuery_FieldFilter_Operator_name, int32(x))
}
func (StructuredQuery_FieldFilter_Operator) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{0, 3, 0}
}
// A unary operator.
type StructuredQuery_UnaryFilter_Operator int32
const (
// Unspecified. This value must not be used.
StructuredQuery_UnaryFilter_OPERATOR_UNSPECIFIED StructuredQuery_UnaryFilter_Operator = 0
// Test if a field is equal to NaN.
StructuredQuery_UnaryFilter_IS_NAN StructuredQuery_UnaryFilter_Operator = 2
// Test if an exprestion evaluates to Null.
StructuredQuery_UnaryFilter_IS_NULL StructuredQuery_UnaryFilter_Operator = 3
)
var StructuredQuery_UnaryFilter_Operator_name = map[int32]string{
0: "OPERATOR_UNSPECIFIED",
2: "IS_NAN",
3: "IS_NULL",
}
var StructuredQuery_UnaryFilter_Operator_value = map[string]int32{
"OPERATOR_UNSPECIFIED": 0,
"IS_NAN": 2,
"IS_NULL": 3,
}
func (x StructuredQuery_UnaryFilter_Operator) String() string {
return proto.EnumName(StructuredQuery_UnaryFilter_Operator_name, int32(x))
}
func (StructuredQuery_UnaryFilter_Operator) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{0, 4, 0}
}
// A Firestore query.
type StructuredQuery struct {
// The projection to return.
Select *StructuredQuery_Projection `protobuf:"bytes,1,opt,name=select,proto3" json:"select,omitempty"`
// The collections to query.
From []*StructuredQuery_CollectionSelector `protobuf:"bytes,2,rep,name=from,proto3" json:"from,omitempty"`
// The filter to apply.
Where *StructuredQuery_Filter `protobuf:"bytes,3,opt,name=where,proto3" json:"where,omitempty"`
// The order to apply to the query results.
//
// Firestore guarantees a stable ordering through the following rules:
//
// * Any field required to appear in `order_by`, that is not already
// specified in `order_by`, is appended to the order in field name order
// by default.
// * If an order on `__name__` is not specified, it is appended by default.
//
// Fields are appended with the same sort direction as the last order
// specified, or 'ASCENDING' if no order was specified. For example:
//
// * `SELECT * FROM Foo ORDER BY A` becomes
// `SELECT * FROM Foo ORDER BY A, __name__`
// * `SELECT * FROM Foo ORDER BY A DESC` becomes
// `SELECT * FROM Foo ORDER BY A DESC, __name__ DESC`
// * `SELECT * FROM Foo WHERE A > 1` becomes
// `SELECT * FROM Foo WHERE A > 1 ORDER BY A, __name__`
OrderBy []*StructuredQuery_Order `protobuf:"bytes,4,rep,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"`
// A starting point for the query results.
StartAt *Cursor `protobuf:"bytes,7,opt,name=start_at,json=startAt,proto3" json:"start_at,omitempty"`
// A end point for the query results.
EndAt *Cursor `protobuf:"bytes,8,opt,name=end_at,json=endAt,proto3" json:"end_at,omitempty"`
// The number of results to skip.
//
// Applies before limit, but after all other constraints. Must be >= 0 if
// specified.
Offset int32 `protobuf:"varint,6,opt,name=offset,proto3" json:"offset,omitempty"`
// The maximum number of results to return.
//
// Applies after all other constraints.
// Must be >= 0 if specified.
Limit *wrappers.Int32Value `protobuf:"bytes,5,opt,name=limit,proto3" json:"limit,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StructuredQuery) Reset() { *m = StructuredQuery{} }
func (m *StructuredQuery) String() string { return proto.CompactTextString(m) }
func (*StructuredQuery) ProtoMessage() {}
func (*StructuredQuery) Descriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{0}
}
func (m *StructuredQuery) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StructuredQuery.Unmarshal(m, b)
}
func (m *StructuredQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StructuredQuery.Marshal(b, m, deterministic)
}
func (dst *StructuredQuery) XXX_Merge(src proto.Message) {
xxx_messageInfo_StructuredQuery.Merge(dst, src)
}
func (m *StructuredQuery) XXX_Size() int {
return xxx_messageInfo_StructuredQuery.Size(m)
}
func (m *StructuredQuery) XXX_DiscardUnknown() {
xxx_messageInfo_StructuredQuery.DiscardUnknown(m)
}
var xxx_messageInfo_StructuredQuery proto.InternalMessageInfo
func (m *StructuredQuery) GetSelect() *StructuredQuery_Projection {
if m != nil {
return m.Select
}
return nil
}
func (m *StructuredQuery) GetFrom() []*StructuredQuery_CollectionSelector {
if m != nil {
return m.From
}
return nil
}
func (m *StructuredQuery) GetWhere() *StructuredQuery_Filter {
if m != nil {
return m.Where
}
return nil
}
func (m *StructuredQuery) GetOrderBy() []*StructuredQuery_Order {
if m != nil {
return m.OrderBy
}
return nil
}
func (m *StructuredQuery) GetStartAt() *Cursor {
if m != nil {
return m.StartAt
}
return nil
}
func (m *StructuredQuery) GetEndAt() *Cursor {
if m != nil {
return m.EndAt
}
return nil
}
func (m *StructuredQuery) GetOffset() int32 {
if m != nil {
return m.Offset
}
return 0
}
func (m *StructuredQuery) GetLimit() *wrappers.Int32Value {
if m != nil {
return m.Limit
}
return nil
}
// A selection of a collection, such as `messages as m1`.
type StructuredQuery_CollectionSelector struct {
// The collection ID.
// When set, selects only collections with this ID.
CollectionId string `protobuf:"bytes,2,opt,name=collection_id,json=collectionId,proto3" json:"collection_id,omitempty"`
// When false, selects only collections that are immediate children of
// the `parent` specified in the containing `RunQueryRequest`.
// When true, selects all descendant collections.
AllDescendants bool `protobuf:"varint,3,opt,name=all_descendants,json=allDescendants,proto3" json:"all_descendants,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StructuredQuery_CollectionSelector) Reset() { *m = StructuredQuery_CollectionSelector{} }
func (m *StructuredQuery_CollectionSelector) String() string { return proto.CompactTextString(m) }
func (*StructuredQuery_CollectionSelector) ProtoMessage() {}
func (*StructuredQuery_CollectionSelector) Descriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{0, 0}
}
func (m *StructuredQuery_CollectionSelector) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StructuredQuery_CollectionSelector.Unmarshal(m, b)
}
func (m *StructuredQuery_CollectionSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StructuredQuery_CollectionSelector.Marshal(b, m, deterministic)
}
func (dst *StructuredQuery_CollectionSelector) XXX_Merge(src proto.Message) {
xxx_messageInfo_StructuredQuery_CollectionSelector.Merge(dst, src)
}
func (m *StructuredQuery_CollectionSelector) XXX_Size() int {
return xxx_messageInfo_StructuredQuery_CollectionSelector.Size(m)
}
func (m *StructuredQuery_CollectionSelector) XXX_DiscardUnknown() {
xxx_messageInfo_StructuredQuery_CollectionSelector.DiscardUnknown(m)
}
var xxx_messageInfo_StructuredQuery_CollectionSelector proto.InternalMessageInfo
func (m *StructuredQuery_CollectionSelector) GetCollectionId() string {
if m != nil {
return m.CollectionId
}
return ""
}
func (m *StructuredQuery_CollectionSelector) GetAllDescendants() bool {
if m != nil {
return m.AllDescendants
}
return false
}
// A filter.
type StructuredQuery_Filter struct {
// The type of filter.
//
// Types that are valid to be assigned to FilterType:
// *StructuredQuery_Filter_CompositeFilter
// *StructuredQuery_Filter_FieldFilter
// *StructuredQuery_Filter_UnaryFilter
FilterType isStructuredQuery_Filter_FilterType `protobuf_oneof:"filter_type"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StructuredQuery_Filter) Reset() { *m = StructuredQuery_Filter{} }
func (m *StructuredQuery_Filter) String() string { return proto.CompactTextString(m) }
func (*StructuredQuery_Filter) ProtoMessage() {}
func (*StructuredQuery_Filter) Descriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{0, 1}
}
func (m *StructuredQuery_Filter) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StructuredQuery_Filter.Unmarshal(m, b)
}
func (m *StructuredQuery_Filter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StructuredQuery_Filter.Marshal(b, m, deterministic)
}
func (dst *StructuredQuery_Filter) XXX_Merge(src proto.Message) {
xxx_messageInfo_StructuredQuery_Filter.Merge(dst, src)
}
func (m *StructuredQuery_Filter) XXX_Size() int {
return xxx_messageInfo_StructuredQuery_Filter.Size(m)
}
func (m *StructuredQuery_Filter) XXX_DiscardUnknown() {
xxx_messageInfo_StructuredQuery_Filter.DiscardUnknown(m)
}
var xxx_messageInfo_StructuredQuery_Filter proto.InternalMessageInfo
type isStructuredQuery_Filter_FilterType interface {
isStructuredQuery_Filter_FilterType()
}
type StructuredQuery_Filter_CompositeFilter struct {
CompositeFilter *StructuredQuery_CompositeFilter `protobuf:"bytes,1,opt,name=composite_filter,json=compositeFilter,proto3,oneof"`
}
type StructuredQuery_Filter_FieldFilter struct {
FieldFilter *StructuredQuery_FieldFilter `protobuf:"bytes,2,opt,name=field_filter,json=fieldFilter,proto3,oneof"`
}
type StructuredQuery_Filter_UnaryFilter struct {
UnaryFilter *StructuredQuery_UnaryFilter `protobuf:"bytes,3,opt,name=unary_filter,json=unaryFilter,proto3,oneof"`
}
func (*StructuredQuery_Filter_CompositeFilter) isStructuredQuery_Filter_FilterType() {}
func (*StructuredQuery_Filter_FieldFilter) isStructuredQuery_Filter_FilterType() {}
func (*StructuredQuery_Filter_UnaryFilter) isStructuredQuery_Filter_FilterType() {}
func (m *StructuredQuery_Filter) GetFilterType() isStructuredQuery_Filter_FilterType {
if m != nil {
return m.FilterType
}
return nil
}
func (m *StructuredQuery_Filter) GetCompositeFilter() *StructuredQuery_CompositeFilter {
if x, ok := m.GetFilterType().(*StructuredQuery_Filter_CompositeFilter); ok {
return x.CompositeFilter
}
return nil
}
func (m *StructuredQuery_Filter) GetFieldFilter() *StructuredQuery_FieldFilter {
if x, ok := m.GetFilterType().(*StructuredQuery_Filter_FieldFilter); ok {
return x.FieldFilter
}
return nil
}
func (m *StructuredQuery_Filter) GetUnaryFilter() *StructuredQuery_UnaryFilter {
if x, ok := m.GetFilterType().(*StructuredQuery_Filter_UnaryFilter); ok {
return x.UnaryFilter
}
return nil
}
// XXX_OneofFuncs is for the internal use of the proto package.
func (*StructuredQuery_Filter) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
return _StructuredQuery_Filter_OneofMarshaler, _StructuredQuery_Filter_OneofUnmarshaler, _StructuredQuery_Filter_OneofSizer, []interface{}{
(*StructuredQuery_Filter_CompositeFilter)(nil),
(*StructuredQuery_Filter_FieldFilter)(nil),
(*StructuredQuery_Filter_UnaryFilter)(nil),
}
}
func _StructuredQuery_Filter_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*StructuredQuery_Filter)
// filter_type
switch x := m.FilterType.(type) {
case *StructuredQuery_Filter_CompositeFilter:
b.EncodeVarint(1<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.CompositeFilter); err != nil {
return err
}
case *StructuredQuery_Filter_FieldFilter:
b.EncodeVarint(2<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.FieldFilter); err != nil {
return err
}
case *StructuredQuery_Filter_UnaryFilter:
b.EncodeVarint(3<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.UnaryFilter); err != nil {
return err
}
case nil:
default:
return fmt.Errorf("StructuredQuery_Filter.FilterType has unexpected type %T", x)
}
return nil
}
func _StructuredQuery_Filter_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*StructuredQuery_Filter)
switch tag {
case 1: // filter_type.composite_filter
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(StructuredQuery_CompositeFilter)
err := b.DecodeMessage(msg)
m.FilterType = &StructuredQuery_Filter_CompositeFilter{msg}
return true, err
case 2: // filter_type.field_filter
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(StructuredQuery_FieldFilter)
err := b.DecodeMessage(msg)
m.FilterType = &StructuredQuery_Filter_FieldFilter{msg}
return true, err
case 3: // filter_type.unary_filter
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(StructuredQuery_UnaryFilter)
err := b.DecodeMessage(msg)
m.FilterType = &StructuredQuery_Filter_UnaryFilter{msg}
return true, err
default:
return false, nil
}
}
func _StructuredQuery_Filter_OneofSizer(msg proto.Message) (n int) {
m := msg.(*StructuredQuery_Filter)
// filter_type
switch x := m.FilterType.(type) {
case *StructuredQuery_Filter_CompositeFilter:
s := proto.Size(x.CompositeFilter)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *StructuredQuery_Filter_FieldFilter:
s := proto.Size(x.FieldFilter)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *StructuredQuery_Filter_UnaryFilter:
s := proto.Size(x.UnaryFilter)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
}
// A filter that merges multiple other filters using the given operator.
type StructuredQuery_CompositeFilter struct {
// The operator for combining multiple filters.
Op StructuredQuery_CompositeFilter_Operator `protobuf:"varint,1,opt,name=op,proto3,enum=google.firestore.v1.StructuredQuery_CompositeFilter_Operator" json:"op,omitempty"`
// The list of filters to combine.
// Must contain at least one filter.
Filters []*StructuredQuery_Filter `protobuf:"bytes,2,rep,name=filters,proto3" json:"filters,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StructuredQuery_CompositeFilter) Reset() { *m = StructuredQuery_CompositeFilter{} }
func (m *StructuredQuery_CompositeFilter) String() string { return proto.CompactTextString(m) }
func (*StructuredQuery_CompositeFilter) ProtoMessage() {}
func (*StructuredQuery_CompositeFilter) Descriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{0, 2}
}
func (m *StructuredQuery_CompositeFilter) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StructuredQuery_CompositeFilter.Unmarshal(m, b)
}
func (m *StructuredQuery_CompositeFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StructuredQuery_CompositeFilter.Marshal(b, m, deterministic)
}
func (dst *StructuredQuery_CompositeFilter) XXX_Merge(src proto.Message) {
xxx_messageInfo_StructuredQuery_CompositeFilter.Merge(dst, src)
}
func (m *StructuredQuery_CompositeFilter) XXX_Size() int {
return xxx_messageInfo_StructuredQuery_CompositeFilter.Size(m)
}
func (m *StructuredQuery_CompositeFilter) XXX_DiscardUnknown() {
xxx_messageInfo_StructuredQuery_CompositeFilter.DiscardUnknown(m)
}
var xxx_messageInfo_StructuredQuery_CompositeFilter proto.InternalMessageInfo
func (m *StructuredQuery_CompositeFilter) GetOp() StructuredQuery_CompositeFilter_Operator {
if m != nil {
return m.Op
}
return StructuredQuery_CompositeFilter_OPERATOR_UNSPECIFIED
}
func (m *StructuredQuery_CompositeFilter) GetFilters() []*StructuredQuery_Filter {
if m != nil {
return m.Filters
}
return nil
}
// A filter on a specific field.
type StructuredQuery_FieldFilter struct {
// The field to filter by.
Field *StructuredQuery_FieldReference `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
// The operator to filter by.
Op StructuredQuery_FieldFilter_Operator `protobuf:"varint,2,opt,name=op,proto3,enum=google.firestore.v1.StructuredQuery_FieldFilter_Operator" json:"op,omitempty"`
// The value to compare to.
Value *Value `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StructuredQuery_FieldFilter) Reset() { *m = StructuredQuery_FieldFilter{} }
func (m *StructuredQuery_FieldFilter) String() string { return proto.CompactTextString(m) }
func (*StructuredQuery_FieldFilter) ProtoMessage() {}
func (*StructuredQuery_FieldFilter) Descriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{0, 3}
}
func (m *StructuredQuery_FieldFilter) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StructuredQuery_FieldFilter.Unmarshal(m, b)
}
func (m *StructuredQuery_FieldFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StructuredQuery_FieldFilter.Marshal(b, m, deterministic)
}
func (dst *StructuredQuery_FieldFilter) XXX_Merge(src proto.Message) {
xxx_messageInfo_StructuredQuery_FieldFilter.Merge(dst, src)
}
func (m *StructuredQuery_FieldFilter) XXX_Size() int {
return xxx_messageInfo_StructuredQuery_FieldFilter.Size(m)
}
func (m *StructuredQuery_FieldFilter) XXX_DiscardUnknown() {
xxx_messageInfo_StructuredQuery_FieldFilter.DiscardUnknown(m)
}
var xxx_messageInfo_StructuredQuery_FieldFilter proto.InternalMessageInfo
func (m *StructuredQuery_FieldFilter) GetField() *StructuredQuery_FieldReference {
if m != nil {
return m.Field
}
return nil
}
func (m *StructuredQuery_FieldFilter) GetOp() StructuredQuery_FieldFilter_Operator {
if m != nil {
return m.Op
}
return StructuredQuery_FieldFilter_OPERATOR_UNSPECIFIED
}
func (m *StructuredQuery_FieldFilter) GetValue() *Value {
if m != nil {
return m.Value
}
return nil
}
// A filter with a single operand.
type StructuredQuery_UnaryFilter struct {
// The unary operator to apply.
Op StructuredQuery_UnaryFilter_Operator `protobuf:"varint,1,opt,name=op,proto3,enum=google.firestore.v1.StructuredQuery_UnaryFilter_Operator" json:"op,omitempty"`
// The argument to the filter.
//
// Types that are valid to be assigned to OperandType:
// *StructuredQuery_UnaryFilter_Field
OperandType isStructuredQuery_UnaryFilter_OperandType `protobuf_oneof:"operand_type"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StructuredQuery_UnaryFilter) Reset() { *m = StructuredQuery_UnaryFilter{} }
func (m *StructuredQuery_UnaryFilter) String() string { return proto.CompactTextString(m) }
func (*StructuredQuery_UnaryFilter) ProtoMessage() {}
func (*StructuredQuery_UnaryFilter) Descriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{0, 4}
}
func (m *StructuredQuery_UnaryFilter) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StructuredQuery_UnaryFilter.Unmarshal(m, b)
}
func (m *StructuredQuery_UnaryFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StructuredQuery_UnaryFilter.Marshal(b, m, deterministic)
}
func (dst *StructuredQuery_UnaryFilter) XXX_Merge(src proto.Message) {
xxx_messageInfo_StructuredQuery_UnaryFilter.Merge(dst, src)
}
func (m *StructuredQuery_UnaryFilter) XXX_Size() int {
return xxx_messageInfo_StructuredQuery_UnaryFilter.Size(m)
}
func (m *StructuredQuery_UnaryFilter) XXX_DiscardUnknown() {
xxx_messageInfo_StructuredQuery_UnaryFilter.DiscardUnknown(m)
}
var xxx_messageInfo_StructuredQuery_UnaryFilter proto.InternalMessageInfo
func (m *StructuredQuery_UnaryFilter) GetOp() StructuredQuery_UnaryFilter_Operator {
if m != nil {
return m.Op
}
return StructuredQuery_UnaryFilter_OPERATOR_UNSPECIFIED
}
type isStructuredQuery_UnaryFilter_OperandType interface {
isStructuredQuery_UnaryFilter_OperandType()
}
type StructuredQuery_UnaryFilter_Field struct {
Field *StructuredQuery_FieldReference `protobuf:"bytes,2,opt,name=field,proto3,oneof"`
}
func (*StructuredQuery_UnaryFilter_Field) isStructuredQuery_UnaryFilter_OperandType() {}
func (m *StructuredQuery_UnaryFilter) GetOperandType() isStructuredQuery_UnaryFilter_OperandType {
if m != nil {
return m.OperandType
}
return nil
}
func (m *StructuredQuery_UnaryFilter) GetField() *StructuredQuery_FieldReference {
if x, ok := m.GetOperandType().(*StructuredQuery_UnaryFilter_Field); ok {
return x.Field
}
return nil
}
// XXX_OneofFuncs is for the internal use of the proto package.
func (*StructuredQuery_UnaryFilter) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
return _StructuredQuery_UnaryFilter_OneofMarshaler, _StructuredQuery_UnaryFilter_OneofUnmarshaler, _StructuredQuery_UnaryFilter_OneofSizer, []interface{}{
(*StructuredQuery_UnaryFilter_Field)(nil),
}
}
func _StructuredQuery_UnaryFilter_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*StructuredQuery_UnaryFilter)
// operand_type
switch x := m.OperandType.(type) {
case *StructuredQuery_UnaryFilter_Field:
b.EncodeVarint(2<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Field); err != nil {
return err
}
case nil:
default:
return fmt.Errorf("StructuredQuery_UnaryFilter.OperandType has unexpected type %T", x)
}
return nil
}
func _StructuredQuery_UnaryFilter_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*StructuredQuery_UnaryFilter)
switch tag {
case 2: // operand_type.field
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(StructuredQuery_FieldReference)
err := b.DecodeMessage(msg)
m.OperandType = &StructuredQuery_UnaryFilter_Field{msg}
return true, err
default:
return false, nil
}
}
func _StructuredQuery_UnaryFilter_OneofSizer(msg proto.Message) (n int) {
m := msg.(*StructuredQuery_UnaryFilter)
// operand_type
switch x := m.OperandType.(type) {
case *StructuredQuery_UnaryFilter_Field:
s := proto.Size(x.Field)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
}
// An order on a field.
type StructuredQuery_Order struct {
// The field to order by.
Field *StructuredQuery_FieldReference `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
// The direction to order by. Defaults to `ASCENDING`.
Direction StructuredQuery_Direction `protobuf:"varint,2,opt,name=direction,proto3,enum=google.firestore.v1.StructuredQuery_Direction" json:"direction,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StructuredQuery_Order) Reset() { *m = StructuredQuery_Order{} }
func (m *StructuredQuery_Order) String() string { return proto.CompactTextString(m) }
func (*StructuredQuery_Order) ProtoMessage() {}
func (*StructuredQuery_Order) Descriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{0, 5}
}
func (m *StructuredQuery_Order) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StructuredQuery_Order.Unmarshal(m, b)
}
func (m *StructuredQuery_Order) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StructuredQuery_Order.Marshal(b, m, deterministic)
}
func (dst *StructuredQuery_Order) XXX_Merge(src proto.Message) {
xxx_messageInfo_StructuredQuery_Order.Merge(dst, src)
}
func (m *StructuredQuery_Order) XXX_Size() int {
return xxx_messageInfo_StructuredQuery_Order.Size(m)
}
func (m *StructuredQuery_Order) XXX_DiscardUnknown() {
xxx_messageInfo_StructuredQuery_Order.DiscardUnknown(m)
}
var xxx_messageInfo_StructuredQuery_Order proto.InternalMessageInfo
func (m *StructuredQuery_Order) GetField() *StructuredQuery_FieldReference {
if m != nil {
return m.Field
}
return nil
}
func (m *StructuredQuery_Order) GetDirection() StructuredQuery_Direction {
if m != nil {
return m.Direction
}
return StructuredQuery_DIRECTION_UNSPECIFIED
}
// A reference to a field, such as `max(messages.time) as max_time`.
type StructuredQuery_FieldReference struct {
FieldPath string `protobuf:"bytes,2,opt,name=field_path,json=fieldPath,proto3" json:"field_path,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StructuredQuery_FieldReference) Reset() { *m = StructuredQuery_FieldReference{} }
func (m *StructuredQuery_FieldReference) String() string { return proto.CompactTextString(m) }
func (*StructuredQuery_FieldReference) ProtoMessage() {}
func (*StructuredQuery_FieldReference) Descriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{0, 6}
}
func (m *StructuredQuery_FieldReference) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StructuredQuery_FieldReference.Unmarshal(m, b)
}
func (m *StructuredQuery_FieldReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StructuredQuery_FieldReference.Marshal(b, m, deterministic)
}
func (dst *StructuredQuery_FieldReference) XXX_Merge(src proto.Message) {
xxx_messageInfo_StructuredQuery_FieldReference.Merge(dst, src)
}
func (m *StructuredQuery_FieldReference) XXX_Size() int {
return xxx_messageInfo_StructuredQuery_FieldReference.Size(m)
}
func (m *StructuredQuery_FieldReference) XXX_DiscardUnknown() {
xxx_messageInfo_StructuredQuery_FieldReference.DiscardUnknown(m)
}
var xxx_messageInfo_StructuredQuery_FieldReference proto.InternalMessageInfo
func (m *StructuredQuery_FieldReference) GetFieldPath() string {
if m != nil {
return m.FieldPath
}
return ""
}
// The projection of document's fields to return.
type StructuredQuery_Projection struct {
// The fields to return.
//
// If empty, all fields are returned. To only return the name
// of the document, use `['__name__']`.
Fields []*StructuredQuery_FieldReference `protobuf:"bytes,2,rep,name=fields,proto3" json:"fields,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StructuredQuery_Projection) Reset() { *m = StructuredQuery_Projection{} }
func (m *StructuredQuery_Projection) String() string { return proto.CompactTextString(m) }
func (*StructuredQuery_Projection) ProtoMessage() {}
func (*StructuredQuery_Projection) Descriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{0, 7}
}
func (m *StructuredQuery_Projection) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StructuredQuery_Projection.Unmarshal(m, b)
}
func (m *StructuredQuery_Projection) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StructuredQuery_Projection.Marshal(b, m, deterministic)
}
func (dst *StructuredQuery_Projection) XXX_Merge(src proto.Message) {
xxx_messageInfo_StructuredQuery_Projection.Merge(dst, src)
}
func (m *StructuredQuery_Projection) XXX_Size() int {
return xxx_messageInfo_StructuredQuery_Projection.Size(m)
}
func (m *StructuredQuery_Projection) XXX_DiscardUnknown() {
xxx_messageInfo_StructuredQuery_Projection.DiscardUnknown(m)
}
var xxx_messageInfo_StructuredQuery_Projection proto.InternalMessageInfo
func (m *StructuredQuery_Projection) GetFields() []*StructuredQuery_FieldReference {
if m != nil {
return m.Fields
}
return nil
}
// A position in a query result set.
type Cursor struct {
// The values that represent a position, in the order they appear in
// the order by clause of a query.
//
// Can contain fewer values than specified in the order by clause.
Values []*Value `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
// If the position is just before or just after the given values, relative
// to the sort order defined by the query.
Before bool `protobuf:"varint,2,opt,name=before,proto3" json:"before,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Cursor) Reset() { *m = Cursor{} }
func (m *Cursor) String() string { return proto.CompactTextString(m) }
func (*Cursor) ProtoMessage() {}
func (*Cursor) Descriptor() ([]byte, []int) {
return fileDescriptor_query_3e898438c0f3b928, []int{1}
}
func (m *Cursor) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Cursor.Unmarshal(m, b)
}
func (m *Cursor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Cursor.Marshal(b, m, deterministic)
}
func (dst *Cursor) XXX_Merge(src proto.Message) {
xxx_messageInfo_Cursor.Merge(dst, src)
}
func (m *Cursor) XXX_Size() int {
return xxx_messageInfo_Cursor.Size(m)
}
func (m *Cursor) XXX_DiscardUnknown() {
xxx_messageInfo_Cursor.DiscardUnknown(m)
}
var xxx_messageInfo_Cursor proto.InternalMessageInfo
func (m *Cursor) GetValues() []*Value {
if m != nil {
return m.Values
}
return nil
}
func (m *Cursor) GetBefore() bool {
if m != nil {
return m.Before
}
return false
}
func init() {
proto.RegisterType((*StructuredQuery)(nil), "google.firestore.v1.StructuredQuery")
proto.RegisterType((*StructuredQuery_CollectionSelector)(nil), "google.firestore.v1.StructuredQuery.CollectionSelector")
proto.RegisterType((*StructuredQuery_Filter)(nil), "google.firestore.v1.StructuredQuery.Filter")
proto.RegisterType((*StructuredQuery_CompositeFilter)(nil), "google.firestore.v1.StructuredQuery.CompositeFilter")
proto.RegisterType((*StructuredQuery_FieldFilter)(nil), "google.firestore.v1.StructuredQuery.FieldFilter")
proto.RegisterType((*StructuredQuery_UnaryFilter)(nil), "google.firestore.v1.StructuredQuery.UnaryFilter")
proto.RegisterType((*StructuredQuery_Order)(nil), "google.firestore.v1.StructuredQuery.Order")
proto.RegisterType((*StructuredQuery_FieldReference)(nil), "google.firestore.v1.StructuredQuery.FieldReference")
proto.RegisterType((*StructuredQuery_Projection)(nil), "google.firestore.v1.StructuredQuery.Projection")
proto.RegisterType((*Cursor)(nil), "google.firestore.v1.Cursor")
proto.RegisterEnum("google.firestore.v1.StructuredQuery_Direction", StructuredQuery_Direction_name, StructuredQuery_Direction_value)
proto.RegisterEnum("google.firestore.v1.StructuredQuery_CompositeFilter_Operator", StructuredQuery_CompositeFilter_Operator_name, StructuredQuery_CompositeFilter_Operator_value)
proto.RegisterEnum("google.firestore.v1.StructuredQuery_FieldFilter_Operator", StructuredQuery_FieldFilter_Operator_name, StructuredQuery_FieldFilter_Operator_value)
proto.RegisterEnum("google.firestore.v1.StructuredQuery_UnaryFilter_Operator", StructuredQuery_UnaryFilter_Operator_name, StructuredQuery_UnaryFilter_Operator_value)
}
func init() {
proto.RegisterFile("google/firestore/v1/query.proto", fileDescriptor_query_3e898438c0f3b928)
}
var fileDescriptor_query_3e898438c0f3b928 = []byte{
// 977 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xdf, 0x6e, 0xe3, 0xc4,
0x17, 0xae, 0x9d, 0xe6, 0xdf, 0x49, 0x9b, 0x5a, 0xf3, 0xfb, 0xb1, 0x64, 0xcd, 0xbf, 0x2a, 0x5c,
0x50, 0x81, 0x70, 0xb6, 0x2d, 0x02, 0x21, 0xd8, 0x0b, 0x37, 0x71, 0x5b, 0xab, 0xc5, 0xc9, 0x4e,
0xd2, 0x4a, 0x8b, 0x2a, 0x59, 0xae, 0x3d, 0x4e, 0x8d, 0x5c, 0x8f, 0x19, 0x8f, 0xbb, 0xea, 0x93,
0x70, 0x8b, 0x10, 0x17, 0x88, 0x1b, 0xde, 0x83, 0x07, 0xe0, 0x35, 0xb8, 0xe1, 0x01, 0x90, 0xc7,
0x93, 0xa4, 0xd9, 0xad, 0x20, 0xad, 0xb8, 0xf3, 0x39, 0x73, 0xbe, 0x6f, 0xce, 0x7c, 0xe7, 0x9c,
0x19, 0xc3, 0x07, 0x53, 0x4a, 0xa7, 0x31, 0xe9, 0x85, 0x11, 0x23, 0x19, 0xa7, 0x8c, 0xf4, 0x6e,
0x76, 0x7b, 0xdf, 0xe7, 0x84, 0xdd, 0x1a, 0x29, 0xa3, 0x9c, 0xa2, 0xff, 0x95, 0x01, 0xc6, 0x3c,
0xc0, 0xb8, 0xd9, 0xd5, 0xdf, 0x95, 0x28, 0x2f, 0x8d, 0x7a, 0x5e, 0x92, 0x50, 0xee, 0xf1, 0x88,
0x26, 0x59, 0x09, 0xd1, 0xbb, 0xf7, 0x71, 0x06, 0xd4, 0xcf, 0xaf, 0x49, 0xc2, 0x65, 0xcc, 0xfb,
0x32, 0x46, 0x58, 0x97, 0x79, 0xd8, 0x7b, 0xc5, 0xbc, 0x34, 0x25, 0x4c, 0x72, 0x74, 0x7f, 0xd3,
0x60, 0x6b, 0xcc, 0x59, 0xee, 0xf3, 0x9c, 0x91, 0xe0, 0x45, 0x91, 0x10, 0x3a, 0x82, 0x5a, 0x46,
0x62, 0xe2, 0xf3, 0x8e, 0xb2, 0xad, 0xec, 0xb4, 0xf6, 0x7a, 0xc6, 0x3d, 0xb9, 0x19, 0xaf, 0xa1,
0x8c, 0x11, 0xa3, 0xdf, 0x11, 0xbf, 0xc8, 0x0f, 0x4b, 0x38, 0x3a, 0x81, 0xf5, 0x90, 0xd1, 0xeb,
0x8e, 0xba, 0x5d, 0xd9, 0x69, 0xed, 0x7d, 0xb1, 0x12, 0x4d, 0x9f, 0xc6, 0x71, 0x49, 0x33, 0x16,
0x24, 0x94, 0x61, 0x41, 0x82, 0x4c, 0xa8, 0xbe, 0xba, 0x22, 0x8c, 0x74, 0x2a, 0x22, 0xa9, 0x4f,
0x56, 0x62, 0x3b, 0x8c, 0x62, 0x4e, 0x18, 0x2e, 0x91, 0xc8, 0x82, 0x06, 0x65, 0x01, 0x61, 0xee,
0xe5, 0x6d, 0x67, 0x5d, 0xe4, 0xf4, 0xf1, 0x4a, 0x2c, 0xc3, 0x02, 0x84, 0xeb, 0x02, 0x7b, 0x70,
0x8b, 0x3e, 0x87, 0x46, 0xc6, 0x3d, 0xc6, 0x5d, 0x8f, 0x77, 0xea, 0x22, 0x99, 0x77, 0xee, 0xa5,
0xe9, 0xe7, 0x2c, 0xa3, 0x0c, 0xd7, 0x45, 0xb0, 0xc9, 0xd1, 0x1e, 0xd4, 0x48, 0x12, 0x14, 0xa8,
0xc6, 0xbf, 0xa3, 0xaa, 0x24, 0x09, 0x4c, 0x8e, 0x9e, 0x40, 0x8d, 0x86, 0x61, 0x46, 0x78, 0xa7,
0xb6, 0xad, 0xec, 0x54, 0xb1, 0xb4, 0xd0, 0x2e, 0x54, 0xe3, 0xe8, 0x3a, 0xe2, 0x9d, 0xea, 0x32,
0xd5, 0xac, 0xce, 0x86, 0x9d, 0xf0, 0xfd, 0xbd, 0x73, 0x2f, 0xce, 0x09, 0x2e, 0x23, 0xf5, 0x4b,
0x40, 0x6f, 0x8a, 0x8b, 0x3e, 0x84, 0x4d, 0x7f, 0xee, 0x75, 0xa3, 0xa0, 0xa3, 0x6e, 0x2b, 0x3b,
0x4d, 0xbc, 0xb1, 0x70, 0xda, 0x01, 0xfa, 0x08, 0xb6, 0xbc, 0x38, 0x76, 0x03, 0x92, 0xf9, 0x24,
0x09, 0xbc, 0x84, 0x67, 0xa2, 0x0a, 0x0d, 0xdc, 0xf6, 0xe2, 0x78, 0xb0, 0xf0, 0xea, 0xbf, 0xa8,
0x50, 0x2b, 0x35, 0x47, 0x1e, 0x68, 0x3e, 0xbd, 0x4e, 0x69, 0x16, 0x71, 0xe2, 0x86, 0xc2, 0x27,
0xfb, 0xe9, 0xb3, 0x15, 0x1b, 0x41, 0x82, 0x4b, 0xbe, 0xe3, 0x35, 0xbc, 0xe5, 0x2f, 0xbb, 0xd0,
0x19, 0x6c, 0x84, 0x11, 0x89, 0x83, 0x19, 0xbd, 0x2a, 0xe8, 0x9f, 0xad, 0xd8, 0x19, 0x24, 0x0e,
0xe6, 0xd4, 0xad, 0x70, 0x61, 0x16, 0xb4, 0x79, 0xe2, 0xb1, 0xdb, 0x19, 0x6d, 0xe5, 0x01, 0xb4,
0x67, 0x05, 0x70, 0x41, 0x9b, 0x2f, 0xcc, 0x83, 0x4d, 0x68, 0x95, 0x84, 0x2e, 0xbf, 0x4d, 0x89,
0xfe, 0x87, 0x02, 0x5b, 0xaf, 0x9d, 0x11, 0x7d, 0x03, 0x2a, 0x4d, 0x85, 0x4a, 0xed, 0xbd, 0xe7,
0x8f, 0x51, 0xc9, 0x18, 0xa6, 0x84, 0x79, 0xc5, 0xd0, 0xa8, 0x34, 0x45, 0x16, 0xd4, 0xcb, 0x1d,
0x33, 0x39, 0x82, 0x0f, 0x1a, 0x9a, 0x19, 0xb6, 0xfb, 0x29, 0x34, 0x66, 0xb4, 0xa8, 0x03, 0xff,
0x1f, 0x8e, 0x2c, 0x6c, 0x4e, 0x86, 0xd8, 0x3d, 0x73, 0xc6, 0x23, 0xab, 0x6f, 0x1f, 0xda, 0xd6,
0x40, 0x5b, 0x43, 0x75, 0xa8, 0x98, 0xce, 0x40, 0x53, 0xf4, 0x3f, 0x55, 0x68, 0xdd, 0x51, 0x17,
0xd9, 0x50, 0x15, 0xea, 0xca, 0xea, 0xef, 0xaf, 0x5e, 0x1e, 0x4c, 0x42, 0xc2, 0x48, 0xe2, 0x13,
0x5c, 0x32, 0x20, 0x5b, 0xe8, 0xa3, 0x0a, 0x7d, 0xbe, 0x7c, 0x68, 0x99, 0x97, 0xb5, 0x79, 0x06,
0xd5, 0x9b, 0x62, 0x3a, 0x64, 0x75, 0xf5, 0x7b, 0xd9, 0xe4, 0xfc, 0x88, 0xc0, 0xee, 0x0f, 0xca,
0x4a, 0x3a, 0x6c, 0x42, 0xf3, 0xd4, 0x1a, 0x8f, 0xdd, 0xc9, 0xb1, 0xe9, 0x68, 0x0a, 0x7a, 0x02,
0x68, 0x6e, 0xba, 0x43, 0xec, 0x5a, 0x2f, 0xce, 0xcc, 0x53, 0x4d, 0x45, 0x1a, 0x6c, 0x1c, 0x61,
0xcb, 0x9c, 0x58, 0xb8, 0x8c, 0xac, 0xa0, 0xa7, 0xf0, 0xd6, 0x5d, 0xcf, 0x22, 0x78, 0x1d, 0x35,
0xa1, 0x5a, 0x7e, 0x56, 0x11, 0x82, 0xb6, 0x89, 0xb1, 0xf9, 0xd2, 0xed, 0x0f, 0x9d, 0x89, 0x69,
0x3b, 0x63, 0xad, 0xae, 0xff, 0xa5, 0x40, 0xeb, 0x4e, 0xe3, 0x49, 0x99, 0x94, 0x07, 0xc8, 0x74,
0x07, 0xbd, 0x2c, 0xd3, 0xc9, 0xac, 0x78, 0xea, 0xa3, 0x8b, 0x77, 0xbc, 0x26, 0xcb, 0xd7, 0x7d,
0xbe, 0x92, 0x80, 0x00, 0x35, 0x7b, 0xec, 0x3a, 0xa6, 0xa3, 0xa9, 0xa8, 0x05, 0xf5, 0xe2, 0xfb,
0xec, 0xf4, 0x54, 0xab, 0x1c, 0xb4, 0x61, 0x83, 0x16, 0xf0, 0x24, 0x28, 0x27, 0xe8, 0x47, 0x05,
0xaa, 0xe2, 0x6a, 0xfe, 0x2f, 0x5b, 0xec, 0x14, 0x9a, 0x41, 0xc4, 0xca, 0x9b, 0x4f, 0x76, 0x9a,
0xb1, 0x12, 0xdd, 0x60, 0x86, 0xc2, 0x0b, 0x02, 0xbd, 0x07, 0xed, 0xe5, 0x6d, 0xd0, 0x7b, 0x00,
0xe5, 0x9d, 0x95, 0x7a, 0xfc, 0x4a, 0x5e, 0xb6, 0x4d, 0xe1, 0x19, 0x79, 0xfc, 0x4a, 0x7f, 0x09,
0xb0, 0x78, 0x48, 0xd1, 0x09, 0xd4, 0xc4, 0xd2, 0x6c, 0x7e, 0x1f, 0x75, 0x30, 0x49, 0xd1, 0xb5,
0xa0, 0x39, 0xcf, 0xb1, 0x68, 0xb6, 0x81, 0x8d, 0xad, 0xfe, 0xc4, 0x1e, 0x3a, 0x6f, 0x36, 0xb0,
0x39, 0xee, 0x5b, 0xce, 0xc0, 0x76, 0x8e, 0x34, 0x05, 0xb5, 0x01, 0x06, 0xd6, 0xdc, 0x56, 0xbb,
0x13, 0xa8, 0x95, 0x4f, 0x54, 0xf1, 0x9e, 0x89, 0xc9, 0xc8, 0x3a, 0x8a, 0xc8, 0xee, 0x9f, 0x66,
0x48, 0x46, 0x16, 0xef, 0xd9, 0x25, 0x09, 0x29, 0x23, 0xe2, 0xe8, 0x0d, 0x2c, 0xad, 0x83, 0x9f,
0x15, 0x78, 0xdb, 0xa7, 0xd7, 0xf7, 0x31, 0x1c, 0x80, 0x38, 0xd6, 0xa8, 0x78, 0xd9, 0x46, 0xca,
0xb7, 0x5f, 0xcb, 0x90, 0x29, 0x8d, 0xbd, 0x64, 0x6a, 0x50, 0x36, 0xed, 0x4d, 0x49, 0x22, 0xde,
0xbd, 0x5e, 0xb9, 0xe4, 0xa5, 0x51, 0xb6, 0xf4, 0x53, 0xf4, 0xd5, 0xdc, 0xf8, 0x49, 0x5d, 0x3f,
0xea, 0x1f, 0x8e, 0x7f, 0x55, 0x9f, 0x1e, 0x95, 0x2c, 0xfd, 0x98, 0xe6, 0x81, 0x71, 0x38, 0xdf,
0xee, 0x7c, 0xf7, 0xf7, 0xd9, 0xda, 0x85, 0x58, 0xbb, 0x98, 0xaf, 0x5d, 0x9c, 0xef, 0x5e, 0xd6,
0xc4, 0x3e, 0xfb, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0xd2, 0x24, 0xd2, 0xba, 0xcf, 0x09, 0x00,
0x00,
}
|