diff --git a/docs/generated/http/full.md b/docs/generated/http/full.md index 1473b395ca32..d5055cd40b4e 100644 --- a/docs/generated/http/full.md +++ b/docs/generated/http/full.md @@ -3129,6 +3129,53 @@ Response object returned by ResetSQLStats. +## IndexUsageStatistics + +`GET /_status/indexusagestatistics` + + + +Support status: [reserved](#support-status) + +#### Request Parameters + + + + +Request object for issuing IndexUsageStatistics request. + + +| Field | Type | Label | Description | Support status | +| ----- | ---- | ----- | ----------- | -------------- | +| node_id | [string](#cockroach.server.serverpb.IndexUsageStatisticsRequest-string) | | node_id is the ID of the node where the stats data shall be retrieved from. If this is left empty, the cluster-wide aggregated result will be returned. | [reserved](#support-status) | +| ordered_table_id | [bool](#cockroach.server.serverpb.IndexUsageStatisticsRequest-bool) | | ordered_table_id specifies that if the returned stats data will be ordered based on the table_id. | [reserved](#support-status) | +| ordered_index_id | [bool](#cockroach.server.serverpb.IndexUsageStatisticsRequest-bool) | | ordered_index_id specifies that if the returned stats data's index ID will be ordered. | [reserved](#support-status) | +| max_limit | [uint64](#cockroach.server.serverpb.IndexUsageStatisticsRequest-uint64) | | | [reserved](#support-status) | + + + + + + + +#### Response Parameters + + + + +Response object returned by IndexUsageStatistics. + + +| Field | Type | Label | Description | Support status | +| ----- | ---- | ----- | ----------- | -------------- | +| statistics | [cockroach.sql.CollectedIndexUsageStatistics](#cockroach.server.serverpb.IndexUsageStatisticsResponse-cockroach.sql.CollectedIndexUsageStatistics) | repeated | | [reserved](#support-status) | + + + + + + + ## RequestCA `GET /_join/v1/ca` diff --git a/pkg/base/testing_knobs.go b/pkg/base/testing_knobs.go index b760e6f4d6e3..b903e8f0ebb1 100644 --- a/pkg/base/testing_knobs.go +++ b/pkg/base/testing_knobs.go @@ -38,4 +38,5 @@ type TestingKnobs struct { JobsTestingKnobs ModuleTestingKnobs BackupRestore ModuleTestingKnobs MigrationManager ModuleTestingKnobs + IndexUsageStatsKnobs ModuleTestingKnobs } diff --git a/pkg/server/BUILD.bazel b/pkg/server/BUILD.bazel index 8919ca0d6429..4d78b9eafd17 100644 --- a/pkg/server/BUILD.bazel +++ b/pkg/server/BUILD.bazel @@ -20,6 +20,7 @@ go_library( "drain.go", "grpc_server.go", "idle_monitor.go", + "index_usage_stats.go", "init.go", "init_handshake.go", "loopback.go", @@ -124,6 +125,7 @@ go_library( "//pkg/sql/flowinfra", "//pkg/sql/gcjob", "//pkg/sql/gcjob/gcjobnotifier", + "//pkg/sql/idxusage", "//pkg/sql/optionalnodeliveness", "//pkg/sql/parser", "//pkg/sql/pgwire", @@ -260,6 +262,7 @@ go_test( "drain_test.go", "graphite_test.go", "idle_monitor_test.go", + "index_usage_stats_test.go", "init_handshake_test.go", "intent_test.go", "main_test.go", @@ -320,6 +323,7 @@ go_test( "//pkg/sql/catalog/dbdesc", "//pkg/sql/catalog/descpb", "//pkg/sql/execinfrapb", + "//pkg/sql/idxusage", "//pkg/sql/sem/tree", "//pkg/sql/sqlstats", "//pkg/sql/tests", diff --git a/pkg/server/index_usage_stats.go b/pkg/server/index_usage_stats.go new file mode 100644 index 000000000000..e487e2fecce4 --- /dev/null +++ b/pkg/server/index_usage_stats.go @@ -0,0 +1,134 @@ +// Copyright 2021 The Cockroach Authors. +// +// Use of this software is governed by the Business Source License +// included in the file licenses/BSL.txt. +// +// As of the Change Date specified in that file, in accordance with +// the Business Source License, use of this software will be governed +// by the Apache License, Version 2.0, included in the file +// licenses/APL.txt. + +package server + +import ( + "context" + "fmt" + + "github.com/cockroachdb/cockroach/pkg/roachpb" + "github.com/cockroachdb/cockroach/pkg/server/serverpb" + "github.com/cockroachdb/cockroach/pkg/sql/idxusage" + "github.com/cockroachdb/errors" + "google.golang.org/grpc/codes" + "google.golang.org/grpc/status" +) + +// IndexUsageStatistics is the GRPC handler for serving index usage statistics. +// If the NodeID in the request payload is left empty, the handler will issue +// a cluster-wide RPC fanout to aggregate all index usage statistics from all +// the nodes. If the NodeID is specified, then the handler will handle the +// request either locally (if the NodeID matches the current node's NodeID) or +// forward it to the correct node. +func (s *statusServer) IndexUsageStatistics( + ctx context.Context, req *serverpb.IndexUsageStatisticsRequest, +) (*serverpb.IndexUsageStatisticsResponse, error) { + ctx = propagateGatewayMetadata(ctx) + ctx = s.AnnotateCtx(ctx) + + if _, err := s.privilegeChecker.requireViewActivityPermission(ctx); err != nil { + return nil, err + } + + localReq := &serverpb.IndexUsageStatisticsRequest{ + NodeID: "local", + OrderedTableID: req.OrderedTableID, + OrderedIndexID: req.OrderedIndexID, + } + + if len(req.NodeID) > 0 { + requestedNodeID, local, err := s.parseNodeID(req.NodeID) + if err != nil { + return nil, status.Error(codes.InvalidArgument, err.Error()) + } + if local { + statsReader := + s.sqlServer.pgServer.SQLServer.GetLocalIndexStatisticsReader() + return serializeIndexUsageStats(req, statsReader) + } + + statusServer, err := s.dialNode(ctx, requestedNodeID) + if err != nil { + return nil, err + } + + return statusServer.IndexUsageStatistics(ctx, localReq) + } + + // Creating a sink to aggregate all the information. + aggStats := s.sqlServer.pgServer.SQLServer.GetClusterIndexStatisticsProvider() + aggStats.Clear() + + dialFn := func(ctx context.Context, nodeID roachpb.NodeID) (interface{}, error) { + client, err := s.dialNode(ctx, nodeID) + return client, err + } + + fetchIndexUsageStats := func(ctx context.Context, client interface{}, _ roachpb.NodeID) (interface{}, error) { + statusClient := client.(serverpb.StatusClient) + return statusClient.IndexUsageStatistics(ctx, localReq) + } + + aggFn := func(_ roachpb.NodeID, resp interface{}) { + stats := resp.(*serverpb.IndexUsageStatisticsResponse) + aggStats.BatchInsert(stats.Statistics) + } + + var combinedError error + errFn := func(_ roachpb.NodeID, nodeFnError error) { + if nodeFnError != nil { + combinedError = errors.CombineErrors(combinedError, nodeFnError) + } + } + + // It's unfortunate that we cannot use paginatedIterateNodes here because we + // need to aggregate all stats before returning. Returning a partial result + // yields an incorrect result. + if err := s.iterateNodes(ctx, + fmt.Sprintf("requesting index usage stats for node %s", req.NodeID), + dialFn, fetchIndexUsageStats, aggFn, errFn); err != nil { + return nil, err + } + + return serializeIndexUsageStats(req, aggStats) +} + +func serializeIndexUsageStats( + req *serverpb.IndexUsageStatisticsRequest, reader idxusage.Reader, +) (*serverpb.IndexUsageStatisticsResponse, error) { + indexStats := make([]roachpb.CollectedIndexUsageStatistics, 0) + + var max *uint64 + if req.GetMax() != nil { + maxLimit := req.GetMaxLimit() + max = &maxLimit + } + + err := reader.ForEach(idxusage.IteratorOptions{ + SortedTableID: req.OrderedTableID, + SortedIndexID: req.OrderedIndexID, + Max: max, + }, func(key *roachpb.IndexUsageKey, value *roachpb.IndexUsageStatistics) error { + indexStats = append(indexStats, roachpb.CollectedIndexUsageStatistics{ + Key: *key, + Stats: *value, + }) + return nil + }) + + if err != nil { + return nil, err + } + + return &serverpb.IndexUsageStatisticsResponse{ + Statistics: indexStats, + }, nil +} diff --git a/pkg/server/index_usage_stats_test.go b/pkg/server/index_usage_stats_test.go new file mode 100644 index 000000000000..75c767751ce2 --- /dev/null +++ b/pkg/server/index_usage_stats_test.go @@ -0,0 +1,312 @@ +// Copyright 2021 The Cockroach Authors. +// +// Use of this software is governed by the Business Source License +// included in the file licenses/BSL.txt. +// +// As of the Change Date specified in that file, in accordance with +// the Business Source License, use of this software will be governed +// by the Apache License, Version 2.0, included in the file +// licenses/APL.txt. + +package server + +import ( + "context" + gosql "database/sql" + "net/url" + "testing" + "time" + + "github.com/cockroachdb/cockroach/pkg/base" + "github.com/cockroachdb/cockroach/pkg/roachpb" + "github.com/cockroachdb/cockroach/pkg/rpc" + "github.com/cockroachdb/cockroach/pkg/security" + "github.com/cockroachdb/cockroach/pkg/server/serverpb" + "github.com/cockroachdb/cockroach/pkg/sql" + "github.com/cockroachdb/cockroach/pkg/sql/idxusage" + "github.com/cockroachdb/cockroach/pkg/testutils" + "github.com/cockroachdb/cockroach/pkg/testutils/serverutils" + "github.com/cockroachdb/cockroach/pkg/testutils/sqlutils" + "github.com/cockroachdb/cockroach/pkg/util/leaktest" + "github.com/cockroachdb/cockroach/pkg/util/log" + "github.com/cockroachdb/cockroach/pkg/util/timeutil" + "github.com/stretchr/testify/require" +) + +func compareTimeHelper(t *testing.T, expected, actual time.Time, delta time.Duration) { + diff := actual.Sub(expected) + require.True(t, diff < delta, "expected delta %s, but found %s", delta, diff) +} + +func compareStatsHelper( + t *testing.T, expected, actual roachpb.IndexUsageStatistics, delta time.Duration, +) { + compareTimeHelper(t, expected.LastRead, actual.LastRead, delta) + compareTimeHelper(t, expected.LastWrite, actual.LastWrite, delta) + + // We don't perform deep comparison of time.Time. So we set them to a dummy + // value before deep equal. + dummyTime := timeutil.Now() + + expected.LastRead = dummyTime + expected.LastWrite = dummyTime + actual.LastRead = dummyTime + actual.LastWrite = dummyTime + + require.Equal(t, expected, actual) +} + +func createIndexStatsIngestedCallback() ( + func(key roachpb.IndexUsageKey), + chan roachpb.IndexUsageKey, +) { + // Create a buffered channel so the callback is non-blocking. + notify := make(chan roachpb.IndexUsageKey, 100) + + cb := func(key roachpb.IndexUsageKey) { + notify <- key + } + + return cb, notify +} + +func waitForStatsIngestion( + t *testing.T, + notify chan roachpb.IndexUsageKey, + expectedKeys map[roachpb.IndexUsageKey]struct{}, + expectedEventCnt int, + timeout time.Duration, +) { + var timer timeutil.Timer + eventCnt := 0 + + timer.Reset(timeout) + + for eventCnt < expectedEventCnt { + select { + case key := <-notify: + if _, ok := expectedKeys[key]; ok { + eventCnt++ + } + continue + case <-timer.C: + timer.Read = true + t.Fatalf("expected stats ingestion to complete within %s, but it timed out", timeout) + } + } +} + +func TestStatusAPIIndexUsage(t *testing.T) { + defer leaktest.AfterTest(t)() + defer log.Scope(t).Close(t) + + statsIngestionCb, statsIngestionNotifier := createIndexStatsIngestedCallback() + + testCluster := serverutils.StartNewTestCluster(t, 3, base.TestClusterArgs{ + ServerArgs: base.TestServerArgs{ + Knobs: base.TestingKnobs{ + IndexUsageStatsKnobs: &idxusage.TestingKnobs{ + OnIndexUsageStatsProcessedCallback: statsIngestionCb, + }, + }, + }, + }) + + ctx := context.Background() + defer testCluster.Stopper().Stop(ctx) + + firstServer := testCluster.Server(0 /* idx */) + firstLocalStatsReader := firstServer.SQLServer().(*sql.Server).GetLocalIndexStatisticsReader() + + expectedStatsIndexA := roachpb.IndexUsageStatistics{ + TotalReadCount: 2, + LastRead: timeutil.Now(), + } + + expectedStatsIndexB := roachpb.IndexUsageStatistics{ + TotalReadCount: 2, + LastRead: timeutil.Now(), + } + + firstPgURL, firstServerConnCleanup := sqlutils.PGUrl( + t, firstServer.ServingSQLAddr(), "CreateConnections" /* prefix */, url.User(security.RootUser)) + defer firstServerConnCleanup() + + firstServerSQLConn, err := gosql.Open("postgres", firstPgURL.String()) + require.NoError(t, err) + + defer func() { + err := firstServerSQLConn.Close() + require.NoError(t, err) + }() + + // Create table on the first node. + _, err = firstServerSQLConn.Exec("CREATE TABLE t (k INT PRIMARY KEY, a INT, b INT, c INT, INDEX(a), INDEX(b))") + require.NoError(t, err) + + _, err = firstServerSQLConn.Exec("INSERT INTO t VALUES (1, 10, 100, 0), (2, 20, 200, 0), (3, 30, 300, 0)") + require.NoError(t, err) + + // We fetch the table ID of the testing table. + rows, err := firstServerSQLConn.Query("SELECT table_id FROM crdb_internal.tables WHERE name = 't'") + require.NoError(t, err) + require.NotNil(t, rows) + + defer func() { + err := rows.Close() + require.NoError(t, err) + }() + + var tableID int + require.True(t, rows.Next()) + err = rows.Scan(&tableID) + require.NoError(t, err) + require.False(t, rows.Next()) + + indexKeyA := roachpb.IndexUsageKey{ + TableID: roachpb.TableID(tableID), + IndexID: 2, // t@t_a_idx + } + + indexKeyB := roachpb.IndexUsageKey{ + TableID: roachpb.TableID(tableID), + IndexID: 3, // t@t_b_idx + } + + err = firstServerSQLConn.Close() + require.NoError(t, err) + + firstServerConnCleanup() + + // Run some queries on the second node. + secondServer := testCluster.Server(1 /* idx */) + secondLocalStatsReader := secondServer.SQLServer().(*sql.Server).GetLocalIndexStatisticsReader() + + secondPgURL, secondServerConnCleanup := sqlutils.PGUrl( + t, secondServer.ServingSQLAddr(), "CreateConnections" /* prefix */, url.User(security.RootUser)) + defer secondServerConnCleanup() + + secondServerSQLConn, err := gosql.Open("postgres", secondPgURL.String()) + require.NoError(t, err) + + defer func() { + err := secondServerSQLConn.Close() + require.NoError(t, err) + }() + + // Records a non-full scan. + _, err = secondServerSQLConn.Exec("SELECT k, a FROM t WHERE a = 0") + require.NoError(t, err) + + // Records an zigzag join. + _, err = secondServerSQLConn.Exec("SELECT k FROM t WHERE a = 10 AND b = 200") + require.NoError(t, err) + + // Record a full scan. + _, err = secondServerSQLConn.Exec("SELECT * FROM t@t_b_idx") + require.NoError(t, err) + + // Execute a explain query to ensure no index stats is collected. + _, err = secondServerSQLConn.Exec("EXPLAIN SELECT k, a FROM t WHERE a = 0") + require.NoError(t, err) + + // When being stressed, there's possibility that it might takes a while for + // the stats payload to be ingested. + // time.Sleep(3 * time.Second) + + // Check local node stats. + // Fetch stats reader from each individual + thirdServer := testCluster.Server(2 /* idx */) + thirdLocalStatsReader := thirdServer.SQLServer().(*sql.Server).GetLocalIndexStatisticsReader() + + // Wait for the stats to be ingested. + waitForStatsIngestion(t, statsIngestionNotifier, map[roachpb.IndexUsageKey]struct{}{ + indexKeyA: {}, + indexKeyB: {}, + }, /* expectedKeys */ 4 /* expectedEventCnt*/, 5*time.Second /* timeout */) + + // First node should have nothing. + stats := firstLocalStatsReader.Get(indexKeyA) + require.Equal(t, roachpb.IndexUsageStatistics{}, stats, "expecting empty stats on node 1, but found %v", stats) + + stats = firstLocalStatsReader.Get(indexKeyB) + require.Equal(t, roachpb.IndexUsageStatistics{}, stats, "expecting empty stats on node 1, but found %v", stats) + + // Third node should have nothing. + stats = thirdLocalStatsReader.Get(indexKeyA) + require.Equal(t, roachpb.IndexUsageStatistics{}, stats, "expecting empty stats on node 3, but found %v", stats) + + stats = thirdLocalStatsReader.Get(indexKeyB) + require.Equal(t, roachpb.IndexUsageStatistics{}, stats, "expecting empty stats on node 1, but found %v", stats) + + // Second server should have nonempty local storage. + stats = secondLocalStatsReader.Get(indexKeyA) + compareStatsHelper(t, expectedStatsIndexA, stats, time.Minute) + + stats = secondLocalStatsReader.Get(indexKeyB) + compareStatsHelper(t, expectedStatsIndexB, stats, time.Minute) + + // Test cluster-wide RPC. + var resp serverpb.IndexUsageStatisticsResponse + err = getStatusJSONProto(thirdServer, "indexusagestatistics", &resp) + require.NoError(t, err) + + statsEntries := 0 + for _, stats := range resp.Statistics { + // Skip if the table is not what we expected. + if stats.Key.TableID != roachpb.TableID(tableID) { + continue + } + statsEntries++ + switch stats.Key.IndexID { + case 2: // t@t_a_idx + compareStatsHelper(t, expectedStatsIndexA, stats.Stats, time.Minute) + case 3: // t@t_b_idx + compareStatsHelper(t, expectedStatsIndexB, stats.Stats, time.Minute) + } + } + + require.True(t, statsEntries == 2, "expect to find two stats entries in RPC response, but found %d", statsEntries) + + // Test max limit param in RPC endpoint. + rpcContext := newRPCTestContext(thirdServer.(*TestServer), testutils.NewTestBaseContext(security.RootUserName())) + rpcURL := thirdServer.ServingRPCAddr() + conn, err := rpcContext.GRPCDialNode(rpcURL, thirdServer.NodeID(), rpc.DefaultClass).Connect(ctx) + require.NoError(t, err) + + client := serverpb.NewStatusClient(conn) + response, err := client.IndexUsageStatistics(ctx, &serverpb.IndexUsageStatisticsRequest{ + Max: &serverpb.IndexUsageStatisticsRequest_MaxLimit{MaxLimit: 0}, + }) + + require.NoError(t, err) + require.True(t, len(response.Statistics) == 0, "expected 0 length slice from RPC response, but found: %d", len(response.Statistics)) + + // Test disabling subsystem. + _, err = secondServerSQLConn.Exec("SET CLUSTER SETTING sql.metrics.index_usage_stats.enabled = false") + require.NoError(t, err) + + // Records a non-full scan, but it shouldn't change the stats since we have + // stats collection disabled. + _, err = secondServerSQLConn.Exec("SELECT k, a FROM t WHERE a = 0") + require.NoError(t, err) + + err = getStatusJSONProto(thirdServer, "indexusagestatistics", &resp) + require.NoError(t, err) + + statsEntries = 0 + for _, stats := range resp.Statistics { + // Skip if the table is not what we expected. + if stats.Key.TableID != roachpb.TableID(tableID) { + continue + } + statsEntries++ + switch stats.Key.IndexID { + case 2: // t@t_a_idx + compareStatsHelper(t, expectedStatsIndexA, stats.Stats, time.Minute) + case 3: // t@t_b_idx + compareStatsHelper(t, expectedStatsIndexB, stats.Stats, time.Minute) + } + } + require.True(t, statsEntries == 2, "expect to find two stats entries in RPC response, but found %d", statsEntries) +} diff --git a/pkg/server/server_sql.go b/pkg/server/server_sql.go index fdad8346a200..1fa1591fe4e9 100644 --- a/pkg/server/server_sql.go +++ b/pkg/server/server_sql.go @@ -59,6 +59,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/sql/execinfrapb" "github.com/cockroachdb/cockroach/pkg/sql/flowinfra" "github.com/cockroachdb/cockroach/pkg/sql/gcjob/gcjobnotifier" + "github.com/cockroachdb/cockroach/pkg/sql/idxusage" "github.com/cockroachdb/cockroach/pkg/sql/optionalnodeliveness" "github.com/cockroachdb/cockroach/pkg/sql/pgwire" "github.com/cockroachdb/cockroach/pkg/sql/querycache" @@ -636,6 +637,9 @@ func newSQLServer(ctx context.Context, cfg sqlServerArgs) (*SQLServer, error) { if backupRestoreKnobs := cfg.TestingKnobs.BackupRestore; backupRestoreKnobs != nil { execCfg.BackupRestoreTestingKnobs = backupRestoreKnobs.(*sql.BackupRestoreTestingKnobs) } + if indexUsageStatsKnobs := cfg.TestingKnobs.IndexUsageStatsKnobs; indexUsageStatsKnobs != nil { + execCfg.IndexUsageStatsTestingKnobs = indexUsageStatsKnobs.(*idxusage.TestingKnobs) + } statsRefresher := stats.MakeRefresher( cfg.Settings, diff --git a/pkg/server/serverpb/status.go b/pkg/server/serverpb/status.go index 8ad77f7e3775..f16a12e9a6c2 100644 --- a/pkg/server/serverpb/status.go +++ b/pkg/server/serverpb/status.go @@ -29,6 +29,7 @@ type SQLStatusServer interface { Statements(context.Context, *StatementsRequest) (*StatementsResponse, error) ListDistSQLFlows(context.Context, *ListDistSQLFlowsRequest) (*ListDistSQLFlowsResponse, error) ListLocalDistSQLFlows(context.Context, *ListDistSQLFlowsRequest) (*ListDistSQLFlowsResponse, error) + IndexUsageStatistics(context.Context, *IndexUsageStatisticsRequest) (*IndexUsageStatisticsResponse, error) } // OptionalNodesStatusServer is a StatusServer that is only optionally present diff --git a/pkg/server/serverpb/status.pb.go b/pkg/server/serverpb/status.pb.go index 384c3a3231c0..17cabc62a69d 100644 --- a/pkg/server/serverpb/status.pb.go +++ b/pkg/server/serverpb/status.pb.go @@ -4041,6 +4041,122 @@ func (m *ResetSQLStatsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_ResetSQLStatsResponse proto.InternalMessageInfo +// Request object for issuing IndexUsageStatistics request. +type IndexUsageStatisticsRequest struct { + // node_id is the ID of the node where the stats data shall be retrieved from. + // If this is left empty, the cluster-wide aggregated result will be returned. + NodeID string `protobuf:"bytes,1,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty"` + // ordered_table_id specifies that if the returned stats data will be ordered + // based on the table_id. + OrderedTableID bool `protobuf:"varint,2,opt,name=ordered_table_id,json=orderedTableId,proto3" json:"ordered_table_id,omitempty"` + // ordered_index_id specifies that if the returned stats data's index ID + // will be ordered. + OrderedIndexID bool `protobuf:"varint,3,opt,name=ordered_index_id,json=orderedIndexId,proto3" json:"ordered_index_id,omitempty"` + // max specifies an upper bound of number of entries that will be returned + // by the RPC. If this field is left unset, then all stats data will be + // returned at once. + // + // Types that are valid to be assigned to Max: + // *IndexUsageStatisticsRequest_MaxLimit + Max isIndexUsageStatisticsRequest_Max `protobuf_oneof:"max"` +} + +func (m *IndexUsageStatisticsRequest) Reset() { *m = IndexUsageStatisticsRequest{} } +func (m *IndexUsageStatisticsRequest) String() string { return proto.CompactTextString(m) } +func (*IndexUsageStatisticsRequest) ProtoMessage() {} +func (*IndexUsageStatisticsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_07f09f8b91174efc, []int{90} +} +func (m *IndexUsageStatisticsRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *IndexUsageStatisticsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (m *IndexUsageStatisticsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_IndexUsageStatisticsRequest.Merge(m, src) +} +func (m *IndexUsageStatisticsRequest) XXX_Size() int { + return m.Size() +} +func (m *IndexUsageStatisticsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_IndexUsageStatisticsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_IndexUsageStatisticsRequest proto.InternalMessageInfo + +type isIndexUsageStatisticsRequest_Max interface { + isIndexUsageStatisticsRequest_Max() + MarshalTo([]byte) (int, error) + Size() int +} + +type IndexUsageStatisticsRequest_MaxLimit struct { + MaxLimit uint64 `protobuf:"varint,4,opt,name=max_limit,json=maxLimit,proto3,oneof" json:"max_limit,omitempty"` +} + +func (*IndexUsageStatisticsRequest_MaxLimit) isIndexUsageStatisticsRequest_Max() {} + +func (m *IndexUsageStatisticsRequest) GetMax() isIndexUsageStatisticsRequest_Max { + if m != nil { + return m.Max + } + return nil +} + +func (m *IndexUsageStatisticsRequest) GetMaxLimit() uint64 { + if x, ok := m.GetMax().(*IndexUsageStatisticsRequest_MaxLimit); ok { + return x.MaxLimit + } + return 0 +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*IndexUsageStatisticsRequest) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*IndexUsageStatisticsRequest_MaxLimit)(nil), + } +} + +// Response object returned by IndexUsageStatistics. +type IndexUsageStatisticsResponse struct { + Statistics []roachpb.CollectedIndexUsageStatistics `protobuf:"bytes,1,rep,name=statistics,proto3" json:"statistics"` +} + +func (m *IndexUsageStatisticsResponse) Reset() { *m = IndexUsageStatisticsResponse{} } +func (m *IndexUsageStatisticsResponse) String() string { return proto.CompactTextString(m) } +func (*IndexUsageStatisticsResponse) ProtoMessage() {} +func (*IndexUsageStatisticsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_07f09f8b91174efc, []int{91} +} +func (m *IndexUsageStatisticsResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *IndexUsageStatisticsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (m *IndexUsageStatisticsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_IndexUsageStatisticsResponse.Merge(m, src) +} +func (m *IndexUsageStatisticsResponse) XXX_Size() int { + return m.Size() +} +func (m *IndexUsageStatisticsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_IndexUsageStatisticsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_IndexUsageStatisticsResponse proto.InternalMessageInfo + func init() { proto.RegisterEnum("cockroach.server.serverpb.StacksType", StacksType_name, StacksType_value) proto.RegisterEnum("cockroach.server.serverpb.FileType", FileType_name, FileType_value) @@ -4158,432 +4274,444 @@ func init() { proto.RegisterType((*JobStatusResponse)(nil), "cockroach.server.serverpb.JobStatusResponse") proto.RegisterType((*ResetSQLStatsRequest)(nil), "cockroach.server.serverpb.ResetSQLStatsRequest") proto.RegisterType((*ResetSQLStatsResponse)(nil), "cockroach.server.serverpb.ResetSQLStatsResponse") + proto.RegisterType((*IndexUsageStatisticsRequest)(nil), "cockroach.server.serverpb.IndexUsageStatisticsRequest") + proto.RegisterType((*IndexUsageStatisticsResponse)(nil), "cockroach.server.serverpb.IndexUsageStatisticsResponse") } func init() { proto.RegisterFile("server/serverpb/status.proto", fileDescriptor_07f09f8b91174efc) } var fileDescriptor_07f09f8b91174efc = []byte{ - // 6706 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5c, 0x5d, 0x6c, 0x1b, 0xd9, - 0x75, 0xf6, 0x88, 0x14, 0x45, 0x1e, 0xea, 0x87, 0xba, 0x96, 0x64, 0x9a, 0xf6, 0x8a, 0xde, 0xf1, - 0xae, 0x57, 0xf6, 0x7a, 0xc9, 0x5d, 0x7b, 0xff, 0xb2, 0x49, 0x36, 0xab, 0x3f, 0xdb, 0xb2, 0xb5, - 0xb2, 0x3d, 0x92, 0x9a, 0x60, 0x93, 0x86, 0x1d, 0x72, 0xae, 0xe8, 0xb1, 0x86, 0x33, 0xd4, 0xcc, - 0x50, 0x11, 0x77, 0xbb, 0x69, 0xba, 0xfd, 0x4b, 0xd3, 0x34, 0x7f, 0x6d, 0x81, 0x14, 0x2d, 0xda, - 0x60, 0x1f, 0x92, 0xa2, 0x45, 0x8b, 0x04, 0x05, 0x8a, 0xf6, 0xa1, 0x3f, 0x28, 0x8a, 0x26, 0x45, - 0x81, 0x22, 0x40, 0xfb, 0x10, 0xb4, 0x80, 0xd2, 0x2a, 0x45, 0x51, 0xa0, 0x0f, 0x7d, 0x68, 0x9f, - 0x02, 0x14, 0x2d, 0xee, 0xdf, 0xf0, 0xce, 0x90, 0x1a, 0x92, 0xf6, 0x7a, 0xd3, 0x07, 0x5b, 0x9c, - 0x7b, 0xef, 0x39, 0xf7, 0xbb, 0xe7, 0x9e, 0x7b, 0xee, 0xb9, 0xe7, 0x9e, 0x19, 0x38, 0xeb, 0x61, - 0x77, 0x1f, 0xbb, 0x65, 0xf6, 0xa7, 0x59, 0x2d, 0x7b, 0xbe, 0xee, 0xb7, 0xbc, 0x52, 0xd3, 0x75, - 0x7c, 0x07, 0x9d, 0xae, 0x39, 0xb5, 0x5d, 0xd7, 0xd1, 0x6b, 0xf7, 0x4a, 0xac, 0x41, 0x49, 0xb4, - 0x2b, 0xe4, 0xaa, 0x2d, 0xd3, 0x32, 0xca, 0xa6, 0xbd, 0xe3, 0xb0, 0xc6, 0x85, 0x93, 0x75, 0xc7, - 0xf3, 0xcc, 0x66, 0x99, 0xfd, 0xe1, 0x85, 0x73, 0xf7, 0x9d, 0xaa, 0x57, 0x26, 0xff, 0x35, 0xab, - 0xf4, 0x0f, 0x2f, 0x3f, 0x45, 0xb9, 0x36, 0xab, 0x65, 0xbd, 0xd9, 0xac, 0x90, 0x3e, 0x45, 0x05, - 0x12, 0x15, 0x86, 0xee, 0xeb, 0x82, 0x89, 0x28, 0x6b, 0x60, 0x5f, 0x97, 0xca, 0xaf, 0x70, 0xf0, - 0x86, 0xa9, 0xd7, 0x6d, 0xc7, 0xf3, 0xcd, 0x9a, 0x27, 0xff, 0x26, 0x4c, 0x3a, 0x4f, 0x9c, 0xe6, - 0xbc, 0x18, 0x30, 0x1d, 0x27, 0xff, 0x13, 0x19, 0x77, 0xe1, 0x71, 0x6f, 0xcf, 0x2a, 0xd7, 0x1c, - 0xdb, 0xc7, 0xb6, 0x6f, 0x3a, 0x76, 0xb3, 0x2a, 0x3d, 0xf0, 0x26, 0xa7, 0x49, 0x13, 0x7c, 0x80, - 0x6b, 0xa6, 0xbd, 0xe3, 0xea, 0x74, 0x20, 0x26, 0xaf, 0x7a, 0xcc, 0xf3, 0x1d, 0x57, 0xaf, 0xe3, - 0x32, 0xb6, 0xeb, 0xa6, 0x8d, 0x9b, 0x55, 0xfe, 0x83, 0x57, 0x9f, 0xe9, 0xaa, 0x6e, 0xec, 0xd7, - 0x6a, 0xbc, 0x72, 0xbe, 0xab, 0xd2, 0x75, 0x6a, 0xbb, 0x9e, 0x51, 0xe5, 0xf5, 0x17, 0x77, 0xf7, - 0xcb, 0xbb, 0xfb, 0x7c, 0x0c, 0xe2, 0x47, 0xb3, 0x5a, 0xb6, 0xb0, 0xee, 0xe1, 0x4a, 0x68, 0x10, - 0xea, 0x31, 0x4d, 0x49, 0x23, 0x81, 0xa5, 0x24, 0xb7, 0xb1, 0xcc, 0x7d, 0x6c, 0x63, 0xcf, 0x0b, - 0x7e, 0x10, 0xbe, 0xfc, 0x27, 0x6f, 0x9f, 0x6f, 0xf9, 0xa6, 0x55, 0xb6, 0x9c, 0x3a, 0xf9, 0x47, - 0xaa, 0x9d, 0x3a, 0xaf, 0x29, 0xd0, 0x9a, 0x96, 0xed, 0x62, 0xcf, 0xb1, 0xf6, 0xb1, 0x51, 0xd1, - 0x0d, 0xc3, 0x0d, 0x51, 0xdd, 0xb3, 0x6a, 0x65, 0xdf, 0x6c, 0x60, 0xcf, 0xd7, 0x1b, 0x42, 0x3d, - 0xe6, 0xb1, 0x5f, 0x33, 0xca, 0xae, 0xbe, 0xe3, 0x97, 0xf7, 0xaf, 0xd2, 0xbf, 0x64, 0xc4, 0xfa, - 0x8e, 0xcf, 0xeb, 0x67, 0xea, 0x4e, 0xdd, 0xa1, 0x3f, 0xcb, 0xe4, 0x17, 0x2f, 0x3d, 0x5b, 0x77, - 0x9c, 0xba, 0x85, 0x89, 0xc8, 0xcb, 0xba, 0x6d, 0x3b, 0xbe, 0x4e, 0x26, 0x46, 0x60, 0x2c, 0xf2, - 0x5a, 0xfa, 0x54, 0x6d, 0xed, 0x44, 0x3b, 0x55, 0x4b, 0x70, 0x72, 0x19, 0xbb, 0xbe, 0xb9, 0x63, - 0xd6, 0x74, 0x1f, 0x7b, 0x1a, 0xde, 0x6b, 0x61, 0xcf, 0x47, 0xa7, 0x60, 0xcc, 0x76, 0x0c, 0x5c, - 0x31, 0x8d, 0xbc, 0x72, 0x4e, 0x59, 0xc8, 0x68, 0x29, 0xf2, 0xb8, 0x66, 0xa8, 0xff, 0x93, 0x04, - 0x24, 0x11, 0xac, 0x60, 0x5f, 0x37, 0x2d, 0x0f, 0xdd, 0x85, 0xa4, 0xdf, 0x6e, 0x62, 0xda, 0x78, - 0xf2, 0xca, 0x87, 0x4b, 0xc7, 0xae, 0x95, 0x52, 0x37, 0xb1, 0x5c, 0xb4, 0xd5, 0x6e, 0x62, 0x8d, - 0xb2, 0x42, 0xe7, 0x61, 0x02, 0xbb, 0xae, 0xe3, 0x56, 0x1a, 0xd8, 0xf3, 0xf4, 0x3a, 0xce, 0x8f, - 0x50, 0x20, 0xe3, 0xb4, 0xf0, 0x75, 0x56, 0x86, 0x10, 0x24, 0xc9, 0x1a, 0xc8, 0x27, 0xce, 0x29, - 0x0b, 0xe3, 0x1a, 0xfd, 0x8d, 0x34, 0x48, 0xed, 0x98, 0xd8, 0x32, 0xbc, 0x7c, 0xf2, 0x5c, 0x62, - 0x21, 0x7b, 0xe5, 0xf9, 0xe1, 0xd0, 0x5c, 0xa3, 0xb4, 0x4b, 0xc9, 0xef, 0x1c, 0x16, 0x4f, 0x68, - 0x9c, 0x53, 0xe1, 0x0f, 0x47, 0x20, 0xc5, 0x2a, 0xd0, 0x1c, 0xa4, 0x4c, 0xcf, 0x6b, 0x61, 0x57, - 0x48, 0x86, 0x3d, 0xa1, 0x3c, 0x8c, 0x79, 0xad, 0xea, 0x7d, 0x5c, 0xf3, 0x39, 0x52, 0xf1, 0x88, - 0x1e, 0x03, 0xd8, 0xd7, 0x2d, 0xd3, 0xa8, 0xec, 0xb8, 0x4e, 0x83, 0x42, 0x4d, 0x68, 0x19, 0x5a, - 0x72, 0xcd, 0x75, 0x1a, 0xa8, 0x08, 0x59, 0x56, 0xdd, 0xb2, 0x7d, 0xd3, 0xca, 0x27, 0x69, 0x3d, - 0xa3, 0xd8, 0x26, 0x25, 0xe8, 0x2c, 0x64, 0x88, 0x02, 0x61, 0xcf, 0xc3, 0x5e, 0x7e, 0xf4, 0x5c, - 0x62, 0x21, 0xa3, 0x75, 0x0a, 0x50, 0x19, 0x4e, 0x7a, 0x66, 0xdd, 0xd6, 0xfd, 0x96, 0x8b, 0x2b, - 0xba, 0x55, 0x77, 0x5c, 0xd3, 0xbf, 0xd7, 0xc8, 0xa7, 0x28, 0x06, 0x14, 0x54, 0x2d, 0x8a, 0x1a, - 0x02, 0xa7, 0xd9, 0xaa, 0x5a, 0x66, 0xad, 0xb2, 0x8b, 0xdb, 0xf9, 0x31, 0xda, 0x2e, 0xc3, 0x4a, - 0x6e, 0xe1, 0x36, 0x3a, 0x03, 0x99, 0x5d, 0xdc, 0xae, 0xb4, 0xa8, 0xcc, 0xd3, 0xb4, 0xb7, 0xf4, - 0x2e, 0x6e, 0x6f, 0x53, 0x79, 0x5f, 0x06, 0x84, 0x0f, 0x7c, 0x6c, 0x1b, 0xd8, 0xa8, 0x74, 0x5a, - 0x65, 0x68, 0xab, 0x9c, 0xa8, 0xb9, 0xc5, 0x5b, 0xab, 0x77, 0x61, 0x2a, 0x32, 0xb7, 0x28, 0x05, - 0x23, 0xcb, 0x8b, 0xb9, 0x13, 0x28, 0x0d, 0xc9, 0x8d, 0xdb, 0x2b, 0xab, 0x39, 0x05, 0x4d, 0x40, - 0x66, 0x79, 0x7d, 0x6d, 0x75, 0x63, 0xab, 0xb2, 0xbc, 0x98, 0x1b, 0x41, 0x00, 0x29, 0xf6, 0x98, - 0x4b, 0xa0, 0x0c, 0x8c, 0x6e, 0xaf, 0x91, 0xe2, 0x24, 0xa1, 0xdb, 0x5e, 0xcb, 0x8d, 0xaa, 0x0e, - 0xcc, 0x84, 0xf5, 0xd5, 0x6b, 0x3a, 0xb6, 0x87, 0xd1, 0x47, 0x61, 0xbc, 0x26, 0x95, 0xe7, 0x15, - 0x3a, 0xf5, 0xcf, 0x0c, 0x35, 0xf5, 0x7c, 0xce, 0x43, 0x8c, 0xd4, 0x32, 0x4c, 0xf2, 0xea, 0x7e, - 0x6b, 0xe3, 0x66, 0x32, 0x3d, 0x92, 0x4b, 0xa8, 0x1b, 0x00, 0x9b, 0x6d, 0xcf, 0xc7, 0x8d, 0x35, - 0x7b, 0xc7, 0x21, 0x93, 0xeb, 0xd1, 0xa7, 0x0a, 0xd9, 0x1d, 0x38, 0x01, 0x78, 0xa1, 0x06, 0xbb, - 0xd8, 0xb5, 0xb1, 0xc5, 0x1a, 0x30, 0xd5, 0x01, 0x56, 0x44, 0x1a, 0xa8, 0x9f, 0x4f, 0xc0, 0x54, - 0x80, 0x80, 0x8f, 0xf6, 0x8d, 0x30, 0x84, 0xd1, 0xa5, 0xc5, 0xa3, 0xc3, 0x62, 0x6a, 0x83, 0xc0, - 0x58, 0xf9, 0xe1, 0x61, 0xf1, 0x6a, 0xdd, 0xf4, 0xef, 0xb5, 0xaa, 0xa5, 0x9a, 0xd3, 0x28, 0x07, - 0x02, 0x30, 0xaa, 0x9d, 0xdf, 0xe5, 0xe6, 0x6e, 0xbd, 0xcc, 0x37, 0x92, 0x12, 0x23, 0x13, 0xa3, - 0x40, 0xaf, 0xc2, 0x18, 0x57, 0x2e, 0x0a, 0x26, 0x7b, 0x65, 0x5e, 0x12, 0x22, 0x31, 0x5e, 0xa5, - 0xed, 0xc0, 0xb0, 0x2d, 0x1a, 0x86, 0xcb, 0xa5, 0x26, 0x88, 0xd0, 0x2b, 0x00, 0x74, 0x3b, 0x64, - 0xe3, 0x49, 0x50, 0x16, 0xb3, 0x12, 0x0b, 0x5a, 0x59, 0x22, 0x43, 0xe3, 0x94, 0x19, 0x5a, 0x42, - 0x85, 0xb1, 0x1e, 0x96, 0x56, 0x92, 0x12, 0x3f, 0x19, 0x33, 0x89, 0x1d, 0x49, 0x73, 0x66, 0xb2, - 0x68, 0x37, 0x21, 0xeb, 0xed, 0x59, 0x15, 0x31, 0x9a, 0xd1, 0x81, 0x46, 0x83, 0x08, 0x9b, 0xa3, - 0xc3, 0x22, 0x6c, 0xde, 0x5d, 0x5f, 0x64, 0x94, 0x1a, 0x78, 0x7b, 0x16, 0xff, 0xad, 0x4e, 0xc2, - 0x38, 0x11, 0x98, 0xd0, 0x06, 0xf5, 0xb7, 0x13, 0x30, 0xc1, 0x0b, 0xf8, 0xe4, 0xdc, 0x80, 0x51, - 0x22, 0x4a, 0xa1, 0x83, 0x97, 0x7b, 0xc0, 0x67, 0x5b, 0x93, 0xd8, 0x6f, 0xe9, 0x0c, 0x6c, 0xd2, - 0x07, 0x3e, 0x0a, 0xc6, 0x00, 0xfd, 0x99, 0x02, 0x27, 0xc5, 0xa6, 0x53, 0xa9, 0xb6, 0x2b, 0x62, - 0xce, 0x47, 0x28, 0xe3, 0x57, 0x63, 0xe4, 0x12, 0x42, 0x54, 0x5a, 0xe7, 0x3c, 0x96, 0xda, 0x74, - 0xae, 0x8d, 0x55, 0xdb, 0x77, 0xdb, 0x4b, 0xb7, 0xf9, 0x48, 0x73, 0x91, 0xea, 0x95, 0x77, 0xbe, - 0xff, 0x60, 0x1a, 0x94, 0xb3, 0x22, 0xfd, 0x14, 0xde, 0x51, 0x60, 0xb6, 0x67, 0xe7, 0x28, 0x07, - 0x09, 0x62, 0x7d, 0xa8, 0xf6, 0x6a, 0xe4, 0x27, 0xda, 0x84, 0xd1, 0x7d, 0xdd, 0x6a, 0x31, 0x3b, - 0x1f, 0xde, 0x43, 0x76, 0xf7, 0x4b, 0x62, 0x63, 0x2e, 0x05, 0x9b, 0x70, 0x67, 0x63, 0xa6, 0xfd, - 0x8b, 0x6e, 0x98, 0x1c, 0x35, 0xc6, 0xeb, 0x95, 0x91, 0x97, 0x15, 0x35, 0x07, 0x93, 0x1a, 0xae, - 0x93, 0x4d, 0x51, 0xcc, 0xd9, 0x7f, 0x29, 0x30, 0x15, 0x14, 0xf1, 0x59, 0xbb, 0x0b, 0x63, 0x2e, - 0x2b, 0xe2, 0xf3, 0xf6, 0x52, 0x8c, 0x78, 0x23, 0xc4, 0xe2, 0x99, 0x0e, 0x4d, 0x13, 0x7c, 0x0a, - 0xf3, 0x90, 0x62, 0x15, 0x68, 0x06, 0x46, 0xdf, 0x74, 0x6c, 0xae, 0x12, 0x19, 0x8d, 0x3d, 0x14, - 0x1a, 0x30, 0x2e, 0x13, 0xca, 0x32, 0xc9, 0x30, 0x99, 0x5c, 0x97, 0x65, 0x92, 0xbd, 0xf2, 0xdc, - 0xd0, 0x90, 0x64, 0x39, 0x5c, 0x80, 0x2c, 0x11, 0x54, 0xdf, 0x2d, 0xfe, 0x9b, 0x49, 0xc8, 0x68, - 0xfa, 0x8e, 0x4f, 0x24, 0x49, 0x2c, 0x3e, 0xb8, 0xb8, 0x69, 0x99, 0x35, 0x5d, 0xb4, 0x4c, 0x2e, - 0x4d, 0x1c, 0x1d, 0x16, 0x33, 0x1a, 0x2b, 0x5d, 0x5b, 0xd1, 0x32, 0xbc, 0xc1, 0x9a, 0x81, 0x5e, - 0x04, 0xb8, 0xa7, 0xbb, 0x06, 0x75, 0xbe, 0x04, 0xea, 0xe9, 0x12, 0xf3, 0x65, 0x4a, 0x37, 0x74, - 0xd7, 0xa0, 0x4c, 0xc5, 0xc2, 0xbf, 0x27, 0x0a, 0xc8, 0x3e, 0x6e, 0x61, 0xdd, 0xa0, 0xe6, 0x22, - 0xa9, 0xd1, 0xdf, 0x44, 0x68, 0x8c, 0x4d, 0x92, 0xc2, 0x63, 0x0f, 0x64, 0x9b, 0xd5, 0x9b, 0x4d, - 0xcb, 0xc4, 0x06, 0x5d, 0xd0, 0x49, 0x4d, 0x3c, 0xa2, 0x2d, 0x48, 0x37, 0x5d, 0xa7, 0x4e, 0xd7, - 0x7a, 0x8a, 0x4e, 0xe1, 0x95, 0x38, 0x79, 0x89, 0x11, 0x96, 0xee, 0x70, 0x22, 0xb6, 0x2a, 0x18, - 0xb4, 0x80, 0x13, 0x7a, 0x0a, 0xa6, 0x08, 0x9a, 0x8a, 0xef, 0xea, 0xb6, 0xb7, 0x83, 0x5d, 0x8c, - 0xe9, 0x96, 0x99, 0xd4, 0x26, 0x49, 0xf1, 0x56, 0x50, 0x5a, 0xf8, 0x65, 0x05, 0xd2, 0x82, 0x15, - 0xc1, 0xde, 0xd0, 0xfd, 0xda, 0x3d, 0x26, 0x30, 0x8d, 0x3d, 0x90, 0x51, 0xda, 0xf8, 0x80, 0xf9, - 0x07, 0x49, 0x8d, 0xfe, 0xee, 0x8c, 0x32, 0x21, 0x8f, 0x72, 0x0e, 0x52, 0x4d, 0xbd, 0xe5, 0x61, - 0x83, 0x0e, 0x3e, 0xad, 0xf1, 0x27, 0x74, 0x11, 0x72, 0x4d, 0x6c, 0x1b, 0xa6, 0x5d, 0xaf, 0x78, - 0xb6, 0xde, 0xf4, 0xee, 0x39, 0x3e, 0x17, 0xc3, 0x14, 0x2f, 0xdf, 0xe4, 0xc5, 0x85, 0xfb, 0x30, - 0x11, 0x1a, 0x99, 0xac, 0x5e, 0x49, 0xa6, 0x5e, 0xcb, 0x61, 0xf5, 0x7a, 0x66, 0x28, 0x71, 0xc9, - 0xaa, 0x75, 0x34, 0x02, 0x13, 0x9a, 0x6e, 0xd7, 0xf1, 0x1d, 0xd7, 0xa9, 0x5a, 0xb8, 0xe1, 0xa1, - 0x73, 0x90, 0x6d, 0xd9, 0xfa, 0xbe, 0x6e, 0x5a, 0x7a, 0xd5, 0x62, 0x7e, 0x61, 0x5a, 0x93, 0x8b, - 0xd0, 0x0b, 0x70, 0x8a, 0x48, 0x10, 0xbb, 0x15, 0xdb, 0xf1, 0x2b, 0xcc, 0x67, 0xbf, 0xe7, 0x58, - 0x06, 0x76, 0x29, 0x9c, 0xb4, 0x36, 0xc3, 0xaa, 0x37, 0x1c, 0x7f, 0x9d, 0x54, 0xde, 0xa0, 0x75, - 0xe8, 0x09, 0x98, 0xb4, 0x9d, 0x0a, 0xd1, 0xa8, 0x0a, 0xab, 0xa7, 0x82, 0x4b, 0x6b, 0xe3, 0xb6, - 0x43, 0x30, 0xae, 0xd3, 0x32, 0xb4, 0x00, 0x53, 0x2d, 0xdb, 0xc0, 0x2e, 0xd7, 0x4c, 0x3f, 0x10, - 0x64, 0xb4, 0x18, 0x5d, 0x80, 0x49, 0x67, 0x3f, 0xd4, 0x30, 0x4d, 0x1b, 0x46, 0x4a, 0xd1, 0x69, - 0x48, 0xdb, 0x0e, 0x83, 0x49, 0x25, 0x9e, 0xd6, 0xc6, 0x6c, 0x87, 0x02, 0x43, 0x2f, 0x43, 0x7e, - 0xaf, 0x65, 0x62, 0xaf, 0x86, 0x6d, 0xbf, 0x82, 0xf7, 0x5a, 0xba, 0xe5, 0x55, 0x7c, 0xb3, 0xb6, - 0x6b, 0xda, 0x75, 0xea, 0x86, 0xa5, 0xb5, 0xb9, 0xa0, 0x7e, 0x95, 0x56, 0x6f, 0xb1, 0x5a, 0xf4, - 0x34, 0x20, 0x36, 0x12, 0xa7, 0x5e, 0xf1, 0x1d, 0xa7, 0x62, 0xe9, 0x6e, 0x9d, 0xe9, 0x57, 0x5a, - 0x9b, 0x22, 0x35, 0xeb, 0x4e, 0x7d, 0xcb, 0x71, 0xd6, 0x49, 0xb1, 0xba, 0x0b, 0x53, 0x54, 0xc6, - 0x64, 0x1a, 0x4c, 0x7a, 0x8c, 0x23, 0xee, 0xd8, 0x5e, 0x0b, 0xbb, 0x26, 0xf6, 0x2a, 0x4d, 0xec, - 0x56, 0x3c, 0x5c, 0x73, 0x6c, 0xb6, 0x48, 0x15, 0x2d, 0xc7, 0x6b, 0xee, 0x60, 0x77, 0x93, 0x96, - 0xa3, 0x4b, 0x30, 0xfd, 0x29, 0xd7, 0xf4, 0xc3, 0x8d, 0x47, 0x68, 0xe3, 0x29, 0x56, 0x11, 0xb4, - 0x55, 0x6f, 0x00, 0xdc, 0x71, 0xb1, 0xef, 0xb7, 0x37, 0x9b, 0xba, 0x4d, 0x7c, 0x42, 0xcf, 0xd7, - 0x5d, 0xbf, 0xd2, 0xb1, 0x4f, 0x69, 0x5a, 0x40, 0x1c, 0xc6, 0x53, 0x30, 0x86, 0x6d, 0xea, 0x0e, - 0x72, 0xef, 0x25, 0x85, 0x6d, 0xe2, 0x03, 0xbe, 0x92, 0xfc, 0xf7, 0xaf, 0x15, 0x15, 0xf5, 0xf3, - 0x69, 0x62, 0x4e, 0xec, 0x3a, 0xa6, 0x7b, 0xf2, 0x47, 0x20, 0xe9, 0x35, 0x75, 0x9b, 0x32, 0x89, - 0xdf, 0xda, 0x3b, 0xdd, 0xf3, 0x35, 0x49, 0x09, 0xd1, 0x1a, 0x00, 0x15, 0x99, 0x6c, 0x61, 0x9e, - 0x18, 0x44, 0x71, 0x85, 0xd1, 0x71, 0x03, 0xd3, 0x76, 0x4d, 0x36, 0x30, 0xd9, 0x2b, 0x97, 0x8e, - 0xd9, 0x71, 0xf8, 0x29, 0x94, 0xf2, 0xe2, 0xc3, 0x10, 0xdb, 0x34, 0x5b, 0xac, 0x0d, 0x98, 0xf4, - 0x9c, 0x96, 0x5b, 0xc3, 0xc1, 0x06, 0x3d, 0x4a, 0x9d, 0xb2, 0xeb, 0x47, 0x87, 0xc5, 0xf1, 0x4d, - 0x5a, 0xf3, 0x70, 0xae, 0xd9, 0xb8, 0xd7, 0x61, 0x62, 0xa0, 0x3d, 0x98, 0xe2, 0xdd, 0x11, 0x64, - 0xb4, 0xbf, 0x14, 0xed, 0x6f, 0xed, 0xe8, 0xb0, 0x38, 0xc1, 0xfa, 0xdb, 0x24, 0x35, 0xb4, 0xc3, - 0xe7, 0x87, 0xea, 0x90, 0xd3, 0x69, 0x13, 0x9e, 0xc4, 0xc6, 0xe8, 0x3e, 0x8b, 0x8d, 0xf5, 0x38, - 0x8b, 0x2d, 0xc3, 0x04, 0x5f, 0xc5, 0x26, 0x01, 0xd6, 0xa6, 0x87, 0x87, 0xec, 0x95, 0xbc, 0x24, - 0x56, 0xd1, 0x0d, 0x5d, 0x37, 0xc2, 0xdd, 0xa6, 0x44, 0x37, 0x18, 0x0d, 0xba, 0x49, 0x8d, 0x38, - 0xb5, 0x21, 0xf9, 0x0c, 0x9d, 0x96, 0x85, 0xd8, 0xc9, 0x95, 0x6c, 0x8e, 0x64, 0xba, 0x99, 0x0d, - 0xe2, 0xf3, 0xeb, 0xe5, 0xa1, 0x6b, 0x7e, 0x7b, 0x32, 0xea, 0x2c, 0x2c, 0x79, 0x7e, 0x3d, 0xf4, - 0x09, 0x98, 0xb0, 0x88, 0xfd, 0xc6, 0x5e, 0xc5, 0x72, 0x6a, 0xba, 0x95, 0xcf, 0x76, 0xed, 0xc6, - 0xbd, 0xf5, 0x65, 0x9d, 0x50, 0xbd, 0xae, 0xdb, 0x7a, 0x1d, 0xbb, 0x92, 0xda, 0x8c, 0x73, 0x6e, - 0xeb, 0x84, 0x19, 0xfa, 0x24, 0x4c, 0x0a, 0xee, 0x75, 0xcb, 0xa9, 0xea, 0x56, 0x7e, 0xfc, 0xe1, - 0xd8, 0x0b, 0xb0, 0xd7, 0x29, 0x37, 0xb4, 0x0d, 0xe3, 0x72, 0x40, 0x24, 0x3f, 0x41, 0xb9, 0x5f, - 0xee, 0xcf, 0x9d, 0x10, 0x85, 0xbc, 0xd2, 0xac, 0xd5, 0x29, 0x22, 0x87, 0xd2, 0xc0, 0xa8, 0xe5, - 0x27, 0xa9, 0xc5, 0xea, 0x14, 0x90, 0x5d, 0x5a, 0x58, 0xc0, 0x29, 0x66, 0x2c, 0xf9, 0xa3, 0xfa, - 0x4b, 0x0a, 0xdf, 0x2a, 0xfa, 0x9e, 0xa7, 0x90, 0x0e, 0x19, 0x97, 0xb4, 0xac, 0x98, 0x86, 0x47, - 0x7d, 0xde, 0xc4, 0xd2, 0xca, 0xd1, 0x61, 0x31, 0xcd, 0x96, 0xe1, 0x8a, 0x37, 0xb4, 0x76, 0x73, - 0x42, 0x2d, 0x4d, 0xd9, 0xae, 0x19, 0x9e, 0xba, 0x05, 0x93, 0x02, 0x0c, 0xf7, 0x03, 0x97, 0x20, - 0x45, 0x6b, 0x85, 0x1b, 0xf8, 0x44, 0x3f, 0xad, 0x91, 0x24, 0xcf, 0x29, 0xd5, 0x05, 0x98, 0xb8, - 0x4e, 0x03, 0x7f, 0x7d, 0x7d, 0xad, 0x77, 0x47, 0x60, 0x6a, 0x95, 0x46, 0xb7, 0x88, 0x58, 0x3d, - 0x6a, 0x22, 0x3f, 0x09, 0xe9, 0x60, 0x61, 0xb3, 0xd3, 0xdd, 0xf2, 0xd1, 0x61, 0x71, 0xec, 0x61, - 0x97, 0xf4, 0x98, 0xc7, 0x17, 0xf3, 0x0e, 0xcc, 0x91, 0xc9, 0xc0, 0xae, 0x57, 0xd1, 0x6d, 0x83, - 0xad, 0xd6, 0xba, 0xab, 0x37, 0xc4, 0x79, 0xef, 0x59, 0x79, 0xc4, 0x4c, 0x1d, 0x4a, 0x22, 0x02, - 0x57, 0xda, 0x62, 0x94, 0x8b, 0xb6, 0x71, 0x23, 0xa0, 0xd3, 0x66, 0xfc, 0x1e, 0xa5, 0xe8, 0x3a, - 0x64, 0x19, 0x59, 0x85, 0x86, 0x86, 0x12, 0xd4, 0xad, 0xbf, 0x10, 0xc7, 0x9c, 0x49, 0x82, 0xc6, - 0x80, 0x00, 0x07, 0xbf, 0xd5, 0x67, 0x00, 0x49, 0x32, 0xea, 0x2b, 0xd3, 0x1f, 0x87, 0x93, 0xa1, - 0xe6, 0x7c, 0x62, 0x03, 0x6b, 0xc0, 0xe6, 0x35, 0xce, 0x1a, 0x44, 0x66, 0x24, 0x64, 0x0d, 0xd4, - 0x9f, 0x00, 0xd8, 0x72, 0xf5, 0x1a, 0x5e, 0xdd, 0x27, 0x8a, 0xfe, 0x32, 0x24, 0x7d, 0xb3, 0x81, - 0xf9, 0x7e, 0x56, 0x28, 0xb1, 0x78, 0x5b, 0x49, 0xc4, 0xdb, 0x4a, 0x5b, 0x22, 0xde, 0xb6, 0x94, - 0x26, 0x4c, 0xbe, 0xf4, 0xfd, 0xa2, 0xa2, 0x51, 0x0a, 0xb2, 0x44, 0xc2, 0x91, 0x2d, 0xf1, 0xa8, - 0x7e, 0x53, 0x81, 0xa9, 0x45, 0x8b, 0x98, 0x1a, 0xdf, 0x71, 0x57, 0xdc, 0xb6, 0xd6, 0xb2, 0x89, - 0x52, 0x88, 0xb5, 0x40, 0xfb, 0x4a, 0x30, 0xa5, 0xe0, 0x1a, 0xfd, 0xc0, 0x2b, 0x61, 0x8c, 0xaf, - 0x04, 0xf4, 0x61, 0x48, 0x61, 0x32, 0x20, 0x8f, 0x1f, 0x2e, 0xe3, 0x76, 0xe6, 0xce, 0xf0, 0x35, - 0x4e, 0xa4, 0x5e, 0x81, 0xd9, 0x00, 0x31, 0xe5, 0x2d, 0x66, 0xe9, 0x74, 0x14, 0x77, 0xd0, 0xa5, - 0xfa, 0x27, 0x0a, 0xcc, 0x45, 0x89, 0x7a, 0xc7, 0x37, 0x12, 0xef, 0x65, 0x7c, 0x63, 0x19, 0xc6, - 0x0c, 0xb7, 0x5d, 0x71, 0x5b, 0x36, 0xd7, 0xf7, 0x38, 0x4d, 0x88, 0x4c, 0x83, 0x96, 0x32, 0xe8, - 0x5f, 0xf5, 0x0b, 0x0a, 0xe4, 0x3a, 0xd8, 0xff, 0x1f, 0x18, 0xb2, 0x37, 0x60, 0x5a, 0xc2, 0xc3, - 0xc5, 0xb8, 0x0a, 0x69, 0x3e, 0xd4, 0x41, 0xb4, 0x3e, 0x3a, 0xd6, 0x31, 0x36, 0x56, 0x4f, 0x55, - 0x61, 0xfc, 0xe6, 0xe6, 0xed, 0x8d, 0x80, 0xad, 0x08, 0xba, 0x2a, 0x9d, 0xa0, 0xab, 0xda, 0x80, - 0x09, 0x51, 0xbf, 0x4a, 0x9c, 0x02, 0x72, 0xae, 0xa1, 0xde, 0x01, 0x17, 0x05, 0x7b, 0x20, 0xa4, - 0x35, 0xc7, 0x60, 0x1a, 0x3f, 0xaa, 0xd1, 0xdf, 0xf2, 0x42, 0x48, 0x84, 0x16, 0x02, 0xa9, 0x31, - 0x58, 0xe4, 0x8b, 0x86, 0x72, 0x33, 0x9a, 0x78, 0x54, 0xff, 0x42, 0x81, 0xec, 0xba, 0x53, 0xef, - 0xbf, 0x87, 0xcc, 0xc0, 0xa8, 0x85, 0xf7, 0xb1, 0xc5, 0xd7, 0x18, 0x7b, 0x40, 0x8f, 0x01, 0x30, - 0x7f, 0x96, 0xae, 0x5d, 0xd6, 0x2b, 0xf3, 0x70, 0xc9, 0x7a, 0x25, 0x4a, 0x4b, 0x3c, 0x5a, 0x5a, - 0xc9, 0x0e, 0x9f, 0xc4, 0xc3, 0xa5, 0x55, 0x39, 0x48, 0x34, 0xf4, 0x03, 0xea, 0xe0, 0x65, 0x34, - 0xf2, 0x93, 0x80, 0x6c, 0xea, 0xbe, 0x8f, 0x5d, 0x9b, 0xc7, 0x5c, 0xc5, 0x23, 0x39, 0xc4, 0xb9, - 0xd8, 0xd0, 0x6b, 0x3e, 0xf7, 0xe8, 0xf9, 0xd3, 0xcd, 0x64, 0x3a, 0x9d, 0xcb, 0xa8, 0xb7, 0x01, - 0xad, 0x3b, 0x75, 0x72, 0x34, 0x33, 0xa5, 0xed, 0xe7, 0x03, 0xc4, 0x99, 0xa6, 0x45, 0x7c, 0xc6, - 0x4e, 0x47, 0xe3, 0x55, 0x96, 0x53, 0x2f, 0xc9, 0x47, 0x55, 0xd1, 0x5e, 0x2d, 0xc1, 0xc9, 0x75, - 0xa7, 0x7e, 0xcd, 0xb4, 0xb0, 0xb7, 0x6e, 0x7a, 0x7e, 0x5f, 0x3b, 0x79, 0x07, 0x66, 0xc2, 0xed, - 0x39, 0x84, 0x97, 0x61, 0x74, 0x87, 0x14, 0x72, 0x00, 0x67, 0x7b, 0x01, 0x20, 0x54, 0xb2, 0x69, - 0xa4, 0x04, 0xea, 0xc7, 0x61, 0x92, 0x73, 0xec, 0x3b, 0x2f, 0x08, 0x92, 0x84, 0x86, 0x4f, 0x0b, - 0xfd, 0x2d, 0xc9, 0x2b, 0x11, 0x91, 0x57, 0x32, 0x37, 0xaa, 0xd6, 0x60, 0x62, 0xd3, 0xd7, 0x6b, - 0xbb, 0xfd, 0xe7, 0xfc, 0x03, 0xfc, 0x32, 0x82, 0x05, 0x92, 0x62, 0xc3, 0x87, 0x94, 0x61, 0xe7, - 0xd2, 0x41, 0xdd, 0x84, 0x24, 0x81, 0x4f, 0x4f, 0xea, 0x3a, 0x37, 0xeb, 0x19, 0x8d, 0xfe, 0x26, - 0x87, 0x20, 0x02, 0xb3, 0xe2, 0x99, 0x6f, 0x32, 0xde, 0x09, 0x2d, 0x4d, 0x0a, 0x36, 0xcd, 0x37, - 0x31, 0x2a, 0x40, 0x9a, 0x5f, 0x8b, 0x79, 0xfc, 0x32, 0x22, 0x78, 0x56, 0x7f, 0x53, 0x81, 0xa9, - 0xeb, 0xd8, 0xa7, 0x92, 0xee, 0x0b, 0xfe, 0x0c, 0x64, 0x2c, 0xd3, 0xf3, 0x2b, 0x8e, 0x6d, 0xb5, - 0xf9, 0x41, 0x38, 0x4d, 0x0a, 0x6e, 0xdb, 0x56, 0x1b, 0xbd, 0xc4, 0x47, 0x36, 0x4a, 0x47, 0x76, - 0x3e, 0x66, 0x64, 0xa4, 0x33, 0xe9, 0x32, 0xa5, 0x00, 0x69, 0xae, 0x95, 0x2c, 0x36, 0x92, 0xd1, - 0x82, 0x67, 0x75, 0x0d, 0x72, 0x1d, 0x74, 0x5c, 0x07, 0x5e, 0x08, 0xeb, 0x40, 0xb1, 0x4f, 0x4f, - 0x42, 0x01, 0xde, 0x55, 0x60, 0xf2, 0x8e, 0xeb, 0xec, 0x0c, 0xa2, 0x01, 0x4b, 0xa1, 0xb1, 0x94, - 0x62, 0x4f, 0x82, 0x32, 0xc7, 0x92, 0x34, 0xac, 0x3c, 0x8c, 0xb1, 0x63, 0xac, 0xc7, 0x8e, 0x40, - 0x9a, 0x78, 0x54, 0x4f, 0x43, 0x92, 0xde, 0x37, 0xa4, 0x21, 0x79, 0x63, 0x75, 0xf1, 0x4e, 0xee, - 0x04, 0x1a, 0x83, 0xc4, 0xf2, 0x9d, 0xed, 0x9c, 0xa2, 0x5e, 0x84, 0xc9, 0xd7, 0xb1, 0xef, 0x9a, - 0xb5, 0xfe, 0xae, 0xc4, 0xef, 0x53, 0x67, 0x75, 0xc7, 0xa7, 0xf6, 0x96, 0xec, 0x23, 0x8f, 0x34, - 0xf2, 0xfe, 0x1a, 0x8c, 0x52, 0x7b, 0x3e, 0xd0, 0xa9, 0x36, 0x72, 0x12, 0xa5, 0x84, 0xea, 0x25, - 0xe2, 0xce, 0x72, 0xb8, 0xcc, 0x0c, 0x4b, 0xc6, 0x55, 0x09, 0x7b, 0x19, 0x9f, 0x19, 0x81, 0xa9, - 0xa0, 0x31, 0x77, 0xea, 0x1f, 0xb5, 0x97, 0x71, 0x1d, 0x52, 0x74, 0x1f, 0x10, 0x5e, 0xc6, 0xc5, - 0x3e, 0x07, 0xf7, 0xce, 0x40, 0x84, 0x87, 0xcd, 0xc8, 0xd1, 0x8a, 0x88, 0xb1, 0x27, 0x28, 0x9f, - 0x85, 0x41, 0xf8, 0x10, 0x69, 0x87, 0xe2, 0xeb, 0x6a, 0x0b, 0x72, 0xa4, 0x76, 0x05, 0x57, 0x5b, - 0x75, 0xa1, 0x0b, 0xa1, 0xbd, 0x5a, 0x79, 0x24, 0x7b, 0xf5, 0x3f, 0x8c, 0xc0, 0xb4, 0xd4, 0x2f, - 0x5f, 0x72, 0x5f, 0x50, 0x22, 0x27, 0x8f, 0x97, 0xfb, 0x0c, 0x2a, 0x44, 0xce, 0xba, 0xe1, 0x31, - 0xcc, 0x0f, 0x91, 0x41, 0xbe, 0xf3, 0xfd, 0x07, 0x04, 0xca, 0x51, 0xbc, 0x67, 0x93, 0x55, 0xc0, - 0x90, 0x95, 0xd0, 0xc9, 0x71, 0xc8, 0x04, 0x8b, 0x43, 0xbe, 0x16, 0x8e, 0x43, 0x5e, 0x1a, 0xa4, - 0xa3, 0xee, 0x38, 0xff, 0xdf, 0x24, 0x61, 0x6c, 0xeb, 0xc0, 0xa6, 0x67, 0xa8, 0xbb, 0x30, 0xc2, - 0x55, 0x78, 0x7c, 0x69, 0x91, 0x80, 0xf9, 0xc7, 0x41, 0xd7, 0x26, 0xbb, 0xba, 0x6f, 0x99, 0x46, - 0x69, 0x7b, 0x7b, 0x8d, 0xcc, 0xfc, 0xc8, 0xda, 0x8a, 0x36, 0x62, 0x1a, 0xe8, 0x15, 0x7a, 0x7e, - 0x70, 0x7d, 0x0e, 0x72, 0x30, 0x57, 0x9f, 0x91, 0xa0, 0xa7, 0x60, 0xca, 0x3f, 0xb0, 0x2b, 0x06, - 0xf6, 0x6a, 0xae, 0xd9, 0xf4, 0x4d, 0xc7, 0xe6, 0x4e, 0xc7, 0xa4, 0x7f, 0x60, 0xaf, 0x74, 0x4a, - 0xd1, 0x8b, 0x70, 0xca, 0x6e, 0x35, 0x58, 0x70, 0xab, 0x41, 0x36, 0x8f, 0x0a, 0x3e, 0xc0, 0xb5, - 0x96, 0x88, 0x5f, 0x8e, 0x6a, 0xb3, 0x76, 0xab, 0xb1, 0x19, 0xd4, 0xae, 0xf2, 0x4a, 0x54, 0x84, - 0x2c, 0xa1, 0x73, 0x31, 0x73, 0x1d, 0x68, 0xfc, 0x49, 0x03, 0xbb, 0xd5, 0xd0, 0x58, 0x09, 0x5a, - 0x80, 0x1c, 0x69, 0xa0, 0xb7, 0x7c, 0x27, 0x68, 0xc5, 0x4c, 0xe6, 0xa4, 0xdd, 0x6a, 0x2c, 0xb6, - 0x7c, 0x47, 0xb4, 0x7c, 0x0d, 0xd2, 0x06, 0xd6, 0x0d, 0xcb, 0xb4, 0x59, 0x98, 0x67, 0xd0, 0xa1, - 0x06, 0x54, 0x64, 0xb3, 0x31, 0x1b, 0x4d, 0xcb, 0xac, 0x99, 0x3e, 0x0f, 0xa6, 0x06, 0xcf, 0x04, - 0xa8, 0x4e, 0xfc, 0xcc, 0x4a, 0xb5, 0xed, 0x63, 0x16, 0xe2, 0x49, 0x68, 0x40, 0x8b, 0x96, 0x48, - 0x09, 0xba, 0x00, 0x53, 0x0d, 0xfd, 0xa0, 0x22, 0x37, 0x02, 0xda, 0x68, 0xa2, 0xa1, 0x1f, 0x2c, - 0x76, 0xda, 0x9d, 0x81, 0x8c, 0x8b, 0x75, 0x83, 0xed, 0x93, 0x59, 0xd6, 0x0b, 0x29, 0xa0, 0xfb, - 0xe4, 0x79, 0x98, 0x30, 0x3d, 0x1e, 0x87, 0x32, 0x6b, 0x3c, 0xa4, 0x92, 0xd6, 0xc6, 0x4d, 0xef, - 0x46, 0x50, 0x46, 0xf7, 0x44, 0xd7, 0x74, 0x5c, 0xd3, 0x6f, 0xd3, 0xa0, 0x08, 0xd9, 0x13, 0xf9, - 0xb3, 0xfa, 0xeb, 0x09, 0xc8, 0x2e, 0xd6, 0x7c, 0x73, 0x1f, 0xdf, 0x6d, 0x61, 0xb7, 0x8d, 0xe6, - 0x02, 0x7d, 0xca, 0x2c, 0xa5, 0x24, 0xa5, 0xf8, 0x38, 0xa4, 0xc8, 0xc4, 0x9a, 0x06, 0x15, 0xd5, - 0xf8, 0xd2, 0xca, 0xc3, 0xe9, 0xda, 0x28, 0xd1, 0xdf, 0x15, 0x6d, 0xd4, 0x3f, 0xb0, 0xd7, 0x0c, - 0xb2, 0x50, 0xbc, 0x3d, 0xe1, 0xb9, 0x92, 0x9f, 0x1d, 0x1d, 0x4c, 0x0c, 0xaf, 0x83, 0x4f, 0xc2, - 0xa4, 0xe9, 0x55, 0x0c, 0xd3, 0xf3, 0x5d, 0xb3, 0xda, 0xea, 0x44, 0xc4, 0x27, 0x4c, 0x6f, 0xa5, - 0x53, 0x88, 0x96, 0x60, 0xb4, 0x79, 0x4f, 0x04, 0xb9, 0x27, 0x7b, 0xde, 0x5e, 0x06, 0x07, 0x86, - 0x8e, 0x80, 0x4a, 0x77, 0x08, 0x8d, 0xc6, 0x48, 0x99, 0x64, 0x83, 0x9b, 0x18, 0x65, 0x61, 0x44, - 0xba, 0x4f, 0x39, 0x0d, 0x69, 0x7a, 0x29, 0x6b, 0x3b, 0x36, 0x55, 0x8e, 0x8c, 0x36, 0xe6, 0xed, - 0x59, 0x8b, 0xb6, 0x63, 0xab, 0x4f, 0xc2, 0x28, 0x65, 0x83, 0x26, 0x20, 0x73, 0x47, 0x5b, 0xbd, - 0xb3, 0xa8, 0xad, 0x6d, 0x5c, 0xcf, 0x9d, 0x20, 0x8f, 0xab, 0x1f, 0x5b, 0x5d, 0xde, 0xde, 0x22, - 0x8f, 0x8a, 0xfa, 0x1c, 0x9c, 0x24, 0xfe, 0xea, 0x26, 0xf6, 0x3c, 0xe9, 0x52, 0x8f, 0x74, 0xda, - 0xf2, 0xb0, 0x2b, 0xb9, 0x6d, 0xc1, 0xb3, 0xfa, 0x9f, 0x49, 0x18, 0xe3, 0xed, 0x1f, 0xe9, 0x0e, - 0x2e, 0x63, 0x18, 0x09, 0x63, 0x20, 0xf2, 0xaf, 0x59, 0x26, 0xb6, 0xfd, 0xe0, 0x42, 0x9a, 0x99, - 0x80, 0x09, 0x56, 0xca, 0xef, 0x97, 0xd1, 0x45, 0xc8, 0xd1, 0x0b, 0xad, 0x1a, 0xcd, 0xe3, 0xa9, - 0x50, 0x56, 0xec, 0x0c, 0x32, 0x25, 0x95, 0x6f, 0x10, 0x8e, 0x9b, 0x30, 0xa9, 0xd3, 0x29, 0xa8, - 0xf0, 0x50, 0x3f, 0x4d, 0x0e, 0xc9, 0x86, 0x63, 0x2c, 0xc7, 0xcf, 0x99, 0x08, 0x17, 0xea, 0x41, - 0x11, 0x59, 0xfe, 0x81, 0x8a, 0xa5, 0x86, 0x57, 0xb1, 0x4b, 0x30, 0x6d, 0xe9, 0x9e, 0x5f, 0x91, - 0x50, 0xb5, 0xf9, 0x24, 0x4f, 0x91, 0x8a, 0xee, 0x15, 0x95, 0xa1, 0xab, 0x46, 0x5e, 0x51, 0x11, - 0x03, 0x01, 0x83, 0x18, 0x88, 0x6c, 0x2f, 0x03, 0xb1, 0x08, 0xc0, 0x71, 0xf8, 0x07, 0x36, 0x8f, - 0xa9, 0xaa, 0x71, 0x51, 0x0d, 0xb6, 0x75, 0x68, 0x19, 0x46, 0xb5, 0x75, 0x60, 0xa3, 0xab, 0x30, - 0xd7, 0x35, 0x1e, 0xa6, 0xb9, 0xcc, 0x5e, 0x9c, 0x8c, 0x0c, 0x8a, 0x68, 0xf1, 0xcd, 0x64, 0x7a, - 0x2c, 0x97, 0x56, 0x7f, 0x51, 0x81, 0x69, 0x59, 0x4b, 0x99, 0x37, 0xf6, 0x28, 0x75, 0xef, 0xf8, - 0x78, 0xd2, 0xef, 0x28, 0x30, 0x13, 0x5e, 0x31, 0xdc, 0xe5, 0x58, 0x81, 0xb4, 0xc7, 0xcb, 0xb8, - 0xcf, 0x11, 0x27, 0x20, 0x4e, 0x2e, 0xc2, 0xec, 0x82, 0x12, 0xdd, 0x8c, 0xf8, 0x09, 0x71, 0x26, - 0xa3, 0x4b, 0x24, 0x61, 0x57, 0x41, 0xdd, 0x03, 0xb4, 0xac, 0xdb, 0x35, 0x6c, 0x51, 0x79, 0xf6, - 0x3d, 0x43, 0x5c, 0x80, 0x34, 0x9b, 0x14, 0x93, 0x5d, 0x64, 0x65, 0x96, 0xb2, 0xc4, 0x5f, 0xa5, - 0xc4, 0xc4, 0xef, 0xa4, 0x95, 0x91, 0x75, 0x99, 0x88, 0xd8, 0x86, 0xeb, 0x70, 0x32, 0xd4, 0x25, - 0x97, 0x0d, 0x39, 0xd0, 0xd1, 0x62, 0x6c, 0xf0, 0xdb, 0xcb, 0xe0, 0xb9, 0x13, 0xdb, 0x18, 0x91, - 0x62, 0x1b, 0x6a, 0x1b, 0x66, 0x18, 0x23, 0x3e, 0xc0, 0xbe, 0xe8, 0x2f, 0x03, 0x70, 0x21, 0x0a, - 0xfc, 0xe3, 0xec, 0x6a, 0x9d, 0x33, 0x58, 0x5b, 0xd1, 0x32, 0xbc, 0x41, 0x9f, 0x31, 0xac, 0xc1, - 0x6c, 0xa4, 0xeb, 0x07, 0x1e, 0xc5, 0x63, 0x70, 0x86, 0x4c, 0xd2, 0x72, 0x90, 0xe3, 0x49, 0x03, - 0x7d, 0x41, 0xea, 0x84, 0xd0, 0x6b, 0xaa, 0xf5, 0xa6, 0xdf, 0xfe, 0x51, 0xea, 0xf5, 0x1f, 0x2b, - 0x70, 0xb6, 0x37, 0x56, 0x3e, 0xfa, 0xf5, 0x20, 0xa8, 0xc9, 0xc2, 0xb3, 0xa1, 0x43, 0xe6, 0x9e, - 0x55, 0x92, 0xb3, 0x5a, 0x4b, 0x9b, 0xd8, 0x35, 0x75, 0xcb, 0x7c, 0x13, 0x1b, 0x1a, 0xae, 0x93, - 0x0d, 0xb1, 0x1d, 0xe8, 0x26, 0xe5, 0x31, 0xb4, 0x9e, 0x87, 0x44, 0x14, 0xd1, 0xf3, 0xd3, 0x70, - 0x8a, 0x34, 0x21, 0x1b, 0xef, 0xe6, 0xdd, 0xf5, 0x6b, 0x96, 0xf3, 0xa9, 0x40, 0xc2, 0xff, 0x96, - 0x00, 0xc4, 0xcb, 0x35, 0xdc, 0x70, 0x7c, 0x4c, 0x6b, 0xd1, 0x0e, 0x8c, 0xed, 0x58, 0xce, 0xa7, - 0x2a, 0x81, 0x5b, 0xfb, 0x3a, 0x77, 0x35, 0x3e, 0x38, 0x90, 0x70, 0x23, 0x19, 0xba, 0x25, 0xc2, - 0x94, 0xba, 0x1c, 0x29, 0xf6, 0x4b, 0x4b, 0x11, 0xee, 0x6b, 0x06, 0xda, 0x80, 0x51, 0xd3, 0xde, - 0x71, 0xc4, 0x20, 0xe3, 0x52, 0x28, 0xba, 0x51, 0xca, 0x69, 0x5d, 0x8c, 0x4d, 0xe1, 0xbf, 0x15, - 0x48, 0x52, 0x97, 0xfc, 0x51, 0xea, 0xc8, 0x12, 0x64, 0x82, 0xc4, 0xd6, 0xa1, 0xfc, 0xf3, 0x0e, - 0x19, 0x51, 0x16, 0x7e, 0x43, 0xc6, 0x6e, 0x2a, 0x9e, 0x1f, 0x6e, 0xe4, 0xfc, 0x3c, 0xc2, 0x79, - 0xa8, 0x8f, 0x43, 0x8a, 0x9f, 0xa9, 0xb3, 0x30, 0xa6, 0x6d, 0x6f, 0x6c, 0x30, 0x57, 0x06, 0x20, - 0x75, 0x77, 0x7b, 0x75, 0x7b, 0x75, 0x25, 0xa7, 0xa8, 0xdf, 0x52, 0x20, 0xdf, 0xad, 0x04, 0x5c, - 0x75, 0xd7, 0x60, 0x94, 0x4c, 0xc8, 0x20, 0x89, 0x8c, 0xdd, 0x60, 0x82, 0xa8, 0x1c, 0xd5, 0x9c, - 0xf7, 0x52, 0x6f, 0xff, 0x49, 0x81, 0xdc, 0x66, 0x53, 0xb7, 0x43, 0x37, 0x31, 0xe7, 0x23, 0x06, - 0x6e, 0x09, 0x3a, 0x33, 0x1b, 0x4c, 0x91, 0x26, 0xa7, 0x10, 0x30, 0x5b, 0xf7, 0xc2, 0x0f, 0x0f, - 0x8b, 0xcf, 0x0d, 0x77, 0x44, 0xbd, 0x85, 0xdb, 0x52, 0xe6, 0xc1, 0x46, 0x27, 0xf3, 0x20, 0xf1, - 0x30, 0x1c, 0x79, 0xc2, 0x02, 0x31, 0x28, 0xd3, 0xd2, 0xe8, 0xf8, 0x54, 0x14, 0x21, 0xcb, 0x22, - 0x02, 0x35, 0xa7, 0x65, 0xfb, 0x3c, 0x74, 0x0d, 0xb4, 0x68, 0x99, 0x94, 0xa0, 0xe7, 0x61, 0x4e, - 0x6f, 0x36, 0x5d, 0xe7, 0xc0, 0x6c, 0xe8, 0x3e, 0x26, 0x2e, 0xf6, 0x2e, 0x77, 0x4c, 0x58, 0x3a, - 0xd3, 0x8c, 0x54, 0xbb, 0x62, 0x7a, 0xbb, 0xcc, 0x3f, 0x59, 0x87, 0xac, 0xef, 0xf8, 0xba, 0x55, - 0x11, 0xb7, 0x52, 0x5d, 0x09, 0x11, 0xd1, 0xeb, 0xb1, 0xd7, 0x7f, 0x6c, 0x79, 0x99, 0x42, 0x13, - 0xb9, 0x8e, 0x94, 0x9e, 0x96, 0xa8, 0x1f, 0x84, 0x19, 0x7e, 0x0f, 0x1e, 0xbe, 0x5c, 0x1d, 0x64, - 0x6e, 0xd4, 0xaf, 0x4e, 0xc0, 0x6c, 0x84, 0xba, 0xfb, 0x22, 0x26, 0xfd, 0x5e, 0x2f, 0xda, 0xbf, - 0x56, 0xe0, 0xa4, 0xb8, 0xab, 0x97, 0xb3, 0x1b, 0x33, 0x54, 0x4b, 0xaf, 0xc5, 0x07, 0x04, 0xbb, - 0xb1, 0x96, 0x82, 0x3c, 0x80, 0xde, 0x59, 0x8e, 0x91, 0xea, 0x07, 0xcf, 0x72, 0x6c, 0x46, 0xfa, - 0x29, 0xfc, 0x5d, 0x86, 0xe5, 0x84, 0x06, 0xc9, 0x4f, 0x5d, 0xe9, 0x12, 0x4a, 0x8f, 0x74, 0x89, - 0x9f, 0x51, 0x60, 0x56, 0xca, 0x87, 0xaa, 0x44, 0x6f, 0x88, 0x6e, 0x1f, 0x1d, 0x16, 0x4f, 0x6e, - 0x77, 0x1a, 0x3c, 0x74, 0x00, 0xea, 0x64, 0x2b, 0xca, 0xcc, 0xf0, 0xd0, 0x1f, 0x28, 0x70, 0x41, - 0x4a, 0xa6, 0xea, 0xca, 0xc5, 0x92, 0x60, 0x25, 0x28, 0xac, 0x4f, 0x1c, 0x1d, 0x16, 0xcf, 0x75, - 0x32, 0xad, 0xc2, 0xd9, 0x59, 0x0f, 0x8d, 0xf1, 0x9c, 0x1b, 0xcb, 0xd9, 0xf0, 0xd0, 0x67, 0x15, - 0xc8, 0x87, 0x13, 0xc0, 0x24, 0x88, 0x49, 0x0a, 0xf1, 0xce, 0xd1, 0x61, 0x71, 0x66, 0x43, 0x4a, - 0x07, 0x7b, 0x68, 0x58, 0x33, 0x76, 0x17, 0x37, 0xc3, 0x43, 0x07, 0x80, 0x44, 0x4a, 0x98, 0x84, - 0x61, 0x94, 0x62, 0xb8, 0x75, 0x74, 0x58, 0x9c, 0xda, 0x60, 0x09, 0x62, 0x0f, 0xdd, 0xfd, 0x94, - 0x2d, 0x33, 0x32, 0x3c, 0xf4, 0x45, 0x05, 0x4e, 0x47, 0x12, 0xd9, 0x24, 0x04, 0x29, 0x8a, 0x60, - 0xf3, 0xe8, 0xb0, 0x78, 0x6a, 0x3b, 0xdc, 0xe8, 0xa1, 0x91, 0x9c, 0x6a, 0xf5, 0x62, 0x68, 0x78, - 0xe8, 0xf3, 0x0a, 0xe4, 0xc3, 0x19, 0x73, 0x12, 0xa0, 0x0c, 0x05, 0xa4, 0x1d, 0x1d, 0x16, 0xe7, - 0x6e, 0xef, 0xbf, 0xa7, 0x78, 0xe6, 0x9c, 0xfd, 0x9e, 0x70, 0xbe, 0xae, 0x80, 0x7a, 0x5c, 0x4e, - 0x9e, 0x04, 0x6c, 0x8c, 0x02, 0x7b, 0xe3, 0xe8, 0xb0, 0x38, 0x7f, 0xb7, 0x67, 0x86, 0xde, 0x43, - 0x03, 0x9c, 0xdf, 0x8b, 0xe1, 0x6b, 0x78, 0xe8, 0x2b, 0x0a, 0x9c, 0xed, 0x4e, 0x01, 0x94, 0x20, - 0xa6, 0x3b, 0x93, 0xa9, 0x85, 0x13, 0x02, 0x1f, 0x7e, 0x32, 0xdd, 0x5e, 0x0c, 0x0d, 0x8f, 0xa6, - 0x6d, 0xf7, 0xb4, 0xa6, 0xfd, 0xd2, 0xb6, 0xb3, 0xb1, 0xaf, 0xfe, 0xf4, 0x36, 0xdb, 0xb2, 0xe5, - 0x94, 0xc2, 0xb9, 0x37, 0x93, 0x69, 0x25, 0x97, 0x56, 0x5f, 0x82, 0xdc, 0x0d, 0xc7, 0x7f, 0x80, - 0x3d, 0xed, 0x73, 0x63, 0x30, 0x2d, 0x51, 0xbe, 0x0f, 0x2f, 0x4e, 0x7c, 0x5b, 0x81, 0xd9, 0x7b, - 0x8e, 0xcf, 0xe6, 0xae, 0x47, 0xbe, 0xfe, 0x72, 0x8c, 0x68, 0xba, 0x90, 0x76, 0x4a, 0xc2, 0xdb, - 0xd9, 0x1d, 0xbe, 0x9d, 0x4d, 0x47, 0xeb, 0x1f, 0x78, 0x3f, 0x9b, 0xbe, 0x17, 0xed, 0xa9, 0xb0, - 0x0f, 0x69, 0xc1, 0x1e, 0x7d, 0x08, 0x92, 0x06, 0xf6, 0x6a, 0xdc, 0x3f, 0x51, 0x7b, 0x24, 0xf3, - 0xd1, 0x76, 0x22, 0x88, 0x1d, 0x78, 0x8c, 0x94, 0xea, 0x98, 0x04, 0xd5, 0x91, 0xde, 0x09, 0xaa, - 0x85, 0xbf, 0x55, 0x60, 0x82, 0xa6, 0x2b, 0x05, 0xf3, 0xf5, 0xa8, 0x73, 0xa1, 0xde, 0x00, 0xe8, - 0x4c, 0x19, 0x9f, 0xa7, 0x17, 0x1e, 0x68, 0x9e, 0x82, 0x9c, 0x76, 0xd1, 0xa2, 0xf0, 0x0b, 0x0a, - 0x73, 0x0b, 0x82, 0xc1, 0x0c, 0xe4, 0x16, 0x68, 0xe4, 0x18, 0xe2, 0xb8, 0x01, 0x9a, 0x57, 0x86, - 0x42, 0x13, 0x92, 0x9e, 0xc6, 0x39, 0x15, 0x7e, 0x0a, 0xe6, 0x7a, 0xab, 0x53, 0x8f, 0xf5, 0x7c, - 0x3b, 0xbc, 0x9e, 0x3f, 0x30, 0x54, 0xf7, 0xf2, 0x70, 0xe5, 0xab, 0x99, 0x8b, 0x30, 0x3e, 0x68, - 0x56, 0xd0, 0x37, 0x46, 0x79, 0x7e, 0xe0, 0xfb, 0xb2, 0x66, 0xe5, 0x0b, 0xcf, 0x91, 0x47, 0x70, - 0xe1, 0xf9, 0x97, 0x0a, 0xcc, 0xb8, 0x7c, 0x20, 0x21, 0x93, 0xc0, 0xee, 0x2d, 0x3f, 0xd2, 0xef, - 0x8a, 0x57, 0x7a, 0x9d, 0x83, 0x33, 0x39, 0xc6, 0x1c, 0x44, 0xeb, 0x1f, 0xdc, 0x1c, 0xb8, 0xd1, - 0x9e, 0x0a, 0x5f, 0x8e, 0x2a, 0x72, 0x01, 0xd2, 0xa2, 0x95, 0x88, 0x2a, 0xb9, 0xc7, 0x2a, 0x79, - 0xaf, 0xd7, 0x36, 0x5f, 0x13, 0x41, 0x86, 0xc4, 0xd0, 0x39, 0x96, 0x3c, 0xac, 0xf0, 0x16, 0xcc, - 0xf5, 0x16, 0x49, 0x0f, 0x95, 0xbe, 0x15, 0x56, 0xe9, 0x17, 0x06, 0x16, 0xfa, 0x31, 0xea, 0xcc, - 0x13, 0x52, 0x9e, 0x01, 0xb4, 0xd2, 0x79, 0xa5, 0xba, 0x6f, 0x2e, 0xc1, 0x02, 0xb7, 0x6d, 0xfd, - 0x5b, 0x7e, 0x6b, 0x04, 0xc6, 0x69, 0x53, 0xf1, 0x76, 0xed, 0xa3, 0xb6, 0x82, 0x4f, 0xc3, 0x34, - 0xb6, 0x6b, 0x6e, 0x9b, 0xde, 0x41, 0x8a, 0x3c, 0x61, 0x7a, 0x46, 0xd7, 0x72, 0x9d, 0x0a, 0x1e, - 0xcf, 0x28, 0x8a, 0x73, 0x2b, 0x4b, 0x10, 0x61, 0x47, 0x5c, 0x76, 0x14, 0xa5, 0x39, 0x24, 0x9d, - 0x06, 0xec, 0x0c, 0x9c, 0x94, 0x1a, 0xb0, 0x93, 0xef, 0x02, 0xe4, 0x78, 0x44, 0x7d, 0x17, 0xb7, - 0x39, 0x1b, 0xf6, 0x12, 0x0b, 0xbf, 0xcf, 0xb8, 0x85, 0xdb, 0x8c, 0x55, 0xb8, 0x25, 0xe3, 0x97, - 0x8a, 0xb4, 0xa4, 0x3c, 0xd5, 0x8f, 0xc2, 0xa4, 0x90, 0x6e, 0x90, 0xfc, 0x26, 0x0c, 0x29, 0x0b, - 0xa1, 0x3c, 0x15, 0x9b, 0x07, 0xd4, 0x91, 0xb6, 0x88, 0x78, 0x30, 0x62, 0xf5, 0x65, 0x98, 0xee, - 0xdc, 0xb7, 0x0e, 0xe5, 0x81, 0x7c, 0x3b, 0x0d, 0x48, 0x26, 0xe5, 0xb8, 0x9a, 0x34, 0xf7, 0x8c, - 0x97, 0x72, 0x6c, 0x37, 0xe3, 0x73, 0x94, 0x22, 0x2c, 0x4a, 0xcb, 0x8e, 0x65, 0xe1, 0x9a, 0x8f, - 0x8d, 0xa0, 0xae, 0x2b, 0x75, 0x5d, 0xea, 0x03, 0x2d, 0x03, 0xd0, 0x6b, 0x0c, 0x17, 0x7b, 0x78, - 0xb8, 0xab, 0xc3, 0x0c, 0xa1, 0xd3, 0x08, 0x19, 0x7a, 0x09, 0xf2, 0xa6, 0xed, 0x63, 0xd7, 0xd6, - 0xad, 0x8a, 0xde, 0x6c, 0xd2, 0x8b, 0xa9, 0x4a, 0xd3, 0xc5, 0x3b, 0xe6, 0x01, 0xbf, 0x9f, 0x9a, - 0x15, 0xf5, 0x8b, 0xcd, 0xe6, 0x86, 0xde, 0xc0, 0x77, 0x68, 0x25, 0xfa, 0x34, 0x8c, 0xd3, 0x77, - 0xa7, 0xc8, 0x84, 0x39, 0xb6, 0xb8, 0xa3, 0xda, 0x1a, 0x6e, 0xc4, 0xab, 0xfc, 0xd5, 0xe2, 0x60, - 0xe4, 0x5b, 0x1d, 0x96, 0x5d, 0x63, 0x0f, 0xf5, 0x57, 0xf8, 0x2b, 0x05, 0xe6, 0x05, 0x79, 0x0f, - 0x79, 0xdd, 0xc2, 0x6d, 0x74, 0x0d, 0xd2, 0x44, 0xbf, 0x82, 0xa4, 0xc6, 0x48, 0x1c, 0x66, 0xcf, - 0x2a, 0xf5, 0x26, 0x14, 0x19, 0x78, 0xbb, 0xb8, 0xbd, 0xa2, 0xfb, 0xba, 0xbc, 0x53, 0x8d, 0xbc, - 0xc7, 0x3b, 0x55, 0xe1, 0xb7, 0x46, 0xe0, 0x6c, 0xdc, 0xbc, 0x23, 0xa3, 0x63, 0xf7, 0xb2, 0x57, - 0xd6, 0x1f, 0x4c, 0xbc, 0xb1, 0xc3, 0xa4, 0xb6, 0xf4, 0x63, 0xf4, 0xda, 0x8e, 0x2e, 0xfa, 0xa5, - 0x1b, 0xec, 0xda, 0xee, 0x87, 0x87, 0xc5, 0x57, 0x87, 0xb4, 0x3f, 0x0d, 0xff, 0x9a, 0x69, 0xd7, - 0xb1, 0xdb, 0x74, 0x4d, 0xdb, 0xe7, 0x17, 0x7f, 0xaf, 0x8a, 0xfc, 0xec, 0x91, 0xee, 0xab, 0xba, - 0xde, 0x33, 0x10, 0xca, 0xcb, 0x2e, 0x7c, 0x4f, 0x81, 0x0b, 0x83, 0xa9, 0x09, 0xd2, 0xd8, 0x12, - 0xf4, 0xe4, 0x19, 0x7f, 0x26, 0xd2, 0xdf, 0x40, 0x9a, 0x96, 0xa1, 0x6c, 0x1e, 0xf5, 0xdc, 0xab, - 0x9f, 0x1d, 0x81, 0x42, 0x30, 0xfe, 0xd0, 0x9e, 0xd3, 0x74, 0x5c, 0x1f, 0x4d, 0x06, 0xc9, 0x09, - 0x09, 0x2a, 0xc9, 0xb3, 0x90, 0xa9, 0x39, 0x8d, 0xa6, 0x85, 0x7d, 0x6c, 0xf0, 0x14, 0xc2, 0x4e, - 0x01, 0xba, 0x0a, 0xb3, 0x81, 0x6d, 0xa8, 0xec, 0x74, 0xa6, 0x81, 0x5f, 0x2a, 0xcd, 0x04, 0x95, - 0xd2, 0x14, 0xa1, 0x57, 0x21, 0xdf, 0x21, 0x92, 0x3e, 0x24, 0x42, 0x86, 0x4b, 0x3f, 0x58, 0x40, - 0x05, 0xa2, 0x68, 0x73, 0x5e, 0x0f, 0x98, 0x34, 0xf1, 0x6b, 0xdc, 0x65, 0xb6, 0x13, 0x1b, 0x15, - 0xdd, 0xe7, 0xef, 0x62, 0x0f, 0x66, 0x84, 0xb2, 0x01, 0xe5, 0xa2, 0xaf, 0x7e, 0x12, 0x9e, 0x5a, - 0x76, 0xb1, 0xee, 0xe3, 0xe3, 0xe5, 0x21, 0x8c, 0xf4, 0xb1, 0x03, 0x55, 0x8e, 0x1f, 0xa8, 0xda, - 0x86, 0x85, 0xfe, 0xfc, 0xb9, 0x25, 0x7f, 0x1d, 0x52, 0x2e, 0x2d, 0xe1, 0x2a, 0xf4, 0xc2, 0x20, - 0x8b, 0xae, 0x9b, 0x1d, 0x67, 0xa2, 0x3e, 0x01, 0xea, 0xf1, 0xad, 0x82, 0xeb, 0xa1, 0x9f, 0x84, - 0xf3, 0xb1, 0xad, 0x38, 0xb6, 0x6d, 0x18, 0x63, 0x6c, 0xc5, 0x16, 0xf3, 0x60, 0xe0, 0x84, 0x85, - 0xe3, 0xbc, 0xd4, 0xdf, 0x55, 0x60, 0xa6, 0x57, 0xeb, 0x2e, 0x1d, 0x3c, 0x56, 0xf8, 0x23, 0x31, - 0x5a, 0x76, 0x1d, 0xc6, 0x6b, 0x62, 0xd9, 0x11, 0x2d, 0x19, 0x66, 0xab, 0xca, 0x06, 0x94, 0x8b, - 0x22, 0x63, 0xf8, 0xa3, 0x70, 0xa6, 0xf7, 0xc8, 0x98, 0x7e, 0xbc, 0x1c, 0xa3, 0xd3, 0x6c, 0x20, - 0xc7, 0x68, 0xb3, 0xba, 0x07, 0x67, 0x7b, 0x33, 0x0e, 0xde, 0x25, 0xcf, 0x4a, 0xfc, 0xb8, 0x41, - 0x2b, 0x0f, 0x3b, 0x01, 0x32, 0x0f, 0xf5, 0x2a, 0xe4, 0x6f, 0x3a, 0x55, 0x71, 0x33, 0xc9, 0x2f, - 0x9b, 0xfa, 0x39, 0x92, 0xff, 0xa1, 0xc0, 0xe9, 0x1e, 0x54, 0xef, 0xc3, 0xb9, 0xea, 0xe3, 0x30, - 0xee, 0xb6, 0x6c, 0xdb, 0xb4, 0xeb, 0x95, 0xfb, 0x4e, 0x55, 0x9c, 0x65, 0xe3, 0x32, 0x1a, 0x8f, - 0xc5, 0x49, 0x6b, 0xb2, 0x9c, 0xdb, 0x4d, 0xa7, 0xea, 0x15, 0x66, 0x21, 0x71, 0xd3, 0xa9, 0x46, - 0x55, 0x4e, 0xbd, 0x08, 0xb9, 0x9b, 0x4e, 0x35, 0x2c, 0x9a, 0x59, 0x48, 0xdd, 0x77, 0xaa, 0x9d, - 0x19, 0x1d, 0xbd, 0xef, 0x54, 0xd7, 0x0c, 0x75, 0x15, 0xa6, 0xa5, 0xa6, 0x5c, 0x1e, 0xcf, 0x42, - 0xe2, 0xbe, 0x53, 0xe5, 0x6b, 0x79, 0x3e, 0xb2, 0x1d, 0xd0, 0xcf, 0x35, 0xb1, 0x4f, 0x37, 0x51, - 0x40, 0xa4, 0xa9, 0xfa, 0x41, 0x98, 0xa1, 0xce, 0xd1, 0xe6, 0xdd, 0xf5, 0xa1, 0x2f, 0xc4, 0xd4, - 0x53, 0x30, 0x1b, 0x21, 0x66, 0x38, 0x2e, 0xbd, 0x00, 0xd0, 0xc9, 0x4b, 0x47, 0x33, 0x90, 0xbb, - 0x7e, 0x5b, 0xbb, 0xbd, 0xbd, 0xb5, 0xb6, 0xb1, 0x5a, 0xd9, 0xdc, 0x5a, 0x5c, 0xbe, 0xb5, 0x99, - 0x3b, 0x81, 0xa6, 0x61, 0x62, 0xeb, 0x86, 0xb6, 0xba, 0xb8, 0x22, 0x8a, 0x94, 0x4b, 0x4f, 0x40, - 0x5a, 0x24, 0x7d, 0x4b, 0x59, 0xcf, 0x93, 0x00, 0x01, 0xf9, 0x66, 0x4e, 0xb9, 0xf2, 0xbf, 0x97, - 0x83, 0x8b, 0xc9, 0xaf, 0x2a, 0x30, 0x2e, 0x7f, 0x4b, 0x05, 0x95, 0x06, 0xfb, 0x5a, 0x8a, 0x18, - 0x66, 0xa1, 0x3c, 0x70, 0x7b, 0x36, 0x32, 0xf5, 0xa9, 0x77, 0xfe, 0xfe, 0x5f, 0x7f, 0x65, 0xe4, - 0x71, 0x54, 0x2c, 0xf3, 0x43, 0x46, 0x59, 0xfe, 0xd4, 0x4a, 0xf9, 0x2d, 0x2e, 0xb4, 0xb7, 0xd1, - 0xcf, 0x2a, 0x30, 0x26, 0x0e, 0x3f, 0x71, 0x69, 0xa7, 0xe1, 0x2f, 0xb3, 0x14, 0x2e, 0x0d, 0xd2, - 0x94, 0x63, 0x51, 0x29, 0x96, 0xb3, 0xa8, 0x10, 0x60, 0xe1, 0xef, 0x96, 0x48, 0x30, 0xaa, 0x30, - 0xc6, 0x3f, 0xab, 0x10, 0x8b, 0x22, 0xfc, 0x75, 0x89, 0x58, 0x14, 0x91, 0xaf, 0x34, 0xa8, 0x27, - 0x90, 0x0b, 0xa3, 0xf4, 0x63, 0x1d, 0xe8, 0xa9, 0xfe, 0x9f, 0xf3, 0x60, 0xfc, 0x17, 0x06, 0xfd, - 0xee, 0x87, 0x3a, 0x47, 0xc7, 0x98, 0x43, 0x93, 0xc1, 0x18, 0xd9, 0x77, 0x45, 0x3e, 0x0d, 0x49, - 0x9a, 0xcc, 0x7e, 0xa1, 0x0f, 0x27, 0xd1, 0xe3, 0x50, 0x9f, 0x30, 0x51, 0xcf, 0xd1, 0x5e, 0x0b, - 0x28, 0x1f, 0xee, 0x55, 0x92, 0xeb, 0xdb, 0xec, 0x03, 0x13, 0x34, 0x81, 0x19, 0x3d, 0x3d, 0x58, - 0x9a, 0xf3, 0xf1, 0x48, 0x8e, 0xcd, 0x89, 0x56, 0x67, 0x29, 0x92, 0x29, 0x34, 0x11, 0x20, 0x71, - 0xf5, 0x1d, 0x1f, 0x7d, 0x46, 0x81, 0x14, 0x0b, 0x5c, 0xa1, 0xbe, 0x2f, 0x17, 0x07, 0x52, 0xbf, - 0x38, 0x40, 0x4b, 0xde, 0xed, 0xe3, 0xb4, 0xdb, 0x33, 0xe8, 0xb4, 0xd4, 0x2d, 0x69, 0x20, 0x49, - 0xc0, 0x83, 0x14, 0x7b, 0x43, 0x34, 0x16, 0x41, 0xe8, 0x25, 0xd2, 0x82, 0xfc, 0x22, 0x0e, 0xff, - 0xae, 0xdc, 0x9a, 0xbd, 0xe3, 0x70, 0xa9, 0x77, 0x77, 0xca, 0x3f, 0x41, 0xd7, 0xe9, 0xf4, 0x57, - 0x15, 0xc8, 0x4a, 0xaf, 0x36, 0xa2, 0x67, 0x06, 0x7b, 0x05, 0x52, 0xf4, 0x5f, 0x1a, 0xb4, 0x39, - 0x17, 0xc3, 0x05, 0x8a, 0xe8, 0x1c, 0x9a, 0x0f, 0x10, 0xb1, 0x9b, 0x6c, 0xea, 0x33, 0x4b, 0xb0, - 0xbe, 0xac, 0x40, 0x26, 0x78, 0xf7, 0x2c, 0x56, 0x1d, 0xa2, 0x6f, 0xdc, 0xc5, 0xaa, 0x43, 0xd7, - 0xeb, 0x70, 0xea, 0x45, 0x0a, 0xe8, 0x3c, 0x7a, 0x3c, 0x00, 0xa4, 0x8b, 0x36, 0x54, 0x45, 0x25, - 0x4c, 0xef, 0x2a, 0x30, 0x19, 0x7e, 0x37, 0x11, 0x3d, 0x3b, 0x50, 0x5f, 0x52, 0x94, 0xb3, 0xf0, - 0xdc, 0x10, 0x14, 0x1c, 0xe2, 0xd3, 0x14, 0xe2, 0x93, 0xe8, 0x7c, 0x0f, 0x88, 0x54, 0x89, 0xca, - 0x6f, 0x89, 0x78, 0xe5, 0xdb, 0xe8, 0x73, 0x0a, 0x8c, 0xcb, 0x09, 0x75, 0xb1, 0x06, 0xbc, 0x47, - 0xca, 0x6c, 0xac, 0x01, 0xef, 0x95, 0x30, 0xa8, 0x9e, 0xa6, 0xf0, 0x4e, 0xa2, 0xe9, 0x00, 0x5e, - 0x90, 0x05, 0xf8, 0x6b, 0x3c, 0x31, 0x8c, 0xbe, 0xd4, 0xfe, 0xfe, 0x21, 0x2a, 0x52, 0x44, 0xa7, - 0xd1, 0xa9, 0x00, 0x11, 0x7d, 0x45, 0xbf, 0x12, 0xe0, 0xfa, 0xaa, 0x02, 0x59, 0x29, 0xbf, 0x2f, - 0x56, 0xe9, 0xbb, 0x53, 0x0f, 0x63, 0x95, 0xbe, 0x47, 0xda, 0xa0, 0x7a, 0x89, 0xe2, 0x79, 0x42, - 0x95, 0xb6, 0x38, 0xda, 0x8a, 0x25, 0x8f, 0x76, 0x34, 0xec, 0x15, 0xe5, 0x12, 0xfa, 0x3d, 0x9e, - 0x97, 0x19, 0xcd, 0x5f, 0x43, 0x2f, 0xf6, 0x91, 0xc2, 0x31, 0xc9, 0x79, 0x85, 0x97, 0x86, 0xa6, - 0x3b, 0x76, 0x33, 0xec, 0xa4, 0xc6, 0x55, 0x78, 0xfa, 0xdb, 0x1f, 0x29, 0x70, 0x3a, 0x98, 0xe0, - 0x1f, 0x3d, 0xe4, 0x05, 0x0a, 0x59, 0x45, 0xe7, 0x22, 0x13, 0xdf, 0x0d, 0xfc, 0x37, 0x14, 0xc8, - 0x45, 0xf3, 0xac, 0xd0, 0x95, 0x3e, 0xfd, 0xf6, 0xc8, 0xcc, 0x2b, 0x5c, 0x1d, 0x8a, 0x86, 0xe3, - 0x9c, 0xa7, 0x38, 0xf3, 0x68, 0xae, 0xe3, 0x67, 0x98, 0x9e, 0xef, 0xed, 0x59, 0x15, 0x96, 0x9d, - 0xf5, 0x75, 0xfa, 0x89, 0x2c, 0x2e, 0xd6, 0x1f, 0x0d, 0xc4, 0x27, 0x28, 0xc4, 0x79, 0x74, 0x36, - 0x22, 0xca, 0x30, 0xd0, 0xaf, 0x29, 0x30, 0x11, 0x4a, 0x32, 0x45, 0xe5, 0xbe, 0x6b, 0x23, 0x9c, - 0x09, 0x5b, 0x78, 0x76, 0x70, 0x02, 0x0e, 0xed, 0x32, 0x85, 0x76, 0x41, 0x7d, 0x3c, 0xba, 0x9c, - 0xf8, 0xfa, 0x0e, 0x2f, 0xa8, 0xcf, 0x28, 0x90, 0x09, 0xf2, 0xb7, 0x62, 0x77, 0x92, 0x68, 0x0e, - 0x5b, 0xec, 0x4e, 0xd2, 0x95, 0x12, 0xa6, 0xe6, 0x29, 0x2c, 0xa4, 0x76, 0x1c, 0x0b, 0xaf, 0xa9, - 0xdb, 0x04, 0xc2, 0xa7, 0xa9, 0x7b, 0x5d, 0xdb, 0x8d, 0x77, 0x2d, 0x42, 0x2f, 0xb2, 0x16, 0xe2, - 0x3c, 0x3f, 0xf9, 0xc5, 0xeb, 0x1e, 0x7b, 0xbc, 0x47, 0x19, 0x49, 0x1b, 0xd7, 0x4f, 0x2b, 0x30, - 0xc6, 0xdf, 0x97, 0x8c, 0xf5, 0x59, 0xc3, 0xef, 0x54, 0x0e, 0x0e, 0xa1, 0xdb, 0x52, 0x34, 0x19, - 0xa7, 0x08, 0x06, 0xfe, 0x86, 0x65, 0x2c, 0x86, 0xf0, 0x5b, 0x98, 0x0f, 0x83, 0xa1, 0xc1, 0x38, - 0x49, 0x18, 0x7e, 0x4e, 0x81, 0xb4, 0x78, 0xab, 0x15, 0xc5, 0x79, 0xe4, 0x91, 0x17, 0x73, 0x0b, - 0x4f, 0x0f, 0xd4, 0x96, 0x23, 0xe9, 0x76, 0x75, 0xe9, 0x6d, 0x46, 0xd8, 0xe7, 0x1a, 0x97, 0xdf, - 0xb2, 0x8e, 0xdf, 0x11, 0xbb, 0x5f, 0xdf, 0x8e, 0xdf, 0x11, 0x7b, 0xbc, 0xbe, 0xad, 0x9e, 0xa7, - 0x98, 0x1e, 0x43, 0x67, 0xa4, 0xd5, 0x5c, 0x8f, 0xc2, 0xfa, 0xa2, 0x02, 0x63, 0x9c, 0x3a, 0x76, - 0x8a, 0xc2, 0xaf, 0x73, 0x17, 0x9e, 0x89, 0x6f, 0x1a, 0x79, 0x99, 0x5d, 0x6c, 0x86, 0x48, 0x8d, - 0x81, 0x52, 0x7e, 0x8b, 0x14, 0xbc, 0x4d, 0xce, 0x24, 0xeb, 0x4e, 0xdd, 0x8b, 0x3d, 0x93, 0x48, - 0x6f, 0xfc, 0x0f, 0x0b, 0xa5, 0x97, 0x9f, 0x50, 0x97, 0x25, 0xf2, 0x15, 0x85, 0x7e, 0x2f, 0xad, - 0x93, 0xa0, 0x12, 0x6b, 0xde, 0x7a, 0xe5, 0x5a, 0xc6, 0x9a, 0xb7, 0x9e, 0xb9, 0x2f, 0x3d, 0x36, - 0x07, 0x9e, 0x5c, 0xc8, 0x5f, 0xc1, 0x7c, 0x47, 0x81, 0x4c, 0x70, 0xcb, 0x1e, 0x6b, 0xd0, 0xa2, - 0x49, 0x32, 0xb1, 0x06, 0xad, 0xeb, 0xe2, 0x5e, 0x2d, 0x50, 0x20, 0x33, 0x08, 0x05, 0x40, 0xee, - 0x39, 0x3e, 0x07, 0xf1, 0x36, 0x8c, 0x32, 0x0f, 0xf8, 0xa9, 0xfe, 0x17, 0xa7, 0xfd, 0x4f, 0xa8, - 0x61, 0x7f, 0xf7, 0x98, 0xa3, 0x92, 0xec, 0xe5, 0xbe, 0xab, 0x40, 0x56, 0x8e, 0x34, 0xc6, 0xa7, - 0x42, 0x47, 0xa3, 0x7c, 0x85, 0x0f, 0x75, 0x37, 0x97, 0x3f, 0x84, 0x1d, 0xfa, 0x44, 0xb6, 0x44, - 0xcf, 0xc2, 0x9f, 0x3d, 0xce, 0x30, 0xf2, 0xf7, 0xb5, 0x3b, 0xda, 0x43, 0x8e, 0x94, 0xec, 0xfe, - 0xb1, 0x8f, 0xdd, 0x97, 0x2e, 0x80, 0x63, 0x8f, 0x94, 0xe1, 0xcb, 0xcc, 0x9e, 0x96, 0x9f, 0x34, - 0x90, 0x20, 0xfc, 0xbc, 0x42, 0xe3, 0x46, 0xe2, 0xd2, 0xef, 0xf2, 0x80, 0x37, 0x40, 0xfd, 0x57, - 0x53, 0xf7, 0x7d, 0x91, 0x7a, 0x86, 0xc2, 0x99, 0x45, 0x27, 0xe5, 0x8d, 0x48, 0xf4, 0xfc, 0x5d, - 0x05, 0xce, 0xf5, 0x8b, 0xa1, 0xa3, 0xa5, 0x38, 0x57, 0x60, 0xb0, 0x00, 0x7f, 0x61, 0xf9, 0xa1, - 0x78, 0x84, 0xcd, 0xa5, 0x9a, 0x97, 0x86, 0xd2, 0xf0, 0xc9, 0x2c, 0xf3, 0x98, 0x37, 0xd9, 0xd5, - 0xff, 0x5c, 0x39, 0x2e, 0xe2, 0x4b, 0x91, 0x78, 0xe8, 0xc3, 0x0f, 0x14, 0x5d, 0x0f, 0xc4, 0xff, - 0xea, 0x83, 0x92, 0x1f, 0xbb, 0x0f, 0x45, 0x06, 0x81, 0xfe, 0xf4, 0xb8, 0xc0, 0xfd, 0x8b, 0x43, - 0x77, 0xdd, 0xdf, 0x71, 0x8f, 0x0b, 0x8e, 0xab, 0xcf, 0x53, 0xac, 0x25, 0x74, 0xb9, 0x0b, 0x6b, - 0xf9, 0xad, 0xe3, 0xe2, 0xf1, 0x6f, 0xa3, 0x6f, 0x28, 0x34, 0x64, 0x1b, 0x0e, 0x11, 0xa3, 0xab, - 0xc3, 0x05, 0x94, 0x19, 0xf2, 0xe7, 0x1f, 0x24, 0x0a, 0xdd, 0x23, 0x76, 0x79, 0xdf, 0xa9, 0x56, - 0x5c, 0xde, 0x38, 0xec, 0x79, 0x64, 0x82, 0xe0, 0x72, 0xac, 0xcd, 0x8e, 0x46, 0xab, 0x63, 0x6d, - 0x76, 0x57, 0xbc, 0x5a, 0x7d, 0x8c, 0x22, 0x3a, 0x85, 0x66, 0x65, 0x44, 0xe5, 0xb7, 0x58, 0xbc, - 0xfb, 0x6d, 0x72, 0x20, 0x9f, 0x08, 0x05, 0x98, 0x63, 0x37, 0xb4, 0x5e, 0x71, 0xec, 0xd8, 0x0d, - 0xad, 0x67, 0xec, 0x5a, 0xd8, 0x29, 0xb5, 0xb3, 0xa1, 0xd1, 0xa4, 0x03, 0x6f, 0xcf, 0xa2, 0x51, - 0x9f, 0x57, 0x94, 0x4b, 0x4b, 0x97, 0xbe, 0xf3, 0x2f, 0xf3, 0x27, 0xbe, 0x73, 0x34, 0xaf, 0x7c, - 0xf7, 0x68, 0x5e, 0xf9, 0xde, 0xd1, 0xbc, 0xf2, 0xcf, 0x47, 0xf3, 0xca, 0x97, 0x7e, 0x30, 0x7f, - 0xe2, 0xbb, 0x3f, 0x98, 0x3f, 0xf1, 0xbd, 0x1f, 0xcc, 0x9f, 0x78, 0x23, 0x2d, 0x3a, 0xa9, 0xa6, - 0xe8, 0x95, 0xcf, 0xd5, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x93, 0x76, 0x82, 0x3d, 0x9a, 0x61, - 0x00, 0x00, + // 6874 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7c, 0x6b, 0x6c, 0x1b, 0xd9, + 0x75, 0xbf, 0x47, 0xa4, 0x28, 0xf2, 0x50, 0x0f, 0xea, 0x5a, 0x92, 0x69, 0xda, 0x16, 0xbd, 0xe3, + 0x5d, 0xaf, 0xec, 0xdd, 0x25, 0x77, 0xed, 0x7d, 0x65, 0xb3, 0xd9, 0xac, 0x5e, 0xb6, 0x65, 0x6b, + 0x65, 0x7b, 0x24, 0xfd, 0x13, 0x6c, 0xf2, 0xcf, 0xfc, 0x87, 0x9c, 0x2b, 0x7a, 0xac, 0xe1, 0x0c, + 0x35, 0x33, 0x54, 0xc4, 0xdd, 0xff, 0xe6, 0x9f, 0xff, 0xf6, 0x95, 0xa6, 0x69, 0x5e, 0x6d, 0x81, + 0x14, 0x2d, 0xda, 0x60, 0x3f, 0x24, 0x45, 0x8b, 0x06, 0x09, 0x0a, 0x14, 0xed, 0x87, 0x3e, 0x50, + 0x14, 0x4d, 0x8a, 0x02, 0x45, 0x80, 0xf6, 0x43, 0xd0, 0x02, 0x4a, 0xab, 0x04, 0x45, 0x81, 0x7e, + 0xe8, 0x87, 0xf6, 0x53, 0x80, 0x02, 0xc5, 0x7d, 0xcc, 0xcc, 0x9d, 0x21, 0x35, 0x24, 0xed, 0xf5, + 0xa6, 0x1f, 0x6c, 0x71, 0xee, 0xe3, 0xdc, 0xdf, 0x3d, 0xf7, 0xdc, 0x73, 0xcf, 0x3d, 0xe7, 0xcc, + 0xc0, 0x59, 0x17, 0x3b, 0xfb, 0xd8, 0xa9, 0xb2, 0x3f, 0xad, 0x5a, 0xd5, 0xf5, 0x34, 0xaf, 0xed, + 0x56, 0x5a, 0x8e, 0xed, 0xd9, 0xe8, 0x74, 0xdd, 0xae, 0xef, 0x3a, 0xb6, 0x56, 0xbf, 0x57, 0x61, + 0x0d, 0x2a, 0x7e, 0xbb, 0x52, 0xa1, 0xd6, 0x36, 0x4c, 0xbd, 0x6a, 0x58, 0x3b, 0x36, 0x6b, 0x5c, + 0x3a, 0xd9, 0xb0, 0x5d, 0xd7, 0x68, 0x55, 0xd9, 0x1f, 0x5e, 0x38, 0x77, 0xdf, 0xae, 0xb9, 0x55, + 0xf2, 0x5f, 0xab, 0x46, 0xff, 0xf0, 0xf2, 0x53, 0x94, 0x6a, 0xab, 0x56, 0xd5, 0x5a, 0x2d, 0x95, + 0x8c, 0xe9, 0x57, 0x20, 0xbf, 0x42, 0xd7, 0x3c, 0x8d, 0x97, 0x95, 0xfd, 0x32, 0xc3, 0xd2, 0xf1, + 0x81, 0xda, 0x76, 0xb5, 0x06, 0x8e, 0x74, 0x9a, 0xf3, 0x1b, 0x34, 0xb1, 0xa7, 0x09, 0x1d, 0xaf, + 0xf0, 0xd9, 0xe9, 0x86, 0xd6, 0xb0, 0x6c, 0xd7, 0x33, 0xea, 0xae, 0xf8, 0x9b, 0x8c, 0x12, 0x3e, + 0xf1, 0x3e, 0x17, 0x7c, 0x8e, 0x50, 0x46, 0xf0, 0x3f, 0x31, 0xc6, 0x94, 0x1e, 0x73, 0xf7, 0xcc, + 0x6a, 0xdd, 0xb6, 0x3c, 0x6c, 0x79, 0x86, 0x6d, 0xb5, 0x6a, 0xc2, 0x03, 0x6f, 0x72, 0x9a, 0x34, + 0xc1, 0x07, 0xb8, 0x6e, 0x58, 0x3b, 0x8e, 0x46, 0x67, 0x6a, 0xf0, 0xaa, 0x73, 0xae, 0x67, 0x3b, + 0x5a, 0x03, 0x57, 0xb1, 0xd5, 0x30, 0x2c, 0xdc, 0xaa, 0xf1, 0x1f, 0xbc, 0xfa, 0x4c, 0x57, 0x75, + 0x73, 0xbf, 0x5e, 0xe7, 0x95, 0xf3, 0x5d, 0x95, 0x8e, 0x5d, 0xdf, 0x75, 0xf5, 0x1a, 0xaf, 0xbf, + 0xb4, 0xbb, 0x5f, 0xdd, 0xdd, 0xe7, 0x73, 0xf0, 0x7f, 0xb4, 0x6a, 0x55, 0x13, 0x6b, 0x2e, 0x63, + 0x5a, 0x30, 0x09, 0xf9, 0x98, 0xa6, 0xa4, 0x91, 0x8f, 0xa5, 0x22, 0xb6, 0x31, 0x8d, 0x7d, 0x6c, + 0x61, 0xd7, 0x0d, 0x7e, 0x10, 0xba, 0xfc, 0x27, 0x6f, 0x5f, 0x6c, 0x7b, 0x86, 0x59, 0x35, 0xed, + 0x06, 0xf9, 0x47, 0xaa, 0xed, 0x06, 0xaf, 0x29, 0xd1, 0x9a, 0xb6, 0xe5, 0x60, 0xd7, 0x36, 0xf7, + 0xb1, 0xae, 0x6a, 0xba, 0xee, 0x44, 0x7a, 0xdd, 0x33, 0xeb, 0x55, 0xcf, 0x68, 0x62, 0xd7, 0xd3, + 0x9a, 0xbe, 0xfc, 0xcc, 0x63, 0xaf, 0xae, 0x57, 0x1d, 0x6d, 0xc7, 0xab, 0xee, 0x5f, 0xa5, 0x7f, + 0xc9, 0x8c, 0xb5, 0x1d, 0x8f, 0xd7, 0xcf, 0x34, 0xec, 0x86, 0x4d, 0x7f, 0x56, 0xc9, 0x2f, 0x5e, + 0x7a, 0xb6, 0x61, 0xdb, 0x0d, 0x13, 0x13, 0x96, 0x57, 0x35, 0xcb, 0xb2, 0x3d, 0x8d, 0x2c, 0x8c, + 0x8f, 0xb1, 0xcc, 0x6b, 0xe9, 0x53, 0xad, 0xbd, 0x13, 0x1f, 0x54, 0xae, 0xc0, 0xc9, 0x65, 0xec, + 0x78, 0xc6, 0x8e, 0x51, 0xd7, 0x3c, 0xec, 0x2a, 0x78, 0xaf, 0x8d, 0x5d, 0x0f, 0x9d, 0x82, 0x31, + 0xcb, 0xd6, 0xb1, 0x6a, 0xe8, 0x45, 0xe9, 0xbc, 0xb4, 0x90, 0x53, 0x32, 0xe4, 0x71, 0x4d, 0x97, + 0xff, 0x2b, 0x0d, 0x48, 0xe8, 0xb0, 0x82, 0x3d, 0xcd, 0x30, 0x5d, 0x74, 0x17, 0xd2, 0x5e, 0xa7, + 0x85, 0x69, 0xe3, 0xc9, 0x2b, 0x1f, 0xa9, 0x1c, 0xbb, 0x99, 0x2a, 0xdd, 0x9d, 0xc5, 0xa2, 0xad, + 0x4e, 0x0b, 0x2b, 0x94, 0x14, 0xba, 0x00, 0x13, 0xd8, 0x71, 0x6c, 0x47, 0x6d, 0x62, 0x97, 0xec, + 0x82, 0xe2, 0x08, 0x05, 0x32, 0x4e, 0x0b, 0xdf, 0x60, 0x65, 0x08, 0x41, 0x9a, 0xec, 0x81, 0x62, + 0xea, 0xbc, 0xb4, 0x30, 0xae, 0xd0, 0xdf, 0x48, 0x81, 0xcc, 0x8e, 0x81, 0x4d, 0xdd, 0x2d, 0xa6, + 0xcf, 0xa7, 0x16, 0xf2, 0x57, 0x9e, 0x1f, 0x0e, 0xcd, 0x35, 0xda, 0x77, 0x29, 0xfd, 0xbd, 0xc3, + 0xf2, 0x09, 0x85, 0x53, 0x2a, 0xfd, 0xc1, 0x08, 0x64, 0x58, 0x05, 0x9a, 0x83, 0x8c, 0xe1, 0xba, + 0x6d, 0xec, 0xf8, 0x9c, 0x61, 0x4f, 0xa8, 0x08, 0x63, 0x6e, 0xbb, 0x76, 0x1f, 0xd7, 0x3d, 0x8e, + 0xd4, 0x7f, 0x44, 0xe7, 0x00, 0xf6, 0x35, 0xd3, 0xd0, 0xd5, 0x1d, 0xc7, 0x6e, 0x52, 0xa8, 0x29, + 0x25, 0x47, 0x4b, 0xae, 0x39, 0x76, 0x13, 0x95, 0x21, 0xcf, 0xaa, 0xdb, 0x96, 0x67, 0x98, 0xc5, + 0x34, 0xad, 0x67, 0x3d, 0xb6, 0x49, 0x09, 0x3a, 0x0b, 0x39, 0x22, 0x40, 0xd8, 0x75, 0xb1, 0x5b, + 0x1c, 0x3d, 0x9f, 0x5a, 0xc8, 0x29, 0x61, 0x01, 0xaa, 0xc2, 0x49, 0xd7, 0x68, 0x58, 0x9a, 0xd7, + 0x76, 0xb0, 0xaa, 0x99, 0x0d, 0xdb, 0x31, 0xbc, 0x7b, 0xcd, 0x62, 0x86, 0x62, 0x40, 0x41, 0xd5, + 0xa2, 0x5f, 0x43, 0xe0, 0xb4, 0xda, 0x35, 0xd3, 0xa8, 0xab, 0xbb, 0xb8, 0x53, 0x1c, 0xa3, 0xed, + 0x72, 0xac, 0xe4, 0x16, 0xee, 0xa0, 0x33, 0x90, 0xdb, 0xc5, 0x1d, 0xa6, 0x79, 0x8a, 0x59, 0x3a, + 0x5a, 0x76, 0x17, 0x77, 0xb6, 0x29, 0xbf, 0x9f, 0x06, 0x84, 0x0f, 0x3c, 0x6c, 0xe9, 0x58, 0x57, + 0xc3, 0x56, 0x39, 0xda, 0xaa, 0xe0, 0xd7, 0xdc, 0xe2, 0xad, 0xe5, 0xbb, 0x30, 0x15, 0x5b, 0x5b, + 0x94, 0x81, 0x91, 0xe5, 0xc5, 0xc2, 0x09, 0x94, 0x85, 0xf4, 0xc6, 0xed, 0x95, 0xd5, 0x82, 0x84, + 0x26, 0x20, 0xb7, 0xbc, 0xbe, 0xb6, 0xba, 0xb1, 0xa5, 0x2e, 0x2f, 0x16, 0x46, 0x10, 0x40, 0x86, + 0x3d, 0x16, 0x52, 0x28, 0x07, 0xa3, 0xdb, 0x6b, 0xa4, 0x38, 0x4d, 0xfa, 0x6d, 0xaf, 0x15, 0x46, + 0x65, 0x1b, 0x66, 0xa2, 0xf2, 0xea, 0xb6, 0x6c, 0xcb, 0xc5, 0xe8, 0x63, 0x30, 0x5e, 0x17, 0xca, + 0x8b, 0x12, 0x5d, 0xfa, 0x67, 0x86, 0x5a, 0x7a, 0xbe, 0xe6, 0x11, 0x42, 0x72, 0x15, 0x26, 0x79, + 0x75, 0xbf, 0xbd, 0x71, 0x33, 0x9d, 0x1d, 0x29, 0xa4, 0xe4, 0x0d, 0x80, 0xcd, 0x8e, 0xeb, 0xe1, + 0xe6, 0x9a, 0xb5, 0x63, 0x93, 0xc5, 0x75, 0xe9, 0x93, 0x4a, 0x8e, 0x0f, 0xde, 0x01, 0xdc, 0x48, + 0x83, 0x5d, 0xec, 0x58, 0xd8, 0x64, 0x0d, 0x98, 0xe8, 0x00, 0x2b, 0x22, 0x0d, 0xe4, 0x2f, 0xa4, + 0x60, 0x2a, 0x40, 0xc0, 0x67, 0xfb, 0x66, 0x14, 0xc2, 0xe8, 0xd2, 0xe2, 0xd1, 0x61, 0x39, 0xb3, + 0x41, 0x60, 0xac, 0xfc, 0xe4, 0xb0, 0x7c, 0xb5, 0x61, 0x78, 0xf7, 0xda, 0xb5, 0x4a, 0xdd, 0x6e, + 0x56, 0x03, 0x06, 0xe8, 0xb5, 0xf0, 0x77, 0xb5, 0xb5, 0xdb, 0xa8, 0xf2, 0x83, 0xa4, 0xc2, 0xba, + 0xf9, 0xb3, 0x40, 0xaf, 0xc1, 0x18, 0x17, 0x2e, 0x0a, 0x26, 0x7f, 0x65, 0x5e, 0x60, 0x22, 0x51, + 0x5e, 0x95, 0xed, 0x40, 0xb1, 0x2d, 0xea, 0xba, 0xc3, 0xb9, 0xe6, 0x77, 0x42, 0xaf, 0x00, 0xd0, + 0xf3, 0x92, 0xcd, 0x27, 0x45, 0x49, 0xcc, 0x0a, 0x24, 0x68, 0x65, 0x85, 0x4c, 0x8d, 0xf7, 0xcc, + 0xd1, 0x12, 0xca, 0x8c, 0xf5, 0x28, 0xb7, 0xd2, 0xb4, 0xf3, 0x13, 0x09, 0x8b, 0x18, 0x72, 0x9a, + 0x13, 0x13, 0x59, 0xbb, 0x09, 0x79, 0x77, 0xcf, 0x54, 0xfd, 0xd9, 0x8c, 0x0e, 0x34, 0x1b, 0x44, + 0xc8, 0x1c, 0x1d, 0x96, 0x61, 0xf3, 0xee, 0xfa, 0x22, 0xeb, 0xa9, 0x80, 0xbb, 0x67, 0xf2, 0xdf, + 0xf2, 0x24, 0x8c, 0x13, 0x86, 0xf9, 0xd2, 0x20, 0xff, 0x76, 0x0a, 0x26, 0x78, 0x01, 0x5f, 0x9c, + 0x1b, 0x30, 0x4a, 0x58, 0xe9, 0xcb, 0xe0, 0xd3, 0x3d, 0xe0, 0xb3, 0xa3, 0xc9, 0x3f, 0x6f, 0xe9, + 0x0a, 0x6c, 0xd2, 0x07, 0x3e, 0x0b, 0x46, 0x00, 0xfd, 0xa9, 0x04, 0x27, 0xfd, 0x43, 0x47, 0xad, + 0x75, 0x54, 0x7f, 0xcd, 0x47, 0x28, 0xe1, 0xd7, 0x12, 0xf8, 0x12, 0x41, 0x54, 0x59, 0xe7, 0x34, + 0x96, 0x3a, 0x74, 0xad, 0xf5, 0x55, 0xcb, 0x73, 0x3a, 0x4b, 0xb7, 0xf9, 0x4c, 0x0b, 0xb1, 0xea, + 0x95, 0x77, 0x7f, 0xf8, 0x60, 0x12, 0x54, 0x30, 0x63, 0xe3, 0x94, 0xde, 0x95, 0x60, 0xb6, 0xe7, + 0xe0, 0xa8, 0x00, 0x29, 0xa2, 0x7d, 0xa8, 0xf4, 0x2a, 0xe4, 0x27, 0xda, 0x84, 0xd1, 0x7d, 0xcd, + 0x6c, 0x33, 0x3d, 0x1f, 0x3d, 0x43, 0x76, 0xf7, 0x2b, 0xfe, 0xc1, 0x5c, 0x09, 0x0e, 0xe1, 0xf0, + 0x60, 0xa6, 0xe3, 0xfb, 0xc3, 0x30, 0x3e, 0x2a, 0x8c, 0xd6, 0x2b, 0x23, 0x2f, 0x4b, 0x72, 0x01, + 0x26, 0x15, 0xdc, 0x20, 0x87, 0xa2, 0xbf, 0x66, 0xff, 0x21, 0xc1, 0x54, 0x50, 0xc4, 0x57, 0xed, + 0x2e, 0x8c, 0x39, 0xac, 0x88, 0xaf, 0xdb, 0x4b, 0x09, 0xec, 0x8d, 0x75, 0xf6, 0x9f, 0xe9, 0xd4, + 0x14, 0x9f, 0x4e, 0x69, 0x1e, 0x32, 0xac, 0x02, 0xcd, 0xc0, 0xe8, 0x5b, 0xb6, 0xc5, 0x45, 0x22, + 0xa7, 0xb0, 0x87, 0x52, 0x13, 0xc6, 0xc5, 0x8e, 0x22, 0x4f, 0x72, 0x8c, 0x27, 0xd7, 0x45, 0x9e, + 0xe4, 0xaf, 0x3c, 0x37, 0x34, 0x24, 0x91, 0x0f, 0x17, 0x21, 0x4f, 0x18, 0xd5, 0xf7, 0x88, 0xff, + 0x76, 0x1a, 0x72, 0x8a, 0xb6, 0xe3, 0x11, 0x4e, 0x12, 0x8d, 0x0f, 0x0e, 0x6e, 0x99, 0x46, 0x5d, + 0xf3, 0x5b, 0xa6, 0x97, 0x26, 0x8e, 0x0e, 0xcb, 0x39, 0x85, 0x95, 0xae, 0xad, 0x28, 0x39, 0xde, + 0x60, 0x4d, 0x47, 0x2f, 0x02, 0xdc, 0xd3, 0x1c, 0x9d, 0x1a, 0x5f, 0x3e, 0xea, 0xe9, 0x0a, 0xb3, + 0x65, 0x2a, 0x37, 0x34, 0x47, 0xa7, 0x44, 0xfd, 0x8d, 0x7f, 0xcf, 0x2f, 0x20, 0xe7, 0xb8, 0x89, + 0x35, 0x9d, 0xaa, 0x8b, 0xb4, 0x42, 0x7f, 0x13, 0xa6, 0x31, 0x32, 0x69, 0x0a, 0x8f, 0x3d, 0x90, + 0x63, 0x56, 0x6b, 0xb5, 0x4c, 0x03, 0xeb, 0x74, 0x43, 0xa7, 0x15, 0xff, 0x11, 0x6d, 0x41, 0xb6, + 0xe5, 0xd8, 0x0d, 0xba, 0xd7, 0x33, 0x74, 0x09, 0xaf, 0x24, 0xf1, 0xcb, 0x9f, 0x61, 0xe5, 0x0e, + 0xef, 0xc4, 0x76, 0x05, 0x83, 0x16, 0x50, 0x42, 0x4f, 0xc2, 0x14, 0x41, 0xa3, 0x7a, 0x8e, 0x66, + 0xb9, 0x3b, 0xd8, 0xc1, 0x98, 0x1e, 0x99, 0x69, 0x65, 0x92, 0x14, 0x6f, 0x05, 0xa5, 0xa5, 0x5f, + 0x96, 0x20, 0xeb, 0x93, 0x22, 0xd8, 0x9b, 0x9a, 0x57, 0xbf, 0xc7, 0x18, 0xa6, 0xb0, 0x07, 0x32, + 0x4b, 0x0b, 0x1f, 0x30, 0xfb, 0x20, 0xad, 0xd0, 0xdf, 0xe1, 0x2c, 0x53, 0xe2, 0x2c, 0xe7, 0x20, + 0xd3, 0xd2, 0xda, 0x2e, 0xd6, 0xe9, 0xe4, 0xb3, 0x0a, 0x7f, 0x42, 0x97, 0xa0, 0xd0, 0xc2, 0x96, + 0x6e, 0x58, 0x0d, 0xd5, 0xb5, 0xb4, 0x96, 0x7b, 0xcf, 0xf6, 0x38, 0x1b, 0xa6, 0x78, 0xf9, 0x26, + 0x2f, 0x2e, 0xdd, 0x87, 0x89, 0xc8, 0xcc, 0x44, 0xf1, 0x4a, 0x33, 0xf1, 0x5a, 0x8e, 0x8a, 0xd7, + 0x33, 0x43, 0xb1, 0x4b, 0x14, 0xad, 0xa3, 0x11, 0x98, 0x50, 0x34, 0xab, 0x81, 0xef, 0x38, 0x76, + 0xcd, 0xc4, 0x4d, 0x17, 0x9d, 0x87, 0x7c, 0xdb, 0xd2, 0xf6, 0x35, 0xc3, 0xd4, 0x6a, 0x26, 0xb3, + 0x0b, 0xb3, 0x8a, 0x58, 0x84, 0x5e, 0x80, 0x53, 0x84, 0x83, 0xd8, 0x51, 0x2d, 0xdb, 0x53, 0x99, + 0xcd, 0x7e, 0xcf, 0x36, 0x75, 0xec, 0x50, 0x38, 0x59, 0x65, 0x86, 0x55, 0x6f, 0xd8, 0xde, 0x3a, + 0xa9, 0xbc, 0x41, 0xeb, 0xd0, 0xe3, 0x30, 0x69, 0xd9, 0x2a, 0x91, 0x28, 0x95, 0xd5, 0x53, 0xc6, + 0x65, 0x95, 0x71, 0xcb, 0x26, 0x18, 0xd7, 0x69, 0x19, 0x5a, 0x80, 0xa9, 0xb6, 0xa5, 0x63, 0x87, + 0x4b, 0xa6, 0x17, 0x30, 0x32, 0x5e, 0x8c, 0x2e, 0xc2, 0xa4, 0xbd, 0x1f, 0x69, 0x98, 0xa5, 0x0d, + 0x63, 0xa5, 0xe8, 0x34, 0x64, 0x2d, 0x9b, 0xc1, 0xa4, 0x1c, 0xcf, 0x2a, 0x63, 0x96, 0x4d, 0x81, + 0xa1, 0x97, 0xa1, 0xb8, 0xd7, 0x36, 0xb0, 0x5b, 0xc7, 0x96, 0xa7, 0xe2, 0xbd, 0xb6, 0x66, 0xba, + 0xaa, 0x67, 0xd4, 0x77, 0x0d, 0xab, 0x41, 0xcd, 0xb0, 0xac, 0x32, 0x17, 0xd4, 0xaf, 0xd2, 0xea, + 0x2d, 0x56, 0x8b, 0x9e, 0x02, 0xc4, 0x66, 0x62, 0x37, 0x54, 0xcf, 0xb6, 0x55, 0x53, 0x73, 0x1a, + 0x4c, 0xbe, 0xb2, 0xca, 0x14, 0xa9, 0x59, 0xb7, 0x1b, 0x5b, 0xb6, 0xbd, 0x4e, 0x8a, 0xe5, 0x5d, + 0x98, 0xa2, 0x3c, 0x26, 0xcb, 0x60, 0xd0, 0x6b, 0x1c, 0x31, 0xc7, 0xf6, 0xda, 0xd8, 0x31, 0xb0, + 0xab, 0xb6, 0xb0, 0xa3, 0xba, 0xb8, 0x6e, 0x5b, 0x6c, 0x93, 0x4a, 0x4a, 0x81, 0xd7, 0xdc, 0xc1, + 0xce, 0x26, 0x2d, 0x47, 0x97, 0x61, 0xfa, 0xd3, 0x8e, 0xe1, 0x45, 0x1b, 0x8f, 0xd0, 0xc6, 0x53, + 0xac, 0x22, 0x68, 0x2b, 0xdf, 0x00, 0xb8, 0xe3, 0x60, 0xcf, 0xeb, 0x6c, 0xb6, 0x34, 0x8b, 0xd8, + 0x84, 0xae, 0xa7, 0x39, 0x9e, 0x1a, 0xea, 0xa7, 0x2c, 0x2d, 0x20, 0x06, 0xe3, 0x29, 0x18, 0xc3, + 0x16, 0x35, 0x07, 0xb9, 0xf5, 0x92, 0xc1, 0x16, 0xb1, 0x01, 0x5f, 0x49, 0xff, 0xeb, 0xd7, 0xcb, + 0x92, 0xfc, 0x85, 0x2c, 0x51, 0x27, 0x56, 0x03, 0xd3, 0x33, 0xf9, 0xa3, 0x90, 0x76, 0x5b, 0x9a, + 0x45, 0x89, 0x24, 0x1f, 0xed, 0xe1, 0xf0, 0x7c, 0x4f, 0xd2, 0x8e, 0x68, 0x0d, 0x80, 0xb2, 0x4c, + 0xd4, 0x30, 0x8f, 0x0f, 0x22, 0xb8, 0xbe, 0xd2, 0x71, 0x02, 0xd5, 0x76, 0x4d, 0x54, 0x30, 0xf9, + 0x2b, 0x97, 0x8f, 0x39, 0x71, 0xf8, 0x2d, 0x94, 0xd2, 0xe2, 0xd3, 0xf0, 0x8f, 0x69, 0xb6, 0x59, + 0x9b, 0x30, 0xe9, 0xda, 0x6d, 0xa7, 0x8e, 0x83, 0x03, 0x7a, 0x94, 0x1a, 0x65, 0xd7, 0x8f, 0x0e, + 0xcb, 0xe3, 0x9b, 0xb4, 0xe6, 0xe1, 0x4c, 0xb3, 0x71, 0x37, 0x24, 0xa2, 0xa3, 0x3d, 0x98, 0xe2, + 0xc3, 0x11, 0x64, 0x74, 0xbc, 0x0c, 0x1d, 0x6f, 0xed, 0xe8, 0xb0, 0x3c, 0xc1, 0xc6, 0xdb, 0x24, + 0x35, 0x74, 0xc0, 0xe7, 0x87, 0x1a, 0x90, 0xf7, 0x53, 0x26, 0x5c, 0x81, 0x8c, 0xde, 0x7d, 0x17, + 0x1b, 0xeb, 0x71, 0x17, 0x5b, 0x86, 0x09, 0xbe, 0x8b, 0x0d, 0x02, 0xac, 0x43, 0x2f, 0x0f, 0xf9, + 0x2b, 0x45, 0x81, 0xad, 0xfe, 0x30, 0x74, 0xdf, 0xf8, 0xe6, 0x36, 0xed, 0x74, 0x83, 0xf5, 0x41, + 0x37, 0xa9, 0x12, 0xa7, 0x3a, 0xa4, 0x98, 0xa3, 0xcb, 0xb2, 0x90, 0xb8, 0xb8, 0x82, 0xce, 0x11, + 0x54, 0x37, 0xd3, 0x41, 0x7c, 0x7d, 0xdd, 0x22, 0x74, 0xad, 0x6f, 0x4f, 0x42, 0xe1, 0xc6, 0x12, + 0xd7, 0xd7, 0x45, 0x9f, 0x84, 0x09, 0x93, 0xe8, 0x6f, 0xec, 0xaa, 0xa6, 0x5d, 0xd7, 0xcc, 0x62, + 0xbe, 0xeb, 0x34, 0xee, 0x2d, 0x2f, 0xeb, 0xa4, 0xd7, 0x1b, 0x9a, 0xa5, 0x35, 0xb0, 0x23, 0x88, + 0xcd, 0x38, 0xa7, 0xb6, 0x4e, 0x88, 0xa1, 0x4f, 0xc1, 0xa4, 0x4f, 0xbd, 0x61, 0xda, 0x35, 0xcd, + 0x2c, 0x8e, 0x3f, 0x1c, 0x79, 0x1f, 0xec, 0x75, 0x4a, 0x0d, 0x6d, 0xc3, 0xb8, 0xe8, 0x10, 0x29, + 0x4e, 0x50, 0xea, 0x4f, 0xf7, 0xa7, 0x4e, 0x3a, 0x45, 0xac, 0xd2, 0xbc, 0x19, 0x16, 0x91, 0x4b, + 0x69, 0xa0, 0xd4, 0x8a, 0x93, 0x54, 0x63, 0x85, 0x05, 0xe4, 0x94, 0xf6, 0x35, 0xe0, 0x14, 0x53, + 0x96, 0xfc, 0x51, 0xfe, 0x25, 0x89, 0x1f, 0x15, 0x7d, 0xef, 0x53, 0x48, 0x83, 0x9c, 0x43, 0x5a, + 0xaa, 0x86, 0xee, 0x52, 0x9b, 0x37, 0xb5, 0xb4, 0x72, 0x74, 0x58, 0xce, 0xb2, 0x6d, 0xb8, 0xe2, + 0x0e, 0x2d, 0xdd, 0xbc, 0xa3, 0x92, 0xa5, 0x64, 0xd7, 0x74, 0x57, 0xde, 0x82, 0x49, 0x1f, 0x0c, + 0xb7, 0x03, 0x97, 0x20, 0x43, 0x6b, 0x7d, 0x33, 0xf0, 0xf1, 0x7e, 0x52, 0x23, 0x70, 0x9e, 0xf7, + 0x94, 0x17, 0x60, 0xe2, 0x3a, 0xf5, 0x0c, 0xf6, 0xb5, 0xb5, 0xde, 0x1b, 0x81, 0xa9, 0x55, 0xea, + 0xdd, 0x22, 0x6c, 0x75, 0xa9, 0x8a, 0xfc, 0x14, 0x64, 0x83, 0x8d, 0xcd, 0x6e, 0x77, 0xcb, 0x47, + 0x87, 0xe5, 0xb1, 0x87, 0xdd, 0xd2, 0x63, 0x2e, 0xdf, 0xcc, 0x3b, 0x30, 0x47, 0x16, 0x03, 0x3b, + 0xae, 0xaa, 0x59, 0x3a, 0xdb, 0xad, 0x0d, 0x47, 0x6b, 0xfa, 0xf7, 0xbd, 0x67, 0xc5, 0x19, 0x33, + 0x71, 0xa8, 0xf8, 0x1e, 0xb8, 0xca, 0x16, 0xeb, 0xb9, 0x68, 0xe9, 0x37, 0x82, 0x7e, 0xca, 0x8c, + 0xd7, 0xa3, 0x14, 0x5d, 0x87, 0x3c, 0xeb, 0xa6, 0x52, 0xd7, 0x50, 0x8a, 0x9a, 0xf5, 0x17, 0x93, + 0x88, 0x33, 0x4e, 0x50, 0x1f, 0x10, 0xe0, 0xe0, 0xb7, 0xfc, 0x0c, 0x20, 0x81, 0x47, 0x7d, 0x79, + 0xfa, 0xbf, 0xe1, 0x64, 0xa4, 0x39, 0x5f, 0xd8, 0x40, 0x1b, 0xb0, 0x75, 0x4d, 0xd2, 0x06, 0xb1, + 0x15, 0x89, 0x68, 0x03, 0xf9, 0xff, 0x00, 0x6c, 0x39, 0x5a, 0x1d, 0xaf, 0xee, 0x13, 0x41, 0x7f, + 0x19, 0xd2, 0x9e, 0xd1, 0xc4, 0xfc, 0x3c, 0x2b, 0x55, 0x98, 0xbf, 0xad, 0xe2, 0xfb, 0xdb, 0x2a, + 0x5b, 0xbe, 0xbf, 0x6d, 0x29, 0x4b, 0x88, 0x7c, 0xf9, 0x87, 0x65, 0x49, 0xa1, 0x3d, 0xc8, 0x16, + 0x89, 0x7a, 0xb6, 0xfc, 0x47, 0xf9, 0xdb, 0x12, 0x4c, 0x2d, 0x9a, 0x44, 0xd5, 0x78, 0xb6, 0xb3, + 0xe2, 0x74, 0x94, 0xb6, 0x45, 0x84, 0xc2, 0xdf, 0x0b, 0x74, 0xac, 0x14, 0x13, 0x0a, 0x2e, 0xd1, + 0x0f, 0xbc, 0x13, 0xc6, 0xf8, 0x4e, 0x40, 0x1f, 0x81, 0x0c, 0x26, 0x13, 0x72, 0xf9, 0xe5, 0x32, + 0xe9, 0x64, 0x0e, 0xa7, 0xaf, 0xf0, 0x4e, 0xf2, 0x15, 0x98, 0x0d, 0x10, 0x53, 0xda, 0xfe, 0x2a, + 0x9d, 0x8e, 0xe3, 0x0e, 0x86, 0x94, 0xff, 0x58, 0x82, 0xb9, 0x78, 0xa7, 0xde, 0xfe, 0x8d, 0xd4, + 0xfb, 0xe9, 0xdf, 0x58, 0x86, 0x31, 0xdd, 0xe9, 0xa8, 0x4e, 0xdb, 0xe2, 0xf2, 0x9e, 0x24, 0x09, + 0xb1, 0x65, 0x50, 0x32, 0x3a, 0xfd, 0x2b, 0x7f, 0x51, 0x82, 0x42, 0x88, 0xfd, 0x7f, 0x80, 0x22, + 0x7b, 0x13, 0xa6, 0x05, 0x3c, 0x9c, 0x8d, 0xab, 0x90, 0xe5, 0x53, 0x1d, 0x44, 0xea, 0xe3, 0x73, + 0x1d, 0x63, 0x73, 0x75, 0x65, 0x19, 0xc6, 0x6f, 0x6e, 0xde, 0xde, 0x08, 0xc8, 0xfa, 0x4e, 0x57, + 0x29, 0x74, 0xba, 0xca, 0x4d, 0x98, 0xf0, 0xeb, 0x57, 0x89, 0x51, 0x40, 0xee, 0x35, 0xd4, 0x3a, + 0xe0, 0xac, 0x60, 0x0f, 0xa4, 0x6b, 0xdd, 0xd6, 0x99, 0xc4, 0x8f, 0x2a, 0xf4, 0xb7, 0xb8, 0x11, + 0x52, 0x91, 0x8d, 0x40, 0x6a, 0x74, 0xe6, 0xf9, 0xa2, 0xae, 0xdc, 0x9c, 0xe2, 0x3f, 0xca, 0x7f, + 0x2e, 0x41, 0x7e, 0xdd, 0x6e, 0xf4, 0x3f, 0x43, 0x66, 0x60, 0xd4, 0xc4, 0xfb, 0xd8, 0xe4, 0x7b, + 0x8c, 0x3d, 0xa0, 0x73, 0x00, 0xcc, 0x9e, 0xa5, 0x7b, 0x97, 0x8d, 0xca, 0x2c, 0x5c, 0xb2, 0x5f, + 0x89, 0xd0, 0x12, 0x8b, 0x96, 0x56, 0xb2, 0xcb, 0x27, 0xb1, 0x70, 0x69, 0x55, 0x01, 0x52, 0x4d, + 0xed, 0x80, 0x1a, 0x78, 0x39, 0x85, 0xfc, 0x24, 0x20, 0x5b, 0x9a, 0xe7, 0x61, 0xc7, 0xe2, 0x3e, + 0x57, 0xff, 0x91, 0x5c, 0xe2, 0x1c, 0xac, 0x6b, 0x75, 0x8f, 0x5b, 0xf4, 0xfc, 0xe9, 0x66, 0x3a, + 0x9b, 0x2d, 0xe4, 0xe4, 0xdb, 0x80, 0xd6, 0xed, 0x06, 0xb9, 0x9a, 0x19, 0xc2, 0xf1, 0xf3, 0x21, + 0x62, 0x4c, 0xd3, 0x22, 0xbe, 0x62, 0xa7, 0xe3, 0xfe, 0x2a, 0xd3, 0x6e, 0x54, 0xc4, 0xab, 0xaa, + 0xdf, 0x5e, 0xae, 0xc0, 0xc9, 0x75, 0xbb, 0x71, 0xcd, 0x30, 0xb1, 0xbb, 0x6e, 0xb8, 0x5e, 0x5f, + 0x3d, 0x79, 0x07, 0x66, 0xa2, 0xed, 0x39, 0x84, 0x97, 0x61, 0x74, 0x87, 0x14, 0x72, 0x00, 0x67, + 0x7b, 0x01, 0x20, 0xbd, 0x44, 0xd5, 0x48, 0x3b, 0xc8, 0x9f, 0x80, 0x49, 0x4e, 0xb1, 0xef, 0xba, + 0x20, 0x48, 0x93, 0x3e, 0x7c, 0x59, 0xe8, 0x6f, 0x81, 0x5f, 0xa9, 0x18, 0xbf, 0xd2, 0x85, 0x51, + 0xb9, 0x0e, 0x13, 0x9b, 0x9e, 0x56, 0xdf, 0xed, 0xbf, 0xe6, 0x1f, 0xe2, 0xc1, 0x08, 0xe6, 0x48, + 0x4a, 0x74, 0x1f, 0x52, 0x82, 0x61, 0xd0, 0x41, 0xde, 0x84, 0x34, 0x81, 0x4f, 0x6f, 0xea, 0x1a, + 0x57, 0xeb, 0x39, 0x85, 0xfe, 0x26, 0x97, 0x20, 0x02, 0x53, 0x75, 0x8d, 0xb7, 0x18, 0xed, 0x94, + 0x92, 0x25, 0x05, 0x9b, 0xc6, 0x5b, 0x18, 0x95, 0x20, 0xcb, 0xc3, 0x62, 0x2e, 0x0f, 0x46, 0x04, + 0xcf, 0xf2, 0x6f, 0x4a, 0x30, 0x75, 0x1d, 0x7b, 0x94, 0xd3, 0x7d, 0xc1, 0x9f, 0x81, 0x9c, 0x69, + 0xb8, 0x9e, 0x6a, 0x5b, 0x66, 0x87, 0x5f, 0x84, 0xb3, 0xa4, 0xe0, 0xb6, 0x65, 0x76, 0xd0, 0x4b, + 0x7c, 0x66, 0xa3, 0x74, 0x66, 0x17, 0x12, 0x66, 0x46, 0x06, 0x13, 0x82, 0x29, 0x25, 0xc8, 0x72, + 0xa9, 0x64, 0xbe, 0x91, 0x9c, 0x12, 0x3c, 0xcb, 0x6b, 0x50, 0x08, 0xd1, 0x71, 0x19, 0x78, 0x21, + 0x2a, 0x03, 0xe5, 0x3e, 0x23, 0xf9, 0x02, 0xf0, 0x9e, 0x04, 0x93, 0x77, 0x1c, 0x7b, 0x67, 0x10, + 0x09, 0x58, 0x8a, 0xcc, 0xa5, 0x92, 0x78, 0x13, 0x14, 0x29, 0x56, 0x84, 0x69, 0x15, 0x61, 0x8c, + 0x5d, 0x63, 0x5d, 0x76, 0x05, 0x52, 0xfc, 0x47, 0xf9, 0x34, 0xa4, 0x69, 0xbc, 0x21, 0x0b, 0xe9, + 0x1b, 0xab, 0x8b, 0x77, 0x0a, 0x27, 0xd0, 0x18, 0xa4, 0x96, 0xef, 0x6c, 0x17, 0x24, 0xf9, 0x12, + 0x4c, 0xbe, 0x81, 0x3d, 0xc7, 0xa8, 0xf7, 0x37, 0x25, 0x7e, 0x9f, 0x1a, 0xab, 0x3b, 0x1e, 0xd5, + 0xb7, 0xe4, 0x1c, 0x79, 0xa4, 0x9e, 0xf7, 0xd7, 0x61, 0x94, 0xea, 0xf3, 0x81, 0x6e, 0xb5, 0xb1, + 0x9b, 0x28, 0xed, 0x28, 0x5f, 0x26, 0xe6, 0x2c, 0x87, 0xcb, 0xd4, 0xb0, 0xa0, 0x5c, 0xa5, 0xa8, + 0x95, 0xf1, 0xd9, 0x11, 0x98, 0x0a, 0x1a, 0x73, 0xa3, 0xfe, 0x51, 0x5b, 0x19, 0xd7, 0x21, 0x43, + 0xcf, 0x01, 0xdf, 0xca, 0xb8, 0xd4, 0xe7, 0xe2, 0x1e, 0x4e, 0xc4, 0xb7, 0xb0, 0x59, 0x77, 0xb4, + 0xe2, 0xfb, 0xd8, 0x53, 0x94, 0xce, 0xc2, 0x20, 0x74, 0x08, 0xb7, 0x23, 0xfe, 0x75, 0xb9, 0x0d, + 0x05, 0x52, 0xbb, 0x82, 0x6b, 0xed, 0x86, 0x2f, 0x0b, 0x91, 0xb3, 0x5a, 0x7a, 0x24, 0x67, 0xf5, + 0xdf, 0x8f, 0xc0, 0xb4, 0x30, 0x2e, 0xdf, 0x72, 0x5f, 0x94, 0x62, 0x37, 0x8f, 0x97, 0xfb, 0x4c, + 0x2a, 0xd2, 0x9d, 0x0d, 0xc3, 0x7d, 0x98, 0xaf, 0x92, 0x49, 0xbe, 0xfb, 0xc3, 0x07, 0x04, 0xca, + 0x51, 0xbc, 0x6f, 0x8b, 0x55, 0xc2, 0x90, 0x17, 0xd0, 0x89, 0x7e, 0xc8, 0x14, 0xf3, 0x43, 0xbe, + 0x1e, 0xf5, 0x43, 0x5e, 0x1e, 0x64, 0xa0, 0x6e, 0x3f, 0xff, 0x5f, 0xa7, 0x61, 0x6c, 0xeb, 0xc0, + 0xa2, 0x77, 0xa8, 0xbb, 0x30, 0xc2, 0x45, 0x78, 0x7c, 0x69, 0x91, 0x80, 0xf9, 0x87, 0x41, 0xf7, + 0x26, 0x0b, 0xdd, 0xb7, 0x0d, 0xbd, 0xb2, 0xbd, 0xbd, 0x46, 0x56, 0x7e, 0x64, 0x6d, 0x45, 0x19, + 0x31, 0x74, 0xf4, 0x0a, 0xbd, 0x3f, 0x38, 0x1e, 0x07, 0x39, 0x98, 0xa9, 0xcf, 0xba, 0xa0, 0x27, + 0x61, 0xca, 0x3b, 0xb0, 0x54, 0x1d, 0xbb, 0x75, 0xc7, 0x68, 0x79, 0x86, 0x6d, 0x71, 0xa3, 0x63, + 0xd2, 0x3b, 0xb0, 0x56, 0xc2, 0x52, 0xf4, 0x22, 0x9c, 0xb2, 0xda, 0x4d, 0xe6, 0xdc, 0x6a, 0x92, + 0xc3, 0x43, 0xc5, 0x07, 0xb8, 0xde, 0xf6, 0xfd, 0x97, 0xa3, 0xca, 0xac, 0xd5, 0x6e, 0x6e, 0x06, + 0xb5, 0xab, 0xbc, 0x12, 0x95, 0x21, 0x4f, 0xfa, 0x39, 0x98, 0x99, 0x0e, 0xd4, 0xff, 0xa4, 0x80, + 0xd5, 0x6e, 0x2a, 0xac, 0x04, 0x2d, 0x40, 0x81, 0x34, 0xd0, 0xda, 0x9e, 0x1d, 0xb4, 0x62, 0x2a, + 0x73, 0xd2, 0x6a, 0x37, 0x17, 0xdb, 0x9e, 0xed, 0xb7, 0x7c, 0x1d, 0xb2, 0x3a, 0xd6, 0x74, 0xd3, + 0xb0, 0x98, 0x9b, 0x67, 0xd0, 0xa9, 0x06, 0xbd, 0xc8, 0x61, 0x63, 0x34, 0x5b, 0xa6, 0x51, 0x37, + 0x3c, 0xee, 0x4c, 0x0d, 0x9e, 0x09, 0x50, 0x8d, 0xd8, 0x99, 0x6a, 0xad, 0xe3, 0x61, 0xe6, 0xe2, + 0x49, 0x29, 0x40, 0x8b, 0x96, 0x48, 0x09, 0xba, 0x08, 0x53, 0x4d, 0xed, 0x40, 0x15, 0x1b, 0x01, + 0x6d, 0x34, 0xd1, 0xd4, 0x0e, 0x16, 0xc3, 0x76, 0x67, 0x20, 0xe7, 0x60, 0x4d, 0x67, 0xe7, 0x64, + 0x9e, 0x8d, 0x42, 0x0a, 0xe8, 0x39, 0x79, 0x01, 0x26, 0x0c, 0x97, 0xfb, 0xa1, 0x8c, 0x3a, 0x77, + 0xa9, 0x64, 0x95, 0x71, 0xc3, 0xbd, 0x11, 0x94, 0xd1, 0x33, 0xd1, 0x31, 0x6c, 0xc7, 0xf0, 0x3a, + 0xd4, 0x29, 0x42, 0xce, 0x44, 0xfe, 0x2c, 0xff, 0x7a, 0x0a, 0xf2, 0x8b, 0x75, 0xcf, 0xd8, 0xc7, + 0x77, 0xdb, 0xd8, 0xe9, 0xa0, 0xb9, 0x40, 0x9e, 0x72, 0x4b, 0x19, 0x41, 0x28, 0x3e, 0x01, 0x19, + 0xb2, 0xb0, 0x86, 0x4e, 0x59, 0x35, 0xbe, 0xb4, 0xf2, 0x70, 0xb2, 0x36, 0x4a, 0xe4, 0x77, 0x45, + 0x19, 0xf5, 0x0e, 0xac, 0x35, 0x9d, 0x6c, 0x14, 0x77, 0xcf, 0xb7, 0x5c, 0xc9, 0xcf, 0x50, 0x06, + 0x53, 0xc3, 0xcb, 0xe0, 0x13, 0x30, 0x69, 0xb8, 0xaa, 0x6e, 0xb8, 0x9e, 0x63, 0xd4, 0xda, 0xa1, + 0x47, 0x7c, 0xc2, 0x70, 0x57, 0xc2, 0x42, 0xb4, 0x04, 0xa3, 0xad, 0x7b, 0xbe, 0x93, 0x7b, 0xb2, + 0x67, 0xf4, 0x32, 0xb8, 0x30, 0x84, 0x0c, 0xaa, 0xdc, 0x21, 0x7d, 0x14, 0xd6, 0x95, 0x71, 0x36, + 0x88, 0xc4, 0x48, 0x0b, 0x23, 0x42, 0x3c, 0xe5, 0x34, 0x64, 0x69, 0x50, 0xd6, 0xb2, 0x2d, 0x2a, + 0x1c, 0x39, 0x65, 0xcc, 0xdd, 0x33, 0x17, 0x2d, 0xdb, 0x92, 0x9f, 0x80, 0x51, 0x4a, 0x06, 0x4d, + 0x40, 0xee, 0x8e, 0xb2, 0x7a, 0x67, 0x51, 0x59, 0xdb, 0xb8, 0x5e, 0x38, 0x41, 0x1e, 0x57, 0x3f, + 0xbe, 0xba, 0xbc, 0xbd, 0x45, 0x1e, 0x25, 0xf9, 0x39, 0x38, 0x49, 0xec, 0xd5, 0x4d, 0xec, 0xba, + 0x42, 0x50, 0x8f, 0x0c, 0xda, 0x76, 0xb1, 0x23, 0x98, 0x6d, 0xc1, 0xb3, 0xfc, 0xef, 0x69, 0x18, + 0xe3, 0xed, 0x1f, 0xe9, 0x09, 0x2e, 0x62, 0x18, 0x89, 0x62, 0x20, 0xfc, 0xaf, 0x9b, 0x06, 0xb6, + 0xbc, 0x20, 0x20, 0xcd, 0x54, 0xc0, 0x04, 0x2b, 0xe5, 0xf1, 0x65, 0x74, 0x09, 0x0a, 0x34, 0xa0, + 0x55, 0xa7, 0x79, 0x3c, 0x2a, 0x25, 0xc5, 0xee, 0x20, 0x53, 0x42, 0xf9, 0x06, 0xa1, 0xb8, 0x09, + 0x93, 0x1a, 0x5d, 0x02, 0x95, 0xbb, 0xfa, 0x69, 0x72, 0x48, 0x3e, 0xea, 0x63, 0x39, 0x7e, 0xcd, + 0x7c, 0x77, 0xa1, 0x16, 0x14, 0x91, 0xed, 0x1f, 0x88, 0x58, 0x66, 0x78, 0x11, 0xbb, 0x0c, 0xd3, + 0xa6, 0xe6, 0x7a, 0xaa, 0x80, 0xaa, 0xc3, 0x17, 0x79, 0x8a, 0x54, 0x74, 0xef, 0xa8, 0x1c, 0xdd, + 0x35, 0xe2, 0x8e, 0x8a, 0x29, 0x08, 0x18, 0x44, 0x41, 0xe4, 0x7b, 0x29, 0x88, 0x45, 0x00, 0x8e, + 0xc3, 0x3b, 0xb0, 0xb8, 0x4f, 0x55, 0x4e, 0xf2, 0x6a, 0xb0, 0xa3, 0x43, 0xc9, 0xb1, 0x5e, 0x5b, + 0x07, 0x16, 0xba, 0x0a, 0x73, 0x5d, 0xf3, 0x61, 0x92, 0xcb, 0xf4, 0xc5, 0xc9, 0xd8, 0xa4, 0x88, + 0x14, 0xdf, 0x4c, 0x67, 0xc7, 0x0a, 0x59, 0xf9, 0x17, 0x25, 0x98, 0x16, 0xa5, 0x94, 0x59, 0x63, + 0x8f, 0x52, 0xf6, 0x8e, 0xf7, 0x27, 0xfd, 0x8e, 0x04, 0x33, 0xd1, 0x1d, 0xc3, 0x4d, 0x8e, 0x15, + 0xc8, 0xba, 0xbc, 0x8c, 0xdb, 0x1c, 0x49, 0x0c, 0xe2, 0xdd, 0x7d, 0x37, 0xbb, 0xdf, 0x13, 0xdd, + 0x8c, 0xd9, 0x09, 0x49, 0x2a, 0xa3, 0x8b, 0x25, 0x51, 0x53, 0x41, 0xde, 0x03, 0xb4, 0xac, 0x59, + 0x75, 0x6c, 0x52, 0x7e, 0xf6, 0xbd, 0x43, 0x5c, 0x84, 0x2c, 0x5b, 0x14, 0x83, 0x05, 0xb2, 0x72, + 0x4b, 0x79, 0x62, 0xaf, 0xd2, 0xce, 0xc4, 0xee, 0xa4, 0x95, 0xb1, 0x7d, 0x99, 0x8a, 0xe9, 0x86, + 0xeb, 0x70, 0x32, 0x32, 0x24, 0xe7, 0x0d, 0xb9, 0xd0, 0xd1, 0x62, 0xac, 0xf3, 0xe8, 0x65, 0xf0, + 0x1c, 0xfa, 0x36, 0x46, 0x04, 0xdf, 0x86, 0xdc, 0x81, 0x19, 0x46, 0x88, 0x4f, 0xb0, 0x2f, 0xfa, + 0xa7, 0x01, 0x38, 0x13, 0x7d, 0xfc, 0xe3, 0x2c, 0xb4, 0xce, 0x09, 0xac, 0xad, 0x28, 0x39, 0xde, + 0xa0, 0xcf, 0x1c, 0xd6, 0x60, 0x36, 0x36, 0xf4, 0x03, 0xcf, 0xe2, 0x1c, 0x9c, 0x21, 0x8b, 0xb4, + 0x1c, 0xe4, 0x78, 0x52, 0x47, 0x5f, 0x90, 0x3a, 0xe1, 0xcb, 0x35, 0x95, 0x7a, 0xc3, 0xeb, 0xfc, + 0x34, 0xe5, 0xfa, 0x8f, 0x24, 0x38, 0xdb, 0x1b, 0x2b, 0x9f, 0xfd, 0x7a, 0xe0, 0xd4, 0x64, 0xee, + 0xd9, 0xc8, 0x25, 0x73, 0xcf, 0xac, 0x88, 0x59, 0xad, 0x95, 0x4d, 0xec, 0x18, 0x9a, 0x69, 0xbc, + 0x85, 0x75, 0x05, 0x37, 0xc8, 0x81, 0xd8, 0x09, 0x64, 0x93, 0xd2, 0x18, 0x5a, 0xce, 0x23, 0x2c, + 0x8a, 0xc9, 0xf9, 0x69, 0x38, 0x45, 0x9a, 0x90, 0x83, 0x77, 0xf3, 0xee, 0xfa, 0x35, 0xd3, 0xfe, + 0x74, 0xc0, 0xe1, 0x7f, 0x49, 0x01, 0xe2, 0xe5, 0x0a, 0x6e, 0xda, 0x1e, 0xa6, 0xb5, 0x68, 0x07, + 0xc6, 0x76, 0x4c, 0xfb, 0xd3, 0x6a, 0x60, 0xd6, 0xbe, 0xc1, 0x4d, 0x8d, 0x0f, 0x0f, 0xc4, 0xdc, + 0x58, 0x86, 0x6e, 0x85, 0x10, 0xa5, 0x26, 0x47, 0x86, 0xfd, 0x52, 0x32, 0x84, 0xfa, 0x9a, 0x8e, + 0x36, 0x60, 0xd4, 0xb0, 0x76, 0x6c, 0x7f, 0x92, 0x49, 0x29, 0x14, 0xdd, 0x28, 0xc5, 0xb4, 0x2e, + 0x46, 0xa6, 0xf4, 0x9f, 0x12, 0xa4, 0xa9, 0x49, 0xfe, 0x28, 0x65, 0x64, 0x09, 0x72, 0x41, 0x62, + 0xeb, 0x50, 0xf6, 0x79, 0xd8, 0x8d, 0x08, 0x0b, 0x8f, 0x90, 0xb1, 0x48, 0xc5, 0xf3, 0xc3, 0xcd, + 0x9c, 0xdf, 0x47, 0x38, 0x0d, 0xf9, 0x31, 0xc8, 0xf0, 0x3b, 0x75, 0x1e, 0xc6, 0x94, 0xed, 0x8d, + 0x0d, 0x66, 0xca, 0x00, 0x64, 0xee, 0x6e, 0xaf, 0x6e, 0xaf, 0xae, 0x14, 0x24, 0xf9, 0x3b, 0x12, + 0x14, 0xbb, 0x85, 0x80, 0x8b, 0xee, 0x1a, 0x8c, 0x92, 0x05, 0x19, 0x24, 0x91, 0xb1, 0x1b, 0x4c, + 0xe0, 0x95, 0xa3, 0x92, 0xf3, 0x7e, 0xca, 0xed, 0x3f, 0x4a, 0x50, 0xd8, 0x6c, 0x69, 0x56, 0x24, + 0x12, 0x73, 0x21, 0xa6, 0xe0, 0x96, 0x20, 0x5c, 0xd9, 0x60, 0x89, 0x14, 0x31, 0x85, 0x80, 0xe9, + 0xba, 0x17, 0x7e, 0x72, 0x58, 0x7e, 0x6e, 0xb8, 0x2b, 0xea, 0x2d, 0xdc, 0x11, 0x32, 0x0f, 0x36, + 0xc2, 0xcc, 0x83, 0xd4, 0xc3, 0x50, 0xe4, 0x09, 0x0b, 0x44, 0xa1, 0x4c, 0x0b, 0xb3, 0xe3, 0x4b, + 0x51, 0x86, 0x3c, 0xf3, 0x08, 0xd4, 0xed, 0xb6, 0xe5, 0x71, 0xd7, 0x35, 0xd0, 0xa2, 0x65, 0x52, + 0x82, 0x9e, 0x87, 0x39, 0xad, 0xd5, 0x72, 0xec, 0x03, 0xa3, 0xa9, 0x79, 0x98, 0x98, 0xd8, 0xbb, + 0xdc, 0x30, 0x61, 0xe9, 0x4c, 0x33, 0x42, 0xed, 0x8a, 0xe1, 0xee, 0x32, 0xfb, 0x64, 0x1d, 0xf2, + 0x9e, 0xed, 0x69, 0xa6, 0xea, 0x47, 0xa5, 0xba, 0x12, 0x22, 0xe2, 0xe1, 0xb1, 0x37, 0xfe, 0xd7, + 0xf2, 0x32, 0x85, 0xe6, 0xe7, 0x3a, 0xd2, 0xfe, 0xb4, 0x44, 0xfe, 0x30, 0xcc, 0xf0, 0x38, 0x78, + 0x34, 0xb8, 0x3a, 0xc8, 0xda, 0xc8, 0x5f, 0x9b, 0x80, 0xd9, 0x58, 0xef, 0xee, 0x40, 0x4c, 0xf6, + 0xfd, 0xde, 0xb4, 0x7f, 0x25, 0xc1, 0x49, 0x3f, 0x56, 0x2f, 0x66, 0x37, 0xe6, 0xa8, 0x94, 0x5e, + 0x4b, 0x76, 0x08, 0x76, 0x63, 0xad, 0x04, 0x79, 0x00, 0xbd, 0xb3, 0x1c, 0x63, 0xd5, 0x0f, 0x9e, + 0xe5, 0xd8, 0x8a, 0x8d, 0x53, 0xfa, 0xdb, 0x1c, 0xcb, 0x09, 0x0d, 0x92, 0x9f, 0xba, 0xd2, 0x25, + 0xa4, 0x1e, 0xe9, 0x12, 0x3f, 0x23, 0xc1, 0xac, 0x90, 0x0f, 0xa5, 0xc6, 0x23, 0x44, 0xb7, 0x8f, + 0x0e, 0xcb, 0x27, 0xb7, 0xc3, 0x06, 0x0f, 0xed, 0x80, 0x3a, 0xd9, 0x8e, 0x13, 0xd3, 0x5d, 0xf4, + 0x2d, 0x09, 0x2e, 0x0a, 0xc9, 0x54, 0x5d, 0xb9, 0x58, 0x02, 0xac, 0x14, 0x85, 0xf5, 0xc9, 0xa3, + 0xc3, 0xf2, 0xf9, 0x30, 0xd3, 0x2a, 0x9a, 0x9d, 0xf5, 0xd0, 0x18, 0xcf, 0x3b, 0x89, 0x94, 0x75, + 0x17, 0x7d, 0x4e, 0x82, 0x62, 0x34, 0x01, 0x4c, 0x80, 0x98, 0xa6, 0x10, 0xef, 0x1c, 0x1d, 0x96, + 0x67, 0x36, 0x84, 0x74, 0xb0, 0x87, 0x86, 0x35, 0x63, 0x75, 0x51, 0xd3, 0x5d, 0x74, 0x00, 0xc8, + 0x4f, 0x09, 0x13, 0x30, 0x8c, 0x52, 0x0c, 0xb7, 0x8e, 0x0e, 0xcb, 0x53, 0x1b, 0x2c, 0x41, 0xec, + 0xa1, 0x87, 0x9f, 0xb2, 0x44, 0x42, 0xba, 0x8b, 0xbe, 0x24, 0xc1, 0xe9, 0x58, 0x22, 0x9b, 0x80, + 0x20, 0x43, 0x11, 0x6c, 0x1e, 0x1d, 0x96, 0x4f, 0x6d, 0x47, 0x1b, 0x3d, 0x34, 0x92, 0x53, 0xed, + 0x5e, 0x04, 0x75, 0x17, 0x7d, 0x41, 0x82, 0x62, 0x34, 0x63, 0x4e, 0x00, 0x94, 0xa3, 0x80, 0x94, + 0xa3, 0xc3, 0xf2, 0xdc, 0xed, 0xfd, 0xf7, 0x15, 0xcf, 0x9c, 0xbd, 0xdf, 0x13, 0xce, 0x37, 0x24, + 0x90, 0x8f, 0xcb, 0xc9, 0x13, 0x80, 0x8d, 0x51, 0x60, 0x6f, 0x1e, 0x1d, 0x96, 0xe7, 0xef, 0xf6, + 0xcc, 0xd0, 0x7b, 0x68, 0x80, 0xf3, 0x7b, 0x09, 0x74, 0x75, 0x17, 0x7d, 0x55, 0x82, 0xb3, 0xdd, + 0x29, 0x80, 0x02, 0xc4, 0x6c, 0xb8, 0x98, 0x4a, 0x34, 0x21, 0xf0, 0xe1, 0x17, 0xd3, 0xe9, 0x45, + 0x50, 0x77, 0x69, 0xda, 0x76, 0x4f, 0x6d, 0xda, 0x2f, 0x6d, 0x3b, 0x9f, 0xf8, 0xea, 0x4f, 0x6f, + 0xb5, 0x2d, 0x6a, 0x4e, 0xc1, 0x9d, 0x7b, 0x33, 0x9d, 0x95, 0x0a, 0x59, 0xf9, 0x25, 0x28, 0xdc, + 0xb0, 0xbd, 0x07, 0x38, 0xd3, 0x3e, 0x3f, 0x06, 0xd3, 0x42, 0xcf, 0x0f, 0xe0, 0xc5, 0x89, 0xef, + 0x4a, 0x30, 0x7b, 0xcf, 0xf6, 0xd8, 0xda, 0xf5, 0xc8, 0xd7, 0x5f, 0x4e, 0x60, 0x4d, 0x17, 0xd2, + 0xb0, 0x24, 0x7a, 0x9c, 0xdd, 0xe1, 0xc7, 0xd9, 0x74, 0xbc, 0xfe, 0x81, 0xcf, 0xb3, 0xe9, 0x7b, + 0xf1, 0x91, 0x4a, 0xfb, 0x90, 0xf5, 0xc9, 0xa3, 0x57, 0x21, 0xad, 0x63, 0xb7, 0xce, 0xed, 0x13, + 0xb9, 0x47, 0x32, 0x1f, 0x6d, 0xe7, 0x3b, 0xb1, 0x03, 0x8b, 0x91, 0xf6, 0x3a, 0x26, 0x41, 0x75, + 0xa4, 0x77, 0x82, 0x6a, 0xe9, 0x6f, 0x24, 0x98, 0xa0, 0xe9, 0x4a, 0xc1, 0x7a, 0x3d, 0xea, 0x5c, + 0xa8, 0x37, 0x01, 0xc2, 0x25, 0xe3, 0xeb, 0xf4, 0xc2, 0x03, 0xad, 0x53, 0x90, 0xd3, 0xee, 0xb7, + 0x28, 0xfd, 0x82, 0xc4, 0xcc, 0x82, 0x60, 0x32, 0x03, 0x99, 0x05, 0x0a, 0xb9, 0x86, 0xd8, 0x4e, + 0x80, 0xe6, 0x95, 0xa1, 0xd0, 0x44, 0xb8, 0xa7, 0x70, 0x4a, 0xa5, 0xff, 0x07, 0x73, 0xbd, 0xc5, + 0xa9, 0xc7, 0x7e, 0xbe, 0x1d, 0xdd, 0xcf, 0x1f, 0x1a, 0x6a, 0x78, 0x71, 0xba, 0x62, 0x68, 0xe6, + 0x12, 0x8c, 0x0f, 0x9a, 0x15, 0xf4, 0xcd, 0x51, 0x9e, 0x1f, 0xf8, 0x81, 0xec, 0x59, 0x31, 0xe0, + 0x39, 0xf2, 0x08, 0x02, 0x9e, 0x7f, 0x21, 0xc1, 0x8c, 0xc3, 0x27, 0x12, 0x51, 0x09, 0x2c, 0x6e, + 0xf9, 0xd1, 0x7e, 0x21, 0x5e, 0xe1, 0x75, 0x0e, 0x4e, 0xe4, 0x18, 0x75, 0x10, 0xaf, 0x7f, 0x70, + 0x75, 0xe0, 0xc4, 0x47, 0x2a, 0x7d, 0x25, 0x2e, 0xc8, 0x25, 0xc8, 0xfa, 0xad, 0x7c, 0xaf, 0x92, + 0x73, 0xac, 0x90, 0xf7, 0x7a, 0x6d, 0xf3, 0x75, 0xdf, 0xc9, 0x90, 0x1a, 0x3a, 0xc7, 0x92, 0xbb, + 0x15, 0xde, 0x86, 0xb9, 0xde, 0x2c, 0xe9, 0x21, 0xd2, 0xb7, 0xa2, 0x22, 0xfd, 0xc2, 0xc0, 0x4c, + 0x3f, 0x46, 0x9c, 0x79, 0x42, 0xca, 0x33, 0x80, 0x56, 0xc2, 0x57, 0xaa, 0xfb, 0xe6, 0x12, 0x2c, + 0x70, 0xdd, 0xd6, 0xbf, 0xe5, 0x77, 0x46, 0x60, 0x9c, 0x36, 0xf5, 0xdf, 0xae, 0x7d, 0xd4, 0x5a, + 0xf0, 0x29, 0x98, 0xc6, 0x56, 0xdd, 0xe9, 0xd0, 0x18, 0xa4, 0x9f, 0x27, 0x4c, 0xef, 0xe8, 0x4a, + 0x21, 0xac, 0xe0, 0xfe, 0x8c, 0xb2, 0x7f, 0x6f, 0x65, 0x09, 0x22, 0xec, 0x8a, 0xcb, 0xae, 0xa2, + 0x34, 0x87, 0x24, 0x6c, 0xc0, 0xee, 0xc0, 0x69, 0xa1, 0x01, 0xbb, 0xf9, 0x2e, 0x40, 0x81, 0x7b, + 0xd4, 0x77, 0x71, 0x87, 0x93, 0x61, 0x2f, 0xb1, 0xf0, 0x78, 0xc6, 0x2d, 0xdc, 0x61, 0xa4, 0xa2, + 0x2d, 0x19, 0xbd, 0x4c, 0xac, 0x25, 0xa5, 0x29, 0x7f, 0x0c, 0x26, 0x7d, 0xee, 0x06, 0xc9, 0x6f, + 0xbe, 0x22, 0x65, 0x2e, 0x94, 0x27, 0x13, 0xf3, 0x80, 0x42, 0x6e, 0xfb, 0x1e, 0x0f, 0xd6, 0x59, + 0x7e, 0x19, 0xa6, 0xc3, 0x78, 0xeb, 0x50, 0x16, 0xc8, 0x77, 0xb3, 0x80, 0xc4, 0xae, 0x1c, 0x57, + 0x8b, 0xe6, 0x9e, 0xf1, 0x52, 0x8e, 0xed, 0x66, 0x72, 0x8e, 0x52, 0x8c, 0x44, 0x65, 0xd9, 0x36, + 0x4d, 0x5c, 0xf7, 0xb0, 0x1e, 0xd4, 0x75, 0xa5, 0xae, 0x0b, 0x63, 0xa0, 0x65, 0x00, 0x1a, 0xc6, + 0x70, 0xb0, 0x8b, 0x87, 0x0b, 0x1d, 0xe6, 0x48, 0x3f, 0x85, 0x74, 0x43, 0x2f, 0x41, 0xd1, 0xb0, + 0x3c, 0xec, 0x58, 0x9a, 0xa9, 0x6a, 0xad, 0x16, 0x0d, 0x4c, 0xa9, 0x2d, 0x07, 0xef, 0x18, 0x07, + 0x3c, 0x3e, 0x35, 0xeb, 0xd7, 0x2f, 0xb6, 0x5a, 0x1b, 0x5a, 0x13, 0xdf, 0xa1, 0x95, 0xe8, 0x33, + 0x30, 0x4e, 0xdf, 0x9d, 0x22, 0x0b, 0x66, 0x5b, 0x7e, 0x8c, 0x6a, 0x6b, 0xb8, 0x19, 0xaf, 0xf2, + 0x57, 0x8b, 0x83, 0x99, 0x6f, 0x85, 0x24, 0xbb, 0xe6, 0x1e, 0x19, 0xaf, 0xf4, 0x97, 0x12, 0xcc, + 0xfb, 0xdd, 0x7b, 0xf0, 0xeb, 0x16, 0xee, 0xa0, 0x6b, 0x90, 0x25, 0xf2, 0x15, 0x24, 0x35, 0xc6, + 0xfc, 0x30, 0x7b, 0x66, 0xa5, 0x77, 0x47, 0x3f, 0x03, 0x6f, 0x17, 0x77, 0x56, 0x34, 0x4f, 0x13, + 0x4f, 0xaa, 0x91, 0xf7, 0xf9, 0xa4, 0x2a, 0xfd, 0xd6, 0x08, 0x9c, 0x4d, 0x5a, 0x77, 0xa4, 0x87, + 0x7a, 0x2f, 0x7f, 0x65, 0xfd, 0xc1, 0xd8, 0x9b, 0x38, 0x4d, 0xaa, 0x4b, 0x3f, 0x4e, 0xc3, 0x76, + 0x74, 0xd3, 0x2f, 0xdd, 0x60, 0x61, 0xbb, 0x9f, 0x1c, 0x96, 0x5f, 0x1b, 0x52, 0xff, 0x34, 0xbd, + 0x6b, 0x86, 0xd5, 0xc0, 0x4e, 0xcb, 0x31, 0x2c, 0x8f, 0x07, 0xfe, 0x5e, 0xf3, 0xf3, 0xb3, 0x47, + 0xba, 0x43, 0x75, 0xbd, 0x57, 0x20, 0x92, 0x97, 0x5d, 0xfa, 0x81, 0x04, 0x17, 0x07, 0x13, 0x13, + 0xa4, 0xb0, 0x2d, 0xe8, 0x8a, 0x2b, 0xfe, 0x4c, 0x6c, 0xbc, 0x81, 0x24, 0x2d, 0x47, 0xc9, 0x3c, + 0xea, 0xb5, 0x97, 0x3f, 0x37, 0x02, 0xa5, 0x60, 0xfe, 0x91, 0x33, 0xa7, 0x65, 0x3b, 0x1e, 0x9a, + 0x0c, 0x92, 0x13, 0x52, 0x94, 0x93, 0x67, 0x21, 0x57, 0xb7, 0x9b, 0x2d, 0x13, 0x7b, 0x58, 0xe7, + 0x29, 0x84, 0x61, 0x01, 0xba, 0x0a, 0xb3, 0x81, 0x6e, 0x50, 0x77, 0xc2, 0x65, 0xe0, 0x41, 0xa5, + 0x99, 0xa0, 0x52, 0x58, 0x22, 0xf4, 0x1a, 0x14, 0xc3, 0x4e, 0xc2, 0x87, 0x44, 0xc8, 0x74, 0xe9, + 0x07, 0x0b, 0x28, 0x43, 0x24, 0x65, 0xce, 0xed, 0x01, 0x93, 0x26, 0x7e, 0x8d, 0x3b, 0x4c, 0x77, + 0x62, 0x5d, 0xd5, 0x3c, 0xfe, 0x2e, 0xf6, 0x60, 0x4a, 0x28, 0x1f, 0xf4, 0x5c, 0xf4, 0xe4, 0x4f, + 0xc1, 0x93, 0xcb, 0x0e, 0xd6, 0x3c, 0x7c, 0x3c, 0x3f, 0x7c, 0x25, 0x7d, 0xec, 0x44, 0xa5, 0xe3, + 0x27, 0x2a, 0x77, 0x60, 0xa1, 0x3f, 0x7d, 0xae, 0xc9, 0xdf, 0x80, 0x8c, 0x43, 0x4b, 0xb8, 0x08, + 0xbd, 0x30, 0xc8, 0xa6, 0xeb, 0x26, 0xc7, 0x89, 0xc8, 0x8f, 0x83, 0x7c, 0x7c, 0xab, 0x20, 0x3c, + 0xf4, 0x7f, 0xe1, 0x42, 0x62, 0x2b, 0x8e, 0x6d, 0x1b, 0xc6, 0x18, 0x59, 0xff, 0x88, 0x79, 0x30, + 0x70, 0xbe, 0x86, 0xe3, 0xb4, 0xe4, 0xdf, 0x95, 0x60, 0xa6, 0x57, 0xeb, 0x2e, 0x19, 0x3c, 0x96, + 0xf9, 0x23, 0x09, 0x52, 0x76, 0x1d, 0xc6, 0xeb, 0xfe, 0xb6, 0x23, 0x52, 0x32, 0xcc, 0x51, 0x95, + 0x0f, 0x7a, 0x2e, 0xfa, 0x19, 0xc3, 0x1f, 0x83, 0x33, 0xbd, 0x67, 0xc6, 0xe4, 0xe3, 0xe5, 0x04, + 0x99, 0x66, 0x13, 0x39, 0x46, 0x9a, 0xe5, 0x3d, 0x38, 0xdb, 0x9b, 0x70, 0xf0, 0x2e, 0x79, 0x5e, + 0xa0, 0xc7, 0x15, 0x5a, 0x75, 0xd8, 0x05, 0x10, 0x69, 0xc8, 0x57, 0xa1, 0x78, 0xd3, 0xae, 0xf9, + 0x91, 0x49, 0x1e, 0x6c, 0xea, 0x67, 0x48, 0xfe, 0x9b, 0x04, 0xa7, 0x7b, 0xf4, 0xfa, 0x00, 0xee, + 0x55, 0x9f, 0x80, 0x71, 0xa7, 0x6d, 0x59, 0x86, 0xd5, 0x50, 0xef, 0xdb, 0x35, 0xff, 0x2e, 0x9b, + 0x94, 0xd1, 0x78, 0x2c, 0x4e, 0x5a, 0x93, 0xe7, 0xd4, 0x6e, 0xda, 0x35, 0xb7, 0x34, 0x0b, 0xa9, + 0x9b, 0x76, 0x2d, 0x2e, 0x72, 0xf2, 0x25, 0x28, 0xdc, 0xb4, 0x6b, 0x51, 0xd6, 0xcc, 0x42, 0xe6, + 0xbe, 0x5d, 0x0b, 0x57, 0x74, 0xf4, 0xbe, 0x5d, 0x5b, 0xd3, 0xe5, 0x55, 0x98, 0x16, 0x9a, 0x72, + 0x7e, 0x3c, 0x0b, 0xa9, 0xfb, 0x76, 0x8d, 0xef, 0xe5, 0xf9, 0xd8, 0x71, 0x40, 0xbf, 0xe7, 0xc4, + 0xbe, 0xed, 0x44, 0x01, 0x91, 0xa6, 0xf2, 0x87, 0x61, 0x86, 0x1a, 0x47, 0x9b, 0x77, 0xd7, 0x87, + 0x0e, 0x88, 0xc9, 0xa7, 0x60, 0x36, 0xd6, 0x99, 0xe1, 0x90, 0x7f, 0x2c, 0xc1, 0x99, 0x35, 0x4b, + 0xc7, 0x07, 0xf4, 0x23, 0x2a, 0xe1, 0x99, 0x33, 0x54, 0xb8, 0xed, 0x55, 0x28, 0xd8, 0x8e, 0x8e, + 0x1d, 0xac, 0xab, 0x1e, 0x0d, 0x2f, 0xf0, 0x73, 0x29, 0xbb, 0x84, 0x8e, 0x0e, 0xcb, 0x93, 0xb7, + 0x59, 0xdd, 0x16, 0xa9, 0x5a, 0x5b, 0x51, 0x26, 0x6d, 0xf1, 0x39, 0xd2, 0x9b, 0x7d, 0x87, 0x8a, + 0x9f, 0xf9, 0xd1, 0xde, 0x14, 0xa4, 0xd0, 0x9b, 0x3d, 0xeb, 0xe8, 0x1c, 0xe4, 0x9a, 0xda, 0x81, + 0x6a, 0x1a, 0x4d, 0xc3, 0x63, 0xe6, 0xff, 0x8d, 0x13, 0x4a, 0xb6, 0xa9, 0x1d, 0xac, 0x93, 0x92, + 0xa5, 0x51, 0xfa, 0x0a, 0x85, 0xec, 0xc0, 0xd9, 0xde, 0xb3, 0xe4, 0xcb, 0xc1, 0x0f, 0x69, 0x56, + 0xda, 0xeb, 0x5b, 0x1a, 0xe2, 0x21, 0xdd, 0x8b, 0x92, 0x68, 0x09, 0xb3, 0x92, 0xcb, 0x2f, 0x00, + 0x84, 0x29, 0xff, 0x68, 0x06, 0x0a, 0xd7, 0x6f, 0x2b, 0xb7, 0xb7, 0xb7, 0xd6, 0x36, 0x56, 0xd5, + 0xcd, 0xad, 0xc5, 0xe5, 0x5b, 0x9b, 0x85, 0x13, 0x68, 0x1a, 0x26, 0xb6, 0x6e, 0x28, 0xab, 0x8b, + 0x2b, 0x7e, 0x91, 0x74, 0xf9, 0x71, 0xc8, 0xfa, 0xf9, 0xf4, 0x42, 0x42, 0xf9, 0x24, 0x40, 0xd0, + 0x7d, 0xb3, 0x20, 0x5d, 0xf9, 0x76, 0x25, 0x88, 0xf9, 0x7e, 0x4d, 0x82, 0x71, 0xf1, 0x33, 0x35, + 0xa8, 0x32, 0xd8, 0x87, 0x68, 0xfc, 0x35, 0x2e, 0x55, 0x07, 0x6e, 0xcf, 0x85, 0xe6, 0xc9, 0x77, + 0xff, 0xee, 0xc7, 0xbf, 0x32, 0xf2, 0x18, 0x2a, 0x57, 0xf9, 0xfd, 0xad, 0x2a, 0x7e, 0xc5, 0xa6, + 0xfa, 0x36, 0x97, 0x98, 0x77, 0xd0, 0xcf, 0x4a, 0x30, 0xe6, 0xdf, 0x2b, 0x93, 0x32, 0x7a, 0xa3, + 0x1f, 0xbd, 0x29, 0x5d, 0x1e, 0xa4, 0x29, 0xc7, 0x22, 0x53, 0x2c, 0x67, 0x51, 0x29, 0xc0, 0xc2, + 0x5f, 0xdb, 0x11, 0x60, 0xd4, 0x60, 0x8c, 0x7f, 0xb1, 0x22, 0x11, 0x45, 0xf4, 0xc3, 0x1d, 0x89, + 0x28, 0x62, 0x1f, 0xc0, 0x90, 0x4f, 0x20, 0x07, 0x46, 0xe9, 0x77, 0x50, 0xd0, 0x93, 0xfd, 0xbf, + 0x94, 0xc2, 0xe8, 0x2f, 0x0c, 0xfa, 0x49, 0x15, 0x79, 0x8e, 0xce, 0xb1, 0x80, 0x26, 0x83, 0x39, + 0xb2, 0x4f, 0xb6, 0x7c, 0x06, 0xd2, 0xf4, 0x3d, 0x81, 0x8b, 0x7d, 0x28, 0xf9, 0x23, 0x0e, 0xf5, + 0x75, 0x18, 0xf9, 0x3c, 0x1d, 0xb5, 0x84, 0x8a, 0xd1, 0x51, 0x05, 0xbe, 0xbe, 0xc3, 0xbe, 0xdd, + 0x41, 0x73, 0xc3, 0xd1, 0x53, 0x83, 0x65, 0x90, 0x1f, 0x8f, 0xe4, 0xd8, 0x74, 0x73, 0x79, 0x96, + 0x22, 0x99, 0x42, 0x13, 0x01, 0x12, 0x47, 0xdb, 0xf1, 0xd0, 0x67, 0x25, 0xc8, 0x30, 0x9f, 0x20, + 0xea, 0xfb, 0xde, 0x76, 0xc0, 0xf5, 0x4b, 0x03, 0xb4, 0xe4, 0xc3, 0x3e, 0x46, 0x87, 0x3d, 0x83, + 0x4e, 0x0b, 0xc3, 0x92, 0x06, 0x02, 0x07, 0x5c, 0xc8, 0xb0, 0x97, 0x6f, 0x13, 0x11, 0x44, 0xde, + 0xcf, 0x2d, 0x89, 0xef, 0x38, 0xf1, 0x6f, 0xfa, 0xad, 0x59, 0x3b, 0x36, 0xe7, 0x7a, 0xf7, 0xa0, + 0xfc, 0xf3, 0x7f, 0xe1, 0xa0, 0xbf, 0x2a, 0x41, 0x5e, 0x78, 0x6b, 0x14, 0x3d, 0x33, 0xd8, 0xdb, + 0xa5, 0xfe, 0xf8, 0x95, 0x41, 0x9b, 0x73, 0x36, 0x5c, 0xa4, 0x88, 0xce, 0xa3, 0xf9, 0x00, 0x11, + 0x4b, 0x12, 0xa0, 0xd7, 0x11, 0x01, 0xd6, 0x57, 0x24, 0xc8, 0x05, 0xaf, 0xf5, 0x25, 0x8a, 0x43, + 0xfc, 0x65, 0xc6, 0x44, 0x71, 0xe8, 0x7a, 0xd3, 0x50, 0xbe, 0x44, 0x01, 0x5d, 0x40, 0x8f, 0x05, + 0x80, 0x34, 0xbf, 0x0d, 0x15, 0x51, 0x01, 0xd3, 0x7b, 0x12, 0x4c, 0x46, 0x5f, 0xfb, 0x44, 0xcf, + 0x0e, 0x34, 0x96, 0xe0, 0x40, 0x2e, 0x3d, 0x37, 0x44, 0x0f, 0x0e, 0xf1, 0x29, 0x0a, 0xf1, 0x09, + 0x74, 0xa1, 0x07, 0x44, 0x2a, 0x44, 0xd5, 0xb7, 0x7d, 0x57, 0xf0, 0x3b, 0xe8, 0xf3, 0x12, 0x8c, + 0x8b, 0xb9, 0x8a, 0x89, 0x0a, 0xbc, 0x47, 0x36, 0x72, 0xa2, 0x02, 0xef, 0x95, 0x8b, 0x29, 0x9f, + 0xa6, 0xf0, 0x4e, 0xa2, 0xe9, 0x00, 0x5e, 0x90, 0x60, 0xf9, 0x6b, 0x3c, 0xe7, 0x8e, 0x7e, 0x2f, + 0xe0, 0x83, 0x43, 0x54, 0xa6, 0x88, 0x4e, 0xa3, 0x53, 0x01, 0x22, 0xfa, 0xf5, 0x03, 0x35, 0xc0, + 0xf5, 0x35, 0x09, 0xf2, 0x42, 0xea, 0x64, 0xa2, 0xd0, 0x77, 0x67, 0x75, 0x26, 0x0a, 0x7d, 0x8f, + 0x8c, 0x4c, 0xf9, 0x32, 0xc5, 0xf3, 0xb8, 0x2c, 0x1c, 0x71, 0xb4, 0x15, 0xcb, 0xcb, 0x0d, 0x25, + 0xec, 0x15, 0xe9, 0x32, 0xfa, 0x3d, 0x9e, 0xf2, 0x1a, 0x4f, 0x0d, 0x44, 0x2f, 0xf6, 0xe1, 0xc2, + 0x31, 0x79, 0x8f, 0xa5, 0x97, 0x86, 0xee, 0x77, 0xec, 0x61, 0x18, 0x66, 0x1d, 0xaa, 0x3c, 0xb3, + 0xf0, 0x0f, 0x25, 0x38, 0x1d, 0x2c, 0xf0, 0x4f, 0x1f, 0xf2, 0x02, 0x85, 0x2c, 0xa3, 0xf3, 0xb1, + 0x85, 0xef, 0x06, 0xfe, 0x1b, 0x12, 0x14, 0xe2, 0x29, 0x6c, 0xe8, 0x4a, 0x9f, 0x71, 0x7b, 0x24, + 0x3d, 0x96, 0xae, 0x0e, 0xd5, 0x87, 0xe3, 0x9c, 0xa7, 0x38, 0x8b, 0x68, 0x2e, 0xb4, 0x33, 0x0c, + 0xd7, 0x73, 0xf7, 0x4c, 0x95, 0x25, 0xbe, 0x7d, 0x83, 0x7e, 0x7d, 0x8c, 0xb3, 0xf5, 0xa7, 0x03, + 0xf1, 0x71, 0x0a, 0x71, 0x1e, 0x9d, 0x8d, 0xb1, 0x32, 0x0a, 0xf4, 0xeb, 0x12, 0x4c, 0x44, 0xf2, + 0x77, 0x51, 0xb5, 0xef, 0xde, 0x88, 0x26, 0x19, 0x97, 0x9e, 0x1d, 0xbc, 0x03, 0x87, 0xf6, 0x34, + 0x85, 0x76, 0x51, 0x7e, 0x2c, 0xbe, 0x9d, 0xf8, 0xfe, 0x8e, 0x6e, 0xa8, 0xcf, 0x4a, 0x90, 0x0b, + 0x52, 0xe3, 0x12, 0x4f, 0x92, 0x78, 0x7a, 0x60, 0xe2, 0x49, 0xd2, 0x95, 0x6d, 0x27, 0x17, 0x29, + 0x2c, 0x24, 0x87, 0x86, 0x85, 0xdb, 0xd2, 0x2c, 0x02, 0xe1, 0x33, 0xd4, 0xbc, 0xae, 0xef, 0x26, + 0x9b, 0x16, 0x91, 0x77, 0x84, 0x4b, 0x49, 0x96, 0x9f, 0xf8, 0x4e, 0x7b, 0x8f, 0x33, 0xde, 0xa5, + 0x84, 0x84, 0x83, 0xeb, 0xff, 0x4b, 0x30, 0xc6, 0x5f, 0x45, 0x4d, 0xb4, 0x59, 0xa3, 0xaf, 0xab, + 0x0e, 0x0e, 0xa1, 0x5b, 0x53, 0xb4, 0x18, 0xa5, 0x18, 0x06, 0xfe, 0xf2, 0x6a, 0x22, 0x86, 0xe8, + 0x0b, 0xae, 0x0f, 0x83, 0xa1, 0xc9, 0x28, 0x09, 0x18, 0x7e, 0x4e, 0x82, 0xac, 0xff, 0xc2, 0x30, + 0x4a, 0xb2, 0xc8, 0x63, 0xef, 0x3c, 0x97, 0x9e, 0x1a, 0xa8, 0x2d, 0x47, 0xd2, 0x6d, 0xea, 0xd2, + 0x40, 0x51, 0xd4, 0xe6, 0x1a, 0x17, 0x5f, 0x60, 0x4f, 0x3e, 0x11, 0xbb, 0xdf, 0x8c, 0x4f, 0x3e, + 0x11, 0x7b, 0xbc, 0x19, 0x2f, 0x5f, 0xa0, 0x98, 0xce, 0xa1, 0x33, 0xc2, 0x6e, 0x6e, 0xc4, 0x61, + 0x7d, 0x49, 0x82, 0x31, 0xde, 0x3b, 0x71, 0x89, 0xa2, 0x6f, 0xca, 0x97, 0x9e, 0x49, 0x6e, 0x1a, + 0xfb, 0x4e, 0x80, 0x7f, 0x18, 0x22, 0x39, 0x01, 0x4a, 0xf5, 0x6d, 0x52, 0xf0, 0x0e, 0xb9, 0x93, + 0xac, 0xdb, 0x0d, 0x37, 0xf1, 0x4e, 0x22, 0x7c, 0x4c, 0x61, 0x58, 0x28, 0xbd, 0xec, 0x84, 0x86, + 0xc8, 0x91, 0xaf, 0x4a, 0xf4, 0x53, 0x74, 0x61, 0xee, 0x4f, 0xa2, 0x7a, 0xeb, 0x95, 0xc6, 0x9a, + 0xa8, 0xde, 0x7a, 0xa6, 0x15, 0xf5, 0x38, 0x1c, 0x78, 0xde, 0x26, 0x7f, 0xbb, 0xf5, 0x5d, 0x09, + 0x72, 0x41, 0x02, 0x43, 0xa2, 0x42, 0x8b, 0xe7, 0x1f, 0x25, 0x2a, 0xb4, 0xae, 0x9c, 0x08, 0xb9, + 0x44, 0x81, 0xcc, 0x20, 0x14, 0x00, 0xb9, 0x67, 0x7b, 0x1c, 0xc4, 0x3b, 0x30, 0xca, 0x2c, 0xe0, + 0x27, 0xfb, 0xc7, 0xa4, 0xfb, 0xdf, 0x50, 0xa3, 0xf6, 0xee, 0x31, 0x57, 0x25, 0xd1, 0xca, 0x7d, + 0x4f, 0x82, 0xbc, 0xe8, 0xc4, 0x4d, 0xce, 0x32, 0x8f, 0x3b, 0x50, 0x4b, 0xaf, 0x76, 0x37, 0x17, + 0xbf, 0x31, 0x1e, 0xf9, 0xfa, 0xb8, 0xd0, 0x9f, 0x79, 0x96, 0x7b, 0xdc, 0x61, 0xc4, 0x4f, 0x97, + 0x87, 0xd2, 0x43, 0xae, 0x94, 0x2c, 0xb4, 0xdb, 0x47, 0xef, 0x0b, 0xb1, 0xf5, 0xc4, 0x2b, 0x65, + 0x34, 0x4e, 0xdc, 0x53, 0xf3, 0x93, 0x06, 0x02, 0x84, 0x9f, 0x97, 0xa8, 0xdf, 0xc8, 0x8f, 0xa7, + 0x3e, 0x3d, 0x60, 0x70, 0xad, 0xff, 0x6e, 0xea, 0x0e, 0xc5, 0xc9, 0x67, 0x28, 0x9c, 0x59, 0x74, + 0x52, 0x3c, 0x88, 0xfc, 0x91, 0xbf, 0x2f, 0xc1, 0xf9, 0x7e, 0xe1, 0x09, 0xb4, 0x94, 0x64, 0x0a, + 0x0c, 0x16, 0x3b, 0x29, 0x2d, 0x3f, 0x14, 0x8d, 0xa8, 0xba, 0x94, 0x8b, 0xc2, 0x54, 0x9a, 0x1e, + 0x59, 0x65, 0x1e, 0x4e, 0x20, 0xa7, 0xfa, 0x9f, 0x49, 0xc7, 0x39, 0xd3, 0x29, 0x12, 0x17, 0x7d, + 0xe4, 0x81, 0x02, 0x17, 0x01, 0xfb, 0x5f, 0x7b, 0xd0, 0xee, 0xc7, 0x9e, 0x43, 0xb1, 0x49, 0xa0, + 0x3f, 0x39, 0x2e, 0x26, 0xf2, 0xe2, 0xd0, 0x43, 0xf7, 0x37, 0xdc, 0x93, 0xe2, 0x0e, 0xf2, 0xf3, + 0x14, 0x6b, 0x05, 0x3d, 0xdd, 0x85, 0xb5, 0xfa, 0xf6, 0x71, 0xa1, 0x8e, 0x77, 0xd0, 0x37, 0x25, + 0xea, 0x0d, 0x8f, 0x7a, 0xdf, 0xd1, 0xd5, 0xe1, 0x7c, 0xf5, 0x0c, 0xf9, 0xf3, 0x0f, 0xe2, 0xe0, + 0xef, 0xe1, 0xbb, 0xbc, 0x6f, 0xd7, 0x54, 0x87, 0x37, 0x8e, 0x5a, 0x1e, 0xb9, 0xc0, 0x6f, 0x9f, + 0xa8, 0xb3, 0xe3, 0x81, 0x80, 0x44, 0x9d, 0xdd, 0x15, 0x0a, 0x90, 0xcf, 0x51, 0x44, 0xa7, 0xd0, + 0xac, 0x88, 0xa8, 0xfa, 0x36, 0x0b, 0x25, 0xbc, 0x43, 0x2e, 0xe4, 0x13, 0x11, 0xdf, 0x7d, 0xe2, + 0x81, 0xd6, 0x2b, 0x44, 0x90, 0x78, 0xa0, 0xf5, 0x0e, 0x0b, 0x70, 0x3d, 0x25, 0x87, 0x07, 0x1a, + 0xcd, 0xe7, 0x70, 0xf7, 0x4c, 0xea, 0xf5, 0x21, 0x7b, 0xe9, 0x5b, 0x12, 0xcc, 0xf4, 0xf2, 0x84, + 0x27, 0x4a, 0x62, 0x42, 0xa8, 0x21, 0x51, 0x12, 0x93, 0x9c, 0xf7, 0xf2, 0x13, 0x14, 0x6c, 0x19, + 0x9d, 0x0b, 0xc0, 0xd2, 0x38, 0x02, 0xfd, 0x5c, 0x7c, 0xe8, 0x8f, 0x5f, 0xba, 0xfc, 0xbd, 0x7f, + 0x9e, 0x3f, 0xf1, 0xbd, 0xa3, 0x79, 0xe9, 0xfb, 0x47, 0xf3, 0xd2, 0x0f, 0x8e, 0xe6, 0xa5, 0x7f, + 0x3a, 0x9a, 0x97, 0xbe, 0xfc, 0xa3, 0xf9, 0x13, 0xdf, 0xff, 0xd1, 0xfc, 0x89, 0x1f, 0xfc, 0x68, + 0xfe, 0xc4, 0x9b, 0x59, 0x7f, 0xbc, 0x5a, 0x86, 0x86, 0xff, 0xae, 0xfe, 0x77, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x6a, 0xb9, 0x07, 0xb2, 0xc7, 0x63, 0x00, 0x00, } func (this *PrettySpan) Equal(that interface{}) bool { @@ -4755,6 +4883,7 @@ type StatusClient interface { JobRegistryStatus(ctx context.Context, in *JobRegistryStatusRequest, opts ...grpc.CallOption) (*JobRegistryStatusResponse, error) JobStatus(ctx context.Context, in *JobStatusRequest, opts ...grpc.CallOption) (*JobStatusResponse, error) ResetSQLStats(ctx context.Context, in *ResetSQLStatsRequest, opts ...grpc.CallOption) (*ResetSQLStatsResponse, error) + IndexUsageStatistics(ctx context.Context, in *IndexUsageStatisticsRequest, opts ...grpc.CallOption) (*IndexUsageStatisticsResponse, error) } type statusClient struct { @@ -5116,6 +5245,15 @@ func (c *statusClient) ResetSQLStats(ctx context.Context, in *ResetSQLStatsReque return out, nil } +func (c *statusClient) IndexUsageStatistics(ctx context.Context, in *IndexUsageStatisticsRequest, opts ...grpc.CallOption) (*IndexUsageStatisticsResponse, error) { + out := new(IndexUsageStatisticsResponse) + err := c.cc.Invoke(ctx, "/cockroach.server.serverpb.Status/IndexUsageStatistics", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // StatusServer is the server API for Status service. type StatusServer interface { // Certificates retrieves a copy of the TLS certificates. @@ -5247,6 +5385,7 @@ type StatusServer interface { JobRegistryStatus(context.Context, *JobRegistryStatusRequest) (*JobRegistryStatusResponse, error) JobStatus(context.Context, *JobStatusRequest) (*JobStatusResponse, error) ResetSQLStats(context.Context, *ResetSQLStatsRequest) (*ResetSQLStatsResponse, error) + IndexUsageStatistics(context.Context, *IndexUsageStatisticsRequest) (*IndexUsageStatisticsResponse, error) } // UnimplementedStatusServer can be embedded to have forward compatible implementations. @@ -5370,6 +5509,9 @@ func (*UnimplementedStatusServer) JobStatus(ctx context.Context, req *JobStatusR func (*UnimplementedStatusServer) ResetSQLStats(ctx context.Context, req *ResetSQLStatsRequest) (*ResetSQLStatsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ResetSQLStats not implemented") } +func (*UnimplementedStatusServer) IndexUsageStatistics(ctx context.Context, req *IndexUsageStatisticsRequest) (*IndexUsageStatisticsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method IndexUsageStatistics not implemented") +} func RegisterStatusServer(s *grpc.Server, srv StatusServer) { s.RegisterService(&_Status_serviceDesc, srv) @@ -6077,6 +6219,24 @@ func _Status_ResetSQLStats_Handler(srv interface{}, ctx context.Context, dec fun return interceptor(ctx, in, info, handler) } +func _Status_IndexUsageStatistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(IndexUsageStatisticsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(StatusServer).IndexUsageStatistics(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/cockroach.server.serverpb.Status/IndexUsageStatistics", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(StatusServer).IndexUsageStatistics(ctx, req.(*IndexUsageStatisticsRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Status_serviceDesc = grpc.ServiceDesc{ ServiceName: "cockroach.server.serverpb.Status", HandlerType: (*StatusServer)(nil), @@ -6237,6 +6397,10 @@ var _Status_serviceDesc = grpc.ServiceDesc{ MethodName: "ResetSQLStats", Handler: _Status_ResetSQLStats_Handler, }, + { + MethodName: "IndexUsageStatistics", + Handler: _Status_IndexUsageStatistics_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "server/serverpb/status.proto", @@ -10964,6 +11128,114 @@ func (m *ResetSQLStatsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *IndexUsageStatisticsRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *IndexUsageStatisticsRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *IndexUsageStatisticsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Max != nil { + { + size := m.Max.Size() + i -= size + if _, err := m.Max.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + } + } + if m.OrderedIndexID { + i-- + if m.OrderedIndexID { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x18 + } + if m.OrderedTableID { + i-- + if m.OrderedTableID { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x10 + } + if len(m.NodeID) > 0 { + i -= len(m.NodeID) + copy(dAtA[i:], m.NodeID) + i = encodeVarintStatus(dAtA, i, uint64(len(m.NodeID))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *IndexUsageStatisticsRequest_MaxLimit) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *IndexUsageStatisticsRequest_MaxLimit) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + i = encodeVarintStatus(dAtA, i, uint64(m.MaxLimit)) + i-- + dAtA[i] = 0x20 + return len(dAtA) - i, nil +} +func (m *IndexUsageStatisticsResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *IndexUsageStatisticsResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *IndexUsageStatisticsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Statistics) > 0 { + for iNdEx := len(m.Statistics) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Statistics[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintStatus(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + func encodeVarintStatus(dAtA []byte, offset int, v uint64) int { offset -= sovStatus(v) base := offset @@ -12929,6 +13201,52 @@ func (m *ResetSQLStatsResponse) Size() (n int) { return n } +func (m *IndexUsageStatisticsRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.NodeID) + if l > 0 { + n += 1 + l + sovStatus(uint64(l)) + } + if m.OrderedTableID { + n += 2 + } + if m.OrderedIndexID { + n += 2 + } + if m.Max != nil { + n += m.Max.Size() + } + return n +} + +func (m *IndexUsageStatisticsRequest_MaxLimit) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + n += 1 + sovStatus(uint64(m.MaxLimit)) + return n +} +func (m *IndexUsageStatisticsResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Statistics) > 0 { + for _, e := range m.Statistics { + l = e.Size() + n += 1 + l + sovStatus(uint64(l)) + } + } + return n +} + func sovStatus(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -26445,6 +26763,232 @@ func (m *ResetSQLStatsResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *IndexUsageStatisticsRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: IndexUsageStatisticsRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: IndexUsageStatisticsRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field NodeID", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthStatus + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthStatus + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.NodeID = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field OrderedTableID", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.OrderedTableID = bool(v != 0) + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field OrderedIndexID", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.OrderedIndexID = bool(v != 0) + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MaxLimit", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Max = &IndexUsageStatisticsRequest_MaxLimit{v} + default: + iNdEx = preIndex + skippy, err := skipStatus(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthStatus + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *IndexUsageStatisticsResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: IndexUsageStatisticsResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: IndexUsageStatisticsResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Statistics", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthStatus + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthStatus + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Statistics = append(m.Statistics, roachpb.CollectedIndexUsageStatistics{}) + if err := m.Statistics[len(m.Statistics)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipStatus(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthStatus + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipStatus(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 diff --git a/pkg/server/serverpb/status.pb.gw.go b/pkg/server/serverpb/status.pb.gw.go index 621b676bad8a..fa7ce214894e 100644 --- a/pkg/server/serverpb/status.pb.gw.go +++ b/pkg/server/serverpb/status.pb.gw.go @@ -1881,6 +1881,42 @@ func local_request_Status_ResetSQLStats_0(ctx context.Context, marshaler runtime } +var ( + filter_Status_IndexUsageStatistics_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)} +) + +func request_Status_IndexUsageStatistics_0(ctx context.Context, marshaler runtime.Marshaler, client StatusClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq IndexUsageStatisticsRequest + var metadata runtime.ServerMetadata + + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Status_IndexUsageStatistics_0); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := client.IndexUsageStatistics(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func local_request_Status_IndexUsageStatistics_0(ctx context.Context, marshaler runtime.Marshaler, server StatusServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq IndexUsageStatisticsRequest + var metadata runtime.ServerMetadata + + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Status_IndexUsageStatistics_0); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := server.IndexUsageStatistics(ctx, &protoReq) + return msg, metadata, err + +} + // RegisterStatusHandlerServer registers the http handlers for service Status to "mux". // UnaryRPC :call StatusServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. @@ -2761,6 +2797,29 @@ func RegisterStatusHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser }) + mux.Handle("GET", pattern_Status_IndexUsageStatistics_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := local_request_Status_IndexUsageStatistics_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Status_IndexUsageStatistics_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -3562,6 +3621,26 @@ func RegisterStatusHandlerClient(ctx context.Context, mux *runtime.ServeMux, cli }) + mux.Handle("GET", pattern_Status_IndexUsageStatistics_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Status_IndexUsageStatistics_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Status_IndexUsageStatistics_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -3641,6 +3720,8 @@ var ( pattern_Status_JobStatus_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"_status", "job", "job_id"}, "", runtime.AssumeColonVerbOpt(true))) pattern_Status_ResetSQLStats_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"_status", "resetsqlstats"}, "", runtime.AssumeColonVerbOpt(true))) + + pattern_Status_IndexUsageStatistics_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"_status", "indexusagestatistics"}, "", runtime.AssumeColonVerbOpt(true))) ) var ( @@ -3719,4 +3800,6 @@ var ( forward_Status_JobStatus_0 = runtime.ForwardResponseMessage forward_Status_ResetSQLStats_0 = runtime.ForwardResponseMessage + + forward_Status_IndexUsageStatistics_0 = runtime.ForwardResponseMessage ) diff --git a/pkg/server/serverpb/status.proto b/pkg/server/serverpb/status.proto index 0540b1142eea..4fa129e51797 100644 --- a/pkg/server/serverpb/status.proto +++ b/pkg/server/serverpb/status.proto @@ -17,6 +17,7 @@ import "gossip/gossip.proto"; import "jobs/jobspb/jobs.proto"; import "roachpb/app_stats.proto"; import "roachpb/data.proto"; +import "roachpb/index_usage_stats.proto"; import "roachpb/metadata.proto"; import "server/diagnostics/diagnosticspb/diagnostics.proto"; import "server/status/statuspb/status.proto"; @@ -1092,6 +1093,33 @@ message ResetSQLStatsRequest { message ResetSQLStatsResponse { } +// Request object for issuing IndexUsageStatistics request. +message IndexUsageStatisticsRequest { + // node_id is the ID of the node where the stats data shall be retrieved from. + // If this is left empty, the cluster-wide aggregated result will be returned. + string node_id = 1 [(gogoproto.customname) = "NodeID"]; + + // ordered_table_id specifies that if the returned stats data will be ordered + // based on the table_id. + bool ordered_table_id = 2 [(gogoproto.customname) = "OrderedTableID"]; + + // ordered_index_id specifies that if the returned stats data's index ID + // will be ordered. + bool ordered_index_id = 3 [(gogoproto.customname) = "OrderedIndexID"]; + + // max specifies an upper bound of number of entries that will be returned + // by the RPC. If this field is left unset, then all stats data will be + // returned at once. + oneof max { + uint64 max_limit = 4; + } +} + +// Response object returned by IndexUsageStatistics. +message IndexUsageStatisticsResponse { + repeated cockroach.sql.CollectedIndexUsageStatistics statistics = 1 [(gogoproto.nullable) = false]; +} + service Status { // Certificates retrieves a copy of the TLS certificates. rpc Certificates(CertificatesRequest) returns (CertificatesResponse) { @@ -1410,4 +1438,10 @@ service Status { body: "*" }; } + + rpc IndexUsageStatistics(IndexUsageStatisticsRequest) returns (IndexUsageStatisticsResponse) { + option (google.api.http) = { + get: "/_status/indexusagestatistics" + }; + } } diff --git a/pkg/server/tenant_status.go b/pkg/server/tenant_status.go index d436474f9593..d224a0b8bb85 100644 --- a/pkg/server/tenant_status.go +++ b/pkg/server/tenant_status.go @@ -140,3 +140,14 @@ func (t *tenantStatusServer) ListDistSQLFlows( ) (*serverpb.ListDistSQLFlowsResponse, error) { return t.ListLocalDistSQLFlows(ctx, request) } + +func (t *tenantStatusServer) IndexUsageStatistics( + ctx context.Context, request *serverpb.IndexUsageStatisticsRequest, +) (*serverpb.IndexUsageStatisticsResponse, error) { + if _, err := t.privilegeChecker.requireViewActivityPermission(ctx); err != nil { + return nil, err + } + + reader := t.sqlServer.pgServer.SQLServer.GetLocalIndexStatisticsReader() + return serializeIndexUsageStats(request, reader) +} diff --git a/pkg/sql/conn_executor.go b/pkg/sql/conn_executor.go index cba063b0f3f4..138a434f8498 100644 --- a/pkg/sql/conn_executor.go +++ b/pkg/sql/conn_executor.go @@ -272,6 +272,8 @@ type Server struct { // indexUsageStats tracks the index usage statistics. indexUsageStats *idxusage.LocalIndexUsageStats + // clusterIndexUsageStats is used to fetch cluster-wide index usage statistics. + clusterIndexUsageStats *idxusage.ClusterIndexUsageStats // Metrics is used to account normal queries. Metrics Metrics @@ -334,7 +336,11 @@ func NewServer(cfg *ExecutorConfig, pool *mon.BytesMonitor) *Server { indexUsageStats: idxusage.NewLocalIndexUsageStats(&idxusage.Config{ ChannelSize: idxusage.DefaultChannelSize, Setting: cfg.Settings, + Knobs: cfg.IndexUsageStatsTestingKnobs, }), + clusterIndexUsageStats: idxusage.NewClusterIndexUsageStats(idxusage.NewLocalIndexUsageStats(&idxusage.Config{ + Setting: cfg.Settings, + }), cfg.SQLStatusServer), } return s @@ -626,6 +632,17 @@ func (s *Server) ServeConn( return h.ex.run(ctx, s.pool, reserved, cancel) } +// GetLocalIndexStatisticsReader returns a node-local indexusagestats.Reader. +func (s *Server) GetLocalIndexStatisticsReader() idxusage.Reader { + return s.indexUsageStats +} + +// GetClusterIndexStatisticsProvider returns a cluster-wide +// clusterindexusagestats.Provider. +func (s *Server) GetClusterIndexStatisticsProvider() *idxusage.ClusterIndexUsageStats { + return s.clusterIndexUsageStats +} + // newSessionData a SessionData that can be passed to newConnExecutor. func (s *Server) newSessionData(args SessionArgs) *sessiondata.SessionData { sd := &sessiondata.SessionData{ @@ -745,7 +762,8 @@ func (s *Server) newConnExecutor( executorType: executorTypeExec, hasCreatedTemporarySchema: false, stmtDiagnosticsRecorder: s.cfg.StmtDiagnosticsRecorder, - indexUsageStatsWriter: s.indexUsageStats, + indexUsageStats: s.indexUsageStats, + clusterIndexUsageStats: s.GetClusterIndexStatisticsProvider(), } ex.state.txnAbortCount = ex.metrics.EngineMetrics.TxnAbortCount @@ -1293,8 +1311,12 @@ type connExecutor struct { // information collected. stmtDiagnosticsRecorder *stmtdiagnostics.Registry - // indexUsageStatsWriter is used to track index usage stats. - indexUsageStatsWriter idxusage.Writer + // indexUsageStats is used to track index usage stats. + indexUsageStats *idxusage.LocalIndexUsageStats + + // clusterIndexUsageStats is used to surface cluster-wide index usage + // statistics. + clusterIndexUsageStats *idxusage.ClusterIndexUsageStats } // ctxHolder contains a connection's context and, while session tracing is @@ -2302,21 +2324,22 @@ func (ex *connExecutor) initEvalCtx(ctx context.Context, evalCtx *extendedEvalCo SQLStatsResetter: ex.server, CompactEngineSpan: ex.server.cfg.CompactEngineSpanFunc, }, - SessionMutator: ex.dataMutator, - VirtualSchemas: ex.server.cfg.VirtualSchemas, - Tracing: &ex.sessionTracing, - NodesStatusServer: ex.server.cfg.NodesStatusServer, - RegionsServer: ex.server.cfg.RegionsServer, - SQLStatusServer: ex.server.cfg.SQLStatusServer, - MemMetrics: &ex.memMetrics, - Descs: &ex.extraTxnState.descCollection, - ExecCfg: ex.server.cfg, - DistSQLPlanner: ex.server.cfg.DistSQLPlanner, - TxnModesSetter: ex, - Jobs: &ex.extraTxnState.jobs, - SchemaChangeJobCache: ex.extraTxnState.schemaChangeJobsCache, - statsStorage: ex.server.sqlStats, - indexUsageStatsWriter: ex.indexUsageStatsWriter, + SessionMutator: ex.dataMutator, + VirtualSchemas: ex.server.cfg.VirtualSchemas, + Tracing: &ex.sessionTracing, + NodesStatusServer: ex.server.cfg.NodesStatusServer, + RegionsServer: ex.server.cfg.RegionsServer, + SQLStatusServer: ex.server.cfg.SQLStatusServer, + MemMetrics: &ex.memMetrics, + Descs: &ex.extraTxnState.descCollection, + ExecCfg: ex.server.cfg, + DistSQLPlanner: ex.server.cfg.DistSQLPlanner, + TxnModesSetter: ex, + Jobs: &ex.extraTxnState.jobs, + SchemaChangeJobCache: ex.extraTxnState.schemaChangeJobsCache, + statsStorage: ex.server.sqlStats, + indexUsageStatsWriter: ex.indexUsageStats, + clusterIndexUsageStats: ex.clusterIndexUsageStats, } } diff --git a/pkg/sql/exec_util.go b/pkg/sql/exec_util.go index ccbe76cfb86b..807e0cfefe90 100644 --- a/pkg/sql/exec_util.go +++ b/pkg/sql/exec_util.go @@ -60,6 +60,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/sql/execinfra" "github.com/cockroachdb/cockroach/pkg/sql/execinfrapb" "github.com/cockroachdb/cockroach/pkg/sql/gcjob/gcjobnotifier" + "github.com/cockroachdb/cockroach/pkg/sql/idxusage" "github.com/cockroachdb/cockroach/pkg/sql/opt" "github.com/cockroachdb/cockroach/pkg/sql/optionalnodeliveness" "github.com/cockroachdb/cockroach/pkg/sql/parser" @@ -898,6 +899,7 @@ type ExecutorConfig struct { EvalContextTestingKnobs tree.EvalContextTestingKnobs TenantTestingKnobs *TenantTestingKnobs BackupRestoreTestingKnobs *BackupRestoreTestingKnobs + IndexUsageStatsTestingKnobs *idxusage.TestingKnobs // HistogramWindowInterval is (server.Config).HistogramWindowInterval. HistogramWindowInterval time.Duration diff --git a/pkg/sql/idxusage/BUILD.bazel b/pkg/sql/idxusage/BUILD.bazel index 8c198f69b4d2..7a46d70e085c 100644 --- a/pkg/sql/idxusage/BUILD.bazel +++ b/pkg/sql/idxusage/BUILD.bazel @@ -18,6 +18,7 @@ go_library( go_library( name = "idxusage", srcs = [ + "cluster_idx_usage_stats.go", "cluster_settings.go", "index_usage_stats.go", "local_idx_usage_stats.go", @@ -26,7 +27,9 @@ go_library( importpath = "github.com/cockroachdb/cockroach/pkg/sql/idxusage", visibility = ["//visibility:public"], deps = [ + "//pkg/base", "//pkg/roachpb", + "//pkg/server/serverpb", "//pkg/settings", "//pkg/settings/cluster", "//pkg/util/log", diff --git a/pkg/sql/idxusage/cluster_idx_usage_stats.go b/pkg/sql/idxusage/cluster_idx_usage_stats.go new file mode 100644 index 000000000000..bcc81facc752 --- /dev/null +++ b/pkg/sql/idxusage/cluster_idx_usage_stats.go @@ -0,0 +1,60 @@ +// Copyright 2021 The Cockroach Authors. +// +// Use of this software is governed by the Business Source License +// included in the file licenses/BSL.txt. +// +// As of the Change Date specified in that file, in accordance with +// the Business Source License, use of this software will be governed +// by the Apache License, Version 2.0, included in the file +// licenses/APL.txt. + +package idxusage + +import ( + "github.com/cockroachdb/cockroach/pkg/roachpb" + "github.com/cockroachdb/cockroach/pkg/server/serverpb" +) + +// ClusterIndexUsageStats implements the Reader interface and is able to returns +// cluster-wide index usage statistics. ClusterIndexUsageStats is not +// responsible for collecting index usage statistics in the local node. +type ClusterIndexUsageStats struct { + // storage is used as the temporary in-memory store for index usage statistics + // for the ClusterIndexUsageStats. It is not responsible for collecting index + // usage stats, therefore, we do not call LocalIndexUsageStats.Start() method. + storage *LocalIndexUsageStats + statusServer serverpb.SQLStatusServer +} + +var _ Reader = &ClusterIndexUsageStats{} + +// NewClusterIndexUsageStats returns a new instance of ClusterIndexUsageStats. +func NewClusterIndexUsageStats( + localIndexUsageStats *LocalIndexUsageStats, statusServer serverpb.SQLStatusServer, +) *ClusterIndexUsageStats { + return &ClusterIndexUsageStats{ + storage: localIndexUsageStats, + statusServer: statusServer, + } +} + +// Clear clears all the currently stored data inside ClusterIndexUsageStats. +func (c *ClusterIndexUsageStats) Clear() { + c.storage.clear() +} + +// BatchInsert insert all the roachpb.CollectedIndexUsageStatistics in the +// otherStats into the local in-memory storage of the ClusterIndexUsageStats. +func (c *ClusterIndexUsageStats) BatchInsert(otherStats []roachpb.CollectedIndexUsageStatistics) { + c.storage.batchInsert(otherStats) +} + +// Get implements the idxusage.Reader interface. +func (c *ClusterIndexUsageStats) Get(key roachpb.IndexUsageKey) roachpb.IndexUsageStatistics { + return c.storage.Get(key) +} + +// ForEach the idxusage.Reader interface. +func (c *ClusterIndexUsageStats) ForEach(options IteratorOptions, visitor StatsVisitor) error { + return c.storage.ForEach(options, visitor) +} diff --git a/pkg/sql/idxusage/local_idx_usage_stats.go b/pkg/sql/idxusage/local_idx_usage_stats.go index f2d3c77c5679..02d719b482a7 100644 --- a/pkg/sql/idxusage/local_idx_usage_stats.go +++ b/pkg/sql/idxusage/local_idx_usage_stats.go @@ -221,6 +221,16 @@ func (s *LocalIndexUsageStats) ForEach(options IteratorOptions, visitor StatsVis return nil } +func (s *LocalIndexUsageStats) batchInsert(otherStats []roachpb.CollectedIndexUsageStatistics) { + for _, newStats := range otherStats { + tableIndexStats := s.getStatsForTableID(newStats.Key.TableID, true /* createIfNotExists */) + stats := tableIndexStats.getStatsForIndexID(newStats.Key.IndexID, true /* createIfNotExists */) + stats.Lock() + stats.Add(&newStats.Stats) + stats.Unlock() + } +} + func (s *LocalIndexUsageStats) clear() { s.mu.Lock() defer s.mu.Unlock() @@ -356,7 +366,7 @@ func (s *LocalIndexUsageStats) startStatsIngestionLoop(ctx context.Context, stop case payload := <-s.statsChan: s.insertIndexUsage(&payload) if s.testingKnobs != nil && s.testingKnobs.OnIndexUsageStatsProcessedCallback != nil { - s.testingKnobs.OnIndexUsageStatsProcessedCallback() + s.testingKnobs.OnIndexUsageStatsProcessedCallback(payload.key) } case <-stopper.ShouldQuiesce(): return diff --git a/pkg/sql/idxusage/local_index_usage_stats_test.go b/pkg/sql/idxusage/local_index_usage_stats_test.go index 6ef274420092..36d32e104f08 100644 --- a/pkg/sql/idxusage/local_index_usage_stats_test.go +++ b/pkg/sql/idxusage/local_index_usage_stats_test.go @@ -111,7 +111,7 @@ func TestIndexUsageStatisticsSubsystem(t *testing.T) { } statsProcessedSignal := make(chan struct{}) - onStatsIngested := func() { + onStatsIngested := func(_ roachpb.IndexUsageKey) { statsProcessedSignal <- struct{}{} } waitForStatsIngested := func() { diff --git a/pkg/sql/idxusage/test_utils.go b/pkg/sql/idxusage/test_utils.go index f03f825ffa30..1da46fc34826 100644 --- a/pkg/sql/idxusage/test_utils.go +++ b/pkg/sql/idxusage/test_utils.go @@ -10,10 +10,20 @@ package idxusage +import ( + "github.com/cockroachdb/cockroach/pkg/base" + "github.com/cockroachdb/cockroach/pkg/roachpb" +) + // TestingKnobs is the testing knobs that provides callbacks that unit tests // can hook into. type TestingKnobs struct { // OnIndexUsageStatsProcessedCallback is invoked whenever a index usage event // is processed. - OnIndexUsageStatsProcessedCallback func() + OnIndexUsageStatsProcessedCallback func(key roachpb.IndexUsageKey) } + +var _ base.ModuleTestingKnobs = &TestingKnobs{} + +// ModuleTestingKnobs implements the base.ModuleTestingKnobs interface. +func (t *TestingKnobs) ModuleTestingKnobs() {} diff --git a/pkg/sql/planner.go b/pkg/sql/planner.go index 05b58370ca14..6fcb4a71724b 100644 --- a/pkg/sql/planner.go +++ b/pkg/sql/planner.go @@ -99,6 +99,8 @@ type extendedEvalContext struct { indexUsageStatsWriter idxusage.Writer + clusterIndexUsageStats *idxusage.ClusterIndexUsageStats + SchemaChangerState *SchemaChangerState }