From c8fdcbed3cd1909eb3fa509560a790be5d36a2ba Mon Sep 17 00:00:00 2001 From: bRong Njam Date: Thu, 19 Dec 2024 16:43:59 +0800 Subject: [PATCH] support updating primary/unique key columns in new DML --- pkg/pb/pipeline/pipeline.pb.go | 829 ++++++++++-------- pkg/pb/query/query.pb.go | 5 +- pkg/sql/colexec/dedupjoin/join.go | 137 ++- pkg/sql/colexec/dedupjoin/types.go | 1 + pkg/sql/colexec/hashbuild/build.go | 18 +- pkg/sql/colexec/hashbuild/types.go | 1 + pkg/sql/colexec/hashmap_util/hashmap_util.go | 116 ++- .../colexec/hashmap_util/hashmap_util_test.go | 2 +- pkg/sql/colexec/mergegroup/exec.go | 3 +- pkg/sql/colexec/shufflebuild/build.go | 4 +- pkg/sql/colexec/shufflebuild/types.go | 1 + pkg/sql/compile/operator.go | 10 +- pkg/sql/compile/remoterun.go | 6 + pkg/sql/plan/apply_indices.go | 3 +- pkg/sql/plan/bind_update.go | 4 +- pkg/sql/plan/build_constraint_util.go | 21 +- pkg/vm/message/joinMapMsg.go | 16 +- proto/pipeline.proto | 3 + 18 files changed, 709 insertions(+), 471 deletions(-) diff --git a/pkg/pb/pipeline/pipeline.pb.go b/pkg/pb/pipeline/pipeline.pb.go index 288e5ba656551..4766052f54a79 100644 --- a/pkg/pb/pipeline/pipeline.pb.go +++ b/pkg/pb/pipeline/pipeline.pb.go @@ -3132,6 +3132,7 @@ type DedupJoin struct { RightTypes []plan.Type `protobuf:"bytes,13,rep,name=right_types,json=rightTypes,proto3" json:"right_types"` UpdateColIdxList []int32 `protobuf:"varint,14,rep,packed,name=update_col_idx_list,json=updateColIdxList,proto3" json:"update_col_idx_list,omitempty"` UpdateColExprList []*plan.Expr `protobuf:"bytes,15,rep,name=update_col_expr_list,json=updateColExprList,proto3" json:"update_col_expr_list,omitempty"` + DelColIdx int32 `protobuf:"varint,16,opt,name=del_col_idx,json=delColIdx,proto3" json:"del_col_idx,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -3275,6 +3276,13 @@ func (m *DedupJoin) GetUpdateColExprList() []*plan.Expr { return nil } +func (m *DedupJoin) GetDelColIdx() int32 { + if m != nil { + return m.DelColIdx + } + return 0 +} + type Product struct { RelList []int32 `protobuf:"varint,1,rep,packed,name=rel_list,json=relList,proto3" json:"rel_list,omitempty"` ColList []int32 `protobuf:"varint,2,rep,packed,name=col_list,json=colList,proto3" json:"col_list,omitempty"` @@ -3981,6 +3989,7 @@ type HashBuild struct { OnDuplicateAction plan.Node_OnDuplicateAction `protobuf:"varint,10,opt,name=on_duplicate_action,json=onDuplicateAction,proto3,enum=plan.Node_OnDuplicateAction" json:"on_duplicate_action,omitempty"` DedupColName string `protobuf:"bytes,11,opt,name=dedup_col_name,json=dedupColName,proto3" json:"dedup_col_name,omitempty"` DedupColTypes []plan.Type `protobuf:"bytes,12,rep,name=dedup_col_types,json=dedupColTypes,proto3" json:"dedup_col_types"` + DelColIdx int32 `protobuf:"varint,13,opt,name=del_col_idx,json=delColIdx,proto3" json:"del_col_idx,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -4103,6 +4112,13 @@ func (m *HashBuild) GetDedupColTypes() []plan.Type { return nil } +func (m *HashBuild) GetDelColIdx() int32 { + if m != nil { + return m.DelColIdx + } + return 0 +} + type Shufflebuild struct { HashOnPK bool `protobuf:"varint,1,opt,name=HashOnPK,proto3" json:"HashOnPK,omitempty"` NeedBatches bool `protobuf:"varint,2,opt,name=NeedBatches,proto3" json:"NeedBatches,omitempty"` @@ -4115,6 +4131,7 @@ type Shufflebuild struct { OnDuplicateAction plan.Node_OnDuplicateAction `protobuf:"varint,9,opt,name=on_duplicate_action,json=onDuplicateAction,proto3,enum=plan.Node_OnDuplicateAction" json:"on_duplicate_action,omitempty"` DedupColName string `protobuf:"bytes,10,opt,name=dedup_col_name,json=dedupColName,proto3" json:"dedup_col_name,omitempty"` DedupColTypes []plan.Type `protobuf:"bytes,11,rep,name=dedup_col_types,json=dedupColTypes,proto3" json:"dedup_col_types"` + DelColIdx int32 `protobuf:"varint,12,opt,name=del_col_idx,json=delColIdx,proto3" json:"del_col_idx,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -4230,6 +4247,13 @@ func (m *Shufflebuild) GetDedupColTypes() []plan.Type { return nil } +func (m *Shufflebuild) GetDelColIdx() int32 { + if m != nil { + return m.DelColIdx + } + return 0 +} + type Indexbuild struct { RuntimeFilterSpec *plan.RuntimeFilterSpec `protobuf:"bytes,1,opt,name=RuntimeFilterSpec,proto3" json:"RuntimeFilterSpec,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -5925,370 +5949,372 @@ func init() { func init() { proto.RegisterFile("pipeline.proto", fileDescriptor_7ac67a7adf3df9c7) } var fileDescriptor_7ac67a7adf3df9c7 = []byte{ - // 5803 bytes of a gzipped FileDescriptorProto + // 5830 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3c, 0x4b, 0x8c, 0x1d, 0x49, 0x52, 0xf3, 0xfe, 0xf5, 0xe2, 0x7d, 0xfa, 0x75, 0xfa, 0xf7, 0xc6, 0xf6, 0xd8, 0xed, 0x1a, 0xdb, 0xd3, 0xeb, 0x19, 0xb7, 0x67, 0x7a, 0xd6, 0xec, 0xc0, 0xb0, 0x3b, 0xdb, 0xee, 0xb6, 0x77, 0x7b, 0xc6, 0xf6, 0x34, 0xd9, 0x6d, 0x46, 0xec, 0x81, 0x52, 0x75, 0x55, 0xbe, 0xd7, 0xb5, 0x5d, 0xaf, - 0xaa, 0x5c, 0x95, 0x65, 0x77, 0xfb, 0x84, 0x04, 0x57, 0x4e, 0x9c, 0x10, 0x42, 0x42, 0x7b, 0x00, - 0x71, 0x40, 0x20, 0x10, 0x27, 0xc4, 0x7d, 0xf7, 0x82, 0x38, 0x71, 0x44, 0x68, 0xb9, 0xf1, 0xb9, - 0x2d, 0x88, 0x0b, 0x12, 0x8a, 0xc8, 0xac, 0xcf, 0xfb, 0xb8, 0xfd, 0x99, 0x19, 0xb4, 0x2b, 0xed, - 0x2d, 0x33, 0x22, 0x32, 0x2b, 0x33, 0x22, 0x32, 0x32, 0x32, 0x32, 0xb2, 0xa0, 0x1f, 0x79, 0x91, - 0xf0, 0xbd, 0x40, 0xac, 0x45, 0x71, 0x28, 0x43, 0x66, 0x64, 0xf5, 0xf3, 0x37, 0xc7, 0x9e, 0x3c, - 0x48, 0xf7, 0xd7, 0x9c, 0x70, 0x72, 0x6b, 0x1c, 0x8e, 0xc3, 0x5b, 0x44, 0xb0, 0x9f, 0x8e, 0xa8, - 0x46, 0x15, 0x2a, 0xa9, 0x86, 0xe7, 0x21, 0xf2, 0xed, 0x40, 0x97, 0x97, 0xa4, 0x37, 0x11, 0x89, - 0xb4, 0x27, 0x51, 0x86, 0xf4, 0x43, 0xe7, 0x50, 0x97, 0xdb, 0xf2, 0x48, 0xd3, 0x99, 0x7f, 0x54, - 0x85, 0xd6, 0x03, 0x91, 0x24, 0xf6, 0x58, 0x30, 0x13, 0x6a, 0x89, 0xe7, 0x0e, 0x2b, 0x2b, 0x95, - 0xd5, 0xfe, 0xfa, 0x60, 0x2d, 0x1f, 0xd6, 0xae, 0xb4, 0x65, 0x9a, 0x70, 0x44, 0x22, 0x8d, 0x33, - 0x71, 0x87, 0xd5, 0x59, 0x9a, 0x07, 0x42, 0x1e, 0x84, 0x2e, 0x47, 0x24, 0x1b, 0x40, 0x4d, 0xc4, - 0xf1, 0xb0, 0xb6, 0x52, 0x59, 0xed, 0x72, 0x2c, 0x32, 0x06, 0x75, 0xd7, 0x96, 0xf6, 0xb0, 0x4e, - 0x20, 0x2a, 0xb3, 0xab, 0xd0, 0x8f, 0xe2, 0xd0, 0xb1, 0xbc, 0x60, 0x14, 0x5a, 0x84, 0x6d, 0x10, - 0xb6, 0x8b, 0xd0, 0xed, 0x60, 0x14, 0x6e, 0x21, 0xd5, 0x10, 0x5a, 0x76, 0x60, 0xfb, 0xc7, 0x89, - 0x18, 0x36, 0x09, 0x9d, 0x55, 0x59, 0x1f, 0xaa, 0x9e, 0x3b, 0x6c, 0xad, 0x54, 0x56, 0xeb, 0xbc, - 0xea, 0xb9, 0xf8, 0x8d, 0x34, 0xf5, 0xdc, 0xa1, 0xa1, 0xbe, 0x81, 0x65, 0x66, 0x42, 0x37, 0x10, - 0xc2, 0x7d, 0x18, 0x4a, 0x2e, 0x22, 0xff, 0x78, 0xd8, 0x5e, 0xa9, 0xac, 0x1a, 0x7c, 0x0a, 0xc6, - 0xce, 0x83, 0xe1, 0x8a, 0xfd, 0x74, 0xfc, 0x20, 0x19, 0x0f, 0x61, 0xa5, 0xb2, 0xda, 0xe6, 0x79, - 0xdd, 0x7c, 0x04, 0xed, 0xcd, 0x30, 0x08, 0x84, 0x23, 0xc3, 0x98, 0x5d, 0x86, 0x4e, 0x36, 0x5d, - 0x4b, 0xb3, 0xa9, 0xc1, 0x21, 0x03, 0x6d, 0xbb, 0xec, 0x1d, 0x58, 0x72, 0x32, 0x6a, 0xcb, 0x0b, - 0x5c, 0x71, 0x44, 0x7c, 0x6a, 0xf0, 0x7e, 0x0e, 0xde, 0x46, 0xa8, 0xf9, 0x1f, 0x55, 0x68, 0xed, - 0x1e, 0xa4, 0xa3, 0x91, 0x2f, 0xd8, 0x55, 0xe8, 0xe9, 0xe2, 0x66, 0xe8, 0x6f, 0xbb, 0x47, 0xba, - 0xdf, 0x69, 0x20, 0x5b, 0x81, 0x8e, 0x06, 0xec, 0x1d, 0x47, 0x42, 0x77, 0x5b, 0x06, 0x4d, 0xf7, - 0xf3, 0xc0, 0x0b, 0x88, 0xfd, 0x35, 0x3e, 0x0d, 0x9c, 0xa1, 0xb2, 0x8f, 0x48, 0x22, 0xd3, 0x54, - 0x36, 0x7d, 0x6d, 0xc3, 0xf7, 0x9e, 0x08, 0x2e, 0xc6, 0x9b, 0x81, 0x24, 0xb9, 0x34, 0x78, 0x19, - 0xc4, 0xd6, 0xe1, 0x4c, 0xa2, 0x9a, 0x58, 0xb1, 0x1d, 0x8c, 0x45, 0x62, 0xa5, 0x5e, 0x20, 0x7f, - 0xe5, 0x9b, 0xc3, 0xe6, 0x4a, 0x6d, 0xb5, 0xce, 0x4f, 0x69, 0x24, 0x27, 0xdc, 0x23, 0x42, 0xb1, - 0xf7, 0xe1, 0xf4, 0x4c, 0x1b, 0xd5, 0xa4, 0xb5, 0x52, 0x5b, 0xad, 0x71, 0x36, 0xd5, 0x64, 0x9b, - 0x5a, 0xdc, 0x85, 0xe5, 0x38, 0x0d, 0x50, 0x93, 0xef, 0x79, 0xbe, 0x14, 0xf1, 0x6e, 0x24, 0x1c, - 0x92, 0x6f, 0x67, 0xfd, 0xdc, 0x1a, 0x29, 0x3b, 0x9f, 0x45, 0xf3, 0xf9, 0x16, 0xe6, 0xff, 0x54, - 0xc1, 0xd8, 0xf2, 0x92, 0xc8, 0x96, 0xce, 0x01, 0x3b, 0x07, 0xad, 0x51, 0x1a, 0x38, 0x85, 0x04, - 0x9b, 0x58, 0xdd, 0x76, 0xd9, 0xaf, 0xc3, 0x92, 0x1f, 0x3a, 0xb6, 0x6f, 0xe5, 0xc2, 0x1a, 0x56, - 0x57, 0x6a, 0xab, 0x9d, 0xf5, 0x53, 0x85, 0x96, 0xe7, 0xca, 0xc0, 0xfb, 0x44, 0x5b, 0x28, 0xc7, - 0xb7, 0x61, 0x10, 0x8b, 0x49, 0x28, 0x45, 0xa9, 0x79, 0x8d, 0x9a, 0xb3, 0xa2, 0xf9, 0x17, 0xb1, - 0x1d, 0x3d, 0x0c, 0x5d, 0xc1, 0x97, 0x14, 0x6d, 0xd1, 0xfc, 0x83, 0x12, 0x3f, 0xc5, 0xd8, 0xf2, - 0xdc, 0x23, 0x8b, 0x3e, 0x30, 0xac, 0xaf, 0xd4, 0x56, 0x1b, 0x05, 0x73, 0xc4, 0x78, 0xdb, 0x3d, - 0xba, 0x8f, 0x18, 0xf6, 0x21, 0x9c, 0x9d, 0x6d, 0xa2, 0x7a, 0x1d, 0x36, 0xa8, 0xcd, 0xa9, 0xa9, - 0x36, 0x9c, 0x50, 0xec, 0x0a, 0x74, 0xb3, 0x46, 0x12, 0x15, 0xa9, 0xa9, 0x44, 0x9b, 0x94, 0x14, - 0xe9, 0x1c, 0xb4, 0xbc, 0xc4, 0x4a, 0xbc, 0xe0, 0x90, 0x16, 0x97, 0xc1, 0x9b, 0x5e, 0xb2, 0xeb, - 0x05, 0x87, 0xec, 0x4d, 0x30, 0x62, 0xe1, 0x28, 0x8c, 0x41, 0x98, 0x56, 0x2c, 0x1c, 0x42, 0x9d, - 0x03, 0x2c, 0x5a, 0x8e, 0x14, 0x7a, 0x89, 0x35, 0x63, 0xe1, 0x6c, 0x4a, 0x61, 0x26, 0xd0, 0x78, - 0x20, 0xe2, 0xb1, 0xc0, 0x55, 0x86, 0x0d, 0x77, 0x1d, 0x3b, 0x20, 0xbe, 0x1b, 0x3c, 0xaf, 0xe3, - 0x1a, 0x8f, 0xec, 0x58, 0x7a, 0xb6, 0x4f, 0x8a, 0x6d, 0xf0, 0xac, 0xca, 0x2e, 0x40, 0x3b, 0x91, - 0x76, 0x2c, 0x71, 0x76, 0xa4, 0xd0, 0x0d, 0x6e, 0x10, 0x00, 0xd7, 0xc4, 0x39, 0x68, 0x89, 0xc0, - 0x25, 0x54, 0x5d, 0x49, 0x52, 0x04, 0xee, 0xb6, 0x7b, 0x64, 0xfe, 0x4d, 0x05, 0x7a, 0x0f, 0x52, - 0x5f, 0x7a, 0x1b, 0xf1, 0x38, 0x15, 0x93, 0x40, 0xa2, 0x6d, 0xd8, 0xf2, 0x12, 0xa9, 0xbf, 0x4c, - 0x65, 0xb6, 0x0a, 0xed, 0xef, 0xc5, 0x61, 0x1a, 0xdd, 0x3d, 0x8a, 0x32, 0x49, 0x83, 0x52, 0x2a, - 0x84, 0xf0, 0x02, 0xc9, 0xde, 0x83, 0xce, 0xe7, 0xb1, 0x2b, 0xe2, 0x3b, 0xc7, 0x44, 0x5b, 0x9b, - 0xa3, 0x2d, 0xa3, 0xd9, 0x45, 0x68, 0xef, 0x8a, 0xc8, 0x8e, 0x6d, 0x54, 0x81, 0x3a, 0x19, 0x94, - 0x02, 0x80, 0x73, 0x25, 0xe2, 0x6d, 0x57, 0x2f, 0xab, 0xac, 0x6a, 0x8e, 0xa1, 0xbd, 0x31, 0x1e, - 0xc7, 0x62, 0x6c, 0x4b, 0x32, 0x6e, 0x61, 0x44, 0xc3, 0xad, 0xf1, 0x6a, 0x18, 0x91, 0x01, 0xc5, - 0x09, 0x28, 0xfe, 0x50, 0x99, 0x5d, 0x82, 0xba, 0x58, 0x3c, 0x1e, 0x82, 0xb3, 0xb3, 0xd0, 0x74, - 0xc2, 0x60, 0xe4, 0x8d, 0xb5, 0xd9, 0xd5, 0x35, 0xf3, 0xf7, 0x6b, 0xd0, 0xa0, 0xc9, 0x21, 0x7b, - 0xd1, 0x14, 0x5a, 0xe2, 0x89, 0xed, 0x67, 0x52, 0x41, 0xc0, 0xdd, 0x27, 0xb6, 0xcf, 0x56, 0xa0, - 0x81, 0xdd, 0x24, 0x0b, 0x78, 0xa3, 0x10, 0xec, 0x3a, 0x34, 0x50, 0x89, 0x92, 0xe9, 0x11, 0xa0, - 0x12, 0xdd, 0xa9, 0xff, 0xf8, 0x9f, 0x2f, 0xbf, 0xc1, 0x15, 0x9a, 0xbd, 0x03, 0x75, 0x7b, 0x3c, - 0x4e, 0x48, 0x97, 0xa7, 0x96, 0x53, 0x3e, 0x5f, 0x4e, 0x04, 0xec, 0x36, 0xb4, 0x95, 0xdc, 0x90, - 0xba, 0x41, 0xd4, 0xe7, 0x4a, 0x5b, 0x4c, 0x59, 0xa4, 0xbc, 0xa0, 0x44, 0x8e, 0x7b, 0x89, 0xb6, - 0x60, 0xa4, 0xd1, 0x06, 0x2f, 0x00, 0xb8, 0x07, 0x44, 0xb1, 0xd8, 0xf0, 0xfd, 0xd0, 0xd9, 0xf5, - 0x9e, 0x09, 0xbd, 0x63, 0x4c, 0xc1, 0xd8, 0x75, 0xe8, 0xef, 0x28, 0x95, 0xe3, 0x22, 0x49, 0x7d, - 0x99, 0xe8, 0x5d, 0x64, 0x06, 0xca, 0xd6, 0x80, 0x4d, 0x41, 0xf6, 0x68, 0xfa, 0xed, 0x95, 0xda, - 0x6a, 0x8f, 0x2f, 0xc0, 0xb0, 0xb7, 0xa1, 0x37, 0x46, 0x4e, 0x7b, 0xc1, 0xd8, 0x1a, 0xf9, 0x36, - 0x6e, 0x30, 0x35, 0xdc, 0x80, 0x32, 0xe0, 0x3d, 0xdf, 0x1e, 0x9b, 0x3f, 0xab, 0x42, 0x73, 0x3b, - 0x48, 0x44, 0x2c, 0x71, 0x95, 0xd8, 0xa3, 0x91, 0x70, 0xa4, 0x50, 0xd6, 0xa9, 0xce, 0xf3, 0x3a, - 0xce, 0x72, 0x2f, 0xfc, 0x22, 0xf6, 0xa4, 0xd8, 0xfd, 0x50, 0xeb, 0x41, 0x01, 0x60, 0x37, 0x60, - 0xd9, 0x76, 0x5d, 0x2b, 0xa3, 0xb6, 0xe2, 0xf0, 0x69, 0x42, 0x2b, 0xc6, 0xe0, 0x4b, 0xb6, 0xeb, - 0x6e, 0x68, 0x38, 0x0f, 0x9f, 0x26, 0xec, 0x0a, 0xd4, 0x62, 0x31, 0x22, 0xad, 0xe8, 0xac, 0x2f, - 0x29, 0xa9, 0x7d, 0xbe, 0xff, 0x43, 0xe1, 0x48, 0x2e, 0x46, 0x1c, 0x71, 0xec, 0x34, 0x34, 0x6c, - 0x29, 0x63, 0x25, 0x85, 0x36, 0x57, 0x15, 0xb6, 0x06, 0xa7, 0x68, 0x65, 0x4a, 0x2f, 0x0c, 0x2c, - 0x69, 0xef, 0xfb, 0xb8, 0x11, 0x26, 0xda, 0xe6, 0x2f, 0xe7, 0xa8, 0x3d, 0xc4, 0x6c, 0xbb, 0x09, - 0xee, 0x12, 0xb3, 0xf4, 0x81, 0x3d, 0x11, 0x09, 0x99, 0xfc, 0x36, 0x3f, 0x35, 0xdd, 0xe2, 0x21, - 0xa2, 0x90, 0x65, 0x45, 0x1b, 0x5c, 0xdb, 0x06, 0x2d, 0x93, 0x6e, 0x0e, 0xc4, 0xa5, 0x7f, 0x06, - 0x9a, 0x5e, 0x62, 0x89, 0xc0, 0xd5, 0xe6, 0xa6, 0xe1, 0x25, 0x77, 0x03, 0x97, 0xbd, 0x0b, 0x6d, - 0xf5, 0x15, 0x57, 0x8c, 0x68, 0x2f, 0xef, 0xac, 0xf7, 0xb5, 0x52, 0x22, 0x78, 0x4b, 0x8c, 0xb8, - 0x21, 0x75, 0xc9, 0xfc, 0xfb, 0x2a, 0x74, 0x48, 0x87, 0x1e, 0x45, 0x2e, 0x2e, 0xb9, 0xb7, 0xa1, - 0x37, 0xcd, 0x3d, 0x25, 0x80, 0xae, 0x5d, 0x66, 0xdd, 0x59, 0x68, 0x6e, 0x38, 0x38, 0x0a, 0x92, - 0x40, 0x8f, 0xeb, 0x1a, 0x2e, 0xeb, 0xed, 0x3b, 0xa9, 0x73, 0x28, 0x24, 0x31, 0xbd, 0xc7, 0xb3, - 0x2a, 0x62, 0x1e, 0x6a, 0x4c, 0x5d, 0x61, 0x74, 0x95, 0xdd, 0x05, 0xd8, 0x15, 0xe3, 0x89, 0x08, - 0xe4, 0x03, 0x3b, 0xd2, 0xea, 0x7e, 0x6d, 0x46, 0xdd, 0xd5, 0xd8, 0xd6, 0x0a, 0xba, 0xbb, 0x81, - 0x8c, 0x8f, 0x79, 0xa9, 0x21, 0xfb, 0x16, 0x2c, 0xa5, 0x44, 0x65, 0x39, 0xf2, 0xc8, 0xf2, 0xd1, - 0x4a, 0x34, 0xa9, 0x2f, 0x2d, 0x59, 0xd5, 0xc5, 0xa6, 0x3c, 0xe2, 0xbd, 0x34, 0x2b, 0xde, 0xf7, - 0x12, 0x79, 0xfe, 0xdb, 0xb0, 0x34, 0xd3, 0x2f, 0x7a, 0x6e, 0x87, 0xe2, 0x98, 0x66, 0xde, 0xe6, - 0x58, 0x44, 0x45, 0x78, 0x62, 0xfb, 0x69, 0xe6, 0x72, 0xa8, 0xca, 0xaf, 0x55, 0x3f, 0xaa, 0x98, - 0x6f, 0x41, 0x63, 0x23, 0x8e, 0x6d, 0x22, 0xb1, 0xb1, 0x30, 0xac, 0xd0, 0xbe, 0xa3, 0x2a, 0xa6, - 0x03, 0x35, 0x1c, 0xdd, 0x35, 0xa8, 0x4e, 0x22, 0xc2, 0x74, 0xd6, 0xcf, 0x94, 0x26, 0x67, 0x47, - 0x6b, 0x0f, 0xf4, 0x64, 0xaa, 0x93, 0xe8, 0xfc, 0x6d, 0x68, 0x3d, 0x78, 0x8d, 0x31, 0xfc, 0x57, - 0x1d, 0x8c, 0x2d, 0xe1, 0x0b, 0x92, 0x81, 0x09, 0xdd, 0xb2, 0x9a, 0x67, 0xf2, 0x9b, 0x52, 0x7d, - 0x13, 0xba, 0x6a, 0x27, 0xa4, 0x56, 0x42, 0xaf, 0xa3, 0x29, 0xd8, 0x6b, 0xc9, 0xf2, 0x22, 0x40, - 0x1c, 0x3e, 0xb5, 0x3c, 0xb5, 0x1d, 0x29, 0xcb, 0x6e, 0xc4, 0xe1, 0xd3, 0x6d, 0xdc, 0x90, 0xfe, - 0x5f, 0xd6, 0xcd, 0xb7, 0x60, 0x58, 0x5a, 0x37, 0xe8, 0x66, 0x5a, 0x5e, 0x60, 0xed, 0xa3, 0xcf, - 0xa3, 0x97, 0x50, 0xd1, 0x27, 0x79, 0xa1, 0xdb, 0xc1, 0x1d, 0x72, 0x88, 0xb4, 0x35, 0x68, 0x9f, - 0x60, 0x0d, 0x16, 0x1a, 0x17, 0x58, 0x6c, 0x5c, 0xee, 0x4c, 0x69, 0x75, 0x87, 0x04, 0x6f, 0x16, - 0x82, 0xcf, 0xa4, 0x75, 0xa2, 0x4a, 0x5f, 0x81, 0xae, 0x63, 0x07, 0x96, 0x8c, 0xd3, 0xc0, 0xb1, - 0xa5, 0x18, 0x76, 0xe9, 0x53, 0x1d, 0xc7, 0x0e, 0xf6, 0x34, 0xa8, 0x64, 0x01, 0x7a, 0x65, 0x0b, - 0x70, 0x1d, 0x96, 0xa2, 0xd8, 0x9b, 0xd8, 0xf1, 0xb1, 0x75, 0x28, 0x8e, 0x49, 0x18, 0x7d, 0xe5, - 0x4f, 0x6b, 0xf0, 0x67, 0xe2, 0x78, 0xdb, 0x3d, 0xfa, 0xb2, 0xba, 0xff, 0x4f, 0x55, 0x68, 0xef, - 0xc4, 0x42, 0x5b, 0xed, 0xcb, 0xd0, 0x49, 0x9c, 0x03, 0x31, 0xb1, 0x49, 0x4a, 0xba, 0x07, 0x50, - 0x20, 0x14, 0xce, 0xb4, 0x5d, 0xaa, 0x9e, 0x6c, 0x97, 0x70, 0x1c, 0xca, 0xdb, 0xc1, 0xc5, 0x84, - 0xc5, 0xc2, 0x18, 0xd7, 0xcb, 0xc6, 0x78, 0x05, 0xba, 0x07, 0x76, 0x62, 0xd9, 0xa9, 0x0c, 0x2d, - 0x27, 0xf4, 0x49, 0xe9, 0x0c, 0x0e, 0x07, 0x76, 0xb2, 0x91, 0xca, 0x70, 0x33, 0x24, 0xef, 0xc9, - 0x4b, 0x2c, 0xb5, 0xe8, 0xf5, 0xbe, 0x68, 0x78, 0x89, 0x36, 0x77, 0x6b, 0x70, 0x4a, 0x24, 0xd2, - 0x9b, 0xd8, 0x5a, 0xa0, 0x96, 0x13, 0xa6, 0x81, 0xa4, 0xdd, 0xb1, 0xc6, 0x97, 0x73, 0x14, 0x0f, - 0x9f, 0x6e, 0x22, 0x82, 0xbd, 0x0f, 0x7d, 0x27, 0x9c, 0x44, 0x56, 0x84, 0x7c, 0x25, 0xbf, 0x43, - 0x39, 0xe2, 0x65, 0xbf, 0xa0, 0x8b, 0x14, 0x3b, 0x87, 0x42, 0x39, 0x42, 0xeb, 0xb0, 0xe4, 0xf8, - 0x69, 0x22, 0x45, 0x6c, 0xed, 0xeb, 0x26, 0xed, 0xb9, 0x26, 0x3d, 0x4d, 0xa2, 0x9c, 0x27, 0x64, - 0x6c, 0x6b, 0x27, 0x4c, 0xe4, 0xd6, 0xc4, 0xcf, 0x14, 0xb3, 0xf2, 0xaa, 0x8a, 0x59, 0x5d, 0xac, - 0x98, 0x0b, 0x54, 0xa3, 0xb6, 0x40, 0x35, 0xd8, 0x2a, 0x0c, 0xca, 0x74, 0x24, 0x52, 0xe5, 0xc6, - 0xf5, 0x0b, 0x42, 0x12, 0xab, 0xe2, 0xaf, 0xab, 0x2c, 0x49, 0x23, 0xe3, 0xaf, 0xb6, 0x22, 0x0a, - 0xe9, 0x91, 0x86, 0x14, 0xcc, 0xd7, 0x1a, 0xf3, 0xab, 0xf0, 0x66, 0xde, 0xd2, 0x7a, 0xea, 0xc9, - 0x83, 0x30, 0x95, 0xd6, 0x88, 0x4e, 0x2c, 0x89, 0xf6, 0xba, 0xcf, 0x66, 0x3d, 0x7d, 0xa1, 0xd0, - 0xea, 0x3c, 0x43, 0x3e, 0xd2, 0x28, 0xf5, 0x7d, 0x4b, 0x8a, 0x23, 0xa9, 0x45, 0x30, 0x54, 0xbc, - 0xd1, 0x7c, 0xbb, 0x97, 0xfa, 0xfe, 0x9e, 0x38, 0x92, 0x68, 0xf1, 0x8d, 0x91, 0xae, 0x98, 0x7f, - 0x5b, 0x03, 0xb8, 0x1f, 0x3a, 0x87, 0x7b, 0x76, 0x3c, 0x16, 0x12, 0x7d, 0xf9, 0xcc, 0x0e, 0x69, - 0x3b, 0xd9, 0x92, 0xca, 0xfa, 0xb0, 0x75, 0x38, 0x9b, 0xcd, 0xdf, 0x09, 0x7d, 0x3a, 0x57, 0x28, - 0x43, 0xa2, 0x97, 0x01, 0xd3, 0x58, 0x75, 0x32, 0x25, 0x2b, 0xc2, 0x3e, 0x2a, 0x78, 0x8b, 0x6d, - 0xe4, 0x71, 0x44, 0xbc, 0x5d, 0xe4, 0x13, 0xf6, 0x8a, 0xe6, 0x7b, 0xc7, 0x11, 0x7b, 0x1f, 0xce, - 0xc4, 0x62, 0x14, 0x8b, 0xe4, 0xc0, 0x92, 0x49, 0xf9, 0x63, 0xca, 0xa5, 0x5f, 0xd6, 0xc8, 0xbd, - 0x24, 0xff, 0xd6, 0xfb, 0x70, 0x46, 0x71, 0x6a, 0x76, 0x78, 0xca, 0xea, 0x2e, 0x2b, 0x64, 0x79, - 0x74, 0x6f, 0x01, 0x05, 0x3f, 0x94, 0x25, 0xcd, 0x1c, 0x44, 0x9f, 0x98, 0xb1, 0xef, 0x0b, 0x74, - 0xac, 0x36, 0x0f, 0xf0, 0xd4, 0xb9, 0x25, 0x46, 0x9a, 0xf9, 0x05, 0x80, 0x99, 0x50, 0x7f, 0x10, - 0xba, 0x82, 0x58, 0xdd, 0x5f, 0xef, 0xaf, 0x51, 0x18, 0x05, 0x39, 0x89, 0x50, 0x4e, 0x38, 0xf6, - 0x0e, 0x50, 0x77, 0x4a, 0xfd, 0xe6, 0x75, 0xdc, 0x40, 0x24, 0xe9, 0xe0, 0xfb, 0x70, 0xa6, 0x18, - 0x89, 0x65, 0x4b, 0x4b, 0x1e, 0x08, 0x32, 0x62, 0xca, 0x98, 0x2e, 0xe7, 0x83, 0xda, 0x90, 0x7b, - 0x07, 0xe2, 0x6e, 0xe0, 0x9a, 0x1f, 0x41, 0x13, 0x3f, 0xf6, 0x79, 0xc4, 0xd6, 0xa0, 0x25, 0x49, - 0x78, 0x89, 0xde, 0x4e, 0x4f, 0x17, 0x56, 0xb5, 0x90, 0x2c, 0xcf, 0x88, 0x4c, 0x0e, 0x4b, 0xb9, - 0x89, 0x7a, 0x14, 0x78, 0x8f, 0x53, 0xc1, 0x3e, 0x81, 0xe5, 0x28, 0x16, 0x5a, 0x29, 0xad, 0xf4, - 0x10, 0x3d, 0x06, 0xbd, 0xbe, 0x4e, 0x6b, 0x1d, 0xca, 0x5b, 0x1c, 0xa2, 0xfe, 0xf4, 0xa3, 0xa9, - 0xba, 0xf9, 0x03, 0x38, 0x97, 0x53, 0xec, 0x0a, 0x27, 0x0c, 0x5c, 0x3b, 0x3e, 0xa6, 0xdd, 0x64, - 0xa6, 0xef, 0xe4, 0x55, 0xfa, 0xde, 0xa5, 0xbe, 0x7f, 0x54, 0x83, 0xfe, 0xe7, 0xc1, 0x56, 0x1a, - 0xf9, 0x1e, 0x5a, 0xf8, 0xcf, 0x94, 0x01, 0x56, 0x86, 0xaf, 0x52, 0x36, 0x7c, 0xab, 0x30, 0xd0, - 0x5f, 0x41, 0x05, 0x50, 0x66, 0x4b, 0xc7, 0x59, 0x14, 0x7c, 0x33, 0xf4, 0x95, 0xcd, 0xfa, 0x36, - 0x9c, 0x49, 0x69, 0xe6, 0x8a, 0xf2, 0x40, 0x38, 0x87, 0xd6, 0x73, 0x8e, 0x4c, 0x4c, 0x11, 0x62, - 0x53, 0x24, 0x23, 0x03, 0x76, 0x19, 0x3a, 0x45, 0xf3, 0xcc, 0xfa, 0x42, 0x4e, 0x48, 0x23, 0x09, - 0x03, 0xcb, 0xcd, 0x86, 0xac, 0xf7, 0x7e, 0xb4, 0xdb, 0xfd, 0xb0, 0x98, 0x09, 0x1a, 0x95, 0xdf, - 0x82, 0xe5, 0x29, 0x4a, 0x1a, 0x85, 0x72, 0xd3, 0x6e, 0x16, 0x62, 0x9c, 0x9e, 0x7e, 0xb9, 0x8a, - 0xe3, 0x51, 0xfb, 0xe4, 0x52, 0x38, 0x0d, 0xcd, 0x0c, 0xcd, 0x38, 0x08, 0x63, 0xa1, 0xd5, 0x17, - 0x0d, 0x0d, 0xd5, 0xcf, 0x3f, 0x84, 0xd3, 0x8b, 0x7a, 0x59, 0xb0, 0xd9, 0xad, 0x94, 0x37, 0xbb, - 0x99, 0xe3, 0x5e, 0xb1, 0xf1, 0xfd, 0x59, 0x05, 0x3a, 0xf7, 0xd2, 0x67, 0xcf, 0x8e, 0x95, 0x39, - 0x62, 0x5d, 0xa8, 0x3c, 0xa4, 0x5e, 0xaa, 0xbc, 0xf2, 0x10, 0xbd, 0xe3, 0x9d, 0x43, 0x34, 0x8d, - 0xd4, 0x49, 0x9b, 0xeb, 0x1a, 0x1e, 0x14, 0x77, 0x0e, 0xf7, 0x4e, 0x30, 0x0a, 0x0a, 0x8d, 0xc7, - 0x9f, 0x3b, 0xa9, 0xe7, 0xa3, 0xcf, 0xa4, 0xd7, 0x7f, 0x5e, 0xc7, 0xa3, 0xd7, 0xf6, 0x48, 0xe9, - 0xcb, 0xbd, 0x38, 0x9c, 0x28, 0x8d, 0xd6, 0x56, 0x77, 0x01, 0xc6, 0xfc, 0x49, 0x0d, 0xea, 0x9f, - 0x86, 0x5e, 0xa0, 0xc2, 0x16, 0xbe, 0x72, 0x8c, 0x95, 0x87, 0xda, 0x8a, 0x85, 0x8f, 0x1e, 0x30, - 0xa2, 0x50, 0x31, 0x7c, 0x75, 0xb2, 0x26, 0x94, 0x13, 0x2a, 0x54, 0x71, 0xb8, 0xae, 0x2c, 0x3c, - 0x5c, 0xe7, 0x67, 0xdf, 0xfa, 0x8b, 0xce, 0xbe, 0x6d, 0x5f, 0x8c, 0x50, 0x55, 0x03, 0x57, 0xfb, - 0xf8, 0xd3, 0xa6, 0x41, 0x8c, 0xe4, 0x66, 0x18, 0xb8, 0xec, 0x1b, 0x00, 0xb1, 0x37, 0x3e, 0xd0, - 0x94, 0xcd, 0xf9, 0x78, 0x04, 0x61, 0x89, 0x94, 0xc3, 0x9b, 0x3a, 0xc8, 0xa5, 0xf7, 0x0c, 0x6b, - 0x1f, 0xb9, 0xa4, 0xe6, 0xd1, 0xca, 0x8e, 0xcd, 0x8b, 0xc3, 0x63, 0x67, 0xa7, 0xc2, 0x63, 0xc4, - 0x5d, 0x9a, 0xef, 0x45, 0x40, 0xcf, 0xe1, 0xc0, 0x0a, 0x03, 0x2b, 0xca, 0xc2, 0x3b, 0x06, 0x42, - 0x3e, 0x0f, 0x76, 0x0e, 0xd1, 0x82, 0x7a, 0x89, 0xa5, 0xa3, 0x44, 0xfa, 0xcc, 0x55, 0x3a, 0x62, - 0xaf, 0x40, 0xf7, 0x87, 0xa1, 0x17, 0x58, 0x13, 0x3b, 0xb2, 0xa4, 0xad, 0xc2, 0xa8, 0x0d, 0x0e, - 0x08, 0x7b, 0x60, 0x47, 0x7b, 0xf6, 0x98, 0x5c, 0x24, 0x1d, 0x77, 0xc2, 0x45, 0xd2, 0x51, 0x04, - 0x1a, 0x84, 0xe2, 0xbd, 0x00, 0x6d, 0xea, 0x82, 0xa2, 0x52, 0x5d, 0x25, 0x7b, 0x04, 0x20, 0x47, - 0xcd, 0x7f, 0xab, 0x82, 0xb1, 0x11, 0x48, 0x8f, 0xe4, 0x79, 0x16, 0x9a, 0x31, 0x1d, 0xb1, 0xb5, - 0x34, 0x75, 0x2d, 0x97, 0x58, 0xf5, 0x39, 0x12, 0x9b, 0x92, 0x44, 0xed, 0xa5, 0x25, 0x51, 0x3f, - 0x49, 0x12, 0xd3, 0x5c, 0x6b, 0x9c, 0xc8, 0xb5, 0xb9, 0xc0, 0xc4, 0xd7, 0x21, 0xc6, 0x59, 0x49, - 0x18, 0x2f, 0x92, 0x44, 0x7b, 0x56, 0x12, 0xe6, 0x5f, 0xd5, 0xc0, 0xb8, 0x2f, 0x46, 0xf2, 0x97, - 0x8b, 0xe7, 0x17, 0x65, 0xf1, 0x98, 0xff, 0x59, 0x83, 0x36, 0xc7, 0x19, 0x7e, 0x8d, 0x32, 0xbb, - 0x05, 0x40, 0xb2, 0x38, 0x59, 0x70, 0x24, 0x2f, 0x15, 0xfb, 0xfa, 0x00, 0x3a, 0x4a, 0x26, 0xaa, - 0x45, 0xe3, 0x39, 0x2d, 0x94, 0xe0, 0xf6, 0xe6, 0xe5, 0xdd, 0x7c, 0x69, 0x79, 0xb7, 0x5e, 0x5b, - 0xde, 0xc6, 0x57, 0x21, 0xef, 0xf6, 0x89, 0xf2, 0x86, 0x17, 0xc9, 0xbb, 0xf3, 0x22, 0x79, 0x77, - 0xe7, 0xe4, 0xfd, 0xa3, 0x1a, 0xf4, 0x48, 0xde, 0xbb, 0x62, 0xf2, 0xe5, 0x8c, 0xe2, 0x8c, 0x90, - 0x6a, 0xaf, 0x2a, 0xa4, 0xfa, 0x4b, 0x0b, 0xa9, 0xf1, 0xda, 0x42, 0x6a, 0x7e, 0x15, 0x42, 0x6a, - 0x9d, 0x28, 0x24, 0xe3, 0x45, 0x42, 0x6a, 0xbf, 0xfa, 0xa2, 0xcc, 0x85, 0xf4, 0xa5, 0x77, 0xae, - 0x5f, 0x0a, 0xe9, 0x2b, 0x12, 0x12, 0xcc, 0x09, 0x09, 0x3d, 0x8b, 0x2f, 0xbd, 0x88, 0xbe, 0x0e, - 0xcf, 0xe2, 0x44, 0x66, 0x37, 0xbe, 0x0a, 0x66, 0x37, 0x4f, 0x64, 0x76, 0xeb, 0x45, 0xcc, 0x7e, - 0x0d, 0xcf, 0xe2, 0xaf, 0x6b, 0x00, 0xbb, 0x5e, 0x30, 0xf6, 0xc5, 0x2f, 0x7d, 0x8b, 0x5f, 0x18, - 0xdf, 0xe2, 0xef, 0xaa, 0x60, 0x3c, 0xb0, 0xe3, 0xc3, 0x9f, 0xbb, 0x15, 0xf2, 0x36, 0xb4, 0xc2, - 0xa0, 0xbc, 0x1e, 0xca, 0x74, 0xcd, 0x30, 0xf8, 0xb9, 0x50, 0xf9, 0x9f, 0x34, 0xa0, 0xbd, 0x25, - 0xdc, 0x34, 0xfa, 0x12, 0x1a, 0xff, 0x8b, 0x62, 0x5e, 0x5e, 0x70, 0xdc, 0x99, 0xe5, 0x66, 0xeb, - 0x45, 0xdc, 0x34, 0xe6, 0x0e, 0x89, 0xf7, 0xe1, 0xd4, 0x54, 0x14, 0xc5, 0x56, 0x57, 0x71, 0x6d, - 0x0a, 0xcd, 0x5d, 0x54, 0xe3, 0x7d, 0x18, 0xba, 0x53, 0x81, 0x14, 0x75, 0x41, 0xc7, 0x97, 0xc3, - 0x59, 0x10, 0xbb, 0x0a, 0x7d, 0x17, 0x45, 0x43, 0xc1, 0x21, 0x0a, 0xf3, 0xaa, 0xf4, 0x9f, 0x2e, - 0x41, 0x37, 0x43, 0x9f, 0x62, 0x17, 0x1f, 0xc1, 0x52, 0x41, 0xa5, 0x2c, 0x4b, 0xe7, 0x39, 0x96, - 0xa5, 0x97, 0x35, 0x54, 0x7b, 0xf0, 0xb4, 0xc7, 0xdc, 0x7d, 0x65, 0x8f, 0xb9, 0xf7, 0x12, 0xfb, - 0xfc, 0x4d, 0x38, 0x95, 0x5d, 0xfe, 0xe9, 0x60, 0x28, 0x49, 0xb0, 0x4f, 0x1a, 0x34, 0xd0, 0xf7, - 0x7d, 0x14, 0x0a, 0x25, 0x11, 0x7d, 0x0c, 0xa7, 0x4b, 0xe4, 0xb8, 0x34, 0x15, 0xfd, 0xd2, 0x9c, - 0xae, 0x2c, 0xe7, 0x6d, 0xb1, 0x8a, 0x8d, 0xcd, 0xdf, 0xa9, 0x40, 0x6b, 0x27, 0x0e, 0xdd, 0xd4, - 0x91, 0xaf, 0xa9, 0xc9, 0xd3, 0x1a, 0x52, 0x7b, 0x91, 0x86, 0xd4, 0x67, 0x35, 0xc4, 0xfc, 0xdd, - 0x0a, 0xb4, 0xf5, 0x10, 0xee, 0xaf, 0x7f, 0x4d, 0x1b, 0xc8, 0x8b, 0x47, 0xf1, 0x14, 0xda, 0x14, - 0xf3, 0x3c, 0xd1, 0x24, 0x9e, 0xb8, 0xc2, 0xaa, 0xaf, 0xb5, 0xc2, 0xcc, 0x3f, 0xa8, 0x40, 0x8f, - 0xc2, 0xc3, 0xf7, 0xd2, 0x40, 0xe9, 0xf0, 0xe2, 0x08, 0xe9, 0x0a, 0xd4, 0x63, 0x21, 0xb3, 0xcc, - 0x8d, 0xae, 0xfa, 0xcc, 0x66, 0xe8, 0x6f, 0x89, 0x11, 0x27, 0x0c, 0x32, 0xc1, 0x8e, 0xc7, 0xc9, - 0xa2, 0xdc, 0x11, 0x84, 0xe3, 0xac, 0x22, 0x3b, 0xb6, 0x27, 0x49, 0x96, 0x3b, 0xa2, 0x6a, 0x8c, - 0x41, 0x9d, 0x56, 0x4a, 0x83, 0x56, 0x0a, 0x95, 0xcd, 0x0d, 0x38, 0x73, 0xf7, 0x48, 0x8a, 0x38, - 0xb0, 0x69, 0xc5, 0xac, 0xa3, 0xbe, 0x51, 0x48, 0x38, 0x23, 0xae, 0x14, 0xc4, 0x38, 0xe0, 0x72, - 0x66, 0x9c, 0xaa, 0x98, 0xd7, 0xa0, 0x33, 0xf2, 0x7c, 0x61, 0x85, 0xa3, 0x51, 0x22, 0x24, 0x7e, - 0x5d, 0x95, 0x68, 0x5a, 0x35, 0xae, 0x6b, 0xe6, 0x1f, 0xd7, 0xa0, 0x9b, 0x7d, 0x8a, 0x32, 0x87, - 0xde, 0x2b, 0x4f, 0xbf, 0xb3, 0x3e, 0xc8, 0xe6, 0x81, 0x24, 0x1b, 0x52, 0xc6, 0xd9, 0x96, 0xaf, - 0xd8, 0x72, 0x01, 0xda, 0xf4, 0x95, 0xc4, 0x7b, 0x26, 0x88, 0x37, 0x35, 0x6e, 0x20, 0x80, 0x52, - 0x40, 0x36, 0x60, 0xb9, 0x34, 0x04, 0x4b, 0x86, 0xd2, 0xf6, 0x35, 0x7b, 0x4a, 0xf7, 0xd6, 0x25, - 0x12, 0xbe, 0x84, 0x95, 0xcf, 0xa9, 0xbc, 0x87, 0xd4, 0xc8, 0xf6, 0x3c, 0x50, 0x3c, 0xc7, 0x76, - 0xc4, 0xe0, 0x02, 0x70, 0x62, 0x81, 0xeb, 0x2f, 0x79, 0xec, 0x6b, 0x26, 0xb6, 0x15, 0x64, 0xf7, - 0xb1, 0x9f, 0x0f, 0x30, 0xf7, 0xa8, 0xdb, 0x6a, 0x80, 0xa4, 0xb7, 0x37, 0xa1, 0x13, 0xc6, 0xde, - 0xd8, 0x0b, 0x54, 0x34, 0xba, 0xb5, 0xe0, 0x23, 0xa0, 0x08, 0x28, 0x36, 0x6d, 0x42, 0x53, 0xe9, - 0xdd, 0x82, 0x7b, 0x3a, 0x8d, 0x61, 0xd7, 0x61, 0x29, 0x91, 0xb1, 0xe7, 0x48, 0x1c, 0x8e, 0x35, - 0x09, 0xdd, 0xcc, 0x85, 0xe8, 0x29, 0xf0, 0xee, 0x63, 0x9f, 0xee, 0x37, 0xae, 0xc3, 0x92, 0x13, - 0xfa, 0xe9, 0x44, 0x6d, 0xb7, 0x96, 0x2f, 0x02, 0xed, 0x49, 0xf4, 0x14, 0x18, 0xc7, 0x77, 0x5f, - 0x04, 0xa6, 0x03, 0xb0, 0x2b, 0x63, 0x61, 0x4f, 0x48, 0x38, 0xef, 0x40, 0x4b, 0xee, 0xfb, 0x74, - 0xe7, 0x59, 0x59, 0x78, 0xe7, 0xd9, 0x94, 0xfb, 0x38, 0xec, 0x92, 0xb8, 0xab, 0x74, 0xfb, 0xa8, - 0x6b, 0xa8, 0x2b, 0xbe, 0x37, 0xf1, 0xa4, 0x4e, 0x65, 0x54, 0x15, 0xf3, 0x43, 0x68, 0x53, 0x0f, - 0xf4, 0x8d, 0xdc, 0xdb, 0xab, 0x9c, 0xe8, 0xed, 0x99, 0xef, 0x41, 0xfb, 0x37, 0x6d, 0x3f, 0x55, - 0x8d, 0x2e, 0x43, 0x87, 0xee, 0xc5, 0xad, 0x7d, 0x3f, 0x74, 0x0e, 0xb3, 0xfb, 0x5a, 0x02, 0xdd, - 0x41, 0x88, 0x09, 0x60, 0x3c, 0x0a, 0xbc, 0x30, 0xd8, 0xf0, 0x7d, 0xf3, 0x0f, 0xeb, 0xd0, 0xfe, - 0xbe, 0x9d, 0x1c, 0xd0, 0x2a, 0x64, 0x2b, 0xd0, 0x79, 0x28, 0x84, 0x8b, 0x80, 0x07, 0x76, 0xa4, - 0x73, 0xa6, 0xca, 0x20, 0x76, 0x1e, 0x8c, 0xef, 0x2b, 0xff, 0xe2, 0x33, 0x7d, 0x13, 0x99, 0xd7, - 0xb3, 0xd6, 0x74, 0xef, 0x2e, 0xb2, 0xf4, 0x9c, 0x32, 0x88, 0xdd, 0x80, 0x01, 0x56, 0x29, 0x33, - 0x09, 0x95, 0x42, 0xf8, 0x6a, 0x05, 0x1a, 0x7c, 0x0e, 0xce, 0x6e, 0x00, 0xe0, 0x5e, 0x4e, 0x37, - 0xfa, 0xc9, 0x02, 0x1f, 0xa8, 0x84, 0x65, 0x97, 0x00, 0x3e, 0xcd, 0x0d, 0x98, 0xce, 0xfa, 0x2b, - 0x41, 0xd8, 0x55, 0xe8, 0xe9, 0x1a, 0x17, 0xa3, 0x4d, 0x7d, 0x0f, 0xdc, 0xe0, 0xd3, 0x40, 0x76, - 0x17, 0x96, 0xf9, 0x2b, 0xe7, 0x63, 0xce, 0x81, 0xd0, 0x38, 0xd3, 0xed, 0xa7, 0x9b, 0x46, 0x5a, - 0xdf, 0x5a, 0x5e, 0x42, 0x5e, 0xd2, 0xf3, 0x76, 0x78, 0xf8, 0xaa, 0x76, 0xf8, 0xce, 0xcb, 0xed, - 0xf0, 0xdd, 0x97, 0xda, 0xe1, 0xcd, 0x9f, 0xd5, 0xa0, 0xab, 0x37, 0x2f, 0x32, 0xee, 0x53, 0xc2, - 0xaf, 0x9c, 0x2c, 0xfc, 0xea, 0xcb, 0x09, 0xbf, 0xf6, 0x52, 0xc2, 0xaf, 0x9f, 0x28, 0xfc, 0x85, - 0x62, 0x6b, 0xbc, 0xb2, 0xd8, 0x5e, 0xa4, 0x43, 0x97, 0x00, 0x76, 0x73, 0x5f, 0x2d, 0x73, 0xef, - 0x0a, 0xc8, 0x94, 0xd8, 0x8d, 0x97, 0x12, 0xfb, 0xcf, 0xa7, 0x63, 0x67, 0xee, 0x02, 0xd0, 0x06, - 0xa7, 0x64, 0xbe, 0x90, 0xbb, 0x95, 0x57, 0xe5, 0xae, 0xf9, 0xbf, 0x15, 0x80, 0x5d, 0x7b, 0x12, - 0xa9, 0xcd, 0x9d, 0x7d, 0x17, 0x3a, 0x09, 0xd5, 0xd4, 0x8d, 0x88, 0xca, 0xc9, 0xbf, 0x5c, 0xca, - 0xc9, 0xcf, 0x49, 0x75, 0x11, 0x87, 0xc6, 0x21, 0xc9, 0xcb, 0xe4, 0x4d, 0xab, 0x1e, 0xf2, 0xac, - 0x88, 0x46, 0x46, 0x40, 0x97, 0xd1, 0xd7, 0xa0, 0xaf, 0x09, 0x22, 0x11, 0x3b, 0x22, 0x50, 0x76, - 0xb6, 0xc2, 0x7b, 0x0a, 0xba, 0xa3, 0x80, 0xec, 0x83, 0x9c, 0x4c, 0x19, 0xfb, 0x45, 0xda, 0xa6, - 0x9b, 0x6c, 0x2a, 0x02, 0x73, 0x3d, 0x9b, 0x0a, 0x0d, 0xc4, 0x80, 0x3a, 0x7e, 0x6f, 0xf0, 0x06, - 0xeb, 0x40, 0x4b, 0xf7, 0x3a, 0xa8, 0xb0, 0x1e, 0xb4, 0x29, 0x35, 0x98, 0x70, 0x55, 0xf3, 0x4f, - 0x4f, 0x41, 0x67, 0x3b, 0x48, 0x64, 0x9c, 0x2a, 0x21, 0x16, 0x19, 0xb0, 0x0d, 0xca, 0x80, 0xd5, - 0x69, 0x31, 0x6a, 0x1a, 0x94, 0x16, 0x73, 0x1d, 0xea, 0x76, 0x20, 0x3d, 0xed, 0xc8, 0x95, 0xd2, - 0xac, 0xb3, 0x80, 0x1b, 0x27, 0x3c, 0xbb, 0x09, 0x2d, 0x9d, 0x93, 0xad, 0x53, 0x1e, 0x17, 0x26, - 0x74, 0x67, 0x34, 0x6c, 0x0d, 0x0c, 0x57, 0x27, 0x8b, 0xeb, 0x45, 0x52, 0xea, 0x3a, 0x4b, 0x23, - 0xe7, 0x39, 0x0d, 0xbb, 0x02, 0x35, 0x7b, 0xac, 0xd6, 0x03, 0xa5, 0xa9, 0x64, 0xa4, 0x94, 0x62, - 0xcb, 0x11, 0xc7, 0x4c, 0xa8, 0xa3, 0xfb, 0x48, 0x6b, 0x82, 0xb6, 0xc1, 0x8c, 0x46, 0x8d, 0x12, - 0x71, 0xec, 0x96, 0x3e, 0xe5, 0x11, 0xa1, 0x31, 0xfb, 0xdd, 0xec, 0x42, 0x46, 0x9d, 0xf6, 0x3e, - 0xd5, 0x0d, 0x12, 0x31, 0xf1, 0x54, 0x83, 0xf6, 0x6c, 0x83, 0x2c, 0xa8, 0xc5, 0x8d, 0x24, 0x0b, - 0x6f, 0xdd, 0x86, 0x4e, 0x42, 0xd1, 0x17, 0xd5, 0x04, 0xb2, 0xbb, 0xf9, 0xbc, 0x49, 0x1e, 0x9a, - 0xe1, 0x90, 0x14, 0x61, 0x9a, 0x5b, 0xd0, 0x9e, 0xd8, 0xf1, 0xa1, 0x6a, 0xd4, 0x99, 0xfd, 0x4e, - 0x16, 0x1a, 0xe0, 0xc6, 0x24, 0x0b, 0x12, 0xac, 0x03, 0xa8, 0x85, 0x45, 0x2d, 0xba, 0xb3, 0x2c, - 0xcf, 0x8f, 0xc3, 0xbc, 0xed, 0xe6, 0x27, 0xe3, 0x77, 0xa1, 0x15, 0x29, 0xbf, 0x9e, 0xf2, 0xb9, - 0x3a, 0xeb, 0xcb, 0x45, 0x03, 0xed, 0xf0, 0xf3, 0x8c, 0x82, 0x7d, 0x07, 0xfa, 0x2a, 0x81, 0x62, - 0xa4, 0xdd, 0x60, 0xca, 0xf1, 0x9a, 0xca, 0x15, 0x9e, 0xf2, 0x92, 0x79, 0x4f, 0x4e, 0x39, 0xcd, - 0x1f, 0x43, 0x4f, 0x68, 0x2f, 0xd2, 0x4a, 0x1c, 0x3b, 0x18, 0x0e, 0xa8, 0xf9, 0xd9, 0xa2, 0x79, - 0xd9, 0xc9, 0xe4, 0x5d, 0x51, 0x76, 0x39, 0x57, 0xa1, 0xa9, 0x93, 0x7a, 0x96, 0xa9, 0x55, 0xe9, - 0x0d, 0x8c, 0xba, 0x83, 0xe6, 0x1a, 0xcf, 0xee, 0xcc, 0x64, 0x07, 0x1c, 0x8a, 0xe3, 0x21, 0xcb, - 0x12, 0x76, 0x16, 0x5f, 0xf9, 0x4f, 0xe5, 0x0d, 0x7c, 0x26, 0x8e, 0x91, 0x97, 0x45, 0x56, 0xc5, - 0xf0, 0xd4, 0x2c, 0x2f, 0xf3, 0x94, 0x0a, 0xde, 0xce, 0xb3, 0x29, 0xd0, 0x20, 0x95, 0xb3, 0x3c, - 0xd4, 0x45, 0xf9, 0x69, 0x6a, 0xfa, 0xe6, 0x82, 0xa6, 0xea, 0xbe, 0x9c, 0x2f, 0x45, 0x33, 0xc9, - 0x22, 0xef, 0x81, 0x11, 0xc6, 0x2e, 0x25, 0x6f, 0x0d, 0xcf, 0xd0, 0x8a, 0x5f, 0xd6, 0x39, 0x58, - 0x2a, 0xd9, 0x9d, 0x0c, 0x59, 0x2b, 0x54, 0x15, 0x76, 0x13, 0xba, 0x51, 0x1c, 0xfe, 0x50, 0x38, - 0x52, 0x79, 0xaf, 0x67, 0xe7, 0x93, 0xe4, 0x35, 0x9e, 0x9c, 0xd9, 0xc2, 0x3b, 0x3d, 0xf7, 0x5c, - 0xef, 0x74, 0x25, 0x73, 0xff, 0x86, 0xf3, 0x19, 0x09, 0x84, 0xc0, 0x5e, 0xb4, 0xe3, 0xf8, 0xe6, - 0x7c, 0x2f, 0xda, 0x89, 0x1c, 0x42, 0xcb, 0x4b, 0xee, 0x79, 0x71, 0x22, 0x87, 0xe7, 0xb3, 0x4d, - 0x87, 0xaa, 0xe8, 0x76, 0x7a, 0xc9, 0x7d, 0x3b, 0x91, 0xc3, 0x0b, 0xd9, 0x3b, 0x07, 0xac, 0x21, - 0xcf, 0xd5, 0x31, 0x9c, 0xf4, 0xf7, 0xe2, 0x2c, 0xcf, 0xf3, 0x8b, 0x36, 0x1d, 0x4f, 0x21, 0xfd, - 0xfd, 0x04, 0x96, 0x54, 0x9b, 0x62, 0x49, 0xbe, 0x35, 0xab, 0x93, 0x53, 0x37, 0x36, 0xbc, 0x17, - 0x4f, 0x5d, 0xe0, 0xe4, 0x1d, 0xa0, 0xc9, 0x52, 0x1d, 0x5c, 0x5a, 0xd8, 0x41, 0x6e, 0xdc, 0x54, - 0x07, 0xf9, 0xe5, 0xc2, 0x0d, 0x68, 0xea, 0x4c, 0xb4, 0xcb, 0x73, 0x46, 0x4b, 0xe7, 0x5c, 0x72, - 0x4d, 0xc1, 0xbe, 0x01, 0x2d, 0x4a, 0x43, 0x0a, 0xa3, 0xe1, 0xca, 0xac, 0x12, 0xab, 0x6c, 0x23, - 0xde, 0xf4, 0x55, 0xd6, 0xd1, 0xbb, 0xd0, 0xca, 0xce, 0xeb, 0x57, 0x66, 0x17, 0xa6, 0xde, 0xdb, - 0x79, 0x46, 0xc1, 0xae, 0x41, 0x63, 0x82, 0x26, 0x7d, 0x68, 0xce, 0x1a, 0x43, 0x65, 0xe9, 0x15, - 0x96, 0x0c, 0x11, 0x1d, 0x13, 0xd4, 0xea, 0x7b, 0x7b, 0xce, 0x10, 0xe5, 0x67, 0x08, 0x0e, 0x49, - 0x71, 0x9e, 0xf8, 0x6d, 0x38, 0x5f, 0xce, 0x30, 0xca, 0xd2, 0x8f, 0xf4, 0x4b, 0xab, 0xab, 0xd4, - 0xcb, 0x95, 0x05, 0x0a, 0x3e, 0x9d, 0xa8, 0xc4, 0xcf, 0x45, 0xcf, 0xc9, 0x60, 0xba, 0x9d, 0x6f, - 0x98, 0x68, 0x57, 0x86, 0xd7, 0xe6, 0x86, 0x95, 0x6f, 0xb9, 0xd9, 0x36, 0x4a, 0x3b, 0xf5, 0x47, - 0xd0, 0x1d, 0xa5, 0xcf, 0x9e, 0x1d, 0xeb, 0x63, 0xfe, 0xf0, 0x3a, 0xb5, 0x2b, 0x9d, 0x19, 0x4b, - 0xf9, 0x32, 0xbc, 0x33, 0x2a, 0x25, 0xcf, 0x9c, 0x83, 0x96, 0x13, 0x58, 0xb6, 0xeb, 0xc6, 0xc3, - 0x77, 0x54, 0xbe, 0x8c, 0x13, 0x6c, 0xb8, 0x2e, 0x25, 0x1e, 0x85, 0x91, 0xa0, 0x07, 0x23, 0x96, - 0xe7, 0x0e, 0x57, 0xd5, 0xd6, 0x9d, 0x81, 0xb6, 0x5d, 0x7a, 0x8a, 0x66, 0xc7, 0xb6, 0xef, 0x0b, - 0x1f, 0x09, 0xbe, 0xa1, 0x9f, 0xa2, 0x69, 0xd0, 0xb6, 0xcb, 0xae, 0x40, 0x77, 0x62, 0x1f, 0x59, - 0x19, 0x64, 0x78, 0x43, 0xbd, 0xf3, 0x99, 0xd8, 0x47, 0x3b, 0x1a, 0x84, 0x6a, 0xae, 0xd2, 0x84, - 0x49, 0xd9, 0xde, 0x9d, 0x55, 0xf3, 0x3c, 0xc2, 0xc1, 0xdb, 0x5e, 0x1e, 0xec, 0x20, 0x73, 0x44, - 0x46, 0xd8, 0xf2, 0xd7, 0x87, 0xef, 0xcd, 0x9b, 0x23, 0x1d, 0x9a, 0x41, 0x73, 0x94, 0x45, 0x69, - 0xd6, 0x01, 0x94, 0xb5, 0x26, 0x61, 0xdf, 0x9c, 0x6d, 0x93, 0x9f, 0xe5, 0xb8, 0xca, 0x91, 0x25, - 0x51, 0xaf, 0x03, 0x50, 0xce, 0x91, 0x6a, 0xb3, 0x36, 0xdb, 0x26, 0x3f, 0xca, 0xf1, 0xf6, 0x93, - 0xfc, 0x54, 0x77, 0x0b, 0xda, 0x29, 0x1e, 0xda, 0x2c, 0xdb, 0xf7, 0x87, 0xb7, 0x66, 0xd7, 0x40, - 0x76, 0x9e, 0xe3, 0x46, 0xaa, 0x4b, 0xf8, 0x11, 0x8a, 0x0d, 0x93, 0x1b, 0x37, 0x7c, 0x7f, 0xf6, - 0x23, 0xf9, 0xa1, 0x8f, 0xb7, 0x0f, 0xf2, 0xf3, 0xdf, 0xc7, 0xd0, 0xcb, 0x42, 0x94, 0xaa, 0xd9, - 0x07, 0xb3, 0x5b, 0x47, 0xf9, 0x3c, 0xc0, 0xb3, 0xc7, 0x56, 0xaa, 0xf1, 0x6d, 0xe8, 0x28, 0x8e, - 0xab, 0xa6, 0xeb, 0xb3, 0x0a, 0x56, 0x38, 0x95, 0x5c, 0x89, 0x46, 0x35, 0xbb, 0x06, 0x0d, 0x3b, - 0x8a, 0xfc, 0xe3, 0xe1, 0x87, 0xb3, 0xab, 0x6a, 0x03, 0xc1, 0x5c, 0x61, 0x51, 0x0f, 0x27, 0xa9, - 0x2f, 0xbd, 0x2c, 0xe1, 0xf7, 0x9b, 0xb3, 0x7a, 0x58, 0x7a, 0x50, 0xc0, 0x3b, 0x93, 0xd2, 0xcb, - 0x87, 0xf7, 0xc0, 0x88, 0xc2, 0x44, 0x5a, 0xee, 0xc4, 0x1f, 0xde, 0x9e, 0xdb, 0x7d, 0x55, 0x56, - 0x29, 0x6f, 0x45, 0xaa, 0x60, 0xde, 0x86, 0xee, 0x06, 0x3d, 0xc1, 0xf4, 0x12, 0x32, 0xe5, 0xd7, - 0xa0, 0x9e, 0x47, 0xe0, 0xf2, 0x3d, 0x82, 0x28, 0x9e, 0x89, 0xed, 0x60, 0x14, 0x72, 0x42, 0x9b, - 0xff, 0x50, 0x83, 0xe6, 0x6e, 0x98, 0xc6, 0x8e, 0x78, 0x71, 0xbe, 0xf4, 0x5b, 0x99, 0xca, 0x04, - 0x45, 0x2e, 0x99, 0xd2, 0x0e, 0x42, 0x97, 0x83, 0x7b, 0x35, 0x8a, 0x92, 0xe4, 0xc1, 0xbd, 0xd3, - 0xd0, 0x50, 0x87, 0x7a, 0x95, 0xb1, 0xab, 0x2a, 0xb4, 0x5c, 0xd2, 0xe4, 0xc0, 0x0d, 0x9f, 0x06, - 0xb8, 0x5c, 0x1a, 0x94, 0xf0, 0x0a, 0x19, 0x68, 0xdb, 0xa5, 0x47, 0x27, 0x19, 0x01, 0xad, 0xc7, - 0xa6, 0x3a, 0x30, 0x64, 0x40, 0x5a, 0x95, 0x59, 0xe0, 0xb0, 0xf5, 0x9c, 0xc0, 0xe1, 0x25, 0xa8, - 0x07, 0x59, 0xa6, 0x68, 0x8e, 0xa7, 0xe7, 0x7e, 0x04, 0x67, 0x37, 0x20, 0x4f, 0xf2, 0xd6, 0xfe, - 0xda, 0xf3, 0x93, 0xc0, 0xd7, 0xa1, 0x9d, 0x3f, 0xe0, 0xcd, 0x3d, 0xb5, 0xe2, 0x49, 0xef, 0x5e, - 0x56, 0xe2, 0x05, 0xd9, 0x82, 0x88, 0x63, 0x14, 0x87, 0xfb, 0x3a, 0x9a, 0xd4, 0x79, 0x95, 0x88, - 0xe3, 0x0e, 0xb6, 0xcb, 0xe2, 0xa8, 0x5e, 0x62, 0x39, 0x61, 0x90, 0x48, 0x9d, 0x85, 0xdf, 0xf2, - 0x92, 0x4d, 0xac, 0x9a, 0x11, 0x18, 0x38, 0x39, 0x14, 0x31, 0x63, 0x50, 0x9f, 0x38, 0x51, 0xaa, - 0xdd, 0x75, 0x2a, 0xeb, 0xf7, 0xb9, 0x4a, 0x78, 0xfa, 0x7d, 0x2e, 0xb1, 0xb6, 0xa6, 0xa2, 0x81, - 0x58, 0x66, 0x67, 0xa0, 0xe9, 0x04, 0x96, 0x13, 0x64, 0xe9, 0xbe, 0x0d, 0x27, 0xd8, 0x0c, 0xa4, - 0x06, 0x17, 0x2f, 0x29, 0x1a, 0x4e, 0xb0, 0xed, 0x1e, 0x99, 0x7f, 0x51, 0x81, 0xe5, 0x9d, 0x38, - 0x74, 0x44, 0x92, 0xdc, 0xc7, 0xfd, 0xdf, 0x26, 0x6f, 0x8e, 0x41, 0x9d, 0x02, 0x7a, 0xea, 0xb1, - 0x1c, 0x95, 0x51, 0x81, 0x54, 0x84, 0x27, 0x3f, 0xfa, 0xd4, 0x78, 0x9b, 0x20, 0x74, 0xf2, 0xc9, - 0xd1, 0xd4, 0xb0, 0x56, 0x42, 0x53, 0x28, 0xf0, 0x1a, 0xf4, 0x8b, 0xa7, 0x14, 0xd4, 0x83, 0x7e, - 0x25, 0x9b, 0x43, 0xa9, 0x97, 0xcb, 0xd0, 0x89, 0x85, 0x8d, 0x1e, 0x12, 0x75, 0xd3, 0x20, 0x1a, - 0x50, 0x20, 0xec, 0xc7, 0x3c, 0x80, 0xc1, 0x4e, 0x2c, 0x22, 0x3b, 0x16, 0x68, 0x74, 0x27, 0xc4, - 0xa9, 0xb3, 0xd0, 0xf4, 0x45, 0x30, 0x96, 0x07, 0x7a, 0xbc, 0xba, 0x96, 0xbf, 0x90, 0xae, 0x96, - 0x5e, 0x48, 0x23, 0xc7, 0x62, 0x61, 0xeb, 0x87, 0xd4, 0x54, 0x46, 0x05, 0x0f, 0x52, 0x5f, 0x07, - 0x19, 0x0d, 0xae, 0x2a, 0xe6, 0x9f, 0xd7, 0xa0, 0xa3, 0x39, 0x43, 0x5f, 0x51, 0xbc, 0xaf, 0xe4, - 0xbc, 0x1f, 0x40, 0x2d, 0x79, 0xec, 0x6b, 0x61, 0x60, 0x91, 0x7d, 0x08, 0x35, 0xdf, 0x9b, 0xe8, - 0xb3, 0xd3, 0x85, 0x29, 0x13, 0x3e, 0xcd, 0x5f, 0x7d, 0x04, 0x46, 0x6a, 0x76, 0x81, 0x4c, 0xec, - 0x91, 0x85, 0x9a, 0xa2, 0x79, 0x82, 0xe6, 0xf4, 0x08, 0xd5, 0x11, 0x99, 0x6a, 0x3b, 0x94, 0x8d, - 0x9b, 0xad, 0xb1, 0x1e, 0x6f, 0x6b, 0xc8, 0xb6, 0xcb, 0xbe, 0x09, 0x46, 0x12, 0xd8, 0x51, 0x72, - 0x10, 0x4a, 0x7d, 0x56, 0x62, 0x6b, 0xf2, 0x28, 0x58, 0xdb, 0x7c, 0xb8, 0x77, 0x14, 0xec, 0x6a, - 0x8c, 0xfe, 0x58, 0x4e, 0xc9, 0xbe, 0x03, 0xdd, 0x44, 0x24, 0x89, 0x7a, 0xd3, 0x32, 0x0a, 0xf5, - 0xda, 0x3b, 0x53, 0x3e, 0xe7, 0x10, 0x16, 0x67, 0xad, 0x1b, 0x77, 0x92, 0x02, 0xc4, 0xbe, 0x0f, - 0xfd, 0xac, 0xbd, 0x1f, 0x8e, 0xc7, 0x79, 0x34, 0xf4, 0xc2, 0x5c, 0x0f, 0xf7, 0x09, 0x5d, 0xea, - 0xa7, 0x97, 0x94, 0x11, 0xec, 0x7b, 0xd0, 0x8f, 0x94, 0x30, 0x2d, 0x1d, 0x19, 0x57, 0x6b, 0xf8, - 0xfc, 0x94, 0xc7, 0x31, 0x25, 0xec, 0x22, 0xe3, 0xbd, 0x80, 0x27, 0xe6, 0x7f, 0x57, 0xa0, 0x53, - 0x1a, 0x35, 0xbd, 0x5b, 0x4f, 0x44, 0x9c, 0x45, 0xc9, 0xb1, 0x8c, 0xb0, 0x83, 0x50, 0x3f, 0xf7, - 0x6c, 0x73, 0x2a, 0x23, 0x2c, 0x0e, 0xf5, 0xb5, 0x49, 0x9b, 0x53, 0x19, 0xed, 0x96, 0x3e, 0xb6, - 0xaa, 0xd7, 0x72, 0x24, 0x94, 0x3a, 0xef, 0x16, 0xc0, 0x6d, 0x0a, 0x4a, 0xa1, 0x3a, 0xed, 0xdb, - 0x49, 0x16, 0xb7, 0xcf, 0xeb, 0xe8, 0x1d, 0x3f, 0x11, 0x31, 0x8e, 0x45, 0x9b, 0xbc, 0xac, 0x8a, - 0xb2, 0x26, 0x53, 0xf2, 0x2c, 0x0c, 0xd4, 0xd5, 0x68, 0x97, 0x1b, 0x08, 0xf8, 0x41, 0x18, 0x50, - 0x33, 0x2d, 0x59, 0xe2, 0x67, 0x9b, 0x67, 0x55, 0x34, 0x18, 0x8f, 0x53, 0x81, 0x5e, 0x99, 0x4b, - 0xef, 0x22, 0xdb, 0xbc, 0x45, 0xf5, 0x6d, 0xd7, 0xfc, 0xf7, 0x0a, 0x2c, 0xcf, 0x31, 0x1b, 0x9d, - 0x20, 0x64, 0x74, 0xf6, 0x10, 0xa1, 0xcb, 0x9b, 0x58, 0xdd, 0x76, 0x09, 0x21, 0x27, 0xa4, 0x4c, - 0x55, 0x8d, 0x90, 0x13, 0xd4, 0xa4, 0x33, 0xd0, 0x94, 0x47, 0x34, 0x5b, 0xb5, 0x30, 0x1a, 0xf2, - 0x08, 0xa7, 0xb9, 0x01, 0x6d, 0x3f, 0x1c, 0x5b, 0xbe, 0x78, 0x22, 0x7c, 0xe2, 0x43, 0x7f, 0xfd, - 0xea, 0x09, 0x52, 0x5e, 0xbb, 0x1f, 0x8e, 0xef, 0x23, 0x2d, 0x37, 0x7c, 0x5d, 0x32, 0x3f, 0x05, - 0x23, 0x83, 0xb2, 0x36, 0x34, 0xb6, 0xc4, 0x7e, 0x3a, 0x1e, 0xbc, 0xc1, 0x0c, 0xa8, 0x63, 0x8b, - 0x41, 0x05, 0x4b, 0x5f, 0xd8, 0x71, 0x30, 0xa8, 0x22, 0xfa, 0x6e, 0x1c, 0x87, 0xf1, 0xa0, 0x86, - 0xc5, 0x1d, 0x3b, 0xf0, 0x9c, 0x41, 0x1d, 0x8b, 0xf7, 0x6c, 0x69, 0xfb, 0x83, 0x86, 0xf9, 0x97, - 0x0d, 0x30, 0x76, 0xf4, 0xd7, 0xd9, 0x16, 0xf4, 0xf2, 0x5f, 0x07, 0x2c, 0x8e, 0xe7, 0xec, 0xcc, - 0x16, 0x28, 0x9e, 0xd3, 0x8d, 0x4a, 0xb5, 0xd9, 0x1f, 0x10, 0x54, 0xe7, 0x7e, 0x40, 0x70, 0x11, - 0x6a, 0x8f, 0xe3, 0xe3, 0xe9, 0x9b, 0xad, 0x1d, 0xdf, 0x0e, 0x38, 0x82, 0xd9, 0x07, 0xd0, 0x41, - 0xb9, 0x5b, 0x09, 0xed, 0xc2, 0x3a, 0x16, 0x52, 0xfe, 0xcd, 0x03, 0xc1, 0x39, 0x20, 0x91, 0xde, - 0xa9, 0xd7, 0xc0, 0x70, 0x0e, 0x3c, 0xdf, 0x8d, 0x45, 0xa0, 0x03, 0xcc, 0x6c, 0x7e, 0xc8, 0x3c, - 0xa7, 0x61, 0xdf, 0xa5, 0xd4, 0xfc, 0x2c, 0x86, 0x53, 0xce, 0x0c, 0x3a, 0x33, 0x75, 0x4c, 0xce, - 0x28, 0xf8, 0x52, 0x89, 0x9c, 0x36, 0x9c, 0xe2, 0x5d, 0x57, 0xab, 0xfc, 0xae, 0x4b, 0x3d, 0x4a, - 0xf7, 0x43, 0xdb, 0xd5, 0xa1, 0x43, 0x3c, 0xac, 0x85, 0xb6, 0xcb, 0xae, 0xeb, 0x4d, 0x77, 0x2e, - 0x00, 0x92, 0xed, 0x4d, 0x7a, 0xf3, 0xbd, 0x0a, 0x7d, 0xdc, 0xcc, 0x2d, 0xe5, 0x03, 0xa0, 0x29, - 0x01, 0xfd, 0xae, 0x34, 0x4d, 0x0e, 0xb6, 0xd0, 0x0b, 0x40, 0x65, 0xbc, 0x06, 0xfd, 0x6c, 0x2e, - 0xfa, 0x61, 0x41, 0x47, 0xdf, 0x73, 0x68, 0xa8, 0x7a, 0x57, 0xb0, 0x06, 0xa7, 0x9c, 0x03, 0x3b, - 0x08, 0x84, 0x6f, 0xed, 0xa7, 0xa3, 0x51, 0xb6, 0x03, 0x74, 0xe9, 0x02, 0x70, 0x59, 0xa3, 0xee, - 0x10, 0x86, 0x36, 0x14, 0x13, 0x7a, 0x81, 0xe7, 0xab, 0xc7, 0x78, 0xb4, 0xdb, 0xf5, 0x88, 0xb2, - 0x13, 0x78, 0x3e, 0xc5, 0x7e, 0x71, 0xcf, 0xfb, 0x04, 0x06, 0x69, 0xea, 0xb9, 0x89, 0x25, 0xc3, - 0xec, 0x3d, 0x3f, 0x5d, 0xe3, 0x4e, 0x39, 0x97, 0x8f, 0x52, 0xcf, 0xdd, 0x0b, 0xf5, 0x8b, 0xfe, - 0x1e, 0xd1, 0x67, 0x55, 0xf3, 0x13, 0xe8, 0x96, 0x75, 0x07, 0x75, 0x91, 0x4e, 0x5d, 0x83, 0x37, - 0x18, 0x40, 0xf3, 0x61, 0x18, 0x4f, 0x6c, 0x7f, 0x50, 0xc1, 0xb2, 0x7a, 0xed, 0x38, 0xa8, 0xb2, - 0x2e, 0x18, 0xd9, 0x71, 0x60, 0x50, 0x33, 0x3f, 0x06, 0x23, 0xfb, 0x41, 0x01, 0xbd, 0x0c, 0x0f, - 0x5d, 0xa1, 0x9c, 0x21, 0x65, 0x99, 0x0c, 0x04, 0x90, 0x23, 0x94, 0xfd, 0x69, 0xa3, 0x5a, 0xfc, - 0x69, 0xc3, 0xfc, 0x0d, 0xe8, 0x96, 0x07, 0x97, 0x85, 0xeb, 0x2a, 0x45, 0xb8, 0x6e, 0x41, 0x2b, - 0xba, 0xf0, 0x8a, 0xc3, 0x89, 0x55, 0x72, 0x0c, 0x0c, 0x04, 0xe0, 0x67, 0xcc, 0xdf, 0xab, 0x40, - 0x83, 0x3c, 0x5c, 0xda, 0x5a, 0xb0, 0x50, 0xac, 0x9d, 0x06, 0x6f, 0x13, 0x84, 0x66, 0x5a, 0xbe, - 0x07, 0xae, 0x3e, 0xff, 0x1e, 0xb8, 0x36, 0x7d, 0x0f, 0xfc, 0x92, 0x89, 0x42, 0x37, 0x1e, 0x43, - 0x53, 0xfd, 0xdc, 0x84, 0x2d, 0x43, 0xef, 0x51, 0x70, 0x18, 0x84, 0x4f, 0x03, 0x05, 0x18, 0xbc, - 0xc1, 0x4e, 0xc1, 0x52, 0xc6, 0x74, 0xfd, 0x17, 0x95, 0x41, 0x85, 0x0d, 0xa0, 0x4b, 0x62, 0xcd, - 0x20, 0x55, 0x76, 0x11, 0x86, 0x7a, 0x73, 0xd8, 0x0a, 0x03, 0xf1, 0x30, 0x94, 0xde, 0xe8, 0x38, - 0xc3, 0xd6, 0xd8, 0x12, 0x74, 0x76, 0x65, 0x18, 0xed, 0x8a, 0xc0, 0xf5, 0x82, 0xf1, 0xa0, 0x7e, - 0xe3, 0x1e, 0x34, 0xd5, 0x3f, 0x57, 0x4a, 0x9f, 0x54, 0x80, 0xc1, 0x1b, 0x48, 0xfd, 0x85, 0xed, - 0x49, 0x2f, 0x18, 0x3f, 0x14, 0x47, 0x52, 0x19, 0xa5, 0xfb, 0x76, 0x22, 0x07, 0x55, 0xd6, 0x07, - 0xd0, 0xbd, 0xde, 0x0d, 0xdc, 0x41, 0xed, 0xce, 0xe6, 0x8f, 0x7f, 0x7a, 0xa9, 0xf2, 0x8f, 0x3f, - 0xbd, 0x54, 0xf9, 0x97, 0x9f, 0x5e, 0x7a, 0xe3, 0x4f, 0xfe, 0xf5, 0x52, 0xe5, 0x07, 0x1f, 0x94, - 0xfe, 0x28, 0x33, 0xb1, 0x65, 0xec, 0x1d, 0xa9, 0x2b, 0xc3, 0xac, 0x12, 0x88, 0x5b, 0xd1, 0xe1, - 0xf8, 0x56, 0xb4, 0x7f, 0x2b, 0xd3, 0xb9, 0xfd, 0x26, 0xfd, 0x28, 0xe6, 0xc3, 0xff, 0x0b, 0x00, - 0x00, 0xff, 0xff, 0x18, 0x47, 0x33, 0xc1, 0xa7, 0x46, 0x00, 0x00, + 0xaa, 0x5c, 0x1f, 0xbb, 0xdb, 0x27, 0x24, 0xb8, 0x72, 0x82, 0x1b, 0x42, 0x42, 0x7b, 0x00, 0x71, + 0x40, 0x20, 0x10, 0x07, 0x84, 0xb8, 0x2f, 0x17, 0xc4, 0x89, 0x23, 0x42, 0xcb, 0x89, 0xdf, 0x0d, + 0x10, 0x17, 0x24, 0x14, 0x91, 0x99, 0x55, 0xf5, 0x3e, 0x6e, 0x7f, 0x66, 0x06, 0xed, 0x4a, 0x7b, + 0xcb, 0x8c, 0x88, 0xcc, 0xca, 0x8c, 0x88, 0x8c, 0x8c, 0x8c, 0x8c, 0x2c, 0xe8, 0x47, 0x5e, 0x24, + 0x7c, 0x2f, 0x10, 0x6b, 0x51, 0x1c, 0xa6, 0x21, 0x33, 0x74, 0xfd, 0xfc, 0xcd, 0xb1, 0x97, 0x1e, + 0x64, 0xfb, 0x6b, 0x4e, 0x38, 0xb9, 0x35, 0x0e, 0xc7, 0xe1, 0x2d, 0x22, 0xd8, 0xcf, 0x46, 0x54, + 0xa3, 0x0a, 0x95, 0x64, 0xc3, 0xf3, 0x10, 0xf9, 0x76, 0xa0, 0xca, 0x4b, 0xa9, 0x37, 0x11, 0x49, + 0x6a, 0x4f, 0x22, 0x8d, 0xf4, 0x43, 0xe7, 0x50, 0x95, 0xdb, 0xe9, 0x91, 0xa2, 0x33, 0x7f, 0xaf, + 0x0a, 0xad, 0x07, 0x22, 0x49, 0xec, 0xb1, 0x60, 0x26, 0xd4, 0x12, 0xcf, 0x1d, 0x56, 0x56, 0x2a, + 0xab, 0xfd, 0xf5, 0xc1, 0x5a, 0x3e, 0xac, 0xdd, 0xd4, 0x4e, 0xb3, 0x84, 0x23, 0x12, 0x69, 0x9c, + 0x89, 0x3b, 0xac, 0xce, 0xd2, 0x3c, 0x10, 0xe9, 0x41, 0xe8, 0x72, 0x44, 0xb2, 0x01, 0xd4, 0x44, + 0x1c, 0x0f, 0x6b, 0x2b, 0x95, 0xd5, 0x2e, 0xc7, 0x22, 0x63, 0x50, 0x77, 0xed, 0xd4, 0x1e, 0xd6, + 0x09, 0x44, 0x65, 0x76, 0x15, 0xfa, 0x51, 0x1c, 0x3a, 0x96, 0x17, 0x8c, 0x42, 0x8b, 0xb0, 0x0d, + 0xc2, 0x76, 0x11, 0xba, 0x1d, 0x8c, 0xc2, 0x2d, 0xa4, 0x1a, 0x42, 0xcb, 0x0e, 0x6c, 0xff, 0x38, + 0x11, 0xc3, 0x26, 0xa1, 0x75, 0x95, 0xf5, 0xa1, 0xea, 0xb9, 0xc3, 0xd6, 0x4a, 0x65, 0xb5, 0xce, + 0xab, 0x9e, 0x8b, 0xdf, 0xc8, 0x32, 0xcf, 0x1d, 0x1a, 0xf2, 0x1b, 0x58, 0x66, 0x26, 0x74, 0x03, + 0x21, 0xdc, 0x87, 0x61, 0xca, 0x45, 0xe4, 0x1f, 0x0f, 0xdb, 0x2b, 0x95, 0x55, 0x83, 0x4f, 0xc1, + 0xd8, 0x79, 0x30, 0x5c, 0xb1, 0x9f, 0x8d, 0x1f, 0x24, 0xe3, 0x21, 0xac, 0x54, 0x56, 0xdb, 0x3c, + 0xaf, 0x9b, 0x8f, 0xa0, 0xbd, 0x19, 0x06, 0x81, 0x70, 0xd2, 0x30, 0x66, 0x97, 0xa1, 0xa3, 0xa7, + 0x6b, 0x29, 0x36, 0x35, 0x38, 0x68, 0xd0, 0xb6, 0xcb, 0xde, 0x81, 0x25, 0x47, 0x53, 0x5b, 0x5e, + 0xe0, 0x8a, 0x23, 0xe2, 0x53, 0x83, 0xf7, 0x73, 0xf0, 0x36, 0x42, 0xcd, 0x7f, 0xaf, 0x42, 0x6b, + 0xf7, 0x20, 0x1b, 0x8d, 0x7c, 0xc1, 0xae, 0x42, 0x4f, 0x15, 0x37, 0x43, 0x7f, 0xdb, 0x3d, 0x52, + 0xfd, 0x4e, 0x03, 0xd9, 0x0a, 0x74, 0x14, 0x60, 0xef, 0x38, 0x12, 0xaa, 0xdb, 0x32, 0x68, 0xba, + 0x9f, 0x07, 0x5e, 0x40, 0xec, 0xaf, 0xf1, 0x69, 0xe0, 0x0c, 0x95, 0x7d, 0x44, 0x12, 0x99, 0xa6, + 0xb2, 0xe9, 0x6b, 0x1b, 0xbe, 0xf7, 0x44, 0x70, 0x31, 0xde, 0x0c, 0x52, 0x92, 0x4b, 0x83, 0x97, + 0x41, 0x6c, 0x1d, 0xce, 0x24, 0xb2, 0x89, 0x15, 0xdb, 0xc1, 0x58, 0x24, 0x56, 0xe6, 0x05, 0xe9, + 0x2f, 0x7c, 0x73, 0xd8, 0x5c, 0xa9, 0xad, 0xd6, 0xf9, 0x29, 0x85, 0xe4, 0x84, 0x7b, 0x44, 0x28, + 0xf6, 0x3e, 0x9c, 0x9e, 0x69, 0x23, 0x9b, 0xb4, 0x56, 0x6a, 0xab, 0x35, 0xce, 0xa6, 0x9a, 0x6c, + 0x53, 0x8b, 0xbb, 0xb0, 0x1c, 0x67, 0x01, 0x6a, 0xf2, 0x3d, 0xcf, 0x4f, 0x45, 0xbc, 0x1b, 0x09, + 0x87, 0xe4, 0xdb, 0x59, 0x3f, 0xb7, 0x46, 0xca, 0xce, 0x67, 0xd1, 0x7c, 0xbe, 0x85, 0xf9, 0x3f, + 0x55, 0x30, 0xb6, 0xbc, 0x24, 0xb2, 0x53, 0xe7, 0x80, 0x9d, 0x83, 0xd6, 0x28, 0x0b, 0x9c, 0x42, + 0x82, 0x4d, 0xac, 0x6e, 0xbb, 0xec, 0x97, 0x61, 0xc9, 0x0f, 0x1d, 0xdb, 0xb7, 0x72, 0x61, 0x0d, + 0xab, 0x2b, 0xb5, 0xd5, 0xce, 0xfa, 0xa9, 0x42, 0xcb, 0x73, 0x65, 0xe0, 0x7d, 0xa2, 0x2d, 0x94, + 0xe3, 0xdb, 0x30, 0x88, 0xc5, 0x24, 0x4c, 0x45, 0xa9, 0x79, 0x8d, 0x9a, 0xb3, 0xa2, 0xf9, 0x17, + 0xb1, 0x1d, 0x3d, 0x0c, 0x5d, 0xc1, 0x97, 0x24, 0x6d, 0xd1, 0xfc, 0x83, 0x12, 0x3f, 0xc5, 0xd8, + 0xf2, 0xdc, 0x23, 0x8b, 0x3e, 0x30, 0xac, 0xaf, 0xd4, 0x56, 0x1b, 0x05, 0x73, 0xc4, 0x78, 0xdb, + 0x3d, 0xba, 0x8f, 0x18, 0xf6, 0x21, 0x9c, 0x9d, 0x6d, 0x22, 0x7b, 0x1d, 0x36, 0xa8, 0xcd, 0xa9, + 0xa9, 0x36, 0x9c, 0x50, 0xec, 0x0a, 0x74, 0x75, 0xa3, 0x14, 0x15, 0xa9, 0x29, 0x45, 0x9b, 0x94, + 0x14, 0xe9, 0x1c, 0xb4, 0xbc, 0xc4, 0x4a, 0xbc, 0xe0, 0x90, 0x16, 0x97, 0xc1, 0x9b, 0x5e, 0xb2, + 0xeb, 0x05, 0x87, 0xec, 0x4d, 0x30, 0x62, 0xe1, 0x48, 0x8c, 0x41, 0x98, 0x56, 0x2c, 0x1c, 0x42, + 0x9d, 0x03, 0x2c, 0x5a, 0x4e, 0x2a, 0xd4, 0x12, 0x6b, 0xc6, 0xc2, 0xd9, 0x4c, 0x85, 0x99, 0x40, + 0xe3, 0x81, 0x88, 0xc7, 0x02, 0x57, 0x19, 0x36, 0xdc, 0x75, 0xec, 0x80, 0xf8, 0x6e, 0xf0, 0xbc, + 0x8e, 0x6b, 0x3c, 0xb2, 0xe3, 0xd4, 0xb3, 0x7d, 0x52, 0x6c, 0x83, 0xeb, 0x2a, 0xbb, 0x00, 0xed, + 0x24, 0xb5, 0xe3, 0x14, 0x67, 0x47, 0x0a, 0xdd, 0xe0, 0x06, 0x01, 0x70, 0x4d, 0x9c, 0x83, 0x96, + 0x08, 0x5c, 0x42, 0xd5, 0xa5, 0x24, 0x45, 0xe0, 0x6e, 0xbb, 0x47, 0xe6, 0x5f, 0x54, 0xa0, 0xf7, + 0x20, 0xf3, 0x53, 0x6f, 0x23, 0x1e, 0x67, 0x62, 0x12, 0xa4, 0x68, 0x1b, 0xb6, 0xbc, 0x24, 0x55, + 0x5f, 0xa6, 0x32, 0x5b, 0x85, 0xf6, 0xf7, 0xe2, 0x30, 0x8b, 0xee, 0x1e, 0x45, 0x5a, 0xd2, 0x20, + 0x95, 0x0a, 0x21, 0xbc, 0x40, 0xb2, 0xf7, 0xa0, 0xf3, 0x79, 0xec, 0x8a, 0xf8, 0xce, 0x31, 0xd1, + 0xd6, 0xe6, 0x68, 0xcb, 0x68, 0x76, 0x11, 0xda, 0xbb, 0x22, 0xb2, 0x63, 0x1b, 0x55, 0xa0, 0x4e, + 0x06, 0xa5, 0x00, 0xe0, 0x5c, 0x89, 0x78, 0xdb, 0x55, 0xcb, 0x4a, 0x57, 0xcd, 0x31, 0xb4, 0x37, + 0xc6, 0xe3, 0x58, 0x8c, 0xed, 0x94, 0x8c, 0x5b, 0x18, 0xd1, 0x70, 0x6b, 0xbc, 0x1a, 0x46, 0x64, + 0x40, 0x71, 0x02, 0x92, 0x3f, 0x54, 0x66, 0x97, 0xa0, 0x2e, 0x16, 0x8f, 0x87, 0xe0, 0xec, 0x2c, + 0x34, 0x9d, 0x30, 0x18, 0x79, 0x63, 0x65, 0x76, 0x55, 0xcd, 0xfc, 0xed, 0x1a, 0x34, 0x68, 0x72, + 0xc8, 0x5e, 0x34, 0x85, 0x96, 0x78, 0x62, 0xfb, 0x5a, 0x2a, 0x08, 0xb8, 0xfb, 0xc4, 0xf6, 0xd9, + 0x0a, 0x34, 0xb0, 0x9b, 0x64, 0x01, 0x6f, 0x24, 0x82, 0x5d, 0x87, 0x06, 0x2a, 0x51, 0x32, 0x3d, + 0x02, 0x54, 0xa2, 0x3b, 0xf5, 0x1f, 0xff, 0xe3, 0xe5, 0x37, 0xb8, 0x44, 0xb3, 0x77, 0xa0, 0x6e, + 0x8f, 0xc7, 0x09, 0xe9, 0xf2, 0xd4, 0x72, 0xca, 0xe7, 0xcb, 0x89, 0x80, 0xdd, 0x86, 0xb6, 0x94, + 0x1b, 0x52, 0x37, 0x88, 0xfa, 0x5c, 0x69, 0x8b, 0x29, 0x8b, 0x94, 0x17, 0x94, 0xc8, 0x71, 0x2f, + 0x51, 0x16, 0x8c, 0x34, 0xda, 0xe0, 0x05, 0x00, 0xf7, 0x80, 0x28, 0x16, 0x1b, 0xbe, 0x1f, 0x3a, + 0xbb, 0xde, 0x33, 0xa1, 0x76, 0x8c, 0x29, 0x18, 0xbb, 0x0e, 0xfd, 0x1d, 0xa9, 0x72, 0x5c, 0x24, + 0x99, 0x9f, 0x26, 0x6a, 0x17, 0x99, 0x81, 0xb2, 0x35, 0x60, 0x53, 0x90, 0x3d, 0x9a, 0x7e, 0x7b, + 0xa5, 0xb6, 0xda, 0xe3, 0x0b, 0x30, 0xec, 0x6d, 0xe8, 0x8d, 0x91, 0xd3, 0x5e, 0x30, 0xb6, 0x46, + 0xbe, 0x8d, 0x1b, 0x4c, 0x0d, 0x37, 0x20, 0x0d, 0xbc, 0xe7, 0xdb, 0x63, 0xf3, 0x3f, 0xab, 0xd0, + 0xdc, 0x0e, 0x12, 0x11, 0xa7, 0xb8, 0x4a, 0xec, 0xd1, 0x48, 0x38, 0xa9, 0x90, 0xd6, 0xa9, 0xce, + 0xf3, 0x3a, 0xce, 0x72, 0x2f, 0xfc, 0x22, 0xf6, 0x52, 0xb1, 0xfb, 0xa1, 0xd2, 0x83, 0x02, 0xc0, + 0x6e, 0xc0, 0xb2, 0xed, 0xba, 0x96, 0xa6, 0xb6, 0xe2, 0xf0, 0x69, 0x42, 0x2b, 0xc6, 0xe0, 0x4b, + 0xb6, 0xeb, 0x6e, 0x28, 0x38, 0x0f, 0x9f, 0x26, 0xec, 0x0a, 0xd4, 0x62, 0x31, 0x22, 0xad, 0xe8, + 0xac, 0x2f, 0x49, 0xa9, 0x7d, 0xbe, 0xff, 0x43, 0xe1, 0xa4, 0x5c, 0x8c, 0x38, 0xe2, 0xd8, 0x69, + 0x68, 0xd8, 0x69, 0x1a, 0x4b, 0x29, 0xb4, 0xb9, 0xac, 0xb0, 0x35, 0x38, 0x45, 0x2b, 0x33, 0xf5, + 0xc2, 0xc0, 0x4a, 0xed, 0x7d, 0x1f, 0x37, 0xc2, 0x44, 0xd9, 0xfc, 0xe5, 0x1c, 0xb5, 0x87, 0x98, + 0x6d, 0x37, 0xc1, 0x5d, 0x62, 0x96, 0x3e, 0xb0, 0x27, 0x22, 0x21, 0x93, 0xdf, 0xe6, 0xa7, 0xa6, + 0x5b, 0x3c, 0x44, 0x14, 0xb2, 0xac, 0x68, 0x83, 0x6b, 0xdb, 0xa0, 0x65, 0xd2, 0xcd, 0x81, 0xb8, + 0xf4, 0xcf, 0x40, 0xd3, 0x4b, 0x2c, 0x11, 0xb8, 0xca, 0xdc, 0x34, 0xbc, 0xe4, 0x6e, 0xe0, 0xb2, + 0x77, 0xa1, 0x2d, 0xbf, 0xe2, 0x8a, 0x11, 0xed, 0xe5, 0x9d, 0xf5, 0xbe, 0x52, 0x4a, 0x04, 0x6f, + 0x89, 0x11, 0x37, 0x52, 0x55, 0x32, 0xff, 0xa6, 0x0a, 0x1d, 0xd2, 0xa1, 0x47, 0x91, 0x8b, 0x4b, + 0xee, 0x6d, 0xe8, 0x4d, 0x73, 0x4f, 0x0a, 0xa0, 0x6b, 0x97, 0x59, 0x77, 0x16, 0x9a, 0x1b, 0x0e, + 0x8e, 0x82, 0x24, 0xd0, 0xe3, 0xaa, 0x86, 0xcb, 0x7a, 0xfb, 0x4e, 0xe6, 0x1c, 0x8a, 0x94, 0x98, + 0xde, 0xe3, 0xba, 0x8a, 0x98, 0x87, 0x0a, 0x53, 0x97, 0x18, 0x55, 0x65, 0x77, 0x01, 0x76, 0xc5, + 0x78, 0x22, 0x82, 0xf4, 0x81, 0x1d, 0x29, 0x75, 0xbf, 0x36, 0xa3, 0xee, 0x72, 0x6c, 0x6b, 0x05, + 0xdd, 0xdd, 0x20, 0x8d, 0x8f, 0x79, 0xa9, 0x21, 0xfb, 0x16, 0x2c, 0x65, 0x44, 0x65, 0x39, 0xe9, + 0x91, 0xe5, 0xa3, 0x95, 0x68, 0x52, 0x5f, 0x4a, 0xb2, 0xb2, 0x8b, 0xcd, 0xf4, 0x88, 0xf7, 0x32, + 0x5d, 0xbc, 0xef, 0x25, 0xe9, 0xf9, 0x6f, 0xc3, 0xd2, 0x4c, 0xbf, 0xe8, 0xb9, 0x1d, 0x8a, 0x63, + 0x9a, 0x79, 0x9b, 0x63, 0x11, 0x15, 0xe1, 0x89, 0xed, 0x67, 0xda, 0xe5, 0x90, 0x95, 0x5f, 0xaa, + 0x7e, 0x54, 0x31, 0xdf, 0x82, 0xc6, 0x46, 0x1c, 0xdb, 0x44, 0x62, 0x63, 0x61, 0x58, 0xa1, 0x7d, + 0x47, 0x56, 0x4c, 0x07, 0x6a, 0x38, 0xba, 0x6b, 0x50, 0x9d, 0x44, 0x84, 0xe9, 0xac, 0x9f, 0x29, + 0x4d, 0xce, 0x8e, 0xd6, 0x1e, 0xa8, 0xc9, 0x54, 0x27, 0xd1, 0xf9, 0xdb, 0xd0, 0x7a, 0xf0, 0x1a, + 0x63, 0xf8, 0xaf, 0x3a, 0x18, 0x5b, 0xc2, 0x17, 0x24, 0x03, 0x13, 0xba, 0x65, 0x35, 0xd7, 0xf2, + 0x9b, 0x52, 0x7d, 0x13, 0xba, 0x72, 0x27, 0xa4, 0x56, 0x42, 0xad, 0xa3, 0x29, 0xd8, 0x6b, 0xc9, + 0xf2, 0x22, 0x40, 0x1c, 0x3e, 0xb5, 0x3c, 0xb9, 0x1d, 0x49, 0xcb, 0x6e, 0xc4, 0xe1, 0xd3, 0x6d, + 0xdc, 0x90, 0xfe, 0x5f, 0xd6, 0xcd, 0xb7, 0x60, 0x58, 0x5a, 0x37, 0xe8, 0x66, 0x5a, 0x5e, 0x60, + 0xed, 0xa3, 0xcf, 0xa3, 0x96, 0x50, 0xd1, 0x27, 0x79, 0xa1, 0xdb, 0xc1, 0x1d, 0x72, 0x88, 0x94, + 0x35, 0x68, 0x9f, 0x60, 0x0d, 0x16, 0x1a, 0x17, 0x58, 0x6c, 0x5c, 0xee, 0x4c, 0x69, 0x75, 0x87, + 0x04, 0x6f, 0x16, 0x82, 0xd7, 0xd2, 0x3a, 0x51, 0xa5, 0xaf, 0x40, 0xd7, 0xb1, 0x03, 0x2b, 0x8d, + 0xb3, 0xc0, 0xb1, 0x53, 0x31, 0xec, 0xd2, 0xa7, 0x3a, 0x8e, 0x1d, 0xec, 0x29, 0x50, 0xc9, 0x02, + 0xf4, 0xca, 0x16, 0xe0, 0x3a, 0x2c, 0x45, 0xb1, 0x37, 0xb1, 0xe3, 0x63, 0xeb, 0x50, 0x1c, 0x93, + 0x30, 0xfa, 0xd2, 0x9f, 0x56, 0xe0, 0xcf, 0xc4, 0xf1, 0xb6, 0x7b, 0xf4, 0x65, 0x75, 0xff, 0x1f, + 0xaa, 0xd0, 0xde, 0x89, 0x85, 0xb2, 0xda, 0x97, 0xa1, 0x93, 0x38, 0x07, 0x62, 0x62, 0x93, 0x94, + 0x54, 0x0f, 0x20, 0x41, 0x28, 0x9c, 0x69, 0xbb, 0x54, 0x3d, 0xd9, 0x2e, 0xe1, 0x38, 0xa4, 0xb7, + 0x83, 0x8b, 0x09, 0x8b, 0x85, 0x31, 0xae, 0x97, 0x8d, 0xf1, 0x0a, 0x74, 0x0f, 0xec, 0xc4, 0xb2, + 0xb3, 0x34, 0xb4, 0x9c, 0xd0, 0x27, 0xa5, 0x33, 0x38, 0x1c, 0xd8, 0xc9, 0x46, 0x96, 0x86, 0x9b, + 0x21, 0x79, 0x4f, 0x5e, 0x62, 0xc9, 0x45, 0xaf, 0xf6, 0x45, 0xc3, 0x4b, 0x94, 0xb9, 0x5b, 0x83, + 0x53, 0x22, 0x49, 0xbd, 0x89, 0xad, 0x04, 0x6a, 0x39, 0x61, 0x16, 0xa4, 0xb4, 0x3b, 0xd6, 0xf8, + 0x72, 0x8e, 0xe2, 0xe1, 0xd3, 0x4d, 0x44, 0xb0, 0xf7, 0xa1, 0xef, 0x84, 0x93, 0xc8, 0x8a, 0x90, + 0xaf, 0xe4, 0x77, 0x48, 0x47, 0xbc, 0xec, 0x17, 0x74, 0x91, 0x62, 0xe7, 0x50, 0x48, 0x47, 0x68, + 0x1d, 0x96, 0x1c, 0x3f, 0x4b, 0x52, 0x11, 0x5b, 0xfb, 0xaa, 0x49, 0x7b, 0xae, 0x49, 0x4f, 0x91, + 0x48, 0xe7, 0x09, 0x19, 0xdb, 0xda, 0x09, 0x93, 0x74, 0x6b, 0xe2, 0x6b, 0xc5, 0xac, 0xbc, 0xaa, + 0x62, 0x56, 0x17, 0x2b, 0xe6, 0x02, 0xd5, 0xa8, 0x2d, 0x50, 0x0d, 0xb6, 0x0a, 0x83, 0x32, 0x1d, + 0x89, 0x54, 0xba, 0x71, 0xfd, 0x82, 0x90, 0xc4, 0x2a, 0xf9, 0xeb, 0x4a, 0x4b, 0xd2, 0xd0, 0xfc, + 0x55, 0x56, 0x44, 0x22, 0x3d, 0xd2, 0x90, 0x82, 0xf9, 0x4a, 0x63, 0x7e, 0x11, 0xde, 0xcc, 0x5b, + 0x5a, 0x4f, 0xbd, 0xf4, 0x20, 0xcc, 0x52, 0x6b, 0x44, 0x27, 0x96, 0x44, 0x79, 0xdd, 0x67, 0x75, + 0x4f, 0x5f, 0x48, 0xb4, 0x3c, 0xcf, 0x90, 0x8f, 0x34, 0xca, 0x7c, 0xdf, 0x4a, 0xc5, 0x51, 0xaa, + 0x44, 0x30, 0x94, 0xbc, 0x51, 0x7c, 0xbb, 0x97, 0xf9, 0xfe, 0x9e, 0x38, 0x4a, 0xd1, 0xe2, 0x1b, + 0x23, 0x55, 0x31, 0xff, 0xb2, 0x06, 0x70, 0x3f, 0x74, 0x0e, 0xf7, 0xec, 0x78, 0x2c, 0x52, 0xf4, + 0xe5, 0xb5, 0x1d, 0x52, 0x76, 0xb2, 0x95, 0x4a, 0xeb, 0xc3, 0xd6, 0xe1, 0xac, 0x9e, 0xbf, 0x13, + 0xfa, 0x74, 0xae, 0x90, 0x86, 0x44, 0x2d, 0x03, 0xa6, 0xb0, 0xf2, 0x64, 0x4a, 0x56, 0x84, 0x7d, + 0x54, 0xf0, 0x16, 0xdb, 0xa4, 0xc7, 0x11, 0xf1, 0x76, 0x91, 0x4f, 0xd8, 0x2b, 0x9a, 0xef, 0x1d, + 0x47, 0xec, 0x7d, 0x38, 0x13, 0x8b, 0x51, 0x2c, 0x92, 0x03, 0x2b, 0x4d, 0xca, 0x1f, 0x93, 0x2e, + 0xfd, 0xb2, 0x42, 0xee, 0x25, 0xf9, 0xb7, 0xde, 0x87, 0x33, 0x92, 0x53, 0xb3, 0xc3, 0x93, 0x56, + 0x77, 0x59, 0x22, 0xcb, 0xa3, 0x7b, 0x0b, 0x28, 0xf8, 0x21, 0x2d, 0xa9, 0x76, 0x10, 0x7d, 0x62, + 0xc6, 0xbe, 0x2f, 0xd0, 0xb1, 0xda, 0x3c, 0xc0, 0x53, 0xe7, 0x96, 0x18, 0x29, 0xe6, 0x17, 0x00, + 0x66, 0x42, 0xfd, 0x41, 0xe8, 0x0a, 0x62, 0x75, 0x7f, 0xbd, 0xbf, 0x46, 0x61, 0x14, 0xe4, 0x24, + 0x42, 0x39, 0xe1, 0xd8, 0x3b, 0x40, 0xdd, 0x49, 0xf5, 0x9b, 0xd7, 0x71, 0x03, 0x91, 0xa4, 0x83, + 0xef, 0xc3, 0x99, 0x62, 0x24, 0x96, 0x9d, 0x5a, 0xe9, 0x81, 0x20, 0x23, 0x26, 0x8d, 0xe9, 0x72, + 0x3e, 0xa8, 0x8d, 0x74, 0xef, 0x40, 0xdc, 0x0d, 0x5c, 0xf3, 0x23, 0x68, 0xe2, 0xc7, 0x3e, 0x8f, + 0xd8, 0x1a, 0xb4, 0x52, 0x12, 0x5e, 0xa2, 0xb6, 0xd3, 0xd3, 0x85, 0x55, 0x2d, 0x24, 0xcb, 0x35, + 0x91, 0xc9, 0x61, 0x29, 0x37, 0x51, 0x8f, 0x02, 0xef, 0x71, 0x26, 0xd8, 0x27, 0xb0, 0x1c, 0xc5, + 0x42, 0x29, 0xa5, 0x95, 0x1d, 0xa2, 0xc7, 0xa0, 0xd6, 0xd7, 0x69, 0xa5, 0x43, 0x79, 0x8b, 0x43, + 0xd4, 0x9f, 0x7e, 0x34, 0x55, 0x37, 0x7f, 0x00, 0xe7, 0x72, 0x8a, 0x5d, 0xe1, 0x84, 0x81, 0x6b, + 0xc7, 0xc7, 0xb4, 0x9b, 0xcc, 0xf4, 0x9d, 0xbc, 0x4a, 0xdf, 0xbb, 0xd4, 0xf7, 0x8f, 0x6a, 0xd0, + 0xff, 0x3c, 0xd8, 0xca, 0x22, 0xdf, 0x43, 0x0b, 0xff, 0x99, 0x34, 0xc0, 0xd2, 0xf0, 0x55, 0xca, + 0x86, 0x6f, 0x15, 0x06, 0xea, 0x2b, 0xa8, 0x00, 0xd2, 0x6c, 0xa9, 0x38, 0x8b, 0x84, 0x6f, 0x86, + 0xbe, 0xb4, 0x59, 0xdf, 0x86, 0x33, 0x19, 0xcd, 0x5c, 0x52, 0x1e, 0x08, 0xe7, 0xd0, 0x7a, 0xce, + 0x91, 0x89, 0x49, 0x42, 0x6c, 0x8a, 0x64, 0x64, 0xc0, 0x2e, 0x43, 0xa7, 0x68, 0xae, 0xad, 0x2f, + 0xe4, 0x84, 0x34, 0x92, 0x30, 0xb0, 0x5c, 0x3d, 0x64, 0xb5, 0xf7, 0xa3, 0xdd, 0xee, 0x87, 0xc5, + 0x4c, 0xd0, 0xa8, 0xfc, 0x1a, 0x2c, 0x4f, 0x51, 0xd2, 0x28, 0xa4, 0x9b, 0x76, 0xb3, 0x10, 0xe3, + 0xf4, 0xf4, 0xcb, 0x55, 0x1c, 0x8f, 0xdc, 0x27, 0x97, 0xc2, 0x69, 0xa8, 0x36, 0x34, 0xe3, 0x20, + 0x8c, 0x85, 0x52, 0x5f, 0x34, 0x34, 0x54, 0x3f, 0xff, 0x10, 0x4e, 0x2f, 0xea, 0x65, 0xc1, 0x66, + 0xb7, 0x52, 0xde, 0xec, 0x66, 0x8e, 0x7b, 0xc5, 0xc6, 0xf7, 0x47, 0x15, 0xe8, 0xdc, 0xcb, 0x9e, + 0x3d, 0x3b, 0x96, 0xe6, 0x88, 0x75, 0xa1, 0xf2, 0x90, 0x7a, 0xa9, 0xf2, 0xca, 0x43, 0xf4, 0x8e, + 0x77, 0x0e, 0xd1, 0x34, 0x52, 0x27, 0x6d, 0xae, 0x6a, 0x78, 0x50, 0xdc, 0x39, 0xdc, 0x3b, 0xc1, + 0x28, 0x48, 0x34, 0x1e, 0x7f, 0xee, 0x64, 0x9e, 0x8f, 0x3e, 0x93, 0x5a, 0xff, 0x79, 0x1d, 0x8f, + 0x5e, 0xdb, 0x23, 0xa9, 0x2f, 0xf7, 0xe2, 0x70, 0x22, 0x35, 0x5a, 0x59, 0xdd, 0x05, 0x18, 0xf3, + 0x6f, 0x6b, 0x50, 0xff, 0x34, 0xf4, 0x02, 0x19, 0xb6, 0xf0, 0xa5, 0x63, 0x2c, 0x3d, 0xd4, 0x56, + 0x2c, 0x7c, 0xf4, 0x80, 0x11, 0x85, 0x8a, 0xe1, 0xcb, 0x93, 0x35, 0xa1, 0x9c, 0x50, 0xa2, 0x8a, + 0xc3, 0x75, 0x65, 0xe1, 0xe1, 0x3a, 0x3f, 0xfb, 0xd6, 0x5f, 0x74, 0xf6, 0x6d, 0xfb, 0x62, 0x84, + 0xaa, 0x1a, 0xb8, 0xca, 0xc7, 0x9f, 0x36, 0x0d, 0x62, 0x94, 0x6e, 0x86, 0x81, 0xcb, 0xbe, 0x01, + 0x10, 0x7b, 0xe3, 0x03, 0x45, 0xd9, 0x9c, 0x8f, 0x47, 0x10, 0x96, 0x48, 0x39, 0xbc, 0xa9, 0x82, + 0x5c, 0x6a, 0xcf, 0xb0, 0xf6, 0x91, 0x4b, 0x72, 0x1e, 0x2d, 0x7d, 0x6c, 0x5e, 0x1c, 0x1e, 0x3b, + 0x3b, 0x15, 0x1e, 0x23, 0xee, 0xd2, 0x7c, 0x2f, 0x02, 0x7a, 0x0e, 0x07, 0x56, 0x18, 0x58, 0x91, + 0x0e, 0xef, 0x18, 0x08, 0xf9, 0x3c, 0xd8, 0x39, 0x44, 0x0b, 0xea, 0x25, 0x96, 0x8a, 0x12, 0xa9, + 0x33, 0x57, 0xe9, 0x88, 0xbd, 0x02, 0xdd, 0x1f, 0x86, 0x5e, 0x60, 0x4d, 0xec, 0xc8, 0x4a, 0x6d, + 0x19, 0x46, 0x6d, 0x70, 0x40, 0xd8, 0x03, 0x3b, 0xda, 0xb3, 0xc7, 0xe4, 0x22, 0xa9, 0xb8, 0x13, + 0x2e, 0x92, 0x8e, 0x24, 0x50, 0x20, 0x14, 0xef, 0x05, 0x68, 0x53, 0x17, 0x14, 0x95, 0xea, 0x4a, + 0xd9, 0x23, 0x00, 0x39, 0x6a, 0xfe, 0x6b, 0x15, 0x8c, 0x8d, 0x20, 0xf5, 0x48, 0x9e, 0x67, 0xa1, + 0x19, 0xd3, 0x11, 0x5b, 0x49, 0x53, 0xd5, 0x72, 0x89, 0x55, 0x9f, 0x23, 0xb1, 0x29, 0x49, 0xd4, + 0x5e, 0x5a, 0x12, 0xf5, 0x93, 0x24, 0x31, 0xcd, 0xb5, 0xc6, 0x89, 0x5c, 0x9b, 0x0b, 0x4c, 0x7c, + 0x1d, 0x62, 0x9c, 0x95, 0x84, 0xf1, 0x22, 0x49, 0xb4, 0x67, 0x25, 0x61, 0xfe, 0x59, 0x0d, 0x8c, + 0xfb, 0x62, 0x94, 0xfe, 0x7c, 0xf1, 0xfc, 0xac, 0x2c, 0x1e, 0xf3, 0x3f, 0x6a, 0xd0, 0xe6, 0x38, + 0xc3, 0xaf, 0x51, 0x66, 0xb7, 0x00, 0x48, 0x16, 0x27, 0x0b, 0x8e, 0xe4, 0x25, 0x63, 0x5f, 0x1f, + 0x40, 0x47, 0xca, 0x44, 0xb6, 0x68, 0x3c, 0xa7, 0x85, 0x14, 0xdc, 0xde, 0xbc, 0xbc, 0x9b, 0x2f, + 0x2d, 0xef, 0xd6, 0x6b, 0xcb, 0xdb, 0xf8, 0x2a, 0xe4, 0xdd, 0x3e, 0x51, 0xde, 0xf0, 0x22, 0x79, + 0x77, 0x5e, 0x24, 0xef, 0xee, 0x9c, 0xbc, 0x7f, 0x54, 0x83, 0x1e, 0xc9, 0x7b, 0x57, 0x4c, 0xbe, + 0x9c, 0x51, 0x9c, 0x11, 0x52, 0xed, 0x55, 0x85, 0x54, 0x7f, 0x69, 0x21, 0x35, 0x5e, 0x5b, 0x48, + 0xcd, 0xaf, 0x42, 0x48, 0xad, 0x13, 0x85, 0x64, 0xbc, 0x48, 0x48, 0xed, 0x57, 0x5f, 0x94, 0xb9, + 0x90, 0xbe, 0xf4, 0xce, 0xf5, 0x73, 0x21, 0x7d, 0x45, 0x42, 0x82, 0x39, 0x21, 0xa1, 0x67, 0xf1, + 0xa5, 0x17, 0xd1, 0xd7, 0xe1, 0x59, 0x9c, 0xc8, 0xec, 0xc6, 0x57, 0xc1, 0xec, 0xe6, 0x89, 0xcc, + 0x6e, 0xbd, 0x88, 0xd9, 0xaf, 0xe1, 0x59, 0xfc, 0x79, 0x0d, 0x60, 0xd7, 0x0b, 0xc6, 0xbe, 0xf8, + 0xb9, 0x6f, 0xf1, 0x33, 0xe3, 0x5b, 0xfc, 0x75, 0x15, 0x8c, 0x07, 0x76, 0x7c, 0xf8, 0x53, 0xb7, + 0x42, 0xde, 0x86, 0x56, 0x18, 0x94, 0xd7, 0x43, 0x99, 0xae, 0x19, 0x06, 0x3f, 0x15, 0x2a, 0xff, + 0x2f, 0x0d, 0x68, 0x6f, 0x09, 0x37, 0x8b, 0xbe, 0x84, 0xc6, 0xff, 0xac, 0x98, 0x97, 0x17, 0x1c, + 0x77, 0x66, 0xb9, 0xd9, 0x7a, 0x11, 0x37, 0x8d, 0xb9, 0x43, 0xe2, 0x7d, 0x38, 0x35, 0x15, 0x45, + 0xb1, 0xe5, 0x55, 0x5c, 0x9b, 0x42, 0x73, 0x17, 0xe5, 0x78, 0x1f, 0x86, 0xee, 0x54, 0x20, 0x45, + 0x5e, 0xd0, 0xf1, 0xe5, 0x70, 0x16, 0xc4, 0xae, 0x42, 0xdf, 0x45, 0xd1, 0x50, 0x70, 0x88, 0xc2, + 0xbc, 0x32, 0xfd, 0xa7, 0x4b, 0xd0, 0xcd, 0xd0, 0xa7, 0xd8, 0xc5, 0x47, 0xb0, 0x54, 0x50, 0x49, + 0xcb, 0xd2, 0x79, 0x8e, 0x65, 0xe9, 0xe9, 0x86, 0x72, 0x0f, 0x9e, 0xf6, 0x98, 0xbb, 0xaf, 0xec, + 0x31, 0xf7, 0x5e, 0x62, 0x9f, 0xbf, 0x09, 0xa7, 0xf4, 0xe5, 0x9f, 0x0a, 0x86, 0x92, 0x04, 0xfb, + 0xa4, 0x41, 0x03, 0x75, 0xdf, 0x47, 0xa1, 0x50, 0x12, 0xd1, 0xc7, 0x70, 0xba, 0x44, 0x8e, 0x4b, + 0x53, 0xd2, 0x2f, 0xcd, 0xe9, 0xca, 0x72, 0xde, 0x16, 0xab, 0xca, 0xf2, 0x76, 0x5c, 0xe1, 0xeb, + 0x0f, 0x0d, 0x07, 0x24, 0x9e, 0xb6, 0x2b, 0x7c, 0xf9, 0x01, 0xf3, 0x37, 0x2a, 0xd0, 0xda, 0x89, + 0x43, 0x37, 0x73, 0xd2, 0xd7, 0xd4, 0xf4, 0x69, 0x0d, 0xaa, 0xbd, 0x48, 0x83, 0xea, 0xb3, 0x1a, + 0x64, 0xfe, 0x66, 0x05, 0xda, 0x6a, 0x08, 0xf7, 0xd7, 0xbf, 0xa6, 0x0d, 0xe6, 0xc5, 0xa3, 0x78, + 0x0a, 0x6d, 0x8a, 0x89, 0x9e, 0x68, 0x32, 0x4f, 0x5c, 0x81, 0xd5, 0xd7, 0x5a, 0x81, 0xe6, 0xef, + 0x54, 0xa0, 0x47, 0xe1, 0xe3, 0x7b, 0x59, 0x20, 0x75, 0x7c, 0x71, 0x04, 0x75, 0x05, 0xea, 0xb1, + 0x48, 0x75, 0x66, 0x47, 0x57, 0x7e, 0x66, 0x33, 0xf4, 0xb7, 0xc4, 0x88, 0x13, 0x06, 0x99, 0x60, + 0xc7, 0xe3, 0x64, 0x51, 0x6e, 0x09, 0xc2, 0x71, 0x56, 0x91, 0x1d, 0xdb, 0x93, 0x44, 0xe7, 0x96, + 0xc8, 0x1a, 0x63, 0x50, 0xa7, 0x95, 0xd4, 0xa0, 0x95, 0x44, 0x65, 0x73, 0x03, 0xce, 0xdc, 0x3d, + 0x4a, 0x45, 0x1c, 0xd8, 0xb4, 0xa2, 0xd6, 0x51, 0x5d, 0x28, 0x64, 0xac, 0x89, 0x2b, 0x05, 0x31, + 0x0e, 0xb8, 0x9c, 0x39, 0x27, 0x2b, 0xe6, 0x35, 0xe8, 0x8c, 0x3c, 0x5f, 0x58, 0xe1, 0x68, 0x94, + 0x88, 0x14, 0xbf, 0x2e, 0x4b, 0x34, 0xad, 0x1a, 0x57, 0x35, 0xf3, 0xf7, 0x6b, 0xd0, 0xd5, 0x9f, + 0xa2, 0xcc, 0xa2, 0xf7, 0xca, 0xd3, 0xef, 0xac, 0x0f, 0xf4, 0x3c, 0x90, 0x64, 0x23, 0x4d, 0x63, + 0xed, 0x12, 0x48, 0xb6, 0x5c, 0x80, 0x36, 0x7d, 0x25, 0xf1, 0x9e, 0x09, 0xe2, 0x4d, 0x8d, 0x1b, + 0x08, 0xa0, 0x14, 0x91, 0x0d, 0x58, 0x2e, 0x0d, 0xc1, 0x4a, 0xc3, 0xd4, 0xf6, 0x15, 0x7b, 0x4a, + 0xf7, 0xda, 0x25, 0x12, 0xbe, 0x84, 0x95, 0xcf, 0xa9, 0xbc, 0x87, 0xd4, 0xc8, 0xf6, 0x3c, 0x90, + 0x3c, 0xc7, 0x76, 0xc4, 0xe0, 0x02, 0x70, 0x62, 0x81, 0xeb, 0x33, 0x79, 0xec, 0x2b, 0x26, 0xb6, + 0x25, 0x64, 0xf7, 0xb1, 0x9f, 0x0f, 0x30, 0xf7, 0xb8, 0xdb, 0x72, 0x80, 0xa4, 0xb7, 0x37, 0xa1, + 0x13, 0xc6, 0xde, 0xd8, 0x0b, 0x64, 0xb4, 0xba, 0xb5, 0xe0, 0x23, 0x20, 0x09, 0x28, 0x76, 0x6d, + 0x42, 0x53, 0xea, 0xdd, 0x82, 0x7b, 0x3c, 0x85, 0x61, 0xd7, 0x61, 0x29, 0x49, 0x63, 0xcf, 0x49, + 0x71, 0x38, 0xd6, 0x24, 0x74, 0xb5, 0x8b, 0xd1, 0x93, 0xe0, 0xdd, 0xc7, 0x3e, 0xdd, 0x7f, 0x5c, + 0x87, 0x25, 0x27, 0xf4, 0xb3, 0x89, 0xdc, 0x8e, 0x2d, 0x5f, 0x04, 0xca, 0xd3, 0xe8, 0x49, 0x30, + 0x8e, 0xef, 0xbe, 0x08, 0x4c, 0x07, 0x60, 0x37, 0x8d, 0x85, 0x3d, 0x21, 0xe1, 0xbc, 0x03, 0xad, + 0x74, 0xdf, 0xa7, 0x3b, 0xd1, 0xca, 0xc2, 0x3b, 0xd1, 0x66, 0xba, 0x8f, 0xc3, 0x2e, 0x89, 0xbb, + 0x4a, 0xb7, 0x93, 0xaa, 0x86, 0xba, 0xe2, 0x7b, 0x13, 0x2f, 0x55, 0xa9, 0x8e, 0xb2, 0x62, 0x7e, + 0x08, 0x6d, 0xea, 0x81, 0xbe, 0x91, 0x7b, 0x83, 0x95, 0x13, 0xbd, 0x41, 0xf3, 0x3d, 0x68, 0xff, + 0xaa, 0xed, 0x67, 0xb2, 0xd1, 0x65, 0xe8, 0xd0, 0xbd, 0xb9, 0xb5, 0xef, 0x87, 0xce, 0xa1, 0xbe, + 0xcf, 0x25, 0xd0, 0x1d, 0x84, 0x98, 0x00, 0xc6, 0xa3, 0xc0, 0x0b, 0x83, 0x0d, 0xdf, 0x37, 0xff, + 0xaa, 0x0e, 0xed, 0xef, 0xdb, 0xc9, 0x01, 0xad, 0x42, 0xb6, 0x02, 0x9d, 0x87, 0x42, 0xb8, 0x08, + 0x78, 0x60, 0x47, 0x2a, 0xa7, 0xaa, 0x0c, 0x62, 0xe7, 0xc1, 0xf8, 0xbe, 0xf4, 0x3f, 0x3e, 0x53, + 0x37, 0x95, 0x79, 0x5d, 0xb7, 0xa6, 0x7b, 0x79, 0xa1, 0xd3, 0x77, 0xca, 0x20, 0x76, 0x03, 0x06, + 0x58, 0xa5, 0xcc, 0x25, 0x54, 0x0a, 0xe1, 0xcb, 0x15, 0x68, 0xf0, 0x39, 0x38, 0xbb, 0x01, 0x80, + 0x7b, 0x3d, 0xdd, 0xf8, 0x27, 0x0b, 0x7c, 0xa4, 0x12, 0x96, 0x5d, 0x02, 0xf8, 0x34, 0x37, 0x60, + 0x2a, 0x2b, 0xb0, 0x04, 0x61, 0x57, 0xa1, 0xa7, 0x6a, 0x5c, 0x8c, 0x36, 0xd5, 0x3d, 0x71, 0x83, + 0x4f, 0x03, 0xd9, 0x5d, 0x58, 0xe6, 0xaf, 0x9c, 0xaf, 0x39, 0x07, 0x42, 0xe3, 0x4c, 0xb7, 0xa3, + 0x6e, 0x16, 0x29, 0x7d, 0x6b, 0x79, 0x09, 0x79, 0x51, 0xcf, 0xf3, 0x00, 0xe0, 0xab, 0xf2, 0x00, + 0x3a, 0x2f, 0xe7, 0x01, 0x74, 0x5f, 0xce, 0x03, 0x98, 0xd9, 0x31, 0x7b, 0xb3, 0x3b, 0xe6, 0xef, + 0xd6, 0xa1, 0xab, 0x36, 0x37, 0x32, 0xfe, 0x53, 0xca, 0x51, 0x39, 0x59, 0x39, 0xaa, 0x2f, 0xa7, + 0x1c, 0xb5, 0x97, 0x52, 0x8e, 0xfa, 0x89, 0xca, 0xb1, 0x50, 0xac, 0x8d, 0x57, 0x16, 0xeb, 0x8b, + 0x74, 0xec, 0x12, 0xc0, 0x6e, 0xee, 0xeb, 0x69, 0xf7, 0xb0, 0x80, 0x4c, 0xa9, 0x85, 0xf1, 0x52, + 0x6a, 0xf1, 0x53, 0xea, 0x18, 0xce, 0xa8, 0x45, 0x77, 0x56, 0x2d, 0x76, 0x01, 0x68, 0x83, 0x94, + 0x3a, 0xb1, 0x90, 0xfb, 0x95, 0x57, 0xe5, 0xbe, 0xf9, 0xbf, 0x15, 0x80, 0x5d, 0x7b, 0x12, 0x49, + 0xe7, 0x80, 0x7d, 0x17, 0x3a, 0x09, 0xd5, 0xe4, 0x8d, 0x8b, 0xcc, 0xf9, 0xbf, 0x5c, 0xca, 0xf9, + 0xcf, 0x49, 0x55, 0x11, 0x87, 0xce, 0x21, 0xc9, 0xcb, 0xe4, 0xad, 0xcb, 0x1e, 0xf2, 0xac, 0x8b, + 0x86, 0x26, 0xa0, 0xcb, 0xee, 0x6b, 0xd0, 0x57, 0x04, 0x91, 0x88, 0x1d, 0x11, 0x48, 0x3b, 0x5d, + 0xe1, 0x3d, 0x09, 0xdd, 0x91, 0x40, 0xf6, 0x41, 0x4e, 0x26, 0x37, 0x8b, 0x45, 0xda, 0xa8, 0x9a, + 0x6c, 0x4a, 0x02, 0x73, 0x5d, 0x4f, 0x85, 0x06, 0x62, 0x40, 0x1d, 0xbf, 0x37, 0x78, 0x83, 0x75, + 0xa0, 0xa5, 0x7a, 0x1d, 0x54, 0x58, 0x0f, 0xda, 0x94, 0x7a, 0x4c, 0xb8, 0xaa, 0xf9, 0x87, 0xa7, + 0xa0, 0xb3, 0x1d, 0x24, 0x69, 0x9c, 0x49, 0x21, 0x17, 0x19, 0xb6, 0x0d, 0xca, 0xb0, 0x55, 0x69, + 0x37, 0x72, 0x1a, 0x94, 0x76, 0x73, 0x1d, 0xea, 0x76, 0x90, 0x7a, 0xca, 0x11, 0x2c, 0xa5, 0x71, + 0xeb, 0x80, 0x1e, 0x27, 0x3c, 0xbb, 0x09, 0x2d, 0x95, 0xf3, 0xad, 0x52, 0x2a, 0x17, 0x26, 0x8c, + 0x6b, 0x1a, 0xb6, 0x06, 0x86, 0xab, 0x92, 0xd1, 0xd5, 0x22, 0x2a, 0x75, 0xad, 0xd3, 0xd4, 0x79, + 0x4e, 0xc3, 0xae, 0x40, 0xcd, 0x1e, 0xcb, 0xf5, 0x42, 0x69, 0x30, 0x9a, 0x94, 0x52, 0x78, 0x39, + 0xe2, 0x98, 0x09, 0x75, 0x74, 0x3f, 0x69, 0xcd, 0xd0, 0x36, 0xaa, 0x69, 0xe4, 0x28, 0x11, 0xc7, + 0x6e, 0xa9, 0x53, 0x24, 0x11, 0x1a, 0xb3, 0xdf, 0xd5, 0x17, 0x3e, 0xf2, 0x34, 0xf9, 0xa9, 0x6a, + 0x90, 0x88, 0x89, 0x27, 0x1b, 0xb4, 0x67, 0x1b, 0xe8, 0xa0, 0x19, 0x37, 0x12, 0x1d, 0x3e, 0xbb, + 0x0d, 0x9d, 0x84, 0xa2, 0x3b, 0xb2, 0x09, 0xe8, 0xbb, 0xff, 0xbc, 0x49, 0x1e, 0xfa, 0xe1, 0x90, + 0x14, 0x61, 0xa0, 0x5b, 0xd0, 0x9e, 0xd8, 0xf1, 0xa1, 0x6c, 0xd4, 0x99, 0xfd, 0x8e, 0x0e, 0x3d, + 0x70, 0x63, 0xa2, 0x83, 0x10, 0xeb, 0x00, 0x72, 0xe1, 0x51, 0x8b, 0xee, 0x2c, 0xcb, 0xf3, 0xe3, + 0x36, 0x2e, 0x29, 0x7d, 0xf2, 0x7e, 0x17, 0x5a, 0x91, 0x3c, 0x17, 0x90, 0x15, 0xee, 0xac, 0x2f, + 0x17, 0x0d, 0xd4, 0x81, 0x81, 0x6b, 0x0a, 0xf6, 0x1d, 0xe8, 0xcb, 0x04, 0x8d, 0x91, 0x72, 0xa3, + 0x29, 0x87, 0x6c, 0x2a, 0x17, 0x79, 0xca, 0xcb, 0xe6, 0xbd, 0x74, 0xca, 0xe9, 0xfe, 0x18, 0x7a, + 0x42, 0x79, 0xa1, 0x56, 0xe2, 0xd8, 0x01, 0x1d, 0x95, 0x3a, 0xeb, 0x67, 0x8b, 0xe6, 0x65, 0x27, + 0x95, 0x77, 0x45, 0xd9, 0x65, 0x5d, 0x85, 0xa6, 0x4a, 0x1a, 0x5a, 0xa6, 0x56, 0xa5, 0x37, 0x36, + 0xf2, 0x8e, 0x9b, 0x2b, 0x3c, 0xbb, 0x33, 0x93, 0x7d, 0x70, 0x28, 0x8e, 0x87, 0x4c, 0x27, 0x04, + 0x2d, 0x4e, 0x29, 0x98, 0xca, 0x4b, 0xf8, 0x4c, 0x1c, 0x23, 0x2f, 0x8b, 0xac, 0x8d, 0xe1, 0xa9, + 0x59, 0x5e, 0xe6, 0x29, 0x1b, 0xbc, 0x9d, 0x67, 0x6b, 0xa0, 0x41, 0x2a, 0x67, 0x91, 0xc8, 0x8b, + 0xf8, 0xd3, 0xd4, 0xf4, 0xcd, 0x05, 0x4d, 0xe5, 0x7d, 0x3c, 0x5f, 0x8a, 0x66, 0x92, 0x51, 0xde, + 0x03, 0x23, 0x8c, 0x5d, 0x4a, 0x0e, 0x1b, 0x9e, 0xa1, 0x15, 0xbf, 0xac, 0x72, 0xbc, 0x64, 0x32, + 0x3d, 0x19, 0xb2, 0x56, 0x28, 0x2b, 0xec, 0x26, 0x74, 0xa3, 0x38, 0xfc, 0xa1, 0x70, 0x52, 0xe9, + 0xfd, 0x9e, 0x9d, 0x4f, 0xc2, 0x57, 0x78, 0x72, 0x86, 0x0b, 0xef, 0xf6, 0xdc, 0x73, 0xbd, 0xdb, + 0x15, 0xed, 0x3e, 0x0e, 0xe7, 0x33, 0x1e, 0x08, 0x81, 0xbd, 0x28, 0xc7, 0xf3, 0xcd, 0xf9, 0x5e, + 0x94, 0x13, 0x3a, 0x84, 0x96, 0x97, 0xdc, 0xf3, 0xe2, 0x24, 0x1d, 0x9e, 0xd7, 0x9b, 0x12, 0x55, + 0xd1, 0x6d, 0xf5, 0x92, 0xfb, 0x76, 0x92, 0x0e, 0x2f, 0xe8, 0x77, 0x14, 0x58, 0x43, 0x9e, 0xcb, + 0x63, 0x3e, 0xe9, 0xef, 0xc5, 0x59, 0x9e, 0xe7, 0x17, 0x79, 0x2a, 0x5e, 0x43, 0xfa, 0xfb, 0x09, + 0x2c, 0xc9, 0x36, 0xc5, 0x92, 0x7c, 0x6b, 0x56, 0x27, 0xa7, 0x6e, 0x84, 0x78, 0x2f, 0x9e, 0xba, + 0x20, 0xca, 0x3b, 0x40, 0x93, 0x25, 0x3b, 0xb8, 0xb4, 0xb0, 0x83, 0xdc, 0xb8, 0xc9, 0x0e, 0xf2, + 0xcb, 0x8b, 0x1b, 0xd0, 0x54, 0x99, 0x6e, 0x97, 0xe7, 0x8c, 0x96, 0xca, 0xe9, 0xe4, 0x8a, 0x82, + 0x7d, 0x03, 0x5a, 0x94, 0xe6, 0x14, 0x46, 0xc3, 0x95, 0x59, 0x25, 0x96, 0xd9, 0x4c, 0xbc, 0xe9, + 0xcb, 0xac, 0xa6, 0x77, 0xa1, 0xa5, 0xcf, 0xfb, 0x57, 0x66, 0x17, 0xa6, 0xda, 0xfb, 0xb9, 0xa6, + 0x60, 0xd7, 0xa0, 0x31, 0x41, 0x93, 0x3e, 0x34, 0x67, 0x8d, 0xa1, 0xb4, 0xf4, 0x12, 0x4b, 0x86, + 0x88, 0x8e, 0x19, 0x72, 0xf5, 0xbd, 0x3d, 0x67, 0x88, 0xf2, 0x33, 0x08, 0x87, 0xa4, 0x38, 0x8f, + 0xfc, 0x3a, 0x9c, 0x2f, 0x67, 0x30, 0xe9, 0xf4, 0x26, 0xf5, 0x92, 0xeb, 0x2a, 0xf5, 0x72, 0x65, + 0x81, 0x82, 0x4f, 0x27, 0x42, 0xf1, 0x73, 0xd1, 0x73, 0x32, 0xa4, 0x6e, 0xe7, 0x1b, 0x26, 0xda, + 0x95, 0xe1, 0xb5, 0xb9, 0x61, 0xe5, 0x5b, 0xae, 0xde, 0x46, 0x69, 0xa7, 0xfe, 0x08, 0xba, 0xa3, + 0xec, 0xd9, 0xb3, 0x63, 0x15, 0x26, 0x18, 0x5e, 0xa7, 0x76, 0xa5, 0x33, 0x67, 0x29, 0x1f, 0x87, + 0x77, 0x46, 0xa5, 0xe4, 0x9c, 0x73, 0xd0, 0x72, 0x02, 0xcb, 0x76, 0xdd, 0x78, 0xf8, 0x8e, 0xcc, + 0xc7, 0x71, 0x82, 0x0d, 0xd7, 0xa5, 0xc4, 0xa6, 0x30, 0x12, 0xf4, 0x20, 0xc5, 0xf2, 0xdc, 0xe1, + 0xaa, 0xdc, 0xba, 0x35, 0x68, 0xdb, 0xa5, 0xa7, 0x6e, 0x76, 0x6c, 0xfb, 0xbe, 0x40, 0x17, 0x65, + 0xf8, 0x0d, 0xf5, 0xd4, 0x4d, 0x81, 0xb6, 0x5d, 0x76, 0x05, 0xba, 0x13, 0xfb, 0xc8, 0xd2, 0x90, + 0xe1, 0x0d, 0xf9, 0x8e, 0x68, 0x62, 0x1f, 0xed, 0x28, 0x10, 0xaa, 0xb9, 0x4c, 0x43, 0x26, 0x65, + 0x7b, 0x77, 0x56, 0xcd, 0xf3, 0x08, 0x09, 0x6f, 0x7b, 0x79, 0xb0, 0x84, 0xcc, 0x11, 0x19, 0x61, + 0xcb, 0x5f, 0x1f, 0xbe, 0x37, 0x6f, 0x8e, 0x54, 0x68, 0x07, 0xcd, 0x91, 0x8e, 0xf2, 0xac, 0x03, + 0x48, 0x6b, 0x4d, 0xc2, 0xbe, 0x39, 0xdb, 0x26, 0x3f, 0x0b, 0x72, 0x99, 0x83, 0x4b, 0xa2, 0x5e, + 0x07, 0xa0, 0x9c, 0x26, 0xd9, 0x66, 0x6d, 0xb6, 0x4d, 0x7e, 0x14, 0xe4, 0xed, 0x27, 0xf9, 0xa9, + 0xf0, 0x16, 0xb4, 0x33, 0x3c, 0xf4, 0x59, 0xb6, 0xef, 0x0f, 0x6f, 0xcd, 0xae, 0x01, 0x7d, 0x1e, + 0xe4, 0x46, 0xa6, 0x4a, 0xf8, 0x11, 0x8a, 0x3d, 0x93, 0x1b, 0x37, 0x7c, 0x7f, 0xf6, 0x23, 0xf9, + 0xa1, 0x91, 0xb7, 0x0f, 0xf2, 0xf3, 0xe3, 0xc7, 0xd0, 0xd3, 0x21, 0x50, 0xd9, 0xec, 0x83, 0xd9, + 0xad, 0xa3, 0x7c, 0x5e, 0xe0, 0xfa, 0x31, 0x97, 0x6c, 0x7c, 0x1b, 0x3a, 0x92, 0xe3, 0xb2, 0xe9, + 0xfa, 0xac, 0x82, 0x15, 0x4e, 0x25, 0x97, 0xa2, 0x91, 0xcd, 0xae, 0x41, 0xc3, 0x8e, 0x22, 0xff, + 0x78, 0xf8, 0xe1, 0xec, 0xaa, 0xda, 0x40, 0x30, 0x97, 0x58, 0xd4, 0xc3, 0x49, 0xe6, 0xa7, 0x9e, + 0x4e, 0x28, 0xfe, 0xe6, 0xac, 0x1e, 0x96, 0x1e, 0x2c, 0xf0, 0xce, 0xa4, 0xf4, 0xb2, 0xe2, 0x3d, + 0x30, 0xa2, 0x30, 0x49, 0x2d, 0x77, 0xe2, 0x0f, 0x6f, 0xcf, 0xed, 0xbe, 0x32, 0x6b, 0x95, 0xb7, + 0x22, 0x59, 0x30, 0x6f, 0x43, 0x77, 0x83, 0x9e, 0x78, 0x7a, 0x09, 0x99, 0xf2, 0x6b, 0x50, 0xcf, + 0x23, 0x78, 0xf9, 0x1e, 0x41, 0x14, 0xcf, 0xc4, 0x76, 0x30, 0x0a, 0x39, 0xa1, 0xcd, 0xbf, 0xab, + 0x41, 0x73, 0x37, 0xcc, 0x62, 0x47, 0xbc, 0x38, 0x1f, 0xfb, 0x2d, 0xad, 0x32, 0x41, 0x91, 0xab, + 0x26, 0xb5, 0x83, 0xd0, 0xe5, 0xe0, 0x60, 0x8d, 0xa2, 0x2c, 0x79, 0x70, 0xf0, 0x34, 0x34, 0x64, + 0x50, 0x40, 0x66, 0x04, 0xcb, 0x0a, 0x2d, 0x97, 0x2c, 0x39, 0x70, 0xc3, 0xa7, 0x01, 0x2e, 0x97, + 0x06, 0x25, 0xd4, 0x82, 0x06, 0x6d, 0xbb, 0xf4, 0xa8, 0x45, 0x13, 0xd0, 0x7a, 0x6c, 0xca, 0x03, + 0x85, 0x06, 0xd2, 0xaa, 0xd4, 0x81, 0xc7, 0xd6, 0x73, 0x02, 0x8f, 0x97, 0xa0, 0x1e, 0xe8, 0x4c, + 0xd4, 0x1c, 0x4f, 0xcf, 0x09, 0x09, 0xce, 0x6e, 0x40, 0x9e, 0x44, 0xae, 0xfc, 0xb5, 0xe7, 0x27, + 0x99, 0xaf, 0x43, 0x3b, 0x7f, 0x20, 0x9c, 0x7b, 0x6a, 0xc5, 0x93, 0xe1, 0x3d, 0x5d, 0xe2, 0x05, + 0xd9, 0x82, 0x88, 0x65, 0x14, 0x87, 0xfb, 0x2a, 0x1a, 0xd5, 0x79, 0x95, 0x88, 0xe5, 0x0e, 0xb6, + 0xd3, 0x71, 0x58, 0x2f, 0xb1, 0x9c, 0x30, 0x48, 0x52, 0x95, 0xe5, 0xdf, 0xf2, 0x92, 0x4d, 0xac, + 0x9a, 0x11, 0x18, 0x38, 0x39, 0x14, 0x31, 0x63, 0x50, 0x9f, 0x38, 0x51, 0xa6, 0xdc, 0x75, 0x2a, + 0xab, 0xf7, 0xbf, 0x52, 0x78, 0xea, 0xfd, 0x2f, 0xb1, 0xb6, 0x26, 0xa3, 0x89, 0x58, 0x66, 0x67, + 0xa0, 0xe9, 0x04, 0x96, 0x13, 0xe8, 0x74, 0xe2, 0x86, 0x13, 0x6c, 0x06, 0xa9, 0x02, 0x17, 0x2f, + 0x35, 0x1a, 0x4e, 0x80, 0xe7, 0xae, 0x3f, 0xa9, 0xc0, 0xf2, 0x4e, 0x1c, 0x3a, 0x22, 0x49, 0xee, + 0xe3, 0xfe, 0x6f, 0x93, 0x37, 0xc7, 0xa0, 0x4e, 0x01, 0x41, 0xf9, 0x18, 0x8f, 0xca, 0xa8, 0x40, + 0x32, 0x42, 0x94, 0x1f, 0x7d, 0x6a, 0xbc, 0x4d, 0x10, 0x3a, 0xf9, 0xe4, 0x68, 0x6a, 0x58, 0x2b, + 0xa1, 0x29, 0x94, 0x78, 0x0d, 0xfa, 0xc5, 0x53, 0x0d, 0xea, 0x41, 0xbd, 0xc2, 0xcd, 0xa1, 0xd4, + 0xcb, 0x65, 0xe8, 0xc4, 0xc2, 0x46, 0x0f, 0x89, 0xba, 0x69, 0x10, 0x0d, 0x48, 0x10, 0xf6, 0x63, + 0x1e, 0xc0, 0x60, 0x27, 0x16, 0x91, 0x1d, 0x0b, 0x34, 0xba, 0x13, 0xe2, 0xd4, 0x59, 0x68, 0xfa, + 0x22, 0x18, 0xa7, 0x07, 0x6a, 0xbc, 0xaa, 0x96, 0xbf, 0xc0, 0xae, 0x96, 0x5e, 0x60, 0x23, 0xc7, + 0x62, 0x61, 0xab, 0x87, 0xda, 0x54, 0x46, 0x05, 0x0f, 0x32, 0x5f, 0x05, 0x29, 0x0d, 0x2e, 0x2b, + 0xe6, 0x1f, 0xd7, 0xa0, 0xa3, 0x38, 0x43, 0x5f, 0x91, 0xbc, 0xaf, 0xe4, 0xbc, 0x1f, 0x40, 0x2d, + 0x79, 0xec, 0x2b, 0x61, 0x60, 0x91, 0x7d, 0x08, 0x35, 0xdf, 0x9b, 0xa8, 0xb3, 0xd3, 0x85, 0x29, + 0x13, 0x3e, 0xcd, 0x5f, 0x75, 0x44, 0x46, 0x6a, 0x76, 0x81, 0x4c, 0xec, 0x91, 0x85, 0x9a, 0xa2, + 0x78, 0x82, 0xe6, 0xf4, 0x08, 0xd5, 0x11, 0x99, 0x6a, 0x3b, 0x94, 0xed, 0xab, 0xd7, 0x58, 0x8f, + 0xb7, 0x15, 0x64, 0xdb, 0x65, 0xdf, 0x04, 0x23, 0x09, 0xec, 0x28, 0x39, 0x08, 0x53, 0x75, 0x56, + 0x62, 0x6b, 0xe9, 0x51, 0xb0, 0xb6, 0xf9, 0x70, 0xef, 0x28, 0xd8, 0x55, 0x18, 0xf5, 0xb1, 0x9c, + 0x92, 0x7d, 0x07, 0xba, 0x89, 0x48, 0x12, 0xf9, 0x66, 0x66, 0x14, 0xaa, 0xb5, 0x77, 0xa6, 0x7c, + 0xce, 0x21, 0x2c, 0xce, 0x5a, 0x35, 0xee, 0x24, 0x05, 0x88, 0x7d, 0x1f, 0xfa, 0xba, 0xbd, 0x1f, + 0x8e, 0xc7, 0x79, 0x34, 0xf5, 0xc2, 0x5c, 0x0f, 0xf7, 0x09, 0x5d, 0xea, 0xa7, 0x97, 0x94, 0x11, + 0xec, 0x7b, 0xd0, 0x8f, 0xa4, 0x30, 0x2d, 0x15, 0x59, 0x97, 0x6b, 0xf8, 0xfc, 0x94, 0xc7, 0x31, + 0x25, 0xec, 0x22, 0xa3, 0xbe, 0x80, 0x27, 0xe6, 0x7f, 0x57, 0xa0, 0x53, 0x1a, 0x35, 0xbd, 0x8b, + 0x4f, 0x44, 0xac, 0xa3, 0xec, 0x58, 0x46, 0xd8, 0x41, 0xa8, 0x9e, 0x93, 0xb6, 0x39, 0x95, 0x11, + 0x16, 0x87, 0xea, 0xda, 0xa5, 0xcd, 0xa9, 0x8c, 0x76, 0x4b, 0x1d, 0x5b, 0xe5, 0x6b, 0x3c, 0x12, + 0x4a, 0x9d, 0x77, 0x0b, 0xe0, 0x36, 0x05, 0xad, 0x50, 0x9d, 0xf6, 0xed, 0x44, 0xc7, 0xfd, 0xf3, + 0x3a, 0x7a, 0xc7, 0x4f, 0x44, 0x8c, 0x63, 0x51, 0x26, 0x4f, 0x57, 0x51, 0xd6, 0x64, 0x4a, 0x9e, + 0x85, 0x81, 0xbc, 0x7a, 0xed, 0x72, 0x03, 0x01, 0x3f, 0x08, 0x03, 0x6a, 0xa6, 0x24, 0x4b, 0xfc, + 0x6c, 0x73, 0x5d, 0x45, 0x83, 0xf1, 0x38, 0x13, 0xe8, 0x95, 0xb9, 0xf4, 0xee, 0xb2, 0xcd, 0x5b, + 0x54, 0xdf, 0x76, 0xcd, 0x7f, 0xab, 0xc0, 0xf2, 0x1c, 0xb3, 0xd1, 0x09, 0x42, 0x46, 0xeb, 0x87, + 0x0e, 0x5d, 0xde, 0xc4, 0xea, 0xb6, 0x4b, 0x88, 0x74, 0x42, 0xca, 0x54, 0x55, 0x88, 0x74, 0x82, + 0x9a, 0x74, 0x06, 0x9a, 0xe9, 0x11, 0xcd, 0x56, 0x2e, 0x8c, 0x46, 0x7a, 0x84, 0xd3, 0xdc, 0x80, + 0xb6, 0x1f, 0x8e, 0x2d, 0x5f, 0x3c, 0x11, 0x3e, 0xf1, 0xa1, 0xbf, 0x7e, 0xf5, 0x04, 0x29, 0xaf, + 0xdd, 0x0f, 0xc7, 0xf7, 0x91, 0x96, 0x1b, 0xbe, 0x2a, 0x99, 0x9f, 0x82, 0xa1, 0xa1, 0xac, 0x0d, + 0x8d, 0x2d, 0xb1, 0x9f, 0x8d, 0x07, 0x6f, 0x30, 0x03, 0xea, 0xd8, 0x62, 0x50, 0xc1, 0xd2, 0x17, + 0x76, 0x1c, 0x0c, 0xaa, 0x88, 0xbe, 0x1b, 0xc7, 0x61, 0x3c, 0xa8, 0x61, 0x71, 0xc7, 0x0e, 0x3c, + 0x67, 0x50, 0xc7, 0xe2, 0x3d, 0x3b, 0xb5, 0xfd, 0x41, 0xc3, 0xfc, 0xd3, 0x06, 0x18, 0x3b, 0xea, + 0xeb, 0x6c, 0x0b, 0x7a, 0xf9, 0xaf, 0x09, 0x16, 0xc7, 0x73, 0x76, 0x66, 0x0b, 0x14, 0xcf, 0xe9, + 0x46, 0xa5, 0xda, 0xec, 0x0f, 0x0e, 0xaa, 0x73, 0x3f, 0x38, 0xb8, 0x08, 0xb5, 0xc7, 0xf1, 0xf1, + 0xf4, 0xcd, 0xd8, 0x8e, 0x6f, 0x07, 0x1c, 0xc1, 0xec, 0x03, 0xe8, 0xa0, 0xdc, 0xad, 0x84, 0x76, + 0x61, 0x15, 0x0b, 0x29, 0xff, 0x46, 0x82, 0xe0, 0x1c, 0x90, 0x48, 0xed, 0xd4, 0x6b, 0x60, 0x38, + 0x07, 0x9e, 0xef, 0xc6, 0x22, 0x50, 0x01, 0x6a, 0x36, 0x3f, 0x64, 0x9e, 0xd3, 0xb0, 0xef, 0x52, + 0xea, 0xbf, 0x8e, 0xe1, 0x94, 0x33, 0x8f, 0xce, 0x4c, 0x1d, 0x93, 0x35, 0x05, 0x5f, 0x2a, 0x91, + 0xd3, 0x86, 0x53, 0xbc, 0x1b, 0x6b, 0x95, 0xdf, 0x8d, 0xc9, 0x47, 0xef, 0x7e, 0x68, 0xbb, 0x2a, + 0xb4, 0x88, 0x87, 0xb5, 0xd0, 0x76, 0xd9, 0x75, 0xb5, 0xe9, 0xce, 0x05, 0x40, 0xf4, 0xde, 0xa4, + 0x36, 0xdf, 0xab, 0xd0, 0xc7, 0xcd, 0xdc, 0x92, 0x3e, 0x00, 0x9a, 0x12, 0x50, 0xef, 0x56, 0xb3, + 0xe4, 0x60, 0x0b, 0xbd, 0x00, 0x54, 0xc6, 0x6b, 0xd0, 0xd7, 0x73, 0x51, 0x0f, 0x17, 0x3a, 0xea, + 0x9e, 0x44, 0x41, 0xe5, 0xbb, 0x85, 0x35, 0x38, 0xe5, 0x1c, 0xd8, 0x41, 0x20, 0x7c, 0x6b, 0x3f, + 0x1b, 0x8d, 0xf4, 0x0e, 0xd0, 0xa5, 0x0b, 0xc4, 0x65, 0x85, 0xba, 0x43, 0x18, 0xda, 0x50, 0x4c, + 0xe8, 0x05, 0x9e, 0x2f, 0x1f, 0xfb, 0xd1, 0x6e, 0xd7, 0x23, 0xca, 0x4e, 0xe0, 0xf9, 0x14, 0x1b, + 0xc6, 0x3d, 0xef, 0x13, 0x18, 0x64, 0x99, 0xe7, 0x26, 0x56, 0x1a, 0xea, 0xff, 0x05, 0xd0, 0x35, + 0xf1, 0x94, 0x73, 0xf9, 0x28, 0xf3, 0xdc, 0xbd, 0x50, 0xfd, 0x31, 0xa0, 0x47, 0xf4, 0xba, 0x6a, + 0x7e, 0x02, 0xdd, 0xb2, 0xee, 0xa0, 0x2e, 0xd2, 0xa9, 0x6b, 0xf0, 0x06, 0x03, 0x68, 0x3e, 0x0c, + 0xe3, 0x89, 0xed, 0x0f, 0x2a, 0x58, 0x96, 0xaf, 0x29, 0x07, 0x55, 0xd6, 0x05, 0x43, 0x1f, 0x07, + 0x06, 0x35, 0xf3, 0x63, 0x30, 0xf4, 0x0f, 0x10, 0xe8, 0xe5, 0x79, 0xe8, 0x0a, 0xe9, 0x0c, 0x49, + 0xcb, 0x64, 0x20, 0x80, 0x1c, 0x21, 0xfd, 0x27, 0x8f, 0x6a, 0xf1, 0x27, 0x0f, 0xf3, 0x57, 0xa0, + 0x5b, 0x1e, 0x9c, 0x0e, 0xd7, 0x55, 0x8a, 0x70, 0xdd, 0x82, 0x56, 0x74, 0x61, 0x16, 0x87, 0x13, + 0xab, 0xe4, 0x18, 0x18, 0x08, 0xc0, 0xcf, 0x98, 0xbf, 0x55, 0x81, 0x06, 0x79, 0xb8, 0xb4, 0xb5, + 0x60, 0xa1, 0x58, 0x3b, 0x0d, 0xde, 0x26, 0x08, 0xcd, 0xb4, 0x7c, 0x8f, 0x5c, 0x7d, 0xfe, 0x3d, + 0x72, 0x6d, 0xfa, 0x1e, 0xf9, 0x25, 0x13, 0x91, 0x6e, 0x3c, 0x86, 0xa6, 0xfc, 0x79, 0x0a, 0x5b, + 0x86, 0xde, 0xa3, 0xe0, 0x30, 0x08, 0x9f, 0x06, 0x12, 0x30, 0x78, 0x83, 0x9d, 0x82, 0x25, 0xcd, + 0x74, 0xf5, 0x97, 0x96, 0x41, 0x85, 0x0d, 0xa0, 0x4b, 0x62, 0xd5, 0x90, 0x2a, 0xbb, 0x08, 0x43, + 0xb5, 0x39, 0x6c, 0x85, 0x81, 0x78, 0x18, 0xa6, 0xde, 0xe8, 0x58, 0x63, 0x6b, 0x6c, 0x09, 0x3a, + 0xbb, 0x69, 0x18, 0xed, 0x8a, 0xc0, 0xf5, 0x82, 0xf1, 0xa0, 0x7e, 0xe3, 0x1e, 0x34, 0xe5, 0x3f, + 0x5d, 0x4a, 0x9f, 0x94, 0x80, 0xc1, 0x1b, 0x48, 0xfd, 0x85, 0xed, 0xa5, 0x5e, 0x30, 0x7e, 0x28, + 0x8e, 0x52, 0x69, 0x94, 0xee, 0xdb, 0x49, 0x3a, 0xa8, 0xb2, 0x3e, 0x80, 0xea, 0xf5, 0x6e, 0xe0, + 0x0e, 0x6a, 0x77, 0x36, 0x7f, 0xfc, 0x93, 0x4b, 0x95, 0xbf, 0xff, 0xc9, 0xa5, 0xca, 0x3f, 0xfd, + 0xe4, 0xd2, 0x1b, 0x7f, 0xf0, 0xcf, 0x97, 0x2a, 0x3f, 0xf8, 0xa0, 0xf4, 0xc7, 0x9a, 0x89, 0x9d, + 0xc6, 0xde, 0x91, 0xbc, 0x72, 0xd4, 0x95, 0x40, 0xdc, 0x8a, 0x0e, 0xc7, 0xb7, 0xa2, 0xfd, 0x5b, + 0x5a, 0xe7, 0xf6, 0x9b, 0xf4, 0x23, 0x9a, 0x0f, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xc7, 0x58, + 0xbb, 0xb0, 0x07, 0x47, 0x00, 0x00, } func (m *Message) Marshal() (dAtA []byte, err error) { @@ -9453,6 +9479,13 @@ func (m *DedupJoin) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.DelColIdx != 0 { + i = encodeVarintPipeline(dAtA, i, uint64(m.DelColIdx)) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x80 + } if len(m.UpdateColExprList) > 0 { for iNdEx := len(m.UpdateColExprList) - 1; iNdEx >= 0; iNdEx-- { { @@ -10348,6 +10381,11 @@ func (m *HashBuild) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.DelColIdx != 0 { + i = encodeVarintPipeline(dAtA, i, uint64(m.DelColIdx)) + i-- + dAtA[i] = 0x68 + } if len(m.DedupColTypes) > 0 { for iNdEx := len(m.DedupColTypes) - 1; iNdEx >= 0; iNdEx-- { { @@ -10487,6 +10525,11 @@ func (m *Shufflebuild) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.DelColIdx != 0 { + i = encodeVarintPipeline(dAtA, i, uint64(m.DelColIdx)) + i-- + dAtA[i] = 0x60 + } if len(m.DedupColTypes) > 0 { for iNdEx := len(m.DedupColTypes) - 1; iNdEx >= 0; iNdEx-- { { @@ -13739,6 +13782,9 @@ func (m *DedupJoin) ProtoSize() (n int) { n += 1 + l + sovPipeline(uint64(l)) } } + if m.DelColIdx != 0 { + n += 2 + sovPipeline(uint64(m.DelColIdx)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -14092,6 +14138,9 @@ func (m *HashBuild) ProtoSize() (n int) { n += 1 + l + sovPipeline(uint64(l)) } } + if m.DelColIdx != 0 { + n += 1 + sovPipeline(uint64(m.DelColIdx)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -14145,6 +14194,9 @@ func (m *Shufflebuild) ProtoSize() (n int) { n += 1 + l + sovPipeline(uint64(l)) } } + if m.DelColIdx != 0 { + n += 1 + sovPipeline(uint64(m.DelColIdx)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -24253,6 +24305,25 @@ func (m *DedupJoin) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 16: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field DelColIdx", wireType) + } + m.DelColIdx = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPipeline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.DelColIdx |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipPipeline(dAtA[iNdEx:]) @@ -26450,6 +26521,25 @@ func (m *HashBuild) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 13: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field DelColIdx", wireType) + } + m.DelColIdx = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPipeline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.DelColIdx |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipPipeline(dAtA[iNdEx:]) @@ -26774,6 +26864,25 @@ func (m *Shufflebuild) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 12: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field DelColIdx", wireType) + } + m.DelColIdx = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPipeline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.DelColIdx |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipPipeline(dAtA[iNdEx:]) diff --git a/pkg/pb/query/query.pb.go b/pkg/pb/query/query.pb.go index 6f6d5055a2cb6..95628a0c04b8e 100644 --- a/pkg/pb/query/query.pb.go +++ b/pkg/pb/query/query.pb.go @@ -98,9 +98,8 @@ const ( // GOGCPercent calling debug.SetGCPercent() CmdMethod_GOGCPercent CmdMethod = 31 // FaultInject handle fault injection request - CmdMethod_FaultInject CmdMethod = 32 - CmdMethod_CtlMoTableStats CmdMethod = 33 - + CmdMethod_FaultInject CmdMethod = 32 + CmdMethod_CtlMoTableStats CmdMethod = 33 CmdMethod_WorkspaceThreshold CmdMethod = 34 ) diff --git a/pkg/sql/colexec/dedupjoin/join.go b/pkg/sql/colexec/dedupjoin/join.go index 8baa99369be9c..e2f986e482d17 100644 --- a/pkg/sql/colexec/dedupjoin/join.go +++ b/pkg/sql/colexec/dedupjoin/join.go @@ -164,7 +164,7 @@ func (dedupJoin *DedupJoin) build(analyzer process.Analyzer, proc *process.Proce if dedupJoin.OnDuplicateAction != plan.Node_UPDATE { ctr.matched.InitWithSize(ctr.batchRowCount) } else { - ctr.matched.InitWithSize(int64(ctr.mp.GetGroupCount()) + 1) + ctr.matched.InitWithSize(int64(ctr.mp.GetGroupCount())) } } return @@ -194,10 +194,27 @@ func (ctr *container) finalize(ap *DedupJoin, proc *process.Process) error { } } - if ap.OnDuplicateAction != plan.Node_UPDATE { + if ap.OnDuplicateAction != plan.Node_UPDATE || ctr.mp.HashOnUnique() { if ctr.matched.Count() == 0 { - ap.ctr.buf = ctr.batches - ctr.batches = nil + //ap.ctr.buf = ctr.batches + ap.ctr.buf = make([]*batch.Batch, len(ctr.batches)) + for i := range ap.ctr.buf { + ap.ctr.buf[i] = batch.NewWithSize(len(ap.Result)) + batSize := ctr.batches[i].Vecs[0].Length() + for j, rp := range ap.Result { + if rp.Rel == 1 { + ap.ctr.buf[i].SetVector(int32(j), ctr.batches[i].Vecs[rp.Pos]) + ctr.batches[i].Vecs[rp.Pos] = nil + } else { + ap.ctr.buf[i].Vecs[j] = vector.NewVec(ap.LeftTypes[rp.Pos]) + if err := vector.AppendMultiFixed(ap.ctr.buf[i].Vecs[j], 0, true, batSize, proc.Mp()); err != nil { + return err + } + } + } + + ap.ctr.buf[i].SetRowCount(batSize) + } return nil } @@ -293,7 +310,7 @@ func (ctr *container) finalize(ap *DedupJoin, proc *process.Process) error { ctr.joinBat1, ctr.cfs1 = colexec.NewJoinBatch(ctr.batches[0], proc.Mp()) bitmapLen := uint64(ctr.matched.Len()) - for i := uint64(1); i < bitmapLen; i++ { + for i := uint64(0); i < bitmapLen; i++ { if ctr.matched.Contains(i) { continue } @@ -309,41 +326,59 @@ func (ctr *container) finalize(ap *DedupJoin, proc *process.Process) error { } } - sels = ctr.mp.GetSels(i) + sels = ctr.mp.GetSels(i + 1) idx1, idx2 := sels[0]/colexec.DefaultBatchSize, sels[0]%colexec.DefaultBatchSize - err := colexec.SetJoinBatchValues(ctr.joinBat1, ctr.batches[idx1], int64(idx2), 1, ctr.cfs1) - if err != nil { - return err - } - - for _, sel := range sels[1:] { - idx1, idx2 = sel/colexec.DefaultBatchSize, sel%colexec.DefaultBatchSize - err = colexec.SetJoinBatchValues(ctr.joinBat2, ctr.batches[idx1], int64(idx2), 1, ctr.cfs2) + if len(sels) == 1 { + for j, rp := range ap.Result { + if rp.Rel == 1 { + if err := ap.ctr.buf[batIdx].Vecs[j].UnionOne(ctr.batches[idx1].Vecs[rp.Pos], int64(idx2), proc.Mp()); err != nil { + return err + } + } else { + if err := ap.ctr.buf[batIdx].Vecs[j].UnionNull(proc.Mp()); err != nil { + return err + } + } + } + } else { + err := colexec.SetJoinBatchValues(ctr.joinBat1, ctr.batches[idx1], int64(idx2), 1, ctr.cfs1) if err != nil { return err } - vecs := make([]*vector.Vector, len(ctr.exprExecs)) - for j, exprExec := range ctr.exprExecs { - vecs[j], err = exprExec.Eval(proc, []*batch.Batch{ctr.joinBat1, ctr.joinBat2}, nil) + if ctr.joinBat2 == nil { + ctr.joinBat2, ctr.cfs2 = colexec.NewJoinBatch(ctr.batches[0], proc.Mp()) + } + + for _, sel := range sels[1:] { + idx1, idx2 = sel/colexec.DefaultBatchSize, sel%colexec.DefaultBatchSize + err = colexec.SetJoinBatchValues(ctr.joinBat2, ctr.batches[idx1], int64(idx2), 1, ctr.cfs2) if err != nil { return err } - } - for j, pos := range ap.UpdateColIdxList { - ctr.joinBat1.Vecs[pos] = vecs[j] - } - } + vecs := make([]*vector.Vector, len(ctr.exprExecs)) + for j, exprExec := range ctr.exprExecs { + vecs[j], err = exprExec.Eval(proc, []*batch.Batch{ctr.joinBat1, ctr.joinBat2}, nil) + if err != nil { + return err + } + } - for j, rp := range ap.Result { - if rp.Rel == 1 { - if err := ap.ctr.buf[batIdx].Vecs[j].UnionOne(ctr.joinBat1.Vecs[rp.Pos], 0, proc.Mp()); err != nil { - return err + for j, pos := range ap.UpdateColIdxList { + ctr.joinBat1.Vecs[pos] = vecs[j] } - } else { - if err := ap.ctr.buf[batIdx].Vecs[j].UnionNull(proc.Mp()); err != nil { - return err + } + + for j, rp := range ap.Result { + if rp.Rel == 1 { + if err := ap.ctr.buf[batIdx].Vecs[j].UnionOne(ctr.joinBat1.Vecs[rp.Pos], 0, proc.Mp()); err != nil { + return err + } + } else { + if err := ap.ctr.buf[batIdx].Vecs[j].UnionNull(proc.Mp()); err != nil { + return err + } } } } @@ -367,11 +402,14 @@ func (ctr *container) probe(bat *batch.Batch, ap *DedupJoin, proc *process.Proce if err != nil { return err } - if ctr.joinBat1 == nil { - ctr.joinBat1, ctr.cfs1 = colexec.NewJoinBatch(bat, proc.Mp()) - } - if ctr.joinBat2 == nil && ctr.batchRowCount > 0 { - ctr.joinBat2, ctr.cfs2 = colexec.NewJoinBatch(ctr.batches[0], proc.Mp()) + + if ap.OnDuplicateAction == plan.Node_UPDATE { + if ctr.joinBat1 == nil { + ctr.joinBat1, ctr.cfs1 = colexec.NewJoinBatch(bat, proc.Mp()) + } + if ctr.joinBat2 == nil && ctr.batchRowCount > 0 { + ctr.joinBat2, ctr.cfs2 = colexec.NewJoinBatch(ctr.batches[0], proc.Mp()) + } } rowCntInc := 0 @@ -391,6 +429,10 @@ func (ctr *container) probe(bat *batch.Batch, ap *DedupJoin, proc *process.Proce switch ap.OnDuplicateAction { case plan.Node_FAIL: + if ctr.mp.IsDeleted(vals[k] - 1) { + continue + } + // do nothing for txn.mode = Optimistic if !isPessimistic { continue @@ -428,8 +470,8 @@ func (ctr *container) probe(bat *batch.Batch, ap *DedupJoin, proc *process.Proce return err } - sels := ctr.mp.GetSels(vals[k]) - for _, sel := range sels { + if ctr.mp.HashOnUnique() { + sel := vals[k] - 1 idx1, idx2 := sel/colexec.DefaultBatchSize, sel%colexec.DefaultBatchSize err = colexec.SetJoinBatchValues(ctr.joinBat2, ctr.batches[idx1], int64(idx2), 1, ctr.cfs2) if err != nil { @@ -447,6 +489,27 @@ func (ctr *container) probe(bat *batch.Batch, ap *DedupJoin, proc *process.Proce for j, pos := range ap.UpdateColIdxList { ctr.joinBat1.Vecs[pos] = vecs[j] } + } else { + sels := ctr.mp.GetSels(vals[k]) + for _, sel := range sels { + idx1, idx2 := sel/colexec.DefaultBatchSize, sel%colexec.DefaultBatchSize + err = colexec.SetJoinBatchValues(ctr.joinBat2, ctr.batches[idx1], int64(idx2), 1, ctr.cfs2) + if err != nil { + return err + } + + vecs := make([]*vector.Vector, len(ctr.exprExecs)) + for j, exprExec := range ctr.exprExecs { + vecs[j], err = exprExec.Eval(proc, []*batch.Batch{ctr.joinBat1, ctr.joinBat2}, nil) + if err != nil { + return err + } + } + + for j, pos := range ap.UpdateColIdxList { + ctr.joinBat1.Vecs[pos] = vecs[j] + } + } } for j, rp := range ap.Result { @@ -461,7 +524,7 @@ func (ctr *container) probe(bat *batch.Batch, ap *DedupJoin, proc *process.Proce } } - ctr.matched.Add(vals[k]) + ctr.matched.Add(vals[k] - 1) rowCntInc++ } } diff --git a/pkg/sql/colexec/dedupjoin/types.go b/pkg/sql/colexec/dedupjoin/types.go index 69bf11b3c3679..2d2b4eba5fd76 100644 --- a/pkg/sql/colexec/dedupjoin/types.go +++ b/pkg/sql/colexec/dedupjoin/types.go @@ -88,6 +88,7 @@ type DedupJoin struct { OnDuplicateAction plan.Node_OnDuplicateAction DedupColName string DedupColTypes []plan.Type + DelColIdx int32 UpdateColIdxList []int32 UpdateColExprList []*plan.Expr diff --git a/pkg/sql/colexec/hashbuild/build.go b/pkg/sql/colexec/hashbuild/build.go index 860c59e5ef226..bb33f9bb14afb 100644 --- a/pkg/sql/colexec/hashbuild/build.go +++ b/pkg/sql/colexec/hashbuild/build.go @@ -42,14 +42,16 @@ func (hashBuild *HashBuild) Prepare(proc *process.Process) (err error) { hashBuild.OpAnalyzer.Reset() } - if hashBuild.NeedHashMap { - hashBuild.ctr.hashmapBuilder.IsDedup = hashBuild.IsDedup - hashBuild.ctr.hashmapBuilder.OnDuplicateAction = hashBuild.OnDuplicateAction - hashBuild.ctr.hashmapBuilder.DedupColName = hashBuild.DedupColName - hashBuild.ctr.hashmapBuilder.DedupColTypes = hashBuild.DedupColTypes - return hashBuild.ctr.hashmapBuilder.Prepare(hashBuild.Conditions, proc) + if !hashBuild.NeedHashMap { + return nil } - return nil + + hashBuild.ctr.hashmapBuilder.IsDedup = hashBuild.IsDedup + hashBuild.ctr.hashmapBuilder.OnDuplicateAction = hashBuild.OnDuplicateAction + hashBuild.ctr.hashmapBuilder.DedupColName = hashBuild.DedupColName + hashBuild.ctr.hashmapBuilder.DedupColTypes = hashBuild.DedupColTypes + + return hashBuild.ctr.hashmapBuilder.Prepare(hashBuild.Conditions, hashBuild.DelColIdx, proc) } func (hashBuild *HashBuild) Call(proc *process.Process) (vm.CallResult, error) { @@ -75,7 +77,7 @@ func (hashBuild *HashBuild) Call(proc *process.Process) (vm.CallResult, error) { case SendJoinMap: var jm *message.JoinMap if ctr.hashmapBuilder.InputBatchRowCount > 0 { - jm = message.NewJoinMap(ctr.hashmapBuilder.MultiSels, ctr.hashmapBuilder.IntHashMap, ctr.hashmapBuilder.StrHashMap, ctr.hashmapBuilder.Batches.Buf, proc.Mp()) + jm = message.NewJoinMap(ctr.hashmapBuilder.MultiSels, ctr.hashmapBuilder.IntHashMap, ctr.hashmapBuilder.StrHashMap, ctr.hashmapBuilder.DelRows, ctr.hashmapBuilder.Batches.Buf, proc.Mp()) jm.SetPushedRuntimeFilterIn(ctr.runtimeFilterIn) //jm.SetIgnoreRows(ctr.hashmapBuilder.IgnoreRows) if ap.NeedBatches { diff --git a/pkg/sql/colexec/hashbuild/types.go b/pkg/sql/colexec/hashbuild/types.go index 1480f59043ea6..4ce8bd4f2da9f 100644 --- a/pkg/sql/colexec/hashbuild/types.go +++ b/pkg/sql/colexec/hashbuild/types.go @@ -51,6 +51,7 @@ type HashBuild struct { RuntimeFilterSpec *plan.RuntimeFilterSpec IsDedup bool + DelColIdx int32 OnDuplicateAction plan.Node_OnDuplicateAction DedupColName string DedupColTypes []plan.Type diff --git a/pkg/sql/colexec/hashmap_util/hashmap_util.go b/pkg/sql/colexec/hashmap_util/hashmap_util.go index 7b1562382d666..390273daba45b 100644 --- a/pkg/sql/colexec/hashmap_util/hashmap_util.go +++ b/pkg/sql/colexec/hashmap_util/hashmap_util.go @@ -40,7 +40,7 @@ type HashmapBuilder struct { MultiSels message.JoinSels keyWidth int // keyWidth is the width of hash columns, it determines which hash map to use. Batches colexec.Batches - executor []colexec.ExpressionExecutor + executors []colexec.ExpressionExecutor UniqueJoinKeys []*vector.Vector IsDedup bool @@ -49,6 +49,10 @@ type HashmapBuilder struct { DedupColTypes []plan.Type IgnoreRows *bitmap.Bitmap + + delColIdx int32 + delVecs []*vector.Vector + DelRows *bitmap.Bitmap } func (hb *HashmapBuilder) GetSize() int64 { @@ -69,16 +73,16 @@ func (hb *HashmapBuilder) GetGroupCount() uint64 { return 0 } -func (hb *HashmapBuilder) Prepare(Conditions []*plan.Expr, proc *process.Process) error { +func (hb *HashmapBuilder) Prepare(keyCols []*plan.Expr, delIdx int32, proc *process.Process) error { var err error - if len(hb.executor) == 0 { + if len(hb.executors) == 0 { hb.needDupVec = false hb.vecs = make([][]*vector.Vector, 0) - hb.executor = make([]colexec.ExpressionExecutor, len(Conditions)) + hb.executors = make([]colexec.ExpressionExecutor, len(keyCols)) hb.keyWidth = 0 hb.InputBatchRowCount = 0 - for i, expr := range Conditions { - if _, ok := Conditions[i].Expr.(*plan.Expr_Col); !ok { + for i, expr := range keyCols { + if _, ok := keyCols[i].Expr.(*plan.Expr_Col); !ok { hb.needDupVec = true } typ := expr.Typ @@ -88,12 +92,15 @@ func (hb *HashmapBuilder) Prepare(Conditions []*plan.Expr, proc *process.Process width = 128 } hb.keyWidth += width - hb.executor[i], err = colexec.NewExpressionExecutor(proc, Conditions[i]) + hb.executors[i], err = colexec.NewExpressionExecutor(proc, keyCols[i]) if err != nil { return err } } } + + hb.delColIdx = delIdx + return nil } @@ -119,9 +126,9 @@ func (hb *HashmapBuilder) Reset(proc *process.Process, hashTableHasNotSent bool) } hb.UniqueJoinKeys = nil hb.MultiSels.Free() - for i := range hb.executor { - if hb.executor[i] != nil { - hb.executor[i].ResetForNextQuery() + for i := range hb.executors { + if hb.executors[i] != nil { + hb.executors[i].ResetForNextQuery() } } } @@ -132,12 +139,12 @@ func (hb *HashmapBuilder) Free(proc *process.Process) { hb.IntHashMap = nil hb.StrHashMap = nil hb.MultiSels.Free() - for i := range hb.executor { - if hb.executor[i] != nil { - hb.executor[i].Free() + for i := range hb.executors { + if hb.executors[i] != nil { + hb.executors[i].Free() } } - hb.executor = nil + hb.executors = nil hb.vecs = nil for i := range hb.UniqueJoinKeys { hb.UniqueJoinKeys[i].Free(proc.Mp()) @@ -159,10 +166,10 @@ func (hb *HashmapBuilder) FreeHashMapAndBatches(proc *process.Process) { func (hb *HashmapBuilder) evalJoinCondition(proc *process.Process) error { for idx1 := range hb.Batches.Buf { - tmpVes := make([]*vector.Vector, len(hb.executor)) + tmpVes := make([]*vector.Vector, len(hb.executors)) hb.vecs = append(hb.vecs, tmpVes) - for idx2 := range hb.executor { - vec, err := hb.executor[idx2].Eval(proc, []*batch.Batch{hb.Batches.Buf[idx1]}, nil) + for idx2 := range hb.executors { + vec, err := hb.executors[idx2].Eval(proc, []*batch.Batch{hb.Batches.Buf[idx1]}, nil) if err != nil { return err } @@ -176,6 +183,14 @@ func (hb *HashmapBuilder) evalJoinCondition(proc *process.Process) error { } } } + + if hb.delColIdx != -1 { + hb.delVecs = make([]*vector.Vector, len(hb.Batches.Buf)) + for i := range hb.Batches.Buf { + hb.delVecs[i] = hb.Batches.Buf[i].Vecs[hb.delColIdx] + } + } + return nil } @@ -221,14 +236,14 @@ func (hb *HashmapBuilder) BuildHashmap(hashOnPK bool, needAllocateSels bool, nee hb.MultiSels.InitSel(hb.InputBatchRowCount) } - if hb.IsDedup && hb.OnDuplicateAction == plan.Node_IGNORE && hb.InputBatchRowCount > 0 { + if hb.IsDedup && hb.OnDuplicateAction == plan.Node_IGNORE { hb.IgnoreRows = &bitmap.Bitmap{} hb.IgnoreRows.InitWithSize(int64(hb.InputBatchRowCount)) } var ( cardinality uint64 - sels []int32 + newSels []int64 ) vOld := uint64(0) @@ -322,7 +337,7 @@ func (hb *HashmapBuilder) BuildHashmap(hashOnPK bool, needAllocateSels bool, nee if needUniqueVec { if len(hb.UniqueJoinKeys) == 0 { - hb.UniqueJoinKeys = make([]*vector.Vector, len(hb.executor)) + hb.UniqueJoinKeys = make([]*vector.Vector, len(hb.executors)) for j, vec := range hb.vecs[vecIdx1] { hb.UniqueJoinKeys[j] = vector.NewVec(*vec.GetType()) } @@ -336,31 +351,55 @@ func (hb *HashmapBuilder) BuildHashmap(hashOnPK bool, needAllocateSels bool, nee } } } else { - if sels == nil { - sels = make([]int32, hashmap.UnitLimit) + if newSels == nil { + newSels = make([]int64, hashmap.UnitLimit) } - sels = sels[:0] + newSels = newSels[:0] for j, v := range vals[:n] { if v > cardinality { - sels = append(sels, int32(i+j)) + newSels = append(newSels, int64(vecIdx2+j)) cardinality = v } } for j, vec := range hb.vecs[vecIdx1] { - for _, sel := range sels { - _, idx2 := sel/colexec.DefaultBatchSize, sel%colexec.DefaultBatchSize - err = hb.UniqueJoinKeys[j].UnionOne(vec, int64(idx2), proc.Mp()) - if err != nil { - return err - } + err = hb.UniqueJoinKeys[j].Union(vec, newSels, proc.Mp()) + if err != nil { + return err } } } } } + if hb.delColIdx != -1 { + hb.DelRows = &bitmap.Bitmap{} + hb.DelRows.InitWithSize(int64(cardinality)) + + tmpVecs := make([]*vector.Vector, 1) + for i := 0; i < hb.InputBatchRowCount; i += hashmap.UnitLimit { + if i%(hashmap.UnitLimit*32) == 0 { + runtime.Gosched() + } + n := hb.InputBatchRowCount - i + if n > hashmap.UnitLimit { + n = hashmap.UnitLimit + } + + vecIdx1 := i / colexec.DefaultBatchSize + vecIdx2 := i % colexec.DefaultBatchSize + tmpVecs[0] = hb.delVecs[vecIdx1] + vals, zvals := itr.Find(vecIdx2, n, tmpVecs) + + for k, v := range vals[:n] { + if zvals[k] != 0 && v != 0 { + hb.DelRows.Add(uint64(i + k)) + } + } + } + } + if hb.IsDedup && hb.OnDuplicateAction == plan.Node_IGNORE { err := hb.Batches.Shrink(hb.IgnoreRows, proc) if err != nil { @@ -370,16 +409,15 @@ func (hb *HashmapBuilder) BuildHashmap(hashOnPK bool, needAllocateSels bool, nee // if groupcount == inputrowcount, it means building hashmap on unique rows // we can free sels now - if !hb.IsDedup { - if hb.keyWidth <= 8 { - if hb.InputBatchRowCount == int(hb.IntHashMap.GroupCount()) { - hb.MultiSels.Free() - } - } else { - if hb.InputBatchRowCount == int(hb.StrHashMap.GroupCount()) { - hb.MultiSels.Free() - } + if hb.keyWidth <= 8 { + if hb.InputBatchRowCount == int(hb.IntHashMap.GroupCount()) { + hb.MultiSels.Free() + } + } else { + if hb.InputBatchRowCount == int(hb.StrHashMap.GroupCount()) { + hb.MultiSels.Free() } } + return nil } diff --git a/pkg/sql/colexec/hashmap_util/hashmap_util_test.go b/pkg/sql/colexec/hashmap_util/hashmap_util_test.go index 8e899ac980a61..c1ae49eee740a 100644 --- a/pkg/sql/colexec/hashmap_util/hashmap_util_test.go +++ b/pkg/sql/colexec/hashmap_util/hashmap_util_test.go @@ -44,7 +44,7 @@ func newExpr(pos int32, typ types.Type) *plan.Expr { func TestBuildHashMap(t *testing.T) { var hb HashmapBuilder proc := testutil.NewProcessWithMPool("", mpool.MustNewZero()) - err := hb.Prepare([]*plan.Expr{newExpr(0, types.T_int32.ToType())}, proc) + err := hb.Prepare([]*plan.Expr{newExpr(0, types.T_int32.ToType())}, -1, proc) require.NoError(t, err) inputBatch := testutil.NewBatch([]types.Type{types.T_int32.ToType()}, true, int(100000), proc.Mp()) diff --git a/pkg/sql/colexec/mergegroup/exec.go b/pkg/sql/colexec/mergegroup/exec.go index 1ed5dedb67405..616bb9a567547 100644 --- a/pkg/sql/colexec/mergegroup/exec.go +++ b/pkg/sql/colexec/mergegroup/exec.go @@ -16,13 +16,14 @@ package mergegroup import ( "bytes" + "math" + "github.com/matrixorigin/matrixone/pkg/common/hashmap" "github.com/matrixorigin/matrixone/pkg/container/batch" "github.com/matrixorigin/matrixone/pkg/sql/colexec/aggexec" "github.com/matrixorigin/matrixone/pkg/sql/colexec/group" "github.com/matrixorigin/matrixone/pkg/vm" "github.com/matrixorigin/matrixone/pkg/vm/process" - "math" ) var makeInitialAggListFromList = aggexec.MakeInitialAggListFromList diff --git a/pkg/sql/colexec/shufflebuild/build.go b/pkg/sql/colexec/shufflebuild/build.go index c52842c3c224d..ab8c83f1daa57 100644 --- a/pkg/sql/colexec/shufflebuild/build.go +++ b/pkg/sql/colexec/shufflebuild/build.go @@ -47,7 +47,7 @@ func (shuffleBuild *ShuffleBuild) Prepare(proc *process.Process) (err error) { shuffleBuild.ctr.hashmapBuilder.OnDuplicateAction = shuffleBuild.OnDuplicateAction shuffleBuild.ctr.hashmapBuilder.DedupColName = shuffleBuild.DedupColName shuffleBuild.ctr.hashmapBuilder.DedupColTypes = shuffleBuild.DedupColTypes - return shuffleBuild.ctr.hashmapBuilder.Prepare(shuffleBuild.Conditions, proc) + return shuffleBuild.ctr.hashmapBuilder.Prepare(shuffleBuild.Conditions, -1, proc) } func (shuffleBuild *ShuffleBuild) Call(proc *process.Process) (vm.CallResult, error) { @@ -85,7 +85,7 @@ func (shuffleBuild *ShuffleBuild) Call(proc *process.Process) (vm.CallResult, er } var jm *message.JoinMap if ctr.hashmapBuilder.InputBatchRowCount > 0 { - jm = message.NewJoinMap(ctr.hashmapBuilder.MultiSels, ctr.hashmapBuilder.IntHashMap, ctr.hashmapBuilder.StrHashMap, ctr.hashmapBuilder.Batches.Buf, proc.Mp()) + jm = message.NewJoinMap(ctr.hashmapBuilder.MultiSels, ctr.hashmapBuilder.IntHashMap, ctr.hashmapBuilder.StrHashMap, nil, ctr.hashmapBuilder.Batches.Buf, proc.Mp()) if ap.NeedBatches { jm.SetRowCount(int64(ctr.hashmapBuilder.InputBatchRowCount)) } diff --git a/pkg/sql/colexec/shufflebuild/types.go b/pkg/sql/colexec/shufflebuild/types.go index 669dd10b620cf..1dc270ff08fd9 100644 --- a/pkg/sql/colexec/shufflebuild/types.go +++ b/pkg/sql/colexec/shufflebuild/types.go @@ -52,6 +52,7 @@ type ShuffleBuild struct { OnDuplicateAction plan.Node_OnDuplicateAction DedupColName string DedupColTypes []plan.Type + DelColIdx int32 vm.OperatorBase } diff --git a/pkg/sql/compile/operator.go b/pkg/sql/compile/operator.go index 4b45fe1db6519..c5328dc21e88d 100644 --- a/pkg/sql/compile/operator.go +++ b/pkg/sql/compile/operator.go @@ -18,8 +18,6 @@ import ( "context" "fmt" - "github.com/matrixorigin/matrixone/pkg/sql/colexec/shuffleV2" - "github.com/google/uuid" "github.com/matrixorigin/matrixone/pkg/catalog" "github.com/matrixorigin/matrixone/pkg/common/bitmap" @@ -81,6 +79,7 @@ import ( "github.com/matrixorigin/matrixone/pkg/sql/colexec/sample" "github.com/matrixorigin/matrixone/pkg/sql/colexec/semi" "github.com/matrixorigin/matrixone/pkg/sql/colexec/shuffle" + "github.com/matrixorigin/matrixone/pkg/sql/colexec/shuffleV2" "github.com/matrixorigin/matrixone/pkg/sql/colexec/shufflebuild" "github.com/matrixorigin/matrixone/pkg/sql/colexec/single" "github.com/matrixorigin/matrixone/pkg/sql/colexec/source" @@ -591,6 +590,7 @@ func dupOperator(sourceOp vm.Operator, index int, maxParallel int) vm.Operator { op.DedupColTypes = t.DedupColTypes op.UpdateColIdxList = t.UpdateColIdxList op.UpdateColExprList = t.UpdateColExprList + op.DelColIdx = t.DelColIdx return op case vm.PostDml: @@ -1119,9 +1119,13 @@ func constructDedupJoin(n *plan.Node, leftTypes, rightTypes []types.Type, proc * arg.OnDuplicateAction = n.OnDuplicateAction arg.DedupColName = n.DedupColName arg.DedupColTypes = n.DedupColTypes + arg.DelColIdx = -1 if n.DedupJoinCtx != nil { arg.UpdateColIdxList = n.DedupJoinCtx.UpdateColIdxList arg.UpdateColExprList = n.DedupJoinCtx.UpdateColExprList + if n.OnDuplicateAction == plan.Node_FAIL && len(n.DedupJoinCtx.OldColList) > 0 { + arg.DelColIdx = n.DedupJoinCtx.OldColList[0].ColPos + } } arg.IsShuffle = n.Stats.HashmapStats != nil && n.Stats.HashmapStats.Shuffle for i := range n.SendMsgList { @@ -1831,6 +1835,7 @@ func constructHashBuild(op vm.Operator, proc *process.Process, mcpu int32) *hash ret.OnDuplicateAction = arg.OnDuplicateAction ret.DedupColName = arg.DedupColName ret.DedupColTypes = arg.DedupColTypes + ret.DelColIdx = arg.DelColIdx if len(arg.RuntimeFilterSpecs) > 0 { ret.RuntimeFilterSpec = arg.RuntimeFilterSpecs[0] } @@ -1963,6 +1968,7 @@ func constructShuffleBuild(op vm.Operator, proc *process.Process) *shufflebuild. ret.OnDuplicateAction = arg.OnDuplicateAction ret.DedupColName = arg.DedupColName ret.DedupColTypes = arg.DedupColTypes + ret.DelColIdx = arg.DelColIdx if len(arg.RuntimeFilterSpecs) > 0 { ret.RuntimeFilterSpec = plan2.DeepCopyRuntimeFilterSpec(arg.RuntimeFilterSpecs[0]) } diff --git a/pkg/sql/compile/remoterun.go b/pkg/sql/compile/remoterun.go index c7cda54932380..6cb6a23f4f19e 100644 --- a/pkg/sql/compile/remoterun.go +++ b/pkg/sql/compile/remoterun.go @@ -760,6 +760,7 @@ func convertToPipelineInstruction(op vm.Operator, proc *process.Process, ctx *sc OnDuplicateAction: t.OnDuplicateAction, DedupColName: t.DedupColName, DedupColTypes: t.DedupColTypes, + DelColIdx: t.DelColIdx, } case *shufflebuild.ShuffleBuild: in.ShuffleBuild = &pipeline.Shufflebuild{ @@ -774,6 +775,7 @@ func convertToPipelineInstruction(op vm.Operator, proc *process.Process, ctx *sc OnDuplicateAction: t.OnDuplicateAction, DedupColName: t.DedupColName, DedupColTypes: t.DedupColTypes, + DelColIdx: t.DelColIdx, } case *indexbuild.IndexBuild: in.IndexBuild = &pipeline.Indexbuild{ @@ -793,6 +795,7 @@ func convertToPipelineInstruction(op vm.Operator, proc *process.Process, ctx *sc OnDuplicateAction: t.OnDuplicateAction, DedupColName: t.DedupColName, DedupColTypes: t.DedupColTypes, + DelColIdx: t.DelColIdx, LeftTypes: convertToPlanTypes(t.LeftTypes), RightTypes: convertToPlanTypes(t.RightTypes), UpdateColIdxList: t.UpdateColIdxList, @@ -1286,6 +1289,7 @@ func convertToVmOperator(opr *pipeline.Instruction, ctx *scopeContext, eng engin arg.OnDuplicateAction = t.OnDuplicateAction arg.DedupColName = t.DedupColName arg.DedupColTypes = t.DedupColTypes + arg.DelColIdx = t.DelColIdx op = arg case vm.ShuffleBuild: arg := shufflebuild.NewArgument() @@ -1301,6 +1305,7 @@ func convertToVmOperator(opr *pipeline.Instruction, ctx *scopeContext, eng engin arg.OnDuplicateAction = t.OnDuplicateAction arg.DedupColName = t.DedupColName arg.DedupColTypes = t.DedupColTypes + arg.DelColIdx = t.DelColIdx op = arg case vm.IndexBuild: arg := indexbuild.NewArgument() @@ -1320,6 +1325,7 @@ func convertToVmOperator(opr *pipeline.Instruction, ctx *scopeContext, eng engin arg.OnDuplicateAction = t.OnDuplicateAction arg.DedupColName = t.DedupColName arg.DedupColTypes = t.DedupColTypes + arg.DelColIdx = t.DelColIdx arg.UpdateColIdxList = t.UpdateColIdxList arg.UpdateColExprList = t.UpdateColExprList op = arg diff --git a/pkg/sql/plan/apply_indices.go b/pkg/sql/plan/apply_indices.go index dffd34d661be2..6d9ac9d8604bb 100644 --- a/pkg/sql/plan/apply_indices.go +++ b/pkg/sql/plan/apply_indices.go @@ -887,7 +887,8 @@ func (builder *QueryBuilder) getMostSelectiveIndexForPointSelect(indexes []*Inde func (builder *QueryBuilder) applyIndicesForJoins(nodeID int32, node *plan.Node, colRefCnt map[[2]int32]int, idxColMap map[[2]int32]*plan.Expr) int32 { sid := builder.compCtx.GetProcess().GetService() - if node.JoinType == plan.Node_INDEX { + if node.JoinType != plan.Node_INNER && node.JoinType != plan.Node_RIGHT && node.JoinType != plan.Node_SEMI && + (node.JoinType != plan.Node_ANTI || !node.BuildOnLeft) { return nodeID } diff --git a/pkg/sql/plan/bind_update.go b/pkg/sql/plan/bind_update.go index 929090ffcd698..b929bd77a338a 100644 --- a/pkg/sql/plan/bind_update.go +++ b/pkg/sql/plan/bind_update.go @@ -55,7 +55,6 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) }) } - // TODO: support update primary key or unique key or secondary key or master index or ivfflat index var pkAndUkCols = make(map[string]bool) if tableDef.Pkey != nil { for _, colName := range tableDef.Pkey.Names { @@ -77,7 +76,7 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) for colName, updateExpr := range dmlCtx.updateCol2Expr[i] { if pkAndUkCols[colName] { - return 0, moerr.NewUnsupportedDML(builder.compCtx.GetContext(), "update primary key or unique key or master index or ivfflat index") + return 0, moerr.NewUnsupportedDML(builder.compCtx.GetContext(), "update master index or ivfflat index") } if !dmlCtx.updatePartCol[i] { @@ -217,6 +216,7 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) selectNodeTag := selectNode.BindingTags[0] idxScanNodes := make([][]*plan.Node, len(dmlCtx.tableDefs)) + //pkNeedUpdate := make([]bool, len(dmlCtx.tableDefs)) idxNeedUpdate := make([][]bool, len(dmlCtx.tableDefs)) for i, tableDef := range dmlCtx.tableDefs { diff --git a/pkg/sql/plan/build_constraint_util.go b/pkg/sql/plan/build_constraint_util.go index 3906bbb130907..0ff39d1ef36e7 100644 --- a/pkg/sql/plan/build_constraint_util.go +++ b/pkg/sql/plan/build_constraint_util.go @@ -1464,16 +1464,6 @@ func appendPrimaryConstraintPlan( } if needCheck && useFuzzyFilter { - rfTag := builder.genNewMsgTag() - probeExpr := &plan.Expr{ - Typ: pkTyp, - Expr: &plan.Expr_Col{ - Col: &plan.ColRef{ - Name: tableDef.Pkey.PkeyColName, - ColPos: int32(pkPos), - }, - }, - } // sink_scan sinkScanNode := &Node{ NodeType: plan.Node_SINK_SCAN, @@ -1516,6 +1506,17 @@ func appendPrimaryConstraintPlan( scanTableDef.Partition.PartitionExpression = partitionExpr } + rfTag := builder.genNewMsgTag() + probeExpr := &plan.Expr{ + Typ: pkTyp, + Expr: &plan.Expr_Col{ + Col: &plan.ColRef{ + Name: tableDef.Pkey.PkeyColName, + ColPos: int32(len(scanTableDef.Cols) - 1), + }, + }, + } + scanNode := &plan.Node{ NodeType: plan.Node_TABLE_SCAN, Stats: &plan.Stats{}, diff --git a/pkg/vm/message/joinMapMsg.go b/pkg/vm/message/joinMapMsg.go index 5c1ffd5545065..feb0d60083cac 100644 --- a/pkg/vm/message/joinMapMsg.go +++ b/pkg/vm/message/joinMapMsg.go @@ -20,6 +20,7 @@ import ( "strconv" "sync/atomic" + "github.com/matrixorigin/matrixone/pkg/common/bitmap" "github.com/matrixorigin/matrixone/pkg/common/hashmap" "github.com/matrixorigin/matrixone/pkg/common/mpool" "github.com/matrixorigin/matrixone/pkg/container/batch" @@ -68,22 +69,23 @@ type JoinMap struct { valid bool rowCnt int64 // for debug purpose refCnt int64 + mpool *mpool.MPool shm *hashmap.StrHashMap ihm *hashmap.IntHashMap - mpool *mpool.MPool multiSels JoinSels + delRows *bitmap.Bitmap batches []*batch.Batch - //ignoreRows *bitmap.Bitmap } -func NewJoinMap(sels JoinSels, ihm *hashmap.IntHashMap, shm *hashmap.StrHashMap, batches []*batch.Batch, m *mpool.MPool) *JoinMap { +func NewJoinMap(sels JoinSels, ihm *hashmap.IntHashMap, shm *hashmap.StrHashMap, delRows *bitmap.Bitmap, batches []*batch.Batch, m *mpool.MPool) *JoinMap { return &JoinMap{ + valid: true, + mpool: m, shm: shm, ihm: ihm, multiSels: sels, + delRows: delRows, batches: batches, - mpool: m, - valid: true, } } @@ -159,6 +161,10 @@ func (jm *JoinMap) IsValid() bool { return jm.valid } +func (jm *JoinMap) IsDeleted(row uint64) bool { + return jm.delRows != nil && jm.delRows.Contains(uint64(row)) +} + func (jm *JoinMap) FreeMemory() { jm.multiSels.Free() if jm.ihm != nil { diff --git a/proto/pipeline.proto b/proto/pipeline.proto index 41832cc987e77..bb39493f3171d 100644 --- a/proto/pipeline.proto +++ b/proto/pipeline.proto @@ -371,6 +371,7 @@ message DedupJoin { repeated plan.Type right_types = 13 [(gogoproto.nullable) = false]; repeated int32 update_col_idx_list = 14; repeated plan.Expr update_col_expr_list = 15; + int32 del_col_idx = 16; } message Product { @@ -453,6 +454,7 @@ message HashBuild { plan.Node.OnDuplicateAction on_duplicate_action = 10; string dedup_col_name = 11; repeated plan.Type dedup_col_types = 12 [(gogoproto.nullable) = false]; + int32 del_col_idx = 13; } message Shufflebuild { @@ -467,6 +469,7 @@ message Shufflebuild { plan.Node.OnDuplicateAction on_duplicate_action = 9; string dedup_col_name = 10; repeated plan.Type dedup_col_types = 11 [(gogoproto.nullable) = false]; + int32 del_col_idx = 12; } message Indexbuild {