From e1b3273d1ce6ddee4e819200f6fd1c4da8ab8cc4 Mon Sep 17 00:00:00 2001 From: congqixia Date: Fri, 13 Aug 2021 10:50:09 +0800 Subject: [PATCH] Add Datanode watch etcd channel (#6965) Signed-off-by: Congqi Xia --- internal/datanode/data_node.go | 95 +++++++- internal/datanode/data_node_test.go | 74 ++++++ internal/proto/data_coord.proto | 5 + internal/proto/datapb/data_coord.pb.go | 312 +++++++++++++++---------- 4 files changed, 358 insertions(+), 128 deletions(-) diff --git a/internal/datanode/data_node.go b/internal/datanode/data_node.go index 570703b85e..ad2762a20f 100644 --- a/internal/datanode/data_node.go +++ b/internal/datanode/data_node.go @@ -21,16 +21,22 @@ import ( "io" "math/rand" "strconv" + "strings" "sync" "sync/atomic" "time" + "go.etcd.io/etcd/clientv3" "go.uber.org/zap" + "github.com/golang/protobuf/proto" + etcdkv "github.com/milvus-io/milvus/internal/kv/etcd" "github.com/milvus-io/milvus/internal/log" + "github.com/milvus-io/milvus/internal/logutil" "github.com/milvus-io/milvus/internal/metrics" "github.com/milvus-io/milvus/internal/msgstream" "github.com/milvus-io/milvus/internal/types" + "github.com/milvus-io/milvus/internal/util/retry" "github.com/milvus-io/milvus/internal/util/sessionutil" "github.com/milvus-io/milvus/internal/util/typeutil" @@ -49,6 +55,9 @@ const ( // MetricRequestsSuccess used to count the num of successful requests MetricRequestsSuccess = "success" + + // ConnectEtcdMaxRetryTime used to limit the max retry time for connection etcd + ConnectEtcdMaxRetryTime = 1000 ) // DataNode communicates with outside services and unioun all @@ -82,7 +91,8 @@ type DataNode struct { rootCoord types.RootCoord dataCoord types.DataCoord - session *sessionutil.Session + session *sessionutil.Session + kvClient *etcdkv.EtcdKV closer io.Closer @@ -138,6 +148,9 @@ func (node *DataNode) Register() error { node.session = sessionutil.NewSession(node.ctx, Params.MetaRootPath, Params.EtcdEndpoints) node.session.Init(typeutil.DataNodeRole, Params.IP+":"+strconv.Itoa(Params.Port), false) Params.NodeID = node.session.ServerID + node.NodeID = node.session.ServerID + // Start node watch node + go node.StartWatchChannels(node.ctx) Params.initMsgChannelSubName() log.Debug("DataNode Init", @@ -156,6 +169,69 @@ func (node *DataNode) Init() error { return nil } +// StartWatchChannels start loop to watch channel allocation status via kv(etcd for now) +func (node *DataNode) StartWatchChannels(ctx context.Context) { + defer logutil.LogPanic() + // REF MEP#7 watch path should be [prefix]/channel/{node_id}/{channel_name} + watchPrefix := fmt.Sprintf("channel/%d", node.NodeID) + evtChan := node.kvClient.WatchWithPrefix(watchPrefix) + for { + select { + case <-ctx.Done(): + log.Debug("watch etcd loop quit") + return + case event := <-evtChan: + if event.Canceled { // failed to watch + log.Warn("Watch channel failed", zap.Error(event.Err())) + // if watch loop return due to event canceled, the datanode is not functional anymore + // stop the datanode and wait for restart + node.Stop() + return + } + for _, evt := range event.Events { + go node.handleChannelEvt(evt) + } + } + } +} + +// handleChannelEvt handels event from kv watch event +func (node *DataNode) handleChannelEvt(evt *clientv3.Event) { + switch evt.Type { + case clientv3.EventTypePut: // datacoord shall put channels needs to be watched here + watchInfo := datapb.ChannelWatchInfo{} + err := proto.Unmarshal(evt.Kv.Value, &watchInfo) + if err != nil { + log.Warn("fail to parse ChannelWatchInfo", zap.String("key", string(evt.Kv.Key)), zap.Error(err)) + return + } + if watchInfo.State == datapb.ChannelWatchState_Complete { + return + } + if watchInfo.Vchan == nil { + log.Warn("found ChannelWatchInfo with nil VChannelInfo", zap.String("key", string(evt.Kv.Key))) + return + } + err = node.NewDataSyncService(watchInfo.Vchan) + if err != nil { + log.Warn("fail to create DataSyncService", zap.String("key", string(evt.Kv.Key)), zap.Error(err)) + return + } + watchInfo.State = datapb.ChannelWatchState_Complete + v, _ := proto.Marshal(&watchInfo) + err = node.kvClient.Save(fmt.Sprintf("channel/%d/%s", node.NodeID, watchInfo.Vchan.ChannelName), string(v)) + if err != nil { + log.Warn("fail to change WatchState to complete", zap.String("key", string(evt.Kv.Key)), zap.Error(err)) + node.ReleaseDataSyncService(string(evt.Kv.Key)) + // maybe retry logic and exit logic + } + case clientv3.EventTypeDelete: + // guaranteed there is no "/" in channel name + parts := strings.Split(string(evt.Kv.Key), "/") + node.ReleaseDataSyncService(parts[len(parts)-1]) + } +} + // NewDataSyncService adds a new dataSyncService for new dmlVchannel and starts dataSyncService. func (node *DataNode) NewDataSyncService(vchan *datapb.VchannelInfo) error { node.chanMut.Lock() @@ -238,6 +314,23 @@ func (node *DataNode) Start() error { }, Count: 1, }) + if err != nil { + log.Warn("fail to alloc timestamp", zap.Error(err)) + return err + } + + connectEtcdFn := func() error { + etcdClient, err := clientv3.New(clientv3.Config{Endpoints: Params.EtcdEndpoints}) + if err != nil { + return err + } + node.kvClient = etcdkv.NewEtcdKV(etcdClient, Params.MetaRootPath) + return nil + } + err = retry.Do(node.ctx, connectEtcdFn, retry.Attempts(ConnectEtcdMaxRetryTime)) + if err != nil { + return errors.New("DataNode fail to connect etcd") + } if rep.Status.ErrorCode != commonpb.ErrorCode_Success || err != nil { return errors.New("DataNode fail to start") diff --git a/internal/datanode/data_node_test.go b/internal/datanode/data_node_test.go index 46ecab9e86..c9917274b3 100644 --- a/internal/datanode/data_node_test.go +++ b/internal/datanode/data_node_test.go @@ -13,15 +13,21 @@ package datanode import ( "context" + "fmt" "math" + "math/rand" "os" + "strings" "testing" "time" + "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + "go.etcd.io/etcd/clientv3" "go.uber.org/zap" + etcdkv "github.com/milvus-io/milvus/internal/kv/etcd" "github.com/milvus-io/milvus/internal/log" "github.com/milvus-io/milvus/internal/msgstream" "github.com/milvus-io/milvus/internal/proto/commonpb" @@ -30,6 +36,7 @@ import ( ) func TestMain(t *testing.M) { + rand.Seed(time.Now().Unix()) Params.InitAlias("datanode-alias-1") Params.Init() refreshChannelNames() @@ -315,3 +322,70 @@ func TestDataNode(t *testing.T) { <-node.ctx.Done() node.Stop() } + +func TestWatchChannel(t *testing.T) { + ctx, cancel := context.WithCancel(context.Background()) + node := newIDLEDataNodeMock(ctx) + node.Init() + node.Start() + node.Register() + + defer cancel() + + t.Run("test watch channel", func(t *testing.T) { + client, err := clientv3.New(clientv3.Config{Endpoints: Params.EtcdEndpoints}) + assert.Nil(t, err) + if assert.NotNil(t, client) { + + kv := etcdkv.NewEtcdKV(client, Params.MetaRootPath) + ch := fmt.Sprintf("datanode-etcd-test-channel_%d", rand.Int31()) + path := fmt.Sprintf("channel/%d/%s", node.NodeID, ch) + c := make(chan struct{}) + go func() { + ec := kv.WatchWithPrefix(fmt.Sprintf("channel/%d", node.NodeID)) + cnt := 0 + for { + evt := <-ec + for _, event := range evt.Events { + if strings.Contains(string(event.Kv.Key), ch) { + cnt++ + } + } + if cnt >= 2 { + break + } + } + c <- struct{}{} + }() + + vchan := &datapb.VchannelInfo{ + CollectionID: 1, + ChannelName: ch, + UnflushedSegments: []*datapb.SegmentInfo{}, + } + info := &datapb.ChannelWatchInfo{ + State: datapb.ChannelWatchState_Uncomplete, + Vchan: vchan, + } + val, err := proto.Marshal(info) + assert.Nil(t, err) + err = kv.Save(path, string(val)) + assert.Nil(t, err) + + <-c + node.chanMut.RLock() + _, has := node.vchan2SyncService[ch] + node.chanMut.RUnlock() + assert.True(t, has) + + kv.RemoveWithPrefix(fmt.Sprintf("channel/%d", node.NodeID)) + //TODO there is not way to sync Release done, use sleep for now + time.Sleep(100 * time.Millisecond) + + node.chanMut.RLock() + _, has = node.vchan2SyncService[ch] + node.chanMut.RUnlock() + assert.False(t, has) + } + }) +} diff --git a/internal/proto/data_coord.proto b/internal/proto/data_coord.proto index bd8bd01478..57fe0f4a6c 100644 --- a/internal/proto/data_coord.proto +++ b/internal/proto/data_coord.proto @@ -306,3 +306,8 @@ message SegmentFlushCompletedMsg { SegmentInfo segment = 2; } +message ChannelWatchInfo { + VchannelInfo vchan= 1; + int64 startTs = 2; + ChannelWatchState state = 3; +} diff --git a/internal/proto/datapb/data_coord.pb.go b/internal/proto/datapb/data_coord.pb.go index c543e241f1..2b3f57cf6f 100644 --- a/internal/proto/datapb/data_coord.pb.go +++ b/internal/proto/datapb/data_coord.pb.go @@ -2420,6 +2420,61 @@ func (m *SegmentFlushCompletedMsg) GetSegment() *SegmentInfo { return nil } +type ChannelWatchInfo struct { + Vchan *VchannelInfo `protobuf:"bytes,1,opt,name=vchan,proto3" json:"vchan,omitempty"` + StartTs int64 `protobuf:"varint,2,opt,name=startTs,proto3" json:"startTs,omitempty"` + State ChannelWatchState `protobuf:"varint,3,opt,name=state,proto3,enum=milvus.proto.data.ChannelWatchState" json:"state,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ChannelWatchInfo) Reset() { *m = ChannelWatchInfo{} } +func (m *ChannelWatchInfo) String() string { return proto.CompactTextString(m) } +func (*ChannelWatchInfo) ProtoMessage() {} +func (*ChannelWatchInfo) Descriptor() ([]byte, []int) { + return fileDescriptor_82cd95f524594f49, []int{43} +} + +func (m *ChannelWatchInfo) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ChannelWatchInfo.Unmarshal(m, b) +} +func (m *ChannelWatchInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ChannelWatchInfo.Marshal(b, m, deterministic) +} +func (m *ChannelWatchInfo) XXX_Merge(src proto.Message) { + xxx_messageInfo_ChannelWatchInfo.Merge(m, src) +} +func (m *ChannelWatchInfo) XXX_Size() int { + return xxx_messageInfo_ChannelWatchInfo.Size(m) +} +func (m *ChannelWatchInfo) XXX_DiscardUnknown() { + xxx_messageInfo_ChannelWatchInfo.DiscardUnknown(m) +} + +var xxx_messageInfo_ChannelWatchInfo proto.InternalMessageInfo + +func (m *ChannelWatchInfo) GetVchan() *VchannelInfo { + if m != nil { + return m.Vchan + } + return nil +} + +func (m *ChannelWatchInfo) GetStartTs() int64 { + if m != nil { + return m.StartTs + } + return 0 +} + +func (m *ChannelWatchInfo) GetState() ChannelWatchState { + if m != nil { + return m.State + } + return ChannelWatchState_Uncomplete +} + func init() { proto.RegisterEnum("milvus.proto.data.ChannelWatchState", ChannelWatchState_name, ChannelWatchState_value) proto.RegisterType((*FlushRequest)(nil), "milvus.proto.data.FlushRequest") @@ -2465,139 +2520,142 @@ func init() { proto.RegisterType((*GetFlushedSegmentsRequest)(nil), "milvus.proto.data.GetFlushedSegmentsRequest") proto.RegisterType((*GetFlushedSegmentsResponse)(nil), "milvus.proto.data.GetFlushedSegmentsResponse") proto.RegisterType((*SegmentFlushCompletedMsg)(nil), "milvus.proto.data.SegmentFlushCompletedMsg") + proto.RegisterType((*ChannelWatchInfo)(nil), "milvus.proto.data.ChannelWatchInfo") } func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) } var fileDescriptor_82cd95f524594f49 = []byte{ - // 2025 bytes of a gzipped FileDescriptorProto + // 2060 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x1a, 0x5b, 0x6f, 0x1b, 0x59, - 0xb9, 0xe3, 0x89, 0x13, 0xfb, 0xf3, 0xd8, 0x49, 0x0f, 0x21, 0x6b, 0xdc, 0x36, 0x4d, 0x87, 0xdd, - 0x6e, 0xb6, 0xb0, 0xc9, 0xd6, 0x45, 0xe2, 0x52, 0x16, 0xb4, 0x8d, 0xdb, 0xc8, 0x22, 0x29, 0xe1, - 0xa4, 0xbb, 0x2b, 0xb1, 0x42, 0xd6, 0xc4, 0x73, 0xe2, 0x0c, 0x9d, 0x8b, 0x77, 0xce, 0x38, 0x4d, - 0x9f, 0x76, 0xb5, 0x48, 0x20, 0x10, 0xe2, 0x22, 0xc4, 0x1b, 0x0f, 0x80, 0x84, 0x84, 0xc4, 0x0b, - 0xff, 0x80, 0x57, 0x7e, 0x16, 0x9a, 0x73, 0xce, 0x9c, 0xb9, 0xda, 0x9e, 0x3a, 0x74, 0xf3, 0x96, - 0x73, 0xe6, 0xbb, 0x9d, 0xef, 0xfe, 0x7d, 0x0e, 0xac, 0x99, 0x46, 0x60, 0x0c, 0x86, 0x9e, 0xe7, - 0x9b, 0x3b, 0x63, 0xdf, 0x0b, 0x3c, 0x74, 0xdd, 0xb1, 0xec, 0xf3, 0x09, 0xe5, 0xa7, 0x9d, 0xf0, - 0x73, 0x47, 0x1b, 0x7a, 0x8e, 0xe3, 0xb9, 0xfc, 0xaa, 0xd3, 0xb2, 0xdc, 0x80, 0xf8, 0xae, 0x61, - 0x8b, 0xb3, 0x96, 0x44, 0xe8, 0x68, 0x74, 0x78, 0x46, 0x1c, 0x83, 0x9f, 0xf4, 0x0b, 0xd0, 0x9e, - 0xd8, 0x13, 0x7a, 0x86, 0xc9, 0xa7, 0x13, 0x42, 0x03, 0xf4, 0x1e, 0x2c, 0x9d, 0x18, 0x94, 0xb4, - 0x95, 0x2d, 0x65, 0xbb, 0xd1, 0xbd, 0xb9, 0x93, 0xe2, 0x25, 0xb8, 0x1c, 0xd2, 0xd1, 0x23, 0x83, - 0x12, 0xcc, 0x20, 0x11, 0x82, 0x25, 0xf3, 0xa4, 0xdf, 0x6b, 0x57, 0xb6, 0x94, 0x6d, 0x15, 0xb3, - 0xbf, 0x91, 0x0e, 0xda, 0xd0, 0xb3, 0x6d, 0x32, 0x0c, 0x2c, 0xcf, 0xed, 0xf7, 0xda, 0x4b, 0xec, - 0x5b, 0xea, 0x4e, 0xff, 0x8b, 0x02, 0x4d, 0xc1, 0x9a, 0x8e, 0x3d, 0x97, 0x12, 0xf4, 0x00, 0x96, - 0x69, 0x60, 0x04, 0x13, 0x2a, 0xb8, 0xdf, 0x28, 0xe4, 0x7e, 0xcc, 0x40, 0xb0, 0x00, 0x2d, 0xc5, - 0x5e, 0xcd, 0xb3, 0x47, 0x9b, 0x00, 0x94, 0x8c, 0x1c, 0xe2, 0x06, 0xfd, 0x1e, 0x6d, 0x2f, 0x6d, - 0xa9, 0xdb, 0x2a, 0x4e, 0xdc, 0xe8, 0x7f, 0x54, 0x60, 0xed, 0x38, 0x3a, 0x46, 0xda, 0x59, 0x87, - 0xea, 0xd0, 0x9b, 0xb8, 0x01, 0x13, 0xb0, 0x89, 0xf9, 0x01, 0xdd, 0x01, 0x6d, 0x78, 0x66, 0xb8, - 0x2e, 0xb1, 0x07, 0xae, 0xe1, 0x10, 0x26, 0x4a, 0x1d, 0x37, 0xc4, 0xdd, 0x53, 0xc3, 0x21, 0xa5, - 0x24, 0xda, 0x82, 0xc6, 0xd8, 0xf0, 0x03, 0x2b, 0xa5, 0xb3, 0xe4, 0x95, 0xfe, 0x57, 0x05, 0x36, - 0x3e, 0xa0, 0xd4, 0x1a, 0xb9, 0x39, 0xc9, 0x36, 0x60, 0xd9, 0xf5, 0x4c, 0xd2, 0xef, 0x31, 0xd1, - 0x54, 0x2c, 0x4e, 0xe8, 0x06, 0xd4, 0xc7, 0x84, 0xf8, 0x03, 0xdf, 0xb3, 0x23, 0xc1, 0x6a, 0xe1, - 0x05, 0xf6, 0x6c, 0x82, 0x7e, 0x02, 0xd7, 0x69, 0x86, 0x10, 0x6d, 0xab, 0x5b, 0xea, 0x76, 0xa3, - 0xfb, 0xf5, 0x9d, 0x9c, 0x97, 0xed, 0x64, 0x99, 0xe2, 0x3c, 0xb6, 0xfe, 0x79, 0x05, 0xbe, 0x22, - 0xe1, 0xb8, 0xac, 0xe1, 0xdf, 0xa1, 0xe6, 0x28, 0x19, 0x49, 0xf1, 0xf8, 0xa1, 0x8c, 0xe6, 0xa4, - 0xca, 0xd5, 0xa4, 0xca, 0x4b, 0x38, 0x58, 0x56, 0x9f, 0xd5, 0x9c, 0x3e, 0xd1, 0x6d, 0x68, 0x90, - 0x8b, 0xb1, 0xe5, 0x93, 0x41, 0x60, 0x39, 0xa4, 0xbd, 0xbc, 0xa5, 0x6c, 0x2f, 0x61, 0xe0, 0x57, - 0xcf, 0x2c, 0x27, 0xe9, 0x91, 0x2b, 0xa5, 0x3d, 0x52, 0xff, 0xbb, 0x02, 0x6f, 0xe4, 0xac, 0x24, - 0x5c, 0x1c, 0xc3, 0x1a, 0x7b, 0x79, 0xac, 0x99, 0xd0, 0xd9, 0x43, 0x85, 0xdf, 0x9d, 0xa5, 0xf0, - 0x18, 0x1c, 0xe7, 0xf0, 0x13, 0x42, 0x56, 0xca, 0x0b, 0xf9, 0x1c, 0xde, 0xd8, 0x27, 0x81, 0x60, - 0x10, 0x7e, 0x23, 0x74, 0xf1, 0x14, 0x90, 0x8e, 0xa5, 0x4a, 0x2e, 0x96, 0xfe, 0x5d, 0x91, 0xb1, - 0xc4, 0x58, 0xf5, 0xdd, 0x53, 0x0f, 0xdd, 0x84, 0xba, 0x04, 0x11, 0x5e, 0x11, 0x5f, 0xa0, 0x6f, - 0x43, 0x35, 0x94, 0x94, 0xbb, 0x44, 0xab, 0x7b, 0xa7, 0xf8, 0x4d, 0x09, 0x9a, 0x98, 0xc3, 0xa3, - 0x3e, 0xb4, 0x68, 0x60, 0xf8, 0xc1, 0x60, 0xec, 0x51, 0x66, 0x67, 0xe6, 0x38, 0x8d, 0xae, 0x9e, - 0xa6, 0x20, 0x53, 0xe4, 0x21, 0x1d, 0x1d, 0x09, 0x48, 0xdc, 0x64, 0x98, 0xd1, 0x11, 0x3d, 0x06, - 0x8d, 0xb8, 0x66, 0x4c, 0x68, 0xa9, 0x34, 0xa1, 0x06, 0x71, 0x4d, 0x49, 0x26, 0xb6, 0x4f, 0xb5, - 0xbc, 0x7d, 0x7e, 0xab, 0x40, 0x3b, 0x6f, 0xa0, 0xcb, 0x24, 0xca, 0x87, 0x1c, 0x89, 0x70, 0x03, - 0xcd, 0x8c, 0x70, 0x69, 0x24, 0x2c, 0x50, 0x74, 0x0b, 0xbe, 0x1a, 0x4b, 0xc3, 0xbe, 0xbc, 0x36, - 0x67, 0xf9, 0x85, 0x02, 0x1b, 0x59, 0x5e, 0x97, 0x79, 0xf7, 0xb7, 0xa0, 0x6a, 0xb9, 0xa7, 0x5e, - 0xf4, 0xec, 0xcd, 0x19, 0x71, 0x16, 0xf2, 0xe2, 0xc0, 0xba, 0x03, 0x37, 0xf6, 0x49, 0xd0, 0x77, - 0x29, 0xf1, 0x83, 0x47, 0x96, 0x6b, 0x7b, 0xa3, 0x23, 0x23, 0x38, 0xbb, 0x44, 0x8c, 0xa4, 0xdc, - 0xbd, 0x92, 0x71, 0x77, 0xfd, 0x9f, 0x0a, 0xdc, 0x2c, 0xe6, 0x27, 0x9e, 0xde, 0x81, 0xda, 0xa9, - 0x45, 0x6c, 0x33, 0xd4, 0x99, 0xc2, 0x74, 0x26, 0xcf, 0x61, 0xac, 0x8c, 0x43, 0x60, 0xf1, 0xc2, - 0x3b, 0x53, 0x1c, 0xf4, 0x38, 0xf0, 0x2d, 0x77, 0x74, 0x60, 0xd1, 0x00, 0x73, 0xf8, 0x84, 0x3e, - 0xd5, 0xf2, 0x9e, 0xf9, 0x1b, 0x05, 0x36, 0xf7, 0x49, 0xb0, 0x27, 0x53, 0x6d, 0xf8, 0xdd, 0xa2, - 0x81, 0x35, 0xa4, 0xaf, 0xb7, 0x89, 0x28, 0xa8, 0x99, 0xfa, 0xef, 0x15, 0xb8, 0x3d, 0x55, 0x18, - 0xa1, 0x3a, 0x91, 0x4a, 0xa2, 0x44, 0x5b, 0x9c, 0x4a, 0x7e, 0x44, 0x5e, 0x7e, 0x64, 0xd8, 0x13, - 0x72, 0x64, 0x58, 0x3e, 0x4f, 0x25, 0x0b, 0x26, 0xd6, 0x7f, 0x29, 0x70, 0x6b, 0x9f, 0x04, 0x47, - 0x51, 0x99, 0xb9, 0x42, 0xed, 0x94, 0xe8, 0x28, 0x7e, 0xc7, 0x8d, 0x59, 0x28, 0xed, 0x95, 0xa8, - 0x6f, 0x93, 0xc5, 0x41, 0x22, 0x20, 0xf7, 0x78, 0x2f, 0x20, 0x94, 0xa7, 0xff, 0xb9, 0x02, 0xda, - 0x47, 0xa2, 0x3f, 0x60, 0x65, 0x24, 0xab, 0x07, 0xa5, 0x58, 0x0f, 0x89, 0x96, 0xa2, 0xa8, 0xcb, - 0xd8, 0x87, 0x26, 0x25, 0xe4, 0xf9, 0x22, 0x45, 0x43, 0x0b, 0x11, 0x65, 0xb2, 0x3f, 0x80, 0xeb, - 0x13, 0xf7, 0x34, 0x6c, 0x6b, 0x89, 0x29, 0x5e, 0xc1, 0xbb, 0xcb, 0xf9, 0x99, 0x27, 0x8f, 0x88, - 0xb6, 0x61, 0x35, 0x4b, 0xab, 0xca, 0x82, 0x3f, 0x7b, 0xad, 0xff, 0x5a, 0x81, 0x8d, 0x8f, 0x8d, - 0x60, 0x78, 0xd6, 0x73, 0x84, 0xc6, 0x2e, 0xe1, 0x6f, 0xef, 0x43, 0xfd, 0x5c, 0x68, 0x27, 0x4a, - 0x2a, 0xb7, 0x0b, 0x84, 0x4f, 0xda, 0x01, 0xc7, 0x18, 0x61, 0x9b, 0xba, 0xce, 0x3a, 0xfb, 0x48, - 0xba, 0x2f, 0xdf, 0xf3, 0xe7, 0x75, 0xf7, 0x17, 0x00, 0x42, 0xb8, 0x43, 0x3a, 0x5a, 0x40, 0xae, - 0xef, 0xc0, 0x8a, 0xa0, 0x26, 0x9c, 0x7b, 0x9e, 0x71, 0x23, 0x70, 0xfd, 0x18, 0x36, 0xc4, 0xfd, - 0x93, 0x30, 0x7f, 0xf3, 0x5c, 0x7f, 0x48, 0x02, 0x03, 0xb5, 0x61, 0x45, 0xa4, 0x74, 0xe1, 0xc4, - 0xd1, 0x31, 0xec, 0x53, 0x4f, 0x18, 0xdc, 0x20, 0xcc, 0xdb, 0xc2, 0x7f, 0xe1, 0x44, 0x96, 0x09, - 0xfd, 0x67, 0xd0, 0xec, 0xf5, 0x0e, 0x12, 0xb4, 0xee, 0xc2, 0xaa, 0x69, 0xda, 0x83, 0x24, 0x96, - 0xc2, 0xb0, 0x9a, 0xa6, 0x69, 0xc7, 0xf5, 0x05, 0xbd, 0x09, 0xad, 0x80, 0x0e, 0xf2, 0xc4, 0xb5, - 0x80, 0xc6, 0x50, 0xfa, 0x21, 0xb4, 0x98, 0xb0, 0xcc, 0xa8, 0x73, 0x64, 0xbd, 0x03, 0x5a, 0x82, - 0x1c, 0x77, 0x9f, 0x3a, 0x6e, 0xc4, 0xc2, 0xb2, 0x0a, 0x12, 0xb5, 0x83, 0x31, 0xc5, 0xd9, 0xed, - 0xe0, 0x2d, 0x00, 0x8b, 0x0e, 0x84, 0xd3, 0x33, 0x19, 0x6b, 0xb8, 0x6e, 0xd1, 0x27, 0xfc, 0x02, - 0x7d, 0x17, 0x96, 0x19, 0x7f, 0x1e, 0x1e, 0xb9, 0x24, 0xc5, 0xac, 0x91, 0x7e, 0x01, 0x16, 0x08, - 0xfa, 0x87, 0xa0, 0xf5, 0x7a, 0x07, 0xb1, 0x1c, 0x65, 0xf2, 0x49, 0x89, 0x37, 0x7e, 0x06, 0xad, - 0xb8, 0x28, 0xb1, 0x44, 0xd5, 0x82, 0x8a, 0x24, 0x57, 0xe9, 0xf7, 0xd0, 0xfb, 0xb0, 0xcc, 0x27, - 0x71, 0xe1, 0x41, 0x6f, 0xa5, 0x65, 0x16, 0x53, 0x7a, 0xa2, 0xb2, 0xb1, 0x0b, 0x2c, 0x90, 0x42, - 0x0f, 0x97, 0x89, 0x9c, 0x0f, 0x6d, 0x2a, 0x4e, 0xdc, 0xe8, 0xff, 0x51, 0xa1, 0x91, 0x70, 0xc0, - 0x1c, 0xfb, 0xec, 0x3b, 0x2b, 0xf3, 0xeb, 0x87, 0x9a, 0x9f, 0xa0, 0xde, 0x82, 0x96, 0xc5, 0x7a, - 0x96, 0x81, 0x88, 0x7e, 0x56, 0x64, 0xea, 0xb8, 0xc9, 0x6f, 0x45, 0x2a, 0x42, 0x9b, 0xd0, 0x70, - 0x27, 0xce, 0xc0, 0x3b, 0x1d, 0xf8, 0xde, 0x0b, 0x2a, 0x46, 0xb1, 0xba, 0x3b, 0x71, 0x7e, 0x7c, - 0x8a, 0xbd, 0x17, 0x34, 0xee, 0xf6, 0x97, 0x5f, 0xb1, 0xdb, 0x7f, 0x0c, 0x9a, 0xe9, 0xd8, 0x71, - 0xda, 0x5e, 0x29, 0xdf, 0xa2, 0x9b, 0x8e, 0x2d, 0xb3, 0xf6, 0x26, 0x34, 0x1c, 0xe3, 0x22, 0x14, - 0x6e, 0xe0, 0x4e, 0x9c, 0x76, 0x8d, 0xcb, 0xe7, 0x18, 0x17, 0xd8, 0x7b, 0xf1, 0x74, 0xe2, 0xa0, - 0x6d, 0x58, 0xb3, 0x0d, 0x1a, 0x0c, 0x92, 0xd3, 0x62, 0x9d, 0x4d, 0x8b, 0xad, 0xf0, 0xfe, 0x71, - 0x3c, 0x31, 0xe6, 0xc7, 0x0f, 0x58, 0x70, 0xfc, 0xd0, 0x1f, 0x40, 0xa3, 0xdf, 0xeb, 0x86, 0xee, - 0x14, 0xf6, 0x6c, 0x39, 0x03, 0xae, 0x43, 0xf5, 0x28, 0xe1, 0x7d, 0xd5, 0xc8, 0xef, 0xd6, 0x63, - 0x3d, 0x25, 0x66, 0x99, 0xbc, 0x5c, 0xca, 0xa2, 0x63, 0xd1, 0xec, 0x4e, 0xf6, 0x57, 0x2a, 0x6c, - 0x1c, 0x1b, 0xe7, 0xe4, 0xf5, 0x37, 0xcd, 0xa5, 0x0a, 0xc1, 0x01, 0x5c, 0x67, 0x81, 0xde, 0x4d, - 0xc8, 0x33, 0xa3, 0x1e, 0x27, 0x14, 0x8e, 0xf3, 0x88, 0xe8, 0x87, 0x61, 0x23, 0x41, 0x86, 0xcf, - 0x8f, 0x3c, 0x2b, 0xaa, 0xc5, 0x8d, 0xee, 0xad, 0x02, 0x3a, 0x7b, 0x12, 0x0a, 0x27, 0x31, 0xd0, - 0x11, 0xac, 0xa6, 0xcd, 0x40, 0xdb, 0xcb, 0x8c, 0xc8, 0xdb, 0x33, 0xa7, 0xb1, 0x58, 0xfb, 0xb8, - 0x95, 0x32, 0x06, 0x65, 0x99, 0x58, 0xa4, 0xc5, 0x15, 0x96, 0x16, 0xa3, 0x63, 0x98, 0x66, 0x21, - 0x96, 0x63, 0x4e, 0x82, 0xfd, 0x01, 0xd4, 0xa4, 0x67, 0x54, 0x4a, 0x7b, 0x86, 0xc4, 0xc9, 0x46, - 0xb8, 0x9a, 0x89, 0x70, 0xfd, 0x0b, 0x05, 0x9a, 0x3d, 0x23, 0x30, 0x9e, 0x7a, 0x26, 0x79, 0xb6, - 0x60, 0xd1, 0x2d, 0xb1, 0x2d, 0xba, 0x09, 0xf5, 0x30, 0x38, 0x69, 0x60, 0x38, 0x63, 0x26, 0xc4, - 0x12, 0x8e, 0x2f, 0xc2, 0xd1, 0xb2, 0x29, 0x52, 0xd2, 0xb1, 0xdc, 0x1e, 0x32, 0x52, 0xbc, 0x38, - 0xb2, 0xbf, 0xd1, 0xf7, 0xd2, 0xab, 0x87, 0x37, 0x0b, 0xcd, 0xcb, 0x88, 0xb0, 0x86, 0x2b, 0x95, - 0x8f, 0xca, 0xcc, 0x2c, 0x9f, 0x2b, 0xa0, 0x45, 0xaa, 0x60, 0xa9, 0xb9, 0x0d, 0x2b, 0x86, 0x69, - 0xfa, 0x84, 0x52, 0x21, 0x47, 0x74, 0x0c, 0xbf, 0x9c, 0x13, 0x9f, 0x46, 0x46, 0x51, 0x71, 0x74, - 0x44, 0xdf, 0x87, 0x9a, 0xec, 0xd0, 0xf8, 0xc6, 0x6e, 0x6b, 0xba, 0x9c, 0xa2, 0xc7, 0x96, 0x18, - 0xba, 0x0f, 0x2d, 0xe1, 0x5c, 0xdc, 0xbb, 0xe9, 0x1c, 0xef, 0x78, 0x04, 0xda, 0x69, 0xdc, 0xad, - 0xcc, 0x1a, 0xa5, 0x13, 0x4d, 0x0d, 0x4e, 0xe1, 0xe8, 0x1f, 0x40, 0x23, 0xf1, 0x71, 0x46, 0x07, - 0xd1, 0x86, 0x95, 0x93, 0x04, 0x9f, 0x3a, 0x8e, 0x8e, 0xfa, 0x7f, 0x15, 0xb6, 0xb5, 0xc2, 0x64, - 0xe8, 0x9d, 0x13, 0xff, 0xe5, 0xe5, 0x77, 0x03, 0x0f, 0x13, 0x5a, 0x2c, 0xd9, 0xe7, 0x4a, 0x04, - 0xf4, 0x30, 0x96, 0x53, 0x9d, 0xda, 0x75, 0xa4, 0xd5, 0x1c, 0x3f, 0xe5, 0x0f, 0x7c, 0xcb, 0x91, - 0x7e, 0xca, 0xa2, 0x69, 0xf2, 0xff, 0x52, 0xcb, 0xf5, 0x3f, 0x29, 0xf0, 0xb5, 0x7d, 0x12, 0x3c, - 0x49, 0x4f, 0x16, 0x57, 0x2d, 0x95, 0x03, 0x9d, 0x22, 0xa1, 0x2e, 0x63, 0xf5, 0x0e, 0xd4, 0x68, - 0x34, 0x4e, 0xf1, 0xfd, 0x93, 0x3c, 0xeb, 0xbf, 0x54, 0xa0, 0x9d, 0xec, 0x4d, 0xf7, 0x3c, 0x67, - 0x6c, 0x93, 0x80, 0x98, 0x5f, 0xf2, 0x9c, 0x70, 0xef, 0x3e, 0x5c, 0xcf, 0x65, 0x19, 0xd4, 0x02, - 0xf8, 0xd0, 0x1d, 0x0a, 0x91, 0xd6, 0xae, 0x21, 0x0d, 0x6a, 0x91, 0x80, 0x6b, 0x4a, 0xf7, 0x6f, - 0x1a, 0xd4, 0xc3, 0xc4, 0xb2, 0xe7, 0x79, 0xbe, 0x89, 0xc6, 0x80, 0xd8, 0x66, 0xc4, 0x19, 0x7b, - 0xae, 0x5c, 0x21, 0xa2, 0xf7, 0xa6, 0x64, 0xf5, 0x3c, 0xa8, 0x30, 0x7c, 0xe7, 0xee, 0x14, 0x8c, - 0x0c, 0xb8, 0x7e, 0x0d, 0x39, 0x8c, 0x63, 0xd8, 0x06, 0x3d, 0xb3, 0x86, 0xcf, 0xa3, 0xde, 0x6f, - 0x06, 0xc7, 0x0c, 0x68, 0xc4, 0x31, 0xb3, 0x99, 0x14, 0x07, 0xbe, 0xbe, 0x8a, 0x2c, 0xaf, 0x5f, - 0x43, 0x9f, 0xc2, 0xfa, 0x3e, 0x09, 0xe2, 0x8d, 0x45, 0xc4, 0xb0, 0x3b, 0x9d, 0x61, 0x0e, 0xf8, - 0x15, 0x59, 0x1e, 0x40, 0x95, 0x79, 0x05, 0x2a, 0x4a, 0x13, 0xc9, 0xdf, 0xd1, 0x3a, 0x5b, 0xd3, - 0x01, 0x24, 0xb5, 0x9f, 0xc3, 0x6a, 0xe6, 0x77, 0x02, 0xf4, 0x4e, 0x01, 0x5a, 0xf1, 0x2f, 0x3e, - 0x9d, 0x7b, 0x65, 0x40, 0x25, 0xaf, 0x11, 0xb4, 0xd2, 0x7b, 0x15, 0xb4, 0x5d, 0x80, 0x5f, 0xb8, - 0xe3, 0xed, 0xbc, 0x53, 0x02, 0x52, 0x32, 0x72, 0x60, 0x2d, 0xbb, 0xb7, 0x46, 0xf7, 0x66, 0x12, - 0x48, 0xbb, 0xdb, 0x37, 0x4a, 0xc1, 0x4a, 0x76, 0x2f, 0x99, 0x13, 0xe4, 0xf6, 0xa6, 0x68, 0xa7, - 0x98, 0xcc, 0xb4, 0x85, 0x6e, 0x67, 0xb7, 0x34, 0xbc, 0x64, 0xfd, 0x05, 0xaf, 0x46, 0x45, 0xbb, - 0x47, 0x74, 0xbf, 0x98, 0xdc, 0x8c, 0xa5, 0x69, 0xa7, 0xfb, 0x2a, 0x28, 0x52, 0x88, 0xcf, 0x58, - 0x19, 0x29, 0xd8, 0xdf, 0x65, 0xe3, 0x2e, 0xa2, 0x37, 0x7d, 0x31, 0xd9, 0xb9, 0xff, 0x0a, 0x18, - 0x52, 0x00, 0x2f, 0xfb, 0xcb, 0x40, 0x14, 0x86, 0xbb, 0x73, 0xbd, 0x66, 0xb1, 0x18, 0xfc, 0x04, - 0x56, 0x33, 0xf3, 0x45, 0x61, 0xd4, 0x14, 0xcf, 0x20, 0x9d, 0x59, 0x05, 0x82, 0x87, 0x64, 0xa6, - 0x2a, 0xa3, 0x29, 0xde, 0x5f, 0x50, 0xb9, 0x3b, 0xf7, 0xca, 0x80, 0xca, 0x87, 0x50, 0x96, 0x2e, - 0x33, 0x95, 0x0d, 0x7d, 0xb3, 0x98, 0x46, 0x71, 0x55, 0xee, 0xbc, 0x5b, 0x12, 0x3a, 0x62, 0xda, - 0xfd, 0x87, 0x0a, 0xb5, 0xa8, 0xf9, 0xbc, 0x82, 0x12, 0x71, 0x05, 0x39, 0xfb, 0x13, 0x58, 0xcd, - 0x2c, 0x46, 0x0b, 0x4d, 0x5a, 0xbc, 0x3c, 0x9d, 0xe7, 0x2f, 0x1f, 0x8b, 0xff, 0x61, 0x90, 0xe6, - 0x7b, 0x7b, 0x5a, 0xde, 0xcf, 0x5a, 0x6e, 0x36, 0xe1, 0x47, 0x0f, 0x7e, 0x7a, 0x7f, 0x64, 0x05, - 0x67, 0x93, 0x93, 0xf0, 0xcb, 0x2e, 0x07, 0x7d, 0xd7, 0xf2, 0xc4, 0x5f, 0xbb, 0x91, 0x82, 0x76, - 0x19, 0xf6, 0x6e, 0xc8, 0x66, 0x7c, 0x72, 0xb2, 0xcc, 0x4e, 0x0f, 0xfe, 0x17, 0x00, 0x00, 0xff, - 0xff, 0x9c, 0xc7, 0x52, 0x4b, 0x34, 0x22, 0x00, 0x00, + 0xb9, 0xe3, 0x89, 0x13, 0xfb, 0xf3, 0x25, 0xc9, 0x21, 0x64, 0x8d, 0xdb, 0xa6, 0xe9, 0xb0, 0xdb, + 0xcd, 0x16, 0x36, 0xd9, 0xba, 0x20, 0x2e, 0x65, 0x41, 0xdb, 0xb8, 0x8d, 0x2c, 0x92, 0x12, 0x4e, + 0xba, 0xbb, 0x12, 0x2b, 0x64, 0x4d, 0x3c, 0x27, 0xce, 0x90, 0xb9, 0x78, 0xe7, 0x8c, 0xd3, 0xf4, + 0x69, 0x57, 0x8b, 0x04, 0x02, 0x21, 0x2e, 0x42, 0xbc, 0x21, 0x71, 0x91, 0x90, 0x90, 0x78, 0xe1, + 0x1f, 0xf0, 0xca, 0xcf, 0x42, 0xe7, 0x32, 0xf7, 0xb1, 0x3d, 0x71, 0x68, 0xf3, 0x96, 0x73, 0xe6, + 0xbb, 0x9d, 0xef, 0xfe, 0x7d, 0x0e, 0xac, 0x18, 0xba, 0xaf, 0xf7, 0x07, 0xae, 0xeb, 0x19, 0xdb, + 0x23, 0xcf, 0xf5, 0x5d, 0xb4, 0x6a, 0x9b, 0xd6, 0xf9, 0x98, 0x8a, 0xd3, 0x36, 0xfb, 0xdc, 0xae, + 0x0f, 0x5c, 0xdb, 0x76, 0x1d, 0x71, 0xd5, 0x6e, 0x9a, 0x8e, 0x4f, 0x3c, 0x47, 0xb7, 0xe4, 0xb9, + 0x1e, 0x47, 0x68, 0xd7, 0xe9, 0xe0, 0x94, 0xd8, 0xba, 0x38, 0x69, 0x17, 0x50, 0x7f, 0x6a, 0x8d, + 0xe9, 0x29, 0x26, 0x9f, 0x8e, 0x09, 0xf5, 0xd1, 0x7b, 0xb0, 0x70, 0xac, 0x53, 0xd2, 0x52, 0x36, + 0x95, 0xad, 0x5a, 0xe7, 0xd6, 0x76, 0x82, 0x97, 0xe4, 0x72, 0x40, 0x87, 0x8f, 0x75, 0x4a, 0x30, + 0x87, 0x44, 0x08, 0x16, 0x8c, 0xe3, 0x5e, 0xb7, 0x55, 0xda, 0x54, 0xb6, 0x54, 0xcc, 0xff, 0x46, + 0x1a, 0xd4, 0x07, 0xae, 0x65, 0x91, 0x81, 0x6f, 0xba, 0x4e, 0xaf, 0xdb, 0x5a, 0xe0, 0xdf, 0x12, + 0x77, 0xda, 0x9f, 0x15, 0x68, 0x48, 0xd6, 0x74, 0xe4, 0x3a, 0x94, 0xa0, 0x87, 0xb0, 0x48, 0x7d, + 0xdd, 0x1f, 0x53, 0xc9, 0xfd, 0x66, 0x2e, 0xf7, 0x23, 0x0e, 0x82, 0x25, 0x68, 0x21, 0xf6, 0x6a, + 0x96, 0x3d, 0xda, 0x00, 0xa0, 0x64, 0x68, 0x13, 0xc7, 0xef, 0x75, 0x69, 0x6b, 0x61, 0x53, 0xdd, + 0x52, 0x71, 0xec, 0x46, 0xfb, 0x83, 0x02, 0x2b, 0x47, 0xc1, 0x31, 0xd0, 0xce, 0x1a, 0x94, 0x07, + 0xee, 0xd8, 0xf1, 0xb9, 0x80, 0x0d, 0x2c, 0x0e, 0xe8, 0x2e, 0xd4, 0x07, 0xa7, 0xba, 0xe3, 0x10, + 0xab, 0xef, 0xe8, 0x36, 0xe1, 0xa2, 0x54, 0x71, 0x4d, 0xde, 0x3d, 0xd3, 0x6d, 0x52, 0x48, 0xa2, + 0x4d, 0xa8, 0x8d, 0x74, 0xcf, 0x37, 0x13, 0x3a, 0x8b, 0x5f, 0x69, 0x7f, 0x55, 0x60, 0xfd, 0x03, + 0x4a, 0xcd, 0xa1, 0x93, 0x91, 0x6c, 0x1d, 0x16, 0x1d, 0xd7, 0x20, 0xbd, 0x2e, 0x17, 0x4d, 0xc5, + 0xf2, 0x84, 0x6e, 0x42, 0x75, 0x44, 0x88, 0xd7, 0xf7, 0x5c, 0x2b, 0x10, 0xac, 0xc2, 0x2e, 0xb0, + 0x6b, 0x11, 0xf4, 0x63, 0x58, 0xa5, 0x29, 0x42, 0xb4, 0xa5, 0x6e, 0xaa, 0x5b, 0xb5, 0xce, 0x57, + 0xb7, 0x33, 0x5e, 0xb6, 0x9d, 0x66, 0x8a, 0xb3, 0xd8, 0xda, 0xe7, 0x25, 0xf8, 0x52, 0x08, 0x27, + 0x64, 0x65, 0x7f, 0x33, 0xcd, 0x51, 0x32, 0x0c, 0xc5, 0x13, 0x87, 0x22, 0x9a, 0x0b, 0x55, 0xae, + 0xc6, 0x55, 0x5e, 0xc0, 0xc1, 0xd2, 0xfa, 0x2c, 0x67, 0xf4, 0x89, 0xee, 0x40, 0x8d, 0x5c, 0x8c, + 0x4c, 0x8f, 0xf4, 0x7d, 0xd3, 0x26, 0xad, 0xc5, 0x4d, 0x65, 0x6b, 0x01, 0x83, 0xb8, 0x7a, 0x6e, + 0xda, 0x71, 0x8f, 0x5c, 0x2a, 0xec, 0x91, 0xda, 0xdf, 0x15, 0x78, 0x23, 0x63, 0x25, 0xe9, 0xe2, + 0x18, 0x56, 0xf8, 0xcb, 0x23, 0xcd, 0x30, 0x67, 0x67, 0x0a, 0xbf, 0x37, 0x4d, 0xe1, 0x11, 0x38, + 0xce, 0xe0, 0xc7, 0x84, 0x2c, 0x15, 0x17, 0xf2, 0x0c, 0xde, 0xd8, 0x23, 0xbe, 0x64, 0xc0, 0xbe, + 0x11, 0x3a, 0x7f, 0x0a, 0x48, 0xc6, 0x52, 0x29, 0x13, 0x4b, 0xff, 0x2e, 0x85, 0xb1, 0xc4, 0x59, + 0xf5, 0x9c, 0x13, 0x17, 0xdd, 0x82, 0x6a, 0x08, 0x22, 0xbd, 0x22, 0xba, 0x40, 0xdf, 0x82, 0x32, + 0x93, 0x54, 0xb8, 0x44, 0xb3, 0x73, 0x37, 0xff, 0x4d, 0x31, 0x9a, 0x58, 0xc0, 0xa3, 0x1e, 0x34, + 0xa9, 0xaf, 0x7b, 0x7e, 0x7f, 0xe4, 0x52, 0x6e, 0x67, 0xee, 0x38, 0xb5, 0x8e, 0x96, 0xa4, 0x10, + 0xa6, 0xc8, 0x03, 0x3a, 0x3c, 0x94, 0x90, 0xb8, 0xc1, 0x31, 0x83, 0x23, 0x7a, 0x02, 0x75, 0xe2, + 0x18, 0x11, 0xa1, 0x85, 0xc2, 0x84, 0x6a, 0xc4, 0x31, 0x42, 0x32, 0x91, 0x7d, 0xca, 0xc5, 0xed, + 0xf3, 0x1b, 0x05, 0x5a, 0x59, 0x03, 0x5d, 0x25, 0x51, 0x3e, 0x12, 0x48, 0x44, 0x18, 0x68, 0x6a, + 0x84, 0x87, 0x46, 0xc2, 0x12, 0x45, 0x33, 0xe1, 0xcb, 0x91, 0x34, 0xfc, 0xcb, 0x2b, 0x73, 0x96, + 0x9f, 0x2b, 0xb0, 0x9e, 0xe6, 0x75, 0x95, 0x77, 0x7f, 0x03, 0xca, 0xa6, 0x73, 0xe2, 0x06, 0xcf, + 0xde, 0x98, 0x12, 0x67, 0x8c, 0x97, 0x00, 0xd6, 0x6c, 0xb8, 0xb9, 0x47, 0xfc, 0x9e, 0x43, 0x89, + 0xe7, 0x3f, 0x36, 0x1d, 0xcb, 0x1d, 0x1e, 0xea, 0xfe, 0xe9, 0x15, 0x62, 0x24, 0xe1, 0xee, 0xa5, + 0x94, 0xbb, 0x6b, 0xff, 0x54, 0xe0, 0x56, 0x3e, 0x3f, 0xf9, 0xf4, 0x36, 0x54, 0x4e, 0x4c, 0x62, + 0x19, 0x4c, 0x67, 0x0a, 0xd7, 0x59, 0x78, 0x66, 0xb1, 0x32, 0x62, 0xc0, 0xf2, 0x85, 0x77, 0x27, + 0x38, 0xe8, 0x91, 0xef, 0x99, 0xce, 0x70, 0xdf, 0xa4, 0x3e, 0x16, 0xf0, 0x31, 0x7d, 0xaa, 0xc5, + 0x3d, 0xf3, 0xd7, 0x0a, 0x6c, 0xec, 0x11, 0x7f, 0x37, 0x4c, 0xb5, 0xec, 0xbb, 0x49, 0x7d, 0x73, + 0x40, 0x5f, 0x6d, 0x13, 0x91, 0x53, 0x33, 0xb5, 0xdf, 0x29, 0x70, 0x67, 0xa2, 0x30, 0x52, 0x75, + 0x32, 0x95, 0x04, 0x89, 0x36, 0x3f, 0x95, 0xfc, 0x90, 0xbc, 0xfc, 0x48, 0xb7, 0xc6, 0xe4, 0x50, + 0x37, 0x3d, 0x91, 0x4a, 0xe6, 0x4c, 0xac, 0xff, 0x52, 0xe0, 0xf6, 0x1e, 0xf1, 0x0f, 0x83, 0x32, + 0x73, 0x8d, 0xda, 0x29, 0xd0, 0x51, 0xfc, 0x56, 0x18, 0x33, 0x57, 0xda, 0x6b, 0x51, 0xdf, 0x06, + 0x8f, 0x83, 0x58, 0x40, 0xee, 0x8a, 0x5e, 0x40, 0x2a, 0x4f, 0xfb, 0x53, 0x09, 0xea, 0x1f, 0xc9, + 0xfe, 0x80, 0x97, 0x91, 0xb4, 0x1e, 0x94, 0x7c, 0x3d, 0xc4, 0x5a, 0x8a, 0xbc, 0x2e, 0x63, 0x0f, + 0x1a, 0x94, 0x90, 0xb3, 0x79, 0x8a, 0x46, 0x9d, 0x21, 0x86, 0xc9, 0x7e, 0x1f, 0x56, 0xc7, 0xce, + 0x09, 0x6b, 0x6b, 0x89, 0x21, 0x5f, 0x21, 0xba, 0xcb, 0xd9, 0x99, 0x27, 0x8b, 0x88, 0xb6, 0x60, + 0x39, 0x4d, 0xab, 0xcc, 0x83, 0x3f, 0x7d, 0xad, 0xfd, 0x4a, 0x81, 0xf5, 0x8f, 0x75, 0x7f, 0x70, + 0xda, 0xb5, 0xa5, 0xc6, 0xae, 0xe0, 0x6f, 0xef, 0x43, 0xf5, 0x5c, 0x6a, 0x27, 0x48, 0x2a, 0x77, + 0x72, 0x84, 0x8f, 0xdb, 0x01, 0x47, 0x18, 0xac, 0x4d, 0x5d, 0xe3, 0x9d, 0x7d, 0x20, 0xdd, 0xeb, + 0xf7, 0xfc, 0x59, 0xdd, 0xfd, 0x05, 0x80, 0x14, 0xee, 0x80, 0x0e, 0xe7, 0x90, 0xeb, 0xdb, 0xb0, + 0x24, 0xa9, 0x49, 0xe7, 0x9e, 0x65, 0xdc, 0x00, 0x5c, 0x3b, 0x82, 0x75, 0x79, 0xff, 0x94, 0xe5, + 0x6f, 0x91, 0xeb, 0x0f, 0x88, 0xaf, 0xa3, 0x16, 0x2c, 0xc9, 0x94, 0x2e, 0x9d, 0x38, 0x38, 0xb2, + 0x3e, 0xf5, 0x98, 0xc3, 0xf5, 0x59, 0xde, 0x96, 0xfe, 0x0b, 0xc7, 0x61, 0x99, 0xd0, 0x7e, 0x0a, + 0x8d, 0x6e, 0x77, 0x3f, 0x46, 0xeb, 0x1e, 0x2c, 0x1b, 0x86, 0xd5, 0x8f, 0x63, 0x29, 0x1c, 0xab, + 0x61, 0x18, 0x56, 0x54, 0x5f, 0xd0, 0x9b, 0xd0, 0xf4, 0x69, 0x3f, 0x4b, 0xbc, 0xee, 0xd3, 0x08, + 0x4a, 0x3b, 0x80, 0x26, 0x17, 0x96, 0x1b, 0x75, 0x86, 0xac, 0x77, 0xa1, 0x1e, 0x23, 0x27, 0xdc, + 0xa7, 0x8a, 0x6b, 0x91, 0xb0, 0xbc, 0x82, 0x04, 0xed, 0x60, 0x44, 0x71, 0x7a, 0x3b, 0x78, 0x1b, + 0xc0, 0xa4, 0x7d, 0xe9, 0xf4, 0x5c, 0xc6, 0x0a, 0xae, 0x9a, 0xf4, 0xa9, 0xb8, 0x40, 0xdf, 0x81, + 0x45, 0xce, 0x5f, 0x84, 0x47, 0x26, 0x49, 0x71, 0x6b, 0x24, 0x5f, 0x80, 0x25, 0x82, 0xf6, 0x21, + 0xd4, 0xbb, 0xdd, 0xfd, 0x48, 0x8e, 0x22, 0xf9, 0xa4, 0xc0, 0x1b, 0x3f, 0x83, 0x66, 0x54, 0x94, + 0x78, 0xa2, 0x6a, 0x42, 0x29, 0x24, 0x57, 0xea, 0x75, 0xd1, 0xfb, 0xb0, 0x28, 0x26, 0x71, 0xe9, + 0x41, 0x6f, 0x25, 0x65, 0x96, 0x53, 0x7a, 0xac, 0xb2, 0xf1, 0x0b, 0x2c, 0x91, 0x98, 0x87, 0x87, + 0x89, 0x5c, 0x0c, 0x6d, 0x2a, 0x8e, 0xdd, 0x68, 0xff, 0x51, 0xa1, 0x16, 0x73, 0xc0, 0x0c, 0xfb, + 0xf4, 0x3b, 0x4b, 0xb3, 0xeb, 0x87, 0x9a, 0x9d, 0xa0, 0xde, 0x82, 0xa6, 0xc9, 0x7b, 0x96, 0xbe, + 0x8c, 0x7e, 0x5e, 0x64, 0xaa, 0xb8, 0x21, 0x6e, 0x65, 0x2a, 0x42, 0x1b, 0x50, 0x73, 0xc6, 0x76, + 0xdf, 0x3d, 0xe9, 0x7b, 0xee, 0x0b, 0x2a, 0x47, 0xb1, 0xaa, 0x33, 0xb6, 0x7f, 0x74, 0x82, 0xdd, + 0x17, 0x34, 0xea, 0xf6, 0x17, 0x2f, 0xd9, 0xed, 0x3f, 0x81, 0xba, 0x61, 0x5b, 0x51, 0xda, 0x5e, + 0x2a, 0xde, 0xa2, 0x1b, 0xb6, 0x15, 0x66, 0xed, 0x0d, 0xa8, 0xd9, 0xfa, 0x05, 0x13, 0xae, 0xef, + 0x8c, 0xed, 0x56, 0x45, 0xc8, 0x67, 0xeb, 0x17, 0xd8, 0x7d, 0xf1, 0x6c, 0x6c, 0xa3, 0x2d, 0x58, + 0xb1, 0x74, 0xea, 0xf7, 0xe3, 0xd3, 0x62, 0x95, 0x4f, 0x8b, 0x4d, 0x76, 0xff, 0x24, 0x9a, 0x18, + 0xb3, 0xe3, 0x07, 0xcc, 0x39, 0x7e, 0x68, 0x0f, 0xa1, 0xd6, 0xeb, 0x76, 0x98, 0x3b, 0xb1, 0x9e, + 0x2d, 0x63, 0xc0, 0x35, 0x28, 0x1f, 0xc6, 0xbc, 0xaf, 0x1c, 0xf8, 0xdd, 0x5a, 0xa4, 0xa7, 0xd8, + 0x2c, 0x93, 0x95, 0x4b, 0x99, 0x77, 0x2c, 0x9a, 0xde, 0xc9, 0xfe, 0x52, 0x85, 0xf5, 0x23, 0xfd, + 0x9c, 0xbc, 0xfa, 0xa6, 0xb9, 0x50, 0x21, 0xd8, 0x87, 0x55, 0x1e, 0xe8, 0x9d, 0x98, 0x3c, 0x53, + 0xea, 0x71, 0x4c, 0xe1, 0x38, 0x8b, 0x88, 0x7e, 0xc0, 0x1a, 0x09, 0x32, 0x38, 0x3b, 0x74, 0xcd, + 0xa0, 0x16, 0xd7, 0x3a, 0xb7, 0x73, 0xe8, 0xec, 0x86, 0x50, 0x38, 0x8e, 0x81, 0x0e, 0x61, 0x39, + 0x69, 0x06, 0xda, 0x5a, 0xe4, 0x44, 0xde, 0x9e, 0x3a, 0x8d, 0x45, 0xda, 0xc7, 0xcd, 0x84, 0x31, + 0x28, 0xcf, 0xc4, 0x32, 0x2d, 0x2e, 0xf1, 0xb4, 0x18, 0x1c, 0x59, 0x9a, 0x85, 0x48, 0x8e, 0x19, + 0x09, 0xf6, 0xfb, 0x50, 0x09, 0x3d, 0xa3, 0x54, 0xd8, 0x33, 0x42, 0x9c, 0x74, 0x84, 0xab, 0xa9, + 0x08, 0xd7, 0xbe, 0x50, 0xa0, 0xd1, 0xd5, 0x7d, 0xfd, 0x99, 0x6b, 0x90, 0xe7, 0x73, 0x16, 0xdd, + 0x02, 0xdb, 0xa2, 0x5b, 0x50, 0x65, 0xc1, 0x49, 0x7d, 0xdd, 0x1e, 0x71, 0x21, 0x16, 0x70, 0x74, + 0xc1, 0x46, 0xcb, 0x86, 0x4c, 0x49, 0x47, 0xe1, 0xf6, 0x90, 0x93, 0x12, 0xc5, 0x91, 0xff, 0x8d, + 0xbe, 0x9b, 0x5c, 0x3d, 0xbc, 0x99, 0x6b, 0x5e, 0x4e, 0x84, 0x37, 0x5c, 0x89, 0x7c, 0x54, 0x64, + 0x66, 0xf9, 0x5c, 0x81, 0x7a, 0xa0, 0x0a, 0x9e, 0x9a, 0x5b, 0xb0, 0xa4, 0x1b, 0x86, 0x47, 0x28, + 0x95, 0x72, 0x04, 0x47, 0xf6, 0xe5, 0x9c, 0x78, 0x34, 0x30, 0x8a, 0x8a, 0x83, 0x23, 0xfa, 0x1e, + 0x54, 0xc2, 0x0e, 0x4d, 0x6c, 0xec, 0x36, 0x27, 0xcb, 0x29, 0x7b, 0xec, 0x10, 0x43, 0xf3, 0xa0, + 0x29, 0x9d, 0x4b, 0x78, 0x37, 0x9d, 0xe1, 0x1d, 0x8f, 0xa1, 0x7e, 0x12, 0x75, 0x2b, 0xd3, 0x46, + 0xe9, 0x58, 0x53, 0x83, 0x13, 0x38, 0xda, 0x07, 0x50, 0x8b, 0x7d, 0x9c, 0xd2, 0x41, 0xb4, 0x60, + 0xe9, 0x38, 0xc6, 0xa7, 0x8a, 0x83, 0xa3, 0xf6, 0x5f, 0x85, 0x6f, 0xad, 0x30, 0x19, 0xb8, 0xe7, + 0xc4, 0x7b, 0x79, 0xf5, 0xdd, 0xc0, 0xa3, 0x98, 0x16, 0x0b, 0xf6, 0xb9, 0x21, 0x02, 0x7a, 0x14, + 0xc9, 0xa9, 0x4e, 0xec, 0x3a, 0x92, 0x6a, 0x8e, 0x9e, 0xf2, 0x7b, 0xb1, 0xe5, 0x48, 0x3e, 0x65, + 0xde, 0x34, 0xf9, 0x7f, 0xa9, 0xe5, 0xda, 0x1f, 0x15, 0xf8, 0xca, 0x1e, 0xf1, 0x9f, 0x26, 0x27, + 0x8b, 0xeb, 0x96, 0xca, 0x86, 0x76, 0x9e, 0x50, 0x57, 0xb1, 0x7a, 0x1b, 0x2a, 0x34, 0x18, 0xa7, + 0xc4, 0xfe, 0x29, 0x3c, 0x6b, 0xbf, 0x50, 0xa0, 0x15, 0xef, 0x4d, 0x77, 0x5d, 0x7b, 0x64, 0x11, + 0x9f, 0x18, 0xaf, 0x7b, 0x4e, 0xf8, 0x8b, 0x02, 0x2b, 0xf1, 0x34, 0xc3, 0x33, 0xc5, 0x37, 0xa1, + 0xcc, 0xc7, 0x2c, 0x29, 0xc1, 0x4c, 0x67, 0x15, 0xd0, 0x2c, 0xa2, 0x78, 0xd5, 0x78, 0x4e, 0x83, + 0x34, 0x22, 0x8f, 0x51, 0xae, 0x53, 0x2f, 0x9d, 0xeb, 0xee, 0x3f, 0x80, 0xd5, 0xcc, 0x37, 0xd4, + 0x04, 0xf8, 0xd0, 0x19, 0x48, 0xa5, 0xad, 0xdc, 0x40, 0x75, 0xa8, 0x04, 0x2a, 0x5c, 0x51, 0x3a, + 0x7f, 0xab, 0x43, 0x95, 0xa5, 0xbe, 0x5d, 0xd7, 0xf5, 0x0c, 0x34, 0x02, 0xc4, 0x77, 0x37, 0xf6, + 0xc8, 0x75, 0xc2, 0x25, 0x27, 0x7a, 0x6f, 0x42, 0xdd, 0xc9, 0x82, 0x4a, 0xd7, 0x6c, 0xdf, 0x9b, + 0x80, 0x91, 0x02, 0xd7, 0x6e, 0x20, 0x9b, 0x73, 0x64, 0x8d, 0xda, 0x73, 0x73, 0x70, 0x16, 0x74, + 0xa7, 0x53, 0x38, 0xa6, 0x40, 0x03, 0x8e, 0xa9, 0xdd, 0xa9, 0x3c, 0x88, 0x05, 0x5b, 0xe0, 0x9b, + 0xda, 0x0d, 0xf4, 0x29, 0xac, 0xed, 0x11, 0x3f, 0xda, 0xa9, 0x04, 0x0c, 0x3b, 0x93, 0x19, 0x66, + 0x80, 0x2f, 0xc9, 0x72, 0x1f, 0xca, 0xdc, 0x6f, 0x51, 0x9e, 0x6f, 0xc4, 0x7f, 0xe9, 0x6b, 0x6f, + 0x4e, 0x06, 0x08, 0xa9, 0xfd, 0x0c, 0x96, 0x53, 0xbf, 0x64, 0xa0, 0x77, 0x72, 0xd0, 0xf2, 0x7f, + 0x93, 0x6a, 0xdf, 0x2f, 0x02, 0x1a, 0xf2, 0x1a, 0x42, 0x33, 0xb9, 0xf9, 0x41, 0x5b, 0x39, 0xf8, + 0xb9, 0x5b, 0xe8, 0xf6, 0x3b, 0x05, 0x20, 0x43, 0x46, 0x36, 0xac, 0xa4, 0x37, 0xeb, 0xe8, 0xfe, + 0x54, 0x02, 0x49, 0x77, 0xfb, 0x5a, 0x21, 0xd8, 0x90, 0xdd, 0x4b, 0xee, 0x04, 0x99, 0xcd, 0x2e, + 0xda, 0xce, 0x27, 0x33, 0x69, 0xe5, 0xdc, 0xde, 0x29, 0x0c, 0x1f, 0xb2, 0xfe, 0x42, 0xd4, 0xcb, + 0xbc, 0xed, 0x28, 0x7a, 0x90, 0x4f, 0x6e, 0xca, 0x5a, 0xb7, 0xdd, 0xb9, 0x0c, 0x4a, 0x28, 0xc4, + 0x67, 0xbc, 0xd0, 0xe5, 0x6c, 0x18, 0xd3, 0x71, 0x17, 0xd0, 0x9b, 0xbc, 0x3a, 0x6d, 0x3f, 0xb8, + 0x04, 0x46, 0x28, 0x80, 0x9b, 0xfe, 0xed, 0x22, 0x08, 0xc3, 0x9d, 0x99, 0x5e, 0x33, 0x5f, 0x0c, + 0x7e, 0x02, 0xcb, 0xa9, 0x09, 0x28, 0x37, 0x6a, 0xf2, 0xa7, 0xa4, 0xf6, 0xb4, 0x12, 0x26, 0x42, + 0x32, 0xd5, 0x37, 0xa0, 0x09, 0xde, 0x9f, 0xd3, 0x5b, 0xb4, 0xef, 0x17, 0x01, 0x0d, 0x1f, 0x42, + 0x79, 0xba, 0x4c, 0xd5, 0x5e, 0xf4, 0xf5, 0x7c, 0x1a, 0xf9, 0x7d, 0x43, 0xfb, 0xdd, 0x82, 0xd0, + 0x01, 0xd3, 0xce, 0x3f, 0x54, 0xa8, 0x04, 0xed, 0xf1, 0x35, 0x94, 0x88, 0x6b, 0xc8, 0xd9, 0x9f, + 0xc0, 0x72, 0x6a, 0x75, 0x9b, 0x6b, 0xd2, 0xfc, 0xf5, 0xee, 0x2c, 0x7f, 0xf9, 0x58, 0xfe, 0x97, + 0x45, 0x68, 0xbe, 0xb7, 0x27, 0xe5, 0xfd, 0xb4, 0xe5, 0xa6, 0x13, 0x7e, 0xfc, 0xf0, 0x27, 0x0f, + 0x86, 0xa6, 0x7f, 0x3a, 0x3e, 0x66, 0x5f, 0x76, 0x04, 0xe8, 0xbb, 0xa6, 0x2b, 0xff, 0xda, 0x09, + 0x14, 0xb4, 0xc3, 0xb1, 0x77, 0x18, 0x9b, 0xd1, 0xf1, 0xf1, 0x22, 0x3f, 0x3d, 0xfc, 0x5f, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x91, 0x15, 0x9b, 0xbf, 0xd6, 0x22, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.