diff --git a/go-tipb/executor.pb.go b/go-tipb/executor.pb.go index 0cea3031..147de43f 100644 --- a/go-tipb/executor.pb.go +++ b/go-tipb/executor.pb.go @@ -50,6 +50,7 @@ const ( ExecType_TypeBroadcastQuery ExecType = 17 ExecType_TypeCTESink ExecType = 18 ExecType_TypeCTESource ExecType = 19 + ExecType_TypeIndexLookUp ExecType = 20 ) var ExecType_name = map[int32]string{ @@ -73,6 +74,7 @@ var ExecType_name = map[int32]string{ 17: "TypeBroadcastQuery", 18: "TypeCTESink", 19: "TypeCTESource", + 20: "TypeIndexLookUp", } var ExecType_value = map[string]int32{ @@ -96,6 +98,7 @@ var ExecType_value = map[string]int32{ "TypeBroadcastQuery": 17, "TypeCTESink": 18, "TypeCTESource": 19, + "TypeIndexLookUp": 20, } func (x ExecType) Enum() *ExecType { @@ -850,6 +853,10 @@ type Executor struct { BroadcastQuery *BroadcastQuery `protobuf:"bytes,21,opt,name=broadcast_query,json=broadcastQuery" json:"broadcast_query,omitempty"` CteSink *CTESink `protobuf:"bytes,22,opt,name=cte_sink,json=cteSink" json:"cte_sink,omitempty"` CteSource *CTESource `protobuf:"bytes,23,opt,name=cte_source,json=cteSource" json:"cte_source,omitempty"` + IndexLookup *IndexLookUp `protobuf:"bytes,24,opt,name=index_lookup,json=indexLookup" json:"index_lookup,omitempty"` + // It indicates the parent index of current executor. + // Not set indicates its parent is the next executor in `DAGRequest.executors`. + ParentIdx *uint32 `protobuf:"varint,25,opt,name=parent_idx,json=parentIdx" json:"parent_idx,omitempty"` } func (m *Executor) Reset() { *m = Executor{} } @@ -1046,6 +1053,20 @@ func (m *Executor) GetCteSource() *CTESource { return nil } +func (m *Executor) GetIndexLookup() *IndexLookUp { + if m != nil { + return m.IndexLookup + } + return nil +} + +func (m *Executor) GetParentIdx() uint32 { + if m != nil && m.ParentIdx != nil { + return *m.ParentIdx + } + return 0 +} + // ExchangeSender will build connection with ExchangeReceiver. type ExchangeSender struct { Tp ExchangeType `protobuf:"varint,1,opt,name=tp,enum=tipb.ExchangeType" json:"tp"` @@ -1299,6 +1320,59 @@ func (m *CTESource) GetFieldTypes() []*FieldType { return nil } +type IndexLookUp struct { + // It represents the index columns we should use to build the row handle. + IndexHandleOffsets []uint32 `protobuf:"varint,1,rep,name=index_handle_offsets,json=indexHandleOffsets" json:"index_handle_offsets,omitempty"` + KeepOrder *bool `protobuf:"varint,2,opt,name=keep_order,json=keepOrder" json:"keep_order,omitempty"` +} + +func (m *IndexLookUp) Reset() { *m = IndexLookUp{} } +func (m *IndexLookUp) String() string { return proto.CompactTextString(m) } +func (*IndexLookUp) ProtoMessage() {} +func (*IndexLookUp) Descriptor() ([]byte, []int) { + return fileDescriptor_12d1cdcda51e000f, []int{4} +} +func (m *IndexLookUp) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *IndexLookUp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_IndexLookUp.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *IndexLookUp) XXX_Merge(src proto.Message) { + xxx_messageInfo_IndexLookUp.Merge(m, src) +} +func (m *IndexLookUp) XXX_Size() int { + return m.Size() +} +func (m *IndexLookUp) XXX_DiscardUnknown() { + xxx_messageInfo_IndexLookUp.DiscardUnknown(m) +} + +var xxx_messageInfo_IndexLookUp proto.InternalMessageInfo + +func (m *IndexLookUp) GetIndexHandleOffsets() []uint32 { + if m != nil { + return m.IndexHandleOffsets + } + return nil +} + +func (m *IndexLookUp) GetKeepOrder() bool { + if m != nil && m.KeepOrder != nil { + return *m.KeepOrder + } + return false +} + type EncodedBytesSlice struct { EncodedTasks [][]byte `protobuf:"bytes,1,rep,name=encoded_tasks,json=encodedTasks" json:"encoded_tasks,omitempty"` } @@ -1307,7 +1381,7 @@ func (m *EncodedBytesSlice) Reset() { *m = EncodedBytesSlice{} } func (m *EncodedBytesSlice) String() string { return proto.CompactTextString(m) } func (*EncodedBytesSlice) ProtoMessage() {} func (*EncodedBytesSlice) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{4} + return fileDescriptor_12d1cdcda51e000f, []int{5} } func (m *EncodedBytesSlice) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1356,7 +1430,7 @@ func (m *ExchangeReceiver) Reset() { *m = ExchangeReceiver{} } func (m *ExchangeReceiver) String() string { return proto.CompactTextString(m) } func (*ExchangeReceiver) ProtoMessage() {} func (*ExchangeReceiver) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{5} + return fileDescriptor_12d1cdcda51e000f, []int{6} } func (m *ExchangeReceiver) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1447,7 +1521,7 @@ func (m *ANNQueryInfo) Reset() { *m = ANNQueryInfo{} } func (m *ANNQueryInfo) String() string { return proto.CompactTextString(m) } func (*ANNQueryInfo) ProtoMessage() {} func (*ANNQueryInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{6} + return fileDescriptor_12d1cdcda51e000f, []int{7} } func (m *ANNQueryInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1562,7 +1636,7 @@ func (m *InvertedQueryInfo) Reset() { *m = InvertedQueryInfo{} } func (m *InvertedQueryInfo) String() string { return proto.CompactTextString(m) } func (*InvertedQueryInfo) ProtoMessage() {} func (*InvertedQueryInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{7} + return fileDescriptor_12d1cdcda51e000f, []int{8} } func (m *InvertedQueryInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1629,7 +1703,7 @@ func (m *FTSQueryInfo) Reset() { *m = FTSQueryInfo{} } func (m *FTSQueryInfo) String() string { return proto.CompactTextString(m) } func (*FTSQueryInfo) ProtoMessage() {} func (*FTSQueryInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{8} + return fileDescriptor_12d1cdcda51e000f, []int{9} } func (m *FTSQueryInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1735,7 +1809,7 @@ func (m *ColumnarIndexInfo) Reset() { *m = ColumnarIndexInfo{} } func (m *ColumnarIndexInfo) String() string { return proto.CompactTextString(m) } func (*ColumnarIndexInfo) ProtoMessage() {} func (*ColumnarIndexInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{9} + return fileDescriptor_12d1cdcda51e000f, []int{10} } func (m *ColumnarIndexInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1849,7 +1923,7 @@ func (m *TableScan) Reset() { *m = TableScan{} } func (m *TableScan) String() string { return proto.CompactTextString(m) } func (*TableScan) ProtoMessage() {} func (*TableScan) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{10} + return fileDescriptor_12d1cdcda51e000f, []int{11} } func (m *TableScan) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1995,7 +2069,7 @@ func (m *PartitionTableScan) Reset() { *m = PartitionTableScan{} } func (m *PartitionTableScan) String() string { return proto.CompactTextString(m) } func (*PartitionTableScan) ProtoMessage() {} func (*PartitionTableScan) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{11} + return fileDescriptor_12d1cdcda51e000f, []int{12} } func (m *PartitionTableScan) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2130,7 +2204,7 @@ func (m *Join) Reset() { *m = Join{} } func (m *Join) String() string { return proto.CompactTextString(m) } func (*Join) ProtoMessage() {} func (*Join) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{12} + return fileDescriptor_12d1cdcda51e000f, []int{13} } func (m *Join) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2271,7 +2345,7 @@ func (m *RuntimeFilter) Reset() { *m = RuntimeFilter{} } func (m *RuntimeFilter) String() string { return proto.CompactTextString(m) } func (*RuntimeFilter) ProtoMessage() {} func (*RuntimeFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{13} + return fileDescriptor_12d1cdcda51e000f, []int{14} } func (m *RuntimeFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2363,7 +2437,7 @@ func (m *IndexScan) Reset() { *m = IndexScan{} } func (m *IndexScan) String() string { return proto.CompactTextString(m) } func (*IndexScan) ProtoMessage() {} func (*IndexScan) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{14} + return fileDescriptor_12d1cdcda51e000f, []int{15} } func (m *IndexScan) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2452,7 +2526,7 @@ func (m *Selection) Reset() { *m = Selection{} } func (m *Selection) String() string { return proto.CompactTextString(m) } func (*Selection) ProtoMessage() {} func (*Selection) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{15} + return fileDescriptor_12d1cdcda51e000f, []int{16} } func (m *Selection) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2513,7 +2587,7 @@ func (m *Projection) Reset() { *m = Projection{} } func (m *Projection) String() string { return proto.CompactTextString(m) } func (*Projection) ProtoMessage() {} func (*Projection) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{16} + return fileDescriptor_12d1cdcda51e000f, []int{17} } func (m *Projection) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2580,7 +2654,7 @@ func (m *Aggregation) Reset() { *m = Aggregation{} } func (m *Aggregation) String() string { return proto.CompactTextString(m) } func (*Aggregation) ProtoMessage() {} func (*Aggregation) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{17} + return fileDescriptor_12d1cdcda51e000f, []int{18} } func (m *Aggregation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2672,7 +2746,7 @@ func (m *TopN) Reset() { *m = TopN{} } func (m *TopN) String() string { return proto.CompactTextString(m) } func (*TopN) ProtoMessage() {} func (*TopN) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{18} + return fileDescriptor_12d1cdcda51e000f, []int{19} } func (m *TopN) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2742,7 +2816,7 @@ func (m *Limit) Reset() { *m = Limit{} } func (m *Limit) String() string { return proto.CompactTextString(m) } func (*Limit) ProtoMessage() {} func (*Limit) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{19} + return fileDescriptor_12d1cdcda51e000f, []int{20} } func (m *Limit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2806,7 +2880,7 @@ func (m *Kill) Reset() { *m = Kill{} } func (m *Kill) String() string { return proto.CompactTextString(m) } func (*Kill) ProtoMessage() {} func (*Kill) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{20} + return fileDescriptor_12d1cdcda51e000f, []int{21} } func (m *Kill) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2877,7 +2951,7 @@ func (m *ExecutorExecutionSummary) Reset() { *m = ExecutorExecutionSumma func (m *ExecutorExecutionSummary) String() string { return proto.CompactTextString(m) } func (*ExecutorExecutionSummary) ProtoMessage() {} func (*ExecutorExecutionSummary) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{21} + return fileDescriptor_12d1cdcda51e000f, []int{22} } func (m *ExecutorExecutionSummary) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3004,7 +3078,7 @@ func (m *TiFlashExecutionInfo) Reset() { *m = TiFlashExecutionInfo{} } func (m *TiFlashExecutionInfo) String() string { return proto.CompactTextString(m) } func (*TiFlashExecutionInfo) ProtoMessage() {} func (*TiFlashExecutionInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{22} + return fileDescriptor_12d1cdcda51e000f, []int{23} } func (m *TiFlashExecutionInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3049,7 +3123,7 @@ func (m *TiFlashRegionNumOfInstance) Reset() { *m = TiFlashRegionNumOfIn func (m *TiFlashRegionNumOfInstance) String() string { return proto.CompactTextString(m) } func (*TiFlashRegionNumOfInstance) ProtoMessage() {} func (*TiFlashRegionNumOfInstance) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{23} + return fileDescriptor_12d1cdcda51e000f, []int{24} } func (m *TiFlashRegionNumOfInstance) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3175,7 +3249,7 @@ func (m *TiFlashScanContext) Reset() { *m = TiFlashScanContext{} } func (m *TiFlashScanContext) String() string { return proto.CompactTextString(m) } func (*TiFlashScanContext) ProtoMessage() {} func (*TiFlashScanContext) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{24} + return fileDescriptor_12d1cdcda51e000f, []int{25} } func (m *TiFlashScanContext) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3749,7 +3823,7 @@ func (m *TiFlashWaitSummary) Reset() { *m = TiFlashWaitSummary{} } func (m *TiFlashWaitSummary) String() string { return proto.CompactTextString(m) } func (*TiFlashWaitSummary) ProtoMessage() {} func (*TiFlashWaitSummary) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{25} + return fileDescriptor_12d1cdcda51e000f, []int{26} } func (m *TiFlashWaitSummary) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3810,7 +3884,7 @@ func (m *TiFlashNetWorkSummary) Reset() { *m = TiFlashNetWorkSummary{} } func (m *TiFlashNetWorkSummary) String() string { return proto.CompactTextString(m) } func (*TiFlashNetWorkSummary) ProtoMessage() {} func (*TiFlashNetWorkSummary) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{26} + return fileDescriptor_12d1cdcda51e000f, []int{27} } func (m *TiFlashNetWorkSummary) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3877,7 +3951,7 @@ func (m *Sort) Reset() { *m = Sort{} } func (m *Sort) String() string { return proto.CompactTextString(m) } func (*Sort) ProtoMessage() {} func (*Sort) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{27} + return fileDescriptor_12d1cdcda51e000f, []int{28} } func (m *Sort) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3940,7 +4014,7 @@ func (m *WindowFrameBound) Reset() { *m = WindowFrameBound{} } func (m *WindowFrameBound) String() string { return proto.CompactTextString(m) } func (*WindowFrameBound) ProtoMessage() {} func (*WindowFrameBound) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{28} + return fileDescriptor_12d1cdcda51e000f, []int{29} } func (m *WindowFrameBound) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4021,7 +4095,7 @@ func (m *WindowFrame) Reset() { *m = WindowFrame{} } func (m *WindowFrame) String() string { return proto.CompactTextString(m) } func (*WindowFrame) ProtoMessage() {} func (*WindowFrame) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{29} + return fileDescriptor_12d1cdcda51e000f, []int{30} } func (m *WindowFrame) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4083,7 +4157,7 @@ func (m *Window) Reset() { *m = Window{} } func (m *Window) String() string { return proto.CompactTextString(m) } func (*Window) ProtoMessage() {} func (*Window) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{30} + return fileDescriptor_12d1cdcda51e000f, []int{31} } func (m *Window) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4155,7 +4229,7 @@ func (m *GroupingExpr) Reset() { *m = GroupingExpr{} } func (m *GroupingExpr) String() string { return proto.CompactTextString(m) } func (*GroupingExpr) ProtoMessage() {} func (*GroupingExpr) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{31} + return fileDescriptor_12d1cdcda51e000f, []int{32} } func (m *GroupingExpr) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4199,7 +4273,7 @@ func (m *GroupingSet) Reset() { *m = GroupingSet{} } func (m *GroupingSet) String() string { return proto.CompactTextString(m) } func (*GroupingSet) ProtoMessage() {} func (*GroupingSet) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{32} + return fileDescriptor_12d1cdcda51e000f, []int{33} } func (m *GroupingSet) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4246,7 +4320,7 @@ func (m *Expand) Reset() { *m = Expand{} } func (m *Expand) String() string { return proto.CompactTextString(m) } func (*Expand) ProtoMessage() {} func (*Expand) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{33} + return fileDescriptor_12d1cdcda51e000f, []int{34} } func (m *Expand) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4304,7 +4378,7 @@ func (m *ExprSlice) Reset() { *m = ExprSlice{} } func (m *ExprSlice) String() string { return proto.CompactTextString(m) } func (*ExprSlice) ProtoMessage() {} func (*ExprSlice) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{34} + return fileDescriptor_12d1cdcda51e000f, []int{35} } func (m *ExprSlice) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4350,7 +4424,7 @@ func (m *Expand2) Reset() { *m = Expand2{} } func (m *Expand2) String() string { return proto.CompactTextString(m) } func (*Expand2) ProtoMessage() {} func (*Expand2) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{35} + return fileDescriptor_12d1cdcda51e000f, []int{36} } func (m *Expand2) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4408,7 +4482,7 @@ func (m *BroadcastQuery) Reset() { *m = BroadcastQuery{} } func (m *BroadcastQuery) String() string { return proto.CompactTextString(m) } func (*BroadcastQuery) ProtoMessage() {} func (*BroadcastQuery) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{36} + return fileDescriptor_12d1cdcda51e000f, []int{37} } func (m *BroadcastQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4466,6 +4540,7 @@ func init() { proto.RegisterType((*ExchangeSender)(nil), "tipb.ExchangeSender") proto.RegisterType((*CTESink)(nil), "tipb.CTESink") proto.RegisterType((*CTESource)(nil), "tipb.CTESource") + proto.RegisterType((*IndexLookUp)(nil), "tipb.IndexLookUp") proto.RegisterType((*EncodedBytesSlice)(nil), "tipb.EncodedBytesSlice") proto.RegisterType((*ExchangeReceiver)(nil), "tipb.ExchangeReceiver") proto.RegisterType((*ANNQueryInfo)(nil), "tipb.ANNQueryInfo") @@ -4504,360 +4579,366 @@ func init() { func init() { proto.RegisterFile("executor.proto", fileDescriptor_12d1cdcda51e000f) } var fileDescriptor_12d1cdcda51e000f = []byte{ - // 5648 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7b, 0xd9, 0x73, 0x1c, 0xc9, - 0x71, 0x37, 0x66, 0x30, 0x00, 0x66, 0x12, 0x83, 0x41, 0xa3, 0x70, 0x35, 0xc9, 0x25, 0x09, 0x8e, - 0xf6, 0x40, 0xe0, 0xd3, 0x92, 0xbb, 0x20, 0xb5, 0xa7, 0x8e, 0xc5, 0xb9, 0x1c, 0x12, 0x18, 0x40, - 0x3d, 0xf8, 0x76, 0x15, 0xb2, 0x23, 0x3a, 0x1a, 0xdd, 0x35, 0x83, 0x22, 0xfa, 0x98, 0xed, 0xee, - 0x21, 0x07, 0xf4, 0xb5, 0x7a, 0xb5, 0x5f, 0x1c, 0x96, 0x2d, 0xcb, 0x87, 0x7c, 0xc8, 0x97, 0x7c, - 0xe9, 0x6f, 0xf0, 0xa3, 0x1e, 0x15, 0x7a, 0x52, 0x38, 0x1c, 0x0e, 0xc7, 0xee, 0x93, 0x9f, 0xfc, - 0xee, 0x27, 0x47, 0x65, 0x55, 0x75, 0xd7, 0x1c, 0x20, 0xb9, 0xb6, 0xc2, 0xe1, 0x27, 0xa0, 0x33, - 0xf3, 0x97, 0x99, 0x55, 0x95, 0x99, 0x75, 0x0e, 0xd4, 0x68, 0x9f, 0xba, 0xbd, 0x34, 0x8a, 0x6f, - 0x77, 0xe3, 0x28, 0x8d, 0x48, 0x29, 0x65, 0xdd, 0xd3, 0xab, 0x06, 0xed, 0x77, 0x63, 0x9a, 0x24, - 0x2c, 0x0a, 0x05, 0xfd, 0x6a, 0x35, 0x71, 0xcf, 0x68, 0xe0, 0xc8, 0xaf, 0xa5, 0x4e, 0xd4, 0x89, - 0xf0, 0xdf, 0x3b, 0xfc, 0x3f, 0x49, 0x9d, 0x8f, 0x7b, 0x49, 0x8a, 0xff, 0x0a, 0x42, 0xfd, 0x5f, - 0xca, 0x50, 0xde, 0x93, 0xfa, 0xc9, 0xcb, 0x50, 0x4c, 0xbb, 0x66, 0x61, 0xad, 0xb0, 0x5e, 0xdb, - 0xac, 0xdd, 0xe6, 0x66, 0x6e, 0x73, 0xde, 0xc9, 0x45, 0x97, 0x6e, 0x97, 0x7e, 0xf2, 0xaf, 0x37, - 0x27, 0xac, 0x62, 0xda, 0x25, 0x1b, 0x50, 0x4e, 0x4f, 0x7d, 0x3b, 0x71, 0x9d, 0xd0, 0x2c, 0xae, - 0x15, 0xd6, 0x67, 0x37, 0xe7, 0x85, 0xec, 0x89, 0x73, 0xea, 0xd3, 0x96, 0xeb, 0x84, 0xd6, 0x4c, - 0x7a, 0xea, 0xf3, 0x7f, 0xb8, 0x2c, 0xf3, 0xfa, 0x42, 0x76, 0x52, 0x97, 0x6d, 0x84, 0x1e, 0xed, - 0x0b, 0x59, 0xe6, 0xe1, 0x3f, 0xe4, 0x75, 0xa8, 0x24, 0xd4, 0xa7, 0x6e, 0xca, 0xa2, 0xd0, 0x2c, - 0xe9, 0xc2, 0x2d, 0x45, 0xb6, 0x72, 0x09, 0x72, 0x17, 0x66, 0x9d, 0x4e, 0x27, 0xa6, 0x1d, 0x07, - 0x01, 0x53, 0x08, 0x58, 0x10, 0x80, 0xad, 0x9c, 0x61, 0xe9, 0x52, 0xe4, 0x06, 0x94, 0xd2, 0xa8, - 0xdb, 0x34, 0xa7, 0x51, 0x1a, 0xa4, 0xdf, 0x51, 0xb7, 0x69, 0x21, 0x9d, 0xdc, 0x82, 0x29, 0x9f, - 0x05, 0x2c, 0x35, 0x67, 0x50, 0x60, 0x56, 0x08, 0x1c, 0x70, 0x92, 0x25, 0x38, 0x64, 0x07, 0x16, - 0x68, 0xdf, 0x3d, 0x73, 0xc2, 0x0e, 0xb5, 0x63, 0xea, 0x52, 0xf6, 0x98, 0xc6, 0x66, 0x19, 0xc5, - 0x57, 0x54, 0x9f, 0x09, 0xb6, 0x25, 0xb9, 0x96, 0x41, 0x87, 0x28, 0xdc, 0x8f, 0x47, 0x11, 0x0b, - 0xcd, 0x8a, 0xee, 0xc7, 0x83, 0x88, 0x85, 0x16, 0xd2, 0xc9, 0x4d, 0x98, 0x55, 0xa3, 0x6e, 0x33, - 0xcf, 0x84, 0xb5, 0xc2, 0x7a, 0xc5, 0x02, 0x45, 0x6a, 0x78, 0x5c, 0xc1, 0x39, 0xf3, 0x7d, 0x73, - 0x56, 0x57, 0xf0, 0x90, 0xf9, 0xbe, 0x85, 0x74, 0xf2, 0x35, 0x98, 0xcf, 0xbc, 0x4c, 0x68, 0xe8, - 0xd1, 0xd8, 0xac, 0xa2, 0xe8, 0xd2, 0xa0, 0x8f, 0x2d, 0xe4, 0x59, 0x35, 0x3a, 0xf0, 0x4d, 0xde, - 0x00, 0x38, 0x8e, 0xa3, 0x47, 0x72, 0x30, 0xe6, 0x10, 0x69, 0x08, 0x64, 0x4e, 0xb7, 0x34, 0x19, - 0xf2, 0x00, 0x96, 0xba, 0x4e, 0x9c, 0x32, 0xfe, 0x61, 0xa7, 0x3c, 0x12, 0xc4, 0xa8, 0xd7, 0x10, - 0x6b, 0x4a, 0xac, 0x92, 0xc8, 0x43, 0x85, 0x74, 0x47, 0x68, 0xbc, 0x71, 0x49, 0x14, 0xa7, 0xe6, - 0xbc, 0xde, 0xb8, 0x56, 0x14, 0xa7, 0x16, 0xd2, 0xc9, 0xcb, 0x30, 0xfd, 0x84, 0x85, 0x5e, 0xf4, - 0xc4, 0x34, 0x50, 0xa2, 0x2a, 0x24, 0x3e, 0x46, 0x9a, 0x25, 0x79, 0xa4, 0x09, 0xb7, 0xda, 0x2c, - 0xa4, 0x76, 0x27, 0x76, 0x58, 0x48, 0x3d, 0x3b, 0x39, 0xeb, 0xb5, 0xdb, 0xdc, 0xad, 0x34, 0xa6, - 0x4e, 0x60, 0xbb, 0x51, 0x2f, 0x4c, 0xcd, 0x85, 0xb5, 0xc2, 0x7a, 0x49, 0x06, 0xf7, 0x75, 0x2e, - 0xfe, 0xa1, 0x90, 0x6e, 0x09, 0xe1, 0x16, 0xca, 0xee, 0x70, 0x51, 0xf2, 0x00, 0x6e, 0x8e, 0xd5, - 0x77, 0xea, 0xa4, 0xee, 0x99, 0x9d, 0xb0, 0xa7, 0xd4, 0x24, 0x9a, 0xb6, 0x6b, 0xa3, 0xda, 0xb6, - 0xb9, 0x64, 0x8b, 0x3d, 0xa5, 0xbc, 0x05, 0xb4, 0xdf, 0x75, 0x42, 0xcf, 0x5c, 0xd4, 0x5b, 0xb0, - 0x87, 0x34, 0x4b, 0xf2, 0xc8, 0x6b, 0x30, 0x23, 0xfe, 0xdb, 0x34, 0x97, 0x50, 0x6c, 0x4e, 0x17, - 0xdb, 0xb4, 0x14, 0x97, 0x8f, 0xf6, 0x69, 0x1c, 0x39, 0x9e, 0xeb, 0x24, 0xa9, 0xfd, 0x49, 0x8f, - 0xc6, 0x17, 0xe6, 0xb2, 0x3e, 0xda, 0xdb, 0x8a, 0xf9, 0x4d, 0xce, 0xb3, 0x6a, 0xa7, 0x03, 0xdf, - 0x64, 0x1d, 0xca, 0x6e, 0x4a, 0xed, 0x84, 0x85, 0xe7, 0xe6, 0x8a, 0x6e, 0x68, 0xe7, 0x64, 0xaf, - 0xc5, 0xc2, 0x73, 0x6b, 0xc6, 0x4d, 0x29, 0xff, 0x87, 0xdc, 0x06, 0x40, 0xc9, 0xa8, 0x17, 0xbb, - 0xd4, 0x5c, 0xd5, 0x93, 0x94, 0xcb, 0x22, 0xd9, 0xaa, 0x70, 0x69, 0xfc, 0xb7, 0xfe, 0xb3, 0x49, - 0xa8, 0x0d, 0x86, 0x1a, 0x59, 0xd7, 0x8a, 0x0c, 0x19, 0x0c, 0xc6, 0x91, 0x42, 0xb3, 0x40, 0x43, - 0x37, 0xf2, 0xa8, 0x67, 0xa7, 0x4e, 0x72, 0x6e, 0x07, 0x34, 0x75, 0xcc, 0xe2, 0xda, 0xe4, 0x7a, - 0xd5, 0x9a, 0x97, 0x8c, 0x13, 0x27, 0x39, 0x3f, 0xa4, 0xa9, 0x43, 0xde, 0x84, 0x5a, 0x1e, 0x7e, - 0xe7, 0xf4, 0x22, 0x31, 0x27, 0xd7, 0x26, 0xf3, 0xe0, 0xd9, 0xeb, 0x77, 0x63, 0x6b, 0x2e, 0x93, - 0x78, 0x48, 0x2f, 0x12, 0xf2, 0x32, 0x4c, 0xb9, 0x67, 0xcc, 0xf7, 0x64, 0xad, 0xd1, 0x0a, 0x1e, - 0xcf, 0x31, 0x4b, 0x30, 0xc9, 0x2b, 0x30, 0x95, 0x5e, 0x74, 0x69, 0x62, 0x4e, 0xa1, 0x3e, 0xd9, - 0xd8, 0x7d, 0x46, 0x7d, 0x8f, 0xbb, 0x6b, 0x09, 0x2e, 0x79, 0x1b, 0xe6, 0x1d, 0xdf, 0xb7, 0xdb, - 0x9c, 0x6e, 0x0b, 0xc0, 0xf4, 0x78, 0xc0, 0x9c, 0xe3, 0xfb, 0xd9, 0x57, 0x42, 0xbe, 0x06, 0xb3, - 0x6e, 0x14, 0xa8, 0x52, 0x8e, 0x75, 0xa7, 0xb6, 0xb9, 0x2c, 0xbb, 0x34, 0x67, 0x1c, 0x46, 0x9e, - 0xea, 0x1a, 0x5d, 0x9e, 0x1c, 0xc0, 0x4a, 0xaf, 0xab, 0x22, 0x3a, 0xa5, 0x5a, 0x47, 0x95, 0xd1, - 0xfc, 0xaa, 0x6c, 0x95, 0xe8, 0xae, 0xed, 0x8b, 0x94, 0x26, 0x2d, 0x9f, 0xb9, 0xd4, 0x5a, 0x54, - 0xb0, 0x9d, 0x94, 0x66, 0xbd, 0xf8, 0x32, 0xd4, 0x12, 0x27, 0xa0, 0xf6, 0xd3, 0x28, 0xa4, 0x76, - 0xdb, 0x77, 0x3a, 0x66, 0x65, 0x6d, 0x72, 0xbd, 0x6c, 0x55, 0x39, 0xf5, 0xdb, 0x51, 0x48, 0xf7, - 0x7d, 0xa7, 0x53, 0xff, 0x59, 0x01, 0x66, 0x64, 0x64, 0x90, 0x6b, 0x30, 0xcd, 0xcd, 0x32, 0xcf, - 0x2c, 0xac, 0x15, 0xd7, 0xe7, 0xa4, 0x8b, 0x53, 0x6e, 0x4a, 0x1b, 0x1e, 0xd9, 0x80, 0x5a, 0x1e, - 0x2d, 0x76, 0xd8, 0x0b, 0xcc, 0xa2, 0x26, 0x54, 0xcd, 0xc2, 0xa4, 0xd9, 0x0b, 0xc8, 0xab, 0x50, - 0x55, 0x31, 0x88, 0x92, 0x93, 0x9a, 0x24, 0xc8, 0xf0, 0xe3, 0x72, 0x2f, 0x36, 0x6a, 0x6f, 0xc0, - 0xac, 0x3e, 0x14, 0x97, 0x8c, 0x1d, 0xb4, 0xb3, 0x71, 0xa8, 0xff, 0xb8, 0x00, 0x95, 0x2c, 0x84, - 0xff, 0xf7, 0x9b, 0x35, 0xe4, 0x70, 0xe9, 0xf9, 0x0e, 0xbf, 0x03, 0x0b, 0x23, 0xa3, 0x4a, 0xbe, - 0x04, 0x73, 0x7a, 0xca, 0x24, 0x66, 0x01, 0xd3, 0xa5, 0xaa, 0xa5, 0x4b, 0x52, 0xff, 0xb4, 0x08, - 0xc6, 0xf0, 0x1c, 0x35, 0x3e, 0xd9, 0x0a, 0xe3, 0x93, 0x6d, 0xc8, 0xd9, 0xe2, 0x73, 0x9d, 0x25, - 0x75, 0x4c, 0xfa, 0xc9, 0xcb, 0x92, 0x1e, 0xd3, 0x7d, 0x17, 0x6e, 0x46, 0x31, 0xeb, 0xb0, 0xd0, - 0xf1, 0x31, 0x94, 0xbb, 0xb1, 0x17, 0xb9, 0x3d, 0x1a, 0x6b, 0xfe, 0x94, 0xd0, 0x9f, 0x6b, 0x4a, - 0x6c, 0x27, 0xa5, 0xc7, 0x52, 0xe8, 0x19, 0x21, 0x3c, 0x35, 0x26, 0x84, 0x7f, 0xb3, 0x04, 0xd5, - 0xad, 0x66, 0x13, 0xcb, 0x5f, 0x23, 0x6c, 0x47, 0xe4, 0x6d, 0x00, 0xac, 0x9b, 0xd8, 0xa4, 0xc1, - 0xea, 0xa4, 0xe4, 0xb4, 0xea, 0x54, 0xf9, 0x44, 0x11, 0x48, 0x03, 0xe6, 0x3d, 0x96, 0xa4, 0x4e, - 0xe8, 0x52, 0xee, 0x63, 0xcc, 0x5c, 0x5c, 0x14, 0xd5, 0x36, 0xaf, 0x0a, 0xf4, 0x47, 0xd4, 0x4d, - 0xa3, 0x78, 0x57, 0x8a, 0x1c, 0xa2, 0x84, 0xd4, 0x52, 0xf3, 0x06, 0xa8, 0xe4, 0x0a, 0x4c, 0xa5, - 0x51, 0xd7, 0x3e, 0xc7, 0x7e, 0x52, 0x41, 0xc2, 0xd7, 0x25, 0x0f, 0xc9, 0x2b, 0xbc, 0x4a, 0xf8, - 0xbd, 0x20, 0xb4, 0x43, 0x27, 0xa0, 0x18, 0xfb, 0x95, 0x2c, 0x8a, 0x90, 0xd1, 0x74, 0x02, 0x4a, - 0xde, 0x80, 0x25, 0x8f, 0x76, 0x63, 0xea, 0x3a, 0x29, 0xf5, 0x6c, 0x89, 0x60, 0x1e, 0x2e, 0x8e, - 0x26, 0x2d, 0x92, 0xf3, 0x76, 0x90, 0x85, 0xeb, 0x88, 0xd9, 0x98, 0xb6, 0xed, 0xc7, 0xd4, 0xb5, - 0xdb, 0x77, 0x37, 0x71, 0x5d, 0x54, 0xb5, 0x2a, 0x31, 0x6d, 0x7f, 0x44, 0xdd, 0xfd, 0xbb, 0x9b, - 0xe4, 0x26, 0x94, 0x19, 0x5f, 0xaa, 0x71, 0x2d, 0x7c, 0x91, 0x33, 0x29, 0xad, 0xce, 0x20, 0xb5, - 0xc1, 0xe7, 0xa8, 0x6a, 0xe0, 0xf4, 0x6d, 0xd5, 0x14, 0x5c, 0xaa, 0x14, 0x54, 0xa5, 0x0a, 0x9c, - 0xbe, 0x6a, 0x39, 0xcf, 0x9a, 0xb3, 0x30, 0x79, 0x62, 0xd3, 0xb6, 0x9d, 0x50, 0x27, 0x76, 0xcf, - 0x70, 0x4e, 0xcb, 0xb2, 0x86, 0xf3, 0xf6, 0xda, 0x2d, 0xe4, 0x90, 0xdb, 0x30, 0x2d, 0x9c, 0x97, - 0xd3, 0x98, 0xa1, 0xea, 0x21, 0x7a, 0x1d, 0xb6, 0x23, 0x89, 0x92, 0x52, 0xe4, 0x2d, 0x58, 0xa2, - 0x21, 0xae, 0x39, 0xb2, 0xb1, 0xe8, 0xc6, 0xd1, 0x23, 0x9c, 0xcc, 0xca, 0x52, 0x96, 0x08, 0x09, - 0xe5, 0x0f, 0x5f, 0xba, 0x3c, 0x28, 0x95, 0x67, 0x8c, 0x72, 0xfd, 0x63, 0x58, 0x68, 0x84, 0x8f, - 0x69, 0x9c, 0x52, 0x2f, 0x0f, 0x08, 0xbd, 0xe1, 0x85, 0x71, 0x0d, 0xbf, 0x05, 0x95, 0xbc, 0x83, - 0x8b, 0x9a, 0x44, 0xd9, 0x95, 0x9d, 0x5b, 0xff, 0xad, 0x49, 0xa8, 0xee, 0x9f, 0xb4, 0x5e, 0x28, - 0xca, 0x94, 0xdc, 0xf8, 0x28, 0xd3, 0xbd, 0x29, 0x8e, 0xf3, 0x66, 0x03, 0x66, 0x84, 0x59, 0x35, - 0xf1, 0x8d, 0x74, 0x99, 0xa5, 0x04, 0xc8, 0x2d, 0xa8, 0x6a, 0xc1, 0x24, 0x8a, 0x4d, 0xc5, 0x9a, - 0xcd, 0xe3, 0x28, 0x21, 0x5f, 0xca, 0x1c, 0xa5, 0xfd, 0x14, 0xc3, 0xa7, 0x32, 0xe8, 0x14, 0xed, - 0xa7, 0xe4, 0x75, 0x98, 0x97, 0x42, 0xd1, 0x39, 0x0d, 0xd9, 0x53, 0x1a, 0x63, 0xfc, 0x28, 0xc9, - 0x9a, 0x90, 0x54, 0x3c, 0xb2, 0xa8, 0xc2, 0x9b, 0x87, 0xc8, 0x9c, 0x0c, 0xec, 0x77, 0x94, 0xa1, - 0x76, 0x2f, 0x74, 0x31, 0x22, 0x6a, 0x9b, 0x8b, 0x72, 0xc1, 0xe7, 0x3a, 0xbe, 0x13, 0xef, 0xf7, - 0x42, 0xb7, 0xc5, 0x3a, 0x03, 0xd6, 0x39, 0x8d, 0xdc, 0x01, 0x08, 0x70, 0xe5, 0xc5, 0x37, 0x42, - 0xe6, 0xf2, 0xf0, 0x6c, 0xaf, 0x00, 0x28, 0xc3, 0x09, 0xf5, 0x1f, 0x14, 0x61, 0x41, 0x74, 0x87, - 0x13, 0xe3, 0xf6, 0x03, 0x87, 0xe4, 0xab, 0x00, 0xa2, 0x67, 0xb5, 0x21, 0x59, 0xd5, 0xfb, 0x4e, - 0x0a, 0xeb, 0xe3, 0xc2, 0x14, 0x81, 0xbc, 0x07, 0x35, 0x27, 0x0c, 0xc5, 0x92, 0xcb, 0x66, 0x61, - 0x3b, 0x92, 0x3b, 0xa2, 0xa1, 0xd2, 0xc1, 0x2d, 0xdd, 0x9f, 0xb0, 0xaa, 0x4e, 0x18, 0xe6, 0xc1, - 0xd0, 0x80, 0x45, 0x26, 0xc3, 0x4e, 0x57, 0x20, 0xb6, 0x49, 0xab, 0x6a, 0x9b, 0x34, 0x14, 0x97, - 0xf7, 0x27, 0xac, 0x05, 0x36, 0x12, 0xac, 0xef, 0x41, 0xad, 0x9d, 0x26, 0xba, 0x96, 0x92, 0xee, - 0x86, 0x1e, 0x83, 0xdc, 0x8d, 0x76, 0x9a, 0x64, 0xdf, 0xdb, 0x33, 0x30, 0x85, 0xed, 0xa9, 0x7f, - 0x36, 0x05, 0x95, 0x7c, 0x0d, 0x7e, 0x13, 0xca, 0x62, 0x15, 0x3f, 0x1c, 0xff, 0x48, 0x1d, 0x8c, - 0xb8, 0xe2, 0xf3, 0x22, 0xce, 0x84, 0x92, 0x47, 0x13, 0x17, 0xdb, 0xa6, 0xf2, 0x11, 0x29, 0xe4, - 0xcb, 0x40, 0xba, 0x31, 0x0b, 0x9c, 0xf8, 0x22, 0x2f, 0x57, 0x22, 0x22, 0x27, 0x2d, 0x43, 0x72, - 0x54, 0xb1, 0x4a, 0xc8, 0x07, 0x60, 0x84, 0xb4, 0x9f, 0xda, 0x31, 0x75, 0x3c, 0x9b, 0x86, 0x1d, - 0x16, 0x52, 0x0c, 0xce, 0x9a, 0x32, 0xbe, 0x87, 0x34, 0x6d, 0xac, 0x6a, 0x5c, 0xde, 0xa2, 0x8e, - 0x27, 0x38, 0xe4, 0xcb, 0x30, 0x1d, 0xf3, 0x59, 0x47, 0x2d, 0xcf, 0xe4, 0xfa, 0xe1, 0x21, 0xbd, - 0xb0, 0x38, 0x59, 0xd5, 0x15, 0x21, 0x43, 0xde, 0x85, 0x2b, 0xca, 0xbb, 0x6e, 0x4c, 0xdb, 0xac, - 0xaf, 0x3b, 0x39, 0x83, 0x4e, 0xae, 0x48, 0x81, 0x63, 0xe4, 0xe7, 0xae, 0x5e, 0x07, 0x38, 0xa7, - 0xb4, 0x6b, 0x47, 0xb1, 0x27, 0xf7, 0x87, 0x65, 0xab, 0xc2, 0x29, 0x47, 0x9c, 0x40, 0xd6, 0xa0, - 0xca, 0x12, 0xbb, 0xcd, 0xd7, 0xeb, 0xb8, 0x4d, 0xaa, 0xa0, 0x00, 0xb0, 0x64, 0xdf, 0x49, 0x52, - 0x1c, 0x80, 0x43, 0xb8, 0xde, 0xed, 0x25, 0x67, 0xd4, 0xb3, 0xbd, 0xe8, 0x49, 0x68, 0xb7, 0x99, - 0x9f, 0xd2, 0xd8, 0x76, 0xa3, 0xd0, 0xc3, 0x25, 0x6c, 0x62, 0xc2, 0xc8, 0x02, 0xf7, 0xaa, 0x00, - 0xec, 0x46, 0x4f, 0xc2, 0x7d, 0x14, 0xdf, 0xc9, 0xa4, 0xc9, 0x0e, 0x2c, 0xc6, 0xbd, 0x30, 0x65, - 0x01, 0x55, 0xaa, 0x7c, 0x96, 0xa4, 0xe6, 0x2c, 0x2a, 0x91, 0x19, 0x67, 0x09, 0x01, 0x81, 0xb5, - 0x16, 0x62, 0xfd, 0xf3, 0x80, 0x25, 0x3c, 0xe3, 0x0d, 0x5e, 0xec, 0x9f, 0x38, 0x2c, 0xb5, 0x51, - 0x55, 0x90, 0xe0, 0xb6, 0x72, 0x4a, 0xf6, 0xdb, 0x5c, 0xe0, 0xf4, 0x3f, 0x76, 0x58, 0x7a, 0xc2, - 0x02, 0x7a, 0x98, 0x90, 0xdd, 0x81, 0xe9, 0x28, 0x4b, 0x14, 0xb9, 0x9f, 0x1c, 0x93, 0x23, 0xfa, - 0x14, 0xb5, 0x25, 0x73, 0x85, 0x3c, 0x84, 0xe5, 0x5e, 0x92, 0x4d, 0x67, 0x4e, 0x6c, 0x63, 0xb8, - 0xd2, 0xc4, 0xac, 0xe9, 0x2b, 0xdc, 0x91, 0xcc, 0xb6, 0x16, 0x39, 0x6a, 0x80, 0x4c, 0x93, 0xfa, - 0x77, 0xa6, 0x80, 0x8c, 0xee, 0x42, 0xff, 0x6f, 0x46, 0xfb, 0x33, 0xa3, 0x6f, 0xea, 0x99, 0xd1, - 0xf7, 0x25, 0xc8, 0x37, 0x3b, 0x28, 0x3e, 0x8d, 0xe2, 0xd5, 0x8c, 0xc8, 0x85, 0x86, 0x63, 0x70, - 0xe6, 0x8b, 0xc7, 0x60, 0xf9, 0x17, 0x11, 0x83, 0x95, 0xff, 0x71, 0x0c, 0xc2, 0x17, 0x8f, 0xc1, - 0xd9, 0x5f, 0x4c, 0x0c, 0x56, 0xff, 0x1b, 0x31, 0xf8, 0x9f, 0x53, 0x50, 0x7a, 0x10, 0xb1, 0x90, - 0xbc, 0x09, 0x95, 0x47, 0x11, 0x0b, 0xf5, 0xa9, 0xa7, 0x96, 0x1f, 0x05, 0x69, 0x55, 0xac, 0xfc, - 0x48, 0x7e, 0x93, 0xaf, 0x43, 0x0d, 0x21, 0xb4, 0x4f, 0x5d, 0x81, 0x2b, 0xea, 0xab, 0x08, 0x8e, - 0x1b, 0x3a, 0xb2, 0xab, 0x3e, 0xd2, 0x68, 0x64, 0x03, 0xca, 0xb8, 0x43, 0x8a, 0x69, 0x28, 0x17, - 0x0a, 0xc3, 0x3b, 0xa8, 0x8c, 0xcf, 0x57, 0x38, 0x2c, 0x0c, 0x69, 0x6c, 0x33, 0xaf, 0x8f, 0x13, - 0x4a, 0xb6, 0xc2, 0x41, 0x72, 0xc3, 0xeb, 0x93, 0x37, 0xa0, 0xe6, 0xd3, 0x76, 0x6a, 0xa3, 0x4f, - 0xb8, 0xed, 0x9e, 0x1a, 0x89, 0x88, 0x2a, 0x97, 0xe0, 0x8e, 0xe1, 0xae, 0x7b, 0x13, 0xe6, 0x63, - 0xd6, 0x39, 0xd3, 0x21, 0xd3, 0xa3, 0x3b, 0x75, 0x14, 0xc9, 0x30, 0x6f, 0xc0, 0x6c, 0x37, 0x8e, - 0x4e, 0xa9, 0xdc, 0x6f, 0xcc, 0x5c, 0xb2, 0xdf, 0x40, 0x19, 0xb1, 0xdf, 0x78, 0x03, 0x66, 0x4f, - 0x7b, 0x2c, 0xdb, 0xa1, 0x94, 0x2f, 0x41, 0xa0, 0x8c, 0x40, 0xdc, 0x85, 0x79, 0x6c, 0x89, 0x16, - 0xdc, 0x95, 0x11, 0xbf, 0xb0, 0xb1, 0x5a, 0x40, 0x7f, 0x05, 0x0c, 0xd1, 0x98, 0x67, 0x96, 0x65, - 0xd1, 0xe0, 0x41, 0x58, 0x94, 0x9e, 0x0d, 0x66, 0xd2, 0xec, 0x28, 0x0c, 0x65, 0x34, 0xd8, 0x7d, - 0xb8, 0x26, 0x60, 0xf4, 0x13, 0x0d, 0x69, 0xb7, 0xe3, 0x28, 0xb0, 0x59, 0x28, 0x43, 0x51, 0xd7, - 0xb0, 0x8a, 0xe2, 0x7b, 0x9f, 0xe4, 0x3a, 0xf6, 0xe3, 0x28, 0x68, 0x84, 0xe4, 0x1e, 0xac, 0xb2, - 0xc4, 0x0e, 0x7b, 0xbe, 0x6f, 0x3b, 0x4f, 0x9c, 0x98, 0xda, 0x09, 0x0d, 0x18, 0x8e, 0x08, 0xd6, - 0xe6, 0xb2, 0xb5, 0xc8, 0x92, 0x66, 0xcf, 0xf7, 0xb7, 0x38, 0xb3, 0x45, 0x03, 0x86, 0xe1, 0x7a, - 0x49, 0xfa, 0xd6, 0xbe, 0x48, 0xfa, 0xd6, 0xff, 0xbd, 0x08, 0x73, 0x03, 0x42, 0x64, 0x09, 0x8a, - 0xb2, 0xea, 0xaa, 0x14, 0x2e, 0x32, 0x8f, 0xdc, 0x03, 0x43, 0x6e, 0xb0, 0xf9, 0xfa, 0x4e, 0x58, - 0x2a, 0x8e, 0x0e, 0x88, 0x90, 0xe1, 0xff, 0x63, 0x71, 0xb8, 0x07, 0x46, 0xea, 0xc4, 0x1d, 0x9a, - 0x6a, 0xa8, 0xd1, 0x83, 0xa0, 0x9a, 0x90, 0xc9, 0x50, 0x9b, 0x40, 0x32, 0x5b, 0xf9, 0xa1, 0xab, - 0xbe, 0xc9, 0x32, 0x94, 0x9d, 0xec, 0x00, 0x76, 0x13, 0x48, 0x66, 0x29, 0xc7, 0xe8, 0x2b, 0x65, - 0x43, 0x59, 0xc9, 0x30, 0x6f, 0xc1, 0x4c, 0xdc, 0x16, 0x59, 0x3b, 0xad, 0x2f, 0x34, 0x07, 0xfa, - 0x43, 0x4b, 0xdd, 0xe9, 0xb8, 0x8d, 0x49, 0x2b, 0x70, 0x41, 0xe4, 0x51, 0x79, 0x3e, 0x34, 0x0e, - 0xa7, 0x9d, 0x10, 0x4d, 0xc7, 0x6d, 0xfe, 0x55, 0xff, 0x6e, 0x11, 0x2a, 0xd9, 0x41, 0xfb, 0xf3, - 0xe7, 0xb8, 0x5f, 0xe8, 0x26, 0x43, 0x4d, 0x82, 0xa5, 0x91, 0x49, 0x70, 0x05, 0xa6, 0x7b, 0x21, - 0xfb, 0xa4, 0x27, 0x96, 0x6e, 0x65, 0x4b, 0x7e, 0x5d, 0x32, 0x39, 0x4e, 0x5f, 0x32, 0x39, 0xbe, - 0x33, 0xb2, 0xe4, 0x9d, 0xb9, 0x6c, 0xc9, 0x3b, 0xb8, 0xe0, 0xad, 0x7f, 0xb7, 0x00, 0x95, 0xec, - 0x46, 0x81, 0x6c, 0x00, 0x68, 0x59, 0x58, 0x18, 0x89, 0x15, 0x8d, 0x4b, 0xee, 0x41, 0x2d, 0xee, - 0x86, 0x7a, 0xd6, 0x8a, 0x88, 0x94, 0xa7, 0xa5, 0x56, 0x37, 0x94, 0xd5, 0xab, 0x1b, 0x6a, 0x69, - 0x9b, 0x9d, 0x58, 0x4d, 0x3e, 0xe3, 0xc4, 0xaa, 0xfe, 0x69, 0x41, 0x3f, 0x72, 0x27, 0x6b, 0x30, - 0xc5, 0x23, 0x78, 0x9c, 0x47, 0x82, 0x41, 0x36, 0xa0, 0xc2, 0x9d, 0x11, 0x52, 0x63, 0xfd, 0x28, - 0xc7, 0xe2, 0x9f, 0x17, 0x75, 0xe1, 0x9f, 0x8a, 0x30, 0xab, 0xdd, 0x9c, 0x90, 0x57, 0xa0, 0xdc, - 0x89, 0xa3, 0x5e, 0xd7, 0x3e, 0xbd, 0x18, 0xe3, 0xc6, 0x0c, 0xf2, 0xb6, 0x2f, 0xc8, 0x1d, 0xa8, - 0x72, 0x47, 0x32, 0xd1, 0xd2, 0x38, 0x5f, 0x20, 0xee, 0x86, 0x1f, 0x4a, 0xc0, 0x2b, 0x50, 0x76, - 0x3a, 0x1d, 0xb1, 0xe3, 0x1b, 0x4d, 0xe9, 0x19, 0xa7, 0xd3, 0x91, 0x1b, 0x3c, 0xd4, 0x9b, 0x89, - 0x4e, 0x5d, 0xa6, 0x77, 0x4b, 0x02, 0xd6, 0xa0, 0x2c, 0x8e, 0x34, 0xa9, 0x37, 0xb0, 0xf6, 0xca, - 0xa8, 0x79, 0x3f, 0x4c, 0x3f, 0xeb, 0xf0, 0xf0, 0x5d, 0xa8, 0x76, 0x63, 0x8a, 0x86, 0x47, 0x73, - 0xee, 0x84, 0xed, 0xfb, 0x4e, 0x72, 0x76, 0x1c, 0xd3, 0xad, 0x4e, 0x87, 0x67, 0x19, 0x9f, 0x77, - 0xd4, 0xff, 0xf5, 0x1f, 0x16, 0xa0, 0x74, 0x12, 0x75, 0x9b, 0xe4, 0x35, 0x28, 0xe3, 0xca, 0x3f, - 0xef, 0x3b, 0x79, 0xc4, 0xbf, 0x7d, 0xd1, 0x48, 0x69, 0x60, 0xcd, 0x20, 0x77, 0xfb, 0x82, 0x5c, - 0x55, 0x37, 0x4e, 0x45, 0xed, 0xee, 0x40, 0x5e, 0x35, 0xbd, 0xd0, 0xb0, 0xf1, 0x7e, 0xca, 0xd7, - 0x7a, 0x59, 0xff, 0x0f, 0x9a, 0x9b, 0xcd, 0x24, 0xb6, 0x2f, 0xea, 0x4f, 0x61, 0x0a, 0x6f, 0xb4, - 0x72, 0xdb, 0x85, 0x67, 0xd8, 0x2e, 0x7e, 0x11, 0xdb, 0x93, 0xcf, 0xb3, 0xfd, 0x01, 0x94, 0x1e, - 0x32, 0xdf, 0x27, 0x2f, 0xc1, 0xb4, 0x1b, 0x85, 0x61, 0x63, 0x77, 0xc0, 0xb6, 0xa4, 0x71, 0xc7, - 0xc4, 0x2a, 0xad, 0xa8, 0x0d, 0xa3, 0x20, 0xd5, 0x3f, 0x2d, 0x81, 0xa9, 0xdc, 0x10, 0x7f, 0x59, - 0x14, 0xb6, 0x7a, 0x01, 0x2f, 0x0f, 0x64, 0x03, 0x16, 0x70, 0x7e, 0xea, 0xc6, 0x91, 0x4b, 0x13, - 0xbe, 0x62, 0xc3, 0xa4, 0x2e, 0xac, 0x97, 0xac, 0x79, 0xce, 0x38, 0x56, 0xf4, 0x26, 0x4f, 0xa0, - 0x85, 0xb0, 0x17, 0x70, 0x51, 0xaf, 0xe7, 0x52, 0xcf, 0x8e, 0xa3, 0x27, 0x89, 0x18, 0x05, 0x6b, - 0x3e, 0xec, 0x05, 0xc7, 0x92, 0x6e, 0x45, 0x4f, 0x12, 0xf2, 0x0a, 0xd4, 0xb8, 0x2c, 0x4b, 0x69, - 0xec, 0x88, 0xcc, 0x9f, 0x44, 0xc1, 0xb9, 0xb0, 0x17, 0x34, 0x32, 0xe2, 0xf0, 0xb5, 0x5d, 0x69, - 0xe4, 0xda, 0x6e, 0x0d, 0x66, 0xdd, 0x28, 0x74, 0x7b, 0x71, 0x4c, 0x43, 0xf7, 0x02, 0x0b, 0x60, - 0xc9, 0xd2, 0x49, 0xe4, 0x00, 0x96, 0x52, 0xd6, 0xe6, 0x21, 0x86, 0x8b, 0x72, 0x5e, 0x6c, 0xf0, - 0x0c, 0x66, 0x5a, 0xbf, 0x47, 0x93, 0x41, 0xc8, 0xcb, 0xfa, 0x8e, 0xe0, 0xdf, 0x9f, 0xb0, 0x88, - 0xc4, 0x69, 0x54, 0xee, 0x77, 0xdc, 0xe3, 0x3a, 0x92, 0x5e, 0xd0, 0x4d, 0xd5, 0x05, 0x43, 0xd5, - 0x9a, 0x8b, 0x7b, 0x3b, 0x39, 0x91, 0x3c, 0xc8, 0x8d, 0xe2, 0xba, 0x3a, 0x11, 0xdd, 0x29, 0xaf, - 0x35, 0x07, 0x8d, 0xf2, 0xb5, 0xb5, 0xec, 0xee, 0xcc, 0xa4, 0x46, 0x23, 0x2d, 0x58, 0x55, 0xba, - 0x42, 0x9a, 0x3e, 0x89, 0xe2, 0xf3, 0x4c, 0x9d, 0xb8, 0xed, 0xbc, 0x36, 0xa0, 0xae, 0x49, 0xd3, - 0x8f, 0xa3, 0xf8, 0x5c, 0x69, 0x5c, 0x96, 0xd8, 0xa6, 0x80, 0x4a, 0xf2, 0x76, 0x15, 0x60, 0x97, - 0xa6, 0x0e, 0xf3, 0xb1, 0x82, 0x77, 0x60, 0x49, 0xa2, 0xb3, 0x00, 0xc0, 0x63, 0x90, 0x23, 0x58, - 0xa4, 0x8a, 0x20, 0x8d, 0x32, 0xaa, 0x4a, 0xe8, 0x8d, 0xc1, 0x08, 0x1e, 0x0e, 0x1d, 0x8b, 0xd0, - 0x41, 0x0a, 0xa3, 0x49, 0xfd, 0x97, 0xe1, 0xaa, 0x34, 0x64, 0xd1, 0x0e, 0x8b, 0xc2, 0x66, 0x2f, - 0x38, 0x6a, 0x37, 0x42, 0x79, 0xa2, 0x79, 0x13, 0x66, 0x99, 0xfc, 0x5f, 0xcd, 0xa9, 0x15, 0x0b, - 0x14, 0xa9, 0xe1, 0x91, 0xeb, 0x00, 0x31, 0xe2, 0xe4, 0x25, 0x01, 0x1f, 0xec, 0x4a, 0xac, 0x34, - 0xd5, 0x7f, 0xf7, 0x16, 0x90, 0xd1, 0x91, 0x24, 0xf7, 0x60, 0xc9, 0x0b, 0xda, 0x4c, 0x5e, 0xa0, - 0x86, 0xd4, 0xb3, 0xbb, 0x8e, 0x7b, 0x2e, 0xc3, 0x78, 0xbb, 0x68, 0x16, 0x2c, 0x22, 0xf8, 0x2d, - 0xc1, 0x3e, 0xe6, 0x5c, 0x1d, 0x75, 0xce, 0xba, 0xdd, 0x0c, 0x55, 0x1c, 0x41, 0x09, 0xb6, 0x40, - 0xbd, 0x0d, 0xa6, 0x44, 0x79, 0x4e, 0xea, 0x64, 0x06, 0x31, 0x15, 0x44, 0x84, 0x2f, 0x0b, 0xfe, - 0xae, 0x93, 0x3a, 0xd2, 0x1e, 0x26, 0xc4, 0x30, 0x50, 0xda, 0x44, 0x60, 0x69, 0x04, 0x28, 0xb8, - 0x08, 0x7c, 0x07, 0x56, 0xd3, 0x28, 0x75, 0x7c, 0x5b, 0xc2, 0xe3, 0xc4, 0xf6, 0x23, 0xc7, 0xe3, - 0xbb, 0xb8, 0xa9, 0xcc, 0xd5, 0x45, 0x14, 0xd9, 0x45, 0x09, 0x2b, 0x39, 0x88, 0x1c, 0xef, 0x30, - 0x21, 0x77, 0x60, 0x69, 0x10, 0x49, 0x05, 0x6c, 0x1a, 0xcd, 0x2d, 0xe8, 0x10, 0x8a, 0x80, 0xaf, - 0x28, 0x53, 0x62, 0x2b, 0x90, 0x84, 0x4e, 0x37, 0x39, 0x8b, 0x52, 0x8e, 0x99, 0x41, 0x8c, 0xd0, - 0xb7, 0xcd, 0xb9, 0x2d, 0xc9, 0x3c, 0xc4, 0xbd, 0xb3, 0x1f, 0xb9, 0x8e, 0x6f, 0x8b, 0x91, 0x4a, - 0x30, 0x0b, 0x4a, 0x56, 0x15, 0x89, 0x22, 0x0e, 0xb0, 0x20, 0xc4, 0x34, 0x88, 0x52, 0x9a, 0x49, - 0x55, 0x44, 0x41, 0x10, 0x54, 0x25, 0xf6, 0x2a, 0xcc, 0xf7, 0x12, 0x1a, 0x0b, 0x5f, 0x4f, 0x2f, - 0x52, 0x2a, 0xf6, 0xaa, 0x25, 0x6b, 0x8e, 0x93, 0xb9, 0x9f, 0x78, 0x79, 0x43, 0xde, 0x84, 0x65, - 0xe1, 0xaa, 0x4f, 0x9d, 0x38, 0x54, 0x80, 0x20, 0xc1, 0x6d, 0x6a, 0xc9, 0x22, 0xc8, 0x3c, 0x10, - 0x3c, 0xd9, 0xba, 0xaf, 0xc2, 0x35, 0x8f, 0x25, 0x7c, 0x92, 0x42, 0x59, 0xd7, 0x71, 0xcf, 0xa8, - 0x7d, 0xc6, 0x52, 0x69, 0xa6, 0x8a, 0xc0, 0x55, 0x21, 0xc2, 0x21, 0x3b, 0x5c, 0xe0, 0x3e, 0x4b, - 0x85, 0xc1, 0xaf, 0xc3, 0x4b, 0xa3, 0xe8, 0x80, 0x25, 0x89, 0x84, 0xcf, 0x21, 0xdc, 0x1c, 0x82, - 0x1f, 0xb2, 0x24, 0x11, 0xf8, 0xb7, 0xc0, 0x1c, 0x1e, 0x46, 0xf7, 0x8c, 0xba, 0xe7, 0xdc, 0xe7, - 0x9a, 0xd6, 0xb9, 0x6a, 0x0c, 0x77, 0x38, 0xf3, 0x30, 0xe1, 0x8b, 0xbc, 0x24, 0x75, 0xd4, 0xe8, - 0xa9, 0xbe, 0x9b, 0x47, 0x84, 0x81, 0x1c, 0x6e, 0x4c, 0x75, 0xdf, 0x55, 0x28, 0x27, 0xb4, 0x13, - 0xd0, 0x30, 0x4d, 0xf0, 0xaa, 0xbf, 0x64, 0x65, 0xdf, 0x22, 0xb9, 0x1c, 0x75, 0xcf, 0xb5, 0xa0, - 0x92, 0xcb, 0x11, 0x97, 0x5c, 0x9c, 0xed, 0x51, 0x3f, 0x75, 0x44, 0x48, 0x12, 0xc1, 0x46, 0x0a, - 0x86, 0xe1, 0x4d, 0x98, 0x15, 0x6c, 0xd1, 0xdc, 0x45, 0xe4, 0x0b, 0x84, 0x68, 0xe0, 0xab, 0x30, - 0x1f, 0x3c, 0x76, 0x5d, 0x9b, 0x85, 0xdd, 0x5e, 0x2a, 0x94, 0x2c, 0x89, 0x91, 0xe3, 0xe4, 0x06, - 0xa7, 0xa2, 0xa2, 0x75, 0x30, 0x34, 0x39, 0xa1, 0x6d, 0x19, 0x05, 0x6b, 0x99, 0xa0, 0xd0, 0xa8, - 0x24, 0xa3, 0x5e, 0x9a, 0xa9, 0x5c, 0xc9, 0x25, 0x8f, 0x90, 0x8c, 0x3a, 0xd7, 0xa0, 0xea, 0x07, - 0x98, 0x53, 0x42, 0x6a, 0x55, 0x78, 0xe7, 0x07, 0x3c, 0x91, 0x50, 0xe2, 0x7d, 0xb8, 0xaa, 0x87, - 0x36, 0x1a, 0x97, 0xb7, 0xc0, 0x41, 0x62, 0x9a, 0x62, 0xec, 0xf3, 0xe8, 0x6e, 0xe4, 0xfc, 0x43, - 0x2d, 0xd8, 0x04, 0xf8, 0x94, 0xa5, 0x81, 0xd3, 0xe5, 0xb8, 0x2b, 0x5a, 0xb0, 0x21, 0x6e, 0x1b, - 0x59, 0x87, 0x09, 0x79, 0x1d, 0x16, 0x03, 0x16, 0xda, 0x22, 0x2f, 0x72, 0x43, 0x57, 0xc5, 0xb8, - 0x05, 0x2c, 0x3c, 0xe0, 0x9c, 0x96, 0xb2, 0xc0, 0xc5, 0x9d, 0xfe, 0x88, 0xf8, 0x35, 0x29, 0xee, - 0xf4, 0x07, 0xc5, 0xef, 0xc0, 0x12, 0xd7, 0x2e, 0x13, 0x2a, 0x97, 0x7f, 0x49, 0x64, 0x76, 0xc0, - 0x42, 0x0b, 0x59, 0x03, 0x00, 0xa7, 0x3f, 0x0a, 0xb8, 0x2e, 0x01, 0x4e, 0x7f, 0x08, 0x70, 0x0c, - 0x8b, 0x32, 0xd6, 0xec, 0xa8, 0x6d, 0xab, 0x12, 0x6d, 0xde, 0xc0, 0x99, 0x61, 0x6d, 0x60, 0x42, - 0x1a, 0x53, 0xe9, 0xad, 0x05, 0x09, 0xd6, 0x8a, 0x7f, 0x5e, 0x00, 0x71, 0x50, 0x07, 0x2a, 0xe7, - 0x4d, 0xbd, 0x00, 0x1e, 0x3e, 0x76, 0xdd, 0xf1, 0x95, 0x53, 0x00, 0xf5, 0xca, 0xb9, 0x36, 0x02, - 0xd4, 0x2a, 0xe7, 0x07, 0x70, 0x5d, 0x02, 0xfd, 0x40, 0x6d, 0xc0, 0x07, 0xcc, 0xde, 0x42, 0xf4, - 0x15, 0x21, 0x74, 0x10, 0x88, 0x6d, 0xa1, 0x6e, 0x7a, 0xac, 0x06, 0xdd, 0x7e, 0x7d, 0xac, 0x06, - 0xcd, 0x87, 0x7b, 0xb0, 0xfa, 0x18, 0x2f, 0x34, 0x6d, 0xe6, 0xf5, 0x45, 0xe1, 0xc6, 0xe3, 0x87, - 0xe4, 0xae, 0xe9, 0x21, 0x76, 0x51, 0xb0, 0x1b, 0x5e, 0x9f, 0x57, 0xed, 0xfd, 0x38, 0x0a, 0x5a, - 0x77, 0xc9, 0x3b, 0x70, 0x65, 0x2c, 0xca, 0x63, 0xc9, 0xb9, 0x49, 0x45, 0x9b, 0x47, 0x70, 0xbb, - 0x2c, 0x39, 0x27, 0xef, 0xc1, 0xd5, 0xb1, 0x48, 0xac, 0x57, 0x66, 0x1b, 0xa1, 0x2b, 0x23, 0x50, - 0xac, 0x55, 0xe3, 0x7c, 0x55, 0xe7, 0x85, 0x9d, 0x31, 0xbe, 0xca, 0xf3, 0xc2, 0x41, 0x5f, 0xc5, - 0x4d, 0x65, 0x86, 0x3b, 0x1b, 0xf2, 0x55, 0x5c, 0x57, 0x66, 0x27, 0x8d, 0x37, 0x47, 0x91, 0x8f, - 0x59, 0xc2, 0x52, 0xbe, 0x0c, 0x8d, 0x3c, 0x9a, 0x98, 0x0c, 0xf1, 0xd7, 0x86, 0xf0, 0x1f, 0x09, - 0x99, 0x26, 0x17, 0x21, 0xf7, 0xe1, 0xd6, 0xa8, 0x16, 0x8f, 0x25, 0xae, 0x13, 0x7b, 0x99, 0x9e, - 0x47, 0xa8, 0xe7, 0xfa, 0x90, 0x9e, 0x5d, 0x25, 0x25, 0x34, 0xbd, 0x0f, 0xd7, 0x34, 0x4d, 0x58, - 0x2b, 0x1f, 0x53, 0x37, 0x6b, 0xcb, 0xf9, 0x50, 0xe7, 0xf1, 0xba, 0xfb, 0x11, 0x75, 0x65, 0x63, - 0xb6, 0xe0, 0xc6, 0x30, 0x18, 0x0f, 0x93, 0x92, 0x0c, 0xef, 0x8b, 0x58, 0x19, 0xc0, 0x1f, 0xa1, - 0x48, 0xde, 0x93, 0xd9, 0xfd, 0xd6, 0x48, 0xb4, 0xf4, 0xf1, 0x0e, 0x70, 0x59, 0x09, 0x0c, 0xc6, - 0xcb, 0x57, 0xe1, 0xda, 0x25, 0x48, 0x8c, 0x98, 0x0b, 0xc4, 0xae, 0x8e, 0xc1, 0x62, 0xcc, 0x7c, - 0x1d, 0x5e, 0xba, 0x04, 0x2d, 0xa2, 0xe6, 0x29, 0xc2, 0xcd, 0x31, 0x70, 0x11, 0x37, 0x63, 0xfd, - 0x56, 0xad, 0xfe, 0x15, 0x11, 0x01, 0x43, 0x60, 0xd9, 0xe2, 0x61, 0xbf, 0x87, 0xa2, 0xe7, 0x57, - 0x45, 0x59, 0xd6, 0xb0, 0x03, 0xf1, 0x73, 0x1f, 0x6e, 0x8d, 0x43, 0x0f, 0x2e, 0xe7, 0x7e, 0x0d, - 0x9d, 0xbf, 0x3e, 0xa2, 0x63, 0x60, 0x55, 0xf7, 0xee, 0x50, 0x0b, 0xc4, 0x61, 0xb5, 0xcc, 0xf1, - 0x5f, 0x17, 0xe3, 0xae, 0x69, 0x10, 0xe7, 0xd2, 0x22, 0xc1, 0x2f, 0x73, 0x02, 0xcf, 0x4b, 0x94, - 0x8a, 0xdf, 0x10, 0xe1, 0x37, 0xea, 0x84, 0x94, 0x42, 0x4d, 0x5f, 0x83, 0x6b, 0xed, 0x34, 0xb1, - 0x43, 0x75, 0x3e, 0x19, 0xd0, 0x20, 0x8a, 0x2f, 0xec, 0x30, 0x42, 0x6f, 0xcc, 0xef, 0x15, 0xc4, - 0x28, 0xb6, 0xd3, 0xa4, 0x29, 0x4e, 0x25, 0x85, 0x40, 0x53, 0xf0, 0xf9, 0x24, 0xa5, 0xc1, 0x53, - 0x16, 0x5e, 0x88, 0x66, 0x98, 0xbf, 0x2f, 0x80, 0x0b, 0x0a, 0x78, 0xc2, 0xc2, 0x0b, 0x6c, 0x01, - 0x5f, 0xef, 0x0d, 0x43, 0x94, 0xb5, 0xef, 0x0b, 0xd0, 0xa2, 0x0e, 0x52, 0x96, 0xee, 0xc0, 0x92, - 0x06, 0xf3, 0x82, 0xb6, 0x34, 0xf4, 0x07, 0x02, 0x63, 0x28, 0xcc, 0x6e, 0xd0, 0x16, 0x76, 0xee, - 0xc2, 0xca, 0x10, 0x40, 0x99, 0xf9, 0x43, 0x01, 0x21, 0x1a, 0x44, 0x59, 0xd9, 0x81, 0x1b, 0x1c, - 0xc4, 0xfb, 0xef, 0x92, 0x1e, 0xf9, 0x23, 0xb1, 0x4f, 0xbd, 0xda, 0x4e, 0x13, 0xde, 0x81, 0xe3, - 0x3a, 0xe5, 0x6d, 0x30, 0x07, 0x95, 0x68, 0xfd, 0xf2, 0xc7, 0x02, 0xbe, 0xa4, 0xc1, 0xf3, 0xae, - 0x79, 0x1f, 0xae, 0x8e, 0x01, 0x2a, 0xcb, 0x3f, 0x10, 0xd0, 0x95, 0x21, 0xa8, 0xb2, 0x2a, 0xfb, - 0x35, 0x07, 0xe7, 0x7d, 0xf4, 0x27, 0x02, 0xb9, 0xa8, 0x21, 0xb3, 0x6e, 0x7a, 0x17, 0xae, 0x8c, - 0xc2, 0x94, 0xc9, 0x3f, 0x15, 0xc0, 0xe5, 0x41, 0xe0, 0xd0, 0xe0, 0xe7, 0xd9, 0x87, 0xcb, 0x95, - 0x20, 0x31, 0xff, 0x4c, 0xc0, 0xf8, 0xe0, 0xab, 0xd4, 0xe3, 0x2c, 0xb1, 0xd8, 0x1f, 0x80, 0x68, - 0x09, 0xff, 0xe7, 0xf9, 0xe0, 0x8f, 0x24, 0xfb, 0x07, 0x70, 0x7d, 0x0c, 0x4c, 0x1c, 0x3f, 0xf2, - 0x49, 0xd0, 0xfc, 0xa1, 0x00, 0x9b, 0x43, 0x60, 0x94, 0xd8, 0x67, 0x3e, 0xe5, 0x49, 0x3f, 0xaa, - 0x21, 0x91, 0x2f, 0x60, 0xef, 0x9a, 0x7f, 0x21, 0xf0, 0x2b, 0x83, 0xf8, 0x16, 0xf2, 0x5b, 0x77, - 0xc7, 0xdb, 0x97, 0x68, 0x2c, 0x76, 0x7f, 0x39, 0xd6, 0xbe, 0xc0, 0x63, 0xb9, 0x5b, 0x07, 0x43, - 0x69, 0x90, 0xc9, 0x1a, 0x9a, 0x7f, 0x25, 0x40, 0x73, 0x02, 0x24, 0x92, 0xb3, 0xa9, 0x77, 0x91, - 0xaa, 0x4c, 0xaa, 0x5f, 0xff, 0x3a, 0x1f, 0xc7, 0xbc, 0x2c, 0xc9, 0x9e, 0x95, 0xe1, 0xce, 0x61, - 0x5e, 0xa0, 0x90, 0x58, 0x07, 0xfe, 0x46, 0xa0, 0x88, 0x40, 0xed, 0x06, 0x02, 0x27, 0xb3, 0xff, - 0x25, 0x0d, 0x24, 0xec, 0xe0, 0x2c, 0xc2, 0xa9, 0x41, 0x62, 0xfe, 0x28, 0x0f, 0x39, 0x84, 0xa2, - 0x31, 0x3e, 0x85, 0xec, 0xa7, 0xc9, 0x61, 0x42, 0x76, 0xe0, 0xe6, 0x78, 0xb8, 0x9c, 0x84, 0x82, - 0xc4, 0xfc, 0x5b, 0xa1, 0xe1, 0xca, 0x88, 0x06, 0x31, 0x09, 0x1d, 0x26, 0x2a, 0x5b, 0xb8, 0x12, - 0x0c, 0x77, 0xdd, 0xf5, 0xbf, 0xcb, 0xb3, 0xa5, 0xe1, 0xf5, 0x79, 0xb4, 0x6b, 0xce, 0x6f, 0x89, - 0x5c, 0xcd, 0x80, 0xa3, 0xee, 0xff, 0xbd, 0x80, 0x9b, 0x39, 0x7c, 0xa8, 0x01, 0x1f, 0xc2, 0xad, - 0xcb, 0x54, 0xe4, 0x4d, 0xf8, 0x07, 0xa1, 0xe5, 0xda, 0x18, 0x2d, 0x59, 0x23, 0xe4, 0xa0, 0x9d, - 0xc6, 0xbd, 0x94, 0xea, 0x5a, 0x82, 0xc4, 0xfc, 0xc7, 0x7c, 0xd0, 0xb6, 0x39, 0x3b, 0x03, 0x1f, - 0x26, 0x2a, 0xf9, 0x74, 0x98, 0x6c, 0x7e, 0x90, 0x98, 0x3f, 0xce, 0x93, 0x2f, 0x07, 0x8a, 0xf6, - 0x1f, 0x26, 0xf5, 0x1f, 0x15, 0xb2, 0x63, 0x09, 0xfd, 0x5c, 0xe7, 0x65, 0xa8, 0x05, 0x2c, 0x3c, - 0x69, 0x1d, 0x89, 0x23, 0xa2, 0xec, 0x5c, 0xad, 0x2a, 0xa8, 0x5c, 0xb4, 0x89, 0xc1, 0xd2, 0x65, - 0x5d, 0xea, 0xb3, 0x90, 0xda, 0x9f, 0xf4, 0x68, 0x8f, 0x66, 0xd2, 0xe2, 0xf8, 0x63, 0x51, 0x71, - 0xbf, 0xc9, 0x99, 0x12, 0xf4, 0x36, 0x98, 0x19, 0xe8, 0x34, 0xa6, 0xce, 0x39, 0x8d, 0x33, 0x98, - 0x3c, 0x85, 0x50, 0xfc, 0x6d, 0xc1, 0x16, 0xc0, 0xfa, 0x7f, 0x14, 0x60, 0x79, 0xec, 0x39, 0x12, - 0xaf, 0x20, 0xe2, 0xee, 0x12, 0xdf, 0x01, 0x26, 0x34, 0x54, 0xdb, 0x6f, 0x19, 0xb2, 0xc8, 0xfc, - 0x76, 0x14, 0xe2, 0xab, 0x64, 0xb1, 0x3f, 0x7b, 0x1b, 0x4c, 0x0d, 0x22, 0x9f, 0xf6, 0x4b, 0x54, - 0x51, 0x4d, 0xfb, 0x12, 0x25, 0x9f, 0x4d, 0x66, 0x9b, 0x77, 0x16, 0xa6, 0x63, 0x6c, 0x4d, 0x2a, - 0x5b, 0xe9, 0x58, 0x5b, 0xe9, 0x78, 0x5b, 0x25, 0x65, 0x2b, 0x1d, 0xb5, 0x55, 0x7f, 0x0a, 0xa5, - 0x56, 0x14, 0xa7, 0xe4, 0x55, 0x98, 0x39, 0xc5, 0xe3, 0xd5, 0x64, 0xfc, 0xf1, 0xb2, 0x64, 0x92, - 0x97, 0x61, 0x8e, 0x25, 0xf8, 0xe0, 0xc1, 0xf1, 0x39, 0x50, 0x9c, 0xa8, 0x5a, 0x83, 0xc4, 0x17, - 0xbc, 0x1f, 0xf8, 0x9d, 0x22, 0x18, 0xe2, 0x8d, 0xfd, 0x7e, 0xec, 0x04, 0x74, 0x3b, 0xea, 0x85, - 0x1e, 0xb9, 0x03, 0x25, 0xed, 0xfa, 0x7a, 0x59, 0x7f, 0x89, 0x8f, 0x02, 0xda, 0x75, 0x16, 0x0a, - 0x92, 0x3a, 0x54, 0x7a, 0xe1, 0x29, 0x67, 0x51, 0x6f, 0xe0, 0x7c, 0x37, 0x27, 0x93, 0x15, 0x98, - 0x8e, 0xda, 0xed, 0x84, 0xa6, 0xb2, 0x0b, 0xe5, 0x17, 0x59, 0x87, 0x8a, 0xeb, 0xf8, 0xee, 0x7e, - 0x2f, 0x74, 0xd5, 0x1b, 0x59, 0xfd, 0xea, 0x20, 0x67, 0x92, 0xff, 0x07, 0xb3, 0x6d, 0xee, 0xa4, - 0x8d, 0x2f, 0x79, 0xe4, 0xaf, 0x43, 0x06, 0xee, 0x75, 0x90, 0x8d, 0x8f, 0x7e, 0xc8, 0x7b, 0x30, - 0xe7, 0x06, 0x5d, 0x71, 0x92, 0xa5, 0xdd, 0xce, 0xc9, 0x9f, 0x73, 0xa0, 0xcc, 0x4e, 0xd0, 0xdd, - 0x75, 0x52, 0x07, 0xaf, 0x8d, 0x67, 0xdd, 0xfc, 0xa3, 0xfe, 0xbd, 0x02, 0xcc, 0x6a, 0x9d, 0xf2, - 0xac, 0xfe, 0x40, 0x81, 0x91, 0xfe, 0xf8, 0x32, 0x4c, 0x25, 0xa9, 0x23, 0x47, 0x26, 0xfb, 0x0d, - 0xc9, 0x70, 0x3f, 0x5b, 0x42, 0x88, 0xac, 0xc3, 0x24, 0x0d, 0xd5, 0x38, 0x5d, 0x26, 0xcb, 0x45, - 0xea, 0xff, 0x5c, 0x80, 0x69, 0xc1, 0x21, 0xaf, 0x41, 0xa5, 0xdd, 0x0b, 0x5d, 0x1b, 0x2f, 0xe4, - 0x46, 0x6f, 0x72, 0xca, 0x9c, 0xb9, 0x4b, 0x13, 0x77, 0xe4, 0x38, 0xbf, 0xf8, 0x9c, 0xe3, 0xfc, - 0x81, 0x6b, 0x8e, 0xc9, 0x67, 0x5d, 0x73, 0xbc, 0x06, 0x53, 0xd8, 0xe1, 0xf2, 0x61, 0xda, 0xc2, - 0x88, 0xe7, 0x96, 0xe0, 0xe7, 0xa1, 0x38, 0xf5, 0xac, 0x50, 0xfc, 0x06, 0x54, 0xf1, 0x36, 0x89, - 0x85, 0x1d, 0xde, 0x04, 0x72, 0x07, 0xe6, 0x3a, 0xf2, 0x5b, 0xbc, 0x07, 0x1c, 0x6d, 0x65, 0xb5, - 0xa3, 0x01, 0xea, 0xf7, 0x61, 0x56, 0x29, 0x68, 0xd1, 0x94, 0xbc, 0x0b, 0xb5, 0x01, 0xbc, 0xca, - 0x2a, 0x79, 0x9b, 0xa8, 0xdb, 0xb2, 0xe6, 0x74, 0x45, 0x49, 0xfd, 0xd3, 0x02, 0x4c, 0x8b, 0x1f, - 0x64, 0x90, 0xb7, 0x34, 0x2f, 0x12, 0x9a, 0x2a, 0x25, 0x0b, 0x83, 0x4a, 0x5a, 0x34, 0xcd, 0x9d, - 0x69, 0xd1, 0x34, 0x79, 0xc1, 0xbb, 0x16, 0x13, 0x66, 0x1e, 0xd3, 0x18, 0x7f, 0x25, 0x20, 0xb2, - 0x42, 0x7d, 0xd6, 0x5f, 0x87, 0x0a, 0xf7, 0x45, 0x3c, 0x01, 0x7f, 0xee, 0xcd, 0x61, 0xfd, 0xf7, - 0x0a, 0x30, 0x23, 0x7f, 0x42, 0x42, 0x6e, 0x03, 0x74, 0xe3, 0xe8, 0xd1, 0x40, 0xa3, 0xe7, 0x73, - 0x88, 0xf8, 0xad, 0x40, 0x85, 0x8b, 0x88, 0x9b, 0xc4, 0x7b, 0xb0, 0xd2, 0xa1, 0x21, 0x8d, 0xf1, - 0x35, 0x8d, 0x3c, 0xc9, 0x12, 0xaf, 0x48, 0x8b, 0xf8, 0x8a, 0x74, 0x29, 0xe3, 0x8a, 0xf3, 0x2c, - 0xf1, 0x9c, 0xf4, 0xc5, 0xea, 0xcb, 0xab, 0x50, 0x1b, 0xfc, 0xa1, 0x0a, 0x59, 0x52, 0xf7, 0x40, - 0xe2, 0x6c, 0x5d, 0x7c, 0x6c, 0x7c, 0x67, 0x52, 0xfc, 0x66, 0x0d, 0xef, 0xc6, 0x17, 0x60, 0x8e, - 0xff, 0xcd, 0x9e, 0x72, 0x19, 0x13, 0x8a, 0x94, 0xdd, 0x7c, 0x1b, 0x05, 0x45, 0xca, 0xae, 0x7d, - 0x8d, 0x22, 0x59, 0x84, 0x79, 0x4e, 0xd2, 0x2e, 0x3c, 0x8d, 0x49, 0x52, 0x85, 0x32, 0x6a, 0x8b, - 0xba, 0x4d, 0xa3, 0x44, 0xe6, 0xa0, 0xc2, 0xbf, 0xf0, 0xb2, 0xcc, 0x98, 0xca, 0x94, 0xe0, 0xa1, - 0xd2, 0x56, 0xa7, 0x63, 0x4c, 0x2b, 0xf9, 0x07, 0x11, 0x0b, 0x8d, 0x19, 0xf5, 0xf5, 0x90, 0xf9, - 0xbe, 0x51, 0x26, 0x2b, 0x40, 0xf8, 0xd7, 0xe0, 0xcf, 0x5f, 0x8c, 0x0a, 0x31, 0x61, 0x49, 0xa7, - 0xab, 0x17, 0xf8, 0x06, 0x10, 0x02, 0x35, 0xce, 0xc9, 0xaf, 0x81, 0x8d, 0x59, 0x72, 0x15, 0x56, - 0x90, 0x36, 0xf2, 0x66, 0xcd, 0xa8, 0x2a, 0x7b, 0xbc, 0x84, 0x1b, 0x73, 0xa4, 0x06, 0xc0, 0xbf, - 0x44, 0x4e, 0x19, 0x35, 0xf5, 0x2d, 0x46, 0xda, 0x98, 0x27, 0xf3, 0x30, 0x9b, 0x7f, 0x6f, 0x1a, - 0x86, 0x72, 0x70, 0xb0, 0xcf, 0x8d, 0x05, 0x25, 0x28, 0x7f, 0xe2, 0x61, 0x10, 0xd5, 0xf0, 0xec, - 0xe7, 0x11, 0xc6, 0xe2, 0xc6, 0x3b, 0x50, 0xd5, 0x1f, 0xf0, 0x73, 0xcc, 0xb1, 0x93, 0x24, 0x27, - 0x67, 0x71, 0xd4, 0xeb, 0x9c, 0x19, 0x13, 0xbc, 0xef, 0x32, 0xc5, 0x46, 0x81, 0x94, 0xa1, 0x74, - 0xdf, 0x49, 0xce, 0x8c, 0xe2, 0xc6, 0xfb, 0x30, 0x3f, 0xf4, 0xbb, 0x16, 0xce, 0x6c, 0x1e, 0x35, - 0xf7, 0x8c, 0x09, 0xfe, 0xdf, 0xfe, 0x56, 0xeb, 0xc4, 0x28, 0x90, 0x25, 0x30, 0xee, 0x37, 0x3e, - 0xbc, 0x6f, 0xef, 0x1c, 0x1d, 0x1e, 0x5b, 0x7b, 0xad, 0x56, 0xe3, 0xa8, 0x69, 0x14, 0x37, 0x6e, - 0x03, 0xe4, 0x4f, 0x3c, 0x49, 0x05, 0xa6, 0xf0, 0x20, 0x51, 0x00, 0x4f, 0xd8, 0xc3, 0x8f, 0x8c, - 0x02, 0x99, 0x85, 0x19, 0xb9, 0x24, 0x30, 0x8a, 0x1b, 0x77, 0x61, 0x5e, 0x3c, 0xc0, 0xc7, 0x60, - 0x78, 0xc8, 0x42, 0x3e, 0xb7, 0x90, 0x46, 0xf3, 0xa3, 0xad, 0x83, 0xc6, 0xae, 0xdd, 0x68, 0xee, - 0xee, 0x7d, 0xcb, 0x7e, 0xd8, 0x68, 0xee, 0x0a, 0x0d, 0xf7, 0x9b, 0xad, 0x8f, 0x8d, 0xc2, 0xc6, - 0x29, 0x2c, 0x8d, 0x7b, 0xb5, 0x4f, 0xae, 0xc1, 0xaa, 0x42, 0xee, 0x36, 0x5a, 0x27, 0x5b, 0xcd, - 0x9d, 0x3d, 0xfb, 0x70, 0xef, 0xc4, 0x6a, 0xec, 0x18, 0x13, 0x64, 0x1a, 0x8a, 0x07, 0x6f, 0x1a, - 0x05, 0xfc, 0xbb, 0x69, 0x14, 0x09, 0xc0, 0xf4, 0xce, 0x51, 0xab, 0xd1, 0xdc, 0x33, 0x26, 0x79, - 0xff, 0x35, 0x9a, 0xcd, 0x3d, 0xcb, 0x3e, 0xb6, 0x8e, 0x76, 0xff, 0xff, 0xce, 0x89, 0x51, 0xda, - 0x78, 0x33, 0xff, 0xfd, 0x01, 0x36, 0x65, 0x09, 0x8c, 0x46, 0xf8, 0xd8, 0xf1, 0x99, 0x97, 0xd1, - 0x8c, 0x09, 0xde, 0x96, 0x23, 0x51, 0x40, 0x8d, 0xc2, 0xc6, 0x2f, 0xe5, 0x8f, 0xc9, 0x11, 0xb2, - 0x0a, 0x8b, 0xfa, 0xb7, 0x84, 0x1b, 0x13, 0xc3, 0x8c, 0x66, 0xd4, 0x72, 0xa3, 0x98, 0x1a, 0x05, - 0x72, 0x05, 0x96, 0x75, 0xc6, 0xc7, 0x2c, 0x3d, 0x13, 0xac, 0xe2, 0xc6, 0xb7, 0x86, 0xde, 0x46, - 0xab, 0x41, 0x1d, 0xd4, 0x2c, 0x43, 0x4a, 0xf4, 0x8e, 0x51, 0x20, 0x06, 0x54, 0xa5, 0x00, 0x1e, - 0x04, 0x18, 0x45, 0x45, 0xd9, 0xef, 0xf9, 0x7e, 0x4a, 0xfb, 0xa9, 0x31, 0xb9, 0xf1, 0xe3, 0x02, - 0x94, 0xd5, 0x73, 0xb6, 0x3c, 0x35, 0x43, 0x1a, 0x63, 0xd2, 0x4c, 0x90, 0x65, 0x58, 0xc0, 0x24, - 0xa3, 0xed, 0xf4, 0xa8, 0x97, 0x4a, 0x72, 0x41, 0x05, 0xa7, 0xc5, 0x3a, 0x67, 0x1a, 0x3d, 0x33, - 0xa0, 0x1e, 0x25, 0x19, 0x93, 0xbc, 0xeb, 0x30, 0x91, 0xc3, 0x94, 0x65, 0xd4, 0x12, 0x6f, 0xeb, - 0x80, 0xda, 0x8c, 0x35, 0x45, 0xae, 0xc3, 0x15, 0x05, 0x18, 0x65, 0x4f, 0x6f, 0xac, 0x41, 0x55, - 0x7f, 0x46, 0xa7, 0x2c, 0xf2, 0xf0, 0x15, 0x2e, 0x6f, 0xbc, 0x07, 0x0b, 0x23, 0x4f, 0x76, 0xf8, - 0xc0, 0x37, 0x9a, 0x62, 0xcc, 0x0e, 0x1b, 0x4d, 0xfb, 0x70, 0xeb, 0x5b, 0xa2, 0x83, 0xb6, 0x0f, - 0x8e, 0x8e, 0x0e, 0xed, 0xfd, 0xc6, 0xc1, 0xc9, 0x9e, 0x65, 0x14, 0x37, 0x36, 0x86, 0xb0, 0x98, - 0x00, 0x3c, 0x90, 0x8f, 0x76, 0xb6, 0x0e, 0x8c, 0x09, 0x1e, 0x37, 0x1f, 0x1e, 0x1c, 0x6d, 0x6f, - 0x1d, 0x18, 0x85, 0x8d, 0x6d, 0x58, 0x18, 0x79, 0x6e, 0xc0, 0x07, 0x65, 0x3f, 0x8a, 0x5d, 0x2a, - 0x48, 0x22, 0x70, 0xb7, 0x7a, 0x69, 0x64, 0x14, 0x78, 0xfd, 0x40, 0x96, 0xa8, 0x50, 0x2c, 0xec, - 0x18, 0xc5, 0x8d, 0x6f, 0xc0, 0xfc, 0xd0, 0x6a, 0x8c, 0xa7, 0xe6, 0x7e, 0xe4, 0xfb, 0xd1, 0x13, - 0x2e, 0x81, 0x99, 0x7a, 0xcc, 0x57, 0xa0, 0x1e, 0xff, 0x2c, 0xf0, 0x31, 0xde, 0xc1, 0xcb, 0xe8, - 0xd4, 0x8a, 0x9e, 0x18, 0xc5, 0x8d, 0x23, 0x30, 0x86, 0x57, 0x40, 0x64, 0x06, 0x26, 0x1b, 0x61, - 0x6a, 0x4c, 0x70, 0xc7, 0xf7, 0xfd, 0xc8, 0x49, 0x45, 0xde, 0xed, 0x52, 0x97, 0x05, 0x8e, 0x6f, - 0x14, 0x79, 0x65, 0xda, 0x75, 0x52, 0x7a, 0xc2, 0x02, 0x2a, 0xaa, 0xea, 0x6e, 0x4f, 0xdc, 0x91, - 0x1b, 0x25, 0x9e, 0x93, 0x43, 0xeb, 0x21, 0xde, 0x04, 0xbe, 0xf1, 0x12, 0xcd, 0x47, 0x6b, 0x89, - 0x51, 0xc0, 0xae, 0xe0, 0xd3, 0x64, 0x62, 0x14, 0xb7, 0xdf, 0xfd, 0xf9, 0x8f, 0xca, 0x85, 0x9f, - 0x7c, 0x76, 0xa3, 0xf0, 0xd3, 0xcf, 0x6e, 0x14, 0xfe, 0xed, 0xb3, 0x1b, 0x85, 0xdf, 0xfe, 0xfc, - 0xc6, 0xc4, 0xf7, 0x3f, 0xbf, 0x31, 0xf1, 0xd3, 0xcf, 0x6f, 0x4c, 0xfc, 0xfc, 0xf3, 0x1b, 0x13, - 0xb0, 0xec, 0x46, 0xc1, 0x6d, 0x3e, 0xa5, 0xba, 0x4e, 0xf7, 0x76, 0xca, 0xbc, 0x53, 0x9c, 0x64, - 0x8e, 0x0b, 0xff, 0x15, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x20, 0xae, 0x70, 0x40, 0x3d, 0x00, 0x00, + // 5744 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7b, 0xc9, 0x73, 0x1c, 0xc9, + 0x75, 0x37, 0xba, 0xd1, 0x00, 0xba, 0x5f, 0x37, 0x1a, 0x85, 0xc4, 0x56, 0x24, 0x87, 0x24, 0xd8, + 0x9a, 0x05, 0x81, 0x4f, 0x43, 0xce, 0x80, 0xd4, 0xac, 0x5a, 0x06, 0xeb, 0xb0, 0x87, 0x40, 0x83, + 0xaa, 0x86, 0x66, 0x14, 0xfa, 0xbe, 0xf8, 0x2a, 0x0a, 0x55, 0xd9, 0x8d, 0x24, 0x6a, 0xe9, 0xa9, + 0xaa, 0x26, 0x1b, 0xe3, 0x6d, 0x7c, 0xb5, 0x2f, 0x0e, 0xcb, 0x96, 0xe5, 0x45, 0x5e, 0xe4, 0x4d, + 0xde, 0x14, 0xe1, 0xff, 0xc0, 0x47, 0x1d, 0x15, 0x3a, 0x29, 0x7c, 0x70, 0x38, 0x66, 0x4e, 0x3e, + 0xf9, 0xee, 0x93, 0x23, 0x5f, 0x66, 0x56, 0x65, 0x2f, 0x20, 0x39, 0xb6, 0xc2, 0xe1, 0x13, 0x50, + 0xef, 0xbd, 0xdf, 0x7b, 0x2f, 0x33, 0xdf, 0x7b, 0xb9, 0x36, 0xd4, 0xe9, 0x80, 0xba, 0xfd, 0x34, + 0x8a, 0x6f, 0xf7, 0xe2, 0x28, 0x8d, 0x48, 0x29, 0x65, 0xbd, 0xd3, 0xab, 0x06, 0x1d, 0xf4, 0x62, + 0x9a, 0x24, 0x2c, 0x0a, 0x05, 0xfd, 0x6a, 0x2d, 0x71, 0xcf, 0x68, 0xe0, 0xc8, 0xaf, 0xe5, 0x6e, + 0xd4, 0x8d, 0xf0, 0xdf, 0x3b, 0xfc, 0x3f, 0x49, 0x5d, 0x88, 0xfb, 0x49, 0x8a, 0xff, 0x0a, 0x42, + 0xe3, 0x1f, 0x2b, 0x50, 0xde, 0x97, 0xfa, 0xc9, 0x8b, 0x50, 0x4c, 0x7b, 0x66, 0x61, 0xbd, 0xb0, + 0x51, 0xdf, 0xaa, 0xdf, 0xe6, 0x66, 0x6e, 0x73, 0xde, 0xc9, 0x45, 0x8f, 0xee, 0x94, 0x7e, 0xf2, + 0x2f, 0x37, 0xa7, 0xac, 0x62, 0xda, 0x23, 0x9b, 0x50, 0x4e, 0x4f, 0x7d, 0x3b, 0x71, 0x9d, 0xd0, + 0x2c, 0xae, 0x17, 0x36, 0xaa, 0x5b, 0x0b, 0x42, 0xf6, 0xc4, 0x39, 0xf5, 0x69, 0xdb, 0x75, 0x42, + 0x6b, 0x2e, 0x3d, 0xf5, 0xf9, 0x3f, 0x5c, 0x96, 0x79, 0x03, 0x21, 0x3b, 0xad, 0xcb, 0x36, 0x43, + 0x8f, 0x0e, 0x84, 0x2c, 0xf3, 0xf0, 0x1f, 0xf2, 0x2a, 0x54, 0x12, 0xea, 0x53, 0x37, 0x65, 0x51, + 0x68, 0x96, 0x74, 0xe1, 0xb6, 0x22, 0x5b, 0xb9, 0x04, 0xb9, 0x0b, 0x55, 0xa7, 0xdb, 0x8d, 0x69, + 0xd7, 0x41, 0xc0, 0x0c, 0x02, 0x16, 0x05, 0x60, 0x3b, 0x67, 0x58, 0xba, 0x14, 0xb9, 0x01, 0xa5, + 0x34, 0xea, 0xb5, 0xcc, 0x59, 0x94, 0x06, 0xe9, 0x77, 0xd4, 0x6b, 0x59, 0x48, 0x27, 0xb7, 0x60, + 0xc6, 0x67, 0x01, 0x4b, 0xcd, 0x39, 0x14, 0xa8, 0x0a, 0x81, 0x43, 0x4e, 0xb2, 0x04, 0x87, 0xec, + 0xc2, 0x22, 0x1d, 0xb8, 0x67, 0x4e, 0xd8, 0xa5, 0x76, 0x4c, 0x5d, 0xca, 0x1e, 0xd3, 0xd8, 0x2c, + 0xa3, 0xf8, 0xaa, 0xea, 0x33, 0xc1, 0xb6, 0x24, 0xd7, 0x32, 0xe8, 0x08, 0x85, 0xfb, 0xf1, 0x28, + 0x62, 0xa1, 0x59, 0xd1, 0xfd, 0xf8, 0x20, 0x62, 0xa1, 0x85, 0x74, 0x72, 0x13, 0xaa, 0x6a, 0xd4, + 0x6d, 0xe6, 0x99, 0xb0, 0x5e, 0xd8, 0xa8, 0x58, 0xa0, 0x48, 0x4d, 0x8f, 0x2b, 0x38, 0x67, 0xbe, + 0x6f, 0x56, 0x75, 0x05, 0x0f, 0x98, 0xef, 0x5b, 0x48, 0x27, 0x5f, 0x83, 0x85, 0xcc, 0xcb, 0x84, + 0x86, 0x1e, 0x8d, 0xcd, 0x1a, 0x8a, 0x2e, 0x0f, 0xfb, 0xd8, 0x46, 0x9e, 0x55, 0xa7, 0x43, 0xdf, + 0xe4, 0x35, 0x80, 0x87, 0x71, 0xf4, 0x48, 0x0e, 0xc6, 0x3c, 0x22, 0x0d, 0x81, 0xcc, 0xe9, 0x96, + 0x26, 0x43, 0x3e, 0x80, 0xe5, 0x9e, 0x13, 0xa7, 0x8c, 0x7f, 0xd8, 0x29, 0x8f, 0x04, 0x31, 0xea, + 0x75, 0xc4, 0x9a, 0x12, 0xab, 0x24, 0xf2, 0x50, 0x21, 0xbd, 0x31, 0x1a, 0x6f, 0x5c, 0x12, 0xc5, + 0xa9, 0xb9, 0xa0, 0x37, 0xae, 0x1d, 0xc5, 0xa9, 0x85, 0x74, 0xf2, 0x22, 0xcc, 0x3e, 0x61, 0xa1, + 0x17, 0x3d, 0x31, 0x0d, 0x94, 0xa8, 0x09, 0x89, 0x8f, 0x90, 0x66, 0x49, 0x1e, 0x69, 0xc1, 0xad, + 0x0e, 0x0b, 0xa9, 0xdd, 0x8d, 0x1d, 0x16, 0x52, 0xcf, 0x4e, 0xce, 0xfa, 0x9d, 0x0e, 0x77, 0x2b, + 0x8d, 0xa9, 0x13, 0xd8, 0x6e, 0xd4, 0x0f, 0x53, 0x73, 0x71, 0xbd, 0xb0, 0x51, 0x92, 0xc1, 0x7d, + 0x9d, 0x8b, 0xbf, 0x2f, 0xa4, 0xdb, 0x42, 0xb8, 0x8d, 0xb2, 0xbb, 0x5c, 0x94, 0x7c, 0x00, 0x37, + 0x27, 0xea, 0x3b, 0x75, 0x52, 0xf7, 0xcc, 0x4e, 0xd8, 0x27, 0xd4, 0x24, 0x9a, 0xb6, 0x6b, 0xe3, + 0xda, 0x76, 0xb8, 0x64, 0x9b, 0x7d, 0x42, 0x79, 0x0b, 0xe8, 0xa0, 0xe7, 0x84, 0x9e, 0xb9, 0xa4, + 0xb7, 0x60, 0x1f, 0x69, 0x96, 0xe4, 0x91, 0x57, 0x60, 0x4e, 0xfc, 0xb7, 0x65, 0x2e, 0xa3, 0xd8, + 0xbc, 0x2e, 0xb6, 0x65, 0x29, 0x2e, 0x1f, 0xed, 0xd3, 0x38, 0x72, 0x3c, 0xd7, 0x49, 0x52, 0xfb, + 0xe3, 0x3e, 0x8d, 0x2f, 0xcc, 0x15, 0x7d, 0xb4, 0x77, 0x14, 0xf3, 0x9b, 0x9c, 0x67, 0xd5, 0x4f, + 0x87, 0xbe, 0xc9, 0x06, 0x94, 0xdd, 0x94, 0xda, 0x09, 0x0b, 0xcf, 0xcd, 0x55, 0xdd, 0xd0, 0xee, + 0xc9, 0x7e, 0x9b, 0x85, 0xe7, 0xd6, 0x9c, 0x9b, 0x52, 0xfe, 0x0f, 0xb9, 0x0d, 0x80, 0x92, 0x51, + 0x3f, 0x76, 0xa9, 0xb9, 0xa6, 0x27, 0x29, 0x97, 0x45, 0xb2, 0x55, 0xe1, 0xd2, 0xf8, 0x2f, 0xb9, + 0x07, 0x35, 0xc6, 0x33, 0xdd, 0xf6, 0xa3, 0xe8, 0xbc, 0xdf, 0x33, 0x4d, 0x3d, 0x4b, 0xb1, 0x06, + 0x1c, 0x46, 0xd1, 0xf9, 0xb7, 0x7a, 0x56, 0x95, 0xa9, 0x8f, 0x7e, 0x8f, 0x5c, 0x07, 0xe8, 0x39, + 0x31, 0x0d, 0x53, 0x9b, 0x79, 0x03, 0xf3, 0xca, 0x7a, 0x61, 0x63, 0xde, 0xaa, 0x08, 0x4a, 0xd3, + 0x1b, 0x34, 0x7e, 0x36, 0x0d, 0xf5, 0xe1, 0xf8, 0x25, 0x1b, 0x5a, 0xe5, 0x22, 0xc3, 0x11, 0x3e, + 0x56, 0xbd, 0x16, 0x69, 0xe8, 0x46, 0x1e, 0xf5, 0xec, 0xd4, 0x49, 0xce, 0xed, 0x80, 0xa6, 0x8e, + 0x59, 0x5c, 0x9f, 0xde, 0xa8, 0x59, 0x0b, 0x92, 0x71, 0xe2, 0x24, 0xe7, 0x47, 0x34, 0x75, 0xc8, + 0xeb, 0x50, 0xcf, 0x63, 0xfa, 0x9c, 0x5e, 0x24, 0xe6, 0xf4, 0xfa, 0x74, 0x1e, 0x91, 0xfb, 0x83, + 0x5e, 0x6c, 0xcd, 0x67, 0x12, 0x0f, 0xe8, 0x45, 0x42, 0x5e, 0x84, 0x19, 0xf7, 0x8c, 0xf9, 0x9e, + 0x2c, 0x60, 0x5a, 0x15, 0xe5, 0x89, 0x6b, 0x09, 0x26, 0x79, 0x09, 0x66, 0xd2, 0x8b, 0x1e, 0x4d, + 0xcc, 0x19, 0xd4, 0x27, 0x7b, 0xf0, 0x80, 0x51, 0xdf, 0xe3, 0xee, 0x5a, 0x82, 0x4b, 0xde, 0x84, + 0x05, 0xc7, 0xf7, 0xed, 0x0e, 0xa7, 0xdb, 0x02, 0x30, 0x3b, 0x19, 0x30, 0xef, 0xf8, 0x7e, 0xf6, + 0x95, 0x90, 0xaf, 0x41, 0xd5, 0x8d, 0x02, 0x35, 0x3f, 0x60, 0x31, 0xab, 0x6f, 0xad, 0xc8, 0x71, + 0xca, 0x19, 0x47, 0x91, 0xa7, 0xba, 0x46, 0x97, 0x27, 0x87, 0xb0, 0xda, 0xef, 0xa9, 0x34, 0x49, + 0xa9, 0xd6, 0x51, 0x65, 0x34, 0xbf, 0x26, 0x5b, 0x25, 0xba, 0x6b, 0xe7, 0x22, 0xa5, 0x49, 0xdb, + 0x67, 0x2e, 0xb5, 0x96, 0x14, 0x6c, 0x37, 0xa5, 0x59, 0x2f, 0xbe, 0x08, 0xf5, 0xc4, 0x09, 0xa8, + 0xfd, 0x49, 0x14, 0x52, 0xbb, 0xe3, 0x3b, 0x5d, 0xb3, 0xb2, 0x3e, 0xbd, 0x51, 0xb6, 0x6a, 0x9c, + 0xfa, 0x9d, 0x28, 0xa4, 0x07, 0xbe, 0xd3, 0x6d, 0xfc, 0xac, 0x00, 0x73, 0x32, 0xdc, 0xc8, 0x35, + 0x98, 0xe5, 0x66, 0x99, 0x67, 0x16, 0xd6, 0x8b, 0x1b, 0xf3, 0xd2, 0xc5, 0x19, 0x37, 0xa5, 0x4d, + 0x8f, 0x6c, 0x42, 0x3d, 0x0f, 0x41, 0x3b, 0xec, 0x07, 0x66, 0x51, 0x13, 0xaa, 0x65, 0xb1, 0xd7, + 0xea, 0x07, 0xe4, 0x65, 0xa8, 0xa9, 0xc0, 0x46, 0xc9, 0x69, 0x4d, 0x12, 0x64, 0x4c, 0x73, 0xb9, + 0xe7, 0x1b, 0xb5, 0xd7, 0xa0, 0xaa, 0x0f, 0xc5, 0x25, 0x63, 0x07, 0x9d, 0x6c, 0x1c, 0x1a, 0x3f, + 0x2e, 0x40, 0x25, 0xcb, 0x8b, 0xff, 0xf9, 0x66, 0x8d, 0x38, 0x5c, 0x7a, 0xb6, 0xc3, 0xff, 0x1f, + 0xaa, 0x5a, 0x56, 0x92, 0xd7, 0x60, 0x59, 0xa4, 0xef, 0x99, 0x13, 0x7a, 0x3e, 0xb5, 0xa3, 0x4e, + 0x27, 0xa1, 0x69, 0x62, 0x16, 0xd6, 0xa7, 0x37, 0xe6, 0x2d, 0x82, 0xbc, 0xfb, 0xc8, 0x3a, 0x16, + 0x1c, 0x9e, 0xba, 0xe7, 0x94, 0xf6, 0xec, 0x28, 0xe6, 0x53, 0x0e, 0x5f, 0x1e, 0x94, 0xad, 0x0a, + 0xa7, 0x1c, 0x73, 0x42, 0xe3, 0x2d, 0x58, 0x1c, 0x8b, 0x1a, 0xf2, 0x25, 0x98, 0xd7, 0x53, 0x52, + 0xa8, 0xaf, 0x59, 0x35, 0x2d, 0x1d, 0x93, 0xc6, 0xa7, 0x45, 0x30, 0x46, 0x27, 0xd6, 0xc9, 0xc9, + 0x5c, 0x98, 0x9c, 0xcc, 0x23, 0x9d, 0x51, 0x7c, 0x66, 0x67, 0x90, 0x06, 0x16, 0x95, 0xe9, 0xcb, + 0x8a, 0x0a, 0x96, 0x93, 0x3d, 0xb8, 0x19, 0xc5, 0xac, 0xcb, 0x42, 0xc7, 0xc7, 0x54, 0xe9, 0xc5, + 0x5e, 0xe4, 0xf6, 0x69, 0xac, 0xf9, 0x53, 0x42, 0x7f, 0xae, 0x29, 0xb1, 0xdd, 0x94, 0x3e, 0x94, + 0x42, 0x4f, 0x49, 0x91, 0x99, 0x09, 0x29, 0xf2, 0x1b, 0x25, 0xa8, 0x6d, 0xb7, 0x5a, 0x58, 0xb3, + 0x9b, 0x61, 0x27, 0x22, 0x6f, 0x02, 0x60, 0xb1, 0xc7, 0x26, 0x0d, 0x57, 0x3f, 0x25, 0xa7, 0x55, + 0xbf, 0xca, 0xc7, 0x8a, 0x40, 0x9a, 0xb0, 0xe0, 0xb1, 0x24, 0x75, 0x42, 0x97, 0x72, 0x1f, 0x63, + 0xe6, 0xe2, 0x50, 0xd5, 0xb7, 0xae, 0x0a, 0xf4, 0x87, 0xd4, 0x4d, 0xa3, 0x78, 0x4f, 0x8a, 0x1c, + 0xa1, 0x84, 0xd4, 0x52, 0xf7, 0x86, 0xa8, 0xe4, 0x0a, 0xcc, 0xa4, 0x51, 0xcf, 0x3e, 0xc7, 0x7e, + 0x52, 0x41, 0xc8, 0x17, 0x53, 0x0f, 0xc8, 0x4b, 0xbc, 0x0a, 0xf9, 0xfd, 0x20, 0xb4, 0x43, 0x27, + 0xa0, 0x98, 0x5b, 0x95, 0x2c, 0x4a, 0x91, 0xd1, 0x72, 0x02, 0xca, 0x83, 0xcc, 0xa3, 0xbd, 0x98, + 0xba, 0x4e, 0x4a, 0x3d, 0x5b, 0x22, 0x98, 0x87, 0x2b, 0xba, 0x69, 0x8b, 0xe4, 0xbc, 0x5d, 0x64, + 0xe1, 0xe2, 0xa7, 0x1a, 0xd3, 0x8e, 0xfd, 0x98, 0xba, 0x76, 0xe7, 0xee, 0x16, 0x2e, 0xe6, 0x6a, + 0x56, 0x25, 0xa6, 0x9d, 0x0f, 0xa9, 0x7b, 0x70, 0x77, 0x8b, 0xdc, 0x84, 0xb2, 0x08, 0x5b, 0xe6, + 0xe1, 0xca, 0x6c, 0x5a, 0x5a, 0x9d, 0x43, 0x6a, 0x93, 0x4f, 0xac, 0xb5, 0xc0, 0x19, 0xd8, 0xaa, + 0x29, 0xb8, 0xbe, 0x2a, 0xa8, 0x4a, 0x18, 0x38, 0x03, 0xd5, 0x72, 0x9e, 0x95, 0x67, 0x61, 0xf2, + 0xc4, 0xa6, 0x1d, 0x3b, 0xa1, 0x4e, 0xec, 0x9e, 0xe1, 0x44, 0x9c, 0x65, 0x25, 0xe7, 0xed, 0x77, + 0xda, 0xc8, 0x21, 0xb7, 0x61, 0x56, 0x38, 0x2f, 0xe7, 0x5e, 0x43, 0xd5, 0x5b, 0xf4, 0x3a, 0xec, + 0x44, 0x12, 0x25, 0xa5, 0xc8, 0x1b, 0xb0, 0x4c, 0x43, 0x5c, 0x28, 0x65, 0x63, 0xd1, 0x8b, 0xa3, + 0x47, 0x38, 0x03, 0x97, 0xa5, 0x2c, 0x11, 0x12, 0xca, 0x1f, 0xbe, 0xde, 0xfa, 0xa0, 0x54, 0x9e, + 0x33, 0xca, 0x8d, 0x8f, 0x60, 0xb1, 0x19, 0x3e, 0xa6, 0x71, 0x4a, 0xbd, 0x3c, 0x20, 0xf4, 0x86, + 0x17, 0x26, 0x35, 0xfc, 0x16, 0x54, 0xf2, 0x0e, 0x2e, 0x6a, 0x12, 0x65, 0x57, 0x76, 0x6e, 0xe3, + 0x37, 0xa7, 0xa1, 0x76, 0x70, 0xd2, 0x7e, 0xae, 0x28, 0x53, 0x72, 0x93, 0xa3, 0x4c, 0xf7, 0xa6, + 0x38, 0xc9, 0x9b, 0x4d, 0x98, 0x13, 0x66, 0xd5, 0xc4, 0x3a, 0xd6, 0x65, 0x96, 0x12, 0x20, 0xb7, + 0xa0, 0xa6, 0x05, 0x93, 0x28, 0x66, 0x15, 0xab, 0x9a, 0xc7, 0x51, 0x42, 0xbe, 0x94, 0x39, 0x4a, + 0x07, 0x29, 0x86, 0x4f, 0x65, 0xd8, 0x29, 0x3a, 0x48, 0xc9, 0xab, 0xb0, 0x20, 0x85, 0xa2, 0x73, + 0x1a, 0xb2, 0x4f, 0x68, 0x8c, 0xf1, 0xa3, 0x24, 0xeb, 0x42, 0x52, 0xf1, 0xc8, 0x92, 0x0a, 0x6f, + 0xc0, 0x55, 0x88, 0x08, 0xec, 0xb7, 0x94, 0xa1, 0x4e, 0x3f, 0x74, 0x31, 0x22, 0xea, 0x5b, 0x4b, + 0x72, 0x95, 0xea, 0x3a, 0xbe, 0x13, 0x1f, 0xf4, 0x43, 0xb7, 0xcd, 0xba, 0x43, 0xd6, 0x39, 0x8d, + 0xdc, 0x01, 0x08, 0x70, 0xb9, 0xc8, 0x77, 0x6f, 0xe6, 0xca, 0xe8, 0x6a, 0x42, 0x01, 0x50, 0x86, + 0x13, 0x1a, 0x3f, 0x28, 0xc2, 0xa2, 0xe8, 0x0e, 0x27, 0xc6, 0xca, 0x8c, 0x43, 0xf2, 0x55, 0x00, + 0xd1, 0xb3, 0xda, 0x90, 0xac, 0xe9, 0x7d, 0x27, 0x85, 0xf5, 0x71, 0x61, 0x8a, 0x40, 0xde, 0x81, + 0xba, 0x13, 0x86, 0x62, 0x9d, 0x68, 0xb3, 0xb0, 0x13, 0xc9, 0x6d, 0xdc, 0x48, 0xe9, 0xe0, 0x96, + 0xee, 0x4f, 0x59, 0x35, 0x27, 0x0c, 0xf3, 0x60, 0x68, 0xc2, 0x12, 0x93, 0x61, 0xa7, 0x2b, 0x10, + 0x7b, 0xbb, 0x35, 0xb5, 0xae, 0x1b, 0x89, 0xcb, 0xfb, 0x53, 0xd6, 0x22, 0x1b, 0x0b, 0xd6, 0x77, + 0xa0, 0xde, 0x49, 0x13, 0x5d, 0x4b, 0x49, 0x77, 0x43, 0x8f, 0x41, 0xee, 0x46, 0x27, 0x4d, 0xb2, + 0xef, 0x9d, 0x39, 0x98, 0xc1, 0xf6, 0x34, 0x3e, 0x9b, 0x81, 0x4a, 0xbe, 0x71, 0xb8, 0x09, 0x65, + 0xb1, 0xf5, 0x18, 0x8d, 0x7f, 0xa4, 0x0e, 0x47, 0x5c, 0xf1, 0x59, 0x11, 0x67, 0x42, 0xc9, 0xa3, + 0x89, 0x8b, 0x6d, 0x53, 0xf9, 0x88, 0x14, 0xf2, 0x65, 0x20, 0xbd, 0x98, 0x05, 0x4e, 0x7c, 0x91, + 0x97, 0x2b, 0x11, 0x91, 0xd3, 0x96, 0x21, 0x39, 0xaa, 0x58, 0x25, 0xe4, 0x3d, 0x30, 0x42, 0x3a, + 0x48, 0xed, 0x98, 0x3a, 0x9e, 0x4d, 0xc3, 0x2e, 0x0b, 0x29, 0x06, 0x67, 0x5d, 0x19, 0xdf, 0x47, + 0x9a, 0x36, 0x56, 0x75, 0x2e, 0x6f, 0x51, 0xc7, 0x13, 0x1c, 0xf2, 0x65, 0x98, 0x8d, 0xf9, 0xac, + 0xa3, 0x96, 0x7f, 0x72, 0x7d, 0xf2, 0x80, 0x5e, 0x58, 0x9c, 0xac, 0xea, 0x8a, 0x90, 0x21, 0x6f, + 0xc3, 0x15, 0xe5, 0x5d, 0x2f, 0xa6, 0x1d, 0x36, 0xd0, 0x9d, 0x9c, 0x43, 0x27, 0x57, 0xa5, 0xc0, + 0x43, 0xe4, 0xe7, 0xae, 0x0e, 0xcf, 0xde, 0xe5, 0x91, 0xd9, 0x9b, 0xac, 0x43, 0x8d, 0x25, 0x76, + 0x87, 0x6f, 0x32, 0x70, 0x6f, 0x57, 0x41, 0x01, 0x60, 0xc9, 0x81, 0x93, 0xa4, 0x38, 0x00, 0x47, + 0x70, 0xbd, 0xd7, 0x4f, 0xce, 0xa8, 0x67, 0x7b, 0xd1, 0x93, 0xd0, 0xee, 0x30, 0x3f, 0xa5, 0xb1, + 0xed, 0x46, 0xa1, 0x87, 0x4b, 0xe4, 0xc4, 0x84, 0xb1, 0x05, 0xf4, 0x55, 0x01, 0xd8, 0x8b, 0x9e, + 0x84, 0x07, 0x28, 0xbe, 0x9b, 0x49, 0x93, 0x5d, 0x58, 0x8a, 0xfb, 0x61, 0xca, 0x02, 0xaa, 0x54, + 0xf9, 0x2c, 0x49, 0xcd, 0x2a, 0x2a, 0x91, 0x19, 0x67, 0x09, 0x01, 0x81, 0xb5, 0x16, 0x63, 0xfd, + 0xf3, 0x90, 0x25, 0x3c, 0xe3, 0x0d, 0x5e, 0xec, 0x9f, 0x38, 0x2c, 0xb5, 0x51, 0x55, 0x90, 0xe0, + 0x5e, 0x78, 0x46, 0xf6, 0xdb, 0x7c, 0xe0, 0x0c, 0x3e, 0x72, 0x58, 0x7a, 0xc2, 0x02, 0x7a, 0x94, + 0x90, 0xbd, 0xa1, 0xe9, 0x28, 0x4b, 0x14, 0xb9, 0x09, 0x9e, 0x90, 0x23, 0xfa, 0x14, 0xb5, 0x2d, + 0x73, 0x85, 0x3c, 0x80, 0x95, 0x7e, 0x92, 0x4d, 0x67, 0x4e, 0x6c, 0x63, 0xb8, 0xd2, 0xc4, 0xac, + 0xeb, 0x2b, 0xe8, 0xb1, 0xcc, 0xb6, 0x96, 0x38, 0x6a, 0x88, 0x4c, 0x93, 0xc6, 0xaf, 0xcf, 0x00, + 0x19, 0xdf, 0x3a, 0xff, 0xef, 0x8c, 0xf6, 0xa7, 0x46, 0xdf, 0xcc, 0x53, 0xa3, 0xef, 0x4b, 0x90, + 0x6f, 0xa6, 0x50, 0x7c, 0x16, 0xc5, 0x6b, 0x19, 0x91, 0x0b, 0x8d, 0xc6, 0xe0, 0xdc, 0x17, 0x8f, + 0xc1, 0xf2, 0x2f, 0x22, 0x06, 0x2b, 0xff, 0xed, 0x18, 0x84, 0x2f, 0x1e, 0x83, 0xd5, 0x5f, 0x4c, + 0x0c, 0xd6, 0xfe, 0x0b, 0x31, 0xf8, 0x1f, 0x33, 0x50, 0xfa, 0x20, 0x62, 0x21, 0x79, 0x1d, 0x2a, + 0x8f, 0x22, 0x16, 0xea, 0x53, 0x4f, 0x3d, 0x3f, 0xbf, 0xd2, 0xaa, 0x58, 0xf9, 0x91, 0xfc, 0x26, + 0x5f, 0x87, 0x3a, 0x42, 0xe8, 0x80, 0xba, 0x02, 0x57, 0xd4, 0x57, 0x11, 0x1c, 0x37, 0x72, 0xce, + 0x58, 0x7b, 0xa4, 0xd1, 0xc8, 0x26, 0x94, 0x71, 0x07, 0x16, 0xd3, 0x50, 0x2e, 0x14, 0x46, 0x77, + 0x68, 0x19, 0x9f, 0xaf, 0x70, 0x58, 0x18, 0xd2, 0x18, 0x8f, 0x0e, 0x4a, 0xfa, 0x0a, 0x07, 0xc9, + 0x4d, 0x6f, 0x40, 0x5e, 0x83, 0xba, 0x4f, 0x3b, 0xa9, 0x8d, 0x3e, 0xe1, 0xb6, 0x7e, 0x66, 0x2c, + 0x22, 0x6a, 0x5c, 0x82, 0x3b, 0x86, 0xbb, 0xfa, 0x2d, 0x58, 0x88, 0x59, 0xf7, 0x4c, 0x87, 0xcc, + 0x8e, 0x9f, 0x04, 0xa0, 0x48, 0x86, 0x79, 0x0d, 0xaa, 0xbd, 0x38, 0x3a, 0xa5, 0x72, 0xbf, 0x31, + 0x77, 0xc9, 0x7e, 0x03, 0x65, 0xc4, 0x7e, 0xe3, 0x35, 0xa8, 0x9e, 0xf6, 0x59, 0xb6, 0x43, 0x29, + 0x5f, 0x82, 0x40, 0x19, 0x81, 0xb8, 0x0b, 0x0b, 0xd8, 0x12, 0x2d, 0xb8, 0x2b, 0x63, 0x7e, 0x61, + 0x63, 0xb5, 0x80, 0xfe, 0x0a, 0x18, 0xa2, 0x31, 0x4f, 0x2d, 0xcb, 0xa2, 0xc1, 0xc3, 0xb0, 0x28, + 0x3d, 0x1b, 0xce, 0xa4, 0xea, 0x38, 0x0c, 0x65, 0x34, 0xd8, 0x7d, 0xb8, 0x26, 0x60, 0xf4, 0x63, + 0x0d, 0x69, 0x77, 0xe2, 0x28, 0xb0, 0x59, 0x28, 0x43, 0x51, 0xd7, 0xb0, 0x86, 0xe2, 0xfb, 0x1f, + 0xe7, 0x3a, 0x0e, 0xe2, 0x28, 0x68, 0x86, 0xe4, 0x1e, 0xac, 0xb1, 0xc4, 0x0e, 0xfb, 0xbe, 0x6f, + 0x3b, 0x4f, 0x9c, 0x98, 0xda, 0x09, 0x0d, 0x18, 0x8e, 0x08, 0xd6, 0xe6, 0xb2, 0xb5, 0xc4, 0x92, + 0x56, 0xdf, 0xf7, 0xb7, 0x39, 0xb3, 0x4d, 0x03, 0x86, 0xe1, 0x7a, 0x49, 0xfa, 0xd6, 0xbf, 0x48, + 0xfa, 0x36, 0xfe, 0xad, 0x08, 0xf3, 0x43, 0x42, 0x64, 0x19, 0x8a, 0xb2, 0xea, 0xaa, 0x14, 0x2e, + 0x32, 0x8f, 0xdc, 0x03, 0x43, 0x6e, 0xe0, 0xf9, 0xfa, 0x4e, 0x58, 0x2a, 0x8e, 0x0f, 0x88, 0x90, + 0xe1, 0xff, 0x63, 0x71, 0xb8, 0x07, 0x46, 0xea, 0xc4, 0x5d, 0x9a, 0x6a, 0xa8, 0xf1, 0x83, 0xa6, + 0xba, 0x90, 0xc9, 0x50, 0x5b, 0x40, 0x32, 0x5b, 0xf9, 0x49, 0xb1, 0xbe, 0xc9, 0x32, 0x94, 0x9d, + 0xec, 0xd4, 0x78, 0x0b, 0x48, 0x66, 0x29, 0xc7, 0xe8, 0x2b, 0x65, 0x43, 0x59, 0xc9, 0x30, 0x6f, + 0xc0, 0x5c, 0xdc, 0x11, 0x59, 0x3b, 0xab, 0x2f, 0x34, 0x87, 0xfa, 0x43, 0x4b, 0xdd, 0xd9, 0xb8, + 0x83, 0x49, 0x2b, 0x70, 0x41, 0xe4, 0x51, 0x79, 0xfe, 0x34, 0x09, 0xa7, 0x9d, 0x40, 0xcd, 0xc6, + 0x1d, 0xfe, 0xd5, 0xf8, 0x6e, 0x11, 0x2a, 0xd9, 0xed, 0xc0, 0xb3, 0xe7, 0xb8, 0x5f, 0xe8, 0x26, + 0x43, 0x4d, 0x82, 0xa5, 0xb1, 0x49, 0x70, 0x15, 0x66, 0xfb, 0x21, 0xfb, 0xb8, 0x2f, 0x96, 0x6e, + 0x65, 0x4b, 0x7e, 0x5d, 0x32, 0x39, 0xce, 0x5e, 0x32, 0x39, 0xbe, 0x35, 0xb6, 0xe4, 0x9d, 0xbb, + 0x6c, 0xc9, 0x3b, 0xbc, 0xe0, 0x6d, 0x7c, 0xb7, 0x00, 0x95, 0xec, 0x1a, 0x84, 0x6c, 0x02, 0x68, + 0x59, 0x58, 0x18, 0x8b, 0x15, 0x8d, 0x4b, 0xee, 0x41, 0x3d, 0xee, 0x85, 0x7a, 0xd6, 0x8a, 0x88, + 0x94, 0x47, 0xbc, 0x56, 0x2f, 0x94, 0xd5, 0xab, 0x17, 0x6a, 0x69, 0x9b, 0x9d, 0x88, 0x4d, 0x3f, + 0xe5, 0x44, 0xac, 0xf1, 0x69, 0x41, 0xbf, 0x27, 0x20, 0xeb, 0x30, 0xc3, 0x23, 0x78, 0x92, 0x47, + 0x82, 0x41, 0x36, 0xa1, 0xc2, 0x9d, 0x11, 0x52, 0x13, 0xfd, 0x28, 0xc7, 0xe2, 0x9f, 0xe7, 0x75, + 0xe1, 0x9f, 0x8a, 0x50, 0xd5, 0xae, 0x7b, 0xc8, 0x4b, 0x50, 0xee, 0xc6, 0x51, 0xbf, 0x67, 0x9f, + 0x5e, 0x4c, 0x70, 0x63, 0x0e, 0x79, 0x3b, 0x17, 0xe4, 0x0e, 0xd4, 0xb8, 0x23, 0x99, 0x68, 0x69, + 0x92, 0x2f, 0x10, 0xf7, 0xc2, 0xf7, 0x25, 0xe0, 0x25, 0x28, 0x3b, 0xdd, 0xae, 0xd8, 0xf1, 0x8d, + 0xa7, 0xf4, 0x9c, 0xd3, 0xed, 0xca, 0x0d, 0x1e, 0xea, 0xcd, 0x44, 0x67, 0x2e, 0xd3, 0xbb, 0x2d, + 0x01, 0xeb, 0x50, 0x16, 0x47, 0xa6, 0xd4, 0x1b, 0x5a, 0x7b, 0x65, 0xd4, 0xbc, 0x1f, 0x66, 0x9f, + 0x76, 0x38, 0xf9, 0x36, 0xd4, 0x7a, 0x31, 0x45, 0xc3, 0xe3, 0x39, 0x77, 0xc2, 0x0e, 0x7c, 0x27, + 0x39, 0x7b, 0x18, 0xd3, 0xed, 0x6e, 0x97, 0x67, 0x19, 0x9f, 0x77, 0xd4, 0xff, 0x8d, 0x1f, 0x16, + 0xa0, 0x74, 0x12, 0xf5, 0x5a, 0xe4, 0x15, 0x28, 0xe3, 0xca, 0x3f, 0xef, 0x3b, 0x79, 0x2f, 0xb1, + 0x73, 0xd1, 0x4c, 0x69, 0x60, 0xcd, 0x21, 0x77, 0xe7, 0x82, 0x5c, 0x55, 0xd7, 0x64, 0x45, 0xed, + 0xc2, 0x43, 0xde, 0x8f, 0x3d, 0xd7, 0xb0, 0xf1, 0x7e, 0xca, 0xd7, 0x7a, 0x59, 0xff, 0x0f, 0x9b, + 0xab, 0x66, 0x12, 0x3b, 0x17, 0x8d, 0x4f, 0x60, 0x06, 0xaf, 0xe1, 0x72, 0xdb, 0x85, 0xa7, 0xd8, + 0x2e, 0x7e, 0x11, 0xdb, 0xd3, 0xcf, 0xb2, 0xfd, 0x1e, 0x94, 0x1e, 0x30, 0xdf, 0x27, 0x2f, 0xc0, + 0xac, 0x1b, 0x85, 0x61, 0x73, 0x6f, 0xc8, 0xb6, 0xa4, 0x71, 0xc7, 0xc4, 0x2a, 0xad, 0xa8, 0x0d, + 0xa3, 0x20, 0x35, 0x3e, 0x2d, 0x81, 0xa9, 0xdc, 0x10, 0x7f, 0x59, 0x14, 0xb6, 0xfb, 0x01, 0x2f, + 0x0f, 0x64, 0x13, 0x16, 0x71, 0x7e, 0xea, 0xc5, 0x91, 0x4b, 0x13, 0xbe, 0x62, 0xc3, 0xa4, 0x2e, + 0x6c, 0x94, 0xac, 0x05, 0xce, 0x78, 0xa8, 0xe8, 0x2d, 0x9e, 0x40, 0x8b, 0x61, 0x3f, 0xe0, 0xa2, + 0x5e, 0xdf, 0xa5, 0x9e, 0x1d, 0x47, 0x4f, 0x12, 0x31, 0x0a, 0xd6, 0x42, 0xd8, 0x0f, 0x1e, 0x4a, + 0xba, 0x15, 0x3d, 0x49, 0xc8, 0x4b, 0x50, 0xe7, 0xb2, 0x2c, 0xa5, 0xb1, 0x23, 0x32, 0x7f, 0x1a, + 0x05, 0xe7, 0xc3, 0x7e, 0xd0, 0xcc, 0x88, 0xa3, 0x77, 0x8d, 0xa5, 0xb1, 0xbb, 0xc6, 0x75, 0xa8, + 0xba, 0x51, 0xe8, 0xf6, 0xe3, 0x98, 0x86, 0xee, 0x05, 0x16, 0xc0, 0x92, 0xa5, 0x93, 0xc8, 0x21, + 0x2c, 0xa7, 0xac, 0xc3, 0x43, 0x0c, 0x17, 0xe5, 0xbc, 0xd8, 0xe0, 0x19, 0xcc, 0xac, 0x7e, 0xf9, + 0x27, 0x83, 0x90, 0x97, 0xf5, 0x5d, 0xc1, 0xbf, 0x3f, 0x65, 0x11, 0x89, 0xd3, 0xa8, 0xdc, 0xef, + 0xb8, 0xcf, 0x75, 0x24, 0xfd, 0xa0, 0x97, 0xaa, 0x0b, 0x8c, 0x9a, 0x35, 0x1f, 0xf7, 0x77, 0x73, + 0x22, 0xf9, 0x20, 0x37, 0x8a, 0xeb, 0xea, 0x44, 0x74, 0xa7, 0xbc, 0x8b, 0x1d, 0x36, 0xca, 0xd7, + 0xd6, 0xb2, 0xbb, 0x33, 0x93, 0x1a, 0x8d, 0xb4, 0x61, 0x4d, 0xe9, 0x0a, 0x69, 0xfa, 0x24, 0x8a, + 0xcf, 0x33, 0x75, 0xe2, 0x8a, 0xf6, 0xda, 0x90, 0xba, 0x16, 0x4d, 0x3f, 0x8a, 0xe2, 0x73, 0xa5, + 0x71, 0x45, 0x62, 0x5b, 0x02, 0x2a, 0xc9, 0x3b, 0x35, 0x80, 0x3d, 0x9a, 0x3a, 0xcc, 0xc7, 0x0a, + 0xde, 0x85, 0x65, 0x89, 0xce, 0x02, 0x00, 0x8f, 0x41, 0x8e, 0x61, 0x89, 0x2a, 0x82, 0x34, 0xca, + 0xa8, 0x2a, 0xa1, 0x37, 0x86, 0x23, 0x78, 0x34, 0x74, 0x2c, 0x42, 0x87, 0x29, 0x8c, 0x26, 0x8d, + 0xff, 0x07, 0x57, 0xa5, 0x21, 0x8b, 0x76, 0x59, 0x14, 0xb6, 0xfa, 0xc1, 0x71, 0xa7, 0x19, 0xca, + 0x13, 0xcd, 0x9b, 0x50, 0x65, 0xf2, 0x7f, 0x35, 0xa7, 0x56, 0x2c, 0x50, 0xa4, 0xa6, 0x47, 0xae, + 0x03, 0xc4, 0x88, 0x93, 0x97, 0x10, 0x7c, 0xb0, 0x2b, 0xb1, 0xd2, 0xd4, 0xf8, 0x9d, 0x5b, 0x40, + 0xc6, 0x47, 0x92, 0xdc, 0x83, 0x65, 0x2f, 0xe8, 0x30, 0x79, 0xeb, 0x1b, 0x52, 0xcf, 0xee, 0x39, + 0xee, 0xb9, 0x0c, 0xe3, 0x9d, 0xa2, 0x59, 0xb0, 0x88, 0xe0, 0xb7, 0x05, 0xfb, 0x21, 0xe7, 0xea, + 0xa8, 0x73, 0xd6, 0xeb, 0x65, 0xa8, 0xe2, 0x18, 0x4a, 0xb0, 0x05, 0xea, 0x4d, 0x30, 0x25, 0xca, + 0x73, 0x52, 0x27, 0x33, 0x88, 0xa9, 0x20, 0x22, 0x7c, 0x45, 0xf0, 0xf7, 0x9c, 0xd4, 0x91, 0xf6, + 0x30, 0x21, 0x46, 0x81, 0xd2, 0x26, 0x02, 0x4b, 0x63, 0x40, 0xc1, 0x45, 0xe0, 0x5b, 0xb0, 0x96, + 0x46, 0xa9, 0xe3, 0xdb, 0x12, 0x1e, 0x27, 0xb6, 0x1f, 0x39, 0x1e, 0xdf, 0xc5, 0xcd, 0x64, 0xae, + 0x2e, 0xa1, 0xc8, 0x1e, 0x4a, 0x58, 0xc9, 0x61, 0xe4, 0x78, 0x47, 0x09, 0xb9, 0x03, 0xcb, 0xc3, + 0x48, 0x2a, 0x60, 0xb3, 0x68, 0x6e, 0x51, 0x87, 0x50, 0x04, 0x7c, 0x45, 0x99, 0x12, 0x5b, 0x81, + 0x24, 0x74, 0x7a, 0xc9, 0x59, 0x94, 0x72, 0xcc, 0x1c, 0x62, 0x84, 0xbe, 0x1d, 0xce, 0x6d, 0x4b, + 0xe6, 0x11, 0xee, 0x9d, 0xfd, 0xc8, 0x75, 0x7c, 0x5b, 0x8c, 0x54, 0x82, 0x59, 0x50, 0xb2, 0x6a, + 0x48, 0x14, 0x71, 0x80, 0x05, 0x21, 0xa6, 0x41, 0x94, 0xd2, 0x4c, 0xaa, 0x22, 0x0a, 0x82, 0xa0, + 0x2a, 0xb1, 0x97, 0x61, 0xa1, 0x9f, 0xd0, 0x58, 0xf8, 0x7a, 0x7a, 0x91, 0x52, 0xb1, 0x57, 0x2d, + 0x59, 0xf3, 0x9c, 0xcc, 0xfd, 0xc4, 0xcb, 0x1b, 0xf2, 0x3a, 0xac, 0x08, 0x57, 0x7d, 0xea, 0xc4, + 0xa1, 0x02, 0x04, 0x09, 0x6e, 0x53, 0x4b, 0x16, 0x41, 0xe6, 0xa1, 0xe0, 0xc9, 0xd6, 0x7d, 0x15, + 0xae, 0x79, 0x2c, 0xe1, 0x93, 0x14, 0xca, 0xba, 0x8e, 0x7b, 0x46, 0xed, 0x33, 0x96, 0x4a, 0x33, + 0x35, 0x04, 0xae, 0x09, 0x11, 0x0e, 0xd9, 0xe5, 0x02, 0xf7, 0x59, 0x2a, 0x0c, 0x7e, 0x1d, 0x5e, + 0x18, 0x47, 0x07, 0x2c, 0x49, 0x24, 0x7c, 0x1e, 0xe1, 0xe6, 0x08, 0xfc, 0x88, 0x25, 0x89, 0xc0, + 0xbf, 0x01, 0xe6, 0xe8, 0x30, 0xba, 0x67, 0xd4, 0x3d, 0xe7, 0x3e, 0xd7, 0xb5, 0xce, 0x55, 0x63, + 0xb8, 0xcb, 0x99, 0x47, 0x09, 0x5f, 0xe4, 0x25, 0xa9, 0xa3, 0x46, 0x4f, 0xf5, 0xdd, 0x02, 0x22, + 0x0c, 0xe4, 0x70, 0x63, 0xaa, 0xfb, 0xae, 0x42, 0x39, 0xa1, 0xdd, 0x80, 0x86, 0x69, 0x82, 0xef, + 0x13, 0x4a, 0x56, 0xf6, 0x2d, 0x92, 0xcb, 0x51, 0xf7, 0x5c, 0x8b, 0x2a, 0xb9, 0x1c, 0x71, 0xc9, + 0xc5, 0xd9, 0x1e, 0xf5, 0x53, 0x47, 0x84, 0x24, 0x11, 0x6c, 0xa4, 0x60, 0x18, 0xde, 0x84, 0xaa, + 0x60, 0x8b, 0xe6, 0x2e, 0x21, 0x5f, 0x20, 0x44, 0x03, 0x5f, 0x86, 0x85, 0xe0, 0xb1, 0xeb, 0xda, + 0x2c, 0xec, 0xf5, 0x53, 0xa1, 0x64, 0x59, 0x8c, 0x1c, 0x27, 0x37, 0x39, 0x15, 0x15, 0x6d, 0x80, + 0xa1, 0xc9, 0x09, 0x6d, 0x2b, 0x28, 0x58, 0xcf, 0x04, 0x85, 0x46, 0x25, 0x19, 0xf5, 0xd3, 0x4c, + 0xe5, 0x6a, 0x2e, 0x79, 0x8c, 0x64, 0xd4, 0xb9, 0x0e, 0x35, 0x3f, 0xc0, 0x9c, 0x12, 0x52, 0x6b, + 0xc2, 0x3b, 0x3f, 0xe0, 0x89, 0x84, 0x12, 0xef, 0xc2, 0x55, 0x3d, 0xb4, 0xd1, 0xb8, 0xbc, 0x65, + 0x0e, 0x12, 0x7c, 0x1a, 0x50, 0xb2, 0xd6, 0xf2, 0xe8, 0x6e, 0xe6, 0xfc, 0x23, 0x2d, 0xd8, 0x04, + 0xf8, 0x94, 0xa5, 0x81, 0xd3, 0xe3, 0xb8, 0x2b, 0x5a, 0xb0, 0x21, 0x6e, 0x07, 0x59, 0x47, 0x09, + 0x79, 0x15, 0x96, 0x02, 0x16, 0xda, 0x22, 0x2f, 0x72, 0x43, 0x57, 0xc5, 0xb8, 0x05, 0x2c, 0x3c, + 0xe4, 0x9c, 0xb6, 0xb2, 0xc0, 0xc5, 0x9d, 0xc1, 0x98, 0xf8, 0x35, 0x29, 0xee, 0x0c, 0x86, 0xc5, + 0xef, 0xc0, 0x32, 0xd7, 0x2e, 0x13, 0x2a, 0x97, 0x7f, 0x41, 0x64, 0x76, 0xc0, 0x42, 0x0b, 0x59, + 0x43, 0x00, 0x67, 0x30, 0x0e, 0xb8, 0x2e, 0x01, 0xce, 0x60, 0x04, 0xf0, 0x10, 0x96, 0x64, 0xac, + 0xd9, 0x51, 0xc7, 0x56, 0x25, 0xda, 0xbc, 0x81, 0x33, 0xc3, 0xfa, 0xd0, 0x84, 0x34, 0xa1, 0xd2, + 0x5b, 0x8b, 0x12, 0xac, 0x15, 0xff, 0xbc, 0x00, 0xe2, 0xa0, 0x0e, 0x55, 0xce, 0x9b, 0x7a, 0x01, + 0x3c, 0x7a, 0xec, 0xba, 0x93, 0x2b, 0xa7, 0x00, 0xea, 0x95, 0x73, 0x7d, 0x0c, 0xa8, 0x55, 0xce, + 0xf7, 0xe0, 0xba, 0x04, 0xfa, 0x81, 0xda, 0x80, 0x0f, 0x99, 0xbd, 0x85, 0xe8, 0x2b, 0x42, 0xe8, + 0x30, 0x10, 0xdb, 0x42, 0xdd, 0xf4, 0x44, 0x0d, 0xba, 0xfd, 0xc6, 0x44, 0x0d, 0x9a, 0x0f, 0xf7, + 0x60, 0xed, 0x31, 0x5e, 0x68, 0xda, 0xcc, 0x1b, 0x88, 0xc2, 0x8d, 0xc7, 0x0f, 0xc9, 0x5d, 0xd3, + 0x43, 0xec, 0x92, 0x60, 0x37, 0xbd, 0x01, 0xaf, 0xda, 0x07, 0x71, 0x14, 0xb4, 0xef, 0x92, 0xb7, + 0xe0, 0xca, 0x44, 0x94, 0xc7, 0x92, 0x73, 0x93, 0x8a, 0x36, 0x8f, 0xe1, 0xf6, 0x58, 0x72, 0x4e, + 0xde, 0x81, 0xab, 0x13, 0x91, 0x58, 0xaf, 0xcc, 0x0e, 0x42, 0x57, 0xc7, 0xa0, 0x58, 0xab, 0x26, + 0xf9, 0xaa, 0xce, 0x0b, 0xbb, 0x13, 0x7c, 0x95, 0xe7, 0x85, 0xc3, 0xbe, 0x8a, 0x9b, 0xca, 0x0c, + 0x77, 0x36, 0xe2, 0xab, 0xb8, 0xae, 0xcc, 0x4e, 0x1a, 0x6f, 0x8e, 0x23, 0x1f, 0xb3, 0x84, 0xa5, + 0x7c, 0x19, 0x1a, 0x79, 0x34, 0x31, 0x19, 0xe2, 0xaf, 0x8d, 0xe0, 0x3f, 0x14, 0x32, 0x2d, 0x2e, + 0x42, 0xee, 0xc3, 0xad, 0x71, 0x2d, 0x1e, 0x4b, 0x5c, 0x27, 0xf6, 0x32, 0x3d, 0x8f, 0x50, 0xcf, + 0xf5, 0x11, 0x3d, 0x7b, 0x4a, 0x4a, 0x68, 0x7a, 0x17, 0xae, 0x69, 0x9a, 0xb0, 0x56, 0x3e, 0xa6, + 0x6e, 0xd6, 0x96, 0xf3, 0x91, 0xce, 0xe3, 0x75, 0xf7, 0x43, 0xea, 0xca, 0xc6, 0x6c, 0xc3, 0x8d, + 0x51, 0x30, 0x1e, 0x26, 0x25, 0x19, 0xde, 0x17, 0xb1, 0x32, 0x84, 0x3f, 0x46, 0x91, 0xbc, 0x27, + 0xb3, 0xfb, 0xad, 0xb1, 0x68, 0x19, 0xe0, 0x1d, 0xe0, 0x8a, 0x12, 0x18, 0x8e, 0x97, 0xaf, 0xc2, + 0xb5, 0x4b, 0x90, 0x18, 0x31, 0x17, 0x88, 0x5d, 0x9b, 0x80, 0xc5, 0x98, 0xf9, 0x3a, 0xbc, 0x70, + 0x09, 0x5a, 0x44, 0xcd, 0x27, 0x08, 0x37, 0x27, 0xc0, 0x45, 0xdc, 0x4c, 0xf4, 0x5b, 0xb5, 0xfa, + 0x97, 0x44, 0x04, 0x8c, 0x80, 0x65, 0x8b, 0x47, 0xfd, 0x1e, 0x89, 0x9e, 0x5f, 0x16, 0x65, 0x59, + 0xc3, 0x0e, 0xc5, 0xcf, 0x7d, 0xb8, 0x35, 0x09, 0x3d, 0xbc, 0x9c, 0xfb, 0x15, 0x74, 0xfe, 0xfa, + 0x98, 0x8e, 0xa1, 0x55, 0xdd, 0xdb, 0x23, 0x2d, 0x10, 0x87, 0xd5, 0x32, 0xc7, 0x7f, 0x55, 0x8c, + 0xbb, 0xa6, 0x41, 0x9c, 0x4b, 0x8b, 0x04, 0xbf, 0xcc, 0x09, 0x3c, 0x2f, 0x51, 0x2a, 0x7e, 0x4d, + 0x84, 0xdf, 0xb8, 0x13, 0x52, 0x0a, 0x35, 0x7d, 0x0d, 0xae, 0x75, 0xd2, 0xc4, 0x0e, 0xd5, 0xf9, + 0x64, 0x40, 0x83, 0x28, 0xbe, 0xb0, 0xc3, 0x08, 0xbd, 0x31, 0xbf, 0x57, 0x10, 0xa3, 0xd8, 0x49, + 0x93, 0x96, 0x38, 0x95, 0x14, 0x02, 0x2d, 0xc1, 0xe7, 0x93, 0x94, 0x06, 0x4f, 0x59, 0x78, 0x21, + 0x9a, 0x61, 0xfe, 0x9e, 0x00, 0x2e, 0x2a, 0xe0, 0x09, 0x0b, 0x2f, 0xb0, 0x05, 0x7c, 0xbd, 0x37, + 0x0a, 0x51, 0xd6, 0xbe, 0x2f, 0x40, 0x4b, 0x3a, 0x48, 0x59, 0xba, 0x03, 0xcb, 0x1a, 0xcc, 0x0b, + 0x3a, 0xd2, 0xd0, 0xef, 0x0b, 0x8c, 0xa1, 0x30, 0x7b, 0x41, 0x47, 0xd8, 0xb9, 0x0b, 0xab, 0x23, + 0x00, 0x65, 0xe6, 0x0f, 0x04, 0x84, 0x68, 0x10, 0x65, 0x65, 0x17, 0x6e, 0x70, 0x10, 0xef, 0xbf, + 0x4b, 0x7a, 0xe4, 0x0f, 0xc5, 0x3e, 0xf5, 0x6a, 0x27, 0x4d, 0x78, 0x07, 0x4e, 0xea, 0x94, 0x37, + 0xc1, 0x1c, 0x56, 0xa2, 0xf5, 0xcb, 0x1f, 0x09, 0xf8, 0xb2, 0x06, 0xcf, 0xbb, 0xe6, 0x5d, 0xb8, + 0x3a, 0x01, 0xa8, 0x2c, 0xff, 0x40, 0x40, 0x57, 0x47, 0xa0, 0xca, 0xaa, 0xec, 0xd7, 0x1c, 0x9c, + 0xf7, 0xd1, 0x1f, 0x0b, 0xe4, 0x92, 0x86, 0xcc, 0xba, 0xe9, 0x6d, 0xb8, 0x32, 0x0e, 0x53, 0x26, + 0xff, 0x44, 0x00, 0x57, 0x86, 0x81, 0x23, 0x83, 0x9f, 0x67, 0x1f, 0x2e, 0x57, 0x82, 0xc4, 0xfc, + 0x53, 0x01, 0xe3, 0x83, 0xaf, 0x52, 0x8f, 0xb3, 0xc4, 0x62, 0x7f, 0x08, 0xa2, 0x25, 0xfc, 0x9f, + 0xe5, 0x83, 0x3f, 0x96, 0xec, 0xef, 0xc1, 0xf5, 0x09, 0x30, 0x71, 0xfc, 0xc8, 0x27, 0x41, 0xf3, + 0x87, 0x02, 0x6c, 0x8e, 0x80, 0x51, 0xe2, 0x80, 0xf9, 0x94, 0x27, 0xfd, 0xb8, 0x86, 0x44, 0x3e, + 0xdb, 0xbd, 0x6b, 0xfe, 0xb9, 0xc0, 0xaf, 0x0e, 0xe3, 0xdb, 0xc8, 0x6f, 0xdf, 0x9d, 0x6c, 0x5f, + 0xa2, 0xb1, 0xd8, 0xfd, 0xc5, 0x44, 0xfb, 0x02, 0x8f, 0xe5, 0x6e, 0x03, 0x0c, 0xa5, 0x41, 0x26, + 0x6b, 0x68, 0xfe, 0xa5, 0x00, 0xcd, 0x0b, 0x90, 0x48, 0xce, 0x96, 0xde, 0x45, 0xaa, 0x32, 0xa9, + 0x7e, 0xfd, 0xab, 0x7c, 0x1c, 0xf3, 0xb2, 0x24, 0x7b, 0x56, 0x86, 0x3b, 0x87, 0x79, 0x81, 0x42, + 0x62, 0x1d, 0xf8, 0x6b, 0x81, 0x22, 0x02, 0xb5, 0x17, 0x08, 0x9c, 0xcc, 0xfe, 0x17, 0x34, 0x90, + 0xb0, 0x83, 0xb3, 0x08, 0xa7, 0x06, 0x89, 0xf9, 0xa3, 0x3c, 0xe4, 0x10, 0x8a, 0xc6, 0xf8, 0x14, + 0x72, 0x90, 0x26, 0x47, 0x09, 0xd9, 0x85, 0x9b, 0x93, 0xe1, 0x72, 0x12, 0x0a, 0x12, 0xf3, 0x6f, + 0x84, 0x86, 0x2b, 0x63, 0x1a, 0xc4, 0x24, 0x74, 0x94, 0xa8, 0x6c, 0xe1, 0x4a, 0x30, 0xdc, 0x75, + 0xd7, 0xff, 0x36, 0xcf, 0x96, 0xa6, 0x37, 0xe0, 0xd1, 0xae, 0x39, 0xbf, 0x2d, 0x72, 0x35, 0x03, + 0x8e, 0xbb, 0xff, 0x77, 0x02, 0x6e, 0xe6, 0xf0, 0x91, 0x06, 0xbc, 0x0f, 0xb7, 0x2e, 0x53, 0x91, + 0x37, 0xe1, 0xef, 0x85, 0x96, 0x6b, 0x13, 0xb4, 0x64, 0x8d, 0x90, 0x83, 0x76, 0x1a, 0xf7, 0x53, + 0xaa, 0x6b, 0x09, 0x12, 0xf3, 0x1f, 0xf2, 0x41, 0xdb, 0xe1, 0xec, 0x0c, 0x7c, 0x94, 0xa8, 0xe4, + 0xd3, 0x61, 0xb2, 0xf9, 0x41, 0x62, 0xfe, 0x38, 0x4f, 0xbe, 0x1c, 0x28, 0xda, 0x7f, 0x94, 0x34, + 0x7e, 0x54, 0xc8, 0x8e, 0x25, 0xf4, 0x73, 0x9d, 0x17, 0xa1, 0x1e, 0xb0, 0xf0, 0xa4, 0x7d, 0x2c, + 0x8e, 0x88, 0xb2, 0x73, 0xb5, 0x9a, 0xa0, 0x72, 0xd1, 0x16, 0x06, 0x4b, 0x8f, 0xf5, 0xa8, 0xcf, + 0x42, 0x6a, 0x7f, 0xdc, 0xa7, 0x7d, 0x9a, 0x49, 0x8b, 0xe3, 0x8f, 0x25, 0xc5, 0xfd, 0x26, 0x67, + 0x4a, 0xd0, 0x9b, 0x60, 0x66, 0xa0, 0xd3, 0x98, 0x3a, 0xe7, 0x34, 0xce, 0x60, 0xf2, 0x14, 0x42, + 0xf1, 0x77, 0x04, 0x5b, 0x00, 0x1b, 0xff, 0x5e, 0x80, 0x95, 0x89, 0xe7, 0x48, 0xbc, 0x82, 0x88, + 0xbb, 0x4b, 0x7c, 0x07, 0x98, 0xd0, 0x50, 0x6d, 0xbf, 0x65, 0xc8, 0x22, 0xf3, 0x3b, 0x51, 0x88, + 0xaf, 0x9e, 0xc5, 0xfe, 0xec, 0x4d, 0x30, 0x35, 0x88, 0xfc, 0x3d, 0x82, 0x44, 0x15, 0xd5, 0xb4, + 0x2f, 0x51, 0xf2, 0xd9, 0x64, 0xb6, 0x79, 0x67, 0x61, 0x3a, 0xc1, 0xd6, 0xb4, 0xb2, 0x95, 0x4e, + 0xb4, 0x95, 0x4e, 0xb6, 0x55, 0x52, 0xb6, 0xd2, 0x71, 0x5b, 0x8d, 0x4f, 0xa0, 0xd4, 0x8e, 0xe2, + 0x94, 0xbc, 0x0c, 0x73, 0xa7, 0x78, 0xbc, 0x9a, 0x4c, 0x3e, 0x5e, 0x96, 0x4c, 0xf2, 0x22, 0xcc, + 0xb3, 0x04, 0x1f, 0x3c, 0x38, 0x3e, 0x07, 0xca, 0x77, 0xa4, 0xc3, 0xc4, 0xe7, 0xbc, 0x1f, 0xf8, + 0xed, 0x22, 0x18, 0xe2, 0x87, 0x01, 0x07, 0xb1, 0x13, 0xd0, 0x9d, 0xa8, 0x1f, 0x7a, 0xe4, 0x0e, + 0x94, 0xb4, 0xeb, 0xeb, 0x15, 0xfd, 0xe7, 0x03, 0x28, 0xa0, 0x5d, 0x67, 0xa1, 0x20, 0x69, 0x40, + 0xa5, 0x1f, 0x9e, 0x72, 0x16, 0xf5, 0x86, 0xce, 0x77, 0x73, 0x32, 0x59, 0x85, 0x59, 0xf1, 0x3e, + 0x56, 0x76, 0xa1, 0xfc, 0x22, 0x1b, 0x50, 0x71, 0x1d, 0xdf, 0x3d, 0xe8, 0x87, 0xae, 0x7a, 0x83, + 0xab, 0x5f, 0x1d, 0xe4, 0x4c, 0xf2, 0x7f, 0xa0, 0xda, 0xe1, 0x4e, 0xda, 0xf8, 0x92, 0x47, 0xfe, + 0xa4, 0x65, 0xe8, 0x5e, 0x07, 0xd9, 0xf8, 0xe8, 0x87, 0xbc, 0x03, 0xf3, 0x6e, 0xd0, 0x13, 0x27, + 0x59, 0xda, 0xed, 0x9c, 0xfc, 0x0d, 0x0a, 0xca, 0xec, 0x06, 0xbd, 0x3d, 0x27, 0x75, 0xf0, 0xda, + 0xb8, 0xea, 0xe6, 0x1f, 0x8d, 0xef, 0x15, 0xa0, 0xaa, 0x75, 0xca, 0xd3, 0xfa, 0x03, 0x05, 0xc6, + 0xfa, 0xe3, 0xcb, 0x30, 0x93, 0xa4, 0x8e, 0x1c, 0x99, 0xec, 0x87, 0x2f, 0xa3, 0xfd, 0x6c, 0x09, + 0x21, 0xb2, 0x01, 0xd3, 0x34, 0x54, 0xe3, 0x74, 0x99, 0x2c, 0x17, 0x69, 0xfc, 0x73, 0x01, 0x66, + 0x05, 0x87, 0xbc, 0x02, 0x95, 0x4e, 0x3f, 0x74, 0x6d, 0xbc, 0x90, 0x1b, 0xbf, 0xc9, 0x29, 0x73, + 0xe6, 0x1e, 0x4d, 0xdc, 0xb1, 0xe3, 0xfc, 0xe2, 0x33, 0x8e, 0xf3, 0x87, 0xae, 0x39, 0xa6, 0x9f, + 0x76, 0xcd, 0xf1, 0x0a, 0xcc, 0x60, 0x87, 0xcb, 0x87, 0x69, 0x8b, 0x63, 0x9e, 0x5b, 0x82, 0x9f, + 0x87, 0xe2, 0xcc, 0xd3, 0x42, 0xf1, 0x1b, 0x50, 0xc3, 0xdb, 0x24, 0x16, 0x76, 0x79, 0x13, 0xc8, + 0x1d, 0x98, 0xef, 0xca, 0x6f, 0xf1, 0x1e, 0x70, 0xbc, 0x95, 0xb5, 0xae, 0x06, 0x68, 0xdc, 0x87, + 0xaa, 0x52, 0xd0, 0xa6, 0x29, 0x79, 0x1b, 0xea, 0x43, 0x78, 0x95, 0x55, 0xf2, 0x36, 0x51, 0xb7, + 0x65, 0xcd, 0xeb, 0x8a, 0x92, 0xc6, 0xa7, 0x05, 0x98, 0x15, 0xbf, 0x22, 0x21, 0x6f, 0x68, 0x5e, + 0x64, 0x8f, 0xbb, 0xb3, 0xc6, 0x6a, 0xf6, 0x72, 0x67, 0xda, 0x34, 0x4d, 0x9e, 0xf3, 0xae, 0xc5, + 0x84, 0xb9, 0xc7, 0x34, 0xc6, 0x5f, 0x21, 0x88, 0xac, 0x50, 0x9f, 0x8d, 0x57, 0xa1, 0xc2, 0x7d, + 0x11, 0x4f, 0xc0, 0x9f, 0x79, 0x73, 0xd8, 0xf8, 0xdd, 0x02, 0xcc, 0xc9, 0xdf, 0xbd, 0x90, 0xdb, + 0x00, 0xbd, 0x38, 0x7a, 0x34, 0xd4, 0xe8, 0x85, 0x1c, 0x22, 0x7e, 0x8b, 0x50, 0xe1, 0x22, 0xe2, + 0x26, 0xf1, 0x1e, 0xac, 0x76, 0x69, 0x48, 0x63, 0x7c, 0x4d, 0x23, 0x4f, 0xb2, 0xc4, 0x2b, 0xd2, + 0x22, 0xbe, 0x22, 0x5d, 0xce, 0xb8, 0xe2, 0x3c, 0x4b, 0x3c, 0x27, 0x7d, 0xbe, 0xfa, 0xf2, 0x32, + 0xd4, 0x87, 0x7f, 0x5d, 0x43, 0x96, 0xd5, 0x3d, 0x90, 0x38, 0x5b, 0x17, 0x1f, 0x9b, 0xdf, 0x9b, + 0x16, 0x3f, 0xb4, 0xc3, 0xbb, 0xf1, 0x45, 0x98, 0xe7, 0x7f, 0xb3, 0xa7, 0x5c, 0xc6, 0x94, 0x22, + 0x65, 0x37, 0xdf, 0x46, 0x41, 0x91, 0xb2, 0x6b, 0x5f, 0xa3, 0x48, 0x96, 0x60, 0x81, 0x93, 0xb4, + 0x0b, 0x4f, 0x63, 0x9a, 0xd4, 0xa0, 0x8c, 0xda, 0xa2, 0x5e, 0xcb, 0x28, 0x91, 0x79, 0xa8, 0xf0, + 0x2f, 0xbc, 0x2c, 0x33, 0x66, 0x32, 0x25, 0x78, 0xa8, 0xb4, 0xdd, 0xed, 0x1a, 0xb3, 0x4a, 0xfe, + 0x83, 0x88, 0x85, 0xc6, 0x9c, 0xfa, 0x7a, 0xc0, 0x7c, 0xdf, 0x28, 0x93, 0x55, 0x20, 0xfc, 0x6b, + 0xf8, 0xe7, 0x35, 0x46, 0x85, 0x98, 0xb0, 0xac, 0xd3, 0xd5, 0x0b, 0x7c, 0x03, 0x08, 0x81, 0x3a, + 0xe7, 0xe4, 0xd7, 0xc0, 0x46, 0x95, 0x5c, 0x85, 0x55, 0xa4, 0x8d, 0xbd, 0x59, 0x33, 0x6a, 0xca, + 0x1e, 0x2f, 0xe1, 0xc6, 0x3c, 0xa9, 0x03, 0xf0, 0x2f, 0x91, 0x53, 0x46, 0x5d, 0x7d, 0x8b, 0x91, + 0x36, 0x16, 0xc8, 0x02, 0x54, 0xf3, 0xef, 0x2d, 0xc3, 0x50, 0x0e, 0x0e, 0xf7, 0xb9, 0xb1, 0xa8, + 0x04, 0xe5, 0x4f, 0x48, 0x0c, 0xa2, 0x1a, 0x9e, 0xfd, 0xfc, 0xc2, 0x58, 0x52, 0xbd, 0xa7, 0xfd, + 0xc2, 0xc1, 0x58, 0xde, 0x7c, 0x0b, 0x6a, 0xfa, 0xab, 0x7e, 0xae, 0xe8, 0xa1, 0x93, 0x24, 0x27, + 0x67, 0x71, 0xd4, 0xef, 0x9e, 0x19, 0x53, 0xbc, 0x43, 0x33, 0x6b, 0x46, 0x81, 0x94, 0xa1, 0x74, + 0xdf, 0x49, 0xce, 0x8c, 0xe2, 0xe6, 0xbb, 0xb0, 0x30, 0xf2, 0x63, 0x1a, 0xce, 0x6c, 0x1d, 0xb7, + 0xf6, 0x8d, 0x29, 0xfe, 0xdf, 0xc1, 0x76, 0xfb, 0xc4, 0x28, 0x90, 0x65, 0x30, 0xee, 0x37, 0xdf, + 0xbf, 0x6f, 0xef, 0x1e, 0x1f, 0x3d, 0xb4, 0xf6, 0xdb, 0xed, 0xe6, 0x71, 0xcb, 0x28, 0x6e, 0xde, + 0x06, 0xc8, 0xdf, 0x7d, 0x92, 0x0a, 0xcc, 0xe0, 0xe9, 0xa2, 0x00, 0x9e, 0xb0, 0x07, 0x1f, 0x1a, + 0x05, 0x52, 0x85, 0x39, 0xb9, 0x4e, 0x30, 0x8a, 0x9b, 0x77, 0x61, 0x41, 0xbc, 0xca, 0x47, 0xef, + 0x1f, 0xb0, 0x90, 0x4f, 0x38, 0xa4, 0xd9, 0xfa, 0x70, 0xfb, 0xb0, 0xb9, 0x67, 0x37, 0x5b, 0x7b, + 0xfb, 0xdf, 0xb6, 0x1f, 0x34, 0x5b, 0x7b, 0x42, 0xc3, 0xfd, 0x56, 0xfb, 0x23, 0xa3, 0xb0, 0x79, + 0x0a, 0xcb, 0x93, 0x9e, 0xf2, 0x93, 0x6b, 0xb0, 0xa6, 0x90, 0x7b, 0xcd, 0xf6, 0xc9, 0x76, 0x6b, + 0x77, 0xdf, 0x3e, 0xda, 0x3f, 0xb1, 0x9a, 0xbb, 0xc6, 0x14, 0x99, 0x85, 0xe2, 0xe1, 0xeb, 0x46, + 0x01, 0xff, 0x6e, 0x19, 0x45, 0x02, 0x30, 0xbb, 0x7b, 0xdc, 0x6e, 0xb6, 0xf6, 0x8d, 0x69, 0xde, + 0xa9, 0xcd, 0x56, 0x6b, 0xdf, 0xb2, 0x1f, 0x5a, 0xc7, 0x7b, 0xdf, 0xda, 0x3d, 0x31, 0x4a, 0x9b, + 0xaf, 0xe7, 0x3f, 0x4a, 0xc0, 0xa6, 0x2c, 0x83, 0xd1, 0x0c, 0x1f, 0x3b, 0x3e, 0xf3, 0x32, 0x9a, + 0x31, 0xc5, 0xdb, 0x72, 0x2c, 0xaa, 0xaa, 0x51, 0xd8, 0xfc, 0xbf, 0xf9, 0x0b, 0x73, 0x84, 0xac, + 0xc1, 0x92, 0xfe, 0x2d, 0xe1, 0xc6, 0xd4, 0x28, 0xa3, 0x15, 0xb5, 0xdd, 0x28, 0xa6, 0x46, 0x81, + 0x5c, 0x81, 0x15, 0x9d, 0xf1, 0x11, 0x4b, 0xcf, 0x04, 0xab, 0xb8, 0xf9, 0xed, 0x91, 0x07, 0xd3, + 0x6a, 0x50, 0x87, 0x35, 0xcb, 0x38, 0x13, 0xbd, 0x63, 0x14, 0x88, 0x01, 0x35, 0x29, 0x80, 0xa7, + 0x03, 0x46, 0x51, 0x51, 0x0e, 0xfa, 0xbe, 0x9f, 0xd2, 0x41, 0x6a, 0x4c, 0x6f, 0xfe, 0xb8, 0x00, + 0x65, 0xf5, 0xc6, 0x2d, 0xcf, 0xd7, 0x90, 0xc6, 0x98, 0x49, 0x53, 0x64, 0x05, 0x16, 0x31, 0xf3, + 0x68, 0x27, 0x3d, 0xee, 0xa7, 0x92, 0x5c, 0x50, 0x11, 0x6b, 0xb1, 0xee, 0x99, 0x46, 0xcf, 0x0c, + 0xa8, 0x97, 0x4a, 0xc6, 0x34, 0xef, 0x3a, 0xcc, 0xee, 0x30, 0x65, 0x19, 0xb5, 0xc4, 0xdb, 0x3a, + 0xa4, 0x36, 0x63, 0xcd, 0x90, 0xeb, 0x70, 0x45, 0x01, 0xc6, 0xd9, 0xb3, 0x9b, 0xeb, 0x50, 0xd3, + 0xdf, 0xd6, 0x29, 0x8b, 0x3c, 0x7c, 0x85, 0xcb, 0x9b, 0xef, 0xc0, 0xe2, 0xd8, 0x3b, 0x1e, 0x3e, + 0xf0, 0xcd, 0x96, 0x18, 0xb3, 0xa3, 0x66, 0xcb, 0x3e, 0xda, 0xfe, 0xb6, 0xe8, 0xa0, 0x9d, 0xc3, + 0xe3, 0xe3, 0x23, 0xfb, 0xa0, 0x79, 0x78, 0xb2, 0x6f, 0x19, 0xc5, 0xcd, 0xcd, 0x11, 0x2c, 0x26, + 0x00, 0x0f, 0xe4, 0xe3, 0xdd, 0xed, 0x43, 0x63, 0x8a, 0xc7, 0xcd, 0xfb, 0x87, 0xc7, 0x3b, 0xdb, + 0x87, 0x46, 0x61, 0x73, 0x07, 0x16, 0xc7, 0xde, 0x20, 0xf0, 0x41, 0x39, 0x88, 0x62, 0x97, 0x0a, + 0x92, 0x08, 0xdc, 0xed, 0x7e, 0x1a, 0x19, 0x05, 0x5e, 0x54, 0x90, 0x25, 0xca, 0x16, 0x0b, 0xbb, + 0x46, 0x71, 0xf3, 0x1b, 0xb0, 0x30, 0xb2, 0x44, 0xe3, 0xa9, 0x79, 0x10, 0xf9, 0x7e, 0xf4, 0x84, + 0x4b, 0x60, 0xa6, 0x3e, 0xe4, 0xcb, 0x52, 0x8f, 0x7f, 0x16, 0xf8, 0x18, 0xef, 0xe2, 0x0d, 0x75, + 0x6a, 0x45, 0x4f, 0x8c, 0xe2, 0xe6, 0x31, 0x18, 0xa3, 0xcb, 0x22, 0x32, 0x07, 0xd3, 0xcd, 0x30, + 0x35, 0xa6, 0xb8, 0xe3, 0x07, 0x7e, 0xe4, 0xa4, 0x22, 0xef, 0xf6, 0xa8, 0xcb, 0x02, 0xc7, 0x37, + 0x8a, 0xbc, 0x5c, 0xed, 0x39, 0x29, 0x3d, 0x61, 0x01, 0x15, 0xa5, 0x76, 0xaf, 0x2f, 0x2e, 0xce, + 0x8d, 0x12, 0xcf, 0xc9, 0x91, 0x45, 0x12, 0x6f, 0x02, 0xdf, 0x8d, 0x89, 0xe6, 0xa3, 0xb5, 0xc4, + 0x28, 0x60, 0x57, 0xf0, 0xb9, 0x33, 0x31, 0x8a, 0x3b, 0x6f, 0xff, 0xfc, 0x47, 0xe5, 0xc2, 0x4f, + 0x3e, 0xbb, 0x51, 0xf8, 0xe9, 0x67, 0x37, 0x0a, 0xff, 0xfa, 0xd9, 0x8d, 0xc2, 0x6f, 0x7d, 0x7e, + 0x63, 0xea, 0xfb, 0x9f, 0xdf, 0x98, 0xfa, 0xe9, 0xe7, 0x37, 0xa6, 0x7e, 0xfe, 0xf9, 0x8d, 0x29, + 0x58, 0x71, 0xa3, 0xe0, 0x36, 0x9f, 0x67, 0x5d, 0xa7, 0x77, 0x3b, 0x65, 0xde, 0x29, 0xce, 0x3c, + 0x0f, 0x0b, 0xff, 0x19, 0x00, 0x00, 0xff, 0xff, 0x8d, 0xba, 0x27, 0x9e, 0x0a, 0x3e, 0x00, 0x00, } func (m *Executor) Marshal() (dAtA []byte, err error) { @@ -4880,6 +4961,27 @@ func (m *Executor) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.ParentIdx != nil { + i = encodeVarintExecutor(dAtA, i, uint64(*m.ParentIdx)) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xc8 + } + if m.IndexLookup != nil { + { + size, err := m.IndexLookup.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintExecutor(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xc2 + } if m.CteSource != nil { { size, err := m.CteSource.MarshalToSizedBuffer(dAtA[:i]) @@ -5365,6 +5467,46 @@ func (m *CTESource) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *IndexLookUp) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *IndexLookUp) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *IndexLookUp) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.KeepOrder != nil { + i-- + if *m.KeepOrder { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x10 + } + if len(m.IndexHandleOffsets) > 0 { + for iNdEx := len(m.IndexHandleOffsets) - 1; iNdEx >= 0; iNdEx-- { + i = encodeVarintExecutor(dAtA, i, uint64(m.IndexHandleOffsets[iNdEx])) + i-- + dAtA[i] = 0x8 + } + } + return len(dAtA) - i, nil +} + func (m *EncodedBytesSlice) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -8192,6 +8334,13 @@ func (m *Executor) Size() (n int) { l = m.CteSource.Size() n += 2 + l + sovExecutor(uint64(l)) } + if m.IndexLookup != nil { + l = m.IndexLookup.Size() + n += 2 + l + sovExecutor(uint64(l)) + } + if m.ParentIdx != nil { + n += 2 + sovExecutor(uint64(*m.ParentIdx)) + } return n } @@ -8283,6 +8432,23 @@ func (m *CTESource) Size() (n int) { return n } +func (m *IndexLookUp) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.IndexHandleOffsets) > 0 { + for _, e := range m.IndexHandleOffsets { + n += 1 + sovExecutor(uint64(e)) + } + } + if m.KeepOrder != nil { + n += 2 + } + return n +} + func (m *EncodedBytesSlice) Size() (n int) { if m == nil { return 0 @@ -10235,6 +10401,62 @@ func (m *Executor) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 24: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field IndexLookup", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthExecutor + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthExecutor + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.IndexLookup == nil { + m.IndexLookup = &IndexLookUp{} + } + if err := m.IndexLookup.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 25: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ParentIdx", wireType) + } + var v uint32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ParentIdx = &v default: iNdEx = preIndex skippy, err := skipExecutor(dAtA[iNdEx:]) @@ -10962,6 +11184,153 @@ func (m *CTESource) Unmarshal(dAtA []byte) error { } return nil } +func (m *IndexLookUp) 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 ErrIntOverflowExecutor + } + 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: IndexLookUp: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: IndexLookUp: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType == 0 { + var v uint32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IndexHandleOffsets = append(m.IndexHandleOffsets, v) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthExecutor + } + postIndex := iNdEx + packedLen + if postIndex < 0 { + return ErrInvalidLengthExecutor + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var elementCount int + var count int + for _, integer := range dAtA[iNdEx:postIndex] { + if integer < 128 { + count++ + } + } + elementCount = count + if elementCount != 0 && len(m.IndexHandleOffsets) == 0 { + m.IndexHandleOffsets = make([]uint32, 0, elementCount) + } + for iNdEx < postIndex { + var v uint32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IndexHandleOffsets = append(m.IndexHandleOffsets, v) + } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field IndexHandleOffsets", wireType) + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field KeepOrder", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + b := bool(v != 0) + m.KeepOrder = &b + default: + iNdEx = preIndex + skippy, err := skipExecutor(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthExecutor + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *EncodedBytesSlice) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/go-tipb/select.pb.go b/go-tipb/select.pb.go index 2ff553fa..eff023cc 100644 --- a/go-tipb/select.pb.go +++ b/go-tipb/select.pb.go @@ -9,6 +9,7 @@ import ( "math" _ "github.com/gogo/protobuf/gogoproto" + github_com_golang_protobuf_proto "github.com/golang/protobuf/proto" proto "github.com/golang/protobuf/proto" github_com_pingcap_tipb_sharedbytes "github.com/pingcap/tipb/sharedbytes" @@ -215,6 +216,59 @@ func (m *Error) GetMsg() string { return "" } +// It is the data of a intermidiate output channel +type IntermediateOutput struct { + EncodeType EncodeType `protobuf:"varint,1,opt,name=encode_type,json=encodeType,enum=tipb.EncodeType" json:"encode_type"` + Chunks []Chunk `protobuf:"bytes,2,rep,name=chunks" json:"chunks"` +} + +func (m *IntermediateOutput) Reset() { *m = IntermediateOutput{} } +func (m *IntermediateOutput) String() string { return proto.CompactTextString(m) } +func (*IntermediateOutput) ProtoMessage() {} +func (*IntermediateOutput) Descriptor() ([]byte, []int) { + return fileDescriptor_86353caa10f8b4d7, []int{2} +} +func (m *IntermediateOutput) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *IntermediateOutput) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_IntermediateOutput.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *IntermediateOutput) XXX_Merge(src proto.Message) { + xxx_messageInfo_IntermediateOutput.Merge(m, src) +} +func (m *IntermediateOutput) XXX_Size() int { + return m.Size() +} +func (m *IntermediateOutput) XXX_DiscardUnknown() { + xxx_messageInfo_IntermediateOutput.DiscardUnknown(m) +} + +var xxx_messageInfo_IntermediateOutput proto.InternalMessageInfo + +func (m *IntermediateOutput) GetEncodeType() EncodeType { + if m != nil { + return m.EncodeType + } + return EncodeType_TypeDefault +} + +func (m *IntermediateOutput) GetChunks() []Chunk { + if m != nil { + return m.Chunks + } + return nil +} + // Response for SelectRequest. type SelectResponse struct { Error *Error `protobuf:"bytes,1,opt,name=error" json:"error,omitempty"` @@ -233,13 +287,15 @@ type SelectResponse struct { // ndvs collects the number of distinct value information per range. It will be used to serve as execution feedback information. // Helping us improve the table's statistics information. Ndvs []int64 `protobuf:"varint,10,rep,name=ndvs" json:"ndvs,omitempty"` + // It contains all the intermedidate outputs. + IntermediateOutputs []*IntermediateOutput `protobuf:"bytes,11,rep,name=intermediate_outputs,json=intermediateOutputs" json:"intermediate_outputs,omitempty"` } func (m *SelectResponse) Reset() { *m = SelectResponse{} } func (m *SelectResponse) String() string { return proto.CompactTextString(m) } func (*SelectResponse) ProtoMessage() {} func (*SelectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_86353caa10f8b4d7, []int{2} + return fileDescriptor_86353caa10f8b4d7, []int{3} } func (m *SelectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -331,6 +387,13 @@ func (m *SelectResponse) GetNdvs() []int64 { return nil } +func (m *SelectResponse) GetIntermediateOutputs() []*IntermediateOutput { + if m != nil { + return m.IntermediateOutputs + } + return nil +} + // Chunk contains multiple rows data and rows meta. type Chunk struct { // Data for all rows in the chunk. @@ -343,7 +406,7 @@ func (m *Chunk) Reset() { *m = Chunk{} } func (m *Chunk) String() string { return proto.CompactTextString(m) } func (*Chunk) ProtoMessage() {} func (*Chunk) Descriptor() ([]byte, []int) { - return fileDescriptor_86353caa10f8b4d7, []int{3} + return fileDescriptor_86353caa10f8b4d7, []int{4} } func (m *Chunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -379,6 +442,65 @@ func (m *Chunk) GetRowsMeta() []RowMeta { return nil } +// IntermediateOutputChannel is the channel description for the intermediate ouput. +// The SelectResponse of a DAGRequest may output some intermediate data because not all rows can be processed in DAG. +// For example, the executor IndexLookUp scans the index records and look up the rows locally. +// If a related row of a index is not found locally, this index record should be ouput into the intermediate channel +// for the further processment in the TiDB side. +type IntermediateOutputChannel struct { + // executor_idx indicates which executor outputs this intermediate result. + ExecutorIdx uint32 `protobuf:"varint,1,req,name=executor_idx,json=executorIdx" json:"executor_idx"` + // It represents which columns we should output. + OutputOffsets []uint32 `protobuf:"varint,2,rep,name=output_offsets,json=outputOffsets" json:"output_offsets,omitempty"` +} + +func (m *IntermediateOutputChannel) Reset() { *m = IntermediateOutputChannel{} } +func (m *IntermediateOutputChannel) String() string { return proto.CompactTextString(m) } +func (*IntermediateOutputChannel) ProtoMessage() {} +func (*IntermediateOutputChannel) Descriptor() ([]byte, []int) { + return fileDescriptor_86353caa10f8b4d7, []int{5} +} +func (m *IntermediateOutputChannel) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *IntermediateOutputChannel) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_IntermediateOutputChannel.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *IntermediateOutputChannel) XXX_Merge(src proto.Message) { + xxx_messageInfo_IntermediateOutputChannel.Merge(m, src) +} +func (m *IntermediateOutputChannel) XXX_Size() int { + return m.Size() +} +func (m *IntermediateOutputChannel) XXX_DiscardUnknown() { + xxx_messageInfo_IntermediateOutputChannel.DiscardUnknown(m) +} + +var xxx_messageInfo_IntermediateOutputChannel proto.InternalMessageInfo + +func (m *IntermediateOutputChannel) GetExecutorIdx() uint32 { + if m != nil { + return m.ExecutorIdx + } + return 0 +} + +func (m *IntermediateOutputChannel) GetOutputOffsets() []uint32 { + if m != nil { + return m.OutputOffsets + } + return nil +} + // RowMeta contains row handle and length of a row. type RowMeta struct { Handle int64 `protobuf:"varint,1,opt,name=handle" json:"handle"` @@ -389,7 +511,7 @@ func (m *RowMeta) Reset() { *m = RowMeta{} } func (m *RowMeta) String() string { return proto.CompactTextString(m) } func (*RowMeta) ProtoMessage() {} func (*RowMeta) Descriptor() ([]byte, []int) { - return fileDescriptor_86353caa10f8b4d7, []int{4} + return fileDescriptor_86353caa10f8b4d7, []int{6} } func (m *RowMeta) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -437,7 +559,23 @@ type DAGRequest struct { // Transaction start timestamp. // Deprecated. Start Ts has been moved to coprocessor.Request. StartTsFallback *uint64 `protobuf:"varint,1,opt,name=start_ts_fallback,json=startTsFallback" json:"start_ts_fallback,omitempty"` - // It represents push down Executors. + // It represents push down Executors and follows the order of depth-first search with post-order traversal. + // That is: left child first, then right child, then parent. + // For example, a DAG: + // A + // / + // B + // / \ + // C D + // / / \ + // E F G + // / + // H + // Its order should be: [H, E, C, F, G, D, B, A] + // In most cases, there is only one child for each parent, that makes executors simple array from the srouce + // to the out most executors, and the response only need to output the final rows. + // But when a executor has more than one children, for example, IndexLookUp, some intermedidate result is required to output. + // The field `intermediate_output_channels` describes it. Executors []*Executor `protobuf:"bytes,2,rep,name=executors" json:"executors,omitempty"` // time zone offset in seconds TimeZoneOffset int64 `protobuf:"varint,3,opt,name=time_zone_offset,json=timeZoneOffset" json:"time_zone_offset"` @@ -480,13 +618,15 @@ type DAGRequest struct { ForceEncodeType *bool `protobuf:"varint,18,opt,name=force_encode_type,json=forceEncodeType" json:"force_encode_type,omitempty"` // It indicates the number of digits by which to increase the scale of the result of division operations performed with the / operator. DivPrecisionIncrement *uint32 `protobuf:"varint,19,opt,name=div_precision_increment,json=divPrecisionIncrement" json:"div_precision_increment,omitempty"` + // It inidcates the intermdidate result channels. + IntermediateOutputChannels []*IntermediateOutputChannel `protobuf:"bytes,20,rep,name=intermediate_output_channels,json=intermediateOutputChannels" json:"intermediate_output_channels,omitempty"` } func (m *DAGRequest) Reset() { *m = DAGRequest{} } func (m *DAGRequest) String() string { return proto.CompactTextString(m) } func (*DAGRequest) ProtoMessage() {} func (*DAGRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_86353caa10f8b4d7, []int{5} + return fileDescriptor_86353caa10f8b4d7, []int{7} } func (m *DAGRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -641,6 +781,13 @@ func (m *DAGRequest) GetDivPrecisionIncrement() uint32 { return 0 } +func (m *DAGRequest) GetIntermediateOutputChannels() []*IntermediateOutputChannel { + if m != nil { + return m.IntermediateOutputChannels + } + return nil +} + type ChunkMemoryLayout struct { // Represents the endian. Endian Endian `protobuf:"varint,1,opt,name=endian,enum=tipb.Endian" json:"endian"` @@ -650,7 +797,7 @@ func (m *ChunkMemoryLayout) Reset() { *m = ChunkMemoryLayout{} } func (m *ChunkMemoryLayout) String() string { return proto.CompactTextString(m) } func (*ChunkMemoryLayout) ProtoMessage() {} func (*ChunkMemoryLayout) Descriptor() ([]byte, []int) { - return fileDescriptor_86353caa10f8b4d7, []int{6} + return fileDescriptor_86353caa10f8b4d7, []int{8} } func (m *ChunkMemoryLayout) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -695,7 +842,7 @@ func (m *UserIdentity) Reset() { *m = UserIdentity{} } func (m *UserIdentity) String() string { return proto.CompactTextString(m) } func (*UserIdentity) ProtoMessage() {} func (*UserIdentity) Descriptor() ([]byte, []int) { - return fileDescriptor_86353caa10f8b4d7, []int{7} + return fileDescriptor_86353caa10f8b4d7, []int{9} } func (m *UserIdentity) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -753,7 +900,7 @@ func (m *StreamResponse) Reset() { *m = StreamResponse{} } func (m *StreamResponse) String() string { return proto.CompactTextString(m) } func (*StreamResponse) ProtoMessage() {} func (*StreamResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_86353caa10f8b4d7, []int{8} + return fileDescriptor_86353caa10f8b4d7, []int{10} } func (m *StreamResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -822,8 +969,10 @@ func init() { proto.RegisterEnum("tipb.Endian", Endian_name, Endian_value) proto.RegisterType((*Row)(nil), "tipb.Row") proto.RegisterType((*Error)(nil), "tipb.Error") + proto.RegisterType((*IntermediateOutput)(nil), "tipb.IntermediateOutput") proto.RegisterType((*SelectResponse)(nil), "tipb.SelectResponse") proto.RegisterType((*Chunk)(nil), "tipb.Chunk") + proto.RegisterType((*IntermediateOutputChannel)(nil), "tipb.IntermediateOutputChannel") proto.RegisterType((*RowMeta)(nil), "tipb.RowMeta") proto.RegisterType((*DAGRequest)(nil), "tipb.DAGRequest") proto.RegisterType((*ChunkMemoryLayout)(nil), "tipb.ChunkMemoryLayout") @@ -834,75 +983,82 @@ func init() { func init() { proto.RegisterFile("select.proto", fileDescriptor_86353caa10f8b4d7) } var fileDescriptor_86353caa10f8b4d7 = []byte{ - // 1083 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x55, 0x4d, 0x6f, 0x1b, 0x45, - 0x18, 0xf6, 0xc6, 0x1f, 0xb1, 0x5f, 0x7f, 0xc4, 0x99, 0x7e, 0x6d, 0x43, 0x71, 0x5d, 0x23, 0xc0, - 0xb5, 0x2a, 0xa7, 0x04, 0x89, 0xaa, 0x07, 0x40, 0x75, 0x12, 0xda, 0x8a, 0x86, 0x46, 0x9b, 0x20, - 0x24, 0x2e, 0xab, 0xc9, 0xee, 0xd8, 0x5e, 0x65, 0x77, 0x67, 0x33, 0x33, 0x9b, 0xd8, 0xfc, 0x01, - 0x6e, 0xc0, 0x91, 0x9f, 0xc0, 0x4f, 0xe9, 0x8d, 0x1e, 0x2b, 0x0e, 0x15, 0x4a, 0xfe, 0x08, 0x9a, - 0x77, 0x67, 0x13, 0x27, 0xe5, 0x00, 0xe2, 0xc0, 0x69, 0x67, 0x9e, 0xe7, 0x99, 0x77, 0xe6, 0x7d, - 0xdf, 0x67, 0x66, 0xa1, 0x21, 0x59, 0xc8, 0x3c, 0x35, 0x4c, 0x04, 0x57, 0x9c, 0x94, 0x54, 0x90, - 0x1c, 0xac, 0xb5, 0xd8, 0x8c, 0x79, 0xa9, 0xe2, 0x22, 0x43, 0xd7, 0xae, 0x4f, 0xf8, 0x84, 0xe3, - 0x70, 0x5d, 0x8f, 0x0c, 0xba, 0x22, 0x52, 0xa9, 0x70, 0x98, 0x01, 0xbd, 0x4f, 0xa0, 0xe8, 0xf0, - 0x13, 0x72, 0x13, 0x2a, 0x53, 0x1a, 0xfb, 0x21, 0xb3, 0xad, 0xae, 0xd5, 0x6f, 0x38, 0x66, 0x46, - 0x08, 0x94, 0x7c, 0xaa, 0xa8, 0xbd, 0x84, 0x28, 0x8e, 0x7b, 0x8f, 0xa1, 0xbc, 0x2d, 0x04, 0x17, - 0xc4, 0x86, 0x92, 0xc7, 0xfd, 0x6c, 0x49, 0x79, 0x54, 0x7a, 0xf5, 0xf6, 0x6e, 0xc1, 0x41, 0x84, - 0xdc, 0x84, 0x62, 0x24, 0x27, 0xb8, 0xaa, 0x66, 0x08, 0x0d, 0xf4, 0x7e, 0x2a, 0x42, 0x6b, 0x0f, - 0xcf, 0xee, 0x30, 0x99, 0xf0, 0x58, 0x32, 0x72, 0x0f, 0xca, 0x4c, 0x47, 0xc3, 0x28, 0xf5, 0x8d, - 0xfa, 0x50, 0x67, 0x33, 0xc4, 0x0d, 0x9c, 0x8c, 0x21, 0xef, 0x43, 0x49, 0xf0, 0x13, 0x69, 0x2f, - 0x75, 0x8b, 0xfd, 0xfa, 0x46, 0x2d, 0x53, 0x38, 0xfc, 0xc4, 0x41, 0x98, 0xdc, 0x87, 0x8a, 0x37, - 0x4d, 0xe3, 0x43, 0x69, 0x17, 0x51, 0x60, 0x42, 0x6c, 0x6a, 0xcc, 0x6c, 0x6e, 0x04, 0xe4, 0x63, - 0xa8, 0x9e, 0x50, 0x11, 0x07, 0xf1, 0x44, 0xda, 0xa5, 0x45, 0x71, 0xb6, 0xdf, 0x39, 0x49, 0x3e, - 0x80, 0x26, 0x4f, 0x55, 0x92, 0x2a, 0xd7, 0xe3, 0x69, 0xac, 0xa4, 0x5d, 0xee, 0x16, 0xfb, 0x45, - 0xa7, 0x91, 0x81, 0x9b, 0x88, 0x69, 0x91, 0x59, 0x90, 0xa9, 0xec, 0x4a, 0xd7, 0xd2, 0x22, 0x03, - 0xa2, 0x8a, 0xbc, 0x84, 0x6b, 0x59, 0x67, 0x02, 0x1e, 0xbb, 0x32, 0x8d, 0x22, 0x2a, 0x02, 0x26, - 0xed, 0x2a, 0xee, 0xde, 0x31, 0xbb, 0x9b, 0xd6, 0x6d, 0xe7, 0xc2, 0x3d, 0xd4, 0xcd, 0x1d, 0xc2, - 0x2e, 0x23, 0x01, 0x93, 0xe4, 0x11, 0xd4, 0x59, 0xac, 0xab, 0xec, 0xaa, 0x79, 0xc2, 0xec, 0x5a, - 0xd7, 0xea, 0xb7, 0x36, 0xda, 0x26, 0x10, 0x12, 0xfb, 0xf3, 0x84, 0x99, 0xc4, 0x81, 0x9d, 0x23, - 0xba, 0x97, 0xb1, 0x7f, 0x2c, 0x6d, 0xc0, 0x54, 0x70, 0xdc, 0xfb, 0xd9, 0x82, 0x32, 0x16, 0x8a, - 0xec, 0x43, 0x4d, 0x57, 0xd3, 0xc5, 0x76, 0x17, 0x75, 0xbb, 0x47, 0x8f, 0x74, 0x88, 0x3f, 0xde, - 0xde, 0x5d, 0x9f, 0x04, 0x6a, 0x9a, 0x1e, 0x0c, 0x3d, 0x1e, 0xad, 0x27, 0x41, 0x3c, 0xf1, 0x68, - 0xb2, 0xae, 0xb7, 0x5b, 0x97, 0x53, 0x2a, 0x98, 0x7f, 0x30, 0x57, 0x4c, 0x0e, 0xf7, 0x70, 0x3c, - 0xd2, 0x63, 0xa7, 0xaa, 0x23, 0x6d, 0x51, 0x45, 0xc9, 0x43, 0x13, 0x35, 0x62, 0x8a, 0x9a, 0x8a, - 0x37, 0xcf, 0xfb, 0xb7, 0xc3, 0x14, 0x35, 0xe7, 0xc4, 0x15, 0x7a, 0xde, 0xdb, 0x86, 0x65, 0x43, - 0x91, 0x3b, 0x97, 0x4c, 0x59, 0xcc, 0x7b, 0x69, 0xac, 0x79, 0x07, 0x2a, 0x21, 0x8b, 0x27, 0x6a, - 0x8a, 0x36, 0x3b, 0x67, 0x33, 0xac, 0xf7, 0x7b, 0x05, 0x60, 0xeb, 0xc9, 0x53, 0x87, 0x1d, 0xa5, - 0x4c, 0x2a, 0x32, 0x80, 0x55, 0xa9, 0xa8, 0x50, 0xae, 0x92, 0xee, 0x98, 0x86, 0xe1, 0x01, 0xf5, - 0x0e, 0x31, 0x6a, 0xc9, 0x59, 0x41, 0x62, 0x5f, 0x7e, 0x65, 0x60, 0xf2, 0x00, 0x6a, 0xf9, 0x5d, - 0xca, 0x3d, 0xd7, 0xba, 0xdc, 0x27, 0xe7, 0x42, 0x40, 0x86, 0xd0, 0x56, 0x41, 0xc4, 0xdc, 0x1f, - 0x78, 0xcc, 0x5c, 0x3e, 0x1e, 0x4b, 0xa6, 0xb0, 0x7c, 0xf9, 0x81, 0x5a, 0x9a, 0xfd, 0x9e, 0xc7, - 0xec, 0x25, 0x72, 0x64, 0x0d, 0xca, 0xe3, 0x90, 0xa2, 0xff, 0xac, 0x7e, 0xc9, 0x88, 0x32, 0x88, - 0x7c, 0x08, 0x2d, 0xe3, 0xba, 0x2c, 0x50, 0x66, 0xbb, 0xa6, 0x63, 0xbc, 0x98, 0x45, 0x90, 0xe4, - 0x21, 0x5c, 0xf7, 0x78, 0xa8, 0x6f, 0x91, 0x2b, 0x68, 0x3c, 0x61, 0xb9, 0x47, 0xb5, 0xfd, 0xaa, - 0x0e, 0x31, 0x9c, 0xa3, 0x29, 0xe3, 0xd4, 0x01, 0xac, 0x46, 0x74, 0xe6, 0x5e, 0x76, 0xeb, 0x72, - 0x96, 0x7e, 0x44, 0x67, 0xdf, 0x2d, 0x1a, 0xf6, 0x8a, 0xbf, 0xaa, 0xff, 0xd8, 0x5f, 0xb7, 0xa1, - 0x2a, 0x8f, 0x42, 0x37, 0xd2, 0x4f, 0x42, 0x0d, 0x63, 0x2f, 0xcb, 0xa3, 0x70, 0x47, 0xbf, 0x07, - 0x03, 0x68, 0x5d, 0x14, 0x29, 0xa6, 0x11, 0xb3, 0xeb, 0x0b, 0x4f, 0x43, 0x23, 0x2f, 0xd1, 0x37, - 0x34, 0x62, 0xe4, 0x0b, 0x78, 0x2f, 0xcf, 0xee, 0xef, 0x2e, 0x4e, 0x03, 0x93, 0xbc, 0x6d, 0x24, - 0xdb, 0xef, 0xde, 0x8f, 0x07, 0x40, 0x74, 0xae, 0x34, 0x0c, 0xf9, 0x09, 0xf3, 0xdd, 0x84, 0x7a, - 0x87, 0x4c, 0xd9, 0x4d, 0x3c, 0x50, 0x3b, 0xa2, 0xb3, 0x27, 0x19, 0xb1, 0x8b, 0x38, 0x79, 0x0a, - 0xd7, 0xf0, 0x6d, 0x70, 0x23, 0x16, 0x71, 0x31, 0x77, 0x43, 0x3a, 0xe7, 0xa9, 0xb2, 0x5b, 0xf8, - 0x18, 0xdd, 0x5a, 0x78, 0x49, 0x76, 0x90, 0x7f, 0x81, 0xb4, 0xb3, 0xea, 0x5d, 0x85, 0x48, 0x07, - 0xea, 0x81, 0x74, 0x45, 0x12, 0xbb, 0x6c, 0x96, 0x08, 0x7b, 0x05, 0x8f, 0x59, 0x0b, 0xa4, 0x93, - 0xc4, 0xdb, 0xb3, 0x44, 0x90, 0x8f, 0xa0, 0x94, 0x4a, 0x26, 0xec, 0x36, 0x46, 0x26, 0x59, 0xe4, - 0x6f, 0x25, 0x13, 0xcf, 0x7d, 0x16, 0xab, 0x40, 0xcd, 0x1d, 0xe4, 0xc9, 0xa7, 0xd0, 0x14, 0x9c, - 0xe7, 0xb9, 0x73, 0x61, 0xaf, 0xe2, 0x82, 0xab, 0x0e, 0x6c, 0x68, 0x51, 0x3e, 0xd3, 0xfd, 0x1d, - 0x73, 0xe1, 0x31, 0x77, 0xb1, 0x73, 0x04, 0x8f, 0xb0, 0x82, 0xc4, 0x45, 0xe3, 0xc8, 0x67, 0x70, - 0xcb, 0x0f, 0x8e, 0xdd, 0x44, 0x30, 0x2f, 0x90, 0xba, 0xb6, 0x41, 0xec, 0x09, 0x16, 0xb1, 0x58, - 0xd9, 0xd7, 0xba, 0x56, 0xbf, 0xe9, 0xdc, 0xf0, 0x83, 0xe3, 0xdd, 0x9c, 0x7d, 0x9e, 0x93, 0xbd, - 0x2f, 0x61, 0xf5, 0x9d, 0x42, 0x90, 0x01, 0x54, 0x58, 0xec, 0x07, 0x34, 0xc6, 0xcb, 0xd4, 0xda, - 0x68, 0xe4, 0x3e, 0xd1, 0x58, 0x7e, 0x25, 0x33, 0x45, 0x6f, 0x1f, 0x1a, 0x8b, 0xf9, 0x92, 0x7b, - 0x50, 0xd3, 0x19, 0x67, 0x7e, 0xb0, 0x16, 0xfc, 0x50, 0xd5, 0x30, 0x7a, 0x21, 0x97, 0x4c, 0xb9, - 0x54, 0x97, 0xfe, 0x26, 0x28, 0x79, 0xc6, 0xa5, 0xea, 0xfd, 0xb8, 0x04, 0xad, 0x3d, 0x25, 0x18, - 0x8d, 0xfe, 0xcd, 0x2f, 0xe5, 0x6b, 0xf3, 0x5f, 0xfb, 0x8f, 0x0f, 0x1d, 0x06, 0xf9, 0x3f, 0xfe, - 0x2a, 0xf9, 0x5b, 0xbe, 0x7c, 0xf1, 0x96, 0x0f, 0x3e, 0x07, 0x58, 0x68, 0xf3, 0x0a, 0xd4, 0xf5, - 0x77, 0x8b, 0x8d, 0x69, 0x1a, 0xaa, 0x76, 0x81, 0x34, 0xa1, 0xa6, 0x01, 0xec, 0x61, 0xdb, 0xca, - 0xf9, 0xcd, 0x67, 0xa3, 0x90, 0x7b, 0x87, 0xed, 0xa5, 0xc1, 0x7d, 0xa8, 0x64, 0x6d, 0x23, 0x6d, - 0x68, 0xbc, 0x08, 0x94, 0x0a, 0x59, 0x36, 0xcf, 0xd6, 0x8e, 0x82, 0x89, 0x99, 0x5a, 0xa3, 0xc7, - 0x6f, 0x7e, 0xab, 0x5a, 0xaf, 0x4e, 0x3b, 0xd6, 0xeb, 0xd3, 0x8e, 0xf5, 0xe7, 0x69, 0xc7, 0xfa, - 0xe5, 0xac, 0x53, 0xf8, 0xf5, 0xac, 0x53, 0x78, 0x7d, 0xd6, 0x29, 0xbc, 0x39, 0xeb, 0x14, 0xe0, - 0x86, 0xc7, 0xa3, 0xa1, 0x29, 0xe1, 0x50, 0x05, 0xfe, 0x01, 0x16, 0x64, 0xd7, 0xfa, 0x2b, 0x00, - 0x00, 0xff, 0xff, 0x78, 0xbb, 0x58, 0x0d, 0xbb, 0x08, 0x00, 0x00, + // 1195 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0xcb, 0x6e, 0x1b, 0x37, + 0x17, 0xf6, 0x58, 0x92, 0x2d, 0x1d, 0x5d, 0x2c, 0xd3, 0x4e, 0x32, 0xf1, 0x9f, 0x5f, 0x71, 0x54, + 0xb4, 0x71, 0x8c, 0x40, 0x4e, 0x53, 0xa0, 0x41, 0x16, 0x6d, 0x11, 0x3b, 0x6e, 0x62, 0x24, 0x69, + 0x82, 0xb1, 0x8b, 0x02, 0xdd, 0x0c, 0xe8, 0x19, 0x5a, 0x1a, 0x78, 0x86, 0x9c, 0x90, 0x54, 0x2c, + 0xf5, 0x05, 0xba, 0x6c, 0x97, 0x7d, 0x84, 0xae, 0xfb, 0x14, 0x59, 0x66, 0x19, 0xb4, 0x40, 0x50, + 0xd8, 0x2f, 0x52, 0xf0, 0x90, 0x63, 0xcb, 0x97, 0xa0, 0x29, 0xba, 0xe8, 0x4a, 0x9c, 0xef, 0x3b, + 0x3c, 0xe4, 0xb9, 0x7c, 0x87, 0x82, 0x86, 0x62, 0x29, 0x8b, 0x74, 0x2f, 0x97, 0x42, 0x0b, 0x52, + 0xd6, 0x49, 0xbe, 0xbb, 0xd4, 0x62, 0x23, 0x16, 0x0d, 0xb5, 0x90, 0x16, 0x5d, 0x5a, 0xec, 0x8b, + 0xbe, 0xc0, 0xe5, 0x9a, 0x59, 0x39, 0x74, 0x4e, 0x0e, 0x95, 0xc6, 0xa5, 0x05, 0xba, 0x9f, 0x42, + 0x29, 0x10, 0x07, 0xe4, 0x32, 0xcc, 0x0c, 0x28, 0x8f, 0x53, 0xe6, 0x7b, 0xcb, 0xde, 0x4a, 0x23, + 0x70, 0x5f, 0x84, 0x40, 0x39, 0xa6, 0x9a, 0xfa, 0xd3, 0x88, 0xe2, 0xba, 0x7b, 0x1f, 0x2a, 0x9b, + 0x52, 0x0a, 0x49, 0x7c, 0x28, 0x47, 0x22, 0xb6, 0x5b, 0x2a, 0xeb, 0xe5, 0xd7, 0xef, 0xae, 0x4f, + 0x05, 0x88, 0x90, 0xcb, 0x50, 0xca, 0x54, 0x1f, 0x77, 0xd5, 0x1c, 0x61, 0x80, 0xee, 0x08, 0xc8, + 0x16, 0xd7, 0x4c, 0x66, 0x2c, 0x4e, 0xa8, 0x66, 0xcf, 0x87, 0x3a, 0x1f, 0x6a, 0x72, 0x0f, 0xea, + 0x8c, 0x9b, 0x7d, 0xa1, 0x1e, 0xe7, 0xd6, 0x5d, 0xeb, 0x6e, 0xbb, 0x67, 0xc2, 0xea, 0x6d, 0x22, + 0xb1, 0x33, 0xce, 0x99, 0xf3, 0x03, 0xec, 0x18, 0x21, 0xb7, 0x60, 0x26, 0x1a, 0x0c, 0xf9, 0xbe, + 0xf2, 0xa7, 0x97, 0x4b, 0x2b, 0xf5, 0xbb, 0x75, 0xbb, 0x67, 0xc3, 0x60, 0xce, 0xdc, 0x19, 0x74, + 0xff, 0x28, 0x41, 0x6b, 0x1b, 0xb3, 0x16, 0x30, 0x95, 0x0b, 0xae, 0x18, 0xb9, 0x01, 0x15, 0x66, + 0xe2, 0xc0, 0x03, 0x8f, 0x37, 0x63, 0x68, 0x81, 0x65, 0xc8, 0xff, 0xa1, 0x2c, 0xc5, 0x41, 0xe1, + 0xbe, 0x66, 0x2d, 0x02, 0x71, 0x10, 0x20, 0x3c, 0x71, 0x7e, 0xe9, 0x6f, 0xce, 0x27, 0x37, 0xa1, + 0x7a, 0x40, 0x25, 0x4f, 0x78, 0x5f, 0xf9, 0xe5, 0x49, 0x63, 0x7b, 0xde, 0x31, 0x49, 0x3e, 0x82, + 0xa6, 0xc0, 0xb4, 0x84, 0x91, 0x18, 0x72, 0xad, 0xfc, 0xca, 0x72, 0x69, 0xa5, 0x14, 0x34, 0x2c, + 0xb8, 0x81, 0x98, 0x31, 0x72, 0x1b, 0xac, 0x95, 0x3f, 0xb3, 0xec, 0x19, 0x23, 0x07, 0xa2, 0x15, + 0x79, 0x0e, 0x0b, 0xb6, 0x27, 0x12, 0xc1, 0x43, 0x35, 0xcc, 0x32, 0x2a, 0x13, 0xa6, 0xfc, 0x2a, + 0x9e, 0xde, 0x71, 0xa7, 0xbb, 0xa6, 0xd9, 0x2c, 0x0c, 0xb7, 0xd1, 0x6e, 0x1c, 0x10, 0x76, 0x1a, + 0x49, 0x98, 0x3a, 0x5b, 0xa7, 0xda, 0x07, 0xd7, 0x89, 0x40, 0x99, 0xc7, 0xaf, 0x94, 0x0f, 0x18, + 0x0a, 0xae, 0xc9, 0x13, 0x58, 0x4c, 0x26, 0x5a, 0x21, 0xb4, 0xf1, 0x29, 0xbf, 0x8e, 0xd7, 0xf3, + 0xad, 0xd7, 0xf3, 0xcd, 0x12, 0x2c, 0x24, 0xe7, 0x30, 0xd5, 0xfd, 0xc9, 0x83, 0x0a, 0x66, 0x9d, + 0xec, 0x40, 0xcd, 0x94, 0x26, 0xc4, 0xae, 0x2d, 0x99, 0xae, 0x5d, 0xbf, 0x67, 0xee, 0xf3, 0xfb, + 0xbb, 0xeb, 0x6b, 0xfd, 0x44, 0x0f, 0x86, 0xbb, 0xbd, 0x48, 0x64, 0x6b, 0x79, 0xc2, 0xfb, 0x11, + 0xcd, 0xd7, 0xcc, 0x29, 0x6b, 0x6a, 0x40, 0x25, 0x8b, 0x77, 0xc7, 0x9a, 0xa9, 0xde, 0x36, 0xae, + 0xd7, 0xcd, 0x3a, 0xa8, 0x1a, 0x4f, 0x0f, 0xa9, 0xa6, 0xe4, 0x8e, 0xf3, 0x9a, 0x31, 0x4d, 0x5d, + 0xf9, 0x9a, 0xc7, 0xcd, 0xf0, 0x8c, 0x69, 0xea, 0x82, 0xc6, 0x1d, 0xe6, 0xbb, 0xbb, 0x0f, 0x57, + 0xcf, 0x5f, 0x7e, 0x63, 0x40, 0x39, 0x67, 0x29, 0xb9, 0x09, 0x8d, 0x42, 0xad, 0x61, 0x12, 0x8f, + 0x7c, 0x6f, 0x79, 0x7a, 0xa5, 0xe9, 0x5c, 0xd4, 0x0b, 0x66, 0x2b, 0x1e, 0x91, 0x8f, 0xa1, 0xe5, + 0x9a, 0x41, 0xec, 0xed, 0x29, 0xa6, 0x6d, 0x27, 0x36, 0x03, 0xd7, 0x22, 0xcf, 0x2d, 0xd8, 0xdd, + 0x84, 0x59, 0x77, 0x0f, 0x72, 0xed, 0x94, 0x90, 0x4b, 0x45, 0x17, 0x3a, 0x39, 0x5f, 0x83, 0x99, + 0x94, 0xf1, 0xbe, 0x1e, 0xa0, 0x34, 0x8f, 0x59, 0x8b, 0x75, 0x7f, 0x9b, 0x05, 0x78, 0xf8, 0xe0, + 0x51, 0xc0, 0x5e, 0x0e, 0x99, 0xd2, 0x64, 0x15, 0xe6, 0x95, 0xa6, 0x52, 0x87, 0x5a, 0x85, 0x7b, + 0x34, 0x4d, 0x77, 0x69, 0xb4, 0x8f, 0x5e, 0xcb, 0xc1, 0x1c, 0x12, 0x3b, 0xea, 0x6b, 0x07, 0x93, + 0xdb, 0x50, 0x2b, 0xee, 0x5d, 0xa8, 0xa5, 0x75, 0xba, 0xc3, 0x82, 0x13, 0x03, 0xd2, 0x83, 0xb6, + 0x4e, 0x32, 0x16, 0xfe, 0x20, 0x38, 0x73, 0x91, 0x61, 0xad, 0x8a, 0x0b, 0xb5, 0x0c, 0xfb, 0xbd, + 0xe0, 0xcc, 0x06, 0x48, 0x96, 0xa0, 0xb2, 0x97, 0x52, 0x54, 0x8e, 0xb7, 0x52, 0x76, 0x46, 0x16, + 0xba, 0x20, 0x45, 0x95, 0x0b, 0x52, 0x44, 0xee, 0xc0, 0x62, 0x24, 0x52, 0xa3, 0xff, 0x50, 0x52, + 0xde, 0x67, 0x85, 0xba, 0x8c, 0x70, 0xaa, 0x01, 0x71, 0x5c, 0x60, 0x28, 0xa7, 0xb1, 0x55, 0x98, + 0xcf, 0xe8, 0x28, 0x3c, 0xad, 0xb3, 0x59, 0x1b, 0x7e, 0x46, 0x47, 0xdf, 0x4d, 0x4a, 0xed, 0x8c, + 0x32, 0xaa, 0x1f, 0xac, 0x8c, 0xab, 0x50, 0x55, 0x2f, 0xd3, 0x30, 0x33, 0x63, 0xb4, 0x86, 0xbe, + 0x67, 0xd5, 0xcb, 0xf4, 0x99, 0x99, 0xa1, 0xab, 0xd0, 0x3a, 0x49, 0x12, 0xa7, 0x19, 0xf3, 0xeb, + 0x13, 0xe3, 0xb4, 0x51, 0xa4, 0xe8, 0x1b, 0x9a, 0x31, 0xf2, 0x25, 0xfc, 0xaf, 0x88, 0xee, 0x22, + 0xc9, 0x37, 0x30, 0xc8, 0xab, 0xce, 0x64, 0xf3, 0xbc, 0xb2, 0x6f, 0x03, 0x31, 0xb1, 0xd2, 0x34, + 0x15, 0x07, 0x2c, 0x0e, 0x73, 0x1a, 0xed, 0x33, 0xed, 0x37, 0xf1, 0x42, 0xed, 0x8c, 0x8e, 0x1e, + 0x58, 0xe2, 0x05, 0xe2, 0xe4, 0x11, 0x2c, 0xe0, 0x54, 0x0b, 0x33, 0x96, 0x09, 0x39, 0x0e, 0x53, + 0x3a, 0x16, 0x43, 0xed, 0xb7, 0x70, 0x8c, 0x5e, 0x99, 0x98, 0x81, 0xcf, 0x90, 0x7f, 0x8a, 0x74, + 0x30, 0x1f, 0x9d, 0x85, 0x48, 0x07, 0xea, 0x89, 0x0a, 0x65, 0xce, 0x43, 0x36, 0xca, 0xa5, 0x3f, + 0x87, 0xd7, 0xac, 0x25, 0x2a, 0xc8, 0xf9, 0xe6, 0x28, 0x97, 0xe4, 0x13, 0x28, 0x0f, 0x15, 0x93, + 0x7e, 0x1b, 0x3d, 0x13, 0xeb, 0xf9, 0x5b, 0xc5, 0xe4, 0x56, 0xcc, 0xb8, 0x4e, 0xf4, 0x38, 0x40, + 0x9e, 0x7c, 0x06, 0x4d, 0x29, 0x44, 0x11, 0xbb, 0x90, 0xfe, 0x3c, 0x6e, 0x38, 0xdb, 0x81, 0x0d, + 0x63, 0x54, 0x7c, 0x99, 0xfa, 0xee, 0x09, 0x19, 0xb1, 0x70, 0xb2, 0x72, 0x04, 0xaf, 0x30, 0x87, + 0xc4, 0x49, 0xe1, 0xc8, 0xe7, 0x70, 0x25, 0x4e, 0x5e, 0x85, 0xb9, 0x64, 0x51, 0xa2, 0x4c, 0x6e, + 0x13, 0x1e, 0x49, 0x96, 0x31, 0xae, 0xfd, 0x85, 0x65, 0x6f, 0xa5, 0x19, 0x5c, 0x8a, 0x93, 0x57, + 0x2f, 0x0a, 0x76, 0xab, 0x20, 0x09, 0x85, 0x6b, 0x17, 0x0c, 0xb9, 0x30, 0xb2, 0x73, 0x40, 0xf9, + 0x8b, 0xa8, 0x94, 0xeb, 0xef, 0x1b, 0x76, 0x6e, 0x5e, 0x04, 0x4b, 0xc9, 0xfb, 0x28, 0xd5, 0xfd, + 0x0a, 0xe6, 0xcf, 0xe5, 0x9a, 0xac, 0xc2, 0x0c, 0xe3, 0x71, 0x42, 0xb9, 0x7b, 0x4c, 0x1b, 0x45, + 0x2b, 0x1a, 0xac, 0x50, 0xbd, 0xb5, 0xe8, 0xee, 0x40, 0x63, 0x32, 0xa5, 0xe4, 0x06, 0xd4, 0x4c, + 0x52, 0x6d, 0xcb, 0x79, 0x13, 0x2d, 0x57, 0x35, 0x30, 0xb6, 0x5b, 0x61, 0x32, 0x10, 0x4a, 0x9f, + 0x7a, 0xe4, 0xd1, 0xe4, 0xb1, 0x50, 0xba, 0xfb, 0xe3, 0x34, 0xb4, 0xb6, 0xb5, 0x64, 0x34, 0xfb, + 0x27, 0xef, 0xed, 0x13, 0xf7, 0x77, 0xe3, 0x5f, 0x0e, 0x6e, 0x74, 0xf2, 0x5f, 0x3c, 0xb9, 0xc5, + 0x43, 0x37, 0x7b, 0xf2, 0xd0, 0xad, 0x7e, 0x01, 0x30, 0xd1, 0x49, 0x73, 0x50, 0x37, 0xbf, 0x0f, + 0xd9, 0x1e, 0x1d, 0xa6, 0xba, 0x3d, 0x45, 0x9a, 0x50, 0x33, 0x00, 0xd6, 0xb0, 0xed, 0x15, 0xfc, + 0xc6, 0xe3, 0xf5, 0x54, 0x44, 0xfb, 0xed, 0xe9, 0xd5, 0x5b, 0x30, 0x63, 0xcb, 0x46, 0xda, 0xd0, + 0x78, 0x9a, 0x68, 0x9d, 0x32, 0xfb, 0x6d, 0xf7, 0xae, 0x27, 0x7d, 0xf7, 0xe9, 0xad, 0xdf, 0x7f, + 0xfb, 0x6b, 0xd5, 0x7b, 0x7d, 0xd8, 0xf1, 0xde, 0x1c, 0x76, 0xbc, 0x3f, 0x0f, 0x3b, 0xde, 0xcf, + 0x47, 0x9d, 0xa9, 0x5f, 0x8e, 0x3a, 0x53, 0x6f, 0x8e, 0x3a, 0x53, 0x6f, 0x8f, 0x3a, 0x53, 0x70, + 0x29, 0x12, 0x59, 0xcf, 0xa5, 0xb0, 0xa7, 0x93, 0x78, 0x17, 0x13, 0xf2, 0xc2, 0xfb, 0x2b, 0x00, + 0x00, 0xff, 0xff, 0x61, 0x62, 0x32, 0x4b, 0x52, 0x0a, 0x00, 0x00, } func (m *Row) Marshal() (dAtA []byte, err error) { @@ -973,6 +1129,46 @@ func (m *Error) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *IntermediateOutput) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *IntermediateOutput) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *IntermediateOutput) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Chunks) > 0 { + for iNdEx := len(m.Chunks) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Chunks[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintSelect(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + } + i = encodeVarintSelect(dAtA, i, uint64(m.EncodeType)) + i-- + dAtA[i] = 0x8 + return len(dAtA) - i, nil +} + func (m *SelectResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -993,6 +1189,20 @@ func (m *SelectResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.IntermediateOutputs) > 0 { + for iNdEx := len(m.IntermediateOutputs) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.IntermediateOutputs[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintSelect(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x5a + } + } if len(m.Ndvs) > 0 { for iNdEx := len(m.Ndvs) - 1; iNdEx >= 0; iNdEx-- { i = encodeVarintSelect(dAtA, i, uint64(m.Ndvs[iNdEx])) @@ -1133,6 +1343,39 @@ func (m *Chunk) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *IntermediateOutputChannel) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *IntermediateOutputChannel) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *IntermediateOutputChannel) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.OutputOffsets) > 0 { + for iNdEx := len(m.OutputOffsets) - 1; iNdEx >= 0; iNdEx-- { + i = encodeVarintSelect(dAtA, i, uint64(m.OutputOffsets[iNdEx])) + i-- + dAtA[i] = 0x10 + } + } + i = encodeVarintSelect(dAtA, i, uint64(m.ExecutorIdx)) + i-- + dAtA[i] = 0x8 + return len(dAtA) - i, nil +} + func (m *RowMeta) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -1182,6 +1425,22 @@ func (m *DAGRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.IntermediateOutputChannels) > 0 { + for iNdEx := len(m.IntermediateOutputChannels) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.IntermediateOutputChannels[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintSelect(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xa2 + } + } if m.DivPrecisionIncrement != nil { i = encodeVarintSelect(dAtA, i, uint64(*m.DivPrecisionIncrement)) i-- @@ -1506,6 +1765,22 @@ func (m *Error) Size() (n int) { return n } +func (m *IntermediateOutput) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + n += 1 + sovSelect(uint64(m.EncodeType)) + if len(m.Chunks) > 0 { + for _, e := range m.Chunks { + l = e.Size() + n += 1 + l + sovSelect(uint64(l)) + } + } + return n +} + func (m *SelectResponse) Size() (n int) { if m == nil { return 0 @@ -1554,6 +1829,12 @@ func (m *SelectResponse) Size() (n int) { n += 1 + sovSelect(uint64(e)) } } + if len(m.IntermediateOutputs) > 0 { + for _, e := range m.IntermediateOutputs { + l = e.Size() + n += 1 + l + sovSelect(uint64(l)) + } + } return n } @@ -1574,6 +1855,21 @@ func (m *Chunk) Size() (n int) { return n } +func (m *IntermediateOutputChannel) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + n += 1 + sovSelect(uint64(m.ExecutorIdx)) + if len(m.OutputOffsets) > 0 { + for _, e := range m.OutputOffsets { + n += 1 + sovSelect(uint64(e)) + } + } + return n +} + func (m *RowMeta) Size() (n int) { if m == nil { return 0 @@ -1646,6 +1942,12 @@ func (m *DAGRequest) Size() (n int) { if m.DivPrecisionIncrement != nil { n += 2 + sovSelect(uint64(*m.DivPrecisionIncrement)) } + if len(m.IntermediateOutputChannels) > 0 { + for _, e := range m.IntermediateOutputChannels { + l = e.Size() + n += 2 + l + sovSelect(uint64(l)) + } + } return n } @@ -1931,6 +2233,109 @@ func (m *Error) Unmarshal(dAtA []byte) error { } return nil } +func (m *IntermediateOutput) 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 ErrIntOverflowSelect + } + 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: IntermediateOutput: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: IntermediateOutput: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field EncodeType", wireType) + } + m.EncodeType = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSelect + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.EncodeType |= EncodeType(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Chunks", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSelect + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthSelect + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthSelect + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Chunks = append(m.Chunks, Chunk{}) + if err := m.Chunks[len(m.Chunks)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipSelect(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthSelect + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *SelectResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -2323,6 +2728,40 @@ func (m *SelectResponse) Unmarshal(dAtA []byte) error { } else { return fmt.Errorf("proto: wrong wireType = %d for field Ndvs", wireType) } + case 11: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field IntermediateOutputs", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSelect + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthSelect + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthSelect + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.IntermediateOutputs = append(m.IntermediateOutputs, &IntermediateOutput{}) + if err := m.IntermediateOutputs[len(m.IntermediateOutputs)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipSelect(dAtA[iNdEx:]) @@ -2461,6 +2900,156 @@ func (m *Chunk) Unmarshal(dAtA []byte) error { } return nil } +func (m *IntermediateOutputChannel) Unmarshal(dAtA []byte) error { + var hasFields [1]uint64 + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSelect + } + 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: IntermediateOutputChannel: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: IntermediateOutputChannel: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ExecutorIdx", wireType) + } + m.ExecutorIdx = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSelect + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ExecutorIdx |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + hasFields[0] |= uint64(0x00000001) + case 2: + if wireType == 0 { + var v uint32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSelect + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.OutputOffsets = append(m.OutputOffsets, v) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSelect + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthSelect + } + postIndex := iNdEx + packedLen + if postIndex < 0 { + return ErrInvalidLengthSelect + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var elementCount int + var count int + for _, integer := range dAtA[iNdEx:postIndex] { + if integer < 128 { + count++ + } + } + elementCount = count + if elementCount != 0 && len(m.OutputOffsets) == 0 { + m.OutputOffsets = make([]uint32, 0, elementCount) + } + for iNdEx < postIndex { + var v uint32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSelect + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.OutputOffsets = append(m.OutputOffsets, v) + } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field OutputOffsets", wireType) + } + default: + iNdEx = preIndex + skippy, err := skipSelect(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthSelect + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + if hasFields[0]&uint64(0x00000001) == 0 { + return new(github_com_golang_protobuf_proto.RequiredNotSetError) + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *RowMeta) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -3069,6 +3658,40 @@ func (m *DAGRequest) Unmarshal(dAtA []byte) error { } } m.DivPrecisionIncrement = &v + case 20: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field IntermediateOutputChannels", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSelect + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthSelect + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthSelect + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.IntermediateOutputChannels = append(m.IntermediateOutputChannels, &IntermediateOutputChannel{}) + if err := m.IntermediateOutputChannels[len(m.IntermediateOutputChannels)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipSelect(dAtA[iNdEx:]) diff --git a/proto/executor.proto b/proto/executor.proto index 1fb2b190..fe2309e1 100644 --- a/proto/executor.proto +++ b/proto/executor.proto @@ -40,6 +40,7 @@ enum ExecType { TypeBroadcastQuery = 17; TypeCTESink = 18; TypeCTESource = 19; + TypeIndexLookUp = 20; } // It represents a Executor. @@ -67,6 +68,10 @@ message Executor { optional BroadcastQuery broadcast_query = 21; optional CTESink cte_sink = 22; optional CTESource cte_source = 23; + optional IndexLookUp index_lookup = 24; + // It indicates the parent index of current executor. + // Not set indicates its parent is the next executor in `DAGRequest.executors`. + optional uint32 parent_idx = 25; } enum ExchangeType { @@ -110,6 +115,12 @@ message CTESource { repeated FieldType field_types = 4; } +message IndexLookUp { + // It represents the index columns we should use to build the row handle. + repeated uint32 index_handle_offsets = 1; + optional bool keep_order = 2; +} + message EncodedBytesSlice { repeated bytes encoded_tasks = 1; } diff --git a/proto/select.proto b/proto/select.proto index a9491d5b..49629363 100644 --- a/proto/select.proto +++ b/proto/select.proto @@ -29,6 +29,12 @@ message Error { optional string msg = 2 [(gogoproto.nullable) = false]; } +// It is the data of a intermidiate output channel +message IntermediateOutput { + optional EncodeType encode_type = 1 [(gogoproto.nullable) = false]; + repeated Chunk chunks = 2 [(gogoproto.nullable) = false]; +} + // Response for SelectRequest. message SelectResponse { optional Error error = 1; @@ -53,6 +59,8 @@ message SelectResponse { // ndvs collects the number of distinct value information per range. It will be used to serve as execution feedback information. // Helping us improve the table's statistics information. repeated int64 ndvs = 10; + // It contains all the intermedidate outputs. + repeated IntermediateOutput intermediate_outputs = 11; } // Chunk contains multiple rows data and rows meta. @@ -64,6 +72,18 @@ message Chunk { repeated RowMeta rows_meta = 4 [(gogoproto.nullable) = false]; } +// IntermediateOutputChannel is the channel description for the intermediate ouput. +// The SelectResponse of a DAGRequest may output some intermediate data because not all rows can be processed in DAG. +// For example, the executor IndexLookUp scans the index records and look up the rows locally. +// If a related row of a index is not found locally, this index record should be ouput into the intermediate channel +// for the further processment in the TiDB side. +message IntermediateOutputChannel { + // executor_idx indicates which executor outputs this intermediate result. + required uint32 executor_idx = 1 [(gogoproto.nullable) = false]; + // It represents which columns we should output. + repeated uint32 output_offsets = 2; +} + // RowMeta contains row handle and length of a row. message RowMeta { optional int64 handle = 1 [(gogoproto.nullable) = false]; @@ -76,7 +96,23 @@ message DAGRequest { // Deprecated. Start Ts has been moved to coprocessor.Request. optional uint64 start_ts_fallback = 1; - // It represents push down Executors. + // It represents push down Executors and follows the order of depth-first search with post-order traversal. + // That is: left child first, then right child, then parent. + // For example, a DAG: + // A + // / + // B + // / \ + // C D + // / / \ + // E F G + // / + // H + // Its order should be: [H, E, C, F, G, D, B, A] + // In most cases, there is only one child for each parent, that makes executors simple array from the srouce + // to the out most executors, and the response only need to output the final rows. + // But when a executor has more than one children, for example, IndexLookUp, some intermedidate result is required to output. + // The field `intermediate_output_channels` describes it. repeated Executor executors = 2; // time zone offset in seconds @@ -139,6 +175,9 @@ message DAGRequest { // It indicates the number of digits by which to increase the scale of the result of division operations performed with the / operator. optional uint32 div_precision_increment = 19; + + // It inidcates the intermdidate result channels. + repeated IntermediateOutputChannel intermediate_output_channels = 20; } enum EncodeType { diff --git a/scripts/proto.lock b/scripts/proto.lock index a2394a42..bb4b8c8a 100644 --- a/scripts/proto.lock +++ b/scripts/proto.lock @@ -923,6 +923,22 @@ { "name": "TypeExpand2", "integer": 16 + }, + { + "name": "TypeBroadcastQuery", + "integer": 17 + }, + { + "name": "TypeCTESink", + "integer": 18 + }, + { + "name": "TypeCTESource", + "integer": 19 + }, + { + "name": "TypeIndexLookUp", + "integer": 20 } ] }, @@ -1029,11 +1045,11 @@ "name": "FTSQueryTypeInvalid" }, { - "name": "FTSQueryTypeFilter", + "name": "FTSQueryTypeNoScore", "integer": 1 }, { - "name": "FTSQueryTypeTopK", + "name": "FTSQueryTypeWithScore", "integer": 2 } ] @@ -1340,6 +1356,36 @@ "name": "expand2", "type": "Expand2", "optional": true + }, + { + "id": 21, + "name": "broadcast_query", + "type": "BroadcastQuery", + "optional": true + }, + { + "id": 22, + "name": "cte_sink", + "type": "CTESink", + "optional": true + }, + { + "id": 23, + "name": "cte_source", + "type": "CTESource", + "optional": true + }, + { + "id": 24, + "name": "index_lookup", + "type": "IndexLookUp", + "optional": true + }, + { + "id": 25, + "name": "parent_idx", + "type": "uint32", + "optional": true } ] }, @@ -1414,6 +1460,123 @@ } ] }, + { + "name": "CTESink", + "fields": [ + { + "id": 1, + "name": "cte_id", + "type": "uint32", + "required": true, + "options": [ + { + "name": "(gogoproto.nullable)", + "value": "false" + } + ] + }, + { + "id": 2, + "name": "cte_source_num", + "type": "uint32", + "required": true, + "options": [ + { + "name": "(gogoproto.nullable)", + "value": "false" + } + ] + }, + { + "id": 3, + "name": "cte_sink_num", + "type": "uint32", + "required": true, + "options": [ + { + "name": "(gogoproto.nullable)", + "value": "false" + } + ] + }, + { + "id": 4, + "name": "child", + "type": "Executor", + "optional": true + }, + { + "id": 5, + "name": "field_types", + "type": "FieldType", + "is_repeated": true + } + ] + }, + { + "name": "CTESource", + "fields": [ + { + "id": 1, + "name": "cte_id", + "type": "uint32", + "required": true, + "options": [ + { + "name": "(gogoproto.nullable)", + "value": "false" + } + ] + }, + { + "id": 2, + "name": "cte_source_num", + "type": "uint32", + "required": true, + "options": [ + { + "name": "(gogoproto.nullable)", + "value": "false" + } + ] + }, + { + "id": 3, + "name": "cte_sink_num", + "type": "uint32", + "required": true, + "options": [ + { + "name": "(gogoproto.nullable)", + "value": "false" + } + ] + }, + { + "id": 4, + "name": "field_types", + "type": "FieldType", + "is_repeated": true + } + ] + }, + { + "name": "IndexLookUp", + "fields": [ + { + "id": 1, + "name": "index_handle_offsets", + "type": "uint32", + "is_repeated": true + }, + { + "id": 2, + "name": "keep_order", + "type": "bool", + "optional": true + } + ] + }, { "name": "EncodedBytesSlice", "fields": [ @@ -1685,6 +1848,30 @@ "name": "top_k", "type": "uint32", "optional": true + }, + { + "id": 20, + "name": "query_func", + "type": "ScalarFuncSig", + "optional": true, + "options": [ + { + "name": "(gogoproto.nullable)", + "value": "false" + } + ] + }, + { + "id": 21, + "name": "match_expr", + "type": "Expr", + "is_repeated": true, + "options": [ + { + "name": "(gogoproto.nullable)", + "value": "false" + } + ] } ] }, @@ -2177,6 +2364,12 @@ "name": "primary_column_ids", "type": "int64", "is_repeated": true + }, + { + "id": 7, + "name": "fts_query_info", + "type": "FTSQueryInfo", + "optional": true } ] }, @@ -3208,6 +3401,17 @@ "optional": true } ] + }, + { + "name": "BroadcastQuery", + "fields": [ + { + "id": 1, + "name": "query", + "type": "string", + "optional": true + } + ] } ], "imports": [ @@ -3364,6 +3568,12 @@ "id": 4, "name": "discarded_due_to_too_long", "type": "bool" + }, + { + "id": 5, + "name": "subqueries", + "type": "ExplainOperator", + "is_repeated": true } ] }, @@ -3448,6 +3658,16 @@ "id": 15, "name": "disk_bytes", "type": "int64" + }, + { + "id": 16, + "name": "brief_name", + "type": "string" + }, + { + "id": 17, + "name": "brief_operator_info", + "type": "string" } ] }, @@ -5441,6 +5661,18 @@ "name": "FTSMatchWord", "integer": 5201 }, + { + "name": "FTSMatchExpression", + "integer": 5202 + }, + { + "name": "FTSMatchPrefix", + "integer": 5203 + }, + { + "name": "FTSMatchRegexp", + "integer": 5204 + }, { "name": "DateFormatSig", "integer": 6001 @@ -6844,6 +7076,12 @@ "value": "false" } ] + }, + { + "id": 5, + "name": "keyspace_name", + "type": "bytes", + "optional": true } ] } @@ -7235,6 +7473,35 @@ } ] }, + { + "name": "IntermediateOutput", + "fields": [ + { + "id": 1, + "name": "encode_type", + "type": "EncodeType", + "optional": true, + "options": [ + { + "name": "(gogoproto.nullable)", + "value": "false" + } + ] + }, + { + "id": 2, + "name": "chunks", + "type": "Chunk", + "is_repeated": true, + "options": [ + { + "name": "(gogoproto.nullable)", + "value": "false" + } + ] + } + ] + }, { "name": "SelectResponse", "fields": [ @@ -7303,6 +7570,12 @@ "name": "ndvs", "type": "int64", "is_repeated": true + }, + { + "id": 11, + "name": "intermediate_outputs", + "type": "IntermediateOutput", + "is_repeated": true } ] }, @@ -7339,6 +7612,29 @@ } ] }, + { + "name": "IntermediateOutputChannel", + "fields": [ + { + "id": 1, + "name": "executor_idx", + "type": "uint32", + "required": true, + "options": [ + { + "name": "(gogoproto.nullable)", + "value": "false" + } + ] + }, + { + "id": 2, + "name": "output_offsets", + "type": "uint32", + "is_repeated": true + } + ] + }, { "name": "RowMeta", "fields": [ @@ -7502,6 +7798,12 @@ "name": "div_precision_increment", "type": "uint32", "optional": true + }, + { + "id": 20, + "name": "intermediate_output_channels", + "type": "IntermediateOutputChannel", + "is_repeated": true } ] }, @@ -8062,6 +8364,11 @@ "name": "items", "type": "TopSQLRecordItem", "is_repeated": true + }, + { + "id": 4, + "name": "keyspace_name", + "type": "bytes" } ] }, @@ -8122,6 +8429,11 @@ "id": 3, "name": "is_internal_sql", "type": "bool" + }, + { + "id": 4, + "name": "keyspace_name", + "type": "bytes" } ] }, @@ -8142,6 +8454,11 @@ "id": 3, "name": "encoded_normalized_plan", "type": "string" + }, + { + "id": 4, + "name": "keyspace_name", + "type": "bytes" } ] },