From 82ccab606c714f5389aaa71f326b4f76020a6d83 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Fri, 6 Nov 2020 19:16:35 -0800 Subject: [PATCH 1/7] feature: flip the required bit for payment addr in invoices/payload In this commit, we move to start requiring the payment addr feature bit in the invoices we produce. With this change, if a user attempts to pay one of our invoices (assuming they're also an lnd node), then they'll receive an error when they attempt to pay. At this point, *most* lnd nodes should be on v0.11 at this point, and this change will notify any lagging wallet authors to update, as these payments are generally more secure. --- feature/default_sets.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feature/default_sets.go b/feature/default_sets.go index 33bd0b94..65e6607b 100644 --- a/feature/default_sets.go +++ b/feature/default_sets.go @@ -33,7 +33,7 @@ var defaultSetDesc = setDesc{ SetInit: {}, // I SetNodeAnn: {}, // N }, - lnwire.PaymentAddrOptional: { + lnwire.PaymentAddrRequired: { SetInit: {}, // I SetNodeAnn: {}, // N SetInvoice: {}, // 9 From baeceb2a0b34252ae5df9067f56f182361971e27 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 24 Nov 2020 19:54:35 -0800 Subject: [PATCH 2/7] lnwire: add new RequiresFeature method In this commit, we add a new RequiresFeature method to the feature vector struct. This method allows us to check if the set of features we're examining *require* that the even portion of a bit pair be set. This can be used to check if new behavior should be allowed (after we flip new bits to be required) for existing contexts. --- lnwire/features.go | 14 ++++++++++++++ lnwire/features_test.go | 30 +++++++++++++++++++++++++++++- 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/lnwire/features.go b/lnwire/features.go index 5584191b..250c041e 100644 --- a/lnwire/features.go +++ b/lnwire/features.go @@ -398,6 +398,20 @@ func (fv *FeatureVector) HasFeature(feature FeatureBit) bool { (fv.isFeatureBitPair(feature) && fv.IsSet(feature^1)) } +// RequiresFeature returns true if the referenced feature vector *requires* +// that the given required bit be set. This method can be used with both +// optional and required feature bits as a parameter. +func (fv *FeatureVector) RequiresFeature(feature FeatureBit) bool { + // If we weren't passed a required feature bit, then we'll flip the + // lowest bit to query for the required version of the feature. This + // lets callers pass in both the optional and required bits. + if !feature.IsRequired() { + feature ^= 1 + } + + return fv.IsSet(feature) +} + // UnknownRequiredFeatures returns a list of feature bits set in the vector // that are unknown and in an even bit position. Feature bits with an even // index must be known to a node receiving the feature vector in a message. diff --git a/lnwire/features_test.go b/lnwire/features_test.go index 1cff8f52..3eed2b1b 100644 --- a/lnwire/features_test.go +++ b/lnwire/features_test.go @@ -5,6 +5,8 @@ import ( "reflect" "sort" "testing" + + "github.com/stretchr/testify/require" ) var testFeatureNames = map[FeatureBit]string{ @@ -87,6 +89,7 @@ func TestFeatureVectorSetUnset(t *testing.T) { t.Errorf("Expectation failed in case %d, bit %d", i, j) break } + } for _, bit := range test.bits { @@ -95,6 +98,31 @@ func TestFeatureVectorSetUnset(t *testing.T) { } } +// TestFeatureVectorRequiresFeature tests that if a feature vector only +// includes a required feature bit (it's even), then the RequiresFeature method +// will return true for both that bit as well as it's optional counter party. +func TestFeatureVectorRequiresFeature(t *testing.T) { + t.Parallel() + + // Create a new feature vector with the features above, and set only + // the set of required bits. These will be all the even features + // referenced above. + fv := NewFeatureVector(nil, testFeatureNames) + fv.Set(0) + fv.Set(4) + + // Next we'll query for those exact bits, these should show up as being + // required. + require.True(t, fv.RequiresFeature(0)) + require.True(t, fv.RequiresFeature(4)) + + // If we query for the odd (optional) counter party to each of the + // features, the method should still return that the backing feature + // vector requires the feature to be set. + require.True(t, fv.RequiresFeature(1)) + require.True(t, fv.RequiresFeature(5)) +} + func TestFeatureVectorEncodeDecode(t *testing.T) { t.Parallel() @@ -277,7 +305,7 @@ func TestIsRequired(t *testing.T) { } // TestFeatures asserts that the Features() method on a FeatureVector properly -// returns the set of feature bits it stores internallly. +// returns the set of feature bits it stores internally. func TestFeatures(t *testing.T) { tests := []struct { name string From 530059f18bd431a895fcf5952b2b7eb652ddfea3 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Fri, 6 Nov 2020 19:20:46 -0800 Subject: [PATCH 3/7] invoices: force MPP payload inclusion for non-keysend payments In this commit, we move to start rejecting any normal payments that aren't keysend, if they don't also include the MPP invoice payload. With this change, we require that some sort of e2e secret (either the payment addr or the keysend pre-image) is present in a payload before we'll accept the payment. The second portion of the commit also updates all current tests in the package. We kept the base `TestSettleInvoice` test in-tact as it still exercises some useful behavior. However, we've removed all cases that allow an overpayment, as the new MPP logic doesn't allow overpayment for various reasons. In addition to this, some of the returned errors are slightly different, tho the actual behavior is equivalent. --- invoices/invoiceregistry_test.go | 175 +++++++++++++++++++++++++++++++ invoices/test_utils_test.go | 26 +++++ invoices/update.go | 23 +++- 3 files changed, 222 insertions(+), 2 deletions(-) diff --git a/invoices/invoiceregistry_test.go b/invoices/invoiceregistry_test.go index cb916aea..3d12ef2b 100644 --- a/invoices/invoiceregistry_test.go +++ b/invoices/invoiceregistry_test.go @@ -1190,3 +1190,178 @@ func TestOldInvoiceRemovalOnStart(t *testing.T) { // registry start. require.Equal(t, expected, response.Invoices) } + +// TestSettleInvoicePaymentAddrRequired tests that if an incoming payment has +// an invoice that requires the payment addr bit to be set, and the incoming +// payment doesn't include an mpp payload, then the payment is rejected. +func TestSettleInvoicePaymentAddrRequired(t *testing.T) { + t.Parallel() + + ctx := newTestContext(t) + defer ctx.cleanup() + + allSubscriptions, err := ctx.registry.SubscribeNotifications(0, 0) + assert.Nil(t, err) + defer allSubscriptions.Cancel() + + // Subscribe to the not yet existing invoice. + subscription, err := ctx.registry.SubscribeSingleInvoice( + testInvoicePaymentHash, + ) + require.NoError(t, err) + defer subscription.Cancel() + + require.Equal( + t, subscription.invoiceRef.PayHash(), testInvoicePaymentHash, + ) + + // Add the invoice, which requires the MPP payload to always be + // included due to its set of feature bits. + addIdx, err := ctx.registry.AddInvoice( + testPayAddrReqInvoice, testInvoicePaymentHash, + ) + require.NoError(t, err) + require.Equal(t, int(addIdx), 1) + + // We expect the open state to be sent to the single invoice subscriber. + select { + case update := <-subscription.Updates: + if update.State != channeldb.ContractOpen { + t.Fatalf("expected state ContractOpen, but got %v", + update.State) + } + case <-time.After(testTimeout): + t.Fatal("no update received") + } + + // We expect a new invoice notification to be sent out. + select { + case newInvoice := <-allSubscriptions.NewInvoices: + if newInvoice.State != channeldb.ContractOpen { + t.Fatalf("expected state ContractOpen, but got %v", + newInvoice.State) + } + case <-time.After(testTimeout): + t.Fatal("no update received") + } + + hodlChan := make(chan interface{}, 1) + + // Now try to settle the invoice, the testPayload doesn't have any mpp + // information, so it should be forced to the updateLegacy path then + // fail as a required feature bit exists. + resolution, err := ctx.registry.NotifyExitHopHtlc( + testInvoicePaymentHash, testInvoice.Terms.Value, + uint32(testCurrentHeight)+testInvoiceCltvDelta-1, + testCurrentHeight, getCircuitKey(10), hodlChan, testPayload, + ) + require.NoError(t, err) + + failResolution, ok := resolution.(*HtlcFailResolution) + if !ok { + t.Fatalf("expected fail resolution, got: %T", + resolution) + } + require.Equal(t, failResolution.AcceptHeight, testCurrentHeight) + require.Equal(t, failResolution.Outcome, ResultAddressMismatch) +} + +// TestSettleInvoicePaymentAddrRequiredOptionalGrace tests that if an invoice +// in the database has an optional payment addr required bit set, then we'll +// still allow it to be paid by an incoming HTLC that doesn't include the MPP +// payload. This ensures we don't break payment for any invoices in the wild. +func TestSettleInvoicePaymentAddrRequiredOptionalGrace(t *testing.T) { + t.Parallel() + + ctx := newTestContext(t) + defer ctx.cleanup() + + allSubscriptions, err := ctx.registry.SubscribeNotifications(0, 0) + assert.Nil(t, err) + defer allSubscriptions.Cancel() + + // Subscribe to the not yet existing invoice. + subscription, err := ctx.registry.SubscribeSingleInvoice( + testInvoicePaymentHash, + ) + require.NoError(t, err) + defer subscription.Cancel() + + require.Equal( + t, subscription.invoiceRef.PayHash(), testInvoicePaymentHash, + ) + + // Add the invoice, which requires the MPP payload to always be + // included due to its set of feature bits. + addIdx, err := ctx.registry.AddInvoice( + testPayAddrOptionalInvoice, testInvoicePaymentHash, + ) + require.NoError(t, err) + require.Equal(t, int(addIdx), 1) + + // We expect the open state to be sent to the single invoice + // subscriber. + select { + case update := <-subscription.Updates: + if update.State != channeldb.ContractOpen { + t.Fatalf("expected state ContractOpen, but got %v", + update.State) + } + case <-time.After(testTimeout): + t.Fatal("no update received") + } + + // We expect a new invoice notification to be sent out. + select { + case newInvoice := <-allSubscriptions.NewInvoices: + if newInvoice.State != channeldb.ContractOpen { + t.Fatalf("expected state ContractOpen, but got %v", + newInvoice.State) + } + case <-time.After(testTimeout): + t.Fatal("no update received") + } + + // We'll now attempt to settle the invoice as normal, this should work + // no problem as we should allow these existing invoices to be settled. + hodlChan := make(chan interface{}, 1) + resolution, err := ctx.registry.NotifyExitHopHtlc( + testInvoicePaymentHash, testInvoiceAmt, + testHtlcExpiry, testCurrentHeight, + getCircuitKey(10), hodlChan, testPayload, + ) + require.NoError(t, err) + + settleResolution, ok := resolution.(*HtlcSettleResolution) + if !ok { + t.Fatalf("expected settle resolution, got: %T", + resolution) + } + require.Equal(t, settleResolution.Outcome, ResultSettled) + + // We expect the settled state to be sent to the single invoice + // subscriber. + select { + case update := <-subscription.Updates: + if update.State != channeldb.ContractSettled { + t.Fatalf("expected state ContractOpen, but got %v", + update.State) + } + if update.AmtPaid != testInvoice.Terms.Value { + t.Fatal("invoice AmtPaid incorrect") + } + case <-time.After(testTimeout): + t.Fatal("no update received") + } + + // We expect a settled notification to be sent out. + select { + case settledInvoice := <-allSubscriptions.SettledInvoices: + if settledInvoice.State != channeldb.ContractSettled { + t.Fatalf("expected state ContractOpen, but got %v", + settledInvoice.State) + } + case <-time.After(testTimeout): + t.Fatal("no update received") + } +} diff --git a/invoices/test_utils_test.go b/invoices/test_utils_test.go index d7846aec..63cf8d98 100644 --- a/invoices/test_utils_test.go +++ b/invoices/test_utils_test.go @@ -100,6 +100,32 @@ var ( CreationDate: testInvoiceCreationDate, } + testPayAddrReqInvoice = &channeldb.Invoice{ + Terms: channeldb.ContractTerm{ + PaymentPreimage: &testInvoicePreimage, + Value: testInvoiceAmt, + Expiry: time.Hour, + Features: lnwire.NewFeatureVector( + lnwire.NewRawFeatureVector(lnwire.PaymentAddrRequired), + lnwire.Features, + ), + }, + CreationDate: testInvoiceCreationDate, + } + + testPayAddrOptionalInvoice = &channeldb.Invoice{ + Terms: channeldb.ContractTerm{ + PaymentPreimage: &testInvoicePreimage, + Value: testInvoiceAmt, + Expiry: time.Hour, + Features: lnwire.NewFeatureVector( + lnwire.NewRawFeatureVector(lnwire.PaymentAddrOptional), + lnwire.Features, + ), + }, + CreationDate: testInvoiceCreationDate, + } + testHodlInvoice = &channeldb.Invoice{ Terms: channeldb.ContractTerm{ Value: testInvoiceAmt, diff --git a/invoices/update.go b/invoices/update.go index ff420b85..8e2fd194 100644 --- a/invoices/update.go +++ b/invoices/update.go @@ -90,6 +90,9 @@ func updateInvoice(ctx *invoiceUpdateCtx, inv *channeldb.Invoice) ( } } + // If no MPP payload was provided, then we expect this to be a keysend, + // or a payment to an invoice created before we started to require the + // MPP payload. if ctx.mpp == nil { return updateLegacy(ctx, inv) } @@ -206,6 +209,10 @@ func updateMpp(ctx *invoiceUpdateCtx, // updateLegacy is a callback for DB.UpdateInvoice that contains the invoice // settlement logic for legacy payments. +// +// NOTE: This function is only kept in place in order to be able to handle key +// send payments and any invoices we created in the past that are valid and +// still had the optional mpp bit set. func updateLegacy(ctx *invoiceUpdateCtx, inv *channeldb.Invoice) (*channeldb.InvoiceUpdateDesc, HtlcResolution, error) { @@ -223,8 +230,20 @@ func updateLegacy(ctx *invoiceUpdateCtx, return nil, ctx.failRes(ResultAmountTooLow), nil } - // TODO(joostjager): Check invoice mpp required feature - // bit when feature becomes mandatory. + // If the invoice had the required feature bit set at this point, then + // if we're in this method it means that the remote party didn't supply + // the expected payload. However if this is a keysend payment, then + // we'll permit it to pass. + _, isKeySend := ctx.customRecords[record.KeySendType] + invoiceFeatures := inv.Terms.Features + paymentAddrRequired := invoiceFeatures.RequiresFeature( + lnwire.PaymentAddrRequired, + ) + if !isKeySend && paymentAddrRequired { + log.Warnf("Payment to pay_hash=%v doesn't include MPP "+ + "payload, rejecting", ctx.hash) + return nil, ctx.failRes(ResultAddressMismatch), nil + } // Don't allow settling the invoice with an old style // htlc if we are already in the process of gathering an From d996607470e35d775a0bab337dc5635eeabd58bd Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Mon, 23 Nov 2020 20:17:16 -0800 Subject: [PATCH 4/7] routing+lnrpc: extend BuildRoute to accept raw payAddr In this commit, we extend the `BuildRoute` method and RPC on the router sub-server to accept a raw payment address which will be included as part of an MPP payload for the finla hop. This change actually also allows users to craft their own MPP paths using BuildRoute+SendToRoute. Our primary goal however, was to fix some broken itests since we now require the payAddr to be present for ALL payments other than key send payments. --- lnrpc/routerrpc/router.pb.go | 338 ++++++++++--------- lnrpc/routerrpc/router.proto | 3 + lnrpc/routerrpc/router.swagger.json | 5 + lnrpc/routerrpc/router_server.go | 10 +- lntest/itest/lnd_forward_interceptor_test.go | 43 ++- routing/router.go | 11 +- routing/router_test.go | 63 ++-- 7 files changed, 272 insertions(+), 201 deletions(-) diff --git a/lnrpc/routerrpc/router.pb.go b/lnrpc/routerrpc/router.pb.go index a19ce554..aa473918 100644 --- a/lnrpc/routerrpc/router.pb.go +++ b/lnrpc/routerrpc/router.pb.go @@ -1143,7 +1143,9 @@ type BuildRouteRequest struct { // //A list of hops that defines the route. This does not include the source hop //pubkey. - HopPubkeys [][]byte `protobuf:"bytes,4,rep,name=hop_pubkeys,json=hopPubkeys,proto3" json:"hop_pubkeys,omitempty"` + HopPubkeys [][]byte `protobuf:"bytes,4,rep,name=hop_pubkeys,json=hopPubkeys,proto3" json:"hop_pubkeys,omitempty"` + // An optional payment addr to be included within the last hop of the route. + PaymentAddr []byte `protobuf:"bytes,5,opt,name=payment_addr,json=paymentAddr,proto3" json:"payment_addr,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1202,6 +1204,13 @@ func (m *BuildRouteRequest) GetHopPubkeys() [][]byte { return nil } +func (m *BuildRouteRequest) GetPaymentAddr() []byte { + if m != nil { + return m.PaymentAddr + } + return nil +} + type BuildRouteResponse struct { // //Fully specified route that can be used to execute the payment. @@ -2028,170 +2037,171 @@ func init() { func init() { proto.RegisterFile("routerrpc/router.proto", fileDescriptor_7a0613f69d37b0a5) } var fileDescriptor_7a0613f69d37b0a5 = []byte{ - // 2601 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x59, 0x4d, 0x73, 0xdb, 0xc6, - 0xf9, 0x0f, 0x48, 0x88, 0x22, 0x1f, 0xbe, 0x08, 0x5a, 0x29, 0x16, 0xff, 0x94, 0x9d, 0x30, 0x4c, - 0x62, 0x73, 0xfc, 0x4f, 0x64, 0x45, 0xed, 0xb4, 0x69, 0xf3, 0xd2, 0x50, 0x24, 0x64, 0xc1, 0xa6, - 0x48, 0x66, 0x49, 0x39, 0x49, 0x73, 0xd8, 0x42, 0xe4, 0x52, 0x44, 0x05, 0x02, 0x2c, 0xb0, 0xb4, - 0xa3, 0x63, 0x6f, 0x9d, 0x7e, 0x91, 0xde, 0xfa, 0x09, 0x3a, 0xd3, 0x1e, 0xfa, 0x3d, 0x7a, 0xed, - 0xbd, 0x33, 0x3d, 0x77, 0xf6, 0x05, 0x20, 0x20, 0x51, 0x76, 0x3b, 0xed, 0xc5, 0x26, 0x7e, 0xcf, - 0x6f, 0x9f, 0x7d, 0x76, 0x9f, 0xb7, 0xdd, 0x15, 0xdc, 0x0b, 0xfc, 0x25, 0xa3, 0x41, 0xb0, 0x18, - 0x3f, 0x91, 0xbf, 0x0e, 0x16, 0x81, 0xcf, 0x7c, 0x54, 0x88, 0xf1, 0x5a, 0x21, 0x58, 0x8c, 0x25, - 0xda, 0xf8, 0x47, 0x0e, 0xd0, 0x90, 0x7a, 0x93, 0x81, 0x7d, 0x3d, 0xa7, 0x1e, 0xc3, 0xf4, 0x37, - 0x4b, 0x1a, 0x32, 0x84, 0x40, 0x9f, 0xd0, 0x90, 0x55, 0xb5, 0xba, 0xd6, 0x2c, 0x61, 0xf1, 0x1b, - 0x19, 0x90, 0xb5, 0xe7, 0xac, 0x9a, 0xa9, 0x6b, 0xcd, 0x2c, 0xe6, 0x3f, 0xd1, 0xff, 0x41, 0xde, - 0x9e, 0x33, 0x32, 0x0f, 0x6d, 0x56, 0x2d, 0x09, 0x78, 0xd3, 0x9e, 0xb3, 0xb3, 0xd0, 0x66, 0xe8, - 0x3d, 0x28, 0x2d, 0xa4, 0x4a, 0x32, 0xb3, 0xc3, 0x59, 0x35, 0x2b, 0x14, 0x15, 0x15, 0x76, 0x6a, - 0x87, 0x33, 0xd4, 0x04, 0x63, 0xea, 0x78, 0xb6, 0x4b, 0xc6, 0x2e, 0x7b, 0x49, 0x26, 0xd4, 0x65, - 0x76, 0x55, 0xaf, 0x6b, 0xcd, 0x0d, 0x5c, 0x11, 0x78, 0xdb, 0x65, 0x2f, 0x3b, 0x1c, 0x45, 0x8f, - 0x60, 0x2b, 0x52, 0x16, 0x48, 0x03, 0xab, 0x1b, 0x75, 0xad, 0x59, 0xc0, 0x95, 0x45, 0xda, 0xec, - 0x47, 0xb0, 0xc5, 0x9c, 0x39, 0xf5, 0x97, 0x8c, 0x84, 0x74, 0xec, 0x7b, 0x93, 0xb0, 0x9a, 0x93, - 0x1a, 0x15, 0x3c, 0x94, 0x28, 0x6a, 0x40, 0x79, 0x4a, 0x29, 0x71, 0x9d, 0xb9, 0xc3, 0x08, 0x37, - 0x7f, 0x53, 0x98, 0x5f, 0x9c, 0x52, 0xda, 0xe5, 0xd8, 0xd0, 0x66, 0xe8, 0x03, 0xa8, 0xac, 0x38, - 0x62, 0x8d, 0x65, 0x41, 0x2a, 0x45, 0x24, 0xb1, 0xd0, 0x03, 0x30, 0xfc, 0x25, 0xbb, 0xf4, 0x1d, - 0xef, 0x92, 0x8c, 0x67, 0xb6, 0x47, 0x9c, 0x49, 0x35, 0x5f, 0xd7, 0x9a, 0xfa, 0xb1, 0x5e, 0xd5, - 0x0e, 0x35, 0x5c, 0x89, 0xa4, 0xed, 0x99, 0xed, 0x59, 0x13, 0xf4, 0x18, 0xb6, 0x6f, 0xf2, 0xc3, - 0xea, 0x4e, 0x3d, 0xdb, 0xd4, 0xf1, 0x56, 0x9a, 0x1a, 0xa2, 0x87, 0xb0, 0xe5, 0xda, 0x21, 0x23, - 0x33, 0x7f, 0x41, 0x16, 0xcb, 0x8b, 0x2b, 0x7a, 0x5d, 0xad, 0x88, 0x7d, 0x2c, 0x73, 0xf8, 0xd4, - 0x5f, 0x0c, 0x04, 0x88, 0x1e, 0x00, 0x88, 0x3d, 0x14, 0xa6, 0x56, 0x0b, 0x62, 0xc5, 0x05, 0x8e, - 0x08, 0x33, 0xd1, 0x27, 0x50, 0x14, 0xbe, 0x27, 0x33, 0xc7, 0x63, 0x61, 0x15, 0xea, 0xd9, 0x66, - 0xf1, 0xc8, 0x38, 0x70, 0x3d, 0x1e, 0x06, 0x98, 0x4b, 0x4e, 0x1d, 0x8f, 0x61, 0x08, 0xa2, 0x9f, - 0x21, 0x9a, 0xc0, 0x0e, 0xf7, 0x39, 0x19, 0x2f, 0x43, 0xe6, 0xcf, 0x49, 0x40, 0xc7, 0x7e, 0x30, - 0x09, 0xab, 0x45, 0x31, 0xf4, 0xc7, 0x07, 0x71, 0x28, 0x1d, 0xdc, 0x8e, 0x9d, 0x83, 0x0e, 0x0d, - 0x59, 0x5b, 0x8c, 0xc3, 0x72, 0x98, 0xe9, 0xb1, 0xe0, 0x1a, 0x6f, 0x4f, 0x6e, 0xe2, 0xe8, 0x23, - 0x40, 0xb6, 0xeb, 0xfa, 0xaf, 0x48, 0x48, 0xdd, 0x29, 0x51, 0xbe, 0xac, 0x6e, 0xd5, 0xb5, 0x66, - 0x1e, 0x1b, 0x42, 0x32, 0xa4, 0xee, 0x54, 0xa9, 0x47, 0x3f, 0x81, 0xb2, 0xb0, 0x69, 0x4a, 0x6d, - 0xb6, 0x0c, 0x68, 0x58, 0x35, 0xea, 0xd9, 0x66, 0xe5, 0x68, 0x5b, 0x2d, 0xe4, 0x44, 0xc2, 0xc7, - 0x0e, 0xc3, 0x25, 0xce, 0x53, 0xdf, 0x21, 0xda, 0x87, 0xc2, 0xdc, 0xfe, 0x81, 0x2c, 0xec, 0x80, - 0x85, 0xd5, 0xed, 0xba, 0xd6, 0x2c, 0xe3, 0xfc, 0xdc, 0xfe, 0x61, 0xc0, 0xbf, 0xd1, 0x01, 0xec, - 0x78, 0x3e, 0x71, 0xbc, 0xa9, 0xeb, 0x5c, 0xce, 0x18, 0x59, 0x2e, 0x26, 0x36, 0xa3, 0x61, 0x15, - 0x09, 0x1b, 0xb6, 0x3d, 0xdf, 0x52, 0x92, 0x73, 0x29, 0xa8, 0x75, 0xe0, 0xde, 0xfa, 0xf5, 0xf1, - 0xf4, 0xe0, 0x0e, 0xe2, 0x19, 0xa3, 0x63, 0xfe, 0x13, 0xed, 0xc2, 0xc6, 0x4b, 0xdb, 0x5d, 0x52, - 0x91, 0x32, 0x25, 0x2c, 0x3f, 0x7e, 0x9e, 0xf9, 0x54, 0x6b, 0xcc, 0x60, 0x67, 0x14, 0xd8, 0xe3, - 0xab, 0x1b, 0x59, 0x77, 0x33, 0x69, 0xb4, 0xdb, 0x49, 0x73, 0x87, 0xbd, 0x99, 0x3b, 0xec, 0x6d, - 0x7c, 0x09, 0x5b, 0xc2, 0xc3, 0x27, 0x94, 0xbe, 0x2e, 0xb7, 0xf7, 0x80, 0x67, 0xae, 0xc8, 0x04, - 0x99, 0xdf, 0x39, 0x7b, 0xce, 0x93, 0xa0, 0x31, 0x01, 0x63, 0x35, 0x3e, 0x5c, 0xf8, 0x5e, 0x48, - 0x79, 0xe2, 0xf2, 0x00, 0xe0, 0x11, 0xcc, 0x13, 0x44, 0xa4, 0x86, 0x26, 0x46, 0x55, 0x14, 0x7e, - 0x42, 0xa9, 0x48, 0x8e, 0x87, 0x32, 0x1f, 0x89, 0xeb, 0x8f, 0xaf, 0x78, 0x86, 0xdb, 0xd7, 0x4a, - 0x7d, 0x99, 0xc3, 0x5d, 0x7f, 0x7c, 0xd5, 0xe1, 0x60, 0xe3, 0x7b, 0x59, 0x84, 0x46, 0xbe, 0x98, - 0xeb, 0x3f, 0xd8, 0x8e, 0x06, 0x6c, 0x88, 0x58, 0x14, 0x6a, 0x8b, 0x47, 0xa5, 0x64, 0x50, 0x63, - 0x29, 0x6a, 0x7c, 0x0f, 0x3b, 0x29, 0xe5, 0x6a, 0x15, 0x35, 0xc8, 0x2f, 0x02, 0xea, 0xcc, 0xed, - 0x4b, 0xaa, 0x34, 0xc7, 0xdf, 0xa8, 0x09, 0x9b, 0x53, 0xdb, 0x71, 0x97, 0x41, 0xa4, 0xb8, 0x12, - 0x05, 0x99, 0x44, 0x71, 0x24, 0x6e, 0xdc, 0x87, 0x1a, 0xa6, 0x21, 0x65, 0x67, 0x4e, 0x18, 0x3a, - 0xbe, 0xd7, 0xf6, 0x3d, 0x16, 0xf8, 0xae, 0x5a, 0x41, 0xe3, 0x01, 0xec, 0xaf, 0x95, 0x4a, 0x13, - 0xf8, 0xe0, 0xaf, 0x97, 0x34, 0xb8, 0x5e, 0x3f, 0xf8, 0x6b, 0xd8, 0x5f, 0x2b, 0x55, 0xf6, 0x7f, - 0x04, 0x1b, 0x0b, 0xdb, 0x09, 0xb8, 0xef, 0x79, 0x52, 0xde, 0x4b, 0x24, 0xe5, 0xc0, 0x76, 0x82, - 0x53, 0x27, 0x64, 0x7e, 0x70, 0x8d, 0x25, 0xe9, 0x99, 0x9e, 0xd7, 0x8c, 0x4c, 0xe3, 0xf7, 0x1a, - 0x14, 0x13, 0x42, 0x9e, 0x1a, 0x9e, 0x3f, 0xa1, 0x64, 0x1a, 0xf8, 0xf3, 0x68, 0x13, 0x38, 0x70, - 0x12, 0xf8, 0x73, 0x1e, 0x13, 0x42, 0xc8, 0x7c, 0x15, 0xc0, 0x39, 0xfe, 0x39, 0xf2, 0xd1, 0xc7, - 0xb0, 0x39, 0x93, 0x0a, 0x44, 0xd9, 0x2c, 0x1e, 0xed, 0xdc, 0x98, 0xbb, 0x63, 0x33, 0x1b, 0x47, - 0x9c, 0x67, 0x7a, 0x3e, 0x6b, 0xe8, 0xcf, 0xf4, 0xbc, 0x6e, 0x6c, 0x3c, 0xd3, 0xf3, 0x1b, 0x46, - 0xee, 0x99, 0x9e, 0xcf, 0x19, 0x9b, 0x8d, 0xbf, 0x6b, 0x90, 0x8f, 0xd8, 0xdc, 0x12, 0xbe, 0xa5, - 0x84, 0xc7, 0x85, 0x0a, 0xa6, 0x3c, 0x07, 0x46, 0xce, 0x9c, 0xa2, 0x3a, 0x94, 0x84, 0x30, 0x1d, - 0xa2, 0xc0, 0xb1, 0x96, 0x08, 0x53, 0x51, 0xcf, 0x23, 0x86, 0x88, 0x47, 0x5d, 0xd5, 0x73, 0x49, - 0x89, 0x5a, 0x52, 0xb8, 0x1c, 0x8f, 0x69, 0x18, 0xca, 0x59, 0x36, 0x24, 0x45, 0x61, 0x62, 0xa2, - 0x87, 0xb0, 0x15, 0x51, 0xa2, 0xb9, 0x72, 0x32, 0x5e, 0x15, 0xac, 0xa6, 0x6b, 0x82, 0x91, 0xe4, - 0xcd, 0x57, 0x1d, 0xa4, 0xb2, 0x22, 0xf2, 0x49, 0xe5, 0xe2, 0x1b, 0xbf, 0x86, 0x3d, 0xe1, 0xca, - 0x41, 0xe0, 0x5f, 0xd8, 0x17, 0x8e, 0xeb, 0xb0, 0xeb, 0x28, 0xc8, 0xf9, 0xc2, 0x03, 0x7f, 0x4e, - 0xf8, 0xde, 0x46, 0x2e, 0xe0, 0x40, 0xcf, 0x9f, 0x50, 0xee, 0x02, 0xe6, 0x4b, 0x91, 0x72, 0x01, - 0xf3, 0x85, 0x20, 0xd9, 0x79, 0xb3, 0xa9, 0xce, 0xdb, 0xb8, 0x82, 0xea, 0xed, 0xb9, 0x54, 0xcc, - 0xd4, 0xa1, 0xb8, 0x58, 0xc1, 0x62, 0x3a, 0x0d, 0x27, 0xa1, 0xa4, 0x6f, 0x33, 0x6f, 0xf6, 0x6d, - 0xe3, 0x0f, 0x1a, 0x6c, 0x1f, 0x2f, 0x1d, 0x77, 0x92, 0x4a, 0xdc, 0xa4, 0x75, 0x5a, 0xfa, 0x5c, + // 2615 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x59, 0x4b, 0x77, 0xdb, 0xc6, + 0xf5, 0x0f, 0x48, 0x8a, 0x22, 0x2f, 0x1f, 0x82, 0x46, 0x8a, 0xc5, 0x3f, 0x65, 0x27, 0x0c, 0x93, + 0xd8, 0x3c, 0xfe, 0x27, 0xb2, 0xa2, 0xf6, 0xb4, 0x69, 0xf3, 0x68, 0x28, 0x12, 0xb2, 0x60, 0x53, + 0x24, 0x33, 0xa4, 0x9c, 0xa4, 0x59, 0x4c, 0x21, 0x62, 0x28, 0xa2, 0x02, 0x01, 0x16, 0x18, 0xda, + 0xd1, 0xb2, 0xbb, 0x9e, 0x7e, 0x98, 0x7e, 0x82, 0x9e, 0xd3, 0x2e, 0xba, 0xea, 0x97, 0xe8, 0xb6, + 0xfb, 0x9e, 0xd3, 0x75, 0xcf, 0x3c, 0x00, 0x02, 0x12, 0x65, 0xb7, 0xa7, 0xdd, 0xd8, 0xc4, 0xef, + 0xde, 0xb9, 0x73, 0xef, 0xdc, 0xe7, 0x8c, 0xe0, 0x5e, 0xe0, 0x2f, 0x19, 0x0d, 0x82, 0xc5, 0xe4, + 0x89, 0xfc, 0x75, 0xb0, 0x08, 0x7c, 0xe6, 0xa3, 0x62, 0x8c, 0xd7, 0x8b, 0xc1, 0x62, 0x22, 0xd1, + 0xe6, 0x3f, 0xf2, 0x80, 0x46, 0xd4, 0xb3, 0x87, 0xd6, 0xf5, 0x9c, 0x7a, 0x0c, 0xd3, 0xdf, 0x2c, + 0x69, 0xc8, 0x10, 0x82, 0x9c, 0x4d, 0x43, 0x56, 0xd3, 0x1a, 0x5a, 0xab, 0x8c, 0xc5, 0x6f, 0xa4, + 0x43, 0xd6, 0x9a, 0xb3, 0x5a, 0xa6, 0xa1, 0xb5, 0xb2, 0x98, 0xff, 0x44, 0xff, 0x07, 0x05, 0x6b, + 0xce, 0xc8, 0x3c, 0xb4, 0x58, 0xad, 0x2c, 0xe0, 0x4d, 0x6b, 0xce, 0xce, 0x42, 0x8b, 0xa1, 0xf7, + 0xa0, 0xbc, 0x90, 0x22, 0xc9, 0xcc, 0x0a, 0x67, 0xb5, 0xac, 0x10, 0x54, 0x52, 0xd8, 0xa9, 0x15, + 0xce, 0x50, 0x0b, 0xf4, 0xa9, 0xe3, 0x59, 0x2e, 0x99, 0xb8, 0xec, 0x25, 0xb1, 0xa9, 0xcb, 0xac, + 0x5a, 0xae, 0xa1, 0xb5, 0x36, 0x70, 0x55, 0xe0, 0x1d, 0x97, 0xbd, 0xec, 0x72, 0x14, 0x3d, 0x82, + 0xad, 0x48, 0x58, 0x20, 0x15, 0xac, 0x6d, 0x34, 0xb4, 0x56, 0x11, 0x57, 0x17, 0x69, 0xb5, 0x1f, + 0xc1, 0x16, 0x73, 0xe6, 0xd4, 0x5f, 0x32, 0x12, 0xd2, 0x89, 0xef, 0xd9, 0x61, 0x2d, 0x2f, 0x25, + 0x2a, 0x78, 0x24, 0x51, 0xd4, 0x84, 0xca, 0x94, 0x52, 0xe2, 0x3a, 0x73, 0x87, 0x11, 0xae, 0xfe, + 0xa6, 0x50, 0xbf, 0x34, 0xa5, 0xb4, 0xc7, 0xb1, 0x91, 0xc5, 0xd0, 0x07, 0x50, 0x5d, 0xf1, 0x08, + 0x1b, 0x2b, 0x82, 0xa9, 0x1c, 0x31, 0x09, 0x43, 0x0f, 0x40, 0xf7, 0x97, 0xec, 0xd2, 0x77, 0xbc, + 0x4b, 0x32, 0x99, 0x59, 0x1e, 0x71, 0xec, 0x5a, 0xa1, 0xa1, 0xb5, 0x72, 0xc7, 0xb9, 0x9a, 0x76, + 0xa8, 0xe1, 0x6a, 0x44, 0xed, 0xcc, 0x2c, 0xcf, 0xb4, 0xd1, 0x63, 0xd8, 0xbe, 0xc9, 0x1f, 0xd6, + 0x76, 0x1a, 0xd9, 0x56, 0x0e, 0x6f, 0xa5, 0x59, 0x43, 0xf4, 0x10, 0xb6, 0x5c, 0x2b, 0x64, 0x64, + 0xe6, 0x2f, 0xc8, 0x62, 0x79, 0x71, 0x45, 0xaf, 0x6b, 0x55, 0x71, 0x8e, 0x15, 0x0e, 0x9f, 0xfa, + 0x8b, 0xa1, 0x00, 0xd1, 0x03, 0x00, 0x71, 0x86, 0x42, 0xd5, 0x5a, 0x51, 0x58, 0x5c, 0xe4, 0x88, + 0x50, 0x13, 0x7d, 0x02, 0x25, 0xe1, 0x7b, 0x32, 0x73, 0x3c, 0x16, 0xd6, 0xa0, 0x91, 0x6d, 0x95, + 0x8e, 0xf4, 0x03, 0xd7, 0xe3, 0x61, 0x80, 0x39, 0xe5, 0xd4, 0xf1, 0x18, 0x86, 0x20, 0xfa, 0x19, + 0x22, 0x1b, 0x76, 0xb8, 0xcf, 0xc9, 0x64, 0x19, 0x32, 0x7f, 0x4e, 0x02, 0x3a, 0xf1, 0x03, 0x3b, + 0xac, 0x95, 0xc4, 0xd2, 0x1f, 0x1f, 0xc4, 0xa1, 0x74, 0x70, 0x3b, 0x76, 0x0e, 0xba, 0x34, 0x64, + 0x1d, 0xb1, 0x0e, 0xcb, 0x65, 0x86, 0xc7, 0x82, 0x6b, 0xbc, 0x6d, 0xdf, 0xc4, 0xd1, 0x47, 0x80, + 0x2c, 0xd7, 0xf5, 0x5f, 0x91, 0x90, 0xba, 0x53, 0xa2, 0x7c, 0x59, 0xdb, 0x6a, 0x68, 0xad, 0x02, + 0xd6, 0x05, 0x65, 0x44, 0xdd, 0xa9, 0x12, 0x8f, 0x7e, 0x02, 0x15, 0xa1, 0xd3, 0x94, 0x5a, 0x6c, + 0x19, 0xd0, 0xb0, 0xa6, 0x37, 0xb2, 0xad, 0xea, 0xd1, 0xb6, 0x32, 0xe4, 0x44, 0xc2, 0xc7, 0x0e, + 0xc3, 0x65, 0xce, 0xa7, 0xbe, 0x43, 0xb4, 0x0f, 0xc5, 0xb9, 0xf5, 0x03, 0x59, 0x58, 0x01, 0x0b, + 0x6b, 0xdb, 0x0d, 0xad, 0x55, 0xc1, 0x85, 0xb9, 0xf5, 0xc3, 0x90, 0x7f, 0xa3, 0x03, 0xd8, 0xf1, + 0x7c, 0xe2, 0x78, 0x53, 0xd7, 0xb9, 0x9c, 0x31, 0xb2, 0x5c, 0xd8, 0x16, 0xa3, 0x61, 0x0d, 0x09, + 0x1d, 0xb6, 0x3d, 0xdf, 0x54, 0x94, 0x73, 0x49, 0xa8, 0x77, 0xe1, 0xde, 0x7a, 0xfb, 0x78, 0x7a, + 0x70, 0x07, 0xf1, 0x8c, 0xc9, 0x61, 0xfe, 0x13, 0xed, 0xc2, 0xc6, 0x4b, 0xcb, 0x5d, 0x52, 0x91, + 0x32, 0x65, 0x2c, 0x3f, 0x7e, 0x9e, 0xf9, 0x54, 0x6b, 0xce, 0x60, 0x67, 0x1c, 0x58, 0x93, 0xab, + 0x1b, 0x59, 0x77, 0x33, 0x69, 0xb4, 0xdb, 0x49, 0x73, 0x87, 0xbe, 0x99, 0x3b, 0xf4, 0x6d, 0x7e, + 0x09, 0x5b, 0xc2, 0xc3, 0x27, 0x94, 0xbe, 0x2e, 0xb7, 0xf7, 0x80, 0x67, 0xae, 0xc8, 0x04, 0x99, + 0xdf, 0x79, 0x6b, 0xce, 0x93, 0xa0, 0x69, 0x83, 0xbe, 0x5a, 0x1f, 0x2e, 0x7c, 0x2f, 0xa4, 0x3c, + 0x71, 0x79, 0x00, 0xf0, 0x08, 0xe6, 0x09, 0x22, 0x52, 0x43, 0x13, 0xab, 0xaa, 0x0a, 0x3f, 0xa1, + 0x54, 0x24, 0xc7, 0x43, 0x99, 0x8f, 0xc4, 0xf5, 0x27, 0x57, 0x3c, 0xc3, 0xad, 0x6b, 0x25, 0xbe, + 0xc2, 0xe1, 0x9e, 0x3f, 0xb9, 0xea, 0x72, 0xb0, 0xf9, 0xbd, 0x2c, 0x42, 0x63, 0x5f, 0xec, 0xf5, + 0x1f, 0x1c, 0x47, 0x13, 0x36, 0x44, 0x2c, 0x0a, 0xb1, 0xa5, 0xa3, 0x72, 0x32, 0xa8, 0xb1, 0x24, + 0x35, 0xbf, 0x87, 0x9d, 0x94, 0x70, 0x65, 0x45, 0x1d, 0x0a, 0x8b, 0x80, 0x3a, 0x73, 0xeb, 0x92, + 0x2a, 0xc9, 0xf1, 0x37, 0x6a, 0xc1, 0xe6, 0xd4, 0x72, 0xdc, 0x65, 0x10, 0x09, 0xae, 0x46, 0x41, + 0x26, 0x51, 0x1c, 0x91, 0x9b, 0xf7, 0xa1, 0x8e, 0x69, 0x48, 0xd9, 0x99, 0x13, 0x86, 0x8e, 0xef, + 0x75, 0x7c, 0x8f, 0x05, 0xbe, 0xab, 0x2c, 0x68, 0x3e, 0x80, 0xfd, 0xb5, 0x54, 0xa9, 0x02, 0x5f, + 0xfc, 0xf5, 0x92, 0x06, 0xd7, 0xeb, 0x17, 0x7f, 0x0d, 0xfb, 0x6b, 0xa9, 0x4a, 0xff, 0x8f, 0x60, + 0x63, 0x61, 0x39, 0x01, 0xf7, 0x3d, 0x4f, 0xca, 0x7b, 0x89, 0xa4, 0x1c, 0x5a, 0x4e, 0x70, 0xea, + 0x84, 0xcc, 0x0f, 0xae, 0xb1, 0x64, 0x7a, 0x96, 0x2b, 0x68, 0x7a, 0xa6, 0xf9, 0x7b, 0x0d, 0x4a, + 0x09, 0x22, 0x4f, 0x0d, 0xcf, 0xb7, 0x29, 0x99, 0x06, 0xfe, 0x3c, 0x3a, 0x04, 0x0e, 0x9c, 0x04, + 0xfe, 0x9c, 0xc7, 0x84, 0x20, 0x32, 0x5f, 0x05, 0x70, 0x9e, 0x7f, 0x8e, 0x7d, 0xf4, 0x31, 0x6c, + 0xce, 0xa4, 0x00, 0x51, 0x36, 0x4b, 0x47, 0x3b, 0x37, 0xf6, 0xee, 0x5a, 0xcc, 0xc2, 0x11, 0xcf, + 0xb3, 0x5c, 0x21, 0xab, 0xe7, 0x9e, 0xe5, 0x0a, 0x39, 0x7d, 0xe3, 0x59, 0xae, 0xb0, 0xa1, 0xe7, + 0x9f, 0xe5, 0x0a, 0x79, 0x7d, 0xb3, 0xf9, 0x77, 0x0d, 0x0a, 0x11, 0x37, 0xd7, 0x84, 0x1f, 0x29, + 0xe1, 0x71, 0xa1, 0x82, 0xa9, 0xc0, 0x81, 0xb1, 0x33, 0xa7, 0xa8, 0x01, 0x65, 0x41, 0x4c, 0x87, + 0x28, 0x70, 0xac, 0x2d, 0xc2, 0x54, 0xd4, 0xf3, 0x88, 0x43, 0xc4, 0x63, 0x4e, 0xd5, 0x73, 0xc9, + 0x12, 0xb5, 0xa4, 0x70, 0x39, 0x99, 0xd0, 0x30, 0x94, 0xbb, 0x6c, 0x48, 0x16, 0x85, 0x89, 0x8d, + 0x1e, 0xc2, 0x56, 0xc4, 0x12, 0xed, 0x95, 0x97, 0xf1, 0xaa, 0x60, 0xb5, 0x5d, 0x0b, 0xf4, 0x24, + 0xdf, 0x7c, 0xd5, 0x41, 0xaa, 0x2b, 0x46, 0xbe, 0xa9, 0x34, 0xbe, 0xf9, 0x6b, 0xd8, 0x13, 0xae, + 0x1c, 0x06, 0xfe, 0x85, 0x75, 0xe1, 0xb8, 0x0e, 0xbb, 0x8e, 0x82, 0x9c, 0x1b, 0x1e, 0xf8, 0x73, + 0xc2, 0xcf, 0x36, 0x72, 0x01, 0x07, 0xfa, 0xbe, 0x4d, 0xb9, 0x0b, 0x98, 0x2f, 0x49, 0xca, 0x05, + 0xcc, 0x17, 0x84, 0x64, 0xe7, 0xcd, 0xa6, 0x3a, 0x6f, 0xf3, 0x0a, 0x6a, 0xb7, 0xf7, 0x52, 0x31, + 0xd3, 0x80, 0xd2, 0x62, 0x05, 0x8b, 0xed, 0x34, 0x9c, 0x84, 0x92, 0xbe, 0xcd, 0xbc, 0xd9, 0xb7, + 0xcd, 0xbf, 0x6a, 0xb0, 0x7d, 0xbc, 0x74, 0x5c, 0x3b, 0x95, 0xb8, 0x49, 0xed, 0xb4, 0xf4, 0x5c, 0xb0, 0xae, 0xe9, 0x67, 0xd6, 0x36, 0xfd, 0x8f, 0xd6, 0x34, 0xd6, 0xac, 0x68, 0xac, 0x99, 0x35, - 0x6d, 0xf5, 0x5d, 0x28, 0xae, 0xba, 0x64, 0x58, 0xd5, 0xeb, 0xd9, 0x66, 0x09, 0xc3, 0x2c, 0x6a, - 0x91, 0x61, 0xe3, 0x53, 0x40, 0x49, 0x43, 0xd5, 0x86, 0xc4, 0xf5, 0x43, 0xbb, 0xbb, 0x7e, 0xdc, - 0x87, 0xda, 0x70, 0x79, 0x11, 0x8e, 0x03, 0xe7, 0x82, 0x9e, 0x32, 0x77, 0x6c, 0xbe, 0xa4, 0x1e, - 0x0b, 0xa3, 0x2c, 0xfd, 0xa7, 0x0e, 0x85, 0x18, 0xe5, 0xe5, 0xd9, 0xf1, 0xc6, 0xfe, 0x3c, 0x32, - 0xda, 0xa3, 0x2e, 0xb7, 0x5b, 0x36, 0x85, 0xed, 0x48, 0xd4, 0x96, 0x12, 0x6b, 0xc2, 0xf9, 0xa9, - 0x45, 0x2a, 0x7e, 0x46, 0xf2, 0x93, 0x6b, 0x94, 0xfc, 0x26, 0x18, 0xb1, 0xfe, 0x19, 0x73, 0xc7, - 0xf1, 0xa6, 0xe0, 0x4a, 0x84, 0x73, 0x63, 0x24, 0x33, 0xd6, 0x1c, 0x31, 0x75, 0xc9, 0x8c, 0x70, - 0xc5, 0x7c, 0x0f, 0x4a, 0x3c, 0x1f, 0x42, 0x66, 0xcf, 0x17, 0xc4, 0x0b, 0x45, 0x5e, 0xe8, 0xb8, - 0x18, 0x63, 0xbd, 0x10, 0x7d, 0x01, 0x40, 0xf9, 0xfa, 0x08, 0xbb, 0x5e, 0x50, 0x91, 0x12, 0x95, - 0xa3, 0x77, 0x12, 0x81, 0x11, 0x6f, 0xc0, 0x81, 0xf8, 0x77, 0x74, 0xbd, 0xa0, 0xb8, 0x40, 0xa3, - 0x9f, 0xe8, 0x4b, 0x28, 0x4f, 0xfd, 0xe0, 0x95, 0x1d, 0x4c, 0x88, 0x00, 0x55, 0xd9, 0xd8, 0x4b, - 0x68, 0x38, 0x91, 0x72, 0x31, 0xfc, 0xf4, 0x2d, 0x5c, 0x9a, 0x26, 0xbe, 0xd1, 0x73, 0x40, 0xd1, - 0x78, 0x91, 0xe5, 0x52, 0x49, 0x5e, 0x28, 0xd9, 0xbf, 0xad, 0x84, 0x17, 0xe9, 0x48, 0x91, 0x31, - 0xbd, 0x81, 0xa1, 0xcf, 0xa0, 0x14, 0x52, 0xc6, 0x5c, 0xaa, 0xd4, 0x14, 0x84, 0x9a, 0x7b, 0xa9, - 0x33, 0x0d, 0x17, 0x47, 0x1a, 0x8a, 0xe1, 0xea, 0x13, 0x1d, 0xc3, 0x96, 0xeb, 0x78, 0x57, 0x49, - 0x33, 0x40, 0x8c, 0xaf, 0x26, 0xc6, 0x77, 0x1d, 0xef, 0x2a, 0x69, 0x43, 0xd9, 0x4d, 0x02, 0x8d, - 0xcf, 0xa1, 0x10, 0xef, 0x12, 0x2a, 0xc2, 0xe6, 0x79, 0xef, 0x79, 0xaf, 0xff, 0x4d, 0xcf, 0x78, - 0x0b, 0xe5, 0x41, 0x1f, 0x9a, 0xbd, 0x8e, 0xa1, 0x71, 0x18, 0x9b, 0x6d, 0xd3, 0x7a, 0x61, 0x1a, - 0x19, 0xfe, 0x71, 0xd2, 0xc7, 0xdf, 0xb4, 0x70, 0xc7, 0xc8, 0x1e, 0x6f, 0xc2, 0x86, 0x98, 0xb7, - 0xf1, 0x27, 0x0d, 0xf2, 0xc2, 0x83, 0xde, 0xd4, 0x47, 0xff, 0x0f, 0x71, 0x70, 0x89, 0xe2, 0xc6, - 0x1b, 0xae, 0x88, 0xba, 0x32, 0x8e, 0x03, 0x66, 0xa4, 0x70, 0x4e, 0x8e, 0x43, 0x23, 0x26, 0x67, - 0x24, 0x39, 0x12, 0xc4, 0xe4, 0xc7, 0x09, 0xcd, 0xa9, 0x92, 0xa3, 0xe3, 0xad, 0x48, 0x10, 0x55, - 0xd8, 0xe4, 0xd9, 0x36, 0x55, 0x89, 0x13, 0x67, 0x5b, 0xc5, 0x6d, 0xfc, 0x14, 0x4a, 0x49, 0x9f, - 0xa3, 0x47, 0xa0, 0x3b, 0xde, 0xd4, 0x57, 0x89, 0xb8, 0x73, 0x23, 0xb8, 0xf8, 0x22, 0xb1, 0x20, - 0x34, 0x10, 0x18, 0x37, 0xfd, 0xdc, 0x28, 0x43, 0x31, 0xe1, 0xb4, 0xc6, 0xdf, 0x34, 0x28, 0xa7, - 0x9c, 0xf0, 0x6f, 0x6b, 0x47, 0x5f, 0x40, 0xe9, 0x95, 0x13, 0x50, 0x92, 0x6c, 0xff, 0x95, 0xa3, - 0x5a, 0xba, 0xfd, 0x47, 0xff, 0xb7, 0xfd, 0x09, 0xc5, 0x45, 0xce, 0x57, 0x00, 0xfa, 0x05, 0x54, - 0xd4, 0x48, 0x32, 0xa1, 0xcc, 0x76, 0x5c, 0xb1, 0x55, 0x95, 0x54, 0x78, 0x28, 0x6e, 0x47, 0xc8, - 0x71, 0x79, 0x9a, 0xfc, 0x44, 0x1f, 0xae, 0x14, 0x84, 0x2c, 0x70, 0xbc, 0x4b, 0xb1, 0x7f, 0x85, - 0x98, 0x36, 0x14, 0x20, 0x6f, 0xe4, 0x65, 0x75, 0x78, 0x1c, 0x32, 0x9b, 0x2d, 0x43, 0xf4, 0x31, - 0x6c, 0x84, 0xcc, 0x56, 0x95, 0xac, 0x92, 0xca, 0xad, 0x04, 0x91, 0x62, 0xc9, 0x4a, 0x9d, 0x7e, - 0x32, 0xb7, 0x4e, 0x3f, 0x1b, 0xbc, 0x62, 0xc8, 0x2a, 0x5a, 0x3c, 0x42, 0x6a, 0xf1, 0xa7, 0xa3, - 0x6e, 0xbb, 0xc5, 0x18, 0x9d, 0x2f, 0x18, 0x96, 0x04, 0xd5, 0xdd, 0xbe, 0x04, 0x68, 0x3b, 0xc1, - 0x78, 0xe9, 0xb0, 0xe7, 0xf4, 0x9a, 0xf7, 0xac, 0xa8, 0x5c, 0xcb, 0xb2, 0x97, 0x1b, 0xcb, 0x12, - 0xbd, 0x07, 0x9b, 0x51, 0x21, 0x92, 0xf5, 0x2d, 0x37, 0x13, 0x05, 0xa8, 0xf1, 0x67, 0x1d, 0xf6, - 0x95, 0x4b, 0xa5, 0x37, 0x18, 0x0d, 0xc6, 0x74, 0x11, 0x1f, 0x8b, 0x9f, 0xc2, 0xee, 0xaa, 0xa8, - 0xca, 0x89, 0x48, 0x74, 0xd4, 0x2e, 0x1e, 0xbd, 0x9d, 0x58, 0xe9, 0xca, 0x0c, 0x8c, 0xe2, 0x62, - 0xbb, 0x32, 0xed, 0x30, 0xa1, 0xc8, 0x9e, 0xfb, 0x4b, 0x4f, 0x85, 0xa8, 0xac, 0x78, 0x68, 0x15, - 0xce, 0x5c, 0x24, 0x22, 0xfa, 0x11, 0xc4, 0x41, 0x4e, 0xe8, 0x0f, 0x0b, 0x27, 0xb8, 0x16, 0xd5, - 0xaf, 0xbc, 0x2a, 0xb7, 0xa6, 0x40, 0x6f, 0x9d, 0x55, 0x33, 0xb7, 0xcf, 0xaa, 0x9f, 0x41, 0x2d, - 0xce, 0x0e, 0x75, 0x8d, 0xa5, 0x93, 0xb8, 0xb5, 0x6d, 0x0a, 0x1b, 0xf6, 0x22, 0x06, 0x8e, 0x08, - 0xaa, 0xbf, 0x1d, 0xc2, 0x6e, 0x22, 0xb5, 0x56, 0xa6, 0xcb, 0x4c, 0x44, 0xab, 0xec, 0x4a, 0x9a, - 0x1e, 0x8f, 0x50, 0xa6, 0xeb, 0xd2, 0xf4, 0x08, 0x56, 0xa6, 0xff, 0x0a, 0x2a, 0x37, 0xae, 0x79, - 0x79, 0xe1, 0xf7, 0x9f, 0xdd, 0xae, 0xac, 0xeb, 0xdc, 0x73, 0xb0, 0xe6, 0xae, 0x57, 0x1e, 0xa7, - 0xee, 0x79, 0x0f, 0x00, 0x7c, 0xcf, 0xf1, 0x3d, 0x72, 0xe1, 0xfa, 0x17, 0xa2, 0xe0, 0x96, 0x70, - 0x41, 0x20, 0xc7, 0xae, 0x7f, 0x51, 0xfb, 0x0a, 0xd0, 0x7f, 0x79, 0x9f, 0xfa, 0x8b, 0x06, 0xf7, - 0xd7, 0x9b, 0xa8, 0xfa, 0xfc, 0xff, 0x2c, 0x84, 0x3e, 0x83, 0x9c, 0x3d, 0x66, 0x8e, 0xef, 0xa9, - 0xca, 0xf0, 0x7e, 0x62, 0x28, 0xa6, 0xa1, 0xef, 0xbe, 0xa4, 0xa7, 0xbe, 0x3b, 0x51, 0xc6, 0xb4, - 0x04, 0x15, 0xab, 0x21, 0xa9, 0xa4, 0xcb, 0xa6, 0x93, 0xee, 0xf1, 0x6f, 0x75, 0x28, 0xa7, 0x2a, - 0x43, 0xba, 0x35, 0x94, 0xa1, 0xd0, 0xeb, 0x93, 0x8e, 0x39, 0x6a, 0x59, 0x5d, 0x43, 0x43, 0x06, - 0x94, 0xfa, 0x3d, 0xab, 0xdf, 0x23, 0x1d, 0xb3, 0xdd, 0xef, 0xf0, 0x26, 0xf1, 0x36, 0x6c, 0x77, - 0xad, 0xde, 0x73, 0xd2, 0xeb, 0x8f, 0x88, 0xd9, 0xb5, 0x9e, 0x5a, 0xc7, 0x5d, 0xd3, 0xc8, 0xa2, - 0x5d, 0x30, 0xfa, 0x3d, 0xd2, 0x3e, 0x6d, 0x59, 0x3d, 0x32, 0xb2, 0xce, 0xcc, 0xfe, 0xf9, 0xc8, - 0xd0, 0x39, 0xca, 0xb3, 0x99, 0x98, 0xdf, 0xb6, 0x4d, 0xb3, 0x33, 0x24, 0x67, 0xad, 0x6f, 0x8d, - 0x0d, 0x54, 0x85, 0x5d, 0xab, 0x37, 0x3c, 0x3f, 0x39, 0xb1, 0xda, 0x96, 0xd9, 0x1b, 0x91, 0xe3, - 0x56, 0xb7, 0xd5, 0x6b, 0x9b, 0x46, 0x0e, 0xdd, 0x03, 0x64, 0xf5, 0xda, 0xfd, 0xb3, 0x41, 0xd7, - 0x1c, 0x99, 0x24, 0x6a, 0x46, 0x9b, 0x68, 0x07, 0xb6, 0x84, 0x9e, 0x56, 0xa7, 0x43, 0x4e, 0x5a, - 0x56, 0xd7, 0xec, 0x18, 0x79, 0x6e, 0x89, 0x62, 0x0c, 0x49, 0xc7, 0x1a, 0xb6, 0x8e, 0x39, 0x5c, - 0xe0, 0x73, 0x5a, 0xbd, 0x17, 0x7d, 0xab, 0x6d, 0x92, 0x36, 0x57, 0xcb, 0x51, 0xe0, 0xe4, 0x08, - 0x3d, 0xef, 0x75, 0x4c, 0x3c, 0x68, 0x59, 0x1d, 0xa3, 0x88, 0xf6, 0x61, 0x2f, 0x82, 0xcd, 0x6f, - 0x07, 0x16, 0xfe, 0x8e, 0x8c, 0xfa, 0x7d, 0x32, 0xec, 0xf7, 0x7b, 0x46, 0x29, 0xa9, 0x89, 0xaf, - 0xb6, 0x3f, 0x30, 0x7b, 0x46, 0x19, 0xed, 0xc1, 0xce, 0xd9, 0x60, 0x40, 0x22, 0x49, 0xb4, 0xd8, - 0x0a, 0xa7, 0xb7, 0x3a, 0x1d, 0x6c, 0x0e, 0x87, 0xe4, 0xcc, 0x1a, 0x9e, 0xb5, 0x46, 0xed, 0x53, - 0x63, 0x8b, 0x2f, 0x69, 0x68, 0x8e, 0xc8, 0xa8, 0x3f, 0x6a, 0x75, 0x57, 0xb8, 0xc1, 0x0d, 0x5a, - 0xe1, 0x7c, 0xd2, 0x6e, 0xff, 0x1b, 0x63, 0x9b, 0x6f, 0x38, 0x87, 0xfb, 0x2f, 0x94, 0x89, 0x88, - 0xaf, 0x5d, 0xb9, 0x27, 0x9a, 0xd3, 0xd8, 0xe1, 0xa0, 0xd5, 0x7b, 0xd1, 0xea, 0x5a, 0x1d, 0xf2, - 0xdc, 0xfc, 0x4e, 0x34, 0xf3, 0x5d, 0x0e, 0x4a, 0xcb, 0xc8, 0x00, 0xf7, 0x9f, 0x72, 0x43, 0x8c, - 0xb7, 0x11, 0x82, 0x4a, 0xdb, 0xc2, 0xed, 0xf3, 0x6e, 0x0b, 0x13, 0xdc, 0x3f, 0x1f, 0x99, 0xc6, - 0xbd, 0xc7, 0x7f, 0xd4, 0xa0, 0x94, 0x2c, 0xd6, 0xdc, 0xeb, 0x56, 0x8f, 0x9c, 0x74, 0xad, 0xa7, - 0xa7, 0x23, 0x19, 0x04, 0xc3, 0xf3, 0x36, 0x77, 0x99, 0xc9, 0x0f, 0x09, 0x08, 0x2a, 0x72, 0xd3, - 0xe3, 0xc5, 0x66, 0xf8, 0x5c, 0x0a, 0xeb, 0xf5, 0x95, 0xde, 0x2c, 0x37, 0x5e, 0x81, 0x26, 0xc6, - 0x7d, 0x6c, 0xe8, 0xe8, 0x03, 0xa8, 0x2b, 0x84, 0xfb, 0x15, 0x63, 0xb3, 0x3d, 0x22, 0x83, 0xd6, - 0x77, 0x67, 0xdc, 0xed, 0x32, 0xc8, 0x86, 0xc6, 0x06, 0x7a, 0x17, 0xf6, 0x63, 0xd6, 0xba, 0xb8, - 0x78, 0xfc, 0x39, 0x54, 0xef, 0x0a, 0x7a, 0x04, 0x90, 0x1b, 0x9a, 0xa3, 0x51, 0xd7, 0x94, 0x07, - 0x9b, 0x13, 0x19, 0xb8, 0x00, 0x39, 0x6c, 0x0e, 0xcf, 0xcf, 0x4c, 0x23, 0x73, 0xf4, 0xd7, 0x3c, - 0xe4, 0xc4, 0x49, 0x3b, 0x40, 0x5f, 0x41, 0x39, 0xf1, 0x92, 0xf4, 0xe2, 0x08, 0x3d, 0x78, 0xed, - 0x1b, 0x53, 0x2d, 0xba, 0x8f, 0x2b, 0xf8, 0x50, 0x43, 0xc7, 0x50, 0x49, 0x3e, 0xa9, 0xbc, 0x38, - 0x42, 0xc9, 0x03, 0xea, 0x9a, 0xd7, 0x96, 0x35, 0x3a, 0x9e, 0x83, 0x61, 0x86, 0xcc, 0x99, 0xf3, - 0x3e, 0xa9, 0x1e, 0x3d, 0x50, 0x2d, 0x99, 0xe0, 0xe9, 0x97, 0x94, 0xda, 0xfe, 0x5a, 0x99, 0x2a, - 0x39, 0x5f, 0xf3, 0x33, 0x49, 0xfc, 0xec, 0x70, 0x6b, 0x41, 0xe9, 0xb7, 0x8e, 0xda, 0x3b, 0x77, - 0x89, 0xd5, 0x53, 0x41, 0xf6, 0x77, 0x19, 0xbe, 0xc6, 0x72, 0x42, 0xb6, 0x66, 0x97, 0x6e, 0x28, - 0x5d, 0xd3, 0xb9, 0xd1, 0x04, 0x76, 0xd6, 0x3c, 0x49, 0xa0, 0x0f, 0xd3, 0x75, 0xec, 0x8e, 0x07, - 0x8d, 0xda, 0xc3, 0x37, 0xd1, 0xd4, 0xe2, 0x27, 0xb0, 0xb3, 0xe6, 0xed, 0x22, 0x35, 0xcb, 0xdd, - 0x2f, 0x1f, 0xa9, 0x59, 0x5e, 0xf7, 0x04, 0xf2, 0x3d, 0x18, 0x37, 0xaf, 0xba, 0xa8, 0x71, 0x73, - 0xec, 0xed, 0x3b, 0x77, 0xed, 0xfd, 0xd7, 0x72, 0x94, 0x72, 0x0b, 0x60, 0x75, 0x61, 0x44, 0xf7, - 0x13, 0x43, 0x6e, 0x5d, 0x78, 0x6b, 0x0f, 0xee, 0x90, 0x2a, 0x55, 0x23, 0xd8, 0x59, 0x73, 0x83, - 0x4c, 0xed, 0xc6, 0xdd, 0x37, 0xcc, 0xda, 0xee, 0xba, 0x8b, 0xd6, 0xa1, 0x86, 0xce, 0x64, 0x80, - 0x45, 0xcf, 0xa3, 0x6f, 0xc8, 0x98, 0xea, 0xfa, 0x03, 0xe1, 0x32, 0x14, 0xa1, 0x75, 0xa8, 0xa1, - 0x3e, 0x94, 0x92, 0x59, 0xf2, 0xc6, 0xf4, 0x79, 0xa3, 0xc2, 0x29, 0x6c, 0xa5, 0x9a, 0xb1, 0x1f, - 0xa0, 0x47, 0x6f, 0x3c, 0x52, 0xc8, 0x1d, 0x4b, 0x45, 0xc0, 0x6b, 0xce, 0x1e, 0x4d, 0xed, 0x50, - 0x3b, 0xfe, 0xe4, 0x97, 0x4f, 0x2e, 0x1d, 0x36, 0x5b, 0x5e, 0x1c, 0x8c, 0xfd, 0xf9, 0x13, 0xf1, - 0xfa, 0xe9, 0x39, 0xde, 0xa5, 0x47, 0xd9, 0x2b, 0x3f, 0xb8, 0x7a, 0xe2, 0x7a, 0x93, 0x27, 0x22, - 0x0d, 0x9e, 0xc4, 0x2a, 0x2f, 0x72, 0xe2, 0x8f, 0x1f, 0x3f, 0xfa, 0x57, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x03, 0xef, 0xc7, 0x4a, 0x2c, 0x19, 0x00, 0x00, + 0x6d, 0xf5, 0x5d, 0x28, 0xad, 0xba, 0x64, 0x58, 0xcb, 0x35, 0xb2, 0xad, 0x32, 0x86, 0x59, 0xd4, + 0x22, 0xc3, 0x64, 0x31, 0xb1, 0x6c, 0x3b, 0x10, 0xde, 0x5f, 0x15, 0x93, 0xb6, 0x6d, 0x07, 0xcd, + 0x4f, 0x01, 0x25, 0x6d, 0x51, 0x67, 0x16, 0x97, 0x18, 0xed, 0xee, 0x12, 0x73, 0x1f, 0xea, 0xa3, + 0xe5, 0x45, 0x38, 0x09, 0x9c, 0x0b, 0x7a, 0xca, 0xdc, 0x89, 0xf1, 0x92, 0x7a, 0x2c, 0x8c, 0x12, + 0xf9, 0x9f, 0x39, 0x28, 0xc6, 0x28, 0xaf, 0xe0, 0x8e, 0x37, 0xf1, 0xe7, 0x91, 0x5d, 0x1e, 0x75, + 0xb9, 0x69, 0xb2, 0x6f, 0x6c, 0x47, 0xa4, 0x8e, 0xa4, 0x98, 0x36, 0xe7, 0x4f, 0x9d, 0x83, 0xe2, + 0xcf, 0x48, 0xfe, 0xe4, 0x31, 0x48, 0xfe, 0x16, 0xe8, 0xb1, 0xfc, 0x19, 0x73, 0x27, 0xf1, 0xb9, + 0xe1, 0x6a, 0x84, 0x73, 0x65, 0x24, 0x67, 0x2c, 0x39, 0xe2, 0xcc, 0x49, 0xce, 0x08, 0x57, 0x9c, + 0xef, 0x41, 0x99, 0xa7, 0x4c, 0xc8, 0xac, 0xf9, 0x82, 0x78, 0xa1, 0x38, 0xbc, 0x1c, 0x2e, 0xc5, + 0x58, 0x3f, 0x44, 0x5f, 0x00, 0x50, 0x6e, 0x1f, 0x61, 0xd7, 0x0b, 0x2a, 0xb2, 0xa6, 0x7a, 0xf4, + 0x4e, 0x22, 0x76, 0xe2, 0x03, 0x38, 0x10, 0xff, 0x8e, 0xaf, 0x17, 0x14, 0x17, 0x69, 0xf4, 0x13, + 0x7d, 0x09, 0x95, 0xa9, 0x1f, 0xbc, 0xb2, 0x02, 0x9b, 0x08, 0x50, 0x55, 0x96, 0xbd, 0x84, 0x84, + 0x13, 0x49, 0x17, 0xcb, 0x4f, 0xdf, 0xc2, 0xe5, 0x69, 0xe2, 0x1b, 0x3d, 0x07, 0x14, 0xad, 0x17, + 0x85, 0x40, 0x0a, 0x29, 0x08, 0x21, 0xfb, 0xb7, 0x85, 0xf0, 0x3a, 0x1e, 0x09, 0xd2, 0xa7, 0x37, + 0x30, 0xf4, 0x19, 0x94, 0x43, 0xca, 0x98, 0x4b, 0x95, 0x98, 0xa2, 0x10, 0x73, 0x2f, 0x35, 0xf6, + 0x70, 0x72, 0x24, 0xa1, 0x14, 0xae, 0x3e, 0xd1, 0x31, 0x6c, 0xb9, 0x8e, 0x77, 0x95, 0x54, 0x03, + 0xc4, 0xfa, 0x5a, 0x62, 0x7d, 0xcf, 0xf1, 0xae, 0x92, 0x3a, 0x54, 0xdc, 0x24, 0xd0, 0xfc, 0x1c, + 0x8a, 0xf1, 0x29, 0xa1, 0x12, 0x6c, 0x9e, 0xf7, 0x9f, 0xf7, 0x07, 0xdf, 0xf4, 0xf5, 0xb7, 0x50, + 0x01, 0x72, 0x23, 0xa3, 0xdf, 0xd5, 0x35, 0x0e, 0x63, 0xa3, 0x63, 0x98, 0x2f, 0x0c, 0x3d, 0xc3, + 0x3f, 0x4e, 0x06, 0xf8, 0x9b, 0x36, 0xee, 0xea, 0xd9, 0xe3, 0x4d, 0xd8, 0x10, 0xfb, 0x36, 0xff, + 0xa8, 0x41, 0x41, 0x78, 0xd0, 0x9b, 0xfa, 0xe8, 0xff, 0x21, 0x0e, 0x2e, 0x51, 0xff, 0x78, 0x4f, + 0x16, 0x51, 0x57, 0xc1, 0x71, 0xc0, 0x8c, 0x15, 0xce, 0x99, 0xe3, 0xd0, 0x88, 0x99, 0x33, 0x92, + 0x39, 0x22, 0xc4, 0xcc, 0x8f, 0x13, 0x92, 0x53, 0x55, 0x29, 0x87, 0xb7, 0x22, 0x42, 0x54, 0x84, + 0x93, 0xe3, 0x6f, 0xaa, 0x58, 0x27, 0xc6, 0x5f, 0xc5, 0xdb, 0xfc, 0x29, 0x94, 0x93, 0x3e, 0x47, + 0x8f, 0x20, 0xe7, 0x78, 0x53, 0x5f, 0x25, 0xe2, 0xce, 0x8d, 0xe0, 0xe2, 0x46, 0x62, 0xc1, 0xd0, + 0x44, 0xa0, 0xdf, 0xf4, 0x73, 0xb3, 0x02, 0xa5, 0x84, 0xd3, 0x9a, 0x7f, 0xd3, 0xa0, 0x92, 0x72, + 0xc2, 0xbf, 0x2d, 0x1d, 0x7d, 0x01, 0xe5, 0x57, 0x4e, 0x40, 0x49, 0x72, 0x42, 0xa8, 0x1e, 0xd5, + 0xd3, 0x13, 0x42, 0xf4, 0x7f, 0xc7, 0xb7, 0x29, 0x2e, 0x71, 0x7e, 0x05, 0xa0, 0x5f, 0x40, 0x55, + 0xad, 0x24, 0x36, 0x65, 0x96, 0xe3, 0x8a, 0xa3, 0xaa, 0xa6, 0xc2, 0x43, 0xf1, 0x76, 0x05, 0x1d, + 0x57, 0xa6, 0xc9, 0x4f, 0xf4, 0xe1, 0x4a, 0x40, 0xc8, 0x02, 0xc7, 0xbb, 0x14, 0xe7, 0x57, 0x8c, + 0xd9, 0x46, 0x02, 0xe4, 0xbd, 0xbe, 0xa2, 0xe6, 0xcb, 0x11, 0xb3, 0xd8, 0x32, 0x44, 0x1f, 0xc3, + 0x46, 0xc8, 0x2c, 0x55, 0xc9, 0xaa, 0xa9, 0xdc, 0x4a, 0x30, 0x52, 0x2c, 0xb9, 0x52, 0x03, 0x52, + 0xe6, 0xd6, 0x80, 0xb4, 0xc1, 0x2b, 0x86, 0x2c, 0xb4, 0xa5, 0x23, 0xa4, 0x8c, 0x3f, 0x1d, 0xf7, + 0x3a, 0x6d, 0xc6, 0xe8, 0x7c, 0xc1, 0xb0, 0x64, 0x50, 0x0d, 0xf0, 0x4b, 0x80, 0x8e, 0x13, 0x4c, + 0x96, 0x0e, 0x7b, 0x4e, 0xaf, 0x79, 0x5b, 0x8b, 0x2a, 0xba, 0x2c, 0x7b, 0xf9, 0x89, 0xac, 0xe2, + 0x7b, 0xb0, 0x19, 0x15, 0x22, 0x59, 0xdf, 0xf2, 0x33, 0x51, 0x80, 0x9a, 0x7f, 0xca, 0xc1, 0xbe, + 0x72, 0xa9, 0xf4, 0x06, 0xa3, 0xc1, 0x84, 0x2e, 0xe2, 0xc9, 0xf9, 0x29, 0xec, 0xae, 0x8a, 0xaa, + 0xdc, 0x88, 0x44, 0xd3, 0x78, 0xe9, 0xe8, 0xed, 0x84, 0xa5, 0x2b, 0x35, 0x30, 0x8a, 0x8b, 0xed, + 0x4a, 0xb5, 0xc3, 0x84, 0x20, 0x6b, 0xee, 0x2f, 0x3d, 0x15, 0xa2, 0xb2, 0xe2, 0xa1, 0x55, 0x38, + 0x73, 0x92, 0x88, 0xe8, 0x47, 0x10, 0x07, 0x39, 0xa1, 0x3f, 0x2c, 0x9c, 0xe0, 0x5a, 0x54, 0xbf, + 0xca, 0xaa, 0xdc, 0x1a, 0x02, 0xbd, 0x35, 0xce, 0x66, 0x6e, 0x8f, 0xb3, 0x9f, 0x41, 0x3d, 0xce, + 0x0e, 0x75, 0xd3, 0xa5, 0x76, 0xdc, 0xfd, 0x36, 0x85, 0x0e, 0x7b, 0x11, 0x07, 0x8e, 0x18, 0x54, + 0x0b, 0x3c, 0x84, 0xdd, 0x44, 0x6a, 0xad, 0x54, 0x97, 0x99, 0x88, 0x56, 0xd9, 0x95, 0x54, 0x3d, + 0x5e, 0xa1, 0x54, 0xcf, 0x49, 0xd5, 0x23, 0x58, 0xa9, 0xfe, 0x2b, 0xa8, 0xde, 0xb8, 0x09, 0x16, + 0x84, 0xdf, 0x7f, 0x76, 0xbb, 0xb2, 0xae, 0x73, 0xcf, 0xc1, 0x9a, 0xeb, 0x60, 0x65, 0x92, 0xba, + 0x0a, 0x3e, 0x00, 0xf0, 0x3d, 0xc7, 0xf7, 0xc8, 0x85, 0xeb, 0x5f, 0x88, 0x82, 0x5b, 0xc6, 0x45, + 0x81, 0x1c, 0xbb, 0xfe, 0x45, 0xfd, 0x2b, 0x40, 0xff, 0xe5, 0x95, 0xeb, 0xcf, 0x1a, 0xdc, 0x5f, + 0xaf, 0xa2, 0xea, 0xf3, 0xff, 0xb3, 0x10, 0xfa, 0x0c, 0xf2, 0xd6, 0x84, 0x39, 0xbe, 0xa7, 0x2a, + 0xc3, 0xfb, 0x89, 0xa5, 0x98, 0x86, 0xbe, 0xfb, 0x92, 0x9e, 0xfa, 0xae, 0xad, 0x94, 0x69, 0x0b, + 0x56, 0xac, 0x96, 0xa4, 0x92, 0x2e, 0x9b, 0x4e, 0xba, 0xc7, 0xbf, 0xcd, 0x41, 0x25, 0x55, 0x19, + 0xd2, 0xad, 0xa1, 0x02, 0xc5, 0xfe, 0x80, 0x74, 0x8d, 0x71, 0xdb, 0xec, 0xe9, 0x1a, 0xd2, 0xa1, + 0x3c, 0xe8, 0x9b, 0x83, 0x3e, 0xe9, 0x1a, 0x9d, 0x41, 0x97, 0x37, 0x89, 0xb7, 0x61, 0xbb, 0x67, + 0xf6, 0x9f, 0x93, 0xfe, 0x60, 0x4c, 0x8c, 0x9e, 0xf9, 0xd4, 0x3c, 0xee, 0x19, 0x7a, 0x16, 0xed, + 0x82, 0x3e, 0xe8, 0x93, 0xce, 0x69, 0xdb, 0xec, 0x93, 0xb1, 0x79, 0x66, 0x0c, 0xce, 0xc7, 0x7a, + 0x8e, 0xa3, 0x3c, 0x9b, 0x89, 0xf1, 0x6d, 0xc7, 0x30, 0xba, 0x23, 0x72, 0xd6, 0xfe, 0x56, 0xdf, + 0x40, 0x35, 0xd8, 0x35, 0xfb, 0xa3, 0xf3, 0x93, 0x13, 0xb3, 0x63, 0x1a, 0xfd, 0x31, 0x39, 0x6e, + 0xf7, 0xda, 0xfd, 0x8e, 0xa1, 0xe7, 0xd1, 0x3d, 0x40, 0x66, 0xbf, 0x33, 0x38, 0x1b, 0xf6, 0x8c, + 0xb1, 0x41, 0xa2, 0x66, 0xb4, 0x89, 0x76, 0x60, 0x4b, 0xc8, 0x69, 0x77, 0xbb, 0xe4, 0xa4, 0x6d, + 0xf6, 0x8c, 0xae, 0x5e, 0xe0, 0x9a, 0x28, 0x8e, 0x11, 0xe9, 0x9a, 0xa3, 0xf6, 0x31, 0x87, 0x8b, + 0x7c, 0x4f, 0xb3, 0xff, 0x62, 0x60, 0x76, 0x0c, 0xd2, 0xe1, 0x62, 0x39, 0x0a, 0x9c, 0x39, 0x42, + 0xcf, 0xfb, 0x5d, 0x03, 0x0f, 0xdb, 0x66, 0x57, 0x2f, 0xa1, 0x7d, 0xd8, 0x8b, 0x60, 0xe3, 0xdb, + 0xa1, 0x89, 0xbf, 0x23, 0xe3, 0xc1, 0x80, 0x8c, 0x06, 0x83, 0xbe, 0x5e, 0x4e, 0x4a, 0xe2, 0xd6, + 0x0e, 0x86, 0x46, 0x5f, 0xaf, 0xa0, 0x3d, 0xd8, 0x39, 0x1b, 0x0e, 0x49, 0x44, 0x89, 0x8c, 0xad, + 0x72, 0xf6, 0x76, 0xb7, 0x8b, 0x8d, 0xd1, 0x88, 0x9c, 0x99, 0xa3, 0xb3, 0xf6, 0xb8, 0x73, 0xaa, + 0x6f, 0x71, 0x93, 0x46, 0xc6, 0x98, 0x8c, 0x07, 0xe3, 0x76, 0x6f, 0x85, 0xeb, 0x5c, 0xa1, 0x15, + 0xce, 0x37, 0xed, 0x0d, 0xbe, 0xd1, 0xb7, 0xf9, 0x81, 0x73, 0x78, 0xf0, 0x42, 0xa9, 0x88, 0xb8, + 0xed, 0xca, 0x3d, 0xd1, 0x9e, 0xfa, 0x0e, 0x07, 0xcd, 0xfe, 0x8b, 0x76, 0xcf, 0xec, 0x92, 0xe7, + 0xc6, 0x77, 0xa2, 0x99, 0xef, 0x72, 0x50, 0x6a, 0x46, 0x86, 0x78, 0xf0, 0x94, 0x2b, 0xa2, 0xbf, + 0x8d, 0x10, 0x54, 0x3b, 0x26, 0xee, 0x9c, 0xf7, 0xda, 0x98, 0xe0, 0xc1, 0xf9, 0xd8, 0xd0, 0xef, + 0x3d, 0xfe, 0x83, 0x06, 0xe5, 0x64, 0xb1, 0xe6, 0x5e, 0x37, 0xfb, 0xe4, 0xa4, 0x67, 0x3e, 0x3d, + 0x1d, 0xcb, 0x20, 0x18, 0x9d, 0x77, 0xb8, 0xcb, 0x0c, 0x3e, 0x24, 0x20, 0xa8, 0xca, 0x43, 0x8f, + 0x8d, 0xcd, 0xf0, 0xbd, 0x14, 0xd6, 0x1f, 0x28, 0xb9, 0x59, 0xae, 0xbc, 0x02, 0x0d, 0x8c, 0x07, + 0x58, 0xcf, 0xa1, 0x0f, 0xa0, 0xa1, 0x10, 0xee, 0x57, 0x8c, 0x8d, 0xce, 0x98, 0x0c, 0xdb, 0xdf, + 0x9d, 0x71, 0xb7, 0xcb, 0x20, 0x1b, 0xe9, 0x1b, 0xe8, 0x5d, 0xd8, 0x8f, 0xb9, 0xd6, 0xc5, 0xc5, + 0xe3, 0xcf, 0xa1, 0x76, 0x57, 0xd0, 0x23, 0x80, 0xfc, 0xc8, 0x18, 0x8f, 0x7b, 0x86, 0x1c, 0x6c, + 0x4e, 0x64, 0xe0, 0x02, 0xe4, 0xb1, 0x31, 0x3a, 0x3f, 0x33, 0xf4, 0xcc, 0xd1, 0x5f, 0x0a, 0x90, + 0x17, 0x93, 0x76, 0x80, 0xbe, 0x82, 0x4a, 0xe2, 0xb1, 0xe9, 0xc5, 0x11, 0x7a, 0xf0, 0xda, 0x67, + 0xa8, 0x7a, 0x74, 0x65, 0x57, 0xf0, 0xa1, 0x86, 0x8e, 0xa1, 0x9a, 0x7c, 0x75, 0x79, 0x71, 0x84, + 0x92, 0x03, 0xea, 0x9a, 0x07, 0x99, 0x35, 0x32, 0x9e, 0x83, 0x6e, 0x84, 0xcc, 0x99, 0xf3, 0x3e, + 0xa9, 0xde, 0x45, 0x50, 0x3d, 0x99, 0xe0, 0xe9, 0xc7, 0x96, 0xfa, 0xfe, 0x5a, 0x9a, 0x2a, 0x39, + 0x5f, 0xf3, 0x99, 0x24, 0x7e, 0x99, 0xb8, 0x65, 0x50, 0xfa, 0x39, 0xa4, 0xfe, 0xce, 0x5d, 0x64, + 0xf5, 0x9a, 0x90, 0xfd, 0x5d, 0x86, 0xdb, 0x58, 0x49, 0xd0, 0xd6, 0x9c, 0xd2, 0x0d, 0xa1, 0x6b, + 0x3a, 0x37, 0xb2, 0x61, 0x67, 0xcd, 0xab, 0x05, 0xfa, 0x30, 0x5d, 0xc7, 0xee, 0x78, 0xf3, 0xa8, + 0x3f, 0x7c, 0x13, 0x9b, 0x32, 0xde, 0x86, 0x9d, 0x35, 0xcf, 0x1b, 0xa9, 0x5d, 0xee, 0x7e, 0x1c, + 0x49, 0xed, 0xf2, 0xba, 0x57, 0x92, 0xef, 0x41, 0xbf, 0x79, 0x1b, 0x46, 0xcd, 0x9b, 0x6b, 0x6f, + 0x5f, 0xcb, 0xeb, 0xef, 0xbf, 0x96, 0x47, 0x09, 0x37, 0x01, 0x56, 0x17, 0x46, 0x74, 0x3f, 0xb1, + 0xe4, 0xd6, 0x9d, 0xb8, 0xfe, 0xe0, 0x0e, 0xaa, 0x12, 0x35, 0x86, 0x9d, 0x35, 0x37, 0xc8, 0xd4, + 0x69, 0xdc, 0x7d, 0xc3, 0xac, 0xef, 0xae, 0xbb, 0x68, 0x1d, 0x6a, 0xe8, 0x4c, 0x06, 0x58, 0xf4, + 0x82, 0xfa, 0x86, 0x8c, 0xa9, 0xad, 0x1f, 0x08, 0x97, 0xa1, 0x08, 0xad, 0x43, 0x0d, 0x0d, 0xa0, + 0x9c, 0xcc, 0x92, 0x37, 0xa6, 0xcf, 0x1b, 0x05, 0x4e, 0x61, 0x2b, 0xd5, 0x8c, 0xfd, 0x00, 0x3d, + 0x7a, 0xe3, 0x48, 0x21, 0x4f, 0x2c, 0x15, 0x01, 0xaf, 0x99, 0x3d, 0x5a, 0xda, 0xa1, 0x76, 0xfc, + 0xc9, 0x2f, 0x9f, 0x5c, 0x3a, 0x6c, 0xb6, 0xbc, 0x38, 0x98, 0xf8, 0xf3, 0x27, 0xe2, 0x81, 0xd4, + 0x73, 0xbc, 0x4b, 0x8f, 0xb2, 0x57, 0x7e, 0x70, 0xf5, 0xc4, 0xf5, 0xec, 0x27, 0x22, 0x0d, 0x9e, + 0xc4, 0x22, 0x2f, 0xf2, 0xe2, 0xef, 0x23, 0x3f, 0xfa, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, + 0x24, 0x31, 0xa7, 0x4f, 0x19, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/lnrpc/routerrpc/router.proto b/lnrpc/routerrpc/router.proto index 5d54f8b0..db02607c 100644 --- a/lnrpc/routerrpc/router.proto +++ b/lnrpc/routerrpc/router.proto @@ -394,6 +394,9 @@ message BuildRouteRequest { pubkey. */ repeated bytes hop_pubkeys = 4; + + // An optional payment addr to be included within the last hop of the route. + bytes payment_addr = 5; } message BuildRouteResponse { diff --git a/lnrpc/routerrpc/router.swagger.json b/lnrpc/routerrpc/router.swagger.json index 64fbe196..806fdfd3 100644 --- a/lnrpc/routerrpc/router.swagger.json +++ b/lnrpc/routerrpc/router.swagger.json @@ -832,6 +832,11 @@ "format": "byte" }, "description": "A list of hops that defines the route. This does not include the source hop\npubkey." + }, + "payment_addr": { + "type": "string", + "format": "byte", + "description": "An optional payment addr to be included within the last hop of the route." } } }, diff --git a/lnrpc/routerrpc/router_server.go b/lnrpc/routerrpc/router_server.go index 1783cff3..2aead9e0 100644 --- a/lnrpc/routerrpc/router_server.go +++ b/lnrpc/routerrpc/router_server.go @@ -564,9 +564,17 @@ func (s *Server) BuildRoute(ctx context.Context, outgoingChan = &req.OutgoingChanId } + var payAddr *[32]byte + if len(req.PaymentAddr) != 0 { + var backingPayAddr [32]byte + copy(backingPayAddr[:], req.PaymentAddr) + + payAddr = &backingPayAddr + } + // Build the route and return it to the caller. route, err := s.cfg.Router.BuildRoute( - amt, hops, outgoingChan, req.FinalCltvDelta, + amt, hops, outgoingChan, req.FinalCltvDelta, payAddr, ) if err != nil { return nil, err diff --git a/lntest/itest/lnd_forward_interceptor_test.go b/lntest/itest/lnd_forward_interceptor_test.go index 108263c5..5f9b5d45 100644 --- a/lntest/itest/lnd_forward_interceptor_test.go +++ b/lntest/itest/lnd_forward_interceptor_test.go @@ -27,6 +27,7 @@ var ( type interceptorTestCase struct { amountMsat int64 + payAddr []byte invoice *lnrpc.Invoice shouldHold bool interceptorAction routerrpc.ResolveHoldForwardAction @@ -105,7 +106,9 @@ func testForwardInterceptor(net *lntest.NetworkHarness, t *harnessTest) { defer wg.Done() for _, tc := range testCases { attempt, err := testContext.sendAliceToCarolPayment( - context.Background(), tc.invoice.ValueMsat, tc.invoice.RHash) + context.Background(), tc.invoice.ValueMsat, + tc.invoice.RHash, tc.payAddr, + ) if t.t.Failed() { return @@ -118,7 +121,8 @@ func testForwardInterceptor(net *lntest.NetworkHarness, t *harnessTest) { // For 'fail' interceptor action we make sure the payment failed. case routerrpc.ResolveHoldForwardAction_FAIL: if attempt.Status != lnrpc.HTLCAttempt_FAILED { - t.t.Errorf("expected payment to fail, instead got %v", attempt.Status) + t.t.Errorf("expected payment to fail, "+ + "instead got %v", attempt.Status) } // For settle and resume we make sure the payment is successful. @@ -127,7 +131,8 @@ func testForwardInterceptor(net *lntest.NetworkHarness, t *harnessTest) { case routerrpc.ResolveHoldForwardAction_RESUME: if attempt.Status != lnrpc.HTLCAttempt_SUCCEEDED { - t.t.Errorf("expected payment to succeed, instead got %v", attempt.Status) + t.t.Errorf("expected payment to "+ + "succeed, instead got %v", attempt.Status) } } } @@ -202,7 +207,9 @@ func testForwardInterceptor(net *lntest.NetworkHarness, t *harnessTest) { foundPayment.Status != lnrpc.Payment_IN_FLIGHT { t.Fatalf("expected to find in flight payment for"+ - "amount %v, %v", testCase.invoice.ValueMsat, foundPayment.Status) + "amount %v, %v", + testCase.invoice.ValueMsat, + foundPayment.Status) } } } @@ -294,12 +301,25 @@ func (c *interceptorTestContext) prepareTestCases() ( if err != nil { return nil, fmt.Errorf("unable to add invoice: %v", err) } + + // We'll need to also decode the returned invoice so we can + // grab the payment address which is now required for ALL + // payments. + payReq, err := c.carol.DecodePayReq(context.Background(), &lnrpc.PayReqString{ + PayReq: invoice.PaymentRequest, + }) + if err != nil { + return nil, fmt.Errorf("unable to decode invoice: %v", err) + } t.invoice = invoice + t.payAddr = payReq.PaymentAddr } return cases, nil } -func (c *interceptorTestContext) openChannel(from, to *lntest.HarnessNode, chanSize btcutil.Amount) { +func (c *interceptorTestContext) openChannel(from, to *lntest.HarnessNode, + chanSize btcutil.Amount) { + ctxb := context.Background() ctxt, _ := context.WithTimeout(ctxb, defaultTimeout) @@ -365,10 +385,14 @@ func (c *interceptorTestContext) waitForChannels() { // sendAliceToCarolPayment sends a payment from alice to carol and make an // attempt to pay. The lnrpc.HTLCAttempt is returned. func (c *interceptorTestContext) sendAliceToCarolPayment(ctx context.Context, - amtMsat int64, paymentHash []byte) (*lnrpc.HTLCAttempt, error) { + amtMsat int64, + paymentHash, paymentAddr []byte) (*lnrpc.HTLCAttempt, error) { // Build a route from alice to carol. - route, err := c.buildRoute(ctx, amtMsat, []*lntest.HarnessNode{c.bob, c.carol}) + route, err := c.buildRoute( + ctx, amtMsat, []*lntest.HarnessNode{c.bob, c.carol}, + paymentAddr, + ) if err != nil { return nil, err } @@ -387,8 +411,8 @@ func (c *interceptorTestContext) sendAliceToCarolPayment(ctx context.Context, } // buildRoute is a helper function to build a route with given hops. -func (c *interceptorTestContext) buildRoute(ctx context.Context, amtMsat int64, hops []*lntest.HarnessNode) ( - *lnrpc.Route, error) { +func (c *interceptorTestContext) buildRoute(ctx context.Context, amtMsat int64, + hops []*lntest.HarnessNode, payAddr []byte) (*lnrpc.Route, error) { rpcHops := make([][]byte, 0, len(hops)) for _, hop := range hops { @@ -405,6 +429,7 @@ func (c *interceptorTestContext) buildRoute(ctx context.Context, amtMsat int64, AmtMsat: amtMsat, FinalCltvDelta: chainreg.DefaultBitcoinTimeLockDelta, HopPubkeys: rpcHops, + PaymentAddr: payAddr, } routeResp, err := c.alice.RouterClient.BuildRoute(ctx, req) diff --git a/routing/router.go b/routing/router.go index 4e4bcbef..93904f09 100644 --- a/routing/router.go +++ b/routing/router.go @@ -2432,7 +2432,7 @@ func (e ErrNoChannel) Error() string { // outgoing channel, use the outgoingChan parameter. func (r *ChannelRouter) BuildRoute(amt *lnwire.MilliSatoshi, hops []route.Vertex, outgoingChan *uint64, - finalCltvDelta int32) (*route.Route, error) { + finalCltvDelta int32, payAddr *[32]byte) (*route.Route, error) { log.Tracef("BuildRoute called: hopsCount=%v, amt=%v", len(hops), amt) @@ -2582,10 +2582,11 @@ func (r *ChannelRouter) BuildRoute(amt *lnwire.MilliSatoshi, return newRoute( source, pathEdges, uint32(height), finalHopParams{ - amt: receiverAmt, - totalAmt: receiverAmt, - cltvDelta: uint16(finalCltvDelta), - records: nil, + amt: receiverAmt, + totalAmt: receiverAmt, + cltvDelta: uint16(finalCltvDelta), + records: nil, + paymentAddr: payAddr, }, ) } diff --git a/routing/router_test.go b/routing/router_test.go index 400bace6..5db80dc9 100644 --- a/routing/router_test.go +++ b/routing/router_test.go @@ -15,6 +15,7 @@ import ( "github.com/btcsuite/btcd/wire" "github.com/btcsuite/btcutil" "github.com/davecgh/go-spew/spew" + "github.com/stretchr/testify/require" "github.com/lightningnetwork/lnd/channeldb" "github.com/lightningnetwork/lnd/clock" @@ -2921,6 +2922,10 @@ func TestSendToRouteMaxHops(t *testing.T) { func TestBuildRoute(t *testing.T) { // Setup a three node network. chanCapSat := btcutil.Amount(100000) + paymentAddrFeatures := lnwire.NewFeatureVector( + lnwire.NewRawFeatureVector(lnwire.PaymentAddrOptional), + lnwire.Features, + ) testChannels := []*testChannel{ // Create two local channels from a. The bandwidth is estimated // in this test as the channel capacity. For building routes, we @@ -2945,29 +2950,33 @@ func TestBuildRoute(t *testing.T) { // nodes are recommended to keep their channel policies towards // the same peer identical. symmetricTestChannel("b", "c", chanCapSat, &testChannelPolicy{ - Expiry: 144, - FeeRate: 50000, - MinHTLC: lnwire.NewMSatFromSatoshis(20), - MaxHTLC: lnwire.NewMSatFromSatoshis(120), + Expiry: 144, + FeeRate: 50000, + MinHTLC: lnwire.NewMSatFromSatoshis(20), + MaxHTLC: lnwire.NewMSatFromSatoshis(120), + Features: paymentAddrFeatures, }, 2), symmetricTestChannel("b", "c", chanCapSat, &testChannelPolicy{ - Expiry: 144, - FeeRate: 60000, - MinHTLC: lnwire.NewMSatFromSatoshis(20), - MaxHTLC: lnwire.NewMSatFromSatoshis(120), + Expiry: 144, + FeeRate: 60000, + MinHTLC: lnwire.NewMSatFromSatoshis(20), + MaxHTLC: lnwire.NewMSatFromSatoshis(120), + Features: paymentAddrFeatures, }, 7), symmetricTestChannel("a", "e", chanCapSat, &testChannelPolicy{ - Expiry: 144, - FeeRate: 80000, - MinHTLC: lnwire.NewMSatFromSatoshis(5), - MaxHTLC: lnwire.NewMSatFromSatoshis(10), + Expiry: 144, + FeeRate: 80000, + MinHTLC: lnwire.NewMSatFromSatoshis(5), + MaxHTLC: lnwire.NewMSatFromSatoshis(10), + Features: paymentAddrFeatures, }, 5), symmetricTestChannel("e", "c", chanCapSat, &testChannelPolicy{ - Expiry: 144, - FeeRate: 100000, - MinHTLC: lnwire.NewMSatFromSatoshis(20), - MaxHTLC: lnwire.NewMSatFromSatoshis(chanCapSat), + Expiry: 144, + FeeRate: 100000, + MinHTLC: lnwire.NewMSatFromSatoshis(20), + MaxHTLC: lnwire.NewMSatFromSatoshis(chanCapSat), + Features: paymentAddrFeatures, }, 4), } @@ -2987,7 +2996,9 @@ func TestBuildRoute(t *testing.T) { } defer cleanUp() - checkHops := func(rt *route.Route, expected []uint64) { + checkHops := func(rt *route.Route, expected []uint64, + payAddr [32]byte) { + t.Helper() if len(rt.Hops) != len(expected) { @@ -3000,8 +3011,16 @@ func TestBuildRoute(t *testing.T) { expected[i], i, hop.ChannelID) } } + + lastHop := rt.Hops[len(rt.Hops)-1] + require.NotNil(t, lastHop.MPP) + require.Equal(t, lastHop.MPP.PaymentAddr(), payAddr) } + var payAddr [32]byte + _, err = rand.Read(payAddr[:]) + require.NoError(t, err) + // Create hop list from the route node pubkeys. hops := []route.Vertex{ ctx.aliases["b"], ctx.aliases["c"], @@ -3010,7 +3029,7 @@ func TestBuildRoute(t *testing.T) { // Build the route for the given amount. rt, err := ctx.router.BuildRoute( - &amt, hops, nil, 40, + &amt, hops, nil, 40, &payAddr, ) if err != nil { t.Fatal(err) @@ -3019,14 +3038,14 @@ func TestBuildRoute(t *testing.T) { // Check that we get the expected route back. The total amount should be // the amount to deliver to hop c (100 sats) plus the max fee for the // connection b->c (6 sats). - checkHops(rt, []uint64{1, 7}) + checkHops(rt, []uint64{1, 7}, payAddr) if rt.TotalAmount != 106000 { t.Fatalf("unexpected total amount %v", rt.TotalAmount) } // Build the route for the minimum amount. rt, err = ctx.router.BuildRoute( - nil, hops, nil, 40, + nil, hops, nil, 40, &payAddr, ) if err != nil { t.Fatal(err) @@ -3036,7 +3055,7 @@ func TestBuildRoute(t *testing.T) { // send from b to c is 20 sats. Hop b charges 1200 msat for the // forwarding. The channel between hop a and b can carry amounts in the // range [5, 100], so 21200 msats is the minimum amount for this route. - checkHops(rt, []uint64{1, 7}) + checkHops(rt, []uint64{1, 7}, payAddr) if rt.TotalAmount != 21200 { t.Fatalf("unexpected total amount %v", rt.TotalAmount) } @@ -3047,7 +3066,7 @@ func TestBuildRoute(t *testing.T) { ctx.aliases["e"], ctx.aliases["c"], } _, err = ctx.router.BuildRoute( - nil, hops, nil, 40, + nil, hops, nil, 40, nil, ) errNoChannel, ok := err.(ErrNoChannel) if !ok { From 43fc84919e7712ab04f792073494c6fb41ee6854 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 24 Nov 2020 19:05:14 -0800 Subject: [PATCH 5/7] lnrpc: include payment addr in main Invoice proto With this change ListInvoices will return the payment addr, and the response to AddInvoice will as well. --- lnrpc/invoicesrpc/invoices.swagger.json | 5 + lnrpc/invoicesrpc/utils.go | 1 + lnrpc/rpc.pb.go | 1571 ++++++++++++----------- lnrpc/rpc.proto | 14 + lnrpc/rpc.swagger.json | 10 + rpcserver.go | 1 + 6 files changed, 829 insertions(+), 773 deletions(-) diff --git a/lnrpc/invoicesrpc/invoices.swagger.json b/lnrpc/invoicesrpc/invoices.swagger.json index e6d42a85..45cad92f 100644 --- a/lnrpc/invoicesrpc/invoices.swagger.json +++ b/lnrpc/invoicesrpc/invoices.swagger.json @@ -427,6 +427,11 @@ "type": "boolean", "format": "boolean", "description": "Indicates if this invoice was a spontaneous payment that arrived via keysend\n[EXPERIMENTAL]." + }, + "payment_addr": { + "type": "string", + "format": "byte", + "description": "The payment address of this invoice. This value will be used in MPP\npayments, and also for newer invoies that always require the MPP paylaod\nfor added end-to-end security." } } }, diff --git a/lnrpc/invoicesrpc/utils.go b/lnrpc/invoicesrpc/utils.go index 1d85ca9a..e68c3f95 100644 --- a/lnrpc/invoicesrpc/utils.go +++ b/lnrpc/invoicesrpc/utils.go @@ -148,6 +148,7 @@ func CreateRPCInvoice(invoice *channeldb.Invoice, Htlcs: rpcHtlcs, Features: CreateRPCFeatures(invoice.Terms.Features), IsKeysend: len(invoice.PaymentRequest) == 0, + PaymentAddr: invoice.Terms.PaymentAddr[:], } if preimage != nil { diff --git a/lnrpc/rpc.pb.go b/lnrpc/rpc.pb.go index 1ff529cd..844a8499 100644 --- a/lnrpc/rpc.pb.go +++ b/lnrpc/rpc.pb.go @@ -9267,7 +9267,12 @@ type Invoice struct { // //Indicates if this invoice was a spontaneous payment that arrived via keysend //[EXPERIMENTAL]. - IsKeysend bool `protobuf:"varint,25,opt,name=is_keysend,json=isKeysend,proto3" json:"is_keysend,omitempty"` + IsKeysend bool `protobuf:"varint,25,opt,name=is_keysend,json=isKeysend,proto3" json:"is_keysend,omitempty"` + // + //The payment address of this invoice. This value will be used in MPP + //payments, and also for newer invoies that always require the MPP paylaod + //for added end-to-end security. + PaymentAddr []byte `protobuf:"bytes,26,opt,name=payment_addr,json=paymentAddr,proto3" json:"payment_addr,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -9468,6 +9473,13 @@ func (m *Invoice) GetIsKeysend() bool { return false } +func (m *Invoice) GetPaymentAddr() []byte { + if m != nil { + return m.PaymentAddr + } + return nil +} + // Details of an HTLC that paid to an invoice type InvoiceHTLC struct { // Short channel id over which the htlc was received. @@ -9602,7 +9614,12 @@ type AddInvoiceResponse struct { //this index making it monotonically increasing. Callers to the //SubscribeInvoices call can use this to instantly get notified of all added //invoices with an add_index greater than this one. - AddIndex uint64 `protobuf:"varint,16,opt,name=add_index,json=addIndex,proto3" json:"add_index,omitempty"` + AddIndex uint64 `protobuf:"varint,16,opt,name=add_index,json=addIndex,proto3" json:"add_index,omitempty"` + // + //The payment address of the generated invoice. This value should be used + //in all payments for this invoice as we require it for end to end + //security. + PaymentAddr []byte `protobuf:"bytes,17,opt,name=payment_addr,json=paymentAddr,proto3" json:"payment_addr,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -9654,6 +9671,13 @@ func (m *AddInvoiceResponse) GetAddIndex() uint64 { return 0 } +func (m *AddInvoiceResponse) GetPaymentAddr() []byte { + if m != nil { + return m.PaymentAddr + } + return nil +} + type PaymentHash struct { // //The hex-encoded payment hash of the invoice to be looked up. The passed @@ -12781,777 +12805,778 @@ func init() { func init() { proto.RegisterFile("rpc.proto", fileDescriptor_77a6da22d6a3feb1) } var fileDescriptor_77a6da22d6a3feb1 = []byte{ - // 12316 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0xbd, 0x6b, 0x6c, 0x23, 0xc9, - 0x76, 0x18, 0x3c, 0x7c, 0x89, 0xe4, 0xe1, 0x43, 0x54, 0xe9, 0xc5, 0xd1, 0xec, 0xec, 0xcc, 0xf6, - 0xee, 0xdd, 0x9d, 0x3b, 0xbb, 0xab, 0x9d, 0x9d, 0xdd, 0xd9, 0xc7, 0x9d, 0xcf, 0xf7, 0x5e, 0x8a, - 0xa2, 0x46, 0xbc, 0x23, 0x91, 0xba, 0x4d, 0x6a, 0xd7, 0x6b, 0xd8, 0x6e, 0xb7, 0xc8, 0x92, 0xd4, - 0xdf, 0x90, 0xdd, 0xdc, 0xee, 0xa6, 0x46, 0xba, 0x1f, 0x3e, 0xc0, 0x3f, 0x1c, 0x27, 0x30, 0x8c, - 0x00, 0x01, 0xe2, 0x20, 0x2f, 0x23, 0x2f, 0x24, 0xf9, 0x67, 0x04, 0xb0, 0x93, 0x5f, 0xf9, 0x17, - 0x20, 0x46, 0x80, 0x3c, 0x10, 0xc4, 0x41, 0x1e, 0x30, 0x0c, 0x04, 0x48, 0x9c, 0x1f, 0x01, 0x02, - 0x03, 0xfe, 0x9b, 0x00, 0x41, 0x9d, 0x7a, 0x74, 0x75, 0xb3, 0x35, 0x33, 0x7b, 0xbd, 0xb9, 0x7f, - 0x24, 0xd6, 0x39, 0xa7, 0xde, 0x55, 0xa7, 0x4e, 0x9d, 0x73, 0xea, 0x34, 0x94, 0xfd, 0xd9, 0x68, - 0x7b, 0xe6, 0x7b, 0xa1, 0x47, 0x0a, 0x13, 0xd7, 0x9f, 0x8d, 0x8c, 0x3f, 0xce, 0x40, 0xfe, 0x38, - 0xbc, 0xf4, 0xc8, 0x23, 0xa8, 0xda, 0xe3, 0xb1, 0x4f, 0x83, 0xc0, 0x0a, 0xaf, 0x66, 0xb4, 0x99, - 0xb9, 0x9b, 0xb9, 0x57, 0x7f, 0x48, 0xb6, 0x91, 0x6c, 0xbb, 0xc5, 0x51, 0xc3, 0xab, 0x19, 0x35, - 0x2b, 0x76, 0x94, 0x20, 0x4d, 0x28, 0x8a, 0x64, 0x33, 0x7b, 0x37, 0x73, 0xaf, 0x6c, 0xca, 0x24, - 0xb9, 0x0d, 0x60, 0x4f, 0xbd, 0xb9, 0x1b, 0x5a, 0x81, 0x1d, 0x36, 0x73, 0x77, 0x33, 0xf7, 0x72, - 0x66, 0x99, 0x43, 0x06, 0x76, 0x48, 0x6e, 0x41, 0x79, 0xf6, 0xcc, 0x0a, 0x46, 0xbe, 0x33, 0x0b, - 0x9b, 0x79, 0xcc, 0x5a, 0x9a, 0x3d, 0x1b, 0x60, 0x9a, 0xbc, 0x0b, 0x25, 0x6f, 0x1e, 0xce, 0x3c, - 0xc7, 0x0d, 0x9b, 0x85, 0xbb, 0x99, 0x7b, 0x95, 0x87, 0xcb, 0xa2, 0x21, 0xfd, 0x79, 0x78, 0xc4, - 0xc0, 0xa6, 0x22, 0x20, 0x6f, 0x41, 0x6d, 0xe4, 0xb9, 0xa7, 0x8e, 0x3f, 0xb5, 0x43, 0xc7, 0x73, - 0x83, 0xe6, 0x12, 0xd6, 0x15, 0x07, 0x1a, 0xff, 0x3c, 0x0b, 0x95, 0xa1, 0x6f, 0xbb, 0x81, 0x3d, - 0x62, 0x00, 0xb2, 0x09, 0xc5, 0xf0, 0xd2, 0x3a, 0xb7, 0x83, 0x73, 0xec, 0x6a, 0xd9, 0x5c, 0x0a, - 0x2f, 0xf7, 0xed, 0xe0, 0x9c, 0x6c, 0xc0, 0x12, 0x6f, 0x25, 0x76, 0x28, 0x67, 0x8a, 0x14, 0x79, - 0x17, 0x56, 0xdc, 0xf9, 0xd4, 0x8a, 0x57, 0xc5, 0xba, 0x55, 0x30, 0x1b, 0xee, 0x7c, 0xda, 0xd6, - 0xe1, 0xac, 0xf3, 0x27, 0x13, 0x6f, 0xf4, 0x8c, 0x57, 0xc0, 0xbb, 0x57, 0x46, 0x08, 0xd6, 0xf1, - 0x06, 0x54, 0x05, 0x9a, 0x3a, 0x67, 0xe7, 0xbc, 0x8f, 0x05, 0xb3, 0xc2, 0x09, 0x10, 0xc4, 0x4a, - 0x08, 0x9d, 0x29, 0xb5, 0x82, 0xd0, 0x9e, 0xce, 0x44, 0x97, 0xca, 0x0c, 0x32, 0x60, 0x00, 0x44, - 0x7b, 0xa1, 0x3d, 0xb1, 0x4e, 0x29, 0x0d, 0x9a, 0x45, 0x81, 0x66, 0x90, 0x3d, 0x4a, 0x03, 0xf2, - 0x1d, 0xa8, 0x8f, 0x69, 0x10, 0x5a, 0x62, 0x32, 0x68, 0xd0, 0x2c, 0xdd, 0xcd, 0xdd, 0x2b, 0x9b, - 0x35, 0x06, 0x6d, 0x49, 0x20, 0x79, 0x0d, 0xc0, 0xb7, 0x9f, 0x5b, 0x6c, 0x20, 0xe8, 0x65, 0xb3, - 0xcc, 0x67, 0xc1, 0xb7, 0x9f, 0x0f, 0x2f, 0xf7, 0xe9, 0x25, 0x59, 0x83, 0xc2, 0xc4, 0x3e, 0xa1, - 0x93, 0x26, 0x20, 0x82, 0x27, 0x8c, 0x5f, 0x80, 0x8d, 0x27, 0x34, 0xd4, 0x86, 0x32, 0x30, 0xe9, - 0xd7, 0x73, 0x1a, 0x84, 0xac, 0x57, 0x41, 0x68, 0xfb, 0xa1, 0xec, 0x55, 0x86, 0xf7, 0x0a, 0x61, - 0x51, 0xaf, 0xa8, 0x3b, 0x96, 0x04, 0x59, 0x24, 0x28, 0x53, 0x77, 0xcc, 0xd1, 0xc6, 0x01, 0x10, - 0xad, 0xe0, 0x5d, 0x1a, 0xda, 0xce, 0x24, 0x20, 0x9f, 0x40, 0x35, 0xd4, 0xaa, 0x6b, 0x66, 0xee, - 0xe6, 0xee, 0x55, 0xd4, 0xd2, 0xd4, 0x32, 0x98, 0x31, 0x3a, 0xe3, 0x1c, 0x4a, 0x7b, 0x94, 0x1e, - 0x38, 0x53, 0x27, 0x24, 0x1b, 0x50, 0x38, 0x75, 0x2e, 0xe9, 0x18, 0x1b, 0x95, 0xdb, 0xbf, 0x61, - 0xf2, 0x24, 0xb9, 0x03, 0x80, 0x3f, 0xac, 0xa9, 0x5a, 0xa5, 0xfb, 0x37, 0xcc, 0x32, 0xc2, 0x0e, - 0x03, 0x3b, 0x24, 0x5b, 0x50, 0x9c, 0x51, 0x7f, 0x44, 0xe5, 0x7a, 0xd8, 0xbf, 0x61, 0x4a, 0xc0, - 0x4e, 0x11, 0x0a, 0x13, 0x56, 0xba, 0xf1, 0xfb, 0x05, 0xa8, 0x0c, 0xa8, 0x3b, 0x96, 0x23, 0x41, - 0x20, 0xcf, 0x06, 0x1a, 0x2b, 0xab, 0x9a, 0xf8, 0x9b, 0xbc, 0x09, 0x15, 0x9c, 0x92, 0x20, 0xf4, - 0x1d, 0xf7, 0x8c, 0xef, 0x96, 0x9d, 0x6c, 0x33, 0x63, 0x02, 0x03, 0x0f, 0x10, 0x4a, 0x1a, 0x90, - 0xb3, 0xa7, 0x72, 0xb7, 0xb0, 0x9f, 0xe4, 0x26, 0x94, 0xec, 0x69, 0xc8, 0x9b, 0x57, 0x45, 0x70, - 0xd1, 0x9e, 0x86, 0xd8, 0xb4, 0x37, 0xa0, 0x3a, 0xb3, 0xaf, 0xa6, 0xd4, 0x0d, 0xa3, 0x65, 0x56, - 0x35, 0x2b, 0x02, 0x86, 0x0b, 0xed, 0x21, 0xac, 0xea, 0x24, 0xb2, 0xf2, 0x82, 0xaa, 0x7c, 0x45, - 0xa3, 0x16, 0x6d, 0x78, 0x07, 0x96, 0x65, 0x1e, 0x9f, 0xf7, 0x07, 0x97, 0x5f, 0xd9, 0xac, 0x0b, - 0xb0, 0xec, 0xe5, 0x3d, 0x68, 0x9c, 0x3a, 0xae, 0x3d, 0xb1, 0x46, 0x93, 0xf0, 0xc2, 0x1a, 0xd3, - 0x49, 0x68, 0xe3, 0x4a, 0x2c, 0x98, 0x75, 0x84, 0xb7, 0x27, 0xe1, 0xc5, 0x2e, 0x83, 0x92, 0xf7, - 0xa0, 0x7c, 0x4a, 0xa9, 0x85, 0x83, 0xd5, 0x2c, 0xc5, 0x36, 0xb4, 0x9c, 0x21, 0xb3, 0x74, 0x2a, - 0xe7, 0xea, 0x3d, 0x68, 0x78, 0xf3, 0xf0, 0xcc, 0x73, 0xdc, 0x33, 0x6b, 0x74, 0x6e, 0xbb, 0x96, - 0x33, 0xc6, 0xb5, 0x99, 0xdf, 0xc9, 0x3e, 0xc8, 0x98, 0x75, 0x89, 0x6b, 0x9f, 0xdb, 0x6e, 0x77, - 0x4c, 0xde, 0x86, 0xe5, 0x89, 0x1d, 0x84, 0xd6, 0xb9, 0x37, 0xb3, 0x66, 0xf3, 0x93, 0x67, 0xf4, - 0xaa, 0x59, 0xc3, 0x81, 0xa8, 0x31, 0xf0, 0xbe, 0x37, 0x3b, 0x42, 0x20, 0x5b, 0x7a, 0xd8, 0x4e, - 0xde, 0x08, 0xb6, 0xa4, 0x6b, 0x66, 0x99, 0x41, 0x78, 0xa5, 0x5f, 0xc1, 0x2a, 0x4e, 0xcf, 0x68, - 0x1e, 0x84, 0xde, 0xd4, 0xf2, 0xe9, 0xc8, 0xf3, 0xc7, 0x41, 0xb3, 0x82, 0x6b, 0xed, 0xbb, 0xa2, - 0xb1, 0xda, 0x1c, 0x6f, 0xef, 0xd2, 0x20, 0x6c, 0x23, 0xb1, 0xc9, 0x69, 0x3b, 0x6e, 0xe8, 0x5f, - 0x99, 0x2b, 0xe3, 0x24, 0x9c, 0xbc, 0x07, 0xc4, 0x9e, 0x4c, 0xbc, 0xe7, 0x56, 0x40, 0x27, 0xa7, - 0x96, 0x18, 0xc4, 0x66, 0xfd, 0x6e, 0xe6, 0x5e, 0xc9, 0x6c, 0x20, 0x66, 0x40, 0x27, 0xa7, 0x47, - 0x1c, 0x4e, 0x3e, 0x01, 0xdc, 0xa4, 0xd6, 0x29, 0xb5, 0xc3, 0xb9, 0x4f, 0x83, 0xe6, 0xf2, 0xdd, - 0xdc, 0xbd, 0xfa, 0xc3, 0x15, 0x35, 0x5e, 0x08, 0xde, 0x71, 0x42, 0xb3, 0xca, 0xe8, 0x44, 0x3a, - 0xd8, 0xda, 0x85, 0x8d, 0xf4, 0x26, 0xb1, 0x45, 0xc5, 0x46, 0x85, 0x2d, 0xc6, 0xbc, 0xc9, 0x7e, - 0xb2, 0x9d, 0x7d, 0x61, 0x4f, 0xe6, 0x14, 0x57, 0x61, 0xd5, 0xe4, 0x89, 0xef, 0x65, 0x3f, 0xcb, - 0x18, 0xbf, 0x97, 0x81, 0x2a, 0xef, 0x65, 0x30, 0xf3, 0xdc, 0x80, 0x92, 0x37, 0xa1, 0x26, 0x57, - 0x03, 0xf5, 0x7d, 0xcf, 0x17, 0xdc, 0x52, 0xae, 0xbc, 0x0e, 0x83, 0x91, 0xef, 0x42, 0x43, 0x12, - 0xcd, 0x7c, 0xea, 0x4c, 0xed, 0x33, 0x59, 0xb4, 0x5c, 0x4a, 0x47, 0x02, 0x4c, 0x3e, 0x8c, 0xca, - 0xf3, 0xbd, 0x79, 0x48, 0x71, 0xad, 0x57, 0x1e, 0x56, 0x45, 0xf7, 0x4c, 0x06, 0x53, 0xa5, 0x63, - 0xea, 0x15, 0xd6, 0xb9, 0xf1, 0x5b, 0x19, 0x20, 0xac, 0xd9, 0x43, 0x8f, 0x17, 0x10, 0x71, 0xa4, - 0x58, 0xce, 0xcc, 0x2b, 0xef, 0x90, 0xec, 0x8b, 0x76, 0x88, 0x01, 0x05, 0xde, 0xf6, 0x7c, 0x4a, - 0xdb, 0x39, 0xea, 0x47, 0xf9, 0x52, 0xae, 0x91, 0x37, 0xfe, 0x73, 0x0e, 0xd6, 0xd8, 0x3a, 0x75, - 0xe9, 0xa4, 0x35, 0x1a, 0xd1, 0x99, 0xda, 0x3b, 0x77, 0xa0, 0xe2, 0x7a, 0x63, 0x2a, 0x57, 0x2c, - 0x6f, 0x18, 0x30, 0x90, 0xb6, 0x5c, 0xcf, 0x6d, 0xc7, 0xe5, 0x0d, 0xe7, 0x83, 0x59, 0x46, 0x08, - 0x36, 0xfb, 0x6d, 0x58, 0x9e, 0x51, 0x77, 0xac, 0x6f, 0x91, 0x1c, 0x5f, 0xf5, 0x02, 0x2c, 0x76, - 0xc7, 0x1d, 0xa8, 0x9c, 0xce, 0x39, 0x1d, 0x63, 0x2c, 0x79, 0x5c, 0x03, 0x20, 0x40, 0x2d, 0xce, - 0x5f, 0x66, 0xf3, 0xe0, 0x1c, 0xb1, 0x05, 0xc4, 0x16, 0x59, 0x9a, 0xa1, 0x6e, 0x03, 0x8c, 0xe7, - 0x41, 0x28, 0x76, 0xcc, 0x12, 0x22, 0xcb, 0x0c, 0xc2, 0x77, 0xcc, 0xfb, 0xb0, 0x3a, 0xb5, 0x2f, - 0x2d, 0x5c, 0x3b, 0x96, 0xe3, 0x5a, 0xa7, 0x13, 0x64, 0xea, 0x45, 0xa4, 0x6b, 0x4c, 0xed, 0xcb, - 0x2f, 0x18, 0xa6, 0xeb, 0xee, 0x21, 0x9c, 0xb1, 0x95, 0x11, 0x1f, 0x09, 0xcb, 0xa7, 0x01, 0xf5, - 0x2f, 0x28, 0x72, 0x82, 0xbc, 0x59, 0x17, 0x60, 0x93, 0x43, 0x59, 0x8b, 0xa6, 0xac, 0xdf, 0xe1, - 0x64, 0xc4, 0xb7, 0xbd, 0x59, 0x9c, 0x3a, 0xee, 0x7e, 0x38, 0x19, 0xb1, 0xf3, 0x8a, 0xf1, 0x91, - 0x19, 0xf5, 0xad, 0x67, 0xcf, 0x71, 0x0f, 0xe7, 0x91, 0x6f, 0x1c, 0x51, 0xff, 0xe9, 0x73, 0x26, - 0x52, 0x8c, 0x02, 0x64, 0x44, 0xf6, 0x55, 0xb3, 0x82, 0x1b, 0xbc, 0x34, 0x0a, 0x18, 0x0b, 0xb2, - 0xaf, 0xd8, 0x26, 0x64, 0xad, 0xb5, 0x71, 0x16, 0xe8, 0x18, 0x8b, 0x0f, 0x90, 0xa3, 0xd6, 0xb0, - 0xb1, 0x2d, 0x81, 0x60, 0xf5, 0x04, 0x6c, 0xd5, 0xcb, 0xc6, 0x9e, 0x4e, 0xec, 0xb3, 0x00, 0x59, - 0x4a, 0xcd, 0xac, 0x0a, 0xe0, 0x1e, 0x83, 0x19, 0x7f, 0x9a, 0x85, 0xf5, 0xc4, 0xe4, 0x8a, 0x4d, - 0xc3, 0x64, 0x08, 0x84, 0xe0, 0xc4, 0x96, 0x4c, 0x91, 0x4a, 0x9b, 0xb5, 0x6c, 0xda, 0xac, 0xad, - 0x41, 0x81, 0x6f, 0xb6, 0x1c, 0x3f, 0x79, 0xa9, 0xdc, 0x65, 0xf3, 0xd9, 0xa9, 0xef, 0x31, 0x91, - 0xea, 0x7c, 0x1e, 0x8e, 0xbd, 0xe7, 0xae, 0x10, 0x2d, 0x96, 0x05, 0x7c, 0x20, 0xc0, 0xf1, 0xa1, - 0x28, 0x24, 0x86, 0xe2, 0x0e, 0x54, 0xc4, 0x0c, 0xa0, 0x68, 0xc6, 0x27, 0x16, 0x04, 0x88, 0xc9, - 0x66, 0xef, 0x02, 0x51, 0xf3, 0x69, 0xb1, 0x51, 0xc3, 0xd3, 0x87, 0x4f, 0xec, 0xb2, 0x23, 0x26, - 0xf4, 0xd0, 0xbe, 0xc4, 0x53, 0xe8, 0x2d, 0xa8, 0x33, 0x12, 0x36, 0x9e, 0xd6, 0x08, 0xe5, 0xa6, - 0x12, 0x1f, 0xab, 0xa9, 0x7d, 0xc9, 0x06, 0xb3, 0x8d, 0xd2, 0xd3, 0xeb, 0x50, 0x91, 0x93, 0x6a, - 0x39, 0xae, 0x98, 0xd7, 0xb2, 0x98, 0xd7, 0xae, 0xcb, 0xce, 0x12, 0x86, 0xe7, 0xe3, 0x64, 0x8d, - 0xe9, 0x2c, 0x3c, 0x17, 0x3c, 0xba, 0x3e, 0x75, 0x5c, 0x3e, 0xbc, 0xbb, 0x0c, 0x6a, 0xfc, 0x76, - 0x06, 0xaa, 0x62, 0xd4, 0x51, 0x12, 0x24, 0xdb, 0x40, 0xe4, 0x12, 0x0f, 0x2f, 0x9d, 0xb1, 0x75, - 0x72, 0x15, 0xd2, 0x80, 0xef, 0xa8, 0xfd, 0x1b, 0x66, 0x43, 0xe0, 0x86, 0x97, 0xce, 0x78, 0x87, - 0x61, 0xc8, 0x7d, 0x68, 0xc4, 0xe8, 0x83, 0xd0, 0xe7, 0xdb, 0x7d, 0xff, 0x86, 0x59, 0xd7, 0xa8, - 0x07, 0xa1, 0xcf, 0x18, 0x08, 0x93, 0x33, 0xe7, 0xa1, 0xe5, 0xb8, 0x63, 0x7a, 0x89, 0xf3, 0x51, - 0x33, 0x2b, 0x1c, 0xd6, 0x65, 0xa0, 0x9d, 0x3a, 0x54, 0xf5, 0xe2, 0x8c, 0x33, 0x28, 0x49, 0x21, - 0x15, 0xa5, 0xb4, 0x44, 0x93, 0xcc, 0x72, 0xa8, 0x5a, 0x72, 0x13, 0x4a, 0xf1, 0x16, 0x98, 0xc5, - 0xf0, 0x95, 0x2b, 0x36, 0xbe, 0x0f, 0x8d, 0x03, 0x36, 0x11, 0x2e, 0xdb, 0xc9, 0x42, 0xe8, 0xde, - 0x80, 0x25, 0x8d, 0xa3, 0x94, 0x4d, 0x91, 0x62, 0x02, 0xc9, 0xb9, 0x17, 0x84, 0xa2, 0x16, 0xfc, - 0x6d, 0xfc, 0x7e, 0x06, 0x48, 0x27, 0x08, 0x9d, 0xa9, 0x1d, 0xd2, 0x3d, 0xaa, 0x78, 0x66, 0x1f, - 0xaa, 0xac, 0xb4, 0xa1, 0xd7, 0xe2, 0x52, 0x30, 0x97, 0xb6, 0xde, 0x15, 0x3c, 0x6e, 0x31, 0xc3, - 0xb6, 0x4e, 0xcd, 0xcf, 0xc0, 0x58, 0x01, 0x6c, 0xb9, 0x85, 0xb6, 0x7f, 0x46, 0x43, 0x94, 0x9d, - 0x85, 0xd0, 0x07, 0x1c, 0xc4, 0xa4, 0xe6, 0xad, 0x1f, 0xc0, 0xca, 0x42, 0x19, 0xfa, 0xa1, 0x55, - 0x4e, 0x39, 0xb4, 0x72, 0xfa, 0xa1, 0x65, 0xc1, 0x6a, 0xac, 0x5d, 0x62, 0x17, 0x6e, 0x42, 0x91, - 0x71, 0x0b, 0xb6, 0x76, 0x33, 0x5c, 0x94, 0x3f, 0xa5, 0xb8, 0xbe, 0x3f, 0x80, 0xb5, 0x53, 0x4a, - 0x7d, 0x3b, 0x44, 0x24, 0xb2, 0x13, 0x36, 0x43, 0xa2, 0xe0, 0x15, 0x81, 0x1b, 0xd8, 0xe1, 0x11, - 0xf5, 0xd9, 0x4c, 0x19, 0xff, 0x2c, 0x0b, 0xcb, 0xec, 0x78, 0x39, 0xb4, 0xdd, 0x2b, 0x39, 0x4e, - 0x07, 0xa9, 0xe3, 0x74, 0x4f, 0x93, 0x14, 0x34, 0xea, 0x6f, 0x3a, 0x48, 0xb9, 0xe4, 0x20, 0x91, - 0xbb, 0x50, 0x8d, 0xb5, 0xb5, 0x80, 0x6d, 0x85, 0x40, 0x35, 0x32, 0x12, 0xd7, 0x97, 0x34, 0x71, - 0x9d, 0x71, 0x02, 0xb6, 0xb1, 0x58, 0xa9, 0x81, 0x90, 0xce, 0x18, 0x7b, 0x65, 0x65, 0x06, 0xec, - 0x4e, 0x13, 0x30, 0xce, 0x63, 0xcd, 0x5d, 0x71, 0xaf, 0xa1, 0x63, 0xdc, 0xbe, 0x25, 0xb3, 0x81, - 0x88, 0xe3, 0x08, 0xfe, 0x67, 0x9f, 0xa6, 0xb7, 0xa1, 0x11, 0x0d, 0x8b, 0x98, 0x23, 0x02, 0x79, - 0xb6, 0xe4, 0x45, 0x01, 0xf8, 0xdb, 0xf8, 0x5f, 0x19, 0x4e, 0xd8, 0xf6, 0x9c, 0xe8, 0x72, 0x41, - 0x20, 0xcf, 0x2e, 0x33, 0x92, 0x90, 0xfd, 0xbe, 0xf6, 0xaa, 0xf6, 0x2d, 0x0c, 0xe6, 0x4d, 0x28, - 0x05, 0x6c, 0x60, 0xec, 0x09, 0x1f, 0xcf, 0x92, 0x59, 0x64, 0xe9, 0xd6, 0x64, 0x12, 0x8d, 0x73, - 0xf1, 0xda, 0x71, 0x2e, 0xbd, 0xca, 0x38, 0x97, 0xd3, 0xc7, 0xd9, 0x78, 0x07, 0x56, 0xb4, 0xde, - 0xbf, 0x60, 0x9c, 0x7a, 0x40, 0x0e, 0x9c, 0x20, 0x3c, 0x76, 0x59, 0x11, 0x4a, 0xb2, 0x88, 0x35, - 0x24, 0x93, 0x68, 0x08, 0x43, 0xda, 0x97, 0x02, 0x99, 0x15, 0x48, 0xfb, 0x12, 0x91, 0xc6, 0x67, - 0xb0, 0x1a, 0x2b, 0x4f, 0x54, 0xfd, 0x06, 0x14, 0xe6, 0xe1, 0xa5, 0x27, 0xef, 0x5d, 0x15, 0xb1, - 0xc2, 0x8f, 0xc3, 0x4b, 0xcf, 0xe4, 0x18, 0xe3, 0x31, 0xac, 0xf4, 0xe8, 0x73, 0xc1, 0x84, 0x64, - 0x43, 0xde, 0x86, 0xfc, 0x4b, 0x34, 0x09, 0x88, 0x37, 0xb6, 0x81, 0xe8, 0x99, 0x45, 0xad, 0x9a, - 0x62, 0x21, 0x13, 0x53, 0x2c, 0x18, 0x6f, 0x03, 0x19, 0x38, 0x67, 0xee, 0x21, 0x0d, 0x02, 0xfb, - 0x4c, 0xb1, 0xad, 0x06, 0xe4, 0xa6, 0xc1, 0x99, 0xe0, 0xb1, 0xec, 0xa7, 0xf1, 0x11, 0xac, 0xc6, - 0xe8, 0x44, 0xc1, 0xaf, 0x41, 0x39, 0x70, 0xce, 0x5c, 0x94, 0x9a, 0x45, 0xd1, 0x11, 0xc0, 0xd8, - 0x83, 0xb5, 0x2f, 0xa8, 0xef, 0x9c, 0x5e, 0xbd, 0xac, 0xf8, 0x78, 0x39, 0xd9, 0x64, 0x39, 0x1d, - 0x58, 0x4f, 0x94, 0x23, 0xaa, 0xe7, 0xdb, 0x43, 0xcc, 0x64, 0xc9, 0xe4, 0x09, 0x8d, 0x6f, 0x67, - 0x75, 0xbe, 0x6d, 0x78, 0x40, 0xda, 0x9e, 0xeb, 0xd2, 0x51, 0x78, 0x44, 0xa9, 0x2f, 0x1b, 0xf3, - 0xae, 0xb6, 0x17, 0x2a, 0x0f, 0x37, 0xc5, 0xc8, 0x26, 0x0f, 0x03, 0xb1, 0x49, 0x08, 0xe4, 0x67, - 0xd4, 0x9f, 0x62, 0xc1, 0x25, 0x13, 0x7f, 0xb3, 0xc1, 0x0d, 0x9d, 0x29, 0xf5, 0xe6, 0xfc, 0xaa, - 0x99, 0x37, 0x65, 0xd2, 0x58, 0x87, 0xd5, 0x58, 0x85, 0xbc, 0xd5, 0xc6, 0x03, 0x58, 0xdf, 0x75, - 0x82, 0xd1, 0x62, 0x53, 0x36, 0xa1, 0x38, 0x9b, 0x9f, 0x58, 0xf1, 0x13, 0xe7, 0x29, 0xbd, 0x32, - 0x9a, 0xb0, 0x91, 0xcc, 0x21, 0xca, 0xfa, 0xf5, 0x2c, 0xe4, 0xf7, 0x87, 0x07, 0x6d, 0xb2, 0x05, - 0x25, 0xc7, 0x1d, 0x79, 0x53, 0x26, 0x6f, 0xf3, 0xd1, 0x50, 0xe9, 0x6b, 0xb7, 0xf6, 0x2d, 0x28, - 0xa3, 0x98, 0x3e, 0xf1, 0x46, 0xcf, 0x84, 0xc4, 0x5b, 0x62, 0x80, 0x03, 0x6f, 0xf4, 0x8c, 0x6d, - 0x33, 0x7a, 0x39, 0x73, 0x7c, 0x54, 0xc2, 0x48, 0x25, 0x43, 0x9e, 0x8b, 0x78, 0x11, 0x22, 0x52, - 0x45, 0x08, 0x69, 0x84, 0x9d, 0xaf, 0x5c, 0xf4, 0x2d, 0x9f, 0xa3, 0x34, 0x32, 0xa6, 0x97, 0xe4, - 0x7d, 0x20, 0xa7, 0x9e, 0xff, 0xdc, 0xf6, 0x95, 0xb4, 0xe6, 0x0a, 0xd6, 0x9a, 0x37, 0x57, 0x22, - 0x8c, 0x90, 0x44, 0xc8, 0x43, 0x58, 0xd7, 0xc8, 0xb5, 0x82, 0xb9, 0xd4, 0xb4, 0x1a, 0x21, 0xf7, - 0x65, 0x15, 0xc6, 0xaf, 0x65, 0x81, 0x88, 0xfc, 0x6d, 0xcf, 0x0d, 0x42, 0xdf, 0x76, 0xdc, 0x30, - 0x88, 0xcb, 0x6e, 0x99, 0x84, 0xec, 0x76, 0x0f, 0x1a, 0x28, 0x39, 0xea, 0x02, 0x5c, 0x36, 0x12, - 0xa3, 0xcd, 0x48, 0x88, 0x7b, 0x0b, 0xea, 0x91, 0xf4, 0xae, 0x74, 0x70, 0x79, 0xb3, 0xaa, 0x24, - 0x78, 0x71, 0x14, 0x32, 0x86, 0x20, 0xa5, 0x52, 0xa5, 0x6a, 0xe0, 0x17, 0x85, 0x95, 0xa9, 0x7d, - 0x79, 0x44, 0xe5, 0x5d, 0x01, 0xc5, 0x3d, 0x03, 0x6a, 0x4a, 0x90, 0x43, 0x4a, 0x3e, 0x72, 0x15, - 0x21, 0xca, 0x21, 0x4d, 0xba, 0xac, 0xbd, 0x94, 0x2e, 0x6b, 0x1b, 0xff, 0xa1, 0x0c, 0x45, 0x39, - 0x8c, 0x28, 0x38, 0x87, 0xce, 0x05, 0x8d, 0x04, 0x67, 0x96, 0x62, 0xf2, 0xb8, 0x4f, 0xa7, 0x5e, - 0xa8, 0x2e, 0x4c, 0x7c, 0x9b, 0x54, 0x39, 0x50, 0x5c, 0x99, 0x34, 0xa1, 0x9d, 0xab, 0x0e, 0xb9, - 0xf4, 0x2c, 0x85, 0x76, 0x2e, 0x92, 0xdd, 0x82, 0xa2, 0x14, 0xbd, 0xf3, 0x4a, 0xa7, 0xb0, 0x34, - 0xe2, 0x72, 0xf7, 0x16, 0x94, 0x46, 0xf6, 0xcc, 0x1e, 0x39, 0xe1, 0x95, 0x38, 0x13, 0x54, 0x9a, - 0x95, 0x3e, 0xf1, 0x46, 0xf6, 0xc4, 0x3a, 0xb1, 0x27, 0xb6, 0x3b, 0xa2, 0x42, 0x27, 0x57, 0x45, - 0xe0, 0x0e, 0x87, 0x91, 0xef, 0x40, 0x5d, 0xb4, 0x53, 0x52, 0x71, 0xd5, 0x9c, 0x68, 0xbd, 0x24, - 0x63, 0x97, 0x3b, 0x6f, 0xca, 0xe6, 0xe5, 0x94, 0xf2, 0x6b, 0x50, 0xce, 0x2c, 0x73, 0xc8, 0x1e, - 0xc5, 0xde, 0x0a, 0xf4, 0x73, 0xbe, 0x86, 0xcb, 0xbc, 0x2a, 0x0e, 0xfc, 0x92, 0xaf, 0xdf, 0xc5, - 0xbb, 0x50, 0x4e, 0xbb, 0x0b, 0xbd, 0x0b, 0x2b, 0x73, 0x37, 0xa0, 0x61, 0x38, 0xa1, 0x63, 0xd5, - 0x96, 0x0a, 0x12, 0x35, 0x14, 0x42, 0x36, 0x67, 0x1b, 0x56, 0xb9, 0x32, 0x31, 0xb0, 0x43, 0x2f, - 0x38, 0x77, 0x02, 0x2b, 0xa0, 0xae, 0x54, 0x37, 0xad, 0x20, 0x6a, 0x20, 0x30, 0x03, 0xae, 0xa2, - 0xd8, 0x4c, 0xd0, 0xfb, 0x74, 0x44, 0x9d, 0x0b, 0x3a, 0xc6, 0x7b, 0x52, 0xce, 0x5c, 0x8f, 0xe5, - 0x31, 0x05, 0x12, 0x2f, 0xbd, 0xf3, 0xa9, 0x35, 0x9f, 0x8d, 0x6d, 0x26, 0x0f, 0xd7, 0xf9, 0xc5, - 0xc3, 0x9d, 0x4f, 0x8f, 0x39, 0x84, 0x3c, 0x00, 0x79, 0x11, 0x12, 0x6b, 0x66, 0x39, 0x76, 0xe4, - 0x30, 0xae, 0x61, 0x56, 0x05, 0x05, 0xbf, 0xa8, 0xdd, 0xd1, 0x37, 0x4b, 0x83, 0xad, 0x30, 0xbc, - 0xb4, 0x47, 0x1b, 0xa6, 0x09, 0xc5, 0x99, 0xef, 0x5c, 0xd8, 0x21, 0x6d, 0xae, 0xf0, 0x73, 0x5c, - 0x24, 0x19, 0x03, 0x77, 0x5c, 0x27, 0x74, 0xec, 0xd0, 0xf3, 0x9b, 0x04, 0x71, 0x11, 0x80, 0xdc, - 0x87, 0x15, 0x5c, 0x27, 0x41, 0x68, 0x87, 0xf3, 0x40, 0xdc, 0x02, 0x57, 0xf9, 0x6d, 0x8b, 0x21, - 0x06, 0x08, 0xc7, 0x8b, 0x20, 0xf9, 0x14, 0x36, 0xf8, 0xd2, 0x58, 0xd8, 0x9a, 0x6b, 0x6c, 0x38, - 0xb0, 0x45, 0xab, 0x48, 0xd1, 0x8e, 0xef, 0xd1, 0xcf, 0x61, 0x53, 0x2c, 0x97, 0x85, 0x9c, 0xeb, - 0x2a, 0xe7, 0x1a, 0x27, 0x49, 0x64, 0xdd, 0x86, 0x15, 0xd6, 0x34, 0x67, 0x64, 0x89, 0x12, 0xd8, - 0xae, 0xd8, 0x60, 0xbd, 0xc0, 0x4c, 0xcb, 0x1c, 0x69, 0x22, 0xee, 0x29, 0xbd, 0x22, 0xdf, 0x87, - 0x65, 0xbe, 0x7c, 0x50, 0xd5, 0x81, 0x07, 0xf3, 0x16, 0x1e, 0xcc, 0xeb, 0x62, 0x70, 0xdb, 0x0a, - 0x8b, 0x67, 0x73, 0x7d, 0x14, 0x4b, 0xb3, 0xad, 0x31, 0x71, 0x4e, 0x29, 0x3b, 0x27, 0x9a, 0x9b, - 0x7c, 0xb1, 0xc9, 0x34, 0xdb, 0xb5, 0xf3, 0x19, 0x62, 0x9a, 0x9c, 0x59, 0xf3, 0x14, 0xae, 0xe3, - 0x89, 0x17, 0x50, 0xa9, 0x86, 0x6e, 0xde, 0x14, 0x1b, 0x92, 0x01, 0xe5, 0x95, 0x85, 0xdd, 0x89, - 0xb9, 0x02, 0x42, 0x19, 0x0b, 0x6e, 0xe1, 0xc2, 0xa8, 0x71, 0x3d, 0x84, 0x34, 0x18, 0x30, 0xa1, - 0xee, 0xdc, 0x7e, 0x2e, 0xd9, 0xfa, 0x6b, 0xc8, 0x4d, 0x80, 0x81, 0x04, 0x43, 0xdf, 0x83, 0x15, - 0x31, 0x0b, 0x11, 0x33, 0x6d, 0xde, 0xc6, 0x23, 0xf2, 0xa6, 0xec, 0xe3, 0x02, 0xb7, 0x35, 0x1b, - 0x7c, 0x5e, 0x34, 0xfe, 0xbb, 0x0f, 0x44, 0x4e, 0x8a, 0x56, 0xd0, 0xeb, 0x2f, 0x2b, 0x68, 0x45, - 0x4c, 0x53, 0x04, 0x32, 0x7e, 0x37, 0xc3, 0x25, 0x2a, 0x41, 0x1d, 0x68, 0xca, 0x1f, 0xce, 0xd7, - 0x2c, 0xcf, 0x9d, 0x5c, 0x09, 0x56, 0x07, 0x1c, 0xd4, 0x77, 0x27, 0xc8, 0x6b, 0x1c, 0x57, 0x27, - 0xe1, 0x87, 0x77, 0x55, 0x02, 0x91, 0xe8, 0x0e, 0x54, 0x66, 0xf3, 0x93, 0x89, 0x33, 0xe2, 0x24, - 0x39, 0x5e, 0x0a, 0x07, 0x21, 0xc1, 0x1b, 0x50, 0x15, 0x6b, 0x9d, 0x53, 0xe4, 0x91, 0xa2, 0x22, - 0x60, 0x48, 0x82, 0xc2, 0x01, 0xf5, 0x91, 0xd9, 0x55, 0x4d, 0xfc, 0x6d, 0xec, 0xc0, 0x5a, 0xbc, - 0xd1, 0x42, 0x72, 0xb9, 0x0f, 0x25, 0xc1, 0x49, 0xa5, 0x5a, 0xb4, 0x1e, 0x1f, 0x0d, 0x53, 0xe1, - 0x8d, 0xff, 0x58, 0x80, 0x55, 0x39, 0x46, 0x6c, 0xb2, 0x07, 0xf3, 0xe9, 0xd4, 0xf6, 0x53, 0x58, - 0x74, 0xe6, 0xc5, 0x2c, 0x3a, 0xbb, 0xc0, 0xa2, 0xe3, 0x7a, 0x31, 0xce, 0xe1, 0xe3, 0x7a, 0x31, - 0xb6, 0xba, 0xf8, 0x6d, 0x5c, 0xb7, 0xbe, 0xd4, 0x04, 0x78, 0xc8, 0xad, 0x3c, 0x0b, 0x07, 0x4a, - 0x21, 0xe5, 0x40, 0xd1, 0x8f, 0x83, 0xa5, 0xc4, 0x71, 0xf0, 0x06, 0xf0, 0x65, 0x2c, 0xd7, 0x63, - 0x91, 0x5f, 0xd0, 0x11, 0x26, 0x16, 0xe4, 0x3b, 0xb0, 0x9c, 0xe4, 0xc0, 0x9c, 0xd5, 0xd7, 0x53, - 0xf8, 0xaf, 0x33, 0xa5, 0x28, 0xd4, 0x68, 0xc4, 0x65, 0xc1, 0x7f, 0x9d, 0x29, 0x3d, 0x40, 0x8c, - 0xa4, 0xef, 0x00, 0xf0, 0xba, 0x71, 0x1b, 0x03, 0x6e, 0xe3, 0xb7, 0x13, 0x2b, 0x53, 0x1b, 0xf5, - 0x6d, 0x96, 0x98, 0xfb, 0x14, 0xf7, 0x75, 0x19, 0x73, 0xe2, 0x96, 0xfe, 0x14, 0xea, 0xde, 0x8c, - 0xba, 0x56, 0xc4, 0x05, 0x2b, 0x58, 0x54, 0x43, 0x14, 0xd5, 0x95, 0x70, 0xb3, 0xc6, 0xe8, 0x54, - 0x92, 0x7c, 0xce, 0x07, 0x99, 0x6a, 0x39, 0xab, 0xd7, 0xe4, 0xac, 0x23, 0x61, 0x94, 0xf5, 0x23, - 0xd4, 0x3d, 0x79, 0x93, 0x39, 0x37, 0xe5, 0xd4, 0x70, 0x1d, 0x49, 0xdd, 0xb6, 0xa9, 0x30, 0xa6, - 0x4e, 0x65, 0xfc, 0x46, 0x06, 0x2a, 0x5a, 0x1f, 0xc8, 0x3a, 0xac, 0xb4, 0xfb, 0xfd, 0xa3, 0x8e, - 0xd9, 0x1a, 0x76, 0xbf, 0xe8, 0x58, 0xed, 0x83, 0xfe, 0xa0, 0xd3, 0xb8, 0xc1, 0xc0, 0x07, 0xfd, - 0x76, 0xeb, 0xc0, 0xda, 0xeb, 0x9b, 0x6d, 0x09, 0xce, 0x90, 0x0d, 0x20, 0x66, 0xe7, 0xb0, 0x3f, - 0xec, 0xc4, 0xe0, 0x59, 0xd2, 0x80, 0xea, 0x8e, 0xd9, 0x69, 0xb5, 0xf7, 0x05, 0x24, 0x47, 0xd6, - 0xa0, 0xb1, 0x77, 0xdc, 0xdb, 0xed, 0xf6, 0x9e, 0x58, 0xed, 0x56, 0xaf, 0xdd, 0x39, 0xe8, 0xec, - 0x36, 0xf2, 0xa4, 0x06, 0xe5, 0xd6, 0x4e, 0xab, 0xb7, 0xdb, 0xef, 0x75, 0x76, 0x1b, 0x05, 0xe3, - 0x7f, 0x64, 0x00, 0xa2, 0x86, 0x32, 0xbe, 0x1a, 0x35, 0x55, 0x37, 0x9d, 0xae, 0x2f, 0x74, 0x8a, - 0xf3, 0x55, 0x3f, 0x96, 0x26, 0x0f, 0xa1, 0xe8, 0xcd, 0xc3, 0x91, 0x37, 0xe5, 0x97, 0x88, 0xfa, - 0xc3, 0xe6, 0x42, 0xbe, 0x3e, 0xc7, 0x9b, 0x92, 0x30, 0x66, 0x1e, 0xcd, 0xbd, 0xcc, 0x3c, 0x1a, - 0xb7, 0xc3, 0x72, 0xb9, 0x4e, 0xb3, 0xc3, 0xde, 0x06, 0x08, 0x9e, 0x53, 0x3a, 0x43, 0xe5, 0x95, - 0xd8, 0x05, 0x65, 0x84, 0x0c, 0xd9, 0x1d, 0xf3, 0x8f, 0x32, 0xb0, 0x8e, 0x6b, 0x69, 0x9c, 0x64, - 0x62, 0x77, 0xa1, 0x32, 0xf2, 0xbc, 0x19, 0x65, 0x42, 0xb5, 0x92, 0xd7, 0x74, 0x10, 0x63, 0x50, - 0x9c, 0x21, 0x9f, 0x7a, 0xfe, 0x88, 0x0a, 0x1e, 0x06, 0x08, 0xda, 0x63, 0x10, 0xb6, 0x87, 0xc4, - 0x26, 0xe4, 0x14, 0x9c, 0x85, 0x55, 0x38, 0x8c, 0x93, 0x6c, 0xc0, 0xd2, 0x89, 0x4f, 0xed, 0xd1, - 0xb9, 0xe0, 0x5e, 0x22, 0x45, 0xbe, 0x1b, 0x29, 0xf1, 0x46, 0x6c, 0x4f, 0x4c, 0x28, 0x6f, 0x7c, - 0xc9, 0x5c, 0x16, 0xf0, 0xb6, 0x00, 0xb3, 0x73, 0xde, 0x3e, 0xb1, 0xdd, 0xb1, 0xe7, 0xd2, 0xb1, - 0xb8, 0xcb, 0x47, 0x00, 0xe3, 0x08, 0x36, 0x92, 0xfd, 0x13, 0xfc, 0xee, 0x13, 0x8d, 0xdf, 0xf1, - 0xab, 0xef, 0xd6, 0xf5, 0x7b, 0x4c, 0xe3, 0x7d, 0xff, 0x3a, 0x0f, 0x79, 0x76, 0xe1, 0xb9, 0xf6, - 0x6e, 0xa4, 0xdf, 0x6d, 0x73, 0x0b, 0x46, 0x73, 0xd4, 0x15, 0x72, 0x01, 0x4c, 0x4c, 0x16, 0x42, - 0x50, 0xf0, 0x52, 0x68, 0x9f, 0x8e, 0x2e, 0xe4, 0x9d, 0x05, 0x21, 0x26, 0x1d, 0x5d, 0xa0, 0xd2, - 0xc2, 0x0e, 0x79, 0x5e, 0xce, 0xaf, 0x8a, 0x81, 0x1d, 0x62, 0x4e, 0x81, 0xc2, 0x7c, 0x45, 0x85, - 0xc2, 0x5c, 0x4d, 0x28, 0x3a, 0xee, 0x89, 0x37, 0x77, 0xa5, 0xea, 0x47, 0x26, 0xd1, 0x46, 0x8f, - 0x9c, 0x94, 0x1d, 0xed, 0x9c, 0x1b, 0x95, 0x18, 0x60, 0xc8, 0x0e, 0xf7, 0x0f, 0xa1, 0x1c, 0x5c, - 0xb9, 0x23, 0x9d, 0x07, 0xad, 0x89, 0xf1, 0x61, 0xbd, 0xdf, 0x1e, 0x5c, 0xb9, 0x23, 0x5c, 0xf1, - 0xa5, 0x40, 0xfc, 0x22, 0x8f, 0xa0, 0xa4, 0xac, 0x5a, 0xfc, 0x04, 0xb9, 0xa9, 0xe7, 0x90, 0xa6, - 0x2c, 0xae, 0x1f, 0x53, 0xa4, 0xe4, 0x03, 0x58, 0x42, 0x05, 0x78, 0xd0, 0xac, 0x62, 0x26, 0x79, - 0xe1, 0x65, 0xcd, 0x40, 0xf3, 0x38, 0x1d, 0xa3, 0x19, 0xca, 0x14, 0x64, 0x6c, 0x98, 0x4e, 0x27, - 0xf6, 0x4c, 0xa8, 0xa3, 0x6b, 0xdc, 0xca, 0xcc, 0x20, 0x5c, 0x17, 0x7d, 0x17, 0xaa, 0x68, 0x31, - 0x44, 0x1a, 0x97, 0xcb, 0xa1, 0x39, 0x13, 0x18, 0x6c, 0x6f, 0x62, 0xcf, 0x7a, 0xc1, 0xd6, 0x53, - 0xa8, 0xc5, 0x1a, 0xa3, 0xab, 0xb9, 0x6a, 0x5c, 0xcd, 0xf5, 0x96, 0xae, 0xe6, 0x8a, 0x8e, 0x42, - 0x91, 0x4d, 0x57, 0x7b, 0xfd, 0x00, 0x4a, 0x72, 0x2c, 0x18, 0xcf, 0x39, 0xee, 0x3d, 0xed, 0xf5, - 0xbf, 0xec, 0x59, 0x83, 0xaf, 0x7a, 0xed, 0xc6, 0x0d, 0xb2, 0x0c, 0x95, 0x56, 0x1b, 0xd9, 0x18, - 0x02, 0x32, 0x8c, 0xe4, 0xa8, 0x35, 0x18, 0x28, 0x48, 0xd6, 0xd8, 0x83, 0x46, 0xb2, 0xab, 0x6c, - 0x51, 0x87, 0x12, 0x26, 0x2c, 0x7b, 0x11, 0x20, 0xb2, 0x1f, 0x64, 0x35, 0xfb, 0x81, 0xf1, 0x08, - 0x1a, 0xec, 0x60, 0x67, 0x63, 0xad, 0xdb, 0xec, 0x27, 0x4c, 0xf4, 0xd6, 0xad, 0x7b, 0x25, 0xb3, - 0xc2, 0x61, 0x58, 0x95, 0xf1, 0x09, 0xac, 0x68, 0xd9, 0x22, 0xa5, 0x10, 0x13, 0x16, 0x92, 0x4a, - 0x21, 0xbc, 0xe8, 0x73, 0x8c, 0xb1, 0x09, 0xeb, 0x2c, 0xd9, 0xb9, 0xa0, 0x6e, 0x38, 0x98, 0x9f, - 0x70, 0x57, 0x0f, 0xc7, 0x73, 0x8d, 0x5f, 0xcb, 0x40, 0x59, 0x61, 0xae, 0xdf, 0x25, 0xdb, 0x42, - 0x7f, 0xc4, 0xd9, 0xe2, 0x96, 0x56, 0x03, 0x66, 0xdc, 0xc6, 0xbf, 0x31, 0x3d, 0x52, 0x59, 0x81, - 0xd8, 0xb0, 0x1e, 0x75, 0x3a, 0xa6, 0xd5, 0xef, 0x1d, 0x74, 0x7b, 0xec, 0x70, 0x60, 0xc3, 0x8a, - 0x80, 0xbd, 0x3d, 0x84, 0x64, 0x8c, 0x06, 0xd4, 0x9f, 0xd0, 0xb0, 0xeb, 0x9e, 0x7a, 0x62, 0x30, - 0x8c, 0x3f, 0xbf, 0x04, 0xcb, 0x0a, 0x14, 0xe9, 0xa1, 0x2e, 0xa8, 0x1f, 0x38, 0x9e, 0x8b, 0xeb, - 0xa4, 0x6c, 0xca, 0x24, 0x63, 0x6f, 0xe2, 0x96, 0x86, 0x62, 0xc6, 0x1a, 0x62, 0xc5, 0xbd, 0x0e, - 0x65, 0x8c, 0x77, 0x60, 0xd9, 0x19, 0x53, 0x37, 0x74, 0xc2, 0x2b, 0x2b, 0xa6, 0x95, 0xaf, 0x4b, - 0xb0, 0x90, 0x33, 0xd6, 0xa0, 0x60, 0x4f, 0x1c, 0x5b, 0xba, 0xd0, 0xf0, 0x04, 0x83, 0x8e, 0xbc, - 0x89, 0xe7, 0xe3, 0xbd, 0xa5, 0x6c, 0xf2, 0x04, 0x79, 0x00, 0x6b, 0xec, 0x0e, 0xa5, 0x9b, 0x91, - 0x90, 0x43, 0x71, 0x03, 0x01, 0x71, 0xe7, 0xd3, 0xa3, 0xc8, 0x94, 0xc4, 0x30, 0x4c, 0xba, 0x60, - 0x39, 0x84, 0x38, 0xa9, 0x32, 0x70, 0xbd, 0xc8, 0x8a, 0x3b, 0x9f, 0xb6, 0x10, 0xa3, 0xe8, 0x1f, - 0xc2, 0x3a, 0xa3, 0x57, 0x02, 0xa8, 0xca, 0xb1, 0x8c, 0x39, 0x58, 0x61, 0x5d, 0x81, 0x53, 0x79, - 0x6e, 0x41, 0x99, 0xb7, 0x8a, 0x2d, 0x09, 0x61, 0x6f, 0xc2, 0xa6, 0x50, 0x3f, 0x58, 0xf0, 0x76, - 0xe1, 0x8a, 0x80, 0xa4, 0xb7, 0x8b, 0xe6, 0x2f, 0x53, 0x4a, 0xfa, 0xcb, 0x3c, 0x84, 0xf5, 0x13, - 0xb6, 0x46, 0xcf, 0xa9, 0x3d, 0xa6, 0xbe, 0x15, 0xad, 0x7c, 0x7e, 0xdd, 0x5c, 0x65, 0xc8, 0x7d, - 0xc4, 0xa9, 0x8d, 0xc2, 0x24, 0x41, 0xc6, 0x78, 0xe8, 0xd8, 0x0a, 0x3d, 0x0b, 0x05, 0x44, 0xa1, - 0x71, 0xad, 0x71, 0xf0, 0xd0, 0x6b, 0x33, 0x60, 0x9c, 0xee, 0xcc, 0xb7, 0x67, 0xe7, 0xe2, 0x32, - 0xa8, 0xe8, 0x9e, 0x30, 0x20, 0x79, 0x0d, 0x8a, 0x6c, 0x4f, 0xb8, 0x94, 0x3b, 0x0f, 0xf0, 0x6b, - 0x96, 0x04, 0x91, 0xb7, 0x60, 0x09, 0xeb, 0x08, 0x9a, 0x0d, 0xdc, 0x10, 0xd5, 0xe8, 0xa8, 0x70, - 0x5c, 0x53, 0xe0, 0x98, 0xb8, 0x3d, 0xf7, 0x1d, 0xce, 0xc7, 0xca, 0x26, 0xfe, 0x26, 0x3f, 0xd4, - 0x98, 0xe2, 0x2a, 0xe6, 0x7d, 0x4b, 0xe4, 0x4d, 0x2c, 0xc5, 0xeb, 0xf8, 0xe3, 0xb7, 0xca, 0xad, - 0x7e, 0x94, 0x2f, 0x55, 0x1a, 0x55, 0xa3, 0x89, 0x4e, 0x3e, 0x26, 0x1d, 0x79, 0x17, 0xd4, 0xbf, - 0x8a, 0xed, 0x91, 0x0c, 0x6c, 0x2e, 0xa0, 0x22, 0x5f, 0x01, 0x5f, 0xc0, 0xad, 0xa9, 0x37, 0x96, - 0x42, 0x41, 0x55, 0x02, 0x0f, 0xbd, 0x31, 0x13, 0x5e, 0x56, 0x14, 0xd1, 0xa9, 0xe3, 0x3a, 0xc1, - 0x39, 0x1d, 0x0b, 0xd9, 0xa0, 0x21, 0x11, 0x7b, 0x02, 0xce, 0x24, 0xf0, 0x99, 0xef, 0x9d, 0xa9, - 0xa3, 0x32, 0x63, 0xaa, 0xb4, 0xf1, 0x29, 0x14, 0xf8, 0x0c, 0xb2, 0x8d, 0x82, 0xf3, 0x9b, 0x11, - 0x1b, 0x05, 0xa1, 0x4d, 0x28, 0xba, 0x34, 0x7c, 0xee, 0xf9, 0xcf, 0xa4, 0x6d, 0x4d, 0x24, 0x8d, - 0x9f, 0xa0, 0x52, 0x55, 0x79, 0x6b, 0x71, 0xe5, 0x03, 0x5b, 0xc2, 0x7c, 0x09, 0x06, 0xe7, 0xb6, - 0xd0, 0xf3, 0x96, 0x10, 0x30, 0x38, 0xb7, 0x17, 0x96, 0x70, 0x76, 0xd1, 0x61, 0xeb, 0x2d, 0xa8, - 0x4b, 0xff, 0xb0, 0xc0, 0x9a, 0xd0, 0xd3, 0x50, 0x6c, 0xc9, 0xaa, 0x70, 0x0e, 0x0b, 0x0e, 0xe8, - 0x69, 0x68, 0x1c, 0xc2, 0x8a, 0xd8, 0x34, 0xfd, 0x19, 0x95, 0x55, 0x7f, 0x96, 0x76, 0x2b, 0xaa, - 0x3c, 0x5c, 0x8d, 0x8b, 0x1b, 0x5c, 0xb0, 0x8b, 0x5d, 0x95, 0x8c, 0x1f, 0x47, 0x1a, 0x44, 0x26, - 0x8c, 0x88, 0xf2, 0xc4, 0xdd, 0x44, 0x9a, 0x24, 0xa5, 0xdb, 0x83, 0xba, 0x01, 0x39, 0x63, 0x36, - 0x3a, 0xc1, 0x7c, 0x34, 0x92, 0x7e, 0x7b, 0x25, 0x53, 0x26, 0x8d, 0x7f, 0x97, 0x81, 0x55, 0x2c, - 0x4c, 0xde, 0xea, 0xc4, 0x49, 0xf1, 0x53, 0x37, 0x92, 0xcd, 0x8f, 0x2e, 0x01, 0xf2, 0xc4, 0x37, - 0x37, 0xd2, 0xe4, 0x17, 0x8c, 0x34, 0xdf, 0x85, 0xc6, 0x98, 0x4e, 0x1c, 0x5c, 0x4a, 0x52, 0xa0, - 0xe2, 0x12, 0xec, 0xb2, 0x84, 0x0b, 0x2d, 0x83, 0xf1, 0x57, 0x32, 0xb0, 0xc2, 0xe5, 0x35, 0xd4, - 0xdb, 0x88, 0x81, 0x7a, 0x2c, 0x15, 0x14, 0x82, 0x9d, 0x8a, 0x3e, 0x45, 0x72, 0x0c, 0x42, 0x39, - 0xf1, 0xfe, 0x0d, 0xa1, 0xb8, 0x10, 0x50, 0xf2, 0x3d, 0xbc, 0x89, 0xba, 0x16, 0x02, 0x85, 0x1c, - 0x7e, 0x33, 0x45, 0x42, 0x54, 0xd9, 0xd9, 0x35, 0xd5, 0x45, 0xd0, 0x4e, 0x09, 0x96, 0xb8, 0x16, - 0xcc, 0xd8, 0x83, 0x5a, 0xac, 0x9a, 0x98, 0xa5, 0xa7, 0xca, 0x2d, 0x3d, 0x0b, 0xd6, 0xe0, 0xec, - 0xa2, 0x35, 0xf8, 0x0a, 0x56, 0x4d, 0x6a, 0x8f, 0xaf, 0xf6, 0x3c, 0xff, 0x28, 0x38, 0x09, 0xf7, - 0xb8, 0x10, 0xcc, 0xce, 0x20, 0xe5, 0xff, 0x11, 0x33, 0xa7, 0x48, 0x4b, 0xb7, 0x54, 0xc3, 0x7c, - 0x07, 0xea, 0x91, 0xa3, 0x88, 0xa6, 0x78, 0xaf, 0x29, 0x5f, 0x11, 0x94, 0x9d, 0x08, 0xe4, 0x67, - 0xc1, 0x49, 0x28, 0x54, 0xef, 0xf8, 0xdb, 0xf8, 0xab, 0x05, 0x20, 0x6c, 0x35, 0x27, 0x16, 0x4c, - 0xc2, 0xc5, 0x25, 0xbb, 0xe0, 0xe2, 0xf2, 0x00, 0x88, 0x46, 0x20, 0x3d, 0x6f, 0x72, 0xca, 0xf3, - 0xa6, 0x11, 0xd1, 0x0a, 0xc7, 0x9b, 0x07, 0xb0, 0x26, 0x6e, 0x14, 0xf1, 0xa6, 0xf2, 0xa5, 0x41, - 0xf8, 0xd5, 0x22, 0xd6, 0x5e, 0xe9, 0xde, 0x22, 0x35, 0xd5, 0x39, 0xee, 0xde, 0x22, 0x15, 0x4a, - 0xda, 0x02, 0x5c, 0x7a, 0xe9, 0x02, 0x2c, 0x2e, 0x2c, 0x40, 0x4d, 0xb9, 0x58, 0x8a, 0x2b, 0x17, - 0x17, 0xd4, 0xe4, 0x5c, 0x7c, 0x8e, 0xa9, 0xc9, 0xef, 0x41, 0x43, 0x2a, 0x9a, 0x94, 0x0a, 0x53, - 0xf8, 0x3c, 0x08, 0x5d, 0x92, 0x54, 0x62, 0xc6, 0x6c, 0x7a, 0x95, 0x57, 0x31, 0x2e, 0x56, 0xd3, - 0x8d, 0x8b, 0x8b, 0x2a, 0xb9, 0x5a, 0x8a, 0x4a, 0xee, 0x51, 0xe4, 0xd2, 0x10, 0x9c, 0x3b, 0x53, - 0x14, 0x7c, 0x22, 0x87, 0x4b, 0x31, 0xc0, 0x83, 0x73, 0x67, 0x6a, 0x4a, 0xe7, 0x22, 0x96, 0x20, - 0x6d, 0xb8, 0x23, 0xfa, 0x93, 0xe2, 0x17, 0xc4, 0x47, 0x61, 0x19, 0x25, 0xd5, 0x2d, 0x4e, 0x76, - 0x98, 0x70, 0x11, 0x4a, 0x0c, 0x8a, 0xf4, 0x2a, 0x09, 0xb8, 0x5e, 0x57, 0x0e, 0xca, 0x21, 0x77, - 0x2b, 0x09, 0x70, 0x88, 0xed, 0x4b, 0x4b, 0xe8, 0xfc, 0x82, 0x0b, 0x94, 0x93, 0x6a, 0x66, 0x65, - 0x6a, 0x5f, 0x1e, 0xa0, 0x4e, 0x2f, 0xb8, 0x30, 0xfe, 0x34, 0x03, 0x0d, 0xb6, 0x34, 0x63, 0xbb, - 0xfe, 0x73, 0x40, 0xfe, 0xf4, 0x8a, 0x9b, 0xbe, 0xc2, 0x68, 0xe5, 0x9e, 0xff, 0x14, 0x70, 0x13, - 0x5b, 0xde, 0x8c, 0xba, 0x62, 0xcb, 0x37, 0xe3, 0x5b, 0x3e, 0x62, 0xeb, 0xfb, 0x37, 0xf8, 0xa5, - 0x90, 0x41, 0xc8, 0xe7, 0x50, 0x66, 0x7b, 0x05, 0x17, 0xae, 0x70, 0x69, 0xde, 0x52, 0x17, 0xfd, - 0x85, 0x6d, 0xcb, 0xb2, 0xce, 0x44, 0x32, 0xcd, 0x69, 0x28, 0x9f, 0xe2, 0x34, 0xa4, 0xf1, 0x94, - 0x7d, 0x80, 0xa7, 0xf4, 0x8a, 0x0d, 0x42, 0xe8, 0xf9, 0x4c, 0xb6, 0x62, 0xdb, 0xeb, 0xd4, 0x9e, - 0x3a, 0x42, 0xd9, 0x58, 0x30, 0xcb, 0xcf, 0xe8, 0xd5, 0x1e, 0x02, 0xd8, 0xda, 0x62, 0xe8, 0x88, - 0xb1, 0x14, 0xcc, 0xd2, 0x33, 0x7a, 0xc5, 0xb9, 0x8a, 0x05, 0xb5, 0xa7, 0xf4, 0x6a, 0x97, 0x72, - 0xe1, 0xdd, 0xf3, 0xd9, 0xa0, 0xfb, 0xf6, 0x73, 0x26, 0xad, 0xc7, 0x9c, 0x5a, 0x2a, 0xbe, 0xfd, - 0xfc, 0x29, 0xbd, 0x92, 0x0e, 0x36, 0x45, 0x86, 0x9f, 0x78, 0x23, 0x21, 0x6e, 0x48, 0xfd, 0x4e, - 0xd4, 0x28, 0x73, 0xe9, 0x19, 0xfe, 0x36, 0xfe, 0x24, 0x03, 0x35, 0xd6, 0x7e, 0x3c, 0x29, 0x70, - 0x15, 0x09, 0x17, 0xd8, 0x4c, 0xe4, 0x02, 0xfb, 0x50, 0x30, 0x5a, 0x7e, 0xec, 0x64, 0xaf, 0x3f, - 0x76, 0x70, 0x6e, 0xf8, 0x99, 0xf3, 0x21, 0x94, 0xf9, 0xc2, 0x60, 0xac, 0x27, 0x17, 0x9b, 0xe0, - 0x58, 0x87, 0xcc, 0x12, 0x92, 0x3d, 0xe5, 0x1e, 0x77, 0x9a, 0x2a, 0x9d, 0x0f, 0x71, 0xd9, 0x57, - 0x0a, 0xf4, 0x94, 0x69, 0x28, 0x5c, 0xe3, 0x71, 0xa7, 0xeb, 0xa9, 0x97, 0x92, 0x7a, 0x6a, 0xc3, - 0x85, 0x12, 0x9b, 0x6a, 0xec, 0x6c, 0x4a, 0xa1, 0x99, 0xb4, 0x42, 0x99, 0x70, 0x62, 0xb3, 0x73, - 0x8a, 0xf1, 0xde, 0xac, 0x10, 0x4e, 0xec, 0x80, 0xb2, 0x82, 0x58, 0xc3, 0x5d, 0xcf, 0x42, 0xc5, - 0xaf, 0x50, 0x89, 0x96, 0xcc, 0xb2, 0xeb, 0x1d, 0x71, 0x80, 0xf1, 0xe7, 0x32, 0x50, 0xd1, 0xf6, - 0x2c, 0x5a, 0x02, 0xd4, 0x70, 0xf2, 0x0d, 0x1e, 0xdf, 0x01, 0xb1, 0xf9, 0xd8, 0xbf, 0x61, 0xd6, - 0x46, 0xb1, 0x09, 0xda, 0x16, 0x4b, 0x19, 0x73, 0x66, 0x63, 0xea, 0x27, 0xd9, 0x2f, 0xb9, 0x7e, - 0xd9, 0xef, 0x9d, 0x25, 0xc8, 0x33, 0x52, 0xe3, 0x31, 0xac, 0x68, 0xcd, 0xe0, 0xea, 0x99, 0x57, - 0x1d, 0x00, 0xe3, 0x17, 0x55, 0x66, 0x56, 0x07, 0x37, 0xad, 0x4b, 0xe7, 0x46, 0x3a, 0xe6, 0xe3, - 0x22, 0x9c, 0x28, 0x39, 0x08, 0x47, 0xe6, 0x15, 0xfd, 0xed, 0x8c, 0x5f, 0xcd, 0xc0, 0xaa, 0x56, - 0xfc, 0x9e, 0xe3, 0xda, 0x13, 0xe7, 0x27, 0x28, 0xa3, 0x04, 0xce, 0x99, 0x9b, 0xa8, 0x80, 0x83, - 0xbe, 0x49, 0x05, 0xec, 0x28, 0xe1, 0xae, 0xd2, 0xdc, 0xdd, 0x5e, 0x1c, 0x9f, 0x80, 0x30, 0xd3, - 0x7e, 0x3e, 0xbc, 0x34, 0xfe, 0x5a, 0x16, 0xd6, 0x44, 0x13, 0xd0, 0xa3, 0xdd, 0x61, 0xa2, 0xe9, - 0x61, 0x70, 0x46, 0x3e, 0x87, 0x1a, 0x1b, 0x3e, 0xcb, 0xa7, 0x67, 0x4e, 0x10, 0x52, 0x69, 0xf5, - 0x4f, 0xe1, 0xc6, 0x4c, 0x42, 0x61, 0xa4, 0xa6, 0xa0, 0x24, 0x8f, 0xa1, 0x82, 0x59, 0xb9, 0x86, - 0x4c, 0xcc, 0x55, 0x73, 0x31, 0x23, 0x9f, 0x8b, 0xfd, 0x1b, 0x26, 0x04, 0xd1, 0xcc, 0x3c, 0x86, - 0x0a, 0x4e, 0xf3, 0x05, 0x8e, 0x75, 0x82, 0xd9, 0x2d, 0xcc, 0x05, 0xcb, 0x3c, 0x8b, 0x66, 0xa6, - 0x05, 0x35, 0xce, 0xee, 0xc4, 0x48, 0x0a, 0x4f, 0xd9, 0xad, 0xc5, 0xec, 0x72, 0xac, 0x59, 0xe3, - 0x67, 0x5a, 0x7a, 0xa7, 0x0c, 0xc5, 0xd0, 0x77, 0xce, 0xce, 0xa8, 0x6f, 0x6c, 0xa8, 0xa1, 0x61, - 0x7c, 0x9c, 0x0e, 0x42, 0x3a, 0x63, 0x77, 0x0e, 0xe3, 0x5f, 0x66, 0xa0, 0x22, 0x38, 0xf3, 0x4f, - 0xed, 0x50, 0xb0, 0x95, 0xd0, 0xa5, 0x96, 0x35, 0xd5, 0xe9, 0x3b, 0xb0, 0x3c, 0x65, 0x17, 0x24, - 0x76, 0x81, 0x8f, 0x79, 0x13, 0xd4, 0x25, 0x58, 0xc8, 0xfe, 0xdb, 0xb0, 0x8a, 0x57, 0x81, 0xc0, - 0x0a, 0x9d, 0x89, 0x25, 0x91, 0xe2, 0x59, 0xc7, 0x0a, 0x47, 0x0d, 0x9d, 0xc9, 0xa1, 0x40, 0x30, - 0x89, 0x38, 0x08, 0xed, 0x33, 0x2a, 0xb8, 0x03, 0x4f, 0xb0, 0x4b, 0x57, 0xe2, 0xee, 0x2e, 0x2f, - 0x5d, 0xff, 0x7b, 0x05, 0x36, 0x17, 0x50, 0xe2, 0xd2, 0xa5, 0x8c, 0xb7, 0x13, 0x67, 0x7a, 0xe2, - 0x29, 0xe3, 0x41, 0x46, 0x33, 0xde, 0x1e, 0x30, 0x8c, 0x34, 0x1e, 0x50, 0x58, 0x97, 0x4b, 0x16, - 0xb5, 0xff, 0xea, 0x7a, 0x9f, 0xc5, 0xcb, 0xe7, 0x87, 0xf1, 0x63, 0x30, 0x59, 0x9d, 0x84, 0xeb, - 0xf2, 0xde, 0xea, 0x6c, 0x01, 0x16, 0x90, 0xff, 0x17, 0x9a, 0x6a, 0x67, 0x88, 0xbb, 0x88, 0xa6, - 0xab, 0x60, 0x35, 0xbd, 0xf7, 0x92, 0x9a, 0x62, 0x6a, 0x59, 0x14, 0x08, 0x37, 0xe4, 0xa6, 0xe2, - 0x05, 0xaa, 0xba, 0x2e, 0xe0, 0x75, 0x59, 0x17, 0xde, 0x2d, 0x16, 0x6b, 0xcc, 0xbf, 0x52, 0xdf, - 0x50, 0xe5, 0x1c, 0xab, 0xd6, 0xbc, 0x25, 0x0a, 0x56, 0x28, 0xbd, 0xde, 0x73, 0xd8, 0x78, 0x6e, - 0x3b, 0xa1, 0xec, 0xa3, 0xa6, 0x2a, 0x29, 0x60, 0x7d, 0x0f, 0x5f, 0x52, 0xdf, 0x97, 0x3c, 0x73, - 0xec, 0xb6, 0xb5, 0xf6, 0x7c, 0x11, 0x18, 0x6c, 0xfd, 0x9d, 0x1c, 0xd4, 0xe3, 0xa5, 0x30, 0xd6, - 0x23, 0x8e, 0x2b, 0x29, 0x44, 0x0b, 0xc9, 0x5e, 0x18, 0xb6, 0x7a, 0x5c, 0x78, 0x5e, 0x34, 0xb9, - 0x65, 0x53, 0x4c, 0x6e, 0xba, 0xa5, 0x2b, 0xf7, 0x32, 0xc7, 0x87, 0xfc, 0x2b, 0x39, 0x3e, 0x14, - 0xd2, 0x1c, 0x1f, 0x3e, 0xba, 0xd6, 0x52, 0xce, 0xf5, 0xd5, 0xa9, 0x56, 0xf2, 0x47, 0xd7, 0x5b, - 0xc9, 0xb9, 0x48, 0x7e, 0x9d, 0x85, 0x5c, 0xb3, 0xef, 0x97, 0xae, 0xb1, 0x4f, 0x69, 0x16, 0xff, - 0x14, 0x0b, 0x79, 0xf9, 0x1b, 0x58, 0xc8, 0xb7, 0xfe, 0x24, 0x03, 0x64, 0x71, 0x77, 0x90, 0x27, - 0xdc, 0x9a, 0xe9, 0xd2, 0x89, 0xe0, 0xdc, 0xef, 0xbf, 0xda, 0x0e, 0x93, 0x0b, 0x42, 0xe6, 0x26, - 0x1f, 0xc0, 0xaa, 0xfe, 0xf8, 0x4c, 0x57, 0x45, 0xd4, 0x4c, 0xa2, 0xa3, 0x22, 0xa5, 0x9a, 0xe6, - 0x65, 0x92, 0x7f, 0xa9, 0x97, 0x49, 0xe1, 0xa5, 0x5e, 0x26, 0x4b, 0x71, 0x2f, 0x93, 0xad, 0x7f, - 0x9b, 0x81, 0xd5, 0x94, 0x45, 0xfc, 0xed, 0xf5, 0x99, 0xad, 0xbd, 0x18, 0x5b, 0xcb, 0x8a, 0xb5, - 0xa7, 0x73, 0xb4, 0x03, 0xa9, 0x88, 0x65, 0x53, 0x11, 0x88, 0x93, 0xea, 0xfe, 0xcb, 0xb8, 0x4b, - 0x94, 0xc3, 0xd4, 0xb3, 0x6f, 0xfd, 0xbd, 0x2c, 0x54, 0x34, 0x24, 0x1b, 0x45, 0xbe, 0x64, 0x35, - 0xff, 0x4b, 0x2e, 0x5b, 0xa2, 0x22, 0x05, 0x9d, 0xe9, 0x71, 0x71, 0x22, 0x9e, 0x6f, 0x2e, 0x21, - 0x48, 0x22, 0xc1, 0x36, 0xac, 0x4a, 0x4b, 0x33, 0x8d, 0xdc, 0xc4, 0xc5, 0x59, 0x23, 0x9c, 0x06, - 0x44, 0x23, 0x91, 0xfe, 0x03, 0x79, 0xc7, 0x8d, 0xe6, 0x4e, 0xb3, 0xdc, 0xad, 0x08, 0x77, 0x05, - 0x31, 0x89, 0x6c, 0x9d, 0x7f, 0x08, 0xeb, 0xca, 0x5f, 0x21, 0x96, 0x83, 0xdb, 0x87, 0x88, 0xf4, - 0x4b, 0xd0, 0xb2, 0xfc, 0x10, 0x6e, 0x27, 0xda, 0x94, 0xc8, 0xca, 0xfd, 0xdc, 0x6e, 0xc6, 0x5a, - 0xa7, 0x97, 0xb0, 0xf5, 0xff, 0x41, 0x2d, 0xc6, 0x28, 0xbf, 0xbd, 0x29, 0x4f, 0x2a, 0xaf, 0xf8, - 0x88, 0xea, 0xca, 0xab, 0xad, 0xff, 0x99, 0x03, 0xb2, 0xc8, 0xab, 0x7f, 0x96, 0x4d, 0x58, 0x5c, - 0x98, 0xb9, 0x94, 0x85, 0xf9, 0x7f, 0x4d, 0x7e, 0x88, 0x74, 0xa8, 0x9a, 0xbb, 0x00, 0xdf, 0x9c, - 0x0d, 0x85, 0x90, 0xad, 0xf8, 0x34, 0xe9, 0x54, 0x55, 0x8a, 0xbd, 0x9f, 0xd4, 0x04, 0xa8, 0x84, - 0x6f, 0xd5, 0x31, 0x2c, 0xd9, 0xee, 0xe8, 0xdc, 0xf3, 0x05, 0x1f, 0xfc, 0xb9, 0x6f, 0x7c, 0x7c, - 0x6e, 0xb7, 0x30, 0x3f, 0x4a, 0x6d, 0xa6, 0x28, 0xcc, 0xf8, 0x10, 0x2a, 0x1a, 0x98, 0x94, 0xa1, - 0x70, 0xd0, 0x3d, 0xdc, 0xe9, 0x37, 0x6e, 0x90, 0x1a, 0x94, 0xcd, 0x4e, 0xbb, 0xff, 0x45, 0xc7, - 0xec, 0xec, 0x36, 0x32, 0xa4, 0x04, 0xf9, 0x83, 0xfe, 0x60, 0xd8, 0xc8, 0x1a, 0x5b, 0xd0, 0x14, - 0x25, 0x2e, 0x5a, 0x93, 0x7e, 0x2b, 0xaf, 0x74, 0xa0, 0x88, 0x14, 0x97, 0xfc, 0x8f, 0xa0, 0xaa, - 0x8b, 0x37, 0x62, 0x45, 0x24, 0x3c, 0x56, 0xd8, 0xf5, 0xde, 0xd3, 0x78, 0x75, 0x1b, 0xb8, 0xbf, - 0xc2, 0x58, 0x65, 0xcb, 0xc6, 0xe4, 0xd6, 0x14, 0xc3, 0x2f, 0xde, 0x8f, 0x62, 0xcb, 0xf0, 0xff, - 0x81, 0x7a, 0xdc, 0x72, 0x22, 0x38, 0x52, 0xda, 0x95, 0x95, 0xe5, 0x8e, 0x99, 0x52, 0xc8, 0x0f, - 0xa1, 0x91, 0xb4, 0xbc, 0x08, 0xe1, 0xf9, 0x9a, 0xfc, 0xcb, 0x4e, 0xdc, 0x18, 0x43, 0xf6, 0x61, - 0x2d, 0x4d, 0xc0, 0xc3, 0xf5, 0x71, 0xbd, 0x9a, 0x83, 0x2c, 0x0a, 0x71, 0xe4, 0x33, 0x61, 0x81, - 0x2b, 0xe0, 0xf4, 0xbf, 0x15, 0xaf, 0x5f, 0x1b, 0xec, 0x6d, 0xfe, 0x4f, 0xb3, 0xc5, 0x5d, 0x00, - 0x44, 0x30, 0xd2, 0x80, 0x6a, 0xff, 0xa8, 0xd3, 0xb3, 0xda, 0xfb, 0xad, 0x5e, 0xaf, 0x73, 0xd0, - 0xb8, 0x41, 0x08, 0xd4, 0xd1, 0xe9, 0x62, 0x57, 0xc1, 0x32, 0x0c, 0x26, 0x2c, 0xa1, 0x12, 0x96, - 0x25, 0x6b, 0xd0, 0xe8, 0xf6, 0x12, 0xd0, 0x1c, 0x69, 0xc2, 0xda, 0x51, 0x87, 0xfb, 0x69, 0xc4, - 0xca, 0xcd, 0xb3, 0x4b, 0x83, 0xe8, 0x2e, 0xbb, 0x34, 0x7c, 0x69, 0x4f, 0x26, 0x34, 0x14, 0xfb, - 0x40, 0xca, 0xd2, 0x7f, 0x3d, 0x03, 0xeb, 0x09, 0x44, 0x64, 0xbe, 0xe0, 0x92, 0x74, 0x5c, 0x86, - 0xae, 0x22, 0x50, 0xee, 0xa6, 0x77, 0x61, 0x45, 0x69, 0xd3, 0x12, 0xa7, 0x52, 0x43, 0x21, 0x24, - 0xf1, 0x07, 0xb0, 0xaa, 0x29, 0xe5, 0x12, 0xbc, 0x82, 0x68, 0x28, 0x91, 0xc1, 0xd8, 0x86, 0x25, - 0xa1, 0xb8, 0x6c, 0x40, 0x4e, 0x3e, 0x5c, 0xc9, 0x9b, 0xec, 0x27, 0x21, 0x90, 0x9f, 0x46, 0xee, - 0xbe, 0xf8, 0xdb, 0xd8, 0x54, 0x2f, 0xd0, 0x12, 0xbd, 0xfc, 0xd5, 0x3c, 0x6c, 0x24, 0x31, 0xca, - 0x01, 0xbe, 0x18, 0xeb, 0x20, 0x37, 0x64, 0x09, 0x10, 0xf9, 0x38, 0xb1, 0x7a, 0x62, 0x5d, 0x44, - 0x52, 0x7d, 0xa5, 0xc8, 0x8e, 0x3e, 0x4c, 0xca, 0x88, 0x7c, 0xc9, 0xd7, 0xa4, 0xd3, 0x3f, 0xf6, - 0x29, 0x21, 0x32, 0x7e, 0xbc, 0x20, 0x32, 0xe6, 0xd3, 0x32, 0x25, 0x24, 0xc8, 0x0e, 0x6c, 0x46, - 0x8e, 0xad, 0xf1, 0x3a, 0x0b, 0x69, 0xd9, 0xd7, 0x15, 0xf5, 0x81, 0x5e, 0xf9, 0x13, 0x68, 0x46, - 0xc5, 0x24, 0x9a, 0xb1, 0x94, 0x56, 0xce, 0x86, 0x22, 0x37, 0x63, 0xed, 0xf9, 0x11, 0x6c, 0xc5, - 0xc6, 0x2b, 0xde, 0xa4, 0x62, 0x5a, 0x51, 0x9b, 0xda, 0x00, 0xc6, 0x1a, 0x75, 0x00, 0xb7, 0x62, - 0x65, 0x25, 0xda, 0x55, 0x4a, 0x2b, 0xac, 0xa9, 0x15, 0x16, 0x6b, 0x99, 0xf1, 0x3b, 0x4b, 0x40, - 0x7e, 0x3c, 0xa7, 0xfe, 0x15, 0xbe, 0x4b, 0x0d, 0x5e, 0xe6, 0xb1, 0x2f, 0x15, 0x6f, 0xd9, 0x57, - 0x7a, 0x7b, 0x9e, 0xf6, 0xf6, 0x3b, 0xff, 0xf2, 0xb7, 0xdf, 0x85, 0x97, 0xbd, 0xfd, 0x7e, 0x13, - 0x6a, 0xce, 0x99, 0xeb, 0xb1, 0x73, 0x8d, 0x5d, 0x6b, 0x82, 0xe6, 0xd2, 0xdd, 0xdc, 0xbd, 0xaa, - 0x59, 0x15, 0x40, 0x76, 0xa9, 0x09, 0xc8, 0xe3, 0x88, 0x88, 0x8e, 0xcf, 0x30, 0xfe, 0x81, 0x7e, - 0xa2, 0x75, 0xc6, 0x67, 0x54, 0xe8, 0x19, 0x71, 0xc1, 0xca, 0xcc, 0x0c, 0x1e, 0x90, 0xb7, 0xa0, - 0x1e, 0x78, 0x73, 0x76, 0x4b, 0x94, 0xc3, 0xc0, 0xcd, 0xcd, 0x55, 0x0e, 0x3d, 0x92, 0xce, 0x07, - 0xab, 0xf3, 0x80, 0x5a, 0x53, 0x27, 0x08, 0x98, 0xac, 0x3d, 0xf2, 0xdc, 0xd0, 0xf7, 0x26, 0xc2, - 0x82, 0xbc, 0x32, 0x0f, 0xe8, 0x21, 0xc7, 0xb4, 0x39, 0x82, 0x7c, 0x1c, 0x35, 0x69, 0x66, 0x3b, - 0x7e, 0xd0, 0x04, 0x6c, 0x92, 0xec, 0x29, 0x5e, 0xc6, 0x6c, 0xc7, 0x57, 0x6d, 0x61, 0x89, 0x20, - 0xf1, 0x26, 0xbd, 0x92, 0x7c, 0x93, 0xfe, 0x2b, 0xe9, 0x6f, 0xd2, 0xb9, 0xd3, 0xdc, 0x03, 0x51, - 0xf4, 0xe2, 0x14, 0x7f, 0xa3, 0xa7, 0xe9, 0x8b, 0x4f, 0xed, 0xeb, 0xdf, 0xe4, 0xa9, 0xfd, 0x72, - 0xda, 0x53, 0xfb, 0x0f, 0xa1, 0x82, 0x8f, 0xa0, 0xad, 0x73, 0x74, 0x9d, 0xe5, 0x16, 0xf1, 0x86, - 0xfe, 0x4a, 0x7a, 0xdf, 0x71, 0x43, 0x13, 0x7c, 0xf9, 0x33, 0x58, 0x7c, 0xf5, 0xbe, 0xf2, 0x33, - 0x7c, 0xf5, 0x2e, 0x1e, 0x6b, 0x6f, 0x43, 0x49, 0xce, 0x13, 0x63, 0xb6, 0xa7, 0xbe, 0x37, 0x95, - 0x56, 0x38, 0xf6, 0x9b, 0xd4, 0x21, 0x1b, 0x7a, 0x22, 0x73, 0x36, 0xf4, 0x8c, 0x5f, 0x82, 0x8a, - 0xb6, 0xd4, 0xc8, 0x1b, 0x5c, 0x4d, 0xcd, 0x2e, 0xda, 0xe2, 0xa2, 0xc0, 0x47, 0xb1, 0x2c, 0xa0, - 0xdd, 0x31, 0x3b, 0x3c, 0xc6, 0x8e, 0x4f, 0x31, 0x3e, 0x85, 0xe5, 0xd3, 0x0b, 0xea, 0x07, 0xd2, - 0x2a, 0xda, 0x50, 0x08, 0x93, 0xc3, 0x8d, 0x5f, 0x86, 0xd5, 0xd8, 0xdc, 0x0a, 0xf6, 0xfd, 0x16, - 0x2c, 0xe1, 0xb8, 0x49, 0xd7, 0x9b, 0xf8, 0xeb, 0x73, 0x81, 0xc3, 0x58, 0x1c, 0xdc, 0xa0, 0x6b, - 0xcd, 0x7c, 0xef, 0x04, 0x2b, 0xc9, 0x98, 0x15, 0x01, 0x3b, 0xf2, 0xbd, 0x13, 0xe3, 0x0f, 0x73, - 0x90, 0xdb, 0xf7, 0x66, 0xba, 0xbb, 0x6d, 0x66, 0xc1, 0xdd, 0x56, 0x68, 0x0f, 0x2c, 0xa5, 0x1d, - 0x10, 0x17, 0x30, 0x34, 0x65, 0x4a, 0x0d, 0xc1, 0x3d, 0xa8, 0x33, 0x3e, 0x11, 0x7a, 0x96, 0x78, - 0xe6, 0xc2, 0x4f, 0x38, 0xbe, 0xf9, 0xec, 0x69, 0x38, 0xf4, 0xf6, 0x38, 0x9c, 0xac, 0x41, 0x4e, - 0xdd, 0x45, 0x11, 0xcd, 0x92, 0x64, 0x03, 0x96, 0xf0, 0x79, 0x8e, 0x7c, 0xaa, 0x2c, 0x52, 0xe4, - 0x7d, 0x58, 0x8d, 0x97, 0xcb, 0x59, 0x91, 0x10, 0x74, 0xf5, 0x82, 0x91, 0x27, 0xdd, 0x04, 0xc6, - 0x47, 0xa2, 0xc7, 0xca, 0x39, 0xb3, 0x78, 0x4a, 0x29, 0xa2, 0x34, 0xa6, 0x57, 0x8a, 0x31, 0xbd, - 0x3b, 0x50, 0x09, 0x27, 0x17, 0xd6, 0xcc, 0xbe, 0x9a, 0x78, 0xb6, 0x7c, 0x93, 0x07, 0xe1, 0xe4, - 0xe2, 0x88, 0x43, 0xc8, 0x07, 0x00, 0xd3, 0xd9, 0x4c, 0xec, 0x3d, 0x34, 0xcf, 0x45, 0x4b, 0xf9, - 0xf0, 0xe8, 0x88, 0x2f, 0x39, 0xb3, 0x3c, 0x9d, 0xcd, 0xf8, 0x4f, 0xb2, 0x0b, 0xf5, 0xd4, 0x18, - 0x12, 0xb7, 0xe5, 0x23, 0x06, 0x6f, 0xb6, 0x9d, 0xb2, 0x39, 0x6b, 0x23, 0x1d, 0xb6, 0xf5, 0x43, - 0x20, 0x7f, 0xc6, 0x48, 0x0e, 0x43, 0x28, 0xab, 0xf6, 0xe9, 0x81, 0x10, 0xf0, 0xe5, 0x58, 0x25, - 0x16, 0x08, 0xa1, 0x35, 0x1e, 0xfb, 0x8c, 0x2f, 0x72, 0xe9, 0x47, 0xb1, 0x7c, 0xd0, 0xc4, 0x1f, - 0xf1, 0xfc, 0xc7, 0xf8, 0x2f, 0x19, 0x28, 0xf0, 0xa8, 0x0c, 0x6f, 0xc3, 0x32, 0xa7, 0x57, 0xae, - 0xcb, 0xc2, 0xe1, 0x84, 0x0b, 0x51, 0x43, 0xe1, 0xb5, 0xcc, 0xb6, 0x85, 0x16, 0xa9, 0x26, 0x12, - 0x23, 0xb4, 0x68, 0x35, 0x77, 0xa0, 0xac, 0xaa, 0xd6, 0x96, 0x4e, 0x49, 0xd6, 0x4c, 0x5e, 0x87, - 0xfc, 0xb9, 0x37, 0x93, 0x6a, 0x3c, 0x88, 0x46, 0xd2, 0x44, 0x78, 0xd4, 0x16, 0x56, 0x47, 0xf4, - 0x2c, 0x29, 0x27, 0xda, 0xc2, 0x2a, 0x91, 0x6f, 0xd5, 0x13, 0x7d, 0x5c, 0x4a, 0xe9, 0xe3, 0x31, - 0x2c, 0x33, 0x3e, 0xa0, 0x79, 0xbd, 0x5c, 0x7f, 0x68, 0x7e, 0x97, 0x89, 0xeb, 0xa3, 0xc9, 0x7c, - 0x4c, 0x75, 0x45, 0x2a, 0xfa, 0xa1, 0x0a, 0xb8, 0xbc, 0x26, 0x19, 0xbf, 0x93, 0xe1, 0xfc, 0x85, - 0x95, 0x4b, 0xee, 0x41, 0xde, 0x95, 0x1e, 0x32, 0x91, 0x50, 0xae, 0x9e, 0xf0, 0x31, 0x3a, 0x13, - 0x29, 0xd8, 0xd4, 0xa1, 0x5f, 0x89, 0x5e, 0x7a, 0xcd, 0xac, 0xb8, 0xf3, 0xa9, 0xd2, 0x43, 0x7e, - 0x47, 0x76, 0x2b, 0xa1, 0xc3, 0xe3, 0xbd, 0x57, 0xdb, 0x74, 0x5b, 0x73, 0x68, 0xcd, 0xc7, 0x4e, - 0x4c, 0x29, 0xd2, 0x8f, 0xcf, 0xa8, 0xe6, 0xc8, 0xfa, 0x7b, 0x59, 0xa8, 0xc5, 0x5a, 0x84, 0x1e, - 0xbd, 0xec, 0x00, 0xe0, 0x76, 0x46, 0x31, 0xdf, 0xe8, 0x38, 0x29, 0x6e, 0x5d, 0xda, 0x38, 0x65, - 0x63, 0xe3, 0xa4, 0x5c, 0xdc, 0x72, 0xba, 0x8b, 0xdb, 0x03, 0x28, 0x47, 0x11, 0x8a, 0xe2, 0x4d, - 0x62, 0xf5, 0xc9, 0x87, 0x8c, 0x11, 0x51, 0xe4, 0x14, 0x57, 0xd0, 0x9d, 0xe2, 0xbe, 0xaf, 0xf9, - 0x50, 0x2d, 0x61, 0x31, 0x46, 0xda, 0x88, 0xfe, 0x4c, 0x3c, 0xa8, 0x8c, 0xc7, 0x50, 0xd1, 0x1a, - 0xaf, 0xfb, 0x21, 0x65, 0x62, 0x7e, 0x48, 0xea, 0x49, 0x73, 0x36, 0x7a, 0xd2, 0x6c, 0xfc, 0x7a, - 0x16, 0x6a, 0x6c, 0x7f, 0x39, 0xee, 0xd9, 0x91, 0x37, 0x71, 0x46, 0x68, 0x77, 0x54, 0x3b, 0x4c, - 0x08, 0x5a, 0x72, 0x9f, 0x89, 0x2d, 0xc6, 0xe5, 0x2c, 0x3d, 0x6c, 0x06, 0x67, 0xd2, 0x2a, 0x6c, - 0x86, 0x01, 0x35, 0xc6, 0x18, 0xd1, 0x82, 0x18, 0xc5, 0x39, 0x32, 0x2b, 0xa7, 0x94, 0xee, 0xd8, - 0x01, 0xe7, 0x90, 0xef, 0xc3, 0x2a, 0xa3, 0xc1, 0x47, 0xf1, 0x53, 0x67, 0x32, 0x71, 0xa2, 0x77, - 0x80, 0x39, 0xb3, 0x71, 0x4a, 0xa9, 0x69, 0x87, 0xf4, 0x90, 0x21, 0x44, 0x58, 0xa4, 0xd2, 0xd8, - 0x09, 0xec, 0x93, 0xc8, 0xef, 0x5a, 0xa5, 0xa5, 0x61, 0x3e, 0xf2, 0x7d, 0x58, 0x12, 0x4f, 0x04, - 0xb9, 0xe5, 0x1e, 0xf3, 0x27, 0x56, 0x52, 0x31, 0xb9, 0x92, 0x8c, 0x7f, 0x9a, 0x85, 0x8a, 0xb6, - 0x2c, 0x5f, 0xe5, 0x74, 0xbd, 0xbd, 0x60, 0x27, 0x2e, 0xeb, 0x26, 0xe1, 0x37, 0xe3, 0x55, 0xe6, - 0xd4, 0x63, 0x31, 0x7d, 0x01, 0xdf, 0x82, 0x32, 0xdb, 0x75, 0x1f, 0xa2, 0x3e, 0x5d, 0x84, 0x25, - 0x43, 0xc0, 0xd1, 0xfc, 0x44, 0x22, 0x1f, 0x22, 0xb2, 0x10, 0x21, 0x1f, 0x32, 0xe4, 0x8b, 0x1e, - 0x8b, 0x7c, 0x0a, 0x55, 0x51, 0x2a, 0xce, 0xa9, 0xb8, 0x16, 0xac, 0x69, 0x27, 0xb7, 0x9a, 0x6f, - 0xb3, 0xc2, 0xab, 0xe3, 0x93, 0x2f, 0x32, 0x3e, 0x94, 0x19, 0x4b, 0x2f, 0xcb, 0xf8, 0x90, 0x27, - 0x8c, 0x3d, 0xf5, 0xfe, 0x06, 0xbd, 0x17, 0x25, 0x1f, 0xfb, 0x00, 0x56, 0x25, 0xbb, 0x9a, 0xbb, - 0xb6, 0xeb, 0x7a, 0x73, 0x77, 0x44, 0xe5, 0x5b, 0x64, 0x22, 0x50, 0xc7, 0x11, 0xc6, 0x18, 0xab, - 0x60, 0x1b, 0xdc, 0x0b, 0xf2, 0x3e, 0x14, 0xb8, 0x5c, 0xce, 0x85, 0x8f, 0x74, 0xc6, 0xc5, 0x49, - 0xc8, 0x3d, 0x28, 0x70, 0xf1, 0x3c, 0x7b, 0x2d, 0xb3, 0xe1, 0x04, 0x46, 0x0b, 0x08, 0xcb, 0x78, - 0x48, 0x43, 0xdf, 0x19, 0x05, 0xd1, 0x33, 0xe7, 0x42, 0x78, 0x35, 0x13, 0x75, 0x45, 0x6a, 0xf8, - 0x88, 0x12, 0x15, 0x0e, 0x9c, 0x86, 0x1d, 0x4c, 0xab, 0xb1, 0x32, 0x84, 0xb8, 0x34, 0x81, 0x8d, - 0x13, 0x1a, 0x3e, 0xa7, 0xd4, 0x75, 0x99, 0x30, 0x34, 0xa2, 0x6e, 0xe8, 0xdb, 0x13, 0x36, 0x49, - 0xbc, 0x07, 0x8f, 0x16, 0x4a, 0x8d, 0x14, 0x5a, 0x3b, 0x51, 0xc6, 0xb6, 0xca, 0xc7, 0x79, 0xc7, - 0xfa, 0x49, 0x1a, 0x6e, 0xeb, 0x17, 0x61, 0xeb, 0xfa, 0x4c, 0x29, 0xc1, 0x12, 0xee, 0xc5, 0xb9, - 0x8a, 0x32, 0xea, 0x4e, 0x3c, 0x3b, 0xe4, 0xad, 0xd1, 0x39, 0x4b, 0x0f, 0x2a, 0x1a, 0x26, 0x3a, - 0xfb, 0x33, 0x28, 0xdc, 0xf1, 0x04, 0x3b, 0x91, 0x5c, 0xcf, 0x9f, 0xa2, 0x11, 0x75, 0x6c, 0x45, - 0xa5, 0x67, 0xcc, 0xe5, 0x08, 0x8e, 0x7e, 0x37, 0xc6, 0x36, 0x2c, 0xa3, 0x64, 0xaf, 0x1d, 0x74, - 0x2f, 0x12, 0x06, 0x8d, 0x35, 0x20, 0x3d, 0xce, 0xbb, 0x74, 0x8f, 0xd0, 0x7f, 0x9f, 0x83, 0x8a, - 0x06, 0x66, 0xa7, 0x11, 0xba, 0xd1, 0x5a, 0x63, 0xc7, 0x9e, 0x52, 0x69, 0xb1, 0xae, 0x99, 0x35, - 0x84, 0xee, 0x0a, 0x20, 0x3b, 0x8b, 0xed, 0x8b, 0x33, 0xcb, 0x9b, 0x87, 0xd6, 0x98, 0x9e, 0xf9, - 0x54, 0xb6, 0xb2, 0x6a, 0x5f, 0x9c, 0xf5, 0xe7, 0xe1, 0x2e, 0xc2, 0x64, 0x74, 0x19, 0x8d, 0x2a, - 0xa7, 0xa2, 0xcb, 0x44, 0x54, 0xc2, 0xfd, 0x98, 0xaf, 0xcc, 0xbc, 0x72, 0x3f, 0xe6, 0xb7, 0xc5, - 0xe4, 0x01, 0x5a, 0x58, 0x3c, 0x40, 0x3f, 0x86, 0x0d, 0x7e, 0x80, 0x0a, 0xd6, 0x6c, 0x25, 0x76, - 0xf2, 0x1a, 0x62, 0x45, 0x27, 0x35, 0xb1, 0xb7, 0xc1, 0x7a, 0x20, 0xd9, 0x52, 0xe0, 0xfc, 0x84, - 0x33, 0xb2, 0x8c, 0xc9, 0x7a, 0x26, 0x0a, 0x1f, 0x38, 0x3f, 0xa1, 0x32, 0xba, 0x4d, 0x8c, 0x52, - 0x3c, 0x05, 0x9b, 0x3a, 0x6e, 0x92, 0xd2, 0xbe, 0x8c, 0x53, 0x96, 0x05, 0xa5, 0x7d, 0xa9, 0x53, - 0x3e, 0x82, 0xcd, 0x29, 0x1d, 0x3b, 0x76, 0xbc, 0x58, 0x2b, 0x12, 0xdc, 0xd6, 0x38, 0x5a, 0xcb, - 0x33, 0xe0, 0x17, 0x77, 0x36, 0x1a, 0x3f, 0xf1, 0xa6, 0x27, 0x0e, 0x97, 0x59, 0xb8, 0x47, 0x59, - 0xde, 0xac, 0xbb, 0xf3, 0xe9, 0x2f, 0x20, 0x98, 0x65, 0x09, 0x8c, 0x1a, 0x54, 0x06, 0xa1, 0x37, - 0x93, 0xd3, 0x5c, 0x87, 0x2a, 0x4f, 0x8a, 0x67, 0xfc, 0xb7, 0xe0, 0x26, 0xb2, 0x84, 0xa1, 0x37, - 0xf3, 0x26, 0xde, 0xd9, 0x55, 0x4c, 0x29, 0xfb, 0xaf, 0x32, 0xb0, 0x1a, 0xc3, 0x0a, 0xf6, 0xfa, - 0x31, 0xe7, 0x67, 0xea, 0x09, 0x70, 0x26, 0xf6, 0xfe, 0x8b, 0xcd, 0x17, 0x27, 0xe4, 0xcc, 0x4c, - 0x3e, 0x0b, 0x6e, 0x45, 0xa1, 0xa3, 0x64, 0x46, 0xce, 0x52, 0x9a, 0x8b, 0x2c, 0x45, 0xe4, 0x97, - 0x41, 0xa5, 0x64, 0x11, 0x3f, 0x27, 0x9e, 0xeb, 0x8d, 0x45, 0x97, 0x73, 0xf1, 0x07, 0x3d, 0xba, - 0x02, 0x57, 0xb6, 0x20, 0xd2, 0xea, 0x06, 0xc6, 0xdf, 0xcd, 0x00, 0x44, 0xad, 0xc3, 0x27, 0x45, - 0x4a, 0x6e, 0xc9, 0xa0, 0x33, 0xb7, 0x26, 0xa3, 0xbc, 0x01, 0x55, 0xe5, 0xf7, 0x1f, 0x49, 0x42, - 0x15, 0x09, 0x63, 0xe2, 0xd0, 0x3b, 0xb0, 0x7c, 0x36, 0xf1, 0x4e, 0x50, 0x62, 0x15, 0x72, 0x0b, - 0x77, 0x09, 0xa9, 0x73, 0xb0, 0x94, 0x46, 0x22, 0xb9, 0x29, 0x9f, 0xfa, 0x34, 0x40, 0x97, 0x82, - 0x8c, 0xbf, 0x94, 0x55, 0xce, 0xc5, 0xd1, 0x48, 0xbc, 0xf8, 0x7a, 0xf7, 0xd3, 0xb8, 0x56, 0xbd, - 0xc8, 0x56, 0xfc, 0x18, 0xea, 0x3e, 0x3f, 0x94, 0xe4, 0x89, 0x95, 0x7f, 0xc1, 0x89, 0x55, 0xf3, - 0x63, 0x92, 0xce, 0x77, 0xa1, 0x61, 0x8f, 0x2f, 0xa8, 0x1f, 0x3a, 0x68, 0x7a, 0x41, 0xf9, 0x58, - 0xb8, 0xf3, 0x6a, 0x70, 0x14, 0x44, 0xdf, 0x81, 0x65, 0x11, 0x5a, 0x42, 0x51, 0x8a, 0x18, 0x85, - 0x11, 0x98, 0x11, 0x1a, 0xff, 0x50, 0x7a, 0x33, 0xc7, 0x67, 0xf7, 0xc5, 0xa3, 0xa2, 0xf7, 0x30, - 0xbb, 0x68, 0x0d, 0x17, 0x0b, 0x49, 0x58, 0x74, 0x04, 0x3f, 0xe2, 0x40, 0x61, 0xcf, 0x89, 0x0f, - 0x6b, 0xfe, 0x55, 0x86, 0xd5, 0xf8, 0x37, 0x19, 0x28, 0xee, 0x7b, 0xb3, 0x7d, 0x87, 0xbf, 0x89, - 0xc1, 0x6d, 0xa2, 0x0c, 0x8e, 0x4b, 0x2c, 0x89, 0x7e, 0x60, 0x2f, 0x78, 0x1a, 0x9b, 0x2a, 0xe6, - 0xd5, 0xe2, 0x62, 0xde, 0xf7, 0xe1, 0x16, 0xda, 0x73, 0x7d, 0x6f, 0xe6, 0xf9, 0x6c, 0xab, 0xda, - 0x13, 0x2e, 0xee, 0x79, 0x6e, 0x78, 0x2e, 0x79, 0xe7, 0xcd, 0x53, 0x4a, 0x8f, 0x34, 0x8a, 0x43, - 0x45, 0x80, 0xcf, 0xe2, 0x27, 0xe1, 0x85, 0xc5, 0x6f, 0xe8, 0x42, 0x1e, 0xe5, 0x1c, 0x75, 0x99, - 0x21, 0x3a, 0x08, 0x47, 0x89, 0xd4, 0xf8, 0x0c, 0xca, 0x4a, 0xd9, 0x43, 0xde, 0x85, 0xf2, 0xb9, - 0x37, 0x13, 0x1a, 0xa1, 0x4c, 0xec, 0xf9, 0xb0, 0xe8, 0xb5, 0x59, 0x3a, 0xe7, 0x3f, 0x02, 0xe3, - 0x0f, 0x8b, 0x50, 0xec, 0xba, 0x17, 0x9e, 0x33, 0x42, 0x7f, 0xe8, 0x29, 0x9d, 0x7a, 0x32, 0xf2, - 0x0d, 0xfb, 0x8d, 0xae, 0x7a, 0x51, 0xa4, 0xc1, 0x9c, 0x70, 0xd5, 0x53, 0x31, 0x06, 0xd7, 0x61, - 0xc9, 0xd7, 0x43, 0x05, 0x16, 0x7c, 0x7c, 0x45, 0xa2, 0xce, 0xcb, 0x82, 0x16, 0x99, 0x88, 0x95, - 0xc5, 0x5d, 0x55, 0x71, 0xc8, 0xf8, 0xd3, 0xf6, 0x32, 0x42, 0x70, 0xc0, 0x5e, 0x83, 0xa2, 0xd0, - 0xfb, 0xf2, 0xb7, 0x83, 0x5c, 0x5b, 0x2e, 0x40, 0xb8, 0x1a, 0x7c, 0xca, 0xed, 0xf1, 0x4a, 0x90, - 0xcd, 0x99, 0x55, 0x09, 0xdc, 0x65, 0x6b, 0xed, 0x0e, 0x54, 0x38, 0x3d, 0x27, 0x29, 0x09, 0x37, - 0x62, 0x04, 0x21, 0x41, 0x4a, 0xc4, 0xcd, 0x72, 0x6a, 0xc4, 0x4d, 0x74, 0x78, 0x57, 0x5c, 0x96, - 0x77, 0x11, 0x78, 0x9c, 0x45, 0x0d, 0x2e, 0xc3, 0xd8, 0x0a, 0x9d, 0x0a, 0x8f, 0xfa, 0x20, 0x75, - 0x2a, 0x6f, 0x42, 0xed, 0xd4, 0x9e, 0x4c, 0x4e, 0xec, 0xd1, 0x33, 0xae, 0x0a, 0xa8, 0x72, 0xed, - 0xa7, 0x04, 0xa2, 0x2e, 0xe0, 0x0e, 0x54, 0xb4, 0x59, 0x46, 0x1f, 0xe1, 0xbc, 0x09, 0xd1, 0xfc, - 0x26, 0x35, 0x7c, 0xf5, 0x57, 0xd0, 0xf0, 0x69, 0xbe, 0xd2, 0xcb, 0x71, 0x5f, 0xe9, 0x5b, 0xc8, - 0x4d, 0x85, 0x07, 0x6a, 0x83, 0x07, 0xf5, 0xb3, 0xc7, 0x63, 0x1e, 0x87, 0xe5, 0x0d, 0xa8, 0x8a, - 0xc1, 0xe3, 0xf8, 0x15, 0x7e, 0x97, 0xe0, 0x30, 0x4e, 0x72, 0x9b, 0xab, 0xa9, 0x67, 0xb6, 0x33, - 0xc6, 0xa7, 0x3b, 0xc2, 0xa2, 0x61, 0x4f, 0xc3, 0x23, 0xdb, 0x41, 0xdf, 0x3b, 0x89, 0xc6, 0xd3, - 0x71, 0x95, 0x8f, 0xbf, 0x40, 0x0f, 0x78, 0x4c, 0x13, 0x45, 0x31, 0x55, 0x61, 0x1b, 0xcc, 0x8a, - 0x20, 0xc1, 0x75, 0xf0, 0x21, 0xba, 0x6c, 0x85, 0x14, 0x03, 0x33, 0xd4, 0x1f, 0xde, 0x52, 0x9e, - 0x24, 0xb8, 0x4a, 0xe5, 0x7f, 0x6e, 0xe9, 0xe4, 0x94, 0x4c, 0xb8, 0xe3, 0x06, 0xd7, 0x8d, 0x98, - 0xfc, 0x2b, 0x48, 0xd1, 0xe0, 0xca, 0x09, 0xc8, 0x67, 0xda, 0xfd, 0xb5, 0x89, 0xc4, 0xaf, 0x25, - 0xca, 0xbf, 0xee, 0x6d, 0xe4, 0x6d, 0x00, 0x27, 0x60, 0xa7, 0x4c, 0x40, 0xdd, 0x31, 0xc6, 0x57, - 0x28, 0x99, 0x65, 0x27, 0x78, 0xca, 0x01, 0xdf, 0xee, 0xc5, 0xb6, 0x05, 0x55, 0xbd, 0x9b, 0xa4, - 0x04, 0xf9, 0xfe, 0x51, 0xa7, 0xd7, 0xb8, 0x41, 0x2a, 0x50, 0x1c, 0x74, 0x86, 0xc3, 0x03, 0x34, - 0xdb, 0x56, 0xa1, 0xa4, 0x5e, 0x4f, 0x67, 0x59, 0xaa, 0xd5, 0x6e, 0x77, 0x8e, 0x86, 0x9d, 0xdd, - 0x46, 0xee, 0x47, 0xf9, 0x52, 0xb6, 0x91, 0x33, 0xfe, 0x28, 0x07, 0x15, 0x6d, 0x14, 0x5e, 0xcc, - 0x8c, 0xe3, 0x71, 0x7a, 0xb2, 0xc9, 0x38, 0x3d, 0xba, 0x8d, 0x42, 0xc4, 0x32, 0x92, 0x36, 0x8a, - 0x37, 0xa1, 0x26, 0xe2, 0x09, 0x6a, 0xc6, 0xf7, 0x82, 0x59, 0xe5, 0x40, 0xc1, 0xaa, 0x31, 0x16, - 0x03, 0x12, 0xe1, 0x2b, 0x57, 0x11, 0x09, 0x8c, 0x83, 0xf0, 0x9d, 0x2b, 0x3e, 0x52, 0x0e, 0xbc, - 0xc9, 0x05, 0xe5, 0x14, 0x5c, 0x22, 0xac, 0x08, 0xd8, 0x50, 0xc4, 0xb9, 0x10, 0xfc, 0x50, 0x0b, - 0x06, 0x50, 0x30, 0xab, 0x1c, 0x28, 0x2a, 0x7a, 0x5f, 0x2e, 0x20, 0xee, 0x8a, 0xb4, 0xb9, 0xb8, - 0x1a, 0x62, 0x8b, 0xe7, 0x60, 0x41, 0x8d, 0x58, 0xc6, 0x85, 0xf1, 0x9d, 0xc5, 0x7c, 0x2f, 0x57, - 0x27, 0x92, 0x77, 0x81, 0x4c, 0x67, 0x33, 0x2b, 0x45, 0xc1, 0x97, 0x37, 0x97, 0xa7, 0xb3, 0xd9, - 0x50, 0xd3, 0x7f, 0x7d, 0x0b, 0xba, 0xc7, 0xaf, 0x81, 0xb4, 0xd8, 0x06, 0xc6, 0x26, 0xaa, 0xab, - 0x58, 0xc4, 0x96, 0x33, 0x3a, 0x5b, 0x4e, 0xe1, 0x7e, 0xd9, 0x54, 0xee, 0xf7, 0x22, 0x3e, 0x61, - 0xec, 0x41, 0xe5, 0x48, 0x0b, 0xeb, 0x7a, 0x97, 0x9d, 0x10, 0x32, 0xa0, 0x2b, 0x3f, 0x3b, 0xb8, - 0x4e, 0xd1, 0x17, 0x71, 0x5c, 0xb5, 0xd6, 0x64, 0xb5, 0xd6, 0x18, 0x7f, 0x3b, 0xc3, 0xa3, 0xaa, - 0xa9, 0xc6, 0x47, 0x91, 0x64, 0xa5, 0x69, 0x2e, 0x8a, 0xd9, 0x51, 0x91, 0xc6, 0x37, 0x11, 0x6e, - 0x03, 0x9b, 0x66, 0x79, 0xa7, 0xa7, 0x01, 0x95, 0x0e, 0x3b, 0x15, 0x84, 0xf5, 0x11, 0x24, 0x85, - 0x6f, 0x26, 0xe1, 0x3b, 0xbc, 0xfc, 0x40, 0x78, 0xe9, 0x30, 0xe1, 0xfb, 0xd0, 0xbe, 0x14, 0xb5, - 0x06, 0x4c, 0x04, 0x11, 0xf6, 0x01, 0xf9, 0x66, 0x5d, 0xa5, 0x8d, 0xbf, 0x21, 0xc2, 0x8a, 0x24, - 0xc7, 0xf7, 0x3e, 0x94, 0x54, 0xa9, 0xf1, 0x13, 0x56, 0x52, 0x2a, 0x3c, 0x3b, 0xc7, 0x51, 0x19, - 0x12, 0x6b, 0x31, 0xdf, 0x5c, 0x68, 0xe3, 0xe9, 0x6a, 0xad, 0x7e, 0x0f, 0xc8, 0xa9, 0xe3, 0x27, - 0x89, 0xf9, 0x66, 0x6b, 0x20, 0x46, 0xa3, 0x36, 0x8e, 0x61, 0x55, 0x72, 0x09, 0xed, 0x46, 0x10, - 0x9f, 0xbc, 0xcc, 0x4b, 0x98, 0x7c, 0x76, 0x81, 0xc9, 0x1b, 0xbf, 0x51, 0x80, 0xa2, 0x0c, 0x91, - 0x9c, 0x16, 0xd6, 0xb7, 0x1c, 0x0f, 0xeb, 0xdb, 0x8c, 0x45, 0x21, 0xc4, 0xa9, 0x17, 0xe7, 0xfd, - 0x3b, 0xc9, 0x23, 0x5b, 0xb3, 0x55, 0xc4, 0x8e, 0x6d, 0x61, 0xab, 0x28, 0xc4, 0x6d, 0x15, 0x69, - 0xa1, 0x8e, 0xb9, 0xe8, 0xb9, 0x10, 0xea, 0xf8, 0x16, 0x70, 0x39, 0x42, 0xf3, 0x54, 0x2c, 0x21, - 0x40, 0xc4, 0x5d, 0xd0, 0xc4, 0x8e, 0x52, 0x52, 0xec, 0x78, 0x65, 0x91, 0xe0, 0x63, 0x58, 0xe2, - 0x21, 0x8a, 0xc4, 0x1b, 0x7c, 0x79, 0x70, 0x88, 0xb1, 0x92, 0xff, 0xf9, 0x03, 0x18, 0x53, 0xd0, - 0xea, 0xa1, 0x31, 0x2b, 0xb1, 0xd0, 0x98, 0xba, 0x0d, 0xa5, 0x1a, 0xb7, 0xa1, 0xdc, 0x83, 0x86, - 0x1a, 0x38, 0xd4, 0x48, 0xba, 0x81, 0x78, 0x7f, 0x5b, 0x97, 0x70, 0xc6, 0x0d, 0x7b, 0x41, 0x74, - 0xf0, 0xd5, 0x63, 0x07, 0x1f, 0xe3, 0x55, 0xad, 0x30, 0xa4, 0xd3, 0x59, 0x28, 0x0f, 0x3e, 0x2d, - 0xba, 0x34, 0x9f, 0x79, 0xfe, 0x40, 0x48, 0x4e, 0x2f, 0x5f, 0x1d, 0x3b, 0x50, 0x3f, 0xb5, 0x9d, - 0xc9, 0xdc, 0xa7, 0x96, 0x4f, 0xed, 0xc0, 0x73, 0x71, 0xf3, 0x47, 0x67, 0xb0, 0xe8, 0xe2, 0x1e, - 0xa7, 0x31, 0x91, 0xc4, 0xac, 0x9d, 0xea, 0x49, 0x7c, 0x66, 0xa7, 0x8f, 0x04, 0x3b, 0xb2, 0xc4, - 0x4b, 0x7c, 0xee, 0x78, 0xd4, 0xed, 0x59, 0x7b, 0x07, 0xdd, 0x27, 0xfb, 0xc3, 0x46, 0x86, 0x25, - 0x07, 0xc7, 0xed, 0x76, 0xa7, 0xb3, 0x8b, 0x47, 0x18, 0xc0, 0xd2, 0x5e, 0xab, 0x7b, 0x20, 0x0e, - 0xb0, 0x7c, 0xa3, 0x60, 0xfc, 0x93, 0x2c, 0x54, 0xb4, 0xde, 0x90, 0x47, 0x6a, 0x12, 0x78, 0xec, - 0x8f, 0xdb, 0x8b, 0x3d, 0xde, 0x96, 0x1c, 0x5e, 0x9b, 0x05, 0x15, 0x47, 0x3a, 0x7b, 0x6d, 0x1c, - 0x69, 0xf2, 0x36, 0x2c, 0xdb, 0xbc, 0x04, 0x35, 0xe8, 0x42, 0xb9, 0x2f, 0xc0, 0x62, 0xcc, 0xdf, - 0x16, 0x71, 0x48, 0xc4, 0x31, 0xc5, 0xe8, 0xf2, 0xd2, 0x03, 0x57, 0x9d, 0x54, 0x38, 0x37, 0x45, - 0x31, 0x32, 0xc2, 0x18, 0xaf, 0x0e, 0x7c, 0x31, 0x5e, 0x12, 0xcd, 0xdf, 0xde, 0x6a, 0x2b, 0xbc, - 0x6a, 0xaa, 0xb4, 0xf1, 0x09, 0x40, 0xd4, 0x9f, 0xf8, 0xf0, 0xdd, 0x88, 0x0f, 0x5f, 0x46, 0x1b, - 0xbe, 0xac, 0xf1, 0x0f, 0x04, 0xeb, 0x12, 0x73, 0xa1, 0x54, 0x7d, 0xef, 0x83, 0x54, 0x3e, 0x5a, - 0xe8, 0xb1, 0x3f, 0x9b, 0xd0, 0x50, 0x3e, 0x1f, 0x5e, 0x11, 0x98, 0xae, 0x42, 0x2c, 0xb0, 0xda, - 0xec, 0x22, 0xab, 0x7d, 0x03, 0xaa, 0x18, 0xd8, 0x4e, 0x54, 0x24, 0xd8, 0x55, 0x65, 0x6a, 0x5f, - 0xca, 0xba, 0x63, 0x3c, 0x36, 0x9f, 0xe0, 0xb1, 0x7f, 0x33, 0xc3, 0xa3, 0x20, 0x45, 0x0d, 0x8d, - 0x98, 0xac, 0x2a, 0x33, 0xce, 0x64, 0x05, 0xa9, 0xa9, 0xf0, 0xd7, 0x30, 0xce, 0x6c, 0x3a, 0xe3, - 0x4c, 0x67, 0xc9, 0xb9, 0x54, 0x96, 0x6c, 0x6c, 0x41, 0x73, 0x97, 0xb2, 0xa1, 0x68, 0x4d, 0x26, - 0x89, 0xb1, 0x34, 0x6e, 0xc1, 0xcd, 0x14, 0x9c, 0xd0, 0xda, 0xfc, 0x66, 0x06, 0xd6, 0x5b, 0x3c, - 0xf8, 0xc9, 0xb7, 0xf6, 0xbe, 0xf7, 0x73, 0xb8, 0xa9, 0xdc, 0xef, 0xb5, 0x67, 0x83, 0x7a, 0xe4, - 0x2a, 0xe9, 0xb9, 0xaf, 0x3d, 0x3a, 0x61, 0x67, 0xa6, 0xd1, 0x84, 0x8d, 0x64, 0x6b, 0x44, 0x43, - 0xf7, 0x60, 0x65, 0x97, 0x9e, 0xcc, 0xcf, 0x0e, 0xe8, 0x45, 0xd4, 0x46, 0x02, 0xf9, 0xe0, 0xdc, - 0x7b, 0x2e, 0x16, 0x06, 0xfe, 0x46, 0xff, 0x5c, 0x46, 0x63, 0x05, 0x33, 0x3a, 0x92, 0x5a, 0x7f, - 0x84, 0x0c, 0x66, 0x74, 0x64, 0x3c, 0x02, 0xa2, 0x97, 0x23, 0x66, 0x91, 0x5d, 0xc9, 0xe6, 0x27, - 0x56, 0x70, 0x15, 0x84, 0x74, 0x2a, 0x9f, 0xc4, 0x42, 0x30, 0x3f, 0x19, 0x70, 0x88, 0xf1, 0x0e, - 0x54, 0x8f, 0xec, 0x2b, 0x93, 0x7e, 0x2d, 0x5e, 0x9e, 0x6e, 0x42, 0x71, 0x66, 0x5f, 0x31, 0x5e, - 0xac, 0x0c, 0x80, 0x88, 0x36, 0xfe, 0x51, 0x1e, 0x96, 0x38, 0x25, 0xb9, 0xcb, 0xbf, 0xf0, 0xe0, - 0xb8, 0xc8, 0x0b, 0xe5, 0xa9, 0xa4, 0x81, 0x16, 0x0e, 0xae, 0xec, 0xe2, 0xc1, 0x25, 0xb4, 0x95, - 0x32, 0xb2, 0x9e, 0x34, 0xd5, 0xb8, 0xf3, 0xa9, 0x0c, 0xa7, 0x17, 0x8f, 0xfd, 0x91, 0x8f, 0xbe, - 0x0c, 0xc2, 0xe3, 0x1e, 0xc4, 0x8d, 0xe9, 0xd1, 0xc5, 0x8f, 0xb7, 0x4e, 0x9e, 0xc7, 0xe2, 0xcc, - 0xd2, 0x41, 0xa9, 0xb7, 0xcb, 0xa2, 0x7c, 0x4e, 0x1d, 0xbf, 0x5d, 0x2e, 0xdc, 0x22, 0x4b, 0x2f, - 0xbf, 0x45, 0x72, 0x35, 0xe6, 0x0b, 0x6e, 0x91, 0xf0, 0x0a, 0xb7, 0xc8, 0x57, 0x30, 0x64, 0xdf, - 0x84, 0x12, 0x0a, 0x59, 0xda, 0x11, 0xc6, 0x84, 0x2b, 0x76, 0x84, 0x7d, 0xaa, 0xdd, 0xb3, 0xb8, - 0x17, 0x8d, 0x76, 0x86, 0x98, 0xf4, 0xeb, 0x9f, 0x8d, 0x81, 0xf0, 0x2b, 0x28, 0x0a, 0x28, 0x5b, - 0xd0, 0xae, 0x3d, 0x95, 0xf1, 0x63, 0xf1, 0x37, 0x1b, 0x36, 0x8c, 0xa8, 0xf8, 0xf5, 0xdc, 0xf1, - 0xe9, 0x58, 0xc6, 0x75, 0x73, 0x70, 0x7f, 0x33, 0x08, 0xeb, 0x20, 0xbb, 0xf3, 0xb9, 0x32, 0xfe, - 0x7b, 0xc9, 0x2c, 0x3a, 0xc1, 0x53, 0x96, 0x34, 0x08, 0x34, 0x30, 0x02, 0xf6, 0xcc, 0xf3, 0xa5, - 0x84, 0x60, 0xfc, 0x6e, 0x06, 0x1a, 0x62, 0x77, 0x29, 0x9c, 0x7e, 0xe5, 0x2a, 0x5c, 0xe7, 0xf4, - 0xf1, 0xe2, 0x28, 0x6d, 0x06, 0xd4, 0x50, 0xd3, 0xa4, 0xc4, 0x05, 0xae, 0x29, 0xab, 0x30, 0xe0, - 0x9e, 0x10, 0x19, 0x5e, 0x87, 0x8a, 0x7c, 0x3d, 0x30, 0x75, 0x26, 0xf2, 0x23, 0x40, 0xfc, 0xf9, - 0xc0, 0xa1, 0x33, 0x91, 0xd2, 0x86, 0x6f, 0x8b, 0xe7, 0xfd, 0x19, 0x94, 0x36, 0x4c, 0x3b, 0xa4, - 0xc6, 0x3f, 0xce, 0xc0, 0x8a, 0xd6, 0x15, 0xb1, 0x6f, 0xbf, 0x07, 0x55, 0x15, 0x97, 0x9f, 0x2a, - 0x31, 0x77, 0x33, 0xce, 0xa3, 0xa2, 0x6c, 0x95, 0x91, 0x82, 0x04, 0xac, 0x31, 0x63, 0xfb, 0x8a, - 0xbb, 0xb8, 0xcf, 0xa7, 0xf2, 0x26, 0x39, 0xb6, 0xaf, 0xf6, 0x28, 0x1d, 0xcc, 0xa7, 0xe4, 0x2e, - 0x54, 0x9f, 0x53, 0xfa, 0x4c, 0x11, 0x70, 0xd6, 0x0b, 0x0c, 0x26, 0x28, 0x0c, 0xa8, 0x4d, 0x3d, - 0x37, 0x3c, 0x57, 0x24, 0x42, 0xc4, 0x47, 0x20, 0xa7, 0x31, 0xfe, 0x20, 0x0b, 0xab, 0x5c, 0x9f, - 0x29, 0xf4, 0xc8, 0x82, 0x75, 0x35, 0x61, 0x89, 0xab, 0x76, 0x39, 0xf3, 0xda, 0xbf, 0x61, 0x8a, - 0x34, 0xf9, 0xf8, 0x15, 0x75, 0xb0, 0x32, 0x82, 0xc0, 0x35, 0xc3, 0x9f, 0x5b, 0x1c, 0xfe, 0xeb, - 0x87, 0x37, 0xcd, 0xaa, 0x5c, 0x48, 0xb3, 0x2a, 0xbf, 0x8a, 0x2d, 0x77, 0xe1, 0xad, 0x7b, 0x71, - 0x31, 0x24, 0xec, 0x23, 0xd8, 0x8c, 0xd1, 0x20, 0xb7, 0x76, 0x4e, 0x1d, 0x15, 0x6f, 0x7c, 0x4d, - 0xa3, 0x1e, 0x48, 0xdc, 0x4e, 0x11, 0x0a, 0xc1, 0xc8, 0x9b, 0x51, 0x63, 0x03, 0xd6, 0xe2, 0xa3, - 0x2a, 0x8e, 0x89, 0xdf, 0xce, 0x40, 0x73, 0x2f, 0x8a, 0xad, 0xeb, 0x04, 0xa1, 0xe7, 0xab, 0x10, - 0xed, 0xb7, 0x01, 0xf8, 0x07, 0x89, 0xf0, 0xe2, 0x2e, 0xa2, 0x24, 0x21, 0x04, 0xaf, 0xed, 0x37, - 0xa1, 0x44, 0xdd, 0x31, 0x47, 0xf2, 0xd5, 0x50, 0xa4, 0xee, 0x58, 0x5e, 0xfa, 0x17, 0x8e, 0xe1, - 0x5a, 0x5c, 0xc0, 0x10, 0xf1, 0x3e, 0xd8, 0xe8, 0xd0, 0x0b, 0x14, 0x07, 0xf2, 0x2a, 0xde, 0xc7, - 0xa1, 0x7d, 0x89, 0xee, 0xd1, 0x81, 0xf1, 0x97, 0xb3, 0xb0, 0x1c, 0xb5, 0x8f, 0x47, 0x3c, 0x7a, - 0x71, 0xec, 0xa6, 0xbb, 0x62, 0x39, 0x38, 0xec, 0xb2, 0xa4, 0x69, 0x79, 0x4b, 0x7c, 0x73, 0x76, - 0x5d, 0x62, 0x40, 0x45, 0x52, 0x78, 0xf3, 0x50, 0x0b, 0x63, 0x5b, 0xe6, 0x24, 0xfd, 0x79, 0xc8, - 0x6e, 0xb7, 0xec, 0x9a, 0xef, 0xb8, 0xe2, 0x7e, 0x59, 0xb0, 0xa7, 0x61, 0x17, 0xbf, 0x7a, 0xc5, - 0xc0, 0x2c, 0x1b, 0x9f, 0x48, 0x46, 0xc5, 0xe8, 0x1b, 0xfc, 0xb2, 0xc3, 0x67, 0x0e, 0x2f, 0x3a, - 0xfa, 0x4d, 0x80, 0x7f, 0xa8, 0x43, 0xdd, 0x04, 0x5e, 0x87, 0x0a, 0x2f, 0x3c, 0x0a, 0x6d, 0x80, - 0x31, 0xe5, 0xc2, 0xae, 0x8b, 0x78, 0xa1, 0x71, 0xf3, 0xe6, 0x31, 0x3d, 0x03, 0xf0, 0xaa, 0xd0, - 0xc5, 0xe6, 0x37, 0x33, 0x70, 0x33, 0x65, 0xda, 0xc4, 0x2e, 0x6f, 0x83, 0x16, 0x61, 0x59, 0x8e, - 0x2e, 0xdf, 0xea, 0x1b, 0x92, 0xad, 0xc6, 0xc7, 0xd4, 0x6c, 0x9c, 0xc6, 0x01, 0xd1, 0x0d, 0x97, - 0xcf, 0x60, 0x2c, 0x70, 0x06, 0x8a, 0x53, 0x7c, 0x1a, 0xf9, 0xe5, 0xf2, 0x08, 0xb6, 0x3a, 0x97, - 0x8c, 0x63, 0x28, 0x97, 0xe9, 0xd1, 0xb3, 0xb9, 0xb4, 0x7c, 0x25, 0xb4, 0xf9, 0x99, 0x57, 0xd2, - 0xe6, 0x8f, 0xf9, 0xb3, 0x76, 0x55, 0xd6, 0x4f, 0x53, 0x08, 0x1e, 0xa0, 0x2c, 0xcf, 0x09, 0x16, - 0x21, 0x23, 0x68, 0x30, 0x10, 0x2f, 0xd4, 0x08, 0x60, 0xf9, 0x70, 0x3e, 0x09, 0x9d, 0xb6, 0x02, - 0x91, 0x8f, 0x45, 0x1e, 0xac, 0x47, 0x8e, 0x5a, 0x6a, 0x45, 0xa0, 0x2a, 0xc2, 0xc1, 0x9a, 0xb2, - 0x82, 0xac, 0xc5, 0xfa, 0x96, 0xa7, 0xf1, 0x1a, 0x8c, 0x9b, 0xb0, 0x19, 0xa5, 0xf8, 0xb0, 0xc9, - 0xa3, 0xe6, 0x6f, 0x65, 0xf8, 0x5b, 0x0c, 0x8e, 0x1b, 0xb8, 0xf6, 0x2c, 0x38, 0xf7, 0x42, 0xd2, - 0x81, 0xd5, 0xc0, 0x71, 0xcf, 0x26, 0x54, 0x2f, 0x3e, 0x10, 0x83, 0xb0, 0x1e, 0x6f, 0x1b, 0xcf, - 0x1a, 0x98, 0x2b, 0x3c, 0x47, 0x54, 0x5a, 0x40, 0x76, 0xae, 0x6b, 0x64, 0xb4, 0x2c, 0x12, 0xa3, - 0xb1, 0xd8, 0xf8, 0x2e, 0xd4, 0xe3, 0x15, 0x91, 0x4f, 0x45, 0x34, 0x88, 0xa8, 0x55, 0xb9, 0xc4, - 0x5b, 0xf8, 0x68, 0x41, 0x54, 0xa2, 0xb1, 0x0f, 0x8c, 0xbf, 0x98, 0x81, 0xa6, 0x49, 0xd9, 0xca, - 0xd5, 0x5a, 0x29, 0xd7, 0xcc, 0xf7, 0x16, 0x4a, 0xbd, 0xbe, 0xaf, 0x32, 0xc8, 0x84, 0x6c, 0xd1, - 0x7b, 0xd7, 0x4e, 0xc6, 0xfe, 0x8d, 0x85, 0x1e, 0xed, 0x94, 0x60, 0x89, 0x93, 0x18, 0x9b, 0xb0, - 0x2e, 0xda, 0x23, 0xdb, 0x12, 0x99, 0x6a, 0x63, 0x35, 0xc6, 0x4c, 0xb5, 0x5b, 0xd0, 0xe4, 0x8f, - 0xb6, 0xf5, 0x4e, 0x88, 0x8c, 0xbb, 0x40, 0x0e, 0xed, 0x91, 0xed, 0x7b, 0x9e, 0x7b, 0x44, 0x7d, - 0xe1, 0x0c, 0x8d, 0x12, 0x26, 0x5a, 0x32, 0xa5, 0x28, 0xcc, 0x53, 0x32, 0x78, 0xb7, 0xe7, 0x4a, - 0xdf, 0x2f, 0x9e, 0x32, 0x7c, 0x58, 0xdd, 0xb1, 0x9f, 0x51, 0x59, 0x92, 0x1c, 0xa2, 0xc7, 0x50, - 0x99, 0xa9, 0x42, 0xe5, 0xb8, 0xcb, 0x00, 0x3a, 0x8b, 0xd5, 0x9a, 0x3a, 0x35, 0x63, 0x41, 0xbe, - 0xe7, 0x85, 0x18, 0x88, 0x42, 0x1a, 0xc3, 0xcc, 0x32, 0x03, 0x3d, 0xa5, 0x57, 0xdd, 0xb1, 0xf1, - 0x10, 0xd6, 0xe2, 0x75, 0x0a, 0xd6, 0xb2, 0x05, 0xa5, 0xa9, 0x80, 0x89, 0xd6, 0xab, 0x34, 0xbb, - 0x8c, 0xb0, 0x2b, 0x9f, 0xcc, 0xd3, 0xdd, 0x55, 0x57, 0xaa, 0xc7, 0xb0, 0xb9, 0x80, 0x11, 0x05, - 0xde, 0x85, 0xaa, 0xd6, 0x10, 0xde, 0x8d, 0x3c, 0x13, 0x59, 0x45, 0x4b, 0x02, 0xe3, 0x73, 0xd8, - 0xe4, 0xf7, 0xb1, 0x28, 0xbb, 0x1c, 0x82, 0x44, 0x2f, 0x32, 0xc9, 0x5e, 0x7c, 0x2c, 0xaf, 0x79, - 0x7a, 0xd6, 0x28, 0x30, 0xdd, 0x18, 0x71, 0xd2, 0x7d, 0x47, 0x26, 0x8d, 0x63, 0xd8, 0x58, 0x1c, - 0x3e, 0xd6, 0xfe, 0x3f, 0xd3, 0x90, 0xcb, 0xe1, 0x89, 0xd0, 0x6a, 0x78, 0xfe, 0x6b, 0x86, 0x8f, - 0x4f, 0x0c, 0x25, 0x9a, 0x39, 0x06, 0x32, 0xa5, 0xe1, 0xb9, 0x37, 0xb6, 0x16, 0x6b, 0x7e, 0xa4, - 0xbc, 0x87, 0x52, 0xf3, 0x6e, 0x1f, 0x62, 0x46, 0x0d, 0x23, 0xfc, 0xd8, 0xa7, 0x49, 0xf8, 0xd6, - 0x08, 0x36, 0xd2, 0x89, 0x53, 0x7c, 0x6e, 0x3e, 0x8a, 0x0b, 0xea, 0xb7, 0xaf, 0xed, 0x3e, 0x6b, - 0x96, 0x2e, 0xb7, 0xff, 0x56, 0x09, 0x8a, 0x42, 0x4b, 0x42, 0xb6, 0x21, 0x3f, 0x92, 0xfe, 0x9b, - 0x51, 0x70, 0x42, 0x81, 0x95, 0xff, 0xdb, 0xe8, 0xc5, 0xc9, 0xe8, 0xc8, 0x63, 0xa8, 0xc7, 0x5d, - 0x18, 0x12, 0x41, 0x49, 0xe2, 0xbe, 0x07, 0xb5, 0x51, 0xc2, 0x58, 0x5d, 0x8e, 0x84, 0x2b, 0x2e, - 0x73, 0x96, 0xce, 0x35, 0xe9, 0xcb, 0x73, 0xd9, 0x7d, 0x2d, 0x38, 0xb7, 0xad, 0x87, 0x8f, 0x3e, - 0x11, 0x51, 0x49, 0x2a, 0x08, 0x1c, 0x9c, 0xdb, 0x0f, 0x1f, 0x7d, 0x92, 0xbc, 0x89, 0x89, 0x98, - 0x24, 0xda, 0x4d, 0x6c, 0x0d, 0x0a, 0x3c, 0xc2, 0x39, 0x77, 0xc4, 0xe3, 0x09, 0xf2, 0x00, 0xd6, - 0xa4, 0xe2, 0x4d, 0x3c, 0x99, 0xe0, 0xa7, 0x28, 0xff, 0xc0, 0x13, 0x11, 0xb8, 0x01, 0xa2, 0xb8, - 0xaa, 0x6e, 0x03, 0x96, 0xce, 0xa3, 0x90, 0xf5, 0x35, 0x53, 0xa4, 0x8c, 0x3f, 0x28, 0x40, 0x45, - 0x1b, 0x14, 0x52, 0x85, 0x92, 0xd9, 0x19, 0x74, 0xcc, 0x2f, 0x3a, 0xbb, 0x8d, 0x1b, 0xe4, 0x1e, - 0xbc, 0xd5, 0xed, 0xb5, 0xfb, 0xa6, 0xd9, 0x69, 0x0f, 0xad, 0xbe, 0x69, 0xc9, 0x10, 0x99, 0x47, - 0xad, 0xaf, 0x0e, 0x3b, 0xbd, 0xa1, 0xb5, 0xdb, 0x19, 0xb6, 0xba, 0x07, 0x83, 0x46, 0x86, 0xbc, - 0x06, 0xcd, 0x88, 0x52, 0xa2, 0x5b, 0x87, 0xfd, 0xe3, 0xde, 0xb0, 0x91, 0x25, 0x77, 0xe0, 0xd6, - 0x5e, 0xb7, 0xd7, 0x3a, 0xb0, 0x22, 0x9a, 0xf6, 0xc1, 0xf0, 0x0b, 0xab, 0xf3, 0xf3, 0x47, 0x5d, - 0xf3, 0xab, 0x46, 0x2e, 0x8d, 0x60, 0x7f, 0x78, 0xd0, 0x96, 0x25, 0xe4, 0xc9, 0x4d, 0x58, 0xe7, - 0x04, 0x3c, 0x8b, 0x35, 0xec, 0xf7, 0xad, 0x41, 0xbf, 0xdf, 0x6b, 0x14, 0xc8, 0x0a, 0xd4, 0xba, - 0xbd, 0x2f, 0x5a, 0x07, 0xdd, 0x5d, 0xcb, 0xec, 0xb4, 0x0e, 0x0e, 0x1b, 0x4b, 0x64, 0x15, 0x96, - 0x93, 0x74, 0x45, 0x56, 0x84, 0xa4, 0xeb, 0xf7, 0xba, 0xfd, 0x9e, 0xf5, 0x45, 0xc7, 0x1c, 0x74, - 0xfb, 0xbd, 0x46, 0x89, 0x6c, 0x00, 0x89, 0xa3, 0xf6, 0x0f, 0x5b, 0xed, 0x46, 0x99, 0xac, 0xc3, - 0x4a, 0x1c, 0xfe, 0xb4, 0xf3, 0x55, 0x03, 0x48, 0x13, 0xd6, 0x78, 0xc3, 0xac, 0x9d, 0xce, 0x41, - 0xff, 0x4b, 0xeb, 0xb0, 0xdb, 0xeb, 0x1e, 0x1e, 0x1f, 0x36, 0x2a, 0x18, 0xa8, 0xb8, 0xd3, 0xb1, - 0xba, 0xbd, 0xc1, 0xf1, 0xde, 0x5e, 0xb7, 0xdd, 0xed, 0xf4, 0x86, 0x8d, 0x2a, 0xaf, 0x39, 0xad, - 0xe3, 0x35, 0x96, 0x41, 0x3c, 0x92, 0xb3, 0x76, 0xbb, 0x83, 0xd6, 0xce, 0x41, 0x67, 0xb7, 0x51, - 0x27, 0xb7, 0xe1, 0xe6, 0xb0, 0x73, 0x78, 0xd4, 0x37, 0x5b, 0xe6, 0x57, 0xf2, 0x11, 0x9d, 0xb5, - 0xd7, 0xea, 0x1e, 0x1c, 0x9b, 0x9d, 0xc6, 0x32, 0x79, 0x03, 0x6e, 0x9b, 0x9d, 0x1f, 0x1f, 0x77, - 0xcd, 0xce, 0xae, 0xd5, 0xeb, 0xef, 0x76, 0xac, 0xbd, 0x4e, 0x6b, 0x78, 0x6c, 0x76, 0xac, 0xc3, - 0xee, 0x60, 0xd0, 0xed, 0x3d, 0x69, 0x34, 0xc8, 0x5b, 0x70, 0x57, 0x91, 0xa8, 0x02, 0x12, 0x54, - 0x2b, 0xac, 0x7f, 0x72, 0x4a, 0x7b, 0x9d, 0x9f, 0x1f, 0x5a, 0x47, 0x9d, 0x8e, 0xd9, 0x20, 0x64, - 0x0b, 0x36, 0xa2, 0xea, 0x79, 0x05, 0xa2, 0xee, 0x55, 0x86, 0x3b, 0xea, 0x98, 0x87, 0xad, 0x1e, - 0x9b, 0xe0, 0x18, 0x6e, 0x8d, 0x35, 0x3b, 0xc2, 0x25, 0x9b, 0xbd, 0x4e, 0x08, 0xd4, 0xb5, 0x59, - 0xd9, 0x6b, 0x99, 0x8d, 0x0d, 0xb2, 0x0c, 0x95, 0xc3, 0xa3, 0x23, 0x6b, 0xd8, 0x3d, 0xec, 0xf4, - 0x8f, 0x87, 0x8d, 0x4d, 0xb2, 0x0e, 0x8d, 0x6e, 0x6f, 0xd8, 0x31, 0xd9, 0x5c, 0xcb, 0xac, 0xff, - 0xad, 0x48, 0xd6, 0x60, 0x59, 0xb6, 0x54, 0x42, 0xff, 0xb8, 0x48, 0x36, 0x81, 0x1c, 0xf7, 0xcc, - 0x4e, 0x6b, 0x97, 0x0d, 0x9c, 0x42, 0xfc, 0xf7, 0xa2, 0x30, 0x67, 0xfe, 0x6e, 0x4e, 0x09, 0x7b, - 0x91, 0x7f, 0x50, 0xfc, 0x1b, 0x33, 0x55, 0xed, 0xdb, 0x30, 0x2f, 0xfb, 0xb4, 0x9f, 0x76, 0x35, - 0xcf, 0x2d, 0x5c, 0xcd, 0x17, 0x74, 0x3f, 0x35, 0xfd, 0xee, 0xf0, 0x26, 0xd4, 0xa6, 0xfc, 0x7b, - 0x33, 0xe2, 0x83, 0x05, 0x20, 0x9c, 0xe5, 0x38, 0x90, 0x7f, 0xad, 0x60, 0xe1, 0xdb, 0x76, 0x85, - 0xc5, 0x6f, 0xdb, 0xa5, 0xdd, 0x0f, 0x97, 0xd2, 0xee, 0x87, 0xf7, 0x61, 0x85, 0xb3, 0x26, 0xc7, - 0x75, 0xa6, 0x52, 0xeb, 0x22, 0xbe, 0x14, 0x87, 0x2c, 0x8a, 0xc3, 0xe5, 0x75, 0x54, 0x5e, 0x59, - 0x05, 0x0b, 0x29, 0x8a, 0xdb, 0x6a, 0xec, 0xa6, 0xca, 0x39, 0x87, 0xba, 0xa9, 0xaa, 0x1a, 0xec, - 0xcb, 0xa8, 0x86, 0x8a, 0x56, 0x03, 0x87, 0x63, 0x0d, 0xf7, 0x61, 0x85, 0x5e, 0x86, 0xbe, 0x6d, - 0x79, 0x33, 0xfb, 0xeb, 0x39, 0xfa, 0x5b, 0xd8, 0xa8, 0x03, 0xaa, 0x9a, 0xcb, 0x88, 0xe8, 0x23, - 0x7c, 0xd7, 0x0e, 0x6d, 0xe3, 0x97, 0x00, 0xd4, 0xa9, 0x8a, 0x5f, 0xdc, 0x73, 0x3d, 0xf9, 0x24, - 0xb2, 0x6a, 0xf2, 0x04, 0xce, 0x63, 0xe8, 0xf9, 0xf6, 0x19, 0xed, 0xca, 0xc0, 0x3e, 0x11, 0x80, - 0xdc, 0x82, 0x9c, 0x37, 0x93, 0xae, 0x64, 0x65, 0x19, 0x81, 0x7b, 0x66, 0x32, 0xa8, 0xf1, 0x09, - 0x64, 0xfb, 0xb3, 0x6b, 0x45, 0xa5, 0x26, 0x14, 0xe5, 0xd7, 0x6c, 0xb3, 0xe8, 0x3e, 0x26, 0x93, - 0xf7, 0xff, 0x7f, 0xa8, 0x68, 0x9f, 0x48, 0x22, 0x9b, 0xb0, 0xfa, 0x65, 0x77, 0xd8, 0xeb, 0x0c, - 0x06, 0xd6, 0xd1, 0xf1, 0xce, 0xd3, 0xce, 0x57, 0xd6, 0x7e, 0x6b, 0xb0, 0xdf, 0xb8, 0xc1, 0x78, - 0x49, 0xaf, 0x33, 0x18, 0x76, 0x76, 0x63, 0xf0, 0x0c, 0x79, 0x1d, 0xb6, 0x8e, 0x7b, 0xc7, 0x83, - 0xce, 0xae, 0x95, 0x96, 0x2f, 0xcb, 0x36, 0x8f, 0xc0, 0xa7, 0x64, 0xcf, 0xdd, 0xff, 0x65, 0xa8, - 0xc7, 0xc3, 0x5c, 0x10, 0x80, 0xa5, 0x83, 0xce, 0x93, 0x56, 0xfb, 0x2b, 0x1e, 0x61, 0x7d, 0x30, - 0x6c, 0x0d, 0xbb, 0x6d, 0x4b, 0x44, 0x54, 0x67, 0x8c, 0x2a, 0x43, 0x2a, 0x50, 0x6c, 0xf5, 0xda, - 0xfb, 0x7d, 0x73, 0xd0, 0xc8, 0x92, 0xd7, 0x60, 0x53, 0x6e, 0xa1, 0x76, 0xff, 0xf0, 0xb0, 0x3b, - 0x44, 0x1e, 0x3d, 0xfc, 0xea, 0x88, 0xed, 0x98, 0xfb, 0x36, 0x94, 0xa3, 0x60, 0xf0, 0xc8, 0xf7, - 0xba, 0xc3, 0x6e, 0x6b, 0x18, 0x31, 0xfd, 0xc6, 0x0d, 0xc6, 0x56, 0x23, 0x30, 0x46, 0x74, 0x6f, - 0x64, 0xf8, 0x4b, 0x60, 0x09, 0xe4, 0xb5, 0x37, 0xb2, 0x6c, 0xaf, 0x47, 0xd0, 0x9d, 0xfe, 0x90, - 0x75, 0xe1, 0x57, 0xa0, 0x1e, 0x8f, 0xb9, 0x4e, 0x1a, 0x50, 0x65, 0xf5, 0x6b, 0x55, 0x00, 0x2c, - 0xf1, 0x16, 0x37, 0x32, 0x9c, 0xb1, 0xb7, 0xfb, 0x87, 0xdd, 0xde, 0x13, 0x3c, 0x0d, 0x1a, 0x59, - 0x06, 0xea, 0x1f, 0x0f, 0x9f, 0xf4, 0x15, 0x28, 0xc7, 0x72, 0xf0, 0xee, 0x34, 0xf2, 0xf7, 0xbf, - 0x86, 0x95, 0x85, 0xe8, 0xec, 0xac, 0xd5, 0xfd, 0xe3, 0x61, 0xbb, 0x7f, 0xa8, 0xd7, 0x53, 0x81, - 0x62, 0xfb, 0xa0, 0xd5, 0x3d, 0x44, 0x43, 0x48, 0x0d, 0xca, 0xc7, 0x3d, 0x99, 0xcc, 0xc6, 0xe3, - 0xca, 0xe7, 0x18, 0x8b, 0xda, 0xeb, 0x9a, 0x83, 0xa1, 0x35, 0x18, 0xb6, 0x9e, 0x74, 0x1a, 0x79, - 0x96, 0x57, 0xf2, 0xab, 0xc2, 0xfd, 0xcf, 0xa1, 0x1e, 0xf7, 0x7b, 0x8e, 0x1b, 0xb0, 0xb6, 0x60, - 0x63, 0xa7, 0x33, 0xfc, 0xb2, 0xd3, 0xe9, 0xe1, 0x94, 0xb7, 0x3b, 0xbd, 0xa1, 0xd9, 0x3a, 0xe8, - 0x0e, 0xbf, 0x6a, 0x64, 0xee, 0x3f, 0x86, 0x46, 0xd2, 0xc9, 0x20, 0xe6, 0x95, 0xf1, 0x22, 0xf7, - 0x8d, 0xfb, 0xff, 0x29, 0x03, 0x6b, 0x69, 0xf6, 0x35, 0xb6, 0x30, 0x05, 0x23, 0x64, 0xc7, 0xe1, - 0xa0, 0xdf, 0xb3, 0x7a, 0x7d, 0x0c, 0xb4, 0xbc, 0x05, 0x1b, 0x09, 0x84, 0xec, 0x45, 0x86, 0xdc, - 0x82, 0xcd, 0x85, 0x4c, 0x96, 0xd9, 0x3f, 0xc6, 0xb9, 0x6c, 0xc2, 0x5a, 0x02, 0xd9, 0x31, 0xcd, - 0xbe, 0xd9, 0xc8, 0x91, 0xf7, 0xe0, 0x5e, 0x02, 0xb3, 0x28, 0x04, 0x48, 0x19, 0x21, 0x4f, 0xde, - 0x81, 0x37, 0x17, 0xa8, 0xa3, 0x73, 0xd2, 0xda, 0x69, 0x1d, 0xb0, 0xee, 0x35, 0x0a, 0xf7, 0xff, - 0x7e, 0x0e, 0x20, 0x7a, 0x58, 0xc8, 0xea, 0xdf, 0x6d, 0x0d, 0x5b, 0x07, 0x7d, 0xb6, 0x67, 0xcc, - 0xfe, 0x90, 0x95, 0x6e, 0x76, 0x7e, 0xdc, 0xb8, 0x91, 0x8a, 0xe9, 0x1f, 0xb1, 0x0e, 0x6d, 0xc2, - 0x2a, 0x5f, 0x7f, 0x07, 0xac, 0x1b, 0x6c, 0xb9, 0x60, 0xcc, 0x6e, 0x94, 0x34, 0x8e, 0x8f, 0xf6, - 0xcc, 0x7e, 0x6f, 0x68, 0x0d, 0xf6, 0x8f, 0x87, 0xbb, 0x18, 0xf1, 0xbb, 0x6d, 0x76, 0x8f, 0x78, - 0x99, 0xf9, 0x17, 0x11, 0xb0, 0xa2, 0x0b, 0x6c, 0x83, 0x3f, 0xe9, 0x0f, 0x06, 0xdd, 0x23, 0xeb, - 0xc7, 0xc7, 0x1d, 0xb3, 0xdb, 0x19, 0x60, 0xc6, 0xa5, 0x14, 0x38, 0xa3, 0x2f, 0xb2, 0x35, 0x3b, - 0x3c, 0xf8, 0x42, 0x08, 0x10, 0x8c, 0xb4, 0x14, 0x07, 0x31, 0xaa, 0x32, 0x9b, 0x1d, 0x76, 0x02, - 0xa7, 0x94, 0x0c, 0xd7, 0xe0, 0x58, 0xbe, 0x0a, 0x93, 0x2d, 0x16, 0x76, 0x3e, 0x66, 0xab, 0xa6, - 0xa3, 0x58, 0x2e, 0x14, 0x3b, 0x94, 0x90, 0xb6, 0xbb, 0x6b, 0x62, 0x86, 0xfa, 0x02, 0x94, 0xd1, - 0x2e, 0xb3, 0x45, 0xc8, 0x8e, 0x68, 0x46, 0xd2, 0x90, 0x09, 0x86, 0x59, 0x79, 0xf8, 0x2f, 0xde, - 0x80, 0xb2, 0x7a, 0x60, 0x40, 0x7e, 0x04, 0xb5, 0xd8, 0xf3, 0x7d, 0x22, 0x55, 0xf8, 0x69, 0xaf, - 0xfd, 0xb7, 0x5e, 0x4b, 0x47, 0x8a, 0xcb, 0xc9, 0xa1, 0xa6, 0x0d, 0xe0, 0x85, 0xbd, 0x96, 0xbc, - 0xa1, 0xc7, 0x4a, 0xbb, 0x7d, 0x0d, 0x56, 0x14, 0xf7, 0x14, 0xc3, 0x87, 0xeb, 0x9f, 0x46, 0x27, - 0xb7, 0xa3, 0x58, 0xce, 0x29, 0x9f, 0x4c, 0xdf, 0xba, 0xb9, 0xf8, 0x11, 0x73, 0xf9, 0xd5, 0xf3, - 0x5d, 0xa8, 0x68, 0x1f, 0xb5, 0x24, 0x37, 0xaf, 0xfd, 0x00, 0xe7, 0xd6, 0x56, 0x1a, 0x4a, 0x34, - 0xe9, 0xfb, 0x50, 0x56, 0x1f, 0x13, 0x24, 0x9b, 0xda, 0xc7, 0x29, 0xf5, 0x8f, 0x2b, 0x6e, 0x35, - 0x17, 0x11, 0x22, 0xff, 0x2e, 0x54, 0xb4, 0x6f, 0x02, 0xaa, 0x56, 0x2c, 0x7e, 0x77, 0x50, 0xb5, - 0x22, 0xed, 0x13, 0x82, 0x07, 0xb0, 0x2e, 0x74, 0x0e, 0x27, 0xf4, 0x9b, 0x0c, 0x4f, 0xca, 0x37, - 0xde, 0x1f, 0x64, 0xc8, 0x63, 0x28, 0xc9, 0xef, 0x48, 0x92, 0x8d, 0xf4, 0xef, 0x6d, 0x6e, 0x6d, - 0x2e, 0xc0, 0x45, 0x53, 0x5a, 0x00, 0xd1, 0xd7, 0x06, 0x89, 0xec, 0xf8, 0xc2, 0xd7, 0x0b, 0xd5, - 0xcc, 0xa4, 0x7c, 0x9a, 0x70, 0x17, 0x2a, 0xda, 0x87, 0x05, 0xd5, 0x98, 0x2c, 0x7e, 0x94, 0x50, - 0x8d, 0x49, 0xda, 0x77, 0x08, 0x7f, 0x04, 0xb5, 0xd8, 0x17, 0x02, 0xd5, 0x3a, 0x4e, 0xfb, 0xfe, - 0xa0, 0x5a, 0xc7, 0xe9, 0x1f, 0x15, 0xdc, 0x85, 0x8a, 0xf6, 0xd5, 0x3e, 0xd5, 0xa2, 0xc5, 0x4f, - 0x07, 0xaa, 0x16, 0xa5, 0x7c, 0xe4, 0x8f, 0xed, 0x86, 0xf8, 0x27, 0xfb, 0xd4, 0x6e, 0x48, 0xfd, - 0xf6, 0x9f, 0xda, 0x0d, 0xe9, 0xdf, 0xf9, 0x63, 0x4b, 0x4f, 0x7d, 0x37, 0x80, 0x6c, 0xc6, 0xae, - 0xfa, 0xd1, 0x07, 0x08, 0xd4, 0xd2, 0x5b, 0xfc, 0xc4, 0xc0, 0x13, 0x58, 0x55, 0x8b, 0x46, 0x45, - 0xfd, 0x0f, 0x54, 0x9b, 0x52, 0xbf, 0x2d, 0xb0, 0xd5, 0x48, 0x62, 0x1f, 0x64, 0xc8, 0x67, 0x50, - 0x14, 0xa1, 0xd4, 0xc9, 0x7a, 0x32, 0xb4, 0x3a, 0x6f, 0xc4, 0x46, 0x7a, 0xc4, 0x75, 0x72, 0x84, - 0x1b, 0x5a, 0x8f, 0x75, 0xae, 0xaf, 0xd8, 0x94, 0xf0, 0xe8, 0x5b, 0xaf, 0x5f, 0x87, 0x8e, 0x4a, - 0x4c, 0xc6, 0xe7, 0xbf, 0x7d, 0x5d, 0x58, 0x9d, 0x78, 0x89, 0xd7, 0xc5, 0xff, 0x7b, 0x02, 0x55, - 0xfd, 0x73, 0x4d, 0x44, 0xdf, 0x87, 0xc9, 0xb2, 0x6e, 0xa5, 0xe2, 0x44, 0x41, 0x5f, 0xc0, 0x86, - 0x1a, 0x6f, 0x3d, 0xc6, 0x4b, 0x40, 0xee, 0xa4, 0x44, 0x7e, 0x89, 0x8d, 0xfa, 0xcd, 0x6b, 0x43, - 0xc3, 0x3c, 0xc8, 0x20, 0x93, 0x8d, 0x7d, 0x61, 0x25, 0x62, 0xb2, 0x69, 0x1f, 0x96, 0x89, 0x98, - 0x6c, 0xfa, 0x67, 0x59, 0x5a, 0xb0, 0xac, 0xc5, 0xa8, 0x19, 0x5c, 0xb9, 0x23, 0xb5, 0xde, 0x17, - 0x83, 0x50, 0x6f, 0xa5, 0x69, 0xbe, 0x49, 0x1b, 0x2a, 0x7a, 0x98, 0x9b, 0x17, 0x64, 0xdf, 0xd4, - 0x50, 0x7a, 0x0c, 0xe1, 0x07, 0x19, 0x72, 0x00, 0x8d, 0x64, 0x50, 0x4a, 0xb5, 0x85, 0xd3, 0x02, - 0x79, 0x6e, 0x25, 0x90, 0xb1, 0x50, 0x96, 0x6c, 0x5d, 0xc4, 0x3e, 0x25, 0xee, 0xf9, 0xc9, 0xa3, - 0x28, 0xfe, 0x89, 0x71, 0x55, 0x5a, 0xda, 0xd7, 0xe5, 0xef, 0x65, 0x1e, 0x64, 0xc8, 0x1e, 0x54, - 0x63, 0x31, 0xd9, 0x62, 0x6f, 0x5d, 0x12, 0xdd, 0x6c, 0xea, 0xb8, 0x44, 0x3f, 0x0f, 0xa1, 0x1e, - 0x77, 0xd1, 0x50, 0x0d, 0x4b, 0xf5, 0x23, 0x51, 0xd3, 0x97, 0xee, 0xd7, 0x41, 0x7e, 0x00, 0x15, - 0xc6, 0x93, 0xa5, 0x2b, 0x1f, 0xd1, 0xf8, 0x74, 0x72, 0xce, 0x38, 0x4c, 0xa8, 0xa2, 0x73, 0x7f, - 0x21, 0x9b, 0xc1, 0x7e, 0x7d, 0x8f, 0x7f, 0x8a, 0x59, 0x7a, 0x73, 0xb1, 0xf9, 0x7f, 0xd5, 0x42, - 0xc8, 0x1e, 0xaf, 0x7c, 0xe8, 0xf1, 0x27, 0xec, 0x37, 0x35, 0x1a, 0x01, 0x7b, 0xb5, 0x36, 0xb4, - 0x78, 0x1b, 0x44, 0x9e, 0xd8, 0x1a, 0x7c, 0xc5, 0xb2, 0xc8, 0xa7, 0x00, 0x91, 0x8b, 0x2c, 0x49, - 0x38, 0x6a, 0xaa, 0x0d, 0x95, 0xe2, 0x45, 0xdb, 0xe1, 0xfb, 0x5d, 0x79, 0x8a, 0xea, 0x47, 0x72, - 0xdc, 0x69, 0x35, 0x76, 0x24, 0x27, 0x8b, 0xf9, 0x08, 0x6a, 0x07, 0x9e, 0xf7, 0x6c, 0x3e, 0x53, - 0xef, 0x2c, 0xe2, 0x6e, 0x4c, 0xfb, 0x76, 0x70, 0xbe, 0x95, 0x68, 0x16, 0x69, 0xc1, 0x8a, 0x62, - 0x11, 0x91, 0xab, 0x6a, 0x9c, 0x28, 0xc6, 0x18, 0x12, 0x05, 0x3c, 0xc8, 0x90, 0x87, 0x50, 0xdd, - 0xa5, 0x23, 0x0c, 0xb3, 0x81, 0x4e, 0x33, 0xab, 0x31, 0x07, 0x0c, 0xee, 0x6d, 0xb3, 0x55, 0x8b, - 0x01, 0x25, 0x8b, 0x8b, 0x1c, 0xb7, 0xf4, 0x33, 0x23, 0xee, 0xfd, 0x14, 0x63, 0x71, 0x0b, 0xce, - 0x5b, 0x5f, 0xc0, 0xca, 0x82, 0x6b, 0x94, 0xe2, 0x6e, 0xd7, 0x39, 0x54, 0x6d, 0xdd, 0xbd, 0x9e, - 0x40, 0x94, 0xfb, 0x43, 0xa8, 0xf1, 0x90, 0xd2, 0x27, 0x94, 0x3f, 0x93, 0x4d, 0x04, 0x0c, 0xd3, - 0xdf, 0xe0, 0x26, 0x59, 0x12, 0xcf, 0xf0, 0x04, 0x3f, 0x46, 0xa3, 0x3d, 0x42, 0x55, 0xf3, 0xba, - 0xf8, 0x30, 0x56, 0xcd, 0x6b, 0xda, 0x7b, 0xd7, 0xcf, 0xa1, 0xf2, 0x84, 0x86, 0xf2, 0x59, 0xa7, - 0x92, 0x8f, 0x12, 0xef, 0x3c, 0xb7, 0x52, 0x1e, 0xe3, 0x92, 0x4f, 0x30, 0xab, 0x0a, 0x51, 0xb0, - 0xa1, 0xd5, 0xa2, 0x67, 0x5d, 0x4e, 0xc0, 0x99, 0xf4, 0xa1, 0x05, 0x2a, 0x51, 0x0d, 0x5f, 0x0c, - 0x4c, 0xa3, 0x1a, 0x9e, 0x16, 0xd7, 0xe4, 0x07, 0x7c, 0x04, 0xb4, 0x87, 0xa4, 0x91, 0x08, 0x96, - 0x7c, 0x73, 0xaa, 0x9a, 0xaf, 0x93, 0x3f, 0x02, 0x18, 0x84, 0xde, 0x6c, 0xd7, 0xa6, 0x53, 0xcf, - 0x8d, 0x78, 0x42, 0xf4, 0x84, 0x31, 0xda, 0x88, 0xda, 0x3b, 0x46, 0xf2, 0xa5, 0x26, 0x9b, 0xc6, - 0xa6, 0x44, 0x4e, 0xfb, 0xb5, 0xaf, 0x1c, 0x55, 0x77, 0x52, 0x5e, 0x3a, 0x22, 0x93, 0x80, 0xc8, - 0xf3, 0x4c, 0x49, 0x9a, 0x0b, 0x4e, 0x6d, 0x6a, 0xaf, 0xa7, 0xb8, 0xa9, 0x7d, 0x1f, 0xca, 0x91, - 0xcb, 0xce, 0x66, 0x14, 0x35, 0x29, 0xe6, 0xe0, 0xa3, 0xb8, 0xf7, 0xa2, 0xbb, 0x4c, 0x0f, 0x56, - 0x79, 0x73, 0xd4, 0xf1, 0x87, 0x0f, 0xed, 0xd4, 0xb7, 0x94, 0x16, 0xfd, 0x54, 0xd4, 0xfe, 0x49, - 0xf3, 0xb6, 0x60, 0xfb, 0x67, 0xc1, 0x6a, 0xaf, 0xf6, 0xcf, 0x75, 0x6e, 0x18, 0x6a, 0xff, 0x5c, - 0x6f, 0xf0, 0xef, 0xc1, 0x6a, 0x8a, 0xfd, 0x9d, 0xbc, 0x21, 0x2f, 0x36, 0xd7, 0xda, 0xe6, 0xb7, - 0x52, 0xed, 0xb4, 0x64, 0x08, 0x9b, 0x3c, 0x4f, 0x6b, 0x32, 0x49, 0x98, 0x7b, 0x5f, 0xd7, 0x32, - 0xa4, 0x98, 0xb0, 0x63, 0xa2, 0x4c, 0xc2, 0x8c, 0xdd, 0x83, 0x46, 0xd2, 0x52, 0x4a, 0xae, 0x27, - 0xdf, 0xba, 0x13, 0x13, 0xd9, 0x17, 0xad, 0xab, 0xe4, 0x0b, 0x65, 0xaf, 0x4d, 0xb4, 0xf1, 0x4e, - 0xf4, 0x09, 0xc0, 0x54, 0xeb, 0xb2, 0xba, 0x0d, 0xa4, 0x9a, 0x7b, 0xc9, 0xcf, 0xc3, 0x66, 0x72, - 0x45, 0xcb, 0x92, 0xef, 0xa6, 0x0d, 0xd7, 0xb5, 0xa2, 0x5c, 0xbc, 0x43, 0x0f, 0x32, 0x8c, 0x11, - 0xeb, 0x56, 0x55, 0xb5, 0x90, 0x52, 0xcc, 0xbb, 0x6a, 0x21, 0xa5, 0x9a, 0x61, 0x8f, 0x60, 0x39, - 0x61, 0x50, 0x55, 0x62, 0x70, 0xba, 0x09, 0x56, 0x89, 0xc1, 0xd7, 0xd9, 0x61, 0x07, 0xd0, 0x48, - 0x9a, 0x4a, 0xd5, 0x5c, 0x5f, 0x63, 0x7e, 0xdd, 0xba, 0x73, 0x2d, 0x3e, 0xde, 0x4c, 0xcd, 0xa8, - 0x18, 0x6b, 0xe6, 0xa2, 0x29, 0x34, 0xd6, 0xcc, 0x14, 0x93, 0xe6, 0xce, 0x3b, 0xbf, 0xf0, 0x9d, - 0x33, 0x27, 0x3c, 0x9f, 0x9f, 0x6c, 0x8f, 0xbc, 0xe9, 0x07, 0x13, 0xa9, 0xd5, 0x10, 0xef, 0xce, - 0x3f, 0x98, 0xb8, 0xe3, 0x0f, 0xb0, 0x80, 0x93, 0xa5, 0x99, 0xef, 0x85, 0xde, 0x47, 0xff, 0x27, - 0x00, 0x00, 0xff, 0xff, 0x68, 0xba, 0x0c, 0x04, 0xb3, 0x8f, 0x00, 0x00, + // 12331 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0xbd, 0x6b, 0x6c, 0x23, 0x59, + 0x76, 0x18, 0xdc, 0x7c, 0x89, 0xe4, 0xe1, 0x43, 0xd4, 0xd5, 0x8b, 0xad, 0x9e, 0x9e, 0xee, 0xa9, + 0x99, 0x9d, 0xe9, 0xed, 0x99, 0xd1, 0xf4, 0xf4, 0x4c, 0xcf, 0x63, 0xfb, 0xf3, 0xee, 0x52, 0x14, + 0xd5, 0xe2, 0xb6, 0x44, 0x6a, 0x8b, 0xd4, 0x8c, 0xc7, 0xb0, 0x5d, 0x2e, 0x91, 0x57, 0x52, 0x7d, + 0x4d, 0x56, 0x71, 0xab, 0x8a, 0x6a, 0x69, 0x83, 0x00, 0xfe, 0xe1, 0x38, 0x81, 0x61, 0x04, 0x08, + 0x60, 0x07, 0x79, 0x19, 0x79, 0x21, 0xc9, 0x3f, 0x23, 0x80, 0x9d, 0xfc, 0xca, 0xbf, 0x00, 0x31, + 0x02, 0xe4, 0x81, 0x20, 0x0e, 0xf2, 0x40, 0x60, 0x20, 0x40, 0xe2, 0xfc, 0x08, 0x10, 0x18, 0xf0, + 0xdf, 0x04, 0x09, 0xee, 0xb9, 0x8f, 0xba, 0x55, 0x2c, 0x75, 0xf7, 0xec, 0x4e, 0xf6, 0x8f, 0xc4, + 0x7b, 0xce, 0xb9, 0xef, 0x7b, 0xcf, 0x3d, 0xf7, 0x9c, 0x73, 0x4f, 0x41, 0xd9, 0x9f, 0x8d, 0xb6, + 0x67, 0xbe, 0x17, 0x7a, 0xa4, 0x30, 0x71, 0xfd, 0xd9, 0xc8, 0xf8, 0xe3, 0x0c, 0xe4, 0x8f, 0xc3, + 0x4b, 0x8f, 0x3c, 0x82, 0xaa, 0x3d, 0x1e, 0xfb, 0x34, 0x08, 0xac, 0xf0, 0x6a, 0x46, 0x9b, 0x99, + 0xbb, 0x99, 0x7b, 0xf5, 0x87, 0x64, 0x1b, 0xc9, 0xb6, 0x5b, 0x1c, 0x35, 0xbc, 0x9a, 0x51, 0xb3, + 0x62, 0x47, 0x09, 0xd2, 0x84, 0xa2, 0x48, 0x36, 0xb3, 0x77, 0x33, 0xf7, 0xca, 0xa6, 0x4c, 0x92, + 0xdb, 0x00, 0xf6, 0xd4, 0x9b, 0xbb, 0xa1, 0x15, 0xd8, 0x61, 0x33, 0x77, 0x37, 0x73, 0x2f, 0x67, + 0x96, 0x39, 0x64, 0x60, 0x87, 0xe4, 0x16, 0x94, 0x67, 0xcf, 0xac, 0x60, 0xe4, 0x3b, 0xb3, 0xb0, + 0x99, 0xc7, 0xac, 0xa5, 0xd9, 0xb3, 0x01, 0xa6, 0xc9, 0xbb, 0x50, 0xf2, 0xe6, 0xe1, 0xcc, 0x73, + 0xdc, 0xb0, 0x59, 0xb8, 0x9b, 0xb9, 0x57, 0x79, 0xb8, 0x2c, 0x1a, 0xd2, 0x9f, 0x87, 0x47, 0x0c, + 0x6c, 0x2a, 0x02, 0xf2, 0x16, 0xd4, 0x46, 0x9e, 0x7b, 0xea, 0xf8, 0x53, 0x3b, 0x74, 0x3c, 0x37, + 0x68, 0x2e, 0x61, 0x5d, 0x71, 0xa0, 0xf1, 0xcf, 0xb2, 0x50, 0x19, 0xfa, 0xb6, 0x1b, 0xd8, 0x23, + 0x06, 0x20, 0x9b, 0x50, 0x0c, 0x2f, 0xad, 0x73, 0x3b, 0x38, 0xc7, 0xae, 0x96, 0xcd, 0xa5, 0xf0, + 0x72, 0xdf, 0x0e, 0xce, 0xc9, 0x06, 0x2c, 0xf1, 0x56, 0x62, 0x87, 0x72, 0xa6, 0x48, 0x91, 0x77, + 0x61, 0xc5, 0x9d, 0x4f, 0xad, 0x78, 0x55, 0xac, 0x5b, 0x05, 0xb3, 0xe1, 0xce, 0xa7, 0x6d, 0x1d, + 0xce, 0x3a, 0x7f, 0x32, 0xf1, 0x46, 0xcf, 0x78, 0x05, 0xbc, 0x7b, 0x65, 0x84, 0x60, 0x1d, 0x6f, + 0x40, 0x55, 0xa0, 0xa9, 0x73, 0x76, 0xce, 0xfb, 0x58, 0x30, 0x2b, 0x9c, 0x00, 0x41, 0xac, 0x84, + 0xd0, 0x99, 0x52, 0x2b, 0x08, 0xed, 0xe9, 0x4c, 0x74, 0xa9, 0xcc, 0x20, 0x03, 0x06, 0x40, 0xb4, + 0x17, 0xda, 0x13, 0xeb, 0x94, 0xd2, 0xa0, 0x59, 0x14, 0x68, 0x06, 0xd9, 0xa3, 0x34, 0x20, 0xdf, + 0x82, 0xfa, 0x98, 0x06, 0xa1, 0x25, 0x26, 0x83, 0x06, 0xcd, 0xd2, 0xdd, 0xdc, 0xbd, 0xb2, 0x59, + 0x63, 0xd0, 0x96, 0x04, 0x92, 0xd7, 0x00, 0x7c, 0xfb, 0xb9, 0xc5, 0x06, 0x82, 0x5e, 0x36, 0xcb, + 0x7c, 0x16, 0x7c, 0xfb, 0xf9, 0xf0, 0x72, 0x9f, 0x5e, 0x92, 0x35, 0x28, 0x4c, 0xec, 0x13, 0x3a, + 0x69, 0x02, 0x22, 0x78, 0xc2, 0xf8, 0x05, 0xd8, 0x78, 0x42, 0x43, 0x6d, 0x28, 0x03, 0x93, 0xfe, + 0x68, 0x4e, 0x83, 0x90, 0xf5, 0x2a, 0x08, 0x6d, 0x3f, 0x94, 0xbd, 0xca, 0xf0, 0x5e, 0x21, 0x2c, + 0xea, 0x15, 0x75, 0xc7, 0x92, 0x20, 0x8b, 0x04, 0x65, 0xea, 0x8e, 0x39, 0xda, 0x38, 0x00, 0xa2, + 0x15, 0xbc, 0x4b, 0x43, 0xdb, 0x99, 0x04, 0xe4, 0x13, 0xa8, 0x86, 0x5a, 0x75, 0xcd, 0xcc, 0xdd, + 0xdc, 0xbd, 0x8a, 0x5a, 0x9a, 0x5a, 0x06, 0x33, 0x46, 0x67, 0x9c, 0x43, 0x69, 0x8f, 0xd2, 0x03, + 0x67, 0xea, 0x84, 0x64, 0x03, 0x0a, 0xa7, 0xce, 0x25, 0x1d, 0x63, 0xa3, 0x72, 0xfb, 0x37, 0x4c, + 0x9e, 0x24, 0x77, 0x00, 0xf0, 0x87, 0x35, 0x55, 0xab, 0x74, 0xff, 0x86, 0x59, 0x46, 0xd8, 0x61, + 0x60, 0x87, 0x64, 0x0b, 0x8a, 0x33, 0xea, 0x8f, 0xa8, 0x5c, 0x0f, 0xfb, 0x37, 0x4c, 0x09, 0xd8, + 0x29, 0x42, 0x61, 0xc2, 0x4a, 0x37, 0xfe, 0xa0, 0x00, 0x95, 0x01, 0x75, 0xc7, 0x72, 0x24, 0x08, + 0xe4, 0xd9, 0x40, 0x63, 0x65, 0x55, 0x13, 0x7f, 0x93, 0x37, 0xa1, 0x82, 0x53, 0x12, 0x84, 0xbe, + 0xe3, 0x9e, 0xf1, 0xdd, 0xb2, 0x93, 0x6d, 0x66, 0x4c, 0x60, 0xe0, 0x01, 0x42, 0x49, 0x03, 0x72, + 0xf6, 0x54, 0xee, 0x16, 0xf6, 0x93, 0xdc, 0x84, 0x92, 0x3d, 0x0d, 0x79, 0xf3, 0xaa, 0x08, 0x2e, + 0xda, 0xd3, 0x10, 0x9b, 0xf6, 0x06, 0x54, 0x67, 0xf6, 0xd5, 0x94, 0xba, 0x61, 0xb4, 0xcc, 0xaa, + 0x66, 0x45, 0xc0, 0x70, 0xa1, 0x3d, 0x84, 0x55, 0x9d, 0x44, 0x56, 0x5e, 0x50, 0x95, 0xaf, 0x68, + 0xd4, 0xa2, 0x0d, 0xef, 0xc0, 0xb2, 0xcc, 0xe3, 0xf3, 0xfe, 0xe0, 0xf2, 0x2b, 0x9b, 0x75, 0x01, + 0x96, 0xbd, 0xbc, 0x07, 0x8d, 0x53, 0xc7, 0xb5, 0x27, 0xd6, 0x68, 0x12, 0x5e, 0x58, 0x63, 0x3a, + 0x09, 0x6d, 0x5c, 0x89, 0x05, 0xb3, 0x8e, 0xf0, 0xf6, 0x24, 0xbc, 0xd8, 0x65, 0x50, 0xf2, 0x1e, + 0x94, 0x4f, 0x29, 0xb5, 0x70, 0xb0, 0x9a, 0xa5, 0xd8, 0x86, 0x96, 0x33, 0x64, 0x96, 0x4e, 0xe5, + 0x5c, 0xbd, 0x07, 0x0d, 0x6f, 0x1e, 0x9e, 0x79, 0x8e, 0x7b, 0x66, 0x8d, 0xce, 0x6d, 0xd7, 0x72, + 0xc6, 0xb8, 0x36, 0xf3, 0x3b, 0xd9, 0x07, 0x19, 0xb3, 0x2e, 0x71, 0xed, 0x73, 0xdb, 0xed, 0x8e, + 0xc9, 0xdb, 0xb0, 0x3c, 0xb1, 0x83, 0xd0, 0x3a, 0xf7, 0x66, 0xd6, 0x6c, 0x7e, 0xf2, 0x8c, 0x5e, + 0x35, 0x6b, 0x38, 0x10, 0x35, 0x06, 0xde, 0xf7, 0x66, 0x47, 0x08, 0x64, 0x4b, 0x0f, 0xdb, 0xc9, + 0x1b, 0xc1, 0x96, 0x74, 0xcd, 0x2c, 0x33, 0x08, 0xaf, 0xf4, 0x2b, 0x58, 0xc5, 0xe9, 0x19, 0xcd, + 0x83, 0xd0, 0x9b, 0x5a, 0x3e, 0x1d, 0x79, 0xfe, 0x38, 0x68, 0x56, 0x70, 0xad, 0x7d, 0x5b, 0x34, + 0x56, 0x9b, 0xe3, 0xed, 0x5d, 0x1a, 0x84, 0x6d, 0x24, 0x36, 0x39, 0x6d, 0xc7, 0x0d, 0xfd, 0x2b, + 0x73, 0x65, 0x9c, 0x84, 0x93, 0xf7, 0x80, 0xd8, 0x93, 0x89, 0xf7, 0xdc, 0x0a, 0xe8, 0xe4, 0xd4, + 0x12, 0x83, 0xd8, 0xac, 0xdf, 0xcd, 0xdc, 0x2b, 0x99, 0x0d, 0xc4, 0x0c, 0xe8, 0xe4, 0xf4, 0x88, + 0xc3, 0xc9, 0x27, 0x80, 0x9b, 0xd4, 0x3a, 0xa5, 0x76, 0x38, 0xf7, 0x69, 0xd0, 0x5c, 0xbe, 0x9b, + 0xbb, 0x57, 0x7f, 0xb8, 0xa2, 0xc6, 0x0b, 0xc1, 0x3b, 0x4e, 0x68, 0x56, 0x19, 0x9d, 0x48, 0x07, + 0x5b, 0xbb, 0xb0, 0x91, 0xde, 0x24, 0xb6, 0xa8, 0xd8, 0xa8, 0xb0, 0xc5, 0x98, 0x37, 0xd9, 0x4f, + 0xb6, 0xb3, 0x2f, 0xec, 0xc9, 0x9c, 0xe2, 0x2a, 0xac, 0x9a, 0x3c, 0xf1, 0x9d, 0xec, 0x67, 0x19, + 0xe3, 0xf7, 0x33, 0x50, 0xe5, 0xbd, 0x0c, 0x66, 0x9e, 0x1b, 0x50, 0xf2, 0x26, 0xd4, 0xe4, 0x6a, + 0xa0, 0xbe, 0xef, 0xf9, 0x82, 0x5b, 0xca, 0x95, 0xd7, 0x61, 0x30, 0xf2, 0x6d, 0x68, 0x48, 0xa2, + 0x99, 0x4f, 0x9d, 0xa9, 0x7d, 0x26, 0x8b, 0x96, 0x4b, 0xe9, 0x48, 0x80, 0xc9, 0x87, 0x51, 0x79, + 0xbe, 0x37, 0x0f, 0x29, 0xae, 0xf5, 0xca, 0xc3, 0xaa, 0xe8, 0x9e, 0xc9, 0x60, 0xaa, 0x74, 0x4c, + 0xbd, 0xc2, 0x3a, 0x37, 0x7e, 0x3b, 0x03, 0x84, 0x35, 0x7b, 0xe8, 0xf1, 0x02, 0x22, 0x8e, 0x14, + 0xcb, 0x99, 0x79, 0xe5, 0x1d, 0x92, 0x7d, 0xd1, 0x0e, 0x31, 0xa0, 0xc0, 0xdb, 0x9e, 0x4f, 0x69, + 0x3b, 0x47, 0xfd, 0x20, 0x5f, 0xca, 0x35, 0xf2, 0xc6, 0x7f, 0xca, 0xc1, 0x1a, 0x5b, 0xa7, 0x2e, + 0x9d, 0xb4, 0x46, 0x23, 0x3a, 0x53, 0x7b, 0xe7, 0x0e, 0x54, 0x5c, 0x6f, 0x4c, 0xe5, 0x8a, 0xe5, + 0x0d, 0x03, 0x06, 0xd2, 0x96, 0xeb, 0xb9, 0xed, 0xb8, 0xbc, 0xe1, 0x7c, 0x30, 0xcb, 0x08, 0xc1, + 0x66, 0xbf, 0x0d, 0xcb, 0x33, 0xea, 0x8e, 0xf5, 0x2d, 0x92, 0xe3, 0xab, 0x5e, 0x80, 0xc5, 0xee, + 0xb8, 0x03, 0x95, 0xd3, 0x39, 0xa7, 0x63, 0x8c, 0x25, 0x8f, 0x6b, 0x00, 0x04, 0xa8, 0xc5, 0xf9, + 0xcb, 0x6c, 0x1e, 0x9c, 0x23, 0xb6, 0x80, 0xd8, 0x22, 0x4b, 0x33, 0xd4, 0x6d, 0x80, 0xf1, 0x3c, + 0x08, 0xc5, 0x8e, 0x59, 0x42, 0x64, 0x99, 0x41, 0xf8, 0x8e, 0x79, 0x1f, 0x56, 0xa7, 0xf6, 0xa5, + 0x85, 0x6b, 0xc7, 0x72, 0x5c, 0xeb, 0x74, 0x82, 0x4c, 0xbd, 0x88, 0x74, 0x8d, 0xa9, 0x7d, 0xf9, + 0x05, 0xc3, 0x74, 0xdd, 0x3d, 0x84, 0x33, 0xb6, 0x32, 0xe2, 0x23, 0x61, 0xf9, 0x34, 0xa0, 0xfe, + 0x05, 0x45, 0x4e, 0x90, 0x37, 0xeb, 0x02, 0x6c, 0x72, 0x28, 0x6b, 0xd1, 0x94, 0xf5, 0x3b, 0x9c, + 0x8c, 0xf8, 0xb6, 0x37, 0x8b, 0x53, 0xc7, 0xdd, 0x0f, 0x27, 0x23, 0x76, 0x5e, 0x31, 0x3e, 0x32, + 0xa3, 0xbe, 0xf5, 0xec, 0x39, 0xee, 0xe1, 0x3c, 0xf2, 0x8d, 0x23, 0xea, 0x3f, 0x7d, 0xce, 0x44, + 0x8a, 0x51, 0x80, 0x8c, 0xc8, 0xbe, 0x6a, 0x56, 0x70, 0x83, 0x97, 0x46, 0x01, 0x63, 0x41, 0xf6, + 0x15, 0xdb, 0x84, 0xac, 0xb5, 0x36, 0xce, 0x02, 0x1d, 0x63, 0xf1, 0x01, 0x72, 0xd4, 0x1a, 0x36, + 0xb6, 0x25, 0x10, 0xac, 0x9e, 0x80, 0xad, 0x7a, 0xd9, 0xd8, 0xd3, 0x89, 0x7d, 0x16, 0x20, 0x4b, + 0xa9, 0x99, 0x55, 0x01, 0xdc, 0x63, 0x30, 0xe3, 0x4f, 0xb3, 0xb0, 0x9e, 0x98, 0x5c, 0xb1, 0x69, + 0x98, 0x0c, 0x81, 0x10, 0x9c, 0xd8, 0x92, 0x29, 0x52, 0x69, 0xb3, 0x96, 0x4d, 0x9b, 0xb5, 0x35, + 0x28, 0xf0, 0xcd, 0x96, 0xe3, 0x27, 0x2f, 0x95, 0xbb, 0x6c, 0x3e, 0x3b, 0xf5, 0x3d, 0x26, 0x52, + 0x9d, 0xcf, 0xc3, 0xb1, 0xf7, 0xdc, 0x15, 0xa2, 0xc5, 0xb2, 0x80, 0x0f, 0x04, 0x38, 0x3e, 0x14, + 0x85, 0xc4, 0x50, 0xdc, 0x81, 0x8a, 0x98, 0x01, 0x14, 0xcd, 0xf8, 0xc4, 0x82, 0x00, 0x31, 0xd9, + 0xec, 0x5d, 0x20, 0x6a, 0x3e, 0x2d, 0x36, 0x6a, 0x78, 0xfa, 0xf0, 0x89, 0x5d, 0x76, 0xc4, 0x84, + 0x1e, 0xda, 0x97, 0x78, 0x0a, 0xbd, 0x05, 0x75, 0x46, 0xc2, 0xc6, 0xd3, 0x1a, 0xa1, 0xdc, 0x54, + 0xe2, 0x63, 0x35, 0xb5, 0x2f, 0xd9, 0x60, 0xb6, 0x51, 0x7a, 0x7a, 0x1d, 0x2a, 0x72, 0x52, 0x2d, + 0xc7, 0x15, 0xf3, 0x5a, 0x16, 0xf3, 0xda, 0x75, 0xd9, 0x59, 0xc2, 0xf0, 0x7c, 0x9c, 0xac, 0x31, + 0x9d, 0x85, 0xe7, 0x82, 0x47, 0xd7, 0xa7, 0x8e, 0xcb, 0x87, 0x77, 0x97, 0x41, 0x8d, 0xdf, 0xc9, + 0x40, 0x55, 0x8c, 0x3a, 0x4a, 0x82, 0x64, 0x1b, 0x88, 0x5c, 0xe2, 0xe1, 0xa5, 0x33, 0xb6, 0x4e, + 0xae, 0x42, 0x1a, 0xf0, 0x1d, 0xb5, 0x7f, 0xc3, 0x6c, 0x08, 0xdc, 0xf0, 0xd2, 0x19, 0xef, 0x30, + 0x0c, 0xb9, 0x0f, 0x8d, 0x18, 0x7d, 0x10, 0xfa, 0x7c, 0xbb, 0xef, 0xdf, 0x30, 0xeb, 0x1a, 0xf5, + 0x20, 0xf4, 0x19, 0x03, 0x61, 0x72, 0xe6, 0x3c, 0xb4, 0x1c, 0x77, 0x4c, 0x2f, 0x71, 0x3e, 0x6a, + 0x66, 0x85, 0xc3, 0xba, 0x0c, 0xb4, 0x53, 0x87, 0xaa, 0x5e, 0x9c, 0x71, 0x06, 0x25, 0x29, 0xa4, + 0xa2, 0x94, 0x96, 0x68, 0x92, 0x59, 0x0e, 0x55, 0x4b, 0x6e, 0x42, 0x29, 0xde, 0x02, 0xb3, 0x18, + 0xbe, 0x72, 0xc5, 0xc6, 0x77, 0xa1, 0x71, 0xc0, 0x26, 0xc2, 0x65, 0x3b, 0x59, 0x08, 0xdd, 0x1b, + 0xb0, 0xa4, 0x71, 0x94, 0xb2, 0x29, 0x52, 0x4c, 0x20, 0x39, 0xf7, 0x82, 0x50, 0xd4, 0x82, 0xbf, + 0x8d, 0x3f, 0xc8, 0x00, 0xe9, 0x04, 0xa1, 0x33, 0xb5, 0x43, 0xba, 0x47, 0x15, 0xcf, 0xec, 0x43, + 0x95, 0x95, 0x36, 0xf4, 0x5a, 0x5c, 0x0a, 0xe6, 0xd2, 0xd6, 0xbb, 0x82, 0xc7, 0x2d, 0x66, 0xd8, + 0xd6, 0xa9, 0xf9, 0x19, 0x18, 0x2b, 0x80, 0x2d, 0xb7, 0xd0, 0xf6, 0xcf, 0x68, 0x88, 0xb2, 0xb3, + 0x10, 0xfa, 0x80, 0x83, 0x98, 0xd4, 0xbc, 0xf5, 0x3d, 0x58, 0x59, 0x28, 0x43, 0x3f, 0xb4, 0xca, + 0x29, 0x87, 0x56, 0x4e, 0x3f, 0xb4, 0x2c, 0x58, 0x8d, 0xb5, 0x4b, 0xec, 0xc2, 0x4d, 0x28, 0x32, + 0x6e, 0xc1, 0xd6, 0x6e, 0x86, 0x8b, 0xf2, 0xa7, 0x14, 0xd7, 0xf7, 0x07, 0xb0, 0x76, 0x4a, 0xa9, + 0x6f, 0x87, 0x88, 0x44, 0x76, 0xc2, 0x66, 0x48, 0x14, 0xbc, 0x22, 0x70, 0x03, 0x3b, 0x3c, 0xa2, + 0x3e, 0x9b, 0x29, 0xe3, 0x9f, 0x66, 0x61, 0x99, 0x1d, 0x2f, 0x87, 0xb6, 0x7b, 0x25, 0xc7, 0xe9, + 0x20, 0x75, 0x9c, 0xee, 0x69, 0x92, 0x82, 0x46, 0xfd, 0x75, 0x07, 0x29, 0x97, 0x1c, 0x24, 0x72, + 0x17, 0xaa, 0xb1, 0xb6, 0x16, 0xb0, 0xad, 0x10, 0xa8, 0x46, 0x46, 0xe2, 0xfa, 0x92, 0x26, 0xae, + 0x33, 0x4e, 0xc0, 0x36, 0x16, 0x2b, 0x35, 0x10, 0xd2, 0x19, 0x63, 0xaf, 0xac, 0xcc, 0x80, 0xdd, + 0x69, 0x02, 0xc6, 0x79, 0xac, 0xb9, 0x2b, 0xee, 0x35, 0x74, 0x8c, 0xdb, 0xb7, 0x64, 0x36, 0x10, + 0x71, 0x1c, 0xc1, 0x7f, 0xfa, 0x69, 0x7a, 0x1b, 0x1a, 0xd1, 0xb0, 0x88, 0x39, 0x22, 0x90, 0x67, + 0x4b, 0x5e, 0x14, 0x80, 0xbf, 0x8d, 0xff, 0x95, 0xe1, 0x84, 0x6d, 0xcf, 0x89, 0x2e, 0x17, 0x04, + 0xf2, 0xec, 0x32, 0x23, 0x09, 0xd9, 0xef, 0x6b, 0xaf, 0x6a, 0xdf, 0xc0, 0x60, 0xde, 0x84, 0x52, + 0xc0, 0x06, 0xc6, 0x9e, 0xf0, 0xf1, 0x2c, 0x99, 0x45, 0x96, 0x6e, 0x4d, 0x26, 0xd1, 0x38, 0x17, + 0xaf, 0x1d, 0xe7, 0xd2, 0xab, 0x8c, 0x73, 0x39, 0x7d, 0x9c, 0x8d, 0x77, 0x60, 0x45, 0xeb, 0xfd, + 0x0b, 0xc6, 0xa9, 0x07, 0xe4, 0xc0, 0x09, 0xc2, 0x63, 0x97, 0x15, 0xa1, 0x24, 0x8b, 0x58, 0x43, + 0x32, 0x89, 0x86, 0x30, 0xa4, 0x7d, 0x29, 0x90, 0x59, 0x81, 0xb4, 0x2f, 0x11, 0x69, 0x7c, 0x06, + 0xab, 0xb1, 0xf2, 0x44, 0xd5, 0x6f, 0x40, 0x61, 0x1e, 0x5e, 0x7a, 0xf2, 0xde, 0x55, 0x11, 0x2b, + 0xfc, 0x38, 0xbc, 0xf4, 0x4c, 0x8e, 0x31, 0x1e, 0xc3, 0x4a, 0x8f, 0x3e, 0x17, 0x4c, 0x48, 0x36, + 0xe4, 0x6d, 0xc8, 0xbf, 0x44, 0x93, 0x80, 0x78, 0x63, 0x1b, 0x88, 0x9e, 0x59, 0xd4, 0xaa, 0x29, + 0x16, 0x32, 0x31, 0xc5, 0x82, 0xf1, 0x36, 0x90, 0x81, 0x73, 0xe6, 0x1e, 0xd2, 0x20, 0xb0, 0xcf, + 0x14, 0xdb, 0x6a, 0x40, 0x6e, 0x1a, 0x9c, 0x09, 0x1e, 0xcb, 0x7e, 0x1a, 0x1f, 0xc1, 0x6a, 0x8c, + 0x4e, 0x14, 0xfc, 0x1a, 0x94, 0x03, 0xe7, 0xcc, 0x45, 0xa9, 0x59, 0x14, 0x1d, 0x01, 0x8c, 0x3d, + 0x58, 0xfb, 0x82, 0xfa, 0xce, 0xe9, 0xd5, 0xcb, 0x8a, 0x8f, 0x97, 0x93, 0x4d, 0x96, 0xd3, 0x81, + 0xf5, 0x44, 0x39, 0xa2, 0x7a, 0xbe, 0x3d, 0xc4, 0x4c, 0x96, 0x4c, 0x9e, 0xd0, 0xf8, 0x76, 0x56, + 0xe7, 0xdb, 0x86, 0x07, 0xa4, 0xed, 0xb9, 0x2e, 0x1d, 0x85, 0x47, 0x94, 0xfa, 0xb2, 0x31, 0xef, + 0x6a, 0x7b, 0xa1, 0xf2, 0x70, 0x53, 0x8c, 0x6c, 0xf2, 0x30, 0x10, 0x9b, 0x84, 0x40, 0x7e, 0x46, + 0xfd, 0x29, 0x16, 0x5c, 0x32, 0xf1, 0x37, 0x1b, 0xdc, 0xd0, 0x99, 0x52, 0x6f, 0xce, 0xaf, 0x9a, + 0x79, 0x53, 0x26, 0x8d, 0x75, 0x58, 0x8d, 0x55, 0xc8, 0x5b, 0x6d, 0x3c, 0x80, 0xf5, 0x5d, 0x27, + 0x18, 0x2d, 0x36, 0x65, 0x13, 0x8a, 0xb3, 0xf9, 0x89, 0x15, 0x3f, 0x71, 0x9e, 0xd2, 0x2b, 0xa3, + 0x09, 0x1b, 0xc9, 0x1c, 0xa2, 0xac, 0x5f, 0xcf, 0x42, 0x7e, 0x7f, 0x78, 0xd0, 0x26, 0x5b, 0x50, + 0x72, 0xdc, 0x91, 0x37, 0x65, 0xf2, 0x36, 0x1f, 0x0d, 0x95, 0xbe, 0x76, 0x6b, 0xdf, 0x82, 0x32, + 0x8a, 0xe9, 0x13, 0x6f, 0xf4, 0x4c, 0x48, 0xbc, 0x25, 0x06, 0x38, 0xf0, 0x46, 0xcf, 0xd8, 0x36, + 0xa3, 0x97, 0x33, 0xc7, 0x47, 0x25, 0x8c, 0x54, 0x32, 0xe4, 0xb9, 0x88, 0x17, 0x21, 0x22, 0x55, + 0x84, 0x90, 0x46, 0xd8, 0xf9, 0xca, 0x45, 0xdf, 0xf2, 0x39, 0x4a, 0x23, 0x63, 0x7a, 0x49, 0xde, + 0x07, 0x72, 0xea, 0xf9, 0xcf, 0x6d, 0x5f, 0x49, 0x6b, 0xae, 0x60, 0xad, 0x79, 0x73, 0x25, 0xc2, + 0x08, 0x49, 0x84, 0x3c, 0x84, 0x75, 0x8d, 0x5c, 0x2b, 0x98, 0x4b, 0x4d, 0xab, 0x11, 0x72, 0x5f, + 0x56, 0x61, 0xfc, 0x5a, 0x16, 0x88, 0xc8, 0xdf, 0xf6, 0xdc, 0x20, 0xf4, 0x6d, 0xc7, 0x0d, 0x83, + 0xb8, 0xec, 0x96, 0x49, 0xc8, 0x6e, 0xf7, 0xa0, 0x81, 0x92, 0xa3, 0x2e, 0xc0, 0x65, 0x23, 0x31, + 0xda, 0x8c, 0x84, 0xb8, 0xb7, 0xa0, 0x1e, 0x49, 0xef, 0x4a, 0x07, 0x97, 0x37, 0xab, 0x4a, 0x82, + 0x17, 0x47, 0x21, 0x63, 0x08, 0x52, 0x2a, 0x55, 0xaa, 0x06, 0x7e, 0x51, 0x58, 0x99, 0xda, 0x97, + 0x47, 0x54, 0xde, 0x15, 0x50, 0xdc, 0x33, 0xa0, 0xa6, 0x04, 0x39, 0xa4, 0xe4, 0x23, 0x57, 0x11, + 0xa2, 0x1c, 0xd2, 0xa4, 0xcb, 0xda, 0x4b, 0xe9, 0xb2, 0xb6, 0xf1, 0xef, 0xcb, 0x50, 0x94, 0xc3, + 0x88, 0x82, 0x73, 0xe8, 0x5c, 0xd0, 0x48, 0x70, 0x66, 0x29, 0x26, 0x8f, 0xfb, 0x74, 0xea, 0x85, + 0xea, 0xc2, 0xc4, 0xb7, 0x49, 0x95, 0x03, 0xc5, 0x95, 0x49, 0x13, 0xda, 0xb9, 0xea, 0x90, 0x4b, + 0xcf, 0x52, 0x68, 0xe7, 0x22, 0xd9, 0x2d, 0x28, 0x4a, 0xd1, 0x3b, 0xaf, 0x74, 0x0a, 0x4b, 0x23, + 0x2e, 0x77, 0x6f, 0x41, 0x69, 0x64, 0xcf, 0xec, 0x91, 0x13, 0x5e, 0x89, 0x33, 0x41, 0xa5, 0x59, + 0xe9, 0x13, 0x6f, 0x64, 0x4f, 0xac, 0x13, 0x7b, 0x62, 0xbb, 0x23, 0x2a, 0x74, 0x72, 0x55, 0x04, + 0xee, 0x70, 0x18, 0xf9, 0x16, 0xd4, 0x45, 0x3b, 0x25, 0x15, 0x57, 0xcd, 0x89, 0xd6, 0x4b, 0x32, + 0x76, 0xb9, 0xf3, 0xa6, 0x6c, 0x5e, 0x4e, 0x29, 0xbf, 0x06, 0xe5, 0xcc, 0x32, 0x87, 0xec, 0x51, + 0xec, 0xad, 0x40, 0x3f, 0xe7, 0x6b, 0xb8, 0xcc, 0xab, 0xe2, 0xc0, 0x2f, 0xf9, 0xfa, 0x5d, 0xbc, + 0x0b, 0xe5, 0xb4, 0xbb, 0xd0, 0xbb, 0xb0, 0x32, 0x77, 0x03, 0x1a, 0x86, 0x13, 0x3a, 0x56, 0x6d, + 0xa9, 0x20, 0x51, 0x43, 0x21, 0x64, 0x73, 0xb6, 0x61, 0x95, 0x2b, 0x13, 0x03, 0x3b, 0xf4, 0x82, + 0x73, 0x27, 0xb0, 0x02, 0xea, 0x4a, 0x75, 0xd3, 0x0a, 0xa2, 0x06, 0x02, 0x33, 0xe0, 0x2a, 0x8a, + 0xcd, 0x04, 0xbd, 0x4f, 0x47, 0xd4, 0xb9, 0xa0, 0x63, 0xbc, 0x27, 0xe5, 0xcc, 0xf5, 0x58, 0x1e, + 0x53, 0x20, 0xf1, 0xd2, 0x3b, 0x9f, 0x5a, 0xf3, 0xd9, 0xd8, 0x66, 0xf2, 0x70, 0x9d, 0x5f, 0x3c, + 0xdc, 0xf9, 0xf4, 0x98, 0x43, 0xc8, 0x03, 0x90, 0x17, 0x21, 0xb1, 0x66, 0x96, 0x63, 0x47, 0x0e, + 0xe3, 0x1a, 0x66, 0x55, 0x50, 0xf0, 0x8b, 0xda, 0x1d, 0x7d, 0xb3, 0x34, 0xd8, 0x0a, 0xc3, 0x4b, + 0x7b, 0xb4, 0x61, 0x9a, 0x50, 0x9c, 0xf9, 0xce, 0x85, 0x1d, 0xd2, 0xe6, 0x0a, 0x3f, 0xc7, 0x45, + 0x92, 0x31, 0x70, 0xc7, 0x75, 0x42, 0xc7, 0x0e, 0x3d, 0xbf, 0x49, 0x10, 0x17, 0x01, 0xc8, 0x7d, + 0x58, 0xc1, 0x75, 0x12, 0x84, 0x76, 0x38, 0x0f, 0xc4, 0x2d, 0x70, 0x95, 0xdf, 0xb6, 0x18, 0x62, + 0x80, 0x70, 0xbc, 0x08, 0x92, 0x4f, 0x61, 0x83, 0x2f, 0x8d, 0x85, 0xad, 0xb9, 0xc6, 0x86, 0x03, + 0x5b, 0xb4, 0x8a, 0x14, 0xed, 0xf8, 0x1e, 0xfd, 0x1c, 0x36, 0xc5, 0x72, 0x59, 0xc8, 0xb9, 0xae, + 0x72, 0xae, 0x71, 0x92, 0x44, 0xd6, 0x6d, 0x58, 0x61, 0x4d, 0x73, 0x46, 0x96, 0x28, 0x81, 0xed, + 0x8a, 0x0d, 0xd6, 0x0b, 0xcc, 0xb4, 0xcc, 0x91, 0x26, 0xe2, 0x9e, 0xd2, 0x2b, 0xf2, 0x5d, 0x58, + 0xe6, 0xcb, 0x07, 0x55, 0x1d, 0x78, 0x30, 0x6f, 0xe1, 0xc1, 0xbc, 0x2e, 0x06, 0xb7, 0xad, 0xb0, + 0x78, 0x36, 0xd7, 0x47, 0xb1, 0x34, 0xdb, 0x1a, 0x13, 0xe7, 0x94, 0xb2, 0x73, 0xa2, 0xb9, 0xc9, + 0x17, 0x9b, 0x4c, 0xb3, 0x5d, 0x3b, 0x9f, 0x21, 0xa6, 0xc9, 0x99, 0x35, 0x4f, 0xe1, 0x3a, 0x9e, + 0x78, 0x01, 0x95, 0x6a, 0xe8, 0xe6, 0x4d, 0xb1, 0x21, 0x19, 0x50, 0x5e, 0x59, 0xd8, 0x9d, 0x98, + 0x2b, 0x20, 0x94, 0xb1, 0xe0, 0x16, 0x2e, 0x8c, 0x1a, 0xd7, 0x43, 0x48, 0x83, 0x01, 0x13, 0xea, + 0xce, 0xed, 0xe7, 0x92, 0xad, 0xbf, 0x86, 0xdc, 0x04, 0x18, 0x48, 0x30, 0xf4, 0x3d, 0x58, 0x11, + 0xb3, 0x10, 0x31, 0xd3, 0xe6, 0x6d, 0x3c, 0x22, 0x6f, 0xca, 0x3e, 0x2e, 0x70, 0x5b, 0xb3, 0xc1, + 0xe7, 0x45, 0xe3, 0xbf, 0xfb, 0x40, 0xe4, 0xa4, 0x68, 0x05, 0xbd, 0xfe, 0xb2, 0x82, 0x56, 0xc4, + 0x34, 0x45, 0x20, 0xe3, 0xf7, 0x32, 0x5c, 0xa2, 0x12, 0xd4, 0x81, 0xa6, 0xfc, 0xe1, 0x7c, 0xcd, + 0xf2, 0xdc, 0xc9, 0x95, 0x60, 0x75, 0xc0, 0x41, 0x7d, 0x77, 0x82, 0xbc, 0xc6, 0x71, 0x75, 0x12, + 0x7e, 0x78, 0x57, 0x25, 0x10, 0x89, 0xee, 0x40, 0x65, 0x36, 0x3f, 0x99, 0x38, 0x23, 0x4e, 0x92, + 0xe3, 0xa5, 0x70, 0x10, 0x12, 0xbc, 0x01, 0x55, 0xb1, 0xd6, 0x39, 0x45, 0x1e, 0x29, 0x2a, 0x02, + 0x86, 0x24, 0x28, 0x1c, 0x50, 0x1f, 0x99, 0x5d, 0xd5, 0xc4, 0xdf, 0xc6, 0x0e, 0xac, 0xc5, 0x1b, + 0x2d, 0x24, 0x97, 0xfb, 0x50, 0x12, 0x9c, 0x54, 0xaa, 0x45, 0xeb, 0xf1, 0xd1, 0x30, 0x15, 0xde, + 0xf8, 0x0f, 0x05, 0x58, 0x95, 0x63, 0xc4, 0x26, 0x7b, 0x30, 0x9f, 0x4e, 0x6d, 0x3f, 0x85, 0x45, + 0x67, 0x5e, 0xcc, 0xa2, 0xb3, 0x0b, 0x2c, 0x3a, 0xae, 0x17, 0xe3, 0x1c, 0x3e, 0xae, 0x17, 0x63, + 0xab, 0x8b, 0xdf, 0xc6, 0x75, 0xeb, 0x4b, 0x4d, 0x80, 0x87, 0xdc, 0xca, 0xb3, 0x70, 0xa0, 0x14, + 0x52, 0x0e, 0x14, 0xfd, 0x38, 0x58, 0x4a, 0x1c, 0x07, 0x6f, 0x00, 0x5f, 0xc6, 0x72, 0x3d, 0x16, + 0xf9, 0x05, 0x1d, 0x61, 0x62, 0x41, 0xbe, 0x03, 0xcb, 0x49, 0x0e, 0xcc, 0x59, 0x7d, 0x3d, 0x85, + 0xff, 0x3a, 0x53, 0x8a, 0x42, 0x8d, 0x46, 0x5c, 0x16, 0xfc, 0xd7, 0x99, 0xd2, 0x03, 0xc4, 0x48, + 0xfa, 0x0e, 0x00, 0xaf, 0x1b, 0xb7, 0x31, 0xe0, 0x36, 0x7e, 0x3b, 0xb1, 0x32, 0xb5, 0x51, 0xdf, + 0x66, 0x89, 0xb9, 0x4f, 0x71, 0x5f, 0x97, 0x31, 0x27, 0x6e, 0xe9, 0x4f, 0xa1, 0xee, 0xcd, 0xa8, + 0x6b, 0x45, 0x5c, 0xb0, 0x82, 0x45, 0x35, 0x44, 0x51, 0x5d, 0x09, 0x37, 0x6b, 0x8c, 0x4e, 0x25, + 0xc9, 0xe7, 0x7c, 0x90, 0xa9, 0x96, 0xb3, 0x7a, 0x4d, 0xce, 0x3a, 0x12, 0x46, 0x59, 0x3f, 0x42, + 0xdd, 0x93, 0x37, 0x99, 0x73, 0x53, 0x4e, 0x0d, 0xd7, 0x91, 0xd4, 0x6d, 0x9b, 0x0a, 0x63, 0xea, + 0x54, 0xc6, 0x6f, 0x64, 0xa0, 0xa2, 0xf5, 0x81, 0xac, 0xc3, 0x4a, 0xbb, 0xdf, 0x3f, 0xea, 0x98, + 0xad, 0x61, 0xf7, 0x8b, 0x8e, 0xd5, 0x3e, 0xe8, 0x0f, 0x3a, 0x8d, 0x1b, 0x0c, 0x7c, 0xd0, 0x6f, + 0xb7, 0x0e, 0xac, 0xbd, 0xbe, 0xd9, 0x96, 0xe0, 0x0c, 0xd9, 0x00, 0x62, 0x76, 0x0e, 0xfb, 0xc3, + 0x4e, 0x0c, 0x9e, 0x25, 0x0d, 0xa8, 0xee, 0x98, 0x9d, 0x56, 0x7b, 0x5f, 0x40, 0x72, 0x64, 0x0d, + 0x1a, 0x7b, 0xc7, 0xbd, 0xdd, 0x6e, 0xef, 0x89, 0xd5, 0x6e, 0xf5, 0xda, 0x9d, 0x83, 0xce, 0x6e, + 0x23, 0x4f, 0x6a, 0x50, 0x6e, 0xed, 0xb4, 0x7a, 0xbb, 0xfd, 0x5e, 0x67, 0xb7, 0x51, 0x30, 0xfe, + 0x47, 0x06, 0x20, 0x6a, 0x28, 0xe3, 0xab, 0x51, 0x53, 0x75, 0xd3, 0xe9, 0xfa, 0x42, 0xa7, 0x38, + 0x5f, 0xf5, 0x63, 0x69, 0xf2, 0x10, 0x8a, 0xde, 0x3c, 0x1c, 0x79, 0x53, 0x7e, 0x89, 0xa8, 0x3f, + 0x6c, 0x2e, 0xe4, 0xeb, 0x73, 0xbc, 0x29, 0x09, 0x63, 0xe6, 0xd1, 0xdc, 0xcb, 0xcc, 0xa3, 0x71, + 0x3b, 0x2c, 0x97, 0xeb, 0x34, 0x3b, 0xec, 0x6d, 0x80, 0xe0, 0x39, 0xa5, 0x33, 0x54, 0x5e, 0x89, + 0x5d, 0x50, 0x46, 0xc8, 0x90, 0xdd, 0x31, 0xff, 0x28, 0x03, 0xeb, 0xb8, 0x96, 0xc6, 0x49, 0x26, + 0x76, 0x17, 0x2a, 0x23, 0xcf, 0x9b, 0x51, 0x26, 0x54, 0x2b, 0x79, 0x4d, 0x07, 0x31, 0x06, 0xc5, + 0x19, 0xf2, 0xa9, 0xe7, 0x8f, 0xa8, 0xe0, 0x61, 0x80, 0xa0, 0x3d, 0x06, 0x61, 0x7b, 0x48, 0x6c, + 0x42, 0x4e, 0xc1, 0x59, 0x58, 0x85, 0xc3, 0x38, 0xc9, 0x06, 0x2c, 0x9d, 0xf8, 0xd4, 0x1e, 0x9d, + 0x0b, 0xee, 0x25, 0x52, 0xe4, 0xdb, 0x91, 0x12, 0x6f, 0xc4, 0xf6, 0xc4, 0x84, 0xf2, 0xc6, 0x97, + 0xcc, 0x65, 0x01, 0x6f, 0x0b, 0x30, 0x3b, 0xe7, 0xed, 0x13, 0xdb, 0x1d, 0x7b, 0x2e, 0x1d, 0x8b, + 0xbb, 0x7c, 0x04, 0x30, 0x8e, 0x60, 0x23, 0xd9, 0x3f, 0xc1, 0xef, 0x3e, 0xd1, 0xf8, 0x1d, 0xbf, + 0xfa, 0x6e, 0x5d, 0xbf, 0xc7, 0x34, 0xde, 0xf7, 0xaf, 0xf2, 0x90, 0x67, 0x17, 0x9e, 0x6b, 0xef, + 0x46, 0xfa, 0xdd, 0x36, 0xb7, 0x60, 0x34, 0x47, 0x5d, 0x21, 0x17, 0xc0, 0xc4, 0x64, 0x21, 0x04, + 0x05, 0x2f, 0x85, 0xf6, 0xe9, 0xe8, 0x42, 0xde, 0x59, 0x10, 0x62, 0xd2, 0xd1, 0x05, 0x2a, 0x2d, + 0xec, 0x90, 0xe7, 0xe5, 0xfc, 0xaa, 0x18, 0xd8, 0x21, 0xe6, 0x14, 0x28, 0xcc, 0x57, 0x54, 0x28, + 0xcc, 0xd5, 0x84, 0xa2, 0xe3, 0x9e, 0x78, 0x73, 0x57, 0xaa, 0x7e, 0x64, 0x12, 0x6d, 0xf4, 0xc8, + 0x49, 0xd9, 0xd1, 0xce, 0xb9, 0x51, 0x89, 0x01, 0x86, 0xec, 0x70, 0xff, 0x10, 0xca, 0xc1, 0x95, + 0x3b, 0xd2, 0x79, 0xd0, 0x9a, 0x18, 0x1f, 0xd6, 0xfb, 0xed, 0xc1, 0x95, 0x3b, 0xc2, 0x15, 0x5f, + 0x0a, 0xc4, 0x2f, 0xf2, 0x08, 0x4a, 0xca, 0xaa, 0xc5, 0x4f, 0x90, 0x9b, 0x7a, 0x0e, 0x69, 0xca, + 0xe2, 0xfa, 0x31, 0x45, 0x4a, 0x3e, 0x80, 0x25, 0x54, 0x80, 0x07, 0xcd, 0x2a, 0x66, 0x92, 0x17, + 0x5e, 0xd6, 0x0c, 0x34, 0x8f, 0xd3, 0x31, 0x9a, 0xa1, 0x4c, 0x41, 0xc6, 0x86, 0xe9, 0x74, 0x62, + 0xcf, 0x84, 0x3a, 0xba, 0xc6, 0xad, 0xcc, 0x0c, 0xc2, 0x75, 0xd1, 0x77, 0xa1, 0x8a, 0x16, 0x43, + 0xa4, 0x71, 0xb9, 0x1c, 0x9a, 0x33, 0x81, 0xc1, 0xf6, 0x26, 0xf6, 0xac, 0x17, 0x6c, 0x3d, 0x85, + 0x5a, 0xac, 0x31, 0xba, 0x9a, 0xab, 0xc6, 0xd5, 0x5c, 0x6f, 0xe9, 0x6a, 0xae, 0xe8, 0x28, 0x14, + 0xd9, 0x74, 0xb5, 0xd7, 0xf7, 0xa0, 0x24, 0xc7, 0x82, 0xf1, 0x9c, 0xe3, 0xde, 0xd3, 0x5e, 0xff, + 0xcb, 0x9e, 0x35, 0xf8, 0xaa, 0xd7, 0x6e, 0xdc, 0x20, 0xcb, 0x50, 0x69, 0xb5, 0x91, 0x8d, 0x21, + 0x20, 0xc3, 0x48, 0x8e, 0x5a, 0x83, 0x81, 0x82, 0x64, 0x8d, 0x3d, 0x68, 0x24, 0xbb, 0xca, 0x16, + 0x75, 0x28, 0x61, 0xc2, 0xb2, 0x17, 0x01, 0x22, 0xfb, 0x41, 0x56, 0xb3, 0x1f, 0x18, 0x8f, 0xa0, + 0xc1, 0x0e, 0x76, 0x36, 0xd6, 0xba, 0xcd, 0x7e, 0xc2, 0x44, 0x6f, 0xdd, 0xba, 0x57, 0x32, 0x2b, + 0x1c, 0x86, 0x55, 0x19, 0x9f, 0xc0, 0x8a, 0x96, 0x2d, 0x52, 0x0a, 0x31, 0x61, 0x21, 0xa9, 0x14, + 0xc2, 0x8b, 0x3e, 0xc7, 0x18, 0x9b, 0xb0, 0xce, 0x92, 0x9d, 0x0b, 0xea, 0x86, 0x83, 0xf9, 0x09, + 0x77, 0xf5, 0x70, 0x3c, 0xd7, 0xf8, 0xb5, 0x0c, 0x94, 0x15, 0xe6, 0xfa, 0x5d, 0xb2, 0x2d, 0xf4, + 0x47, 0x9c, 0x2d, 0x6e, 0x69, 0x35, 0x60, 0xc6, 0x6d, 0xfc, 0x1b, 0xd3, 0x23, 0x95, 0x15, 0x88, + 0x0d, 0xeb, 0x51, 0xa7, 0x63, 0x5a, 0xfd, 0xde, 0x41, 0xb7, 0xc7, 0x0e, 0x07, 0x36, 0xac, 0x08, + 0xd8, 0xdb, 0x43, 0x48, 0xc6, 0x68, 0x40, 0xfd, 0x09, 0x0d, 0xbb, 0xee, 0xa9, 0x27, 0x06, 0xc3, + 0xf8, 0xf3, 0x4b, 0xb0, 0xac, 0x40, 0x91, 0x1e, 0xea, 0x82, 0xfa, 0x81, 0xe3, 0xb9, 0xb8, 0x4e, + 0xca, 0xa6, 0x4c, 0x32, 0xf6, 0x26, 0x6e, 0x69, 0x28, 0x66, 0xac, 0x21, 0x56, 0xdc, 0xeb, 0x50, + 0xc6, 0x78, 0x07, 0x96, 0x9d, 0x31, 0x75, 0x43, 0x27, 0xbc, 0xb2, 0x62, 0x5a, 0xf9, 0xba, 0x04, + 0x0b, 0x39, 0x63, 0x0d, 0x0a, 0xf6, 0xc4, 0xb1, 0xa5, 0x0b, 0x0d, 0x4f, 0x30, 0xe8, 0xc8, 0x9b, + 0x78, 0x3e, 0xde, 0x5b, 0xca, 0x26, 0x4f, 0x90, 0x07, 0xb0, 0xc6, 0xee, 0x50, 0xba, 0x19, 0x09, + 0x39, 0x14, 0x37, 0x10, 0x10, 0x77, 0x3e, 0x3d, 0x8a, 0x4c, 0x49, 0x0c, 0xc3, 0xa4, 0x0b, 0x96, + 0x43, 0x88, 0x93, 0x2a, 0x03, 0xd7, 0x8b, 0xac, 0xb8, 0xf3, 0x69, 0x0b, 0x31, 0x8a, 0xfe, 0x21, + 0xac, 0x33, 0x7a, 0x25, 0x80, 0xaa, 0x1c, 0xcb, 0x98, 0x83, 0x15, 0xd6, 0x15, 0x38, 0x95, 0xe7, + 0x16, 0x94, 0x79, 0xab, 0xd8, 0x92, 0x10, 0xf6, 0x26, 0x6c, 0x0a, 0xf5, 0x83, 0x05, 0x6f, 0x17, + 0xae, 0x08, 0x48, 0x7a, 0xbb, 0x68, 0xfe, 0x32, 0xa5, 0xa4, 0xbf, 0xcc, 0x43, 0x58, 0x3f, 0x61, + 0x6b, 0xf4, 0x9c, 0xda, 0x63, 0xea, 0x5b, 0xd1, 0xca, 0xe7, 0xd7, 0xcd, 0x55, 0x86, 0xdc, 0x47, + 0x9c, 0xda, 0x28, 0x4c, 0x12, 0x64, 0x8c, 0x87, 0x8e, 0xad, 0xd0, 0xb3, 0x50, 0x40, 0x14, 0x1a, + 0xd7, 0x1a, 0x07, 0x0f, 0xbd, 0x36, 0x03, 0xc6, 0xe9, 0xce, 0x7c, 0x7b, 0x76, 0x2e, 0x2e, 0x83, + 0x8a, 0xee, 0x09, 0x03, 0x92, 0xd7, 0xa0, 0xc8, 0xf6, 0x84, 0x4b, 0xb9, 0xf3, 0x00, 0xbf, 0x66, + 0x49, 0x10, 0x79, 0x0b, 0x96, 0xb0, 0x8e, 0xa0, 0xd9, 0xc0, 0x0d, 0x51, 0x8d, 0x8e, 0x0a, 0xc7, + 0x35, 0x05, 0x8e, 0x89, 0xdb, 0x73, 0xdf, 0xe1, 0x7c, 0xac, 0x6c, 0xe2, 0x6f, 0xf2, 0x7d, 0x8d, + 0x29, 0xae, 0x62, 0xde, 0xb7, 0x44, 0xde, 0xc4, 0x52, 0xbc, 0x8e, 0x3f, 0x7e, 0xa3, 0xdc, 0xea, + 0x07, 0xf9, 0x52, 0xa5, 0x51, 0x35, 0x9a, 0xe8, 0xe4, 0x63, 0xd2, 0x91, 0x77, 0x41, 0xfd, 0xab, + 0xd8, 0x1e, 0xc9, 0xc0, 0xe6, 0x02, 0x2a, 0xf2, 0x15, 0xf0, 0x05, 0xdc, 0x9a, 0x7a, 0x63, 0x29, + 0x14, 0x54, 0x25, 0xf0, 0xd0, 0x1b, 0x33, 0xe1, 0x65, 0x45, 0x11, 0x9d, 0x3a, 0xae, 0x13, 0x9c, + 0xd3, 0xb1, 0x90, 0x0d, 0x1a, 0x12, 0xb1, 0x27, 0xe0, 0x4c, 0x02, 0x9f, 0xf9, 0xde, 0x99, 0x3a, + 0x2a, 0x33, 0xa6, 0x4a, 0x1b, 0x9f, 0x42, 0x81, 0xcf, 0x20, 0xdb, 0x28, 0x38, 0xbf, 0x19, 0xb1, + 0x51, 0x10, 0xda, 0x84, 0xa2, 0x4b, 0xc3, 0xe7, 0x9e, 0xff, 0x4c, 0xda, 0xd6, 0x44, 0xd2, 0xf8, + 0x31, 0x2a, 0x55, 0x95, 0xb7, 0x16, 0x57, 0x3e, 0xb0, 0x25, 0xcc, 0x97, 0x60, 0x70, 0x6e, 0x0b, + 0x3d, 0x6f, 0x09, 0x01, 0x83, 0x73, 0x7b, 0x61, 0x09, 0x67, 0x17, 0x1d, 0xb6, 0xde, 0x82, 0xba, + 0xf4, 0x0f, 0x0b, 0xac, 0x09, 0x3d, 0x0d, 0xc5, 0x96, 0xac, 0x0a, 0xe7, 0xb0, 0xe0, 0x80, 0x9e, + 0x86, 0xc6, 0x21, 0xac, 0x88, 0x4d, 0xd3, 0x9f, 0x51, 0x59, 0xf5, 0x67, 0x69, 0xb7, 0xa2, 0xca, + 0xc3, 0xd5, 0xb8, 0xb8, 0xc1, 0x05, 0xbb, 0xd8, 0x55, 0xc9, 0xf8, 0x61, 0xa4, 0x41, 0x64, 0xc2, + 0x88, 0x28, 0x4f, 0xdc, 0x4d, 0xa4, 0x49, 0x52, 0xba, 0x3d, 0xa8, 0x1b, 0x90, 0x33, 0x66, 0xa3, + 0x13, 0xcc, 0x47, 0x23, 0xe9, 0xb7, 0x57, 0x32, 0x65, 0xd2, 0xf8, 0xb7, 0x19, 0x58, 0xc5, 0xc2, + 0xe4, 0xad, 0x4e, 0x9c, 0x14, 0x3f, 0x71, 0x23, 0xd9, 0xfc, 0xe8, 0x12, 0x20, 0x4f, 0x7c, 0x7d, + 0x23, 0x4d, 0x7e, 0xc1, 0x48, 0xf3, 0x6d, 0x68, 0x8c, 0xe9, 0xc4, 0xc1, 0xa5, 0x24, 0x05, 0x2a, + 0x2e, 0xc1, 0x2e, 0x4b, 0xb8, 0xd0, 0x32, 0x18, 0x7f, 0x39, 0x03, 0x2b, 0x5c, 0x5e, 0x43, 0xbd, + 0x8d, 0x18, 0xa8, 0xc7, 0x52, 0x41, 0x21, 0xd8, 0xa9, 0xe8, 0x53, 0x24, 0xc7, 0x20, 0x94, 0x13, + 0xef, 0xdf, 0x10, 0x8a, 0x0b, 0x01, 0x25, 0xdf, 0xc1, 0x9b, 0xa8, 0x6b, 0x21, 0x50, 0xc8, 0xe1, + 0x37, 0x53, 0x24, 0x44, 0x95, 0x9d, 0x5d, 0x53, 0x5d, 0x04, 0xed, 0x94, 0x60, 0x89, 0x6b, 0xc1, + 0x8c, 0x3d, 0xa8, 0xc5, 0xaa, 0x89, 0x59, 0x7a, 0xaa, 0xdc, 0xd2, 0xb3, 0x60, 0x0d, 0xce, 0x2e, + 0x5a, 0x83, 0xaf, 0x60, 0xd5, 0xa4, 0xf6, 0xf8, 0x6a, 0xcf, 0xf3, 0x8f, 0x82, 0x93, 0x70, 0x8f, + 0x0b, 0xc1, 0xec, 0x0c, 0x52, 0xfe, 0x1f, 0x31, 0x73, 0x8a, 0xb4, 0x74, 0x4b, 0x35, 0xcc, 0xb7, + 0xa0, 0x1e, 0x39, 0x8a, 0x68, 0x8a, 0xf7, 0x9a, 0xf2, 0x15, 0x41, 0xd9, 0x89, 0x40, 0x7e, 0x16, + 0x9c, 0x84, 0x42, 0xf5, 0x8e, 0xbf, 0x8d, 0xbf, 0x52, 0x00, 0xc2, 0x56, 0x73, 0x62, 0xc1, 0x24, + 0x5c, 0x5c, 0xb2, 0x0b, 0x2e, 0x2e, 0x0f, 0x80, 0x68, 0x04, 0xd2, 0xf3, 0x26, 0xa7, 0x3c, 0x6f, + 0x1a, 0x11, 0xad, 0x70, 0xbc, 0x79, 0x00, 0x6b, 0xe2, 0x46, 0x11, 0x6f, 0x2a, 0x5f, 0x1a, 0x84, + 0x5f, 0x2d, 0x62, 0xed, 0x95, 0xee, 0x2d, 0x52, 0x53, 0x9d, 0xe3, 0xee, 0x2d, 0x52, 0xa1, 0xa4, + 0x2d, 0xc0, 0xa5, 0x97, 0x2e, 0xc0, 0xe2, 0xc2, 0x02, 0xd4, 0x94, 0x8b, 0xa5, 0xb8, 0x72, 0x71, + 0x41, 0x4d, 0xce, 0xc5, 0xe7, 0x98, 0x9a, 0xfc, 0x1e, 0x34, 0xa4, 0xa2, 0x49, 0xa9, 0x30, 0x85, + 0xcf, 0x83, 0xd0, 0x25, 0x49, 0x25, 0x66, 0xcc, 0xa6, 0x57, 0x79, 0x15, 0xe3, 0x62, 0x35, 0xdd, + 0xb8, 0xb8, 0xa8, 0x92, 0xab, 0xa5, 0xa8, 0xe4, 0x1e, 0x45, 0x2e, 0x0d, 0xc1, 0xb9, 0x33, 0x45, + 0xc1, 0x27, 0x72, 0xb8, 0x14, 0x03, 0x3c, 0x38, 0x77, 0xa6, 0xa6, 0x74, 0x2e, 0x62, 0x09, 0xd2, + 0x86, 0x3b, 0xa2, 0x3f, 0x29, 0x7e, 0x41, 0x7c, 0x14, 0x96, 0x51, 0x52, 0xdd, 0xe2, 0x64, 0x87, + 0x09, 0x17, 0xa1, 0xc4, 0xa0, 0x48, 0xaf, 0x92, 0x80, 0xeb, 0x75, 0xe5, 0xa0, 0x1c, 0x72, 0xb7, + 0x92, 0x00, 0x87, 0xd8, 0xbe, 0xb4, 0x84, 0xce, 0x2f, 0xb8, 0x40, 0x39, 0xa9, 0x66, 0x56, 0xa6, + 0xf6, 0xe5, 0x01, 0xea, 0xf4, 0x82, 0x0b, 0xe3, 0x4f, 0x33, 0xd0, 0x60, 0x4b, 0x33, 0xb6, 0xeb, + 0x3f, 0x07, 0xe4, 0x4f, 0xaf, 0xb8, 0xe9, 0x2b, 0x8c, 0x56, 0xee, 0xf9, 0x4f, 0x01, 0x37, 0xb1, + 0xe5, 0xcd, 0xa8, 0x2b, 0xb6, 0x7c, 0x33, 0xbe, 0xe5, 0x23, 0xb6, 0xbe, 0x7f, 0x83, 0x5f, 0x0a, + 0x19, 0x84, 0x7c, 0x0e, 0x65, 0xb6, 0x57, 0x70, 0xe1, 0x0a, 0x97, 0xe6, 0x2d, 0x75, 0xd1, 0x5f, + 0xd8, 0xb6, 0x2c, 0xeb, 0x4c, 0x24, 0xd3, 0x9c, 0x86, 0xf2, 0x29, 0x4e, 0x43, 0x1a, 0x4f, 0xd9, + 0x07, 0x78, 0x4a, 0xaf, 0xd8, 0x20, 0x84, 0x9e, 0xcf, 0x64, 0x2b, 0xb6, 0xbd, 0x4e, 0xed, 0xa9, + 0x23, 0x94, 0x8d, 0x05, 0xb3, 0xfc, 0x8c, 0x5e, 0xed, 0x21, 0x80, 0xad, 0x2d, 0x86, 0x8e, 0x18, + 0x4b, 0xc1, 0x2c, 0x3d, 0xa3, 0x57, 0x9c, 0xab, 0x58, 0x50, 0x7b, 0x4a, 0xaf, 0x76, 0x29, 0x17, + 0xde, 0x3d, 0x9f, 0x0d, 0xba, 0x6f, 0x3f, 0x67, 0xd2, 0x7a, 0xcc, 0xa9, 0xa5, 0xe2, 0xdb, 0xcf, + 0x9f, 0xd2, 0x2b, 0xe9, 0x60, 0x53, 0x64, 0xf8, 0x89, 0x37, 0x12, 0xe2, 0x86, 0xd4, 0xef, 0x44, + 0x8d, 0x32, 0x97, 0x9e, 0xe1, 0x6f, 0xe3, 0x4f, 0x32, 0x50, 0x63, 0xed, 0xc7, 0x93, 0x02, 0x57, + 0x91, 0x70, 0x81, 0xcd, 0x44, 0x2e, 0xb0, 0x0f, 0x05, 0xa3, 0xe5, 0xc7, 0x4e, 0xf6, 0xfa, 0x63, + 0x07, 0xe7, 0x86, 0x9f, 0x39, 0x1f, 0x42, 0x99, 0x2f, 0x0c, 0xc6, 0x7a, 0x72, 0xb1, 0x09, 0x8e, + 0x75, 0xc8, 0x2c, 0x21, 0xd9, 0x53, 0xee, 0x71, 0xa7, 0xa9, 0xd2, 0xf9, 0x10, 0x97, 0x7d, 0xa5, + 0x40, 0x4f, 0x99, 0x86, 0xc2, 0x35, 0x1e, 0x77, 0xba, 0x9e, 0x7a, 0x29, 0xa9, 0xa7, 0x36, 0x5c, + 0x28, 0xb1, 0xa9, 0xc6, 0xce, 0xa6, 0x14, 0x9a, 0x49, 0x2b, 0x94, 0x09, 0x27, 0x36, 0x3b, 0xa7, + 0x18, 0xef, 0xcd, 0x0a, 0xe1, 0xc4, 0x0e, 0x28, 0x2b, 0x88, 0x35, 0xdc, 0xf5, 0x2c, 0x54, 0xfc, + 0x0a, 0x95, 0x68, 0xc9, 0x2c, 0xbb, 0xde, 0x11, 0x07, 0x18, 0x7f, 0x2e, 0x03, 0x15, 0x6d, 0xcf, + 0xa2, 0x25, 0x40, 0x0d, 0x27, 0xdf, 0xe0, 0xf1, 0x1d, 0x10, 0x9b, 0x8f, 0xfd, 0x1b, 0x66, 0x6d, + 0x14, 0x9b, 0xa0, 0x6d, 0xb1, 0x94, 0x31, 0x67, 0x36, 0xa6, 0x7e, 0x92, 0xfd, 0x92, 0xeb, 0x97, + 0xfd, 0xde, 0x59, 0x82, 0x3c, 0x23, 0x35, 0x1e, 0xc3, 0x8a, 0xd6, 0x0c, 0xae, 0x9e, 0x79, 0xd5, + 0x01, 0x30, 0x7e, 0x51, 0x65, 0x66, 0x75, 0x70, 0xd3, 0xba, 0x74, 0x6e, 0xa4, 0x63, 0x3e, 0x2e, + 0xc2, 0x89, 0x92, 0x83, 0x70, 0x64, 0x5e, 0xd1, 0xdf, 0xce, 0xf8, 0xd5, 0x0c, 0xac, 0x6a, 0xc5, + 0xef, 0x39, 0xae, 0x3d, 0x71, 0x7e, 0x8c, 0x32, 0x4a, 0xe0, 0x9c, 0xb9, 0x89, 0x0a, 0x38, 0xe8, + 0xeb, 0x54, 0xc0, 0x8e, 0x12, 0xee, 0x2a, 0xcd, 0xdd, 0xed, 0xc5, 0xf1, 0x09, 0x08, 0x33, 0xed, + 0xe7, 0xc3, 0x4b, 0xe3, 0xaf, 0x66, 0x61, 0x4d, 0x34, 0x01, 0x3d, 0xda, 0x1d, 0x26, 0x9a, 0x1e, + 0x06, 0x67, 0xe4, 0x73, 0xa8, 0xb1, 0xe1, 0xb3, 0x7c, 0x7a, 0xe6, 0x04, 0x21, 0x95, 0x56, 0xff, + 0x14, 0x6e, 0xcc, 0x24, 0x14, 0x46, 0x6a, 0x0a, 0x4a, 0xf2, 0x18, 0x2a, 0x98, 0x95, 0x6b, 0xc8, + 0xc4, 0x5c, 0x35, 0x17, 0x33, 0xf2, 0xb9, 0xd8, 0xbf, 0x61, 0x42, 0x10, 0xcd, 0xcc, 0x63, 0xa8, + 0xe0, 0x34, 0x5f, 0xe0, 0x58, 0x27, 0x98, 0xdd, 0xc2, 0x5c, 0xb0, 0xcc, 0xb3, 0x68, 0x66, 0x5a, + 0x50, 0xe3, 0xec, 0x4e, 0x8c, 0xa4, 0xf0, 0x94, 0xdd, 0x5a, 0xcc, 0x2e, 0xc7, 0x9a, 0x35, 0x7e, + 0xa6, 0xa5, 0x77, 0xca, 0x50, 0x0c, 0x7d, 0xe7, 0xec, 0x8c, 0xfa, 0xc6, 0x86, 0x1a, 0x1a, 0xc6, + 0xc7, 0xe9, 0x20, 0xa4, 0x33, 0x76, 0xe7, 0x30, 0xfe, 0x45, 0x06, 0x2a, 0x82, 0x33, 0xff, 0xc4, + 0x0e, 0x05, 0x5b, 0x09, 0x5d, 0x6a, 0x59, 0x53, 0x9d, 0xbe, 0x03, 0xcb, 0x53, 0x76, 0x41, 0x62, + 0x17, 0xf8, 0x98, 0x37, 0x41, 0x5d, 0x82, 0x85, 0xec, 0xbf, 0x0d, 0xab, 0x78, 0x15, 0x08, 0xac, + 0xd0, 0x99, 0x58, 0x12, 0x29, 0x9e, 0x75, 0xac, 0x70, 0xd4, 0xd0, 0x99, 0x1c, 0x0a, 0x04, 0x93, + 0x88, 0x83, 0xd0, 0x3e, 0xa3, 0x82, 0x3b, 0xf0, 0x04, 0xbb, 0x74, 0x25, 0xee, 0xee, 0xf2, 0xd2, + 0xf5, 0xbf, 0x57, 0x60, 0x73, 0x01, 0x25, 0x2e, 0x5d, 0xca, 0x78, 0x3b, 0x71, 0xa6, 0x27, 0x9e, + 0x32, 0x1e, 0x64, 0x34, 0xe3, 0xed, 0x01, 0xc3, 0x48, 0xe3, 0x01, 0x85, 0x75, 0xb9, 0x64, 0x51, + 0xfb, 0xaf, 0xae, 0xf7, 0x59, 0xbc, 0x7c, 0x7e, 0x18, 0x3f, 0x06, 0x93, 0xd5, 0x49, 0xb8, 0x2e, + 0xef, 0xad, 0xce, 0x16, 0x60, 0x01, 0xf9, 0xff, 0xa1, 0xa9, 0x76, 0x86, 0xb8, 0x8b, 0x68, 0xba, + 0x0a, 0x56, 0xd3, 0x7b, 0x2f, 0xa9, 0x29, 0xa6, 0x96, 0x45, 0x81, 0x70, 0x43, 0x6e, 0x2a, 0x5e, + 0xa0, 0xaa, 0xeb, 0x02, 0x5e, 0x97, 0x75, 0xe1, 0xdd, 0x62, 0xb1, 0xc6, 0xfc, 0x2b, 0xf5, 0x0d, + 0x55, 0xce, 0xb1, 0x6a, 0xcd, 0x5b, 0xa2, 0x60, 0x85, 0xd2, 0xeb, 0x3d, 0x87, 0x8d, 0xe7, 0xb6, + 0x13, 0xca, 0x3e, 0x6a, 0xaa, 0x92, 0x02, 0xd6, 0xf7, 0xf0, 0x25, 0xf5, 0x7d, 0xc9, 0x33, 0xc7, + 0x6e, 0x5b, 0x6b, 0xcf, 0x17, 0x81, 0xc1, 0xd6, 0xdf, 0xce, 0x41, 0x3d, 0x5e, 0x0a, 0x63, 0x3d, + 0xe2, 0xb8, 0x92, 0x42, 0xb4, 0x90, 0xec, 0x85, 0x61, 0xab, 0xc7, 0x85, 0xe7, 0x45, 0x93, 0x5b, + 0x36, 0xc5, 0xe4, 0xa6, 0x5b, 0xba, 0x72, 0x2f, 0x73, 0x7c, 0xc8, 0xbf, 0x92, 0xe3, 0x43, 0x21, + 0xcd, 0xf1, 0xe1, 0xa3, 0x6b, 0x2d, 0xe5, 0x5c, 0x5f, 0x9d, 0x6a, 0x25, 0x7f, 0x74, 0xbd, 0x95, + 0x9c, 0x8b, 0xe4, 0xd7, 0x59, 0xc8, 0x35, 0xfb, 0x7e, 0xe9, 0x1a, 0xfb, 0x94, 0x66, 0xf1, 0x4f, + 0xb1, 0x90, 0x97, 0xbf, 0x86, 0x85, 0x7c, 0xeb, 0x4f, 0x32, 0x40, 0x16, 0x77, 0x07, 0x79, 0xc2, + 0xad, 0x99, 0x2e, 0x9d, 0x08, 0xce, 0xfd, 0xfe, 0xab, 0xed, 0x30, 0xb9, 0x20, 0x64, 0x6e, 0xf2, + 0x01, 0xac, 0xea, 0x8f, 0xcf, 0x74, 0x55, 0x44, 0xcd, 0x24, 0x3a, 0x2a, 0x52, 0xaa, 0x69, 0x5e, + 0x26, 0xf9, 0x97, 0x7a, 0x99, 0x14, 0x5e, 0xea, 0x65, 0xb2, 0x14, 0xf7, 0x32, 0xd9, 0xfa, 0x37, + 0x19, 0x58, 0x4d, 0x59, 0xc4, 0xdf, 0x5c, 0x9f, 0xd9, 0xda, 0x8b, 0xb1, 0xb5, 0xac, 0x58, 0x7b, + 0x3a, 0x47, 0x3b, 0x90, 0x8a, 0x58, 0x36, 0x15, 0x81, 0x38, 0xa9, 0xee, 0xbf, 0x8c, 0xbb, 0x44, + 0x39, 0x4c, 0x3d, 0xfb, 0xd6, 0xdf, 0xcd, 0x42, 0x45, 0x43, 0xb2, 0x51, 0xe4, 0x4b, 0x56, 0xf3, + 0xbf, 0xe4, 0xb2, 0x25, 0x2a, 0x52, 0xd0, 0x99, 0x1e, 0x17, 0x27, 0xe2, 0xf9, 0xe6, 0x12, 0x82, + 0x24, 0x12, 0x6c, 0xc3, 0xaa, 0xb4, 0x34, 0xd3, 0xc8, 0x4d, 0x5c, 0x9c, 0x35, 0xc2, 0x69, 0x40, + 0x34, 0x12, 0xe9, 0x3f, 0x90, 0x77, 0xdc, 0x68, 0xee, 0x34, 0xcb, 0xdd, 0x8a, 0x70, 0x57, 0x10, + 0x93, 0xc8, 0xd6, 0xf9, 0x87, 0xb0, 0xae, 0xfc, 0x15, 0x62, 0x39, 0xb8, 0x7d, 0x88, 0x48, 0xbf, + 0x04, 0x2d, 0xcb, 0xf7, 0xe1, 0x76, 0xa2, 0x4d, 0x89, 0xac, 0xdc, 0xcf, 0xed, 0x66, 0xac, 0x75, + 0x7a, 0x09, 0x5b, 0x7f, 0x06, 0x6a, 0x31, 0x46, 0xf9, 0xcd, 0x4d, 0x79, 0x52, 0x79, 0xc5, 0x47, + 0x54, 0x57, 0x5e, 0x6d, 0xfd, 0xcf, 0x1c, 0x90, 0x45, 0x5e, 0xfd, 0xb3, 0x6c, 0xc2, 0xe2, 0xc2, + 0xcc, 0xa5, 0x2c, 0xcc, 0xff, 0x67, 0xf2, 0x43, 0xa4, 0x43, 0xd5, 0xdc, 0x05, 0xf8, 0xe6, 0x6c, + 0x28, 0x84, 0x6c, 0xc5, 0xa7, 0x49, 0xa7, 0xaa, 0x52, 0xec, 0xfd, 0xa4, 0x26, 0x40, 0x25, 0x7c, + 0xab, 0x8e, 0x61, 0xc9, 0x76, 0x47, 0xe7, 0x9e, 0x2f, 0xf8, 0xe0, 0xcf, 0x7d, 0xed, 0xe3, 0x73, + 0xbb, 0x85, 0xf9, 0x51, 0x6a, 0x33, 0x45, 0x61, 0xc6, 0x87, 0x50, 0xd1, 0xc0, 0xa4, 0x0c, 0x85, + 0x83, 0xee, 0xe1, 0x4e, 0xbf, 0x71, 0x83, 0xd4, 0xa0, 0x6c, 0x76, 0xda, 0xfd, 0x2f, 0x3a, 0x66, + 0x67, 0xb7, 0x91, 0x21, 0x25, 0xc8, 0x1f, 0xf4, 0x07, 0xc3, 0x46, 0xd6, 0xd8, 0x82, 0xa6, 0x28, + 0x71, 0xd1, 0x9a, 0xf4, 0xdb, 0x79, 0xa5, 0x03, 0x45, 0xa4, 0xb8, 0xe4, 0x7f, 0x04, 0x55, 0x5d, + 0xbc, 0x11, 0x2b, 0x22, 0xe1, 0xb1, 0xc2, 0xae, 0xf7, 0x9e, 0xc6, 0xab, 0xdb, 0xc0, 0xfd, 0x15, + 0xc6, 0x2a, 0x5b, 0x36, 0x26, 0xb7, 0xa6, 0x18, 0x7e, 0xf1, 0x7e, 0x14, 0x5b, 0x86, 0xff, 0x1f, + 0xd4, 0xe3, 0x96, 0x13, 0xc1, 0x91, 0xd2, 0xae, 0xac, 0x2c, 0x77, 0xcc, 0x94, 0x42, 0xbe, 0x0f, + 0x8d, 0xa4, 0xe5, 0x45, 0x08, 0xcf, 0xd7, 0xe4, 0x5f, 0x76, 0xe2, 0xc6, 0x18, 0xb2, 0x0f, 0x6b, + 0x69, 0x02, 0x1e, 0xae, 0x8f, 0xeb, 0xd5, 0x1c, 0x64, 0x51, 0x88, 0x23, 0x9f, 0x09, 0x0b, 0x5c, + 0x01, 0xa7, 0xff, 0xad, 0x78, 0xfd, 0xda, 0x60, 0x6f, 0xf3, 0x7f, 0x9a, 0x2d, 0xee, 0x02, 0x20, + 0x82, 0x91, 0x06, 0x54, 0xfb, 0x47, 0x9d, 0x9e, 0xd5, 0xde, 0x6f, 0xf5, 0x7a, 0x9d, 0x83, 0xc6, + 0x0d, 0x42, 0xa0, 0x8e, 0x4e, 0x17, 0xbb, 0x0a, 0x96, 0x61, 0x30, 0x61, 0x09, 0x95, 0xb0, 0x2c, + 0x59, 0x83, 0x46, 0xb7, 0x97, 0x80, 0xe6, 0x48, 0x13, 0xd6, 0x8e, 0x3a, 0xdc, 0x4f, 0x23, 0x56, + 0x6e, 0x9e, 0x5d, 0x1a, 0x44, 0x77, 0xd9, 0xa5, 0xe1, 0x4b, 0x7b, 0x32, 0xa1, 0xa1, 0xd8, 0x07, + 0x52, 0x96, 0xfe, 0x6b, 0x19, 0x58, 0x4f, 0x20, 0x22, 0xf3, 0x05, 0x97, 0xa4, 0xe3, 0x32, 0x74, + 0x15, 0x81, 0x72, 0x37, 0xbd, 0x0b, 0x2b, 0x4a, 0x9b, 0x96, 0x38, 0x95, 0x1a, 0x0a, 0x21, 0x89, + 0x3f, 0x80, 0x55, 0x4d, 0x29, 0x97, 0xe0, 0x15, 0x44, 0x43, 0x89, 0x0c, 0xc6, 0x36, 0x2c, 0x09, + 0xc5, 0x65, 0x03, 0x72, 0xf2, 0xe1, 0x4a, 0xde, 0x64, 0x3f, 0x09, 0x81, 0xfc, 0x34, 0x72, 0xf7, + 0xc5, 0xdf, 0xc6, 0xa6, 0x7a, 0x81, 0x96, 0xe8, 0xe5, 0xaf, 0xe6, 0x61, 0x23, 0x89, 0x51, 0x0e, + 0xf0, 0xc5, 0x58, 0x07, 0xb9, 0x21, 0x4b, 0x80, 0xc8, 0xc7, 0x89, 0xd5, 0x13, 0xeb, 0x22, 0x92, + 0xea, 0x2b, 0x45, 0x76, 0xf4, 0x61, 0x52, 0x46, 0xe4, 0x4b, 0xbe, 0x26, 0x9d, 0xfe, 0xb1, 0x4f, + 0x09, 0x91, 0xf1, 0xe3, 0x05, 0x91, 0x31, 0x9f, 0x96, 0x29, 0x21, 0x41, 0x76, 0x60, 0x33, 0x72, + 0x6c, 0x8d, 0xd7, 0x59, 0x48, 0xcb, 0xbe, 0xae, 0xa8, 0x0f, 0xf4, 0xca, 0x9f, 0x40, 0x33, 0x2a, + 0x26, 0xd1, 0x8c, 0xa5, 0xb4, 0x72, 0x36, 0x14, 0xb9, 0x19, 0x6b, 0xcf, 0x0f, 0x60, 0x2b, 0x36, + 0x5e, 0xf1, 0x26, 0x15, 0xd3, 0x8a, 0xda, 0xd4, 0x06, 0x30, 0xd6, 0xa8, 0x03, 0xb8, 0x15, 0x2b, + 0x2b, 0xd1, 0xae, 0x52, 0x5a, 0x61, 0x4d, 0xad, 0xb0, 0x58, 0xcb, 0x8c, 0xdf, 0x5d, 0x02, 0xf2, + 0xc3, 0x39, 0xf5, 0xaf, 0xf0, 0x5d, 0x6a, 0xf0, 0x32, 0x8f, 0x7d, 0xa9, 0x78, 0xcb, 0xbe, 0xd2, + 0xdb, 0xf3, 0xb4, 0xb7, 0xdf, 0xf9, 0x97, 0xbf, 0xfd, 0x2e, 0xbc, 0xec, 0xed, 0xf7, 0x9b, 0x50, + 0x73, 0xce, 0x5c, 0x8f, 0x9d, 0x6b, 0xec, 0x5a, 0x13, 0x34, 0x97, 0xee, 0xe6, 0xee, 0x55, 0xcd, + 0xaa, 0x00, 0xb2, 0x4b, 0x4d, 0x40, 0x1e, 0x47, 0x44, 0x74, 0x7c, 0x86, 0xf1, 0x0f, 0xf4, 0x13, + 0xad, 0x33, 0x3e, 0xa3, 0x42, 0xcf, 0x88, 0x0b, 0x56, 0x66, 0x66, 0xf0, 0x80, 0xbc, 0x05, 0xf5, + 0xc0, 0x9b, 0xb3, 0x5b, 0xa2, 0x1c, 0x06, 0x6e, 0x6e, 0xae, 0x72, 0xe8, 0x91, 0x74, 0x3e, 0x58, + 0x9d, 0x07, 0xd4, 0x9a, 0x3a, 0x41, 0xc0, 0x64, 0xed, 0x91, 0xe7, 0x86, 0xbe, 0x37, 0x11, 0x16, + 0xe4, 0x95, 0x79, 0x40, 0x0f, 0x39, 0xa6, 0xcd, 0x11, 0xe4, 0xe3, 0xa8, 0x49, 0x33, 0xdb, 0xf1, + 0x83, 0x26, 0x60, 0x93, 0x64, 0x4f, 0xf1, 0x32, 0x66, 0x3b, 0xbe, 0x6a, 0x0b, 0x4b, 0x04, 0x89, + 0x37, 0xe9, 0x95, 0xe4, 0x9b, 0xf4, 0x5f, 0x49, 0x7f, 0x93, 0xce, 0x9d, 0xe6, 0x1e, 0x88, 0xa2, + 0x17, 0xa7, 0xf8, 0x6b, 0x3d, 0x4d, 0x5f, 0x7c, 0x6a, 0x5f, 0xff, 0x3a, 0x4f, 0xed, 0x97, 0xd3, + 0x9e, 0xda, 0x7f, 0x08, 0x15, 0x7c, 0x04, 0x6d, 0x9d, 0xa3, 0xeb, 0x2c, 0xb7, 0x88, 0x37, 0xf4, + 0x57, 0xd2, 0xfb, 0x8e, 0x1b, 0x9a, 0xe0, 0xcb, 0x9f, 0xc1, 0xe2, 0xab, 0xf7, 0x95, 0x9f, 0xe1, + 0xab, 0x77, 0xf1, 0x58, 0x7b, 0x1b, 0x4a, 0x72, 0x9e, 0x18, 0xb3, 0x3d, 0xf5, 0xbd, 0xa9, 0xb4, + 0xc2, 0xb1, 0xdf, 0xa4, 0x0e, 0xd9, 0xd0, 0x13, 0x99, 0xb3, 0xa1, 0x67, 0xfc, 0x12, 0x54, 0xb4, + 0xa5, 0x46, 0xde, 0xe0, 0x6a, 0x6a, 0x76, 0xd1, 0x16, 0x17, 0x05, 0x3e, 0x8a, 0x65, 0x01, 0xed, + 0x8e, 0xd9, 0xe1, 0x31, 0x76, 0x7c, 0x8a, 0xf1, 0x29, 0x2c, 0x9f, 0x5e, 0x50, 0x3f, 0x90, 0x56, + 0xd1, 0x86, 0x42, 0x98, 0x1c, 0x6e, 0xfc, 0x32, 0xac, 0xc6, 0xe6, 0x56, 0xb0, 0xef, 0xb7, 0x60, + 0x09, 0xc7, 0x4d, 0xba, 0xde, 0xc4, 0x5f, 0x9f, 0x0b, 0x1c, 0xc6, 0xe2, 0xe0, 0x06, 0x5d, 0x6b, + 0xe6, 0x7b, 0x27, 0x58, 0x49, 0xc6, 0xac, 0x08, 0xd8, 0x91, 0xef, 0x9d, 0x18, 0xff, 0x39, 0x07, + 0xb9, 0x7d, 0x6f, 0xa6, 0xbb, 0xdb, 0x66, 0x16, 0xdc, 0x6d, 0x85, 0xf6, 0xc0, 0x52, 0xda, 0x01, + 0x71, 0x01, 0x43, 0x53, 0xa6, 0xd4, 0x10, 0xdc, 0x83, 0x3a, 0xe3, 0x13, 0xa1, 0x67, 0x89, 0x67, + 0x2e, 0xfc, 0x84, 0xe3, 0x9b, 0xcf, 0x9e, 0x86, 0x43, 0x6f, 0x8f, 0xc3, 0xc9, 0x1a, 0xe4, 0xd4, + 0x5d, 0x14, 0xd1, 0x2c, 0x49, 0x36, 0x60, 0x09, 0x9f, 0xe7, 0xc8, 0xa7, 0xca, 0x22, 0x45, 0xde, + 0x87, 0xd5, 0x78, 0xb9, 0x9c, 0x15, 0x09, 0x41, 0x57, 0x2f, 0x18, 0x79, 0xd2, 0x4d, 0x60, 0x7c, + 0x24, 0x7a, 0xac, 0x9c, 0x33, 0x8b, 0xa7, 0x94, 0x22, 0x4a, 0x63, 0x7a, 0xa5, 0x18, 0xd3, 0xbb, + 0x03, 0x95, 0x70, 0x72, 0x61, 0xcd, 0xec, 0xab, 0x89, 0x67, 0xcb, 0x37, 0x79, 0x10, 0x4e, 0x2e, + 0x8e, 0x38, 0x84, 0x7c, 0x00, 0x30, 0x9d, 0xcd, 0xc4, 0xde, 0x43, 0xf3, 0x5c, 0xb4, 0x94, 0x0f, + 0x8f, 0x8e, 0xf8, 0x92, 0x33, 0xcb, 0xd3, 0xd9, 0x8c, 0xff, 0x24, 0xbb, 0x50, 0x4f, 0x8d, 0x21, + 0x71, 0x5b, 0x3e, 0x62, 0xf0, 0x66, 0xdb, 0x29, 0x9b, 0xb3, 0x36, 0xd2, 0x61, 0x5b, 0xdf, 0x07, + 0xf2, 0x53, 0x46, 0x72, 0x18, 0x42, 0x59, 0xb5, 0x4f, 0x0f, 0x84, 0x80, 0x2f, 0xc7, 0x2a, 0xb1, + 0x40, 0x08, 0xad, 0xf1, 0xd8, 0x67, 0x7c, 0x91, 0x4b, 0x3f, 0x8a, 0xe5, 0x83, 0x26, 0xfe, 0x88, + 0xe7, 0x3f, 0xc6, 0x7f, 0xc9, 0x40, 0x81, 0x47, 0x65, 0x78, 0x1b, 0x96, 0x39, 0xbd, 0x72, 0x5d, + 0x16, 0x0e, 0x27, 0x5c, 0x88, 0x1a, 0x0a, 0xaf, 0x65, 0xb6, 0x2d, 0xb4, 0x48, 0x35, 0x91, 0x18, + 0xa1, 0x45, 0xab, 0xb9, 0x03, 0x65, 0x55, 0xb5, 0xb6, 0x74, 0x4a, 0xb2, 0x66, 0xf2, 0x3a, 0xe4, + 0xcf, 0xbd, 0x99, 0x54, 0xe3, 0x41, 0x34, 0x92, 0x26, 0xc2, 0xa3, 0xb6, 0xb0, 0x3a, 0xa2, 0x67, + 0x49, 0x39, 0xd1, 0x16, 0x56, 0x89, 0x7c, 0xab, 0x9e, 0xe8, 0xe3, 0x52, 0x4a, 0x1f, 0x8f, 0x61, + 0x99, 0xf1, 0x01, 0xcd, 0xeb, 0xe5, 0xfa, 0x43, 0xf3, 0xdb, 0x4c, 0x5c, 0x1f, 0x4d, 0xe6, 0x63, + 0xaa, 0x2b, 0x52, 0xd1, 0x0f, 0x55, 0xc0, 0xe5, 0x35, 0xc9, 0xf8, 0xdd, 0x0c, 0xe7, 0x2f, 0xac, + 0x5c, 0x72, 0x0f, 0xf2, 0xae, 0xf4, 0x90, 0x89, 0x84, 0x72, 0xf5, 0x84, 0x8f, 0xd1, 0x99, 0x48, + 0xc1, 0xa6, 0x0e, 0xfd, 0x4a, 0xf4, 0xd2, 0x6b, 0x66, 0xc5, 0x9d, 0x4f, 0x95, 0x1e, 0xf2, 0x5b, + 0xb2, 0x5b, 0x09, 0x1d, 0x1e, 0xef, 0xbd, 0xda, 0xa6, 0xdb, 0x9a, 0x43, 0x6b, 0x3e, 0x76, 0x62, + 0x4a, 0x91, 0x7e, 0x7c, 0x46, 0x35, 0x47, 0xd6, 0xdf, 0xcf, 0x42, 0x2d, 0xd6, 0x22, 0xf4, 0xe8, + 0x65, 0x07, 0x00, 0xb7, 0x33, 0x8a, 0xf9, 0x46, 0xc7, 0x49, 0x71, 0xeb, 0xd2, 0xc6, 0x29, 0x1b, + 0x1b, 0x27, 0xe5, 0xe2, 0x96, 0xd3, 0x5d, 0xdc, 0x1e, 0x40, 0x39, 0x8a, 0x50, 0x14, 0x6f, 0x12, + 0xab, 0x4f, 0x3e, 0x64, 0x8c, 0x88, 0x22, 0xa7, 0xb8, 0x82, 0xee, 0x14, 0xf7, 0x5d, 0xcd, 0x87, + 0x6a, 0x09, 0x8b, 0x31, 0xd2, 0x46, 0xf4, 0x67, 0xe2, 0x41, 0x65, 0x3c, 0x86, 0x8a, 0xd6, 0x78, + 0xdd, 0x0f, 0x29, 0x13, 0xf3, 0x43, 0x52, 0x4f, 0x9a, 0xb3, 0xd1, 0x93, 0x66, 0xe3, 0xd7, 0xb3, + 0x50, 0x63, 0xfb, 0xcb, 0x71, 0xcf, 0x8e, 0xbc, 0x89, 0x33, 0x42, 0xbb, 0xa3, 0xda, 0x61, 0x42, + 0xd0, 0x92, 0xfb, 0x4c, 0x6c, 0x31, 0x2e, 0x67, 0xe9, 0x61, 0x33, 0x38, 0x93, 0x56, 0x61, 0x33, + 0x0c, 0xa8, 0x31, 0xc6, 0x88, 0x16, 0xc4, 0x28, 0xce, 0x91, 0x59, 0x39, 0xa5, 0x74, 0xc7, 0x0e, + 0x38, 0x87, 0x7c, 0x1f, 0x56, 0x19, 0x0d, 0x3e, 0x8a, 0x9f, 0x3a, 0x93, 0x89, 0x13, 0xbd, 0x03, + 0xcc, 0x99, 0x8d, 0x53, 0x4a, 0x4d, 0x3b, 0xa4, 0x87, 0x0c, 0x21, 0xc2, 0x22, 0x95, 0xc6, 0x4e, + 0x60, 0x9f, 0x44, 0x7e, 0xd7, 0x2a, 0x2d, 0x0d, 0xf3, 0x91, 0xef, 0xc3, 0x92, 0x78, 0x22, 0xc8, + 0x2d, 0xf7, 0x98, 0x3f, 0xb1, 0x92, 0x8a, 0xc9, 0x95, 0x64, 0xfc, 0x93, 0x2c, 0x54, 0xb4, 0x65, + 0xf9, 0x2a, 0xa7, 0xeb, 0xed, 0x05, 0x3b, 0x71, 0x59, 0x37, 0x09, 0xbf, 0x19, 0xaf, 0x32, 0xa7, + 0x1e, 0x8b, 0xe9, 0x0b, 0xf8, 0x16, 0x94, 0xd9, 0xae, 0xfb, 0x10, 0xf5, 0xe9, 0x22, 0x2c, 0x19, + 0x02, 0x8e, 0xe6, 0x27, 0x12, 0xf9, 0x10, 0x91, 0x85, 0x08, 0xf9, 0x90, 0x21, 0x5f, 0xf4, 0x58, + 0xe4, 0x53, 0xa8, 0x8a, 0x52, 0x71, 0x4e, 0xc5, 0xb5, 0x60, 0x4d, 0x3b, 0xb9, 0xd5, 0x7c, 0x9b, + 0x15, 0x5e, 0x1d, 0x9f, 0x7c, 0x91, 0xf1, 0xa1, 0xcc, 0x58, 0x7a, 0x59, 0xc6, 0x87, 0x3c, 0x61, + 0xec, 0xa9, 0xf7, 0x37, 0xe8, 0xbd, 0x28, 0xf9, 0xd8, 0x07, 0xb0, 0x2a, 0xd9, 0xd5, 0xdc, 0xb5, + 0x5d, 0xd7, 0x9b, 0xbb, 0x23, 0x2a, 0xdf, 0x22, 0x13, 0x81, 0x3a, 0x8e, 0x30, 0xc6, 0x58, 0x05, + 0xdb, 0xe0, 0x5e, 0x90, 0xf7, 0xa1, 0xc0, 0xe5, 0x72, 0x2e, 0x7c, 0xa4, 0x33, 0x2e, 0x4e, 0x42, + 0xee, 0x41, 0x81, 0x8b, 0xe7, 0xd9, 0x6b, 0x99, 0x0d, 0x27, 0x30, 0x5a, 0x40, 0x58, 0xc6, 0x43, + 0x1a, 0xfa, 0xce, 0x28, 0x88, 0x9e, 0x39, 0x17, 0xc2, 0xab, 0x99, 0xa8, 0x2b, 0x52, 0xc3, 0x47, + 0x94, 0xa8, 0x70, 0xe0, 0x34, 0xec, 0x60, 0x5a, 0x8d, 0x95, 0x21, 0xc4, 0xa5, 0x09, 0x6c, 0x9c, + 0xd0, 0xf0, 0x39, 0xa5, 0xae, 0xcb, 0x84, 0xa1, 0x11, 0x75, 0x43, 0xdf, 0x9e, 0xb0, 0x49, 0xe2, + 0x3d, 0x78, 0xb4, 0x50, 0x6a, 0xa4, 0xd0, 0xda, 0x89, 0x32, 0xb6, 0x55, 0x3e, 0xce, 0x3b, 0xd6, + 0x4f, 0xd2, 0x70, 0x5b, 0xbf, 0x08, 0x5b, 0xd7, 0x67, 0x4a, 0x09, 0x96, 0x70, 0x2f, 0xce, 0x55, + 0x94, 0x51, 0x77, 0xe2, 0xd9, 0x21, 0x6f, 0x8d, 0xce, 0x59, 0x7a, 0x50, 0xd1, 0x30, 0xd1, 0xd9, + 0x9f, 0x41, 0xe1, 0x8e, 0x27, 0xd8, 0x89, 0xe4, 0x7a, 0xfe, 0x14, 0x8d, 0xa8, 0x63, 0x2b, 0x2a, + 0x3d, 0x63, 0x2e, 0x47, 0x70, 0xf4, 0xbb, 0x31, 0xb6, 0x61, 0x19, 0x25, 0x7b, 0xed, 0xa0, 0x7b, + 0x91, 0x30, 0x68, 0xac, 0x01, 0xe9, 0x71, 0xde, 0xa5, 0x7b, 0x84, 0xfe, 0xbb, 0x1c, 0x54, 0x34, + 0x30, 0x3b, 0x8d, 0xd0, 0x8d, 0xd6, 0x1a, 0x3b, 0xf6, 0x94, 0x4a, 0x8b, 0x75, 0xcd, 0xac, 0x21, + 0x74, 0x57, 0x00, 0xd9, 0x59, 0x6c, 0x5f, 0x9c, 0x59, 0xde, 0x3c, 0xb4, 0xc6, 0xf4, 0xcc, 0xa7, + 0xb2, 0x95, 0x55, 0xfb, 0xe2, 0xac, 0x3f, 0x0f, 0x77, 0x11, 0x26, 0xa3, 0xcb, 0x68, 0x54, 0x39, + 0x15, 0x5d, 0x26, 0xa2, 0x12, 0xee, 0xc7, 0x7c, 0x65, 0xe6, 0x95, 0xfb, 0x31, 0xbf, 0x2d, 0x26, + 0x0f, 0xd0, 0xc2, 0xe2, 0x01, 0xfa, 0x31, 0x6c, 0xf0, 0x03, 0x54, 0xb0, 0x66, 0x2b, 0xb1, 0x93, + 0xd7, 0x10, 0x2b, 0x3a, 0xa9, 0x89, 0xbd, 0x0d, 0xd6, 0x03, 0xc9, 0x96, 0x02, 0xe7, 0xc7, 0x9c, + 0x91, 0x65, 0x4c, 0xd6, 0x33, 0x51, 0xf8, 0xc0, 0xf9, 0x31, 0x95, 0xd1, 0x6d, 0x62, 0x94, 0xe2, + 0x29, 0xd8, 0xd4, 0x71, 0x93, 0x94, 0xf6, 0x65, 0x9c, 0xb2, 0x2c, 0x28, 0xed, 0x4b, 0x9d, 0xf2, + 0x11, 0x6c, 0x4e, 0xe9, 0xd8, 0xb1, 0xe3, 0xc5, 0x5a, 0x91, 0xe0, 0xb6, 0xc6, 0xd1, 0x5a, 0x9e, + 0x01, 0xbf, 0xb8, 0xb3, 0xd1, 0xf8, 0xb1, 0x37, 0x3d, 0x71, 0xb8, 0xcc, 0xc2, 0x3d, 0xca, 0xf2, + 0x66, 0xdd, 0x9d, 0x4f, 0x7f, 0x01, 0xc1, 0x2c, 0x4b, 0x60, 0xd4, 0xa0, 0x32, 0x08, 0xbd, 0x99, + 0x9c, 0xe6, 0x3a, 0x54, 0x79, 0x52, 0x3c, 0xe3, 0xbf, 0x05, 0x37, 0x91, 0x25, 0x0c, 0xbd, 0x99, + 0x37, 0xf1, 0xce, 0xae, 0x62, 0x4a, 0xd9, 0x7f, 0x99, 0x81, 0xd5, 0x18, 0x56, 0xb0, 0xd7, 0x8f, + 0x39, 0x3f, 0x53, 0x4f, 0x80, 0x33, 0xb1, 0xf7, 0x5f, 0x6c, 0xbe, 0x38, 0x21, 0x67, 0x66, 0xf2, + 0x59, 0x70, 0x2b, 0x0a, 0x1d, 0x25, 0x33, 0x72, 0x96, 0xd2, 0x5c, 0x64, 0x29, 0x22, 0xbf, 0x0c, + 0x2a, 0x25, 0x8b, 0xf8, 0x39, 0xf1, 0x5c, 0x6f, 0x2c, 0xba, 0x9c, 0x8b, 0x3f, 0xe8, 0xd1, 0x15, + 0xb8, 0xb2, 0x05, 0x91, 0x56, 0x37, 0x30, 0xfe, 0x4e, 0x06, 0x20, 0x6a, 0x1d, 0x3e, 0x29, 0x52, + 0x72, 0x4b, 0x06, 0x9d, 0xb9, 0x35, 0x19, 0xe5, 0x0d, 0xa8, 0x2a, 0xbf, 0xff, 0x48, 0x12, 0xaa, + 0x48, 0x18, 0x13, 0x87, 0xde, 0x81, 0xe5, 0xb3, 0x89, 0x77, 0x82, 0x12, 0xab, 0x90, 0x5b, 0xb8, + 0x4b, 0x48, 0x9d, 0x83, 0xa5, 0x34, 0x12, 0xc9, 0x4d, 0xf9, 0xd4, 0xa7, 0x01, 0xba, 0x14, 0x64, + 0xfc, 0xa5, 0xac, 0x72, 0x2e, 0x8e, 0x46, 0xe2, 0xc5, 0xd7, 0xbb, 0x9f, 0xc4, 0xb5, 0xea, 0x45, + 0xb6, 0xe2, 0xc7, 0x50, 0xf7, 0xf9, 0xa1, 0x24, 0x4f, 0xac, 0xfc, 0x0b, 0x4e, 0xac, 0x9a, 0x1f, + 0x93, 0x74, 0xbe, 0x0d, 0x0d, 0x7b, 0x7c, 0x41, 0xfd, 0xd0, 0x41, 0xd3, 0x0b, 0xca, 0xc7, 0xc2, + 0x9d, 0x57, 0x83, 0xa3, 0x20, 0xfa, 0x0e, 0x2c, 0x8b, 0xd0, 0x12, 0x8a, 0x52, 0xc4, 0x28, 0x8c, + 0xc0, 0x8c, 0xd0, 0xf8, 0x07, 0xd2, 0x9b, 0x39, 0x3e, 0xbb, 0x2f, 0x1e, 0x15, 0xbd, 0x87, 0xd9, + 0x45, 0x6b, 0xb8, 0x58, 0x48, 0xc2, 0xa2, 0x23, 0xf8, 0x11, 0x07, 0x0a, 0x7b, 0x4e, 0x7c, 0x58, + 0xf3, 0xaf, 0x32, 0xac, 0xc6, 0xbf, 0xce, 0x40, 0x71, 0xdf, 0x9b, 0xed, 0x3b, 0xfc, 0x4d, 0x0c, + 0x6e, 0x13, 0x65, 0x70, 0x5c, 0x62, 0x49, 0xf4, 0x03, 0x7b, 0xc1, 0xd3, 0xd8, 0x54, 0x31, 0xaf, + 0x16, 0x17, 0xf3, 0xbe, 0x0b, 0xb7, 0xd0, 0x9e, 0xeb, 0x7b, 0x33, 0xcf, 0x67, 0x5b, 0xd5, 0x9e, + 0x70, 0x71, 0xcf, 0x73, 0xc3, 0x73, 0xc9, 0x3b, 0x6f, 0x9e, 0x52, 0x7a, 0xa4, 0x51, 0x1c, 0x2a, + 0x02, 0x7c, 0x16, 0x3f, 0x09, 0x2f, 0x2c, 0x7e, 0x43, 0x17, 0xf2, 0x28, 0xe7, 0xa8, 0xcb, 0x0c, + 0xd1, 0x41, 0x38, 0x4a, 0xa4, 0xc6, 0x67, 0x50, 0x56, 0xca, 0x1e, 0xf2, 0x2e, 0x94, 0xcf, 0xbd, + 0x99, 0xd0, 0x08, 0x65, 0x62, 0xcf, 0x87, 0x45, 0xaf, 0xcd, 0xd2, 0x39, 0xff, 0x11, 0x18, 0xff, + 0xa7, 0x08, 0xc5, 0xae, 0x7b, 0xe1, 0x39, 0x23, 0xf4, 0x87, 0x9e, 0xd2, 0xa9, 0x27, 0x23, 0xdf, + 0xb0, 0xdf, 0xe8, 0xaa, 0x17, 0x45, 0x1a, 0xcc, 0x09, 0x57, 0x3d, 0x15, 0x63, 0x70, 0x1d, 0x96, + 0x7c, 0x3d, 0x54, 0x60, 0xc1, 0xc7, 0x57, 0x24, 0xea, 0xbc, 0x2c, 0x68, 0x91, 0x89, 0x58, 0x59, + 0xdc, 0x55, 0x15, 0x87, 0x8c, 0x3f, 0x6d, 0x2f, 0x23, 0x04, 0x07, 0xec, 0x35, 0x28, 0x0a, 0xbd, + 0x2f, 0x7f, 0x3b, 0xc8, 0xb5, 0xe5, 0x02, 0x84, 0xab, 0xc1, 0xa7, 0xdc, 0x1e, 0xaf, 0x04, 0xd9, + 0x9c, 0x59, 0x95, 0xc0, 0x5d, 0xb6, 0xd6, 0xee, 0x40, 0x85, 0xd3, 0x73, 0x92, 0x92, 0x70, 0x23, + 0x46, 0x10, 0x12, 0xa4, 0x44, 0xdc, 0x2c, 0xa7, 0x46, 0xdc, 0x44, 0x87, 0x77, 0xc5, 0x65, 0x79, + 0x17, 0x81, 0xc7, 0x59, 0xd4, 0xe0, 0x32, 0x8c, 0xad, 0xd0, 0xa9, 0xf0, 0xa8, 0x0f, 0x52, 0xa7, + 0xf2, 0x26, 0xd4, 0x4e, 0xed, 0xc9, 0xe4, 0xc4, 0x1e, 0x3d, 0xe3, 0xaa, 0x80, 0x2a, 0xd7, 0x7e, + 0x4a, 0x20, 0xea, 0x02, 0xee, 0x40, 0x45, 0x9b, 0x65, 0xf4, 0x11, 0xce, 0x9b, 0x10, 0xcd, 0x6f, + 0x52, 0xc3, 0x57, 0x7f, 0x05, 0x0d, 0x9f, 0xe6, 0x2b, 0xbd, 0x1c, 0xf7, 0x95, 0xbe, 0x85, 0xdc, + 0x54, 0x78, 0xa0, 0x36, 0x78, 0x50, 0x3f, 0x7b, 0x3c, 0xe6, 0x71, 0x58, 0xde, 0x80, 0xaa, 0x18, + 0x3c, 0x8e, 0x5f, 0xe1, 0x77, 0x09, 0x0e, 0xe3, 0x24, 0xb7, 0xb9, 0x9a, 0x7a, 0x66, 0x3b, 0x63, + 0x7c, 0xba, 0x23, 0x2c, 0x1a, 0xf6, 0x34, 0x3c, 0xb2, 0x1d, 0xf4, 0xbd, 0x93, 0x68, 0x3c, 0x1d, + 0x57, 0xf9, 0xf8, 0x0b, 0xf4, 0x80, 0xc7, 0x34, 0x51, 0x14, 0x53, 0x15, 0xb6, 0xc1, 0xac, 0x08, + 0x12, 0x5c, 0x07, 0x1f, 0xa2, 0xcb, 0x56, 0x48, 0x31, 0x30, 0x43, 0xfd, 0xe1, 0x2d, 0xe5, 0x49, + 0x82, 0xab, 0x54, 0xfe, 0xe7, 0x96, 0x4e, 0x4e, 0xc9, 0x84, 0x3b, 0x6e, 0x70, 0xdd, 0x88, 0xc9, + 0xbf, 0x82, 0x14, 0x0d, 0xae, 0x9c, 0x80, 0x7c, 0xa6, 0xdd, 0x5f, 0x9b, 0x48, 0xfc, 0x5a, 0xa2, + 0xfc, 0xeb, 0xde, 0x46, 0xde, 0x06, 0x70, 0x02, 0x76, 0xca, 0x04, 0xd4, 0x1d, 0x63, 0x7c, 0x85, + 0x92, 0x59, 0x76, 0x82, 0xa7, 0x1c, 0xb0, 0xa0, 0xf7, 0xd9, 0x5a, 0xd0, 0xfb, 0x7c, 0xb3, 0x77, + 0xdf, 0x16, 0x54, 0xf5, 0x91, 0x20, 0x25, 0xc8, 0xf7, 0x8f, 0x3a, 0xbd, 0xc6, 0x0d, 0x52, 0x81, + 0xe2, 0xa0, 0x33, 0x1c, 0x1e, 0xa0, 0x65, 0xb7, 0x0a, 0x25, 0xf5, 0xc0, 0x3a, 0xcb, 0x52, 0xad, + 0x76, 0xbb, 0x73, 0x34, 0xec, 0xec, 0x36, 0x72, 0x3f, 0xc8, 0x97, 0xb2, 0x8d, 0x9c, 0xf1, 0x47, + 0x39, 0xa8, 0x68, 0x03, 0xf5, 0x62, 0x7e, 0x1d, 0x0f, 0xe5, 0x93, 0x4d, 0x86, 0xf2, 0xd1, 0xcd, + 0x18, 0x22, 0xdc, 0x91, 0x34, 0x63, 0xbc, 0x09, 0x35, 0x11, 0x72, 0x50, 0xb3, 0xcf, 0x17, 0xcc, + 0x2a, 0x07, 0x0a, 0x6e, 0x8e, 0xe1, 0x1a, 0x90, 0x08, 0x1f, 0xc2, 0x8a, 0x60, 0x61, 0x1c, 0x84, + 0x4f, 0x61, 0xf1, 0x1d, 0x73, 0xe0, 0x4d, 0x2e, 0x28, 0xa7, 0xe0, 0x42, 0x63, 0x45, 0xc0, 0x86, + 0x22, 0x14, 0x86, 0x60, 0x99, 0x5a, 0xbc, 0x80, 0x82, 0x59, 0xe5, 0x40, 0x51, 0xd1, 0xfb, 0x72, + 0x8d, 0x71, 0x6f, 0xa5, 0xcd, 0xc5, 0x05, 0x13, 0x5b, 0x5f, 0x07, 0x0b, 0x9a, 0xc6, 0x32, 0xae, + 0x9d, 0x6f, 0x2d, 0xe6, 0x7b, 0xb9, 0xc6, 0x91, 0xbc, 0x0b, 0x64, 0x3a, 0x9b, 0x59, 0x29, 0x3a, + 0xc0, 0xbc, 0xb9, 0x3c, 0x9d, 0xcd, 0x86, 0x9a, 0x8a, 0xec, 0x1b, 0x50, 0x4f, 0xfe, 0x56, 0x06, + 0x48, 0x8b, 0x6d, 0x72, 0x6c, 0xa3, 0xba, 0xae, 0x45, 0xac, 0x3b, 0xa3, 0xb3, 0xee, 0x14, 0x0e, + 0x99, 0x4d, 0xe5, 0x90, 0x2f, 0xe3, 0x25, 0xb1, 0xdd, 0xb0, 0xb2, 0xb0, 0x1b, 0x8c, 0x3d, 0xa8, + 0x1c, 0x69, 0xd1, 0x61, 0xef, 0xb2, 0x83, 0x46, 0xc6, 0x85, 0xe5, 0x47, 0x10, 0x57, 0x4d, 0xfa, + 0x22, 0x1c, 0xac, 0xd6, 0xe0, 0xac, 0xd6, 0x60, 0xe3, 0x6f, 0x65, 0x78, 0x70, 0x36, 0xd5, 0xbf, + 0x28, 0x20, 0xad, 0xb4, 0xf0, 0x45, 0xa1, 0x3f, 0x2a, 0xd2, 0x86, 0x27, 0xa2, 0x76, 0x60, 0xeb, + 0x2d, 0xef, 0xf4, 0x34, 0xa0, 0xd2, 0xef, 0xa7, 0x82, 0xb0, 0x3e, 0x82, 0xa4, 0x0c, 0xcf, 0x2e, + 0x0a, 0x0e, 0x2f, 0x3f, 0x10, 0xce, 0x3e, 0x4c, 0x86, 0x3f, 0xb4, 0x2f, 0x45, 0xad, 0x01, 0x93, + 0x64, 0x84, 0x99, 0x41, 0x3e, 0x7d, 0x57, 0x69, 0xe3, 0xaf, 0x8b, 0xe8, 0x24, 0xc9, 0x29, 0xb8, + 0x0f, 0x25, 0x55, 0x6a, 0xfc, 0xa0, 0x96, 0x94, 0x0a, 0xcf, 0xc4, 0x01, 0xd4, 0xa9, 0xc4, 0x5a, + 0xcc, 0x37, 0x20, 0x9a, 0x8a, 0xba, 0x5a, 0xab, 0xdf, 0x03, 0x72, 0xea, 0xf8, 0x49, 0x62, 0xbe, + 0x21, 0x1b, 0x88, 0xd1, 0xa8, 0x8d, 0x63, 0x58, 0x95, 0x9c, 0x44, 0xbb, 0x58, 0xc4, 0xe7, 0x37, + 0xf3, 0x92, 0xb3, 0x22, 0xbb, 0x70, 0x56, 0x18, 0xbf, 0x51, 0x80, 0xa2, 0x8c, 0xb4, 0x9c, 0x16, + 0x1d, 0xb8, 0x1c, 0x8f, 0x0e, 0xdc, 0x8c, 0x05, 0x33, 0xc4, 0xa9, 0x17, 0x62, 0xc3, 0x3b, 0xc9, + 0x93, 0x5f, 0x33, 0x79, 0xc4, 0x4e, 0x7f, 0x61, 0xf2, 0x28, 0xc4, 0x4d, 0x1e, 0x69, 0x11, 0x93, + 0xb9, 0x04, 0xbb, 0x10, 0x31, 0xf9, 0x16, 0x70, 0x71, 0x44, 0x73, 0x78, 0x2c, 0x21, 0x40, 0x84, + 0x6f, 0xd0, 0xa4, 0x97, 0x52, 0x52, 0x7a, 0x79, 0x65, 0xc9, 0xe2, 0x63, 0x58, 0xe2, 0x91, 0x8e, + 0xc4, 0x53, 0x7e, 0x79, 0xfe, 0x88, 0xb1, 0x92, 0xff, 0xf9, 0x3b, 0x1a, 0x53, 0xd0, 0xea, 0x11, + 0x36, 0x2b, 0xb1, 0x08, 0x9b, 0xba, 0x29, 0xa6, 0x1a, 0x37, 0xc5, 0xdc, 0x83, 0x86, 0x1a, 0x38, + 0x54, 0x6c, 0xba, 0x81, 0x78, 0xc6, 0x5b, 0x97, 0x70, 0xc6, 0x31, 0x7b, 0x41, 0x74, 0x7e, 0xd6, + 0x63, 0xe7, 0x27, 0xe3, 0x67, 0xad, 0x30, 0xa4, 0xd3, 0x59, 0x28, 0xcf, 0x4f, 0x2d, 0x48, 0x35, + 0x9f, 0x79, 0xfe, 0xce, 0x48, 0x4e, 0x2f, 0x5f, 0x1d, 0x3b, 0x50, 0x3f, 0xb5, 0x9d, 0xc9, 0xdc, + 0xa7, 0x96, 0x4f, 0xed, 0xc0, 0x73, 0x91, 0x3f, 0x44, 0x47, 0xb9, 0xe8, 0xe2, 0x1e, 0xa7, 0x31, + 0x91, 0xc4, 0xac, 0x9d, 0xea, 0x49, 0x7c, 0xad, 0xa7, 0x8f, 0x04, 0x3b, 0xd6, 0xc4, 0x83, 0x7e, + 0xee, 0xbf, 0xd4, 0xed, 0x59, 0x7b, 0x07, 0xdd, 0x27, 0xfb, 0xc3, 0x46, 0x86, 0x25, 0x07, 0xc7, + 0xed, 0x76, 0xa7, 0xb3, 0x8b, 0xc7, 0x1c, 0xc0, 0xd2, 0x5e, 0xab, 0x7b, 0x20, 0x0e, 0xb9, 0x7c, + 0xa3, 0x60, 0xfc, 0xe3, 0x2c, 0x54, 0xb4, 0xde, 0x90, 0x47, 0x6a, 0x12, 0x78, 0x08, 0x91, 0xdb, + 0x8b, 0x3d, 0xde, 0x96, 0xa7, 0x80, 0x36, 0x0b, 0x2a, 0x1c, 0x75, 0xf6, 0xda, 0x70, 0xd4, 0xe4, + 0x6d, 0x58, 0xb6, 0x79, 0x09, 0x6a, 0xd0, 0x85, 0x8d, 0x40, 0x80, 0xc5, 0x98, 0xbf, 0x2d, 0xc2, + 0x99, 0x88, 0xa3, 0x8c, 0xd1, 0xe5, 0xa5, 0x23, 0xaf, 0x3a, 0xcd, 0x70, 0x6e, 0x8a, 0x62, 0x64, + 0x84, 0x4d, 0x5f, 0x09, 0x05, 0x62, 0xbc, 0x24, 0x9a, 0x3f, 0xe1, 0xd5, 0x56, 0x78, 0xd5, 0x54, + 0x69, 0xe3, 0x13, 0x80, 0xa8, 0x3f, 0xf1, 0xe1, 0xbb, 0x11, 0x1f, 0xbe, 0x8c, 0x36, 0x7c, 0x59, + 0xe3, 0xef, 0x0b, 0xd6, 0x25, 0xe6, 0x42, 0x69, 0x0c, 0xdf, 0x07, 0xa9, 0xc3, 0xb4, 0xd0, 0xf1, + 0x7f, 0x36, 0xa1, 0xa1, 0x7c, 0x85, 0xbc, 0x22, 0x30, 0x5d, 0x85, 0x58, 0x60, 0xb5, 0xd9, 0x45, + 0x56, 0xfb, 0x06, 0x54, 0x31, 0x3e, 0x9e, 0xa8, 0x48, 0xb0, 0xab, 0xca, 0xd4, 0xbe, 0x94, 0x75, + 0xc7, 0x78, 0x6c, 0x3e, 0xc1, 0x63, 0xff, 0x46, 0x86, 0x07, 0x53, 0x8a, 0x1a, 0x1a, 0x31, 0x59, + 0x55, 0x66, 0x9c, 0xc9, 0x0a, 0x52, 0x53, 0xe1, 0xaf, 0x61, 0x9c, 0xd9, 0x74, 0xc6, 0x99, 0xce, + 0x92, 0x73, 0xa9, 0x2c, 0xd9, 0xd8, 0x82, 0xe6, 0x2e, 0x65, 0x43, 0xd1, 0x9a, 0x4c, 0x12, 0x63, + 0x69, 0xdc, 0x82, 0x9b, 0x29, 0x38, 0xa1, 0xfc, 0xf9, 0xcd, 0x0c, 0xac, 0xb7, 0x78, 0x0c, 0x95, + 0x6f, 0xec, 0x99, 0xf0, 0xe7, 0x70, 0x53, 0x79, 0xf1, 0x6b, 0xaf, 0x0f, 0xf5, 0x00, 0x58, 0xf2, + 0x01, 0x80, 0xf6, 0x76, 0x85, 0x9d, 0x99, 0x46, 0x13, 0x36, 0x92, 0xad, 0x11, 0x0d, 0xdd, 0x83, + 0x95, 0x5d, 0x7a, 0x32, 0x3f, 0x3b, 0xa0, 0x17, 0x51, 0x1b, 0x09, 0xe4, 0x83, 0x73, 0xef, 0xb9, + 0x58, 0x18, 0xf8, 0x1b, 0xdd, 0x7c, 0x19, 0x8d, 0x15, 0xcc, 0xe8, 0x48, 0x1a, 0x0f, 0x10, 0x32, + 0x98, 0xd1, 0x91, 0xf1, 0x08, 0x88, 0x5e, 0x8e, 0x98, 0x45, 0x76, 0xb3, 0x9b, 0x9f, 0x58, 0xc1, + 0x55, 0x10, 0xd2, 0xa9, 0x7c, 0x59, 0x0b, 0xc1, 0xfc, 0x64, 0xc0, 0x21, 0xc6, 0x3b, 0x50, 0x3d, + 0xb2, 0xaf, 0x4c, 0xfa, 0x23, 0xf1, 0x80, 0x75, 0x13, 0x8a, 0x33, 0xfb, 0x8a, 0xf1, 0x62, 0x65, + 0x47, 0x44, 0xb4, 0xf1, 0x0f, 0xf3, 0xb0, 0xc4, 0x29, 0xc9, 0x5d, 0xfe, 0xa1, 0x08, 0xc7, 0x45, + 0x5e, 0x28, 0x4f, 0x25, 0x0d, 0xb4, 0x70, 0x70, 0x65, 0x17, 0x0f, 0x2e, 0xa1, 0xf4, 0x94, 0x01, + 0xfa, 0xa4, 0xc5, 0xc7, 0x9d, 0x4f, 0x65, 0x54, 0xbe, 0x78, 0x08, 0x91, 0x7c, 0xf4, 0x81, 0x11, + 0x1e, 0x3e, 0x21, 0x6e, 0x93, 0x8f, 0xee, 0x8f, 0xbc, 0x75, 0xf2, 0x3c, 0x16, 0x67, 0x96, 0x0e, + 0x4a, 0xbd, 0xa4, 0x16, 0xe5, 0xab, 0xec, 0xf8, 0x25, 0x75, 0xe1, 0x32, 0x5a, 0x7a, 0xf9, 0x65, + 0x94, 0x6b, 0x43, 0x5f, 0x70, 0x19, 0x85, 0x57, 0xb8, 0x8c, 0xbe, 0x82, 0x3d, 0xfc, 0x26, 0x94, + 0x50, 0xc8, 0xd2, 0x8e, 0x30, 0x26, 0x5c, 0xb1, 0x23, 0xec, 0x53, 0xed, 0xba, 0xc6, 0x9d, 0x71, + 0xb4, 0x33, 0xc4, 0xa4, 0x3f, 0xfa, 0xd9, 0xd8, 0x19, 0xbf, 0x82, 0xa2, 0x80, 0xb2, 0x05, 0xed, + 0xda, 0x53, 0x19, 0x86, 0x16, 0x7f, 0xb3, 0x61, 0xc3, 0xc0, 0x8c, 0x3f, 0x9a, 0x3b, 0x3e, 0x1d, + 0xcb, 0xf0, 0x70, 0x0e, 0xee, 0x6f, 0x06, 0x61, 0x1d, 0x64, 0x57, 0x47, 0x57, 0x86, 0x91, 0x2f, + 0x99, 0x45, 0x27, 0x78, 0xca, 0x92, 0x06, 0x81, 0x06, 0x06, 0xd2, 0x9e, 0x79, 0xbe, 0x94, 0x10, + 0x8c, 0xdf, 0xcb, 0x40, 0x43, 0xec, 0x2e, 0x85, 0xd3, 0xaf, 0x65, 0x85, 0xeb, 0x7c, 0x47, 0x5e, + 0x1c, 0xec, 0xcd, 0x80, 0x1a, 0x2a, 0xac, 0x94, 0xb8, 0xc0, 0x15, 0x6e, 0x15, 0x06, 0xdc, 0x13, + 0x22, 0xc3, 0xeb, 0x50, 0x91, 0x8f, 0x10, 0xa6, 0xce, 0x44, 0x7e, 0x4b, 0x88, 0xbf, 0x42, 0x38, + 0x74, 0x26, 0x52, 0xda, 0xf0, 0x6d, 0x11, 0x25, 0x20, 0x83, 0xd2, 0x86, 0x69, 0x87, 0xd4, 0xf8, + 0x47, 0x19, 0x58, 0xd1, 0xba, 0x22, 0xf6, 0xed, 0x77, 0xa0, 0xaa, 0xc2, 0xfb, 0x53, 0x25, 0xe6, + 0x6e, 0xc6, 0x79, 0x54, 0x94, 0xad, 0x32, 0x52, 0x90, 0x80, 0x35, 0x66, 0x6c, 0x5f, 0x71, 0x4f, + 0xf9, 0xf9, 0x54, 0xde, 0x36, 0xc7, 0xf6, 0xd5, 0x1e, 0xa5, 0x83, 0xf9, 0x94, 0xdc, 0x85, 0xea, + 0x73, 0x4a, 0x9f, 0x29, 0x02, 0xce, 0x7a, 0x81, 0xc1, 0x04, 0x85, 0x01, 0xb5, 0xa9, 0xe7, 0x86, + 0xe7, 0x8a, 0x44, 0x88, 0xf8, 0x08, 0xe4, 0x34, 0xc6, 0x1f, 0x66, 0x61, 0x95, 0xab, 0x45, 0x85, + 0x3a, 0x5a, 0xb0, 0xae, 0x26, 0x2c, 0x71, 0x0d, 0x31, 0x67, 0x5e, 0xfb, 0x37, 0x4c, 0x91, 0x26, + 0x1f, 0xbf, 0xa2, 0x2a, 0x57, 0x06, 0x22, 0xb8, 0x66, 0xf8, 0x73, 0x8b, 0xc3, 0x7f, 0xfd, 0xf0, + 0xa6, 0x19, 0xa7, 0x0b, 0x69, 0xc6, 0xe9, 0x57, 0x31, 0x09, 0x2f, 0x3c, 0x99, 0x2f, 0x2e, 0x46, + 0x96, 0x7d, 0x04, 0x9b, 0x31, 0x1a, 0xe4, 0xd6, 0xce, 0xa9, 0xa3, 0xc2, 0x96, 0xaf, 0x69, 0xd4, + 0x03, 0x89, 0xdb, 0x29, 0x42, 0x21, 0x18, 0x79, 0x33, 0x6a, 0x6c, 0xc0, 0x5a, 0x7c, 0x54, 0xc5, + 0x31, 0xf1, 0x3b, 0x19, 0x68, 0xee, 0x45, 0x21, 0x7a, 0x9d, 0x20, 0xf4, 0x7c, 0x15, 0xe9, 0xfd, + 0x36, 0x00, 0xff, 0xae, 0x11, 0x5e, 0xee, 0x45, 0xb0, 0x25, 0x84, 0xe0, 0xd5, 0xfe, 0x26, 0x94, + 0xa8, 0x3b, 0xe6, 0x48, 0xbe, 0x1a, 0x8a, 0xd4, 0x1d, 0x4b, 0xc5, 0xc0, 0xc2, 0x31, 0x5c, 0x8b, + 0x0b, 0x18, 0x22, 0x6c, 0x08, 0x1b, 0x1d, 0x7a, 0x81, 0xe2, 0x40, 0x5e, 0x85, 0x0d, 0x39, 0xb4, + 0x2f, 0xd1, 0xcb, 0x3a, 0x30, 0x7e, 0x2b, 0x0b, 0xcb, 0x51, 0xfb, 0x78, 0xe0, 0xa4, 0x17, 0x87, + 0x80, 0xba, 0x2b, 0x96, 0x83, 0xc3, 0x2e, 0x4b, 0x9a, 0xb2, 0xb8, 0xc4, 0x37, 0x67, 0xd7, 0x25, + 0x06, 0x54, 0x24, 0x85, 0x37, 0x0f, 0xb5, 0x68, 0xb8, 0x65, 0x4e, 0xd2, 0x9f, 0x87, 0xec, 0x76, + 0x6b, 0x4f, 0x99, 0x2c, 0x21, 0xee, 0x97, 0x05, 0x7b, 0x1a, 0x76, 0xf1, 0xe3, 0x59, 0x0c, 0xcc, + 0xb2, 0xf1, 0x89, 0x64, 0x54, 0x8c, 0xbe, 0xc1, 0x2f, 0x3b, 0x7c, 0xe6, 0xf0, 0xa2, 0xa3, 0xdf, + 0x04, 0xf8, 0xf7, 0x3e, 0xd4, 0x4d, 0xe0, 0x75, 0xa8, 0xf0, 0xc2, 0xa3, 0x08, 0x09, 0x18, 0x9a, + 0x2e, 0xec, 0xba, 0x88, 0x17, 0x8a, 0x3b, 0x6f, 0x1e, 0xd3, 0x45, 0x00, 0xaf, 0x0a, 0x3d, 0x75, + 0x7e, 0x33, 0x03, 0x37, 0x53, 0xa6, 0x4d, 0xec, 0xf2, 0x36, 0x68, 0x81, 0x9a, 0xe5, 0xe8, 0xf2, + 0xad, 0xbe, 0x21, 0xd9, 0x6a, 0x7c, 0x4c, 0xcd, 0xc6, 0x69, 0x1c, 0x10, 0xdd, 0x70, 0xf9, 0x0c, + 0xc6, 0xe2, 0x6f, 0xa0, 0x38, 0xc5, 0xa7, 0x91, 0x5f, 0x2e, 0x8f, 0x60, 0xab, 0x73, 0xc9, 0x38, + 0x86, 0xf2, 0xbc, 0x1e, 0x3d, 0x9b, 0x4b, 0x03, 0x5a, 0xc2, 0x28, 0x90, 0x79, 0x25, 0xa3, 0xc0, + 0x98, 0xbf, 0x8e, 0x57, 0x65, 0xfd, 0x24, 0x85, 0xe0, 0x01, 0xca, 0xf2, 0x9c, 0x60, 0x11, 0x32, + 0x10, 0x07, 0x03, 0xf1, 0x42, 0x8d, 0x00, 0x96, 0x0f, 0xe7, 0x93, 0xd0, 0x69, 0x2b, 0x10, 0xf9, + 0x58, 0xe4, 0xc1, 0x7a, 0xe4, 0xa8, 0xa5, 0x56, 0x04, 0xaa, 0x22, 0x1c, 0xac, 0x29, 0x2b, 0xc8, + 0x5a, 0xac, 0x6f, 0x79, 0x1a, 0xaf, 0xc1, 0xb8, 0x09, 0x9b, 0x51, 0x8a, 0x0f, 0x9b, 0x3c, 0x6a, + 0xfe, 0x66, 0x86, 0x3f, 0xe9, 0xe0, 0xb8, 0x81, 0x6b, 0xcf, 0x82, 0x73, 0x2f, 0x24, 0x1d, 0x58, + 0x0d, 0x1c, 0xf7, 0x6c, 0x42, 0xf5, 0xe2, 0x03, 0x31, 0x08, 0xeb, 0xf1, 0xb6, 0xf1, 0xac, 0x81, + 0xb9, 0xc2, 0x73, 0x44, 0xa5, 0x05, 0x64, 0xe7, 0xba, 0x46, 0x46, 0xcb, 0x22, 0x31, 0x1a, 0x8b, + 0x8d, 0xef, 0x42, 0x3d, 0x5e, 0x11, 0xf9, 0x54, 0x04, 0x95, 0x88, 0x5a, 0x95, 0x4b, 0x3c, 0xa9, + 0x8f, 0x16, 0x44, 0x25, 0x1a, 0xfb, 0xc0, 0xf8, 0x8b, 0x19, 0x68, 0x9a, 0x94, 0xad, 0x5c, 0xad, + 0x95, 0x72, 0xcd, 0x7c, 0x67, 0xa1, 0xd4, 0xeb, 0xfb, 0x2a, 0x63, 0x55, 0xc8, 0x16, 0xbd, 0x77, + 0xed, 0x64, 0xec, 0xdf, 0x58, 0xe8, 0xd1, 0x4e, 0x09, 0x96, 0x38, 0x89, 0xb1, 0x09, 0xeb, 0xa2, + 0x3d, 0xb2, 0x2d, 0x91, 0xc5, 0x37, 0x56, 0x63, 0xcc, 0xe2, 0xbb, 0x05, 0x4d, 0xfe, 0xf6, 0x5b, + 0xef, 0x84, 0xc8, 0xb8, 0x0b, 0xe4, 0xd0, 0x1e, 0xd9, 0xbe, 0xe7, 0xb9, 0x47, 0xd4, 0x17, 0x3e, + 0xd5, 0x28, 0x61, 0xa2, 0x41, 0x54, 0x8a, 0xc2, 0x3c, 0x25, 0x63, 0x80, 0x7b, 0xae, 0x74, 0x21, + 0xe3, 0x29, 0xc3, 0x87, 0xd5, 0x1d, 0xfb, 0x19, 0x95, 0x25, 0xc9, 0x21, 0x7a, 0x0c, 0x95, 0x99, + 0x2a, 0x54, 0x8e, 0xbb, 0x8c, 0xc3, 0xb3, 0x58, 0xad, 0xa9, 0x53, 0x33, 0x16, 0xe4, 0x7b, 0x5e, + 0x88, 0xf1, 0x2c, 0xa4, 0x4d, 0xcd, 0x2c, 0x33, 0xd0, 0x53, 0x7a, 0xd5, 0x1d, 0x1b, 0x0f, 0x61, + 0x2d, 0x5e, 0xa7, 0x60, 0x2d, 0x5b, 0x50, 0x9a, 0x0a, 0x98, 0x68, 0xbd, 0x4a, 0xb3, 0xcb, 0x08, + 0xbb, 0xf2, 0xc9, 0x3c, 0xdd, 0x5d, 0x75, 0xa5, 0x7a, 0x0c, 0x9b, 0x0b, 0x18, 0x51, 0xe0, 0x5d, + 0xa8, 0x6a, 0x0d, 0xe1, 0xdd, 0xc8, 0x33, 0x91, 0x55, 0xb4, 0x24, 0x30, 0x3e, 0x87, 0x4d, 0x7e, + 0x1f, 0x8b, 0xb2, 0xcb, 0x21, 0x48, 0xf4, 0x22, 0x93, 0xec, 0xc5, 0xc7, 0xf2, 0x9a, 0xa7, 0x67, + 0x8d, 0xe2, 0xdb, 0x8d, 0x11, 0x27, 0xbd, 0x80, 0x64, 0xd2, 0x38, 0x86, 0x8d, 0xc5, 0xe1, 0x63, + 0xed, 0xff, 0xa9, 0x86, 0x5c, 0x0e, 0x4f, 0x84, 0x56, 0xc3, 0xf3, 0x5f, 0x33, 0x7c, 0x7c, 0x62, + 0x28, 0xd1, 0xcc, 0x31, 0x90, 0x29, 0x0d, 0xcf, 0xbd, 0xb1, 0xb5, 0x58, 0xf3, 0x23, 0xe5, 0x84, + 0x94, 0x9a, 0x77, 0xfb, 0x10, 0x33, 0x6a, 0x18, 0xe1, 0x0e, 0x3f, 0x4d, 0xc2, 0xb7, 0x46, 0xb0, + 0x91, 0x4e, 0x9c, 0xe2, 0xba, 0xf3, 0x51, 0x5c, 0x50, 0xbf, 0x7d, 0x6d, 0xf7, 0x59, 0xb3, 0x74, + 0xb9, 0xfd, 0xb7, 0x4b, 0x50, 0x14, 0x5a, 0x12, 0xb2, 0x0d, 0xf9, 0x91, 0x74, 0x03, 0x8d, 0x62, + 0x1c, 0x0a, 0xac, 0xfc, 0xdf, 0x46, 0x67, 0x50, 0x46, 0x47, 0x1e, 0x43, 0x3d, 0xee, 0x09, 0x91, + 0x88, 0x6d, 0x12, 0x77, 0x61, 0xa8, 0x8d, 0x12, 0x36, 0xef, 0x72, 0x24, 0x5c, 0x71, 0x99, 0xb3, + 0x74, 0xae, 0x49, 0x5f, 0x9e, 0xcb, 0xee, 0x6b, 0xc1, 0xb9, 0x6d, 0x3d, 0x7c, 0xf4, 0x89, 0x08, + 0x6e, 0x52, 0x41, 0xe0, 0xe0, 0xdc, 0x7e, 0xf8, 0xe8, 0x93, 0xe4, 0x4d, 0x4c, 0x84, 0x36, 0xd1, + 0x6e, 0x62, 0x6b, 0x50, 0xe0, 0x81, 0xd2, 0xb9, 0x3f, 0x1f, 0x4f, 0x90, 0x07, 0xb0, 0x26, 0x15, + 0x6f, 0xe2, 0xe5, 0x05, 0x3f, 0x45, 0xf9, 0x77, 0xa2, 0x88, 0xc0, 0x0d, 0x10, 0xc5, 0x55, 0x75, + 0x1b, 0xb0, 0x74, 0x1e, 0x45, 0xbe, 0xaf, 0x99, 0x22, 0x65, 0xfc, 0x61, 0x01, 0x2a, 0xda, 0xa0, + 0x90, 0x2a, 0x94, 0xcc, 0xce, 0xa0, 0x63, 0x7e, 0xd1, 0xd9, 0x6d, 0xdc, 0x20, 0xf7, 0xe0, 0xad, + 0x6e, 0xaf, 0xdd, 0x37, 0xcd, 0x4e, 0x7b, 0x68, 0xf5, 0x4d, 0x4b, 0x46, 0xda, 0x3c, 0x6a, 0x7d, + 0x75, 0xd8, 0xe9, 0x0d, 0xad, 0xdd, 0xce, 0xb0, 0xd5, 0x3d, 0x18, 0x34, 0x32, 0xe4, 0x35, 0x68, + 0x46, 0x94, 0x12, 0xdd, 0x3a, 0xec, 0x1f, 0xf7, 0x86, 0x8d, 0x2c, 0xb9, 0x03, 0xb7, 0xf6, 0xba, + 0xbd, 0xd6, 0x81, 0x15, 0xd1, 0xb4, 0x0f, 0x86, 0x5f, 0x58, 0x9d, 0x9f, 0x3f, 0xea, 0x9a, 0x5f, + 0x35, 0x72, 0x69, 0x04, 0xfb, 0xc3, 0x83, 0xb6, 0x2c, 0x21, 0x4f, 0x6e, 0xc2, 0x3a, 0x27, 0xe0, + 0x59, 0xac, 0x61, 0xbf, 0x6f, 0x0d, 0xfa, 0xfd, 0x5e, 0xa3, 0x40, 0x56, 0xa0, 0xd6, 0xed, 0x7d, + 0xd1, 0x3a, 0xe8, 0xee, 0x5a, 0x66, 0xa7, 0x75, 0x70, 0xd8, 0x58, 0x22, 0xab, 0xb0, 0x9c, 0xa4, + 0x2b, 0xb2, 0x22, 0x24, 0x5d, 0xbf, 0xd7, 0xed, 0xf7, 0xac, 0x2f, 0x3a, 0xe6, 0xa0, 0xdb, 0xef, + 0x35, 0x4a, 0x64, 0x03, 0x48, 0x1c, 0xb5, 0x7f, 0xd8, 0x6a, 0x37, 0xca, 0x64, 0x1d, 0x56, 0xe2, + 0xf0, 0xa7, 0x9d, 0xaf, 0x1a, 0x40, 0x9a, 0xb0, 0xc6, 0x1b, 0x66, 0xed, 0x74, 0x0e, 0xfa, 0x5f, + 0x5a, 0x87, 0xdd, 0x5e, 0xf7, 0xf0, 0xf8, 0xb0, 0x51, 0xc1, 0x78, 0xc7, 0x9d, 0x8e, 0xd5, 0xed, + 0x0d, 0x8e, 0xf7, 0xf6, 0xba, 0xed, 0x6e, 0xa7, 0x37, 0x6c, 0x54, 0x79, 0xcd, 0x69, 0x1d, 0xaf, + 0xb1, 0x0c, 0xe2, 0xad, 0x9d, 0xb5, 0xdb, 0x1d, 0xb4, 0x76, 0x0e, 0x3a, 0xbb, 0x8d, 0x3a, 0xb9, + 0x0d, 0x37, 0x87, 0x9d, 0xc3, 0xa3, 0xbe, 0xd9, 0x32, 0xbf, 0x92, 0x6f, 0xf1, 0xac, 0xbd, 0x56, + 0xf7, 0xe0, 0xd8, 0xec, 0x34, 0x96, 0xc9, 0x1b, 0x70, 0xdb, 0xec, 0xfc, 0xf0, 0xb8, 0x6b, 0x76, + 0x76, 0xad, 0x5e, 0x7f, 0xb7, 0x63, 0xed, 0x75, 0x5a, 0xc3, 0x63, 0xb3, 0x63, 0x1d, 0x76, 0x07, + 0x83, 0x6e, 0xef, 0x49, 0xa3, 0x41, 0xde, 0x82, 0xbb, 0x8a, 0x44, 0x15, 0x90, 0xa0, 0x5a, 0x61, + 0xfd, 0x93, 0x53, 0xda, 0xeb, 0xfc, 0xfc, 0xd0, 0x3a, 0xea, 0x74, 0xcc, 0x06, 0x21, 0x5b, 0xb0, + 0x11, 0x55, 0xcf, 0x2b, 0x10, 0x75, 0xaf, 0x32, 0xdc, 0x51, 0xc7, 0x3c, 0x6c, 0xf5, 0xd8, 0x04, + 0xc7, 0x70, 0x6b, 0xac, 0xd9, 0x11, 0x2e, 0xd9, 0xec, 0x75, 0x42, 0xa0, 0xae, 0xcd, 0xca, 0x5e, + 0xcb, 0x6c, 0x6c, 0x90, 0x65, 0xa8, 0x1c, 0x1e, 0x1d, 0x59, 0xc3, 0xee, 0x61, 0xa7, 0x7f, 0x3c, + 0x6c, 0x6c, 0x92, 0x75, 0x68, 0x74, 0x7b, 0xc3, 0x8e, 0xc9, 0xe6, 0x5a, 0x66, 0xfd, 0x6f, 0x45, + 0xb2, 0x06, 0xcb, 0xb2, 0xa5, 0x12, 0xfa, 0xc7, 0x45, 0xb2, 0x09, 0xe4, 0xb8, 0x67, 0x76, 0x5a, + 0xbb, 0x6c, 0xe0, 0x14, 0xe2, 0xbf, 0x17, 0x85, 0xc9, 0xf3, 0xf7, 0x72, 0x4a, 0xd8, 0x8b, 0xdc, + 0x8c, 0xe2, 0x9f, 0xaa, 0xa9, 0x6a, 0x9f, 0x98, 0x79, 0xd9, 0x17, 0x02, 0xb5, 0xab, 0x79, 0x6e, + 0xe1, 0x6a, 0xbe, 0xa0, 0xfb, 0xa9, 0xe9, 0x77, 0x87, 0x37, 0xa1, 0x36, 0xe5, 0x9f, 0xad, 0x11, + 0xdf, 0x3d, 0x00, 0xe1, 0x73, 0xc7, 0x81, 0xfc, 0xa3, 0x07, 0x0b, 0x9f, 0xc8, 0x2b, 0x2c, 0x7e, + 0x22, 0x2f, 0xed, 0x7e, 0xb8, 0x94, 0x76, 0x3f, 0xbc, 0x0f, 0x2b, 0x9c, 0x35, 0x39, 0xae, 0x33, + 0x95, 0x5a, 0x17, 0xf1, 0xc1, 0x39, 0x64, 0x51, 0x1c, 0x2e, 0xaf, 0xa3, 0xf2, 0xca, 0x2a, 0x58, + 0x48, 0x51, 0xdc, 0x56, 0x63, 0x37, 0x55, 0xce, 0x39, 0xd4, 0x4d, 0x55, 0xd5, 0x60, 0x5f, 0x46, + 0x35, 0x54, 0xb4, 0x1a, 0x38, 0x1c, 0x6b, 0xb8, 0x0f, 0x2b, 0xf4, 0x32, 0xf4, 0x6d, 0xcb, 0x9b, + 0xd9, 0x3f, 0x9a, 0xa3, 0xdb, 0x86, 0x8d, 0x3a, 0xa0, 0xaa, 0xb9, 0x8c, 0x88, 0x3e, 0xc2, 0x77, + 0xed, 0xd0, 0x36, 0x7e, 0x09, 0x40, 0x9d, 0xaa, 0xf8, 0xe1, 0x3e, 0xd7, 0x93, 0x2f, 0x2b, 0xab, + 0x26, 0x4f, 0xe0, 0x3c, 0x86, 0x9e, 0x6f, 0x9f, 0xd1, 0xae, 0x8c, 0x0f, 0x14, 0x01, 0xc8, 0x2d, + 0xc8, 0x79, 0x33, 0xe9, 0x91, 0x56, 0x96, 0x81, 0xbc, 0x67, 0x26, 0x83, 0x1a, 0x9f, 0x40, 0xb6, + 0x3f, 0xbb, 0x56, 0x54, 0x6a, 0x42, 0x51, 0x7e, 0x14, 0x37, 0x8b, 0x5e, 0x68, 0x32, 0x79, 0xff, + 0xcf, 0x42, 0x45, 0xfb, 0xd2, 0x12, 0xd9, 0x84, 0xd5, 0x2f, 0xbb, 0xc3, 0x5e, 0x67, 0x30, 0xb0, + 0x8e, 0x8e, 0x77, 0x9e, 0x76, 0xbe, 0xb2, 0xf6, 0x5b, 0x83, 0xfd, 0xc6, 0x0d, 0xc6, 0x4b, 0x7a, + 0x9d, 0xc1, 0xb0, 0xb3, 0x1b, 0x83, 0x67, 0xc8, 0xeb, 0xb0, 0x75, 0xdc, 0x3b, 0x1e, 0x74, 0x76, + 0xad, 0xb4, 0x7c, 0x59, 0xb6, 0x79, 0x04, 0x3e, 0x25, 0x7b, 0xee, 0xfe, 0x2f, 0x43, 0x3d, 0x1e, + 0x2d, 0x83, 0x00, 0x2c, 0x1d, 0x74, 0x9e, 0xb4, 0xda, 0x5f, 0xf1, 0x40, 0xed, 0x83, 0x61, 0x6b, + 0xd8, 0x6d, 0x5b, 0x22, 0x30, 0x3b, 0x63, 0x54, 0x19, 0x52, 0x81, 0x62, 0xab, 0xd7, 0xde, 0xef, + 0x9b, 0x83, 0x46, 0x96, 0xbc, 0x06, 0x9b, 0x72, 0x0b, 0xb5, 0xfb, 0x87, 0x87, 0xdd, 0x21, 0xf2, + 0xe8, 0xe1, 0x57, 0x47, 0x6c, 0xc7, 0xdc, 0xb7, 0xa1, 0x1c, 0xc5, 0x94, 0x47, 0xbe, 0xd7, 0x1d, + 0x76, 0x5b, 0xc3, 0x88, 0xe9, 0x37, 0x6e, 0x30, 0xb6, 0x1a, 0x81, 0x31, 0x30, 0x7c, 0x23, 0xc3, + 0x1f, 0x14, 0x4b, 0x20, 0xaf, 0xbd, 0x91, 0x65, 0x7b, 0x3d, 0x82, 0xee, 0xf4, 0x87, 0xac, 0x0b, + 0xbf, 0x02, 0xf5, 0x78, 0xe8, 0x76, 0xd2, 0x80, 0x2a, 0xab, 0x5f, 0xab, 0x02, 0x60, 0x89, 0xb7, + 0xb8, 0x91, 0xe1, 0x8c, 0xbd, 0xdd, 0x3f, 0xec, 0xf6, 0x9e, 0xe0, 0x69, 0xd0, 0xc8, 0x32, 0x50, + 0xff, 0x78, 0xf8, 0xa4, 0xaf, 0x40, 0x39, 0x96, 0x83, 0x77, 0xa7, 0x91, 0xbf, 0xff, 0x23, 0x58, + 0x59, 0x08, 0xf2, 0xce, 0x5a, 0xdd, 0x3f, 0x1e, 0xb6, 0xfb, 0x87, 0x7a, 0x3d, 0x15, 0x28, 0xb6, + 0x0f, 0x5a, 0xdd, 0x43, 0x34, 0x84, 0xd4, 0xa0, 0x7c, 0xdc, 0x93, 0xc9, 0x6c, 0x3c, 0x3c, 0x7d, + 0x8e, 0xb1, 0xa8, 0xbd, 0xae, 0x39, 0x18, 0x5a, 0x83, 0x61, 0xeb, 0x49, 0xa7, 0x91, 0x67, 0x79, + 0x25, 0xbf, 0x2a, 0xdc, 0xff, 0x1c, 0xea, 0x71, 0xf7, 0xe9, 0xb8, 0x01, 0x6b, 0x0b, 0x36, 0x76, + 0x3a, 0xc3, 0x2f, 0x3b, 0x9d, 0x1e, 0x4e, 0x79, 0xbb, 0xd3, 0x1b, 0x9a, 0xad, 0x83, 0xee, 0xf0, + 0xab, 0x46, 0xe6, 0xfe, 0x63, 0x68, 0x24, 0x1d, 0x11, 0x62, 0x9e, 0x1b, 0x2f, 0x72, 0xf1, 0xb8, + 0xff, 0x1f, 0x33, 0xb0, 0x96, 0x66, 0x5f, 0x63, 0x0b, 0x53, 0x30, 0x42, 0x76, 0x1c, 0x0e, 0xfa, + 0x3d, 0xab, 0xd7, 0xc7, 0x78, 0xcd, 0x5b, 0xb0, 0x91, 0x40, 0xc8, 0x5e, 0x64, 0xc8, 0x2d, 0xd8, + 0x5c, 0xc8, 0x64, 0x99, 0xfd, 0x63, 0x9c, 0xcb, 0x26, 0xac, 0x25, 0x90, 0x1d, 0xd3, 0xec, 0x9b, + 0x8d, 0x1c, 0x79, 0x0f, 0xee, 0x25, 0x30, 0x8b, 0x42, 0x80, 0x94, 0x11, 0xf2, 0xe4, 0x1d, 0x78, + 0x73, 0x81, 0x3a, 0x3a, 0x27, 0xad, 0x9d, 0xd6, 0x01, 0xeb, 0x5e, 0xa3, 0x70, 0xff, 0xef, 0xe5, + 0x00, 0xa2, 0xf7, 0x89, 0xac, 0xfe, 0xdd, 0xd6, 0xb0, 0x75, 0xd0, 0x67, 0x7b, 0xc6, 0xec, 0x0f, + 0x59, 0xe9, 0x66, 0xe7, 0x87, 0x8d, 0x1b, 0xa9, 0x98, 0xfe, 0x11, 0xeb, 0xd0, 0x26, 0xac, 0xf2, + 0xf5, 0x77, 0xc0, 0xba, 0xc1, 0x96, 0x0b, 0x86, 0xfe, 0x46, 0x49, 0xe3, 0xf8, 0x68, 0xcf, 0xec, + 0xf7, 0x86, 0xd6, 0x60, 0xff, 0x78, 0xb8, 0x8b, 0x81, 0xc3, 0xdb, 0x66, 0xf7, 0x88, 0x97, 0x99, + 0x7f, 0x11, 0x01, 0x2b, 0xba, 0xc0, 0x36, 0xf8, 0x93, 0xfe, 0x60, 0xd0, 0x3d, 0xb2, 0x7e, 0x78, + 0xdc, 0x31, 0xbb, 0x9d, 0x01, 0x66, 0x5c, 0x4a, 0x81, 0x33, 0xfa, 0x22, 0x5b, 0xb3, 0xc3, 0x83, + 0x2f, 0x84, 0x00, 0xc1, 0x48, 0x4b, 0x71, 0x10, 0xa3, 0x2a, 0xb3, 0xd9, 0x61, 0x27, 0x70, 0x4a, + 0xc9, 0x70, 0x0d, 0x8e, 0xe5, 0xab, 0x30, 0xd9, 0x62, 0x61, 0xe7, 0x63, 0xb6, 0x6a, 0x3a, 0x8a, + 0xe5, 0x42, 0xb1, 0x43, 0x09, 0x69, 0xbb, 0xbb, 0x26, 0x66, 0xa8, 0x2f, 0x40, 0x19, 0xed, 0x32, + 0x5b, 0x84, 0xec, 0x88, 0x66, 0x24, 0x0d, 0x99, 0x60, 0x98, 0x95, 0x87, 0xff, 0xfc, 0x0d, 0x28, + 0xab, 0x77, 0x0a, 0xe4, 0x07, 0x50, 0x8b, 0x45, 0x01, 0x20, 0x52, 0x85, 0x9f, 0x16, 0x34, 0x60, + 0xeb, 0xb5, 0x74, 0xa4, 0xb8, 0x9c, 0x1c, 0x6a, 0xda, 0x00, 0x5e, 0xd8, 0x6b, 0xc9, 0x1b, 0x7a, + 0xac, 0xb4, 0xdb, 0xd7, 0x60, 0x45, 0x71, 0x4f, 0x31, 0x0a, 0xb9, 0xfe, 0x85, 0x75, 0x72, 0x3b, + 0x0a, 0x09, 0x9d, 0xf2, 0xe5, 0xf5, 0xad, 0x9b, 0x8b, 0xdf, 0x42, 0x97, 0x1f, 0x4f, 0xdf, 0x85, + 0x8a, 0xf6, 0x6d, 0x4c, 0x72, 0xf3, 0xda, 0xef, 0x78, 0x6e, 0x6d, 0xa5, 0xa1, 0x44, 0x93, 0xbe, + 0x0b, 0x65, 0xf5, 0x4d, 0x42, 0xb2, 0xa9, 0x7d, 0xe3, 0x52, 0xff, 0x46, 0xe3, 0x56, 0x73, 0x11, + 0x21, 0xf2, 0xef, 0x42, 0x45, 0xfb, 0xb4, 0xa0, 0x6a, 0xc5, 0xe2, 0xe7, 0x0b, 0x55, 0x2b, 0xd2, + 0xbe, 0x44, 0x78, 0x00, 0xeb, 0x42, 0xe7, 0x70, 0x42, 0xbf, 0xce, 0xf0, 0xa4, 0x7c, 0x2a, 0xfe, + 0x41, 0x86, 0x3c, 0x86, 0x92, 0xfc, 0x1c, 0x25, 0xd9, 0x48, 0xff, 0x6c, 0xe7, 0xd6, 0xe6, 0x02, + 0x5c, 0x34, 0xa5, 0x05, 0x10, 0x7d, 0xb4, 0x90, 0xc8, 0x8e, 0x2f, 0x7c, 0x04, 0x51, 0xcd, 0x4c, + 0xca, 0x17, 0x0e, 0x77, 0xa1, 0xa2, 0x7d, 0x9f, 0x50, 0x8d, 0xc9, 0xe2, 0xb7, 0x0d, 0xd5, 0x98, + 0xa4, 0x7d, 0xce, 0xf0, 0x07, 0x50, 0x8b, 0x7d, 0x68, 0x50, 0xad, 0xe3, 0xb4, 0xcf, 0x18, 0xaa, + 0x75, 0x9c, 0xfe, 0x6d, 0xc2, 0x5d, 0xa8, 0x68, 0x1f, 0xff, 0x53, 0x2d, 0x5a, 0xfc, 0x02, 0xa1, + 0x6a, 0x51, 0xca, 0xb7, 0x02, 0xd9, 0x6e, 0x88, 0x7f, 0xf9, 0x4f, 0xed, 0x86, 0xd4, 0x4f, 0x08, + 0xaa, 0xdd, 0x90, 0xfe, 0xb9, 0x40, 0xb6, 0xf4, 0xd4, 0xe7, 0x07, 0xc8, 0x66, 0xec, 0xaa, 0x1f, + 0x7d, 0xc7, 0x40, 0x2d, 0xbd, 0xc5, 0x2f, 0x15, 0x3c, 0x81, 0x55, 0xb5, 0x68, 0xd4, 0xc7, 0x03, + 0x02, 0xd5, 0xa6, 0xd4, 0x4f, 0x14, 0x6c, 0x35, 0x92, 0xd8, 0x07, 0x19, 0xf2, 0x19, 0x14, 0x45, + 0x44, 0x76, 0xb2, 0x9e, 0x8c, 0xd0, 0xce, 0x1b, 0xb1, 0x91, 0x1e, 0xb8, 0x9d, 0x1c, 0xe1, 0x86, + 0xd6, 0x43, 0xa6, 0xeb, 0x2b, 0x36, 0x25, 0xca, 0xfa, 0xd6, 0xeb, 0xd7, 0xa1, 0xa3, 0x12, 0x93, + 0x61, 0xfe, 0x6f, 0x5f, 0x17, 0x9d, 0x27, 0x5e, 0xe2, 0x75, 0x61, 0x04, 0x9f, 0x40, 0x55, 0xff, + 0xea, 0x13, 0xd1, 0xf7, 0x61, 0xb2, 0xac, 0x5b, 0xa9, 0x38, 0x51, 0xd0, 0x17, 0xb0, 0xa1, 0xc6, + 0x5b, 0x0f, 0x15, 0x13, 0x90, 0x3b, 0x29, 0x01, 0x64, 0x62, 0xa3, 0x7e, 0xf3, 0xda, 0x08, 0x33, + 0x0f, 0x32, 0xc8, 0x64, 0x63, 0x1f, 0x6a, 0x89, 0x98, 0x6c, 0xda, 0xf7, 0x69, 0x22, 0x26, 0x9b, + 0xfe, 0x75, 0x97, 0x16, 0x2c, 0x6b, 0xa1, 0x6e, 0x06, 0x57, 0xee, 0x48, 0xad, 0xf7, 0xc5, 0x58, + 0xd6, 0x5b, 0x69, 0x9a, 0x6f, 0xd2, 0x86, 0x8a, 0x1e, 0x2d, 0xe7, 0x05, 0xd9, 0x37, 0x35, 0x94, + 0x1e, 0x8a, 0xf8, 0x41, 0x86, 0x1c, 0x40, 0x23, 0x19, 0xdb, 0x52, 0x6d, 0xe1, 0xb4, 0x78, 0xa0, + 0x5b, 0x09, 0x64, 0x2c, 0x22, 0x26, 0x5b, 0x17, 0xb1, 0x2f, 0x92, 0x7b, 0x7e, 0xf2, 0x28, 0x8a, + 0x7f, 0xa9, 0x5c, 0x95, 0x96, 0xf6, 0x91, 0xfa, 0x7b, 0x99, 0x07, 0x19, 0xb2, 0x07, 0xd5, 0x58, + 0x68, 0xb7, 0xd8, 0x93, 0x99, 0x44, 0x37, 0x9b, 0x3a, 0x2e, 0xd1, 0xcf, 0x43, 0xa8, 0xc7, 0x5d, + 0x34, 0x54, 0xc3, 0x52, 0xfd, 0x48, 0xd4, 0xf4, 0xa5, 0xfb, 0x75, 0x90, 0xef, 0x41, 0x85, 0xf1, + 0x64, 0xe9, 0xca, 0x47, 0x34, 0x3e, 0x9d, 0x9c, 0x33, 0x0e, 0x13, 0xaa, 0xe8, 0xdc, 0x5f, 0xc8, + 0x66, 0xb0, 0x5f, 0xdf, 0xe1, 0x5f, 0x74, 0x96, 0xde, 0x5c, 0x6c, 0xfe, 0x5f, 0xb5, 0x10, 0xb2, + 0xc7, 0x2b, 0x1f, 0x7a, 0xfc, 0x25, 0xfc, 0x4d, 0x8d, 0x46, 0xc0, 0x5e, 0xad, 0x0d, 0x2d, 0xde, + 0x06, 0x91, 0x27, 0xb6, 0x06, 0x5f, 0xb1, 0x2c, 0xf2, 0x29, 0x40, 0xe4, 0x45, 0x4b, 0x12, 0x8e, + 0x9a, 0x6a, 0x43, 0xa5, 0x38, 0xda, 0x76, 0xf8, 0x7e, 0x57, 0x9e, 0xa2, 0xfa, 0x91, 0x1c, 0x77, + 0x5a, 0x8d, 0x1d, 0xc9, 0xc9, 0x62, 0x3e, 0x82, 0xda, 0x81, 0xe7, 0x3d, 0x9b, 0xcf, 0xd4, 0x73, + 0x8d, 0xb8, 0x1b, 0xd3, 0xbe, 0x1d, 0x9c, 0x6f, 0x25, 0x9a, 0x45, 0x5a, 0xb0, 0xa2, 0x58, 0x44, + 0xe4, 0xaa, 0x1a, 0x27, 0x8a, 0x31, 0x86, 0x44, 0x01, 0x0f, 0x32, 0xe4, 0x21, 0x54, 0x77, 0xe9, + 0x08, 0xa3, 0x75, 0xa0, 0xd3, 0xcc, 0x6a, 0xcc, 0x01, 0x83, 0x7b, 0xdb, 0x6c, 0xd5, 0x62, 0x40, + 0xc9, 0xe2, 0x22, 0xc7, 0x2d, 0xfd, 0xcc, 0x88, 0x7b, 0x3f, 0xc5, 0x58, 0xdc, 0x82, 0xf3, 0xd6, + 0x17, 0xb0, 0xb2, 0xe0, 0x1a, 0xa5, 0xb8, 0xdb, 0x75, 0x0e, 0x55, 0x5b, 0x77, 0xaf, 0x27, 0x10, + 0xe5, 0x7e, 0x1f, 0x6a, 0x3c, 0x32, 0xf5, 0x09, 0xe5, 0xaf, 0x6d, 0x13, 0x71, 0xc7, 0xf4, 0xa7, + 0xbc, 0x49, 0x96, 0xc4, 0x33, 0x3c, 0xc1, 0x6f, 0xda, 0x68, 0x6f, 0x59, 0xd5, 0xbc, 0x2e, 0xbe, + 0xaf, 0x55, 0xf3, 0x9a, 0xf6, 0x6c, 0xf6, 0x73, 0xa8, 0x3c, 0xa1, 0xa1, 0x7c, 0x1d, 0xaa, 0xe4, + 0xa3, 0xc4, 0x73, 0xd1, 0xad, 0x94, 0x37, 0xbd, 0xe4, 0x13, 0xcc, 0xaa, 0x22, 0x1d, 0x6c, 0x68, + 0xb5, 0xe8, 0x59, 0x97, 0x13, 0x70, 0x26, 0x7d, 0x68, 0xf1, 0x4e, 0x54, 0xc3, 0x17, 0xe3, 0xdb, + 0xa8, 0x86, 0xa7, 0x85, 0x47, 0xf9, 0x1e, 0x1f, 0x01, 0xed, 0x3d, 0x6a, 0x24, 0x82, 0x25, 0x9f, + 0xae, 0xaa, 0xe6, 0xeb, 0xe4, 0x8f, 0x00, 0x06, 0xa1, 0x37, 0xdb, 0xb5, 0xe9, 0xd4, 0x73, 0x23, + 0x9e, 0x10, 0xbd, 0x84, 0x8c, 0x36, 0xa2, 0xf6, 0x1c, 0x92, 0x7c, 0xa9, 0xc9, 0xa6, 0xb1, 0x29, + 0x91, 0xd3, 0x7e, 0xed, 0x63, 0x49, 0xd5, 0x9d, 0x94, 0x07, 0x93, 0xc8, 0x24, 0x20, 0xf2, 0x3c, + 0x53, 0x92, 0xe6, 0x82, 0x53, 0x9b, 0xda, 0xeb, 0x29, 0x6e, 0x6a, 0xdf, 0x85, 0x72, 0xe4, 0xb2, + 0xb3, 0x19, 0x05, 0x5f, 0x8a, 0x39, 0xf8, 0x28, 0xee, 0xbd, 0xe8, 0x2e, 0xd3, 0x83, 0x55, 0xde, + 0x1c, 0x75, 0xfc, 0xe1, 0x7b, 0x3d, 0xf5, 0x49, 0xa6, 0x45, 0x3f, 0x15, 0xb5, 0x7f, 0xd2, 0xbc, + 0x2d, 0xd8, 0xfe, 0x59, 0xb0, 0xda, 0xab, 0xfd, 0x73, 0x9d, 0x1b, 0x86, 0xda, 0x3f, 0xd7, 0x1b, + 0xfc, 0x7b, 0xb0, 0x9a, 0x62, 0x7f, 0x27, 0x6f, 0xc8, 0x8b, 0xcd, 0xb5, 0xb6, 0xf9, 0xad, 0x54, + 0x3b, 0x2d, 0x19, 0xc2, 0x26, 0xcf, 0xd3, 0x9a, 0x4c, 0x12, 0xe6, 0xde, 0xd7, 0xb5, 0x0c, 0x29, + 0x26, 0xec, 0x98, 0x28, 0x93, 0x30, 0x63, 0xf7, 0xa0, 0x91, 0xb4, 0x94, 0x92, 0xeb, 0xc9, 0xb7, + 0xee, 0xc4, 0x44, 0xf6, 0x45, 0xeb, 0x2a, 0xf9, 0x42, 0xd9, 0x6b, 0x13, 0x6d, 0xbc, 0x13, 0x7d, + 0x49, 0x30, 0xd5, 0xba, 0xac, 0x6e, 0x03, 0xa9, 0xe6, 0x5e, 0xf2, 0xf3, 0xb0, 0x99, 0x5c, 0xd1, + 0xb2, 0xe4, 0xbb, 0x69, 0xc3, 0x75, 0xad, 0x28, 0x17, 0xef, 0xd0, 0x83, 0x0c, 0x63, 0xc4, 0xba, + 0x55, 0x55, 0x2d, 0xa4, 0x14, 0xf3, 0xae, 0x5a, 0x48, 0xa9, 0x66, 0xd8, 0x23, 0x58, 0x4e, 0x18, + 0x54, 0x95, 0x18, 0x9c, 0x6e, 0x82, 0x55, 0x62, 0xf0, 0x75, 0x76, 0xd8, 0x01, 0x34, 0x92, 0xa6, + 0x52, 0x35, 0xd7, 0xd7, 0x98, 0x5f, 0xb7, 0xee, 0x5c, 0x8b, 0x8f, 0x37, 0x53, 0x33, 0x2a, 0xc6, + 0x9a, 0xb9, 0x68, 0x0a, 0x8d, 0x35, 0x33, 0xc5, 0xa4, 0xb9, 0xf3, 0xce, 0x2f, 0x7c, 0xeb, 0xcc, + 0x09, 0xcf, 0xe7, 0x27, 0xdb, 0x23, 0x6f, 0xfa, 0xc1, 0x44, 0x6a, 0x35, 0xc4, 0xf3, 0xf5, 0x0f, + 0x26, 0xee, 0xf8, 0x03, 0x2c, 0xe0, 0x64, 0x69, 0xe6, 0x7b, 0xa1, 0xf7, 0xd1, 0xff, 0x0d, 0x00, + 0x00, 0xff, 0xff, 0x16, 0x14, 0xf7, 0xe4, 0xfa, 0x8f, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/lnrpc/rpc.proto b/lnrpc/rpc.proto index e9af2b92..8d6009e2 100644 --- a/lnrpc/rpc.proto +++ b/lnrpc/rpc.proto @@ -2897,6 +2897,13 @@ message Invoice { [EXPERIMENTAL]. */ bool is_keysend = 25; + + /* + The payment address of this invoice. This value will be used in MPP + payments, and also for newer invoies that always require the MPP paylaod + for added end-to-end security. + */ + bytes payment_addr = 26; } enum InvoiceHTLCState { @@ -2955,6 +2962,13 @@ message AddInvoiceResponse { invoices with an add_index greater than this one. */ uint64 add_index = 16; + + /* + The payment address of the generated invoice. This value should be used + in all payments for this invoice as we require it for end to end + security. + */ + bytes payment_addr = 17; } message PaymentHash { /* diff --git a/lnrpc/rpc.swagger.json b/lnrpc/rpc.swagger.json index dbce729f..3372b214 100644 --- a/lnrpc/rpc.swagger.json +++ b/lnrpc/rpc.swagger.json @@ -2461,6 +2461,11 @@ "type": "string", "format": "uint64", "description": "The \"add\" index of this invoice. Each newly created invoice will increment\nthis index making it monotonically increasing. Callers to the\nSubscribeInvoices call can use this to instantly get notified of all added\ninvoices with an add_index greater than this one." + }, + "payment_addr": { + "type": "string", + "format": "byte", + "description": "The payment address of the generated invoice. This value should be used\nin all payments for this invoice as we require it for end to end\nsecurity." } } }, @@ -4083,6 +4088,11 @@ "type": "boolean", "format": "boolean", "description": "Indicates if this invoice was a spontaneous payment that arrived via keysend\n[EXPERIMENTAL]." + }, + "payment_addr": { + "type": "string", + "format": "byte", + "description": "The payment address of this invoice. This value will be used in MPP\npayments, and also for newer invoies that always require the MPP paylaod\nfor added end-to-end security." } } }, diff --git a/rpcserver.go b/rpcserver.go index dc9188f3..a7c265f9 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -4766,6 +4766,7 @@ func (r *rpcServer) AddInvoice(ctx context.Context, AddIndex: dbInvoice.AddIndex, PaymentRequest: string(dbInvoice.PaymentRequest), RHash: hash[:], + PaymentAddr: dbInvoice.Terms.PaymentAddr[:], }, nil } From 7fdf46ea4ea0a88b56bf0df5cbb16c5650c1c3eb Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 24 Nov 2020 19:05:32 -0800 Subject: [PATCH 6/7] lntest/itest: update SendToRoute tests to include payment addr --- lntest/itest/lnd_test.go | 128 +++++++++++++++++---------------------- 1 file changed, 56 insertions(+), 72 deletions(-) diff --git a/lntest/itest/lnd_test.go b/lntest/itest/lnd_test.go index 05c00d85..84277a06 100644 --- a/lntest/itest/lnd_test.go +++ b/lntest/itest/lnd_test.go @@ -751,6 +751,10 @@ func createPayReqs(node *lntest.HarnessNode, paymentAmt btcutil.Amount, "invoice: %v", err) } + // Set the payment address in the invoice so the caller can + // properly use it. + invoice.PaymentAddr = resp.PaymentAddr + payReqs[i] = resp.PaymentRequest rHashes[i] = resp.RHash invoices[i] = invoice @@ -5351,10 +5355,6 @@ type singleHopSendToRouteCase struct { // routerrpc submits the request to the routerrpc subserver if true, // otherwise submits to the main rpc server. routerrpc bool - - // mpp sets the MPP fields on the request if true, otherwise submits a - // regular payment. - mpp bool } var singleHopSendToRouteCases = []singleHopSendToRouteCase{ @@ -5371,17 +5371,14 @@ var singleHopSendToRouteCases = []singleHopSendToRouteCase{ }, { name: "mpp main sync", - mpp: true, }, { name: "mpp main stream", streaming: true, - mpp: true, }, { name: "mpp routerrpc sync", routerrpc: true, - mpp: true, }, } @@ -5558,11 +5555,7 @@ func testSingleHopSendToRouteCase(net *lntest.NetworkHarness, t *harnessTest, // - routerrpc server sync sendToRouteSync := func() { for i, rHash := range rHashes { - // Populate the MPP fields for the final hop if we are - // testing MPP payments. - if test.mpp { - setMPPFields(i) - } + setMPPFields(i) sendReq := &lnrpc.SendToRouteRequest{ PaymentHash: rHash, @@ -5591,11 +5584,7 @@ func testSingleHopSendToRouteCase(net *lntest.NetworkHarness, t *harnessTest, } for i, rHash := range rHashes { - // Populate the MPP fields for the final hop if we are - // testing MPP payments. - if test.mpp { - setMPPFields(i) - } + setMPPFields(i) sendReq := &lnrpc.SendToRouteRequest{ PaymentHash: rHash, @@ -5619,11 +5608,7 @@ func testSingleHopSendToRouteCase(net *lntest.NetworkHarness, t *harnessTest, } sendToRouteRouterRPC := func() { for i, rHash := range rHashes { - // Populate the MPP fields for the final hop if we are - // testing MPP payments. - if test.mpp { - setMPPFields(i) - } + setMPPFields(i) sendReq := &routerrpc.SendToRouteRequest{ PaymentHash: rHash, @@ -5719,26 +5704,22 @@ func testSingleHopSendToRouteCase(net *lntest.NetworkHarness, t *harnessTest, // properly populated. Otherwise the hop should not have an MPP // record. hop := htlc.Route.Hops[0] - if test.mpp { - if hop.MppRecord == nil { - t.Fatalf("expected mpp record for mpp payment") - } + if hop.MppRecord == nil { + t.Fatalf("expected mpp record for mpp payment") + } - if hop.MppRecord.TotalAmtMsat != paymentAmtSat*1000 { - t.Fatalf("incorrect mpp total msat for payment %d "+ - "want: %d, got: %d", - i, paymentAmtSat*1000, - hop.MppRecord.TotalAmtMsat) - } + if hop.MppRecord.TotalAmtMsat != paymentAmtSat*1000 { + t.Fatalf("incorrect mpp total msat for payment %d "+ + "want: %d, got: %d", + i, paymentAmtSat*1000, + hop.MppRecord.TotalAmtMsat) + } - expAddr := payAddrs[i] - if !bytes.Equal(hop.MppRecord.PaymentAddr, expAddr) { - t.Fatalf("incorrect mpp payment addr for payment %d "+ - "want: %x, got: %x", - i, expAddr, hop.MppRecord.PaymentAddr) - } - } else if hop.MppRecord != nil { - t.Fatalf("unexpected mpp record for non-mpp payment") + expAddr := payAddrs[i] + if !bytes.Equal(hop.MppRecord.PaymentAddr, expAddr) { + t.Fatalf("incorrect mpp payment addr for payment %d "+ + "want: %x, got: %x", + i, expAddr, hop.MppRecord.PaymentAddr) } } @@ -5877,11 +5858,23 @@ func testMultiHopSendToRoute(net *lntest.NetworkHarness, t *harnessTest) { } } - // Query for routes to pay from Alice to Carol. - // We set FinalCltvDelta to 40 since by default QueryRoutes returns - // the last hop with a final cltv delta of 9 where as the default in - // htlcswitch is 40. - const paymentAmt = 1000 + // Create 5 invoices for Carol, which expect a payment from Alice for 1k + // satoshis with a different preimage each time. + const ( + numPayments = 5 + paymentAmt = 1000 + ) + _, rHashes, invoices, err := createPayReqs( + carol, paymentAmt, numPayments, + ) + if err != nil { + t.Fatalf("unable to create pay reqs: %v", err) + } + + // Construct a route from Alice to Carol for each of the invoices + // created above. We set FinalCltvDelta to 40 since by default + // QueryRoutes returns the last hop with a final cltv delta of 9 where + // as the default in htlcswitch is 40. routesReq := &lnrpc.QueryRoutesRequest{ PubKey: carol.PubKeyStr, Amt: paymentAmt, @@ -5893,16 +5886,6 @@ func testMultiHopSendToRoute(net *lntest.NetworkHarness, t *harnessTest) { t.Fatalf("unable to get route: %v", err) } - // Create 5 invoices for Carol, which expect a payment from Alice for 1k - // satoshis with a different preimage each time. - const numPayments = 5 - _, rHashes, _, err := createPayReqs( - carol, paymentAmt, numPayments, - ) - if err != nil { - t.Fatalf("unable to create pay reqs: %v", err) - } - // We'll wait for all parties to recognize the new channels within the // network. ctxt, _ = context.WithTimeout(ctxb, defaultTimeout) @@ -5916,30 +5899,31 @@ func testMultiHopSendToRoute(net *lntest.NetworkHarness, t *harnessTest) { // Using Alice as the source, pay to the 5 invoices from Carol created // above. ctxt, _ = context.WithTimeout(ctxb, defaultTimeout) - alicePayStream, err := net.Alice.SendToRoute(ctxt) - if err != nil { - t.Fatalf("unable to create payment stream for alice: %v", err) - } - for _, rHash := range rHashes { - sendReq := &lnrpc.SendToRouteRequest{ + for i, rHash := range rHashes { + // Manually set the MPP payload a new for each payment since + // the payment addr will change with each invoice, although we + // can re-use the route itself. + route := *routes.Routes[0] + route.Hops[len(route.Hops)-1].TlvPayload = true + route.Hops[len(route.Hops)-1].MppRecord = &lnrpc.MPPRecord{ + PaymentAddr: invoices[i].PaymentAddr, + TotalAmtMsat: int64( + lnwire.NewMSatFromSatoshis(paymentAmt), + ), + } + + sendReq := &routerrpc.SendToRouteRequest{ PaymentHash: rHash, - Route: routes.Routes[0], + Route: &route, } - err := alicePayStream.Send(sendReq) - + resp, err := net.Alice.RouterClient.SendToRouteV2(ctxt, sendReq) if err != nil { t.Fatalf("unable to send payment: %v", err) } - } - for range rHashes { - resp, err := alicePayStream.Recv() - if err != nil { - t.Fatalf("unable to send payment: %v", err) - } - if resp.PaymentError != "" { - t.Fatalf("received payment error: %v", resp.PaymentError) + if resp.Failure != nil { + t.Fatalf("received payment error: %v", resp.Failure) } } From 4e079d1d20f38d33c9dcc3aef77b80f85f3751ea Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 24 Nov 2020 20:31:11 -0800 Subject: [PATCH 7/7] lntest/itest: fix SendToRoute in UpdateChanPolicy test It needs to include the MPP payload now. --- lntest/itest/lnd_test.go | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/lntest/itest/lnd_test.go b/lntest/itest/lnd_test.go index 84277a06..41ca93e6 100644 --- a/lntest/itest/lnd_test.go +++ b/lntest/itest/lnd_test.go @@ -2200,9 +2200,19 @@ func testUpdateChannelPolicy(net *lntest.NetworkHarness, t *harnessTest) { routes.Routes[0].Hops[1].AmtToForward = amtSat routes.Routes[0].Hops[1].AmtToForwardMsat = amtMSat + // Manually set the MPP payload a new for each payment since + // the payment addr will change with each invoice, although we + // can re-use the route itself. + route := routes.Routes[0] + route.Hops[len(route.Hops)-1].TlvPayload = true + route.Hops[len(route.Hops)-1].MppRecord = &lnrpc.MPPRecord{ + PaymentAddr: resp.PaymentAddr, + TotalAmtMsat: amtMSat, + } + sendReq = &lnrpc.SendToRouteRequest{ PaymentHash: resp.RHash, - Route: routes.Routes[0], + Route: route, } err = alicePayStream.Send(sendReq)