diff --git a/api_app.go b/api_app.go index 3de77e3a..36c65199 100644 --- a/api_app.go +++ b/api_app.go @@ -7,9 +7,9 @@ import ( "go.uber.org/zap" + "berty.tech/berty/v2/go/pkg/tyber" "berty.tech/weshnet/pkg/errcode" "berty.tech/weshnet/pkg/protocoltypes" - "berty.tech/berty/v2/go/pkg/tyber" ) func (s *service) AppMetadataSend(ctx context.Context, req *protocoltypes.AppMetadataSend_Request) (_ *protocoltypes.AppMetadataSend_Reply, err error) { diff --git a/api_client.go b/api_client.go index 80988466..a69465b9 100644 --- a/api_client.go +++ b/api_client.go @@ -5,9 +5,9 @@ import ( "io" "sync" + "berty.tech/berty/v2/go/pkg/tyber" "berty.tech/weshnet/pkg/errcode" "berty.tech/weshnet/pkg/protocoltypes" - "berty.tech/berty/v2/go/pkg/tyber" ) func (s *service) InstanceExportData(_ *protocoltypes.InstanceExportData_Request, server protocoltypes.ProtocolService_InstanceExportDataServer) (err error) { diff --git a/api_contact.go b/api_contact.go index 4406b2d7..8d467287 100644 --- a/api_contact.go +++ b/api_contact.go @@ -7,9 +7,9 @@ import ( "github.com/libp2p/go-libp2p/core/crypto" + "berty.tech/berty/v2/go/pkg/tyber" "berty.tech/weshnet/pkg/errcode" "berty.tech/weshnet/pkg/protocoltypes" - "berty.tech/berty/v2/go/pkg/tyber" ) func (s *service) ContactAliasKeySend(ctx context.Context, req *protocoltypes.ContactAliasKeySend_Request) (_ *protocoltypes.ContactAliasKeySend_Reply, err error) { diff --git a/api_contactrequest.go b/api_contactrequest.go index 0cf7ece5..04b8ae38 100644 --- a/api_contactrequest.go +++ b/api_contactrequest.go @@ -5,9 +5,9 @@ import ( "github.com/libp2p/go-libp2p/core/crypto" + "berty.tech/berty/v2/go/pkg/tyber" "berty.tech/weshnet/pkg/errcode" "berty.tech/weshnet/pkg/protocoltypes" - "berty.tech/berty/v2/go/pkg/tyber" ) // ContactRequestReference retrieves the necessary information to create a contact link diff --git a/api_debug.go b/api_debug.go index 7668063d..a1d4ec19 100644 --- a/api_debug.go +++ b/api_debug.go @@ -14,8 +14,8 @@ import ( "go.uber.org/zap" "berty.tech/go-orbit-db/stores/operation" - "berty.tech/weshnet/pkg/cryptoutil" "berty.tech/weshnet/internal/sysutil" + "berty.tech/weshnet/pkg/cryptoutil" "berty.tech/weshnet/pkg/errcode" "berty.tech/weshnet/pkg/protocoltypes" ) diff --git a/api_multimember.go b/api_multimember.go index 6028ebf8..d9c9eaea 100644 --- a/api_multimember.go +++ b/api_multimember.go @@ -6,9 +6,9 @@ import ( "github.com/libp2p/go-libp2p/core/crypto" + "berty.tech/berty/v2/go/pkg/tyber" "berty.tech/weshnet/pkg/errcode" "berty.tech/weshnet/pkg/protocoltypes" - "berty.tech/berty/v2/go/pkg/tyber" ) // MultiMemberGroupCreate creates a new MultiMember group diff --git a/api_push.go b/api_push.go index 9b4ea30d..c62909be 100644 --- a/api_push.go +++ b/api_push.go @@ -19,8 +19,8 @@ import ( "google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials/insecure" - "berty.tech/weshnet/pkg/cryptoutil" "berty.tech/berty/v2/go/pkg/logutil" + "berty.tech/weshnet/pkg/cryptoutil" "berty.tech/weshnet/pkg/errcode" "berty.tech/weshnet/pkg/protocoltypes" "berty.tech/weshnet/pkg/pushtypes" diff --git a/api_push_test.go b/api_push_test.go index c01d4a25..f0182a07 100644 --- a/api_push_test.go +++ b/api_push_test.go @@ -9,9 +9,9 @@ import ( "github.com/stretchr/testify/require" "golang.org/x/crypto/nacl/box" + "berty.tech/berty/v2/go/pkg/bertypush" weshnet "berty.tech/weshnet" "berty.tech/weshnet/pkg/cryptoutil" - "berty.tech/berty/v2/go/pkg/bertypush" "berty.tech/weshnet/pkg/protocoltypes" "berty.tech/weshnet/pkg/pushtypes" ) diff --git a/api_replication.go b/api_replication.go index 43faca60..ae04d1d1 100644 --- a/api_replication.go +++ b/api_replication.go @@ -11,14 +11,14 @@ import ( "google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials/insecure" + "berty.tech/berty/v2/go/pkg/logutil" + "berty.tech/berty/v2/go/pkg/replicationtypes" + "berty.tech/berty/v2/go/pkg/tyber" + "berty.tech/weshnet/internal/grpcutil" "berty.tech/weshnet/pkg/authtypes" "berty.tech/weshnet/pkg/cryptoutil" - "berty.tech/weshnet/internal/grpcutil" - "berty.tech/berty/v2/go/pkg/logutil" "berty.tech/weshnet/pkg/errcode" "berty.tech/weshnet/pkg/protocoltypes" - "berty.tech/berty/v2/go/pkg/replicationtypes" - "berty.tech/berty/v2/go/pkg/tyber" ) func FilterGroupForReplication(m *protocoltypes.Group) (*protocoltypes.Group, error) { diff --git a/api_services_auth.go b/api_services_auth.go index c0c2ec63..76eed654 100644 --- a/api_services_auth.go +++ b/api_services_auth.go @@ -12,9 +12,9 @@ import ( "go.uber.org/zap" "golang.org/x/net/context/ctxhttp" - "berty.tech/weshnet/pkg/authtypes" "berty.tech/berty/v2/go/pkg/bertyauth" "berty.tech/berty/v2/go/pkg/logutil" + "berty.tech/weshnet/pkg/authtypes" "berty.tech/weshnet/pkg/errcode" "berty.tech/weshnet/pkg/protocoltypes" "berty.tech/weshnet/pkg/pushtypes" diff --git a/blackbox_test.go b/blackbox_test.go index 1ca0a070..fc0f2051 100644 --- a/blackbox_test.go +++ b/blackbox_test.go @@ -8,9 +8,9 @@ import ( keystore "github.com/ipfs/go-ipfs-keystore" "github.com/stretchr/testify/assert" + "berty.tech/berty/v2/go/pkg/testutil" "berty.tech/weshnet" "berty.tech/weshnet/pkg/cryptoutil" - "berty.tech/berty/v2/go/pkg/testutil" "berty.tech/weshnet/pkg/protocoltypes" ) diff --git a/contact_request_manager.go b/contact_request_manager.go index 25fa8bd0..94e32e83 100644 --- a/contact_request_manager.go +++ b/contact_request_manager.go @@ -17,12 +17,12 @@ import ( peer "github.com/libp2p/go-libp2p/core/peer" "go.uber.org/zap" - "berty.tech/weshnet/internal/handshake" - "berty.tech/weshnet/pkg/ipfsutil" "berty.tech/berty/v2/go/pkg/logutil" + "berty.tech/berty/v2/go/pkg/tyber" + "berty.tech/weshnet/internal/handshake" "berty.tech/weshnet/pkg/errcode" + "berty.tech/weshnet/pkg/ipfsutil" "berty.tech/weshnet/pkg/protocoltypes" - "berty.tech/berty/v2/go/pkg/tyber" ) const contactRequestV1 = "/berty/contact_req/1.0.0" diff --git a/gen.sum b/gen.sum index 979015d6..506986c8 100644 --- a/gen.sum +++ b/gen.sum @@ -1 +1 @@ -464605fbe1bb08bd1f337b8e6b21a803ac6f6183 Makefile +f6837de034f92d231e8edb84d8bd01378ec94030 Makefile diff --git a/go.mod b/go.mod index 6547b445..9ef8bede 100644 --- a/go.mod +++ b/go.mod @@ -61,6 +61,7 @@ require ( require ( bazil.org/fuse v0.0.0-20200524192727-fb710f7dfd05 // indirect + berty.tech/ipfs-webui-packed v1.0.0-v2.11.4-1 // indirect contrib.go.opencensus.io/exporter/prometheus v0.4.0 // indirect github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 // indirect github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect @@ -109,6 +110,7 @@ require ( github.com/elgris/jsondiff v0.0.0-20160530203242-765b5c24c302 // indirect github.com/emicklei/proto v1.6.13 // indirect github.com/envoyproxy/protoc-gen-validate v0.6.2 // indirect + github.com/fabiokung/shm v0.0.0-20150728212823-2852b0d79bae // indirect github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5 // indirect github.com/felixge/fgprof v0.9.3 // indirect github.com/felixge/httpsnoop v1.0.3 // indirect @@ -117,6 +119,7 @@ require ( github.com/francoispqt/gojay v1.2.13 // indirect github.com/fsnotify/fsnotify v1.5.4 // indirect github.com/gabriel-vasile/mimetype v1.4.1 // indirect + github.com/gen2brain/beeep v0.0.0-20200526185328-e9c15c258e28 // indirect github.com/ghodss/yaml v1.0.0 // indirect github.com/go-chi/chi/v5 v5.0.8 // indirect github.com/go-kit/log v0.2.0 // indirect @@ -124,6 +127,8 @@ require ( github.com/go-logr/logr v1.2.3 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect + github.com/go-toast/toast v0.0.0-20190211030409-01e6764cf0a4 // indirect + github.com/gobuffalo/here v0.6.2 // indirect github.com/godbus/dbus/v5 v5.1.0 // indirect github.com/gofrs/flock v0.8.1 // indirect github.com/golang/glog v1.0.0 // indirect @@ -136,7 +141,10 @@ require ( github.com/google/pprof v0.0.0-20230111200839-76d1ae5aea2b // indirect github.com/google/tink/go v1.7.0 // indirect github.com/google/uuid v1.3.0 // indirect + github.com/gopherjs/gopherjs v0.0.0-20190812055157-5d271430af9f // indirect + github.com/gopherjs/gopherwasm v1.1.0 // indirect github.com/gorilla/websocket v1.5.0 // indirect + github.com/grandcat/zeroconf v1.0.0 // indirect github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect github.com/hannahhoward/go-pubsub v0.0.0-20200423002714-8d62886cc36e // indirect github.com/hashicorp/errwrap v1.1.0 // indirect @@ -205,7 +213,9 @@ require ( github.com/ipld/go-car/v2 v2.4.0 // indirect github.com/ipld/go-codec-dagpb v1.4.1 // indirect github.com/ipld/go-ipld-prime v0.18.0 // indirect + github.com/itsTurnip/dishooks v0.0.0-20200206125049-b4fc7c7b042e // indirect github.com/jackpal/go-nat-pmp v1.0.2 // indirect + github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect github.com/jbenet/go-temp-err-catcher v0.1.0 // indirect github.com/jbenet/goprocess v0.1.4 // indirect github.com/jdxcode/netrc v0.0.0-20221124155335-4616370d1a84 // indirect @@ -237,6 +247,7 @@ require ( github.com/libp2p/go-reuseport v0.2.0 // indirect github.com/libp2p/go-yamux/v4 v4.0.0 // indirect github.com/lucas-clemente/quic-go v0.29.1 // indirect + github.com/markbates/pkger v0.17.1 // indirect github.com/marten-seemann/qpack v0.2.1 // indirect github.com/marten-seemann/qtls-go1-18 v0.1.2 // indirect github.com/marten-seemann/qtls-go1-19 v0.1.0 // indirect @@ -269,8 +280,10 @@ require ( github.com/multiformats/go-varint v0.0.6 // indirect github.com/mutecomm/go-sqlcipher/v4 v4.4.2 // indirect github.com/mwitkow/go-proto-validators v0.0.0-20180403085117-0950a7990007 // indirect + github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect github.com/nxadm/tail v1.4.8 // indirect github.com/nyaruka/phonenumbers v1.0.75 // indirect + github.com/oklog/run v1.1.0 // indirect github.com/onsi/ginkgo v1.16.5 // indirect github.com/opencontainers/go-digest v1.0.0 // indirect github.com/opencontainers/image-spec v1.1.0-rc2 // indirect @@ -293,13 +306,16 @@ require ( github.com/raulk/go-watchdog v1.3.0 // indirect github.com/rs/cors v1.8.3 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect + github.com/shibukawa/configdir v0.0.0-20170330084843-e180dbdc8da0 // indirect github.com/sirupsen/logrus v1.9.0 // indirect + github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e // indirect github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572 // indirect github.com/spaolacci/murmur3 v1.1.0 // indirect github.com/spf13/cobra v1.6.1 // indirect github.com/spf13/pflag v1.0.5 // indirect github.com/square/go-jose/v3 v3.0.0-20200630053402-0a67ce9b0693 // indirect github.com/syndtr/goleveldb v1.0.0 // indirect + github.com/tadvi/systray v0.0.0-20190226123456-11a2b8fa57af // indirect github.com/teserakt-io/golang-ed25519 v0.0.0-20210104091850-3888c087a4c8 // indirect github.com/tidwall/gjson v1.14.0 // indirect github.com/tidwall/match v1.1.1 // indirect @@ -350,6 +366,7 @@ require ( lukechampine.com/blake3 v1.1.7 // indirect moul.io/banner v1.0.1 // indirect moul.io/motd v1.0.0 // indirect + moul.io/progress v1.4.0 // indirect moul.io/u v1.27.0 // indirect moul.io/zapfilter v1.7.0 // indirect moul.io/zapgorm2 v1.1.1 // indirect diff --git a/go.sum b/go.sum index 9a0246b2..bf0c2a74 100644 --- a/go.sum +++ b/go.sum @@ -7,6 +7,7 @@ berty.tech/go-ipfs-repo-encrypted v1.2.2/go.mod h1:qCtBIqlgd7CFmQ0Do/YqtqIFT6U5e berty.tech/go-orbit-db v1.19.1 h1:g96VBOj+IxTnd+Z+WRnve06Yi+ObEk8ie0+kgk5tRSA= berty.tech/go-orbit-db v1.19.1/go.mod h1:d+oh2ujZJW2c3IxihPNNqonR92/+EvhOIETylEJYwZc= berty.tech/ipfs-webui-packed v1.0.0-v2.11.4-1 h1:xXAS7M/RcgIWia1XkXLueirm2zDXnMMNGb3UJhfRzbo= +berty.tech/ipfs-webui-packed v1.0.0-v2.11.4-1/go.mod h1:n+M4wWEjVxnA0itc1m9oOLAXrNyZr2tiOxLnA1tVnrQ= cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.31.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= @@ -303,6 +304,7 @@ github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7 github.com/envoyproxy/protoc-gen-validate v0.6.2 h1:JiO+kJTpmYGjEodY7O1Zk8oZcNz1+f30UtwtXoFUPzE= github.com/envoyproxy/protoc-gen-validate v0.6.2/go.mod h1:2t7qjJNvHPx8IjnBOzl9E9/baC+qXE/TeeyBRzgJDws= github.com/fabiokung/shm v0.0.0-20150728212823-2852b0d79bae h1:aTk3oxnLG4mZlRAjjQ/+gcPADRBwufK50Juo6rZFwmY= +github.com/fabiokung/shm v0.0.0-20150728212823-2852b0d79bae/go.mod h1:CfQlHdJe+BpFauTDNHTlNGtexD0vEGjXVWzG97fSdP4= github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5 h1:BBso6MBKW8ncyZLv37o+KNyy0HrrHgfnOaGQC2qvN+A= github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5/go.mod h1:JpoxHjuQauoxiFMl1ie8Xc/7TfLuMZ5eOCONd1sUBHg= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= @@ -335,6 +337,7 @@ github.com/fsnotify/fsnotify v1.5.4/go.mod h1:OVB6XrOHzAwXMpEM7uPOzcehqUV2UqJxmV github.com/gabriel-vasile/mimetype v1.4.1 h1:TRWk7se+TOjCYgRth7+1/OYLNiRNIotknkFtf/dnN7Q= github.com/gabriel-vasile/mimetype v1.4.1/go.mod h1:05Vi0w3Y9c/lNvJOdmIwvrrAhX3rYhfQQCaf9VJcv7M= github.com/gen2brain/beeep v0.0.0-20200526185328-e9c15c258e28 h1:M2Zt3G2w6Q57GZndOYk42p7RvMeO8izO8yKTfIxGqxA= +github.com/gen2brain/beeep v0.0.0-20200526185328-e9c15c258e28/go.mod h1:ElSskYZe3oM8kThaHGJ+kiN2yyUMVXMZ7WxF9QqLDS8= github.com/gfanton/go-multiaddr v0.7.1-0.20221109002011-e39b3a49e793 h1:C8vDL8ltvRRYN2rM7AQQFbek18Hw3WEpePuJzyC0qo8= github.com/gfanton/go-multiaddr v0.7.1-0.20221109002011-e39b3a49e793/go.mod h1:Fs50eBDWvZu+l3/9S6xAE7ZYj6yhxlvaVZjakWN7xRs= github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= @@ -380,7 +383,10 @@ github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/me github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 h1:p104kn46Q8WdvHunIJ9dAyjPVtrBPhSr3KT2yUst43I= github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE= github.com/go-toast/toast v0.0.0-20190211030409-01e6764cf0a4 h1:qZNfIGkIANxGv/OqtnntR4DfOY2+BgwR60cAcu/i3SE= +github.com/go-toast/toast v0.0.0-20190211030409-01e6764cf0a4/go.mod h1:kW3HQ4UdaAyrUCSSDR4xUzBKW6O2iA4uHhk7AtyYp10= +github.com/gobuffalo/here v0.6.0/go.mod h1:wAG085dHOYqUpf+Ap+WOdrPTp5IYcDAs/x7PLa8Y5fM= github.com/gobuffalo/here v0.6.2 h1:ZtCqC7F9ou3moLbYfHM1Tj+gwHGgWhjyRjVjsir9BE0= +github.com/gobuffalo/here v0.6.2/go.mod h1:D75Sq0p2BVHdgQu3vCRsXbg85rx943V19urJpqAVWjI= github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee h1:s+21KNqlpePfkah2I+gwHF8xmJWRjooY+5248k6m4A0= github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo= github.com/gobwas/pool v0.2.0 h1:QEmUOlnSjWtnpRGHF3SauEiOsy82Cup83Vf2LcMlnc8= @@ -495,10 +501,13 @@ github.com/googleapis/gax-go v2.0.0+incompatible/go.mod h1:SFVmujtThgffbyetf+mdk github.com/googleapis/gax-go/v2 v2.0.3/go.mod h1:LLvjysVCY1JZeum8Z6l8qUty8fiNwE08qbEPm1M08qg= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= +github.com/gopherjs/gopherjs v0.0.0-20180825215210-0210a2f0f73c/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gopherjs/gopherjs v0.0.0-20190812055157-5d271430af9f h1:KMlcu9X58lhTA/KrfX8Bi1LQSO4pzoVjTiL3h4Jk+Zk= +github.com/gopherjs/gopherjs v0.0.0-20190812055157-5d271430af9f/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gopherjs/gopherwasm v1.1.0 h1:fA2uLoctU5+T3OhOn2vYP0DVT6pxc7xhTlBB1paATqQ= +github.com/gopherjs/gopherwasm v1.1.0/go.mod h1:SkZ8z7CWBz5VXbhJel8TxCmAcsQqzgWGR/8nMhyhZSI= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= @@ -512,6 +521,7 @@ github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/ad github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc= github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/grandcat/zeroconf v1.0.0 h1:uHhahLBKqwWBV6WZUDAT71044vwOTL+McW0mBJvo6kE= +github.com/grandcat/zeroconf v1.0.0/go.mod h1:lTKmG1zh86XyCoUeIHSA4FJMBwCJiQmGfcP2PdzytEs= github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-middleware v1.2.2/go.mod h1:EaizFBKfUKtMIF5iaDEhniwNedqGo9FuLFzppDr3uwI= @@ -827,6 +837,7 @@ github.com/ipld/go-ipld-prime v0.18.0/go.mod h1:735yXW548CKrLwVCYXzqx90p5deRJMVV github.com/ipld/go-ipld-prime/storage/bsadapter v0.0.0-20211210234204-ce2a1c70cd73 h1:TsyATB2ZRRQGTwafJdgEUQkmjOExRV0DNokcihZxbnQ= github.com/ipld/go-ipld-prime/storage/bsadapter v0.0.0-20211210234204-ce2a1c70cd73/go.mod h1:2PJ0JgxyB08t0b2WKrcuqI3di0V+5n6RS/LTUJhkoxY= github.com/itsTurnip/dishooks v0.0.0-20200206125049-b4fc7c7b042e h1:7/ig5iBHnQclaKaaBKPUkQGjaxz04H6auAArkKj5E4o= +github.com/itsTurnip/dishooks v0.0.0-20200206125049-b4fc7c7b042e/go.mod h1:O/wGqEBiZF53Q9O7jrJVIz1oXLlxVA1CfkzKMn3HUDM= github.com/jackpal/gateway v1.0.5/go.mod h1:lTpwd4ACLXmpyiCTRtfiNyVnUmqT9RivzCDQetPfnjA= github.com/jackpal/go-nat-pmp v1.0.1/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= github.com/jackpal/go-nat-pmp v1.0.2 h1:KzKSgb7qkJvOUTqYl9/Hg/me3pWgBmERKrTGD7BdWus= @@ -835,6 +846,7 @@ github.com/jbenet/go-cienv v0.0.0-20150120210510-1bb1476777ec/go.mod h1:rGaEvXB4 github.com/jbenet/go-cienv v0.1.0 h1:Vc/s0QbQtoxX8MwwSLWWh+xNNZvM3Lw7NsTcHrvvhMc= github.com/jbenet/go-cienv v0.1.0/go.mod h1:TqNnHUmJgXau0nCzC7kXWeotg3J9W34CUv5Djy1+FlA= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A= +github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= github.com/jbenet/go-random v0.0.0-20190219211222-123a90aedc0c h1:uUx61FiAa1GI6ZmVd2wf2vULeQZIKG66eybjNXKYCz4= github.com/jbenet/go-random v0.0.0-20190219211222-123a90aedc0c/go.mod h1:sdx1xVM9UuLw1tXnhJWN3piypTUO3vCIHYmG15KE/dU= github.com/jbenet/go-temp-err-catcher v0.0.0-20150120210811-aac704a3f4f2/go.mod h1:8GXXJV31xl8whumTzdZsTt3RnUIiPqzkyf7mxToRCMs= @@ -1272,7 +1284,9 @@ github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0Q github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.0.0-20190312143242-1de009706dbe/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/markbates/pkger v0.17.0/go.mod h1:0JoVlrol20BSywW79rN3kdFFsE5xYM+rSCQDXbLhiuI= github.com/markbates/pkger v0.17.1 h1:/MKEtWqtc0mZvu9OinB9UzVN9iYCwLWuyUv4Bw+PCno= +github.com/markbates/pkger v0.17.1/go.mod h1:0JoVlrol20BSywW79rN3kdFFsE5xYM+rSCQDXbLhiuI= github.com/marten-seemann/qpack v0.2.1 h1:jvTsT/HpCn2UZJdP+UUB53FfUUgeOyG5K1ns0OJOGVs= github.com/marten-seemann/qpack v0.2.1/go.mod h1:F7Gl5L1jIgN1D11ucXefiuJS9UMVP2opoCp2jDKb7wc= github.com/marten-seemann/qtls v0.10.0/go.mod h1:UvMd1oaYDACI99/oZUYLzMCkBXQVT0aGm99sJhbT8hs= @@ -1331,6 +1345,7 @@ github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d/go.mod h1:01TrycV0kFyex github.com/microcosm-cc/bluemonday v1.0.1/go.mod h1:hsXNsILzKxV+sX77C5b8FSuKF00vh2OMYv+xgHpAMF4= github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= github.com/miekg/dns v1.1.12/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= +github.com/miekg/dns v1.1.27/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM= github.com/miekg/dns v1.1.28/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM= github.com/miekg/dns v1.1.31/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM= github.com/miekg/dns v1.1.41/go.mod h1:p6aan82bvRIyn+zDIv9xYNUpwa73JcSh9BKwknJysuI= @@ -1459,6 +1474,7 @@ github.com/neelance/astrewrite v0.0.0-20160511093645-99348263ae86/go.mod h1:kHJE github.com/neelance/sourcemap v0.0.0-20151028013722-8c68805598ab/go.mod h1:Qr6/a/Q4r9LP1IltGz7tA7iOK1WonHEYhu1HRBA7ZiM= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d h1:VhgPp6v9qf9Agr/56bj7Y/xa04UccTW04VP0Qed4vnQ= +github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d/go.mod h1:YUTz3bUH2ZwIWBy3CJBeOBEugqcmXREj14T+iG/4k4U= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= @@ -1467,6 +1483,7 @@ github.com/nyaruka/phonenumbers v1.0.75/go.mod h1:cGaEsOrLjIL0iKGqJR5Rfywy86dSkb github.com/oklog/oklog v0.3.2/go.mod h1:FCV+B7mhrz4o+ueLpx+KqkyXRGMWOYEvfiXtdGtbWGs= github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= github.com/oklog/run v1.1.0 h1:GEenZ1cK0+q0+wsJew9qUg/DyD8k3JzYsZAi5gYi2mA= +github.com/oklog/run v1.1.0/go.mod h1:sVPdnTZT1zYwAJeCMu2Th4T21pA3FPOQRfWjQlk7DVU= github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= @@ -1512,11 +1529,13 @@ github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FI github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 h1:onHthvaw9LFnH4t2DcNVpwGmV9E1BkGknEliJkfwQj0= github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58/go.mod h1:DXv8WO4yhMYhSNPKjeNKa5WY9YCIEBRbNzFFPJbWO6Y= github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= +github.com/pborman/uuid v1.2.1 h1:+ZZIw58t/ozdjRaXh/3awHfmWRbzYxJoAdNJxe/3pvw= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/pelletier/go-toml v1.6.0/go.mod h1:5N711Q9dKgbdkxHL+MEfF31hpT7l0S0s/t2kKREewys= github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= github.com/petar/GoLLRB v0.0.0-20210522233825-ae3b015fd3e9 h1:1/WtZae0yGtPq+TI6+Tv1WTxkukpXeMlviSxvL7SRgk= github.com/petar/GoLLRB v0.0.0-20210522233825-ae3b015fd3e9/go.mod h1:x3N5drFsm2uilKKuuYo6LdyD8vZAW55sH/9w+pbo1sw= +github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2 h1:JhzVVoYvbOACxoUmOs6V/G4D5nPVUW73rKvXxP4XUJc= github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pierrec/lz4 v2.6.1+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= @@ -1621,6 +1640,7 @@ github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0 github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= github.com/shibukawa/configdir v0.0.0-20170330084843-e180dbdc8da0 h1:Xuk8ma/ibJ1fOy4Ee11vHhUFHQNpHhrBneOCNHVXS5w= +github.com/shibukawa/configdir v0.0.0-20170330084843-e180dbdc8da0/go.mod h1:7AwjWCpdPhkSmNAgUv5C7EJ4AbmjEB3r047r3DXWu3Y= github.com/shurcooL/component v0.0.0-20170202220835-f88ec8f54cc4/go.mod h1:XhFIlyj5a1fBNx5aJTbKoIq0mNaPvOagO+HjB3EtxrY= github.com/shurcooL/events v0.0.0-20181021180414-410e4ca65f48/go.mod h1:5u70Mqkb5O5cxEA8nxTsgrgLehJeAw6Oc4Ab1c/P1HM= github.com/shurcooL/github_flavored_markdown v0.0.0-20181002035957-2122de532470/go.mod h1:2dOwnU2uBioM+SGy2aZoq1f/Sd1l9OkAeAUvjSyvgU0= @@ -1653,6 +1673,7 @@ github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e h1:MRM5ITcdelLK2j1vwZ3Je0FKVCfqOLp5zO6trqMLYs0= +github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e/go.mod h1:XV66xRDqSt+GTGFMVlhk3ULuV0y9ZmzeVGR4mloJI3M= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/assertions v1.0.0 h1:UVQPSSmc3qtTi+zPPkCXvZX9VvW/xT/NsRvKfwY81a8= github.com/smartystreets/assertions v1.0.0/go.mod h1:kHHU4qYBaI3q23Pp3VPrmWhuIUrLW/7eUrw0BU5VaoM= @@ -1709,6 +1730,8 @@ github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o github.com/syndtr/goleveldb v1.0.0 h1:fBdIW9lB4Iz0n9khmH8w27SJ3QEJ7+IgjPEwGSZiFdE= github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ= github.com/tadvi/systray v0.0.0-20190226123456-11a2b8fa57af h1:6yITBqGTE2lEeTPG04SN9W+iWHCRyHqlVYILiSXziwk= +github.com/tadvi/systray v0.0.0-20190226123456-11a2b8fa57af/go.mod h1:4F09kP5F+am0jAwlQLddpoMDM+iewkxxt6nxUQ5nq5o= +github.com/tailscale/depaware v0.0.0-20201214215404-77d1e9757027/go.mod h1:p9lPsd+cx33L3H9nNoecRRxPssFKUwwI50I3pZ0yT+8= github.com/tailscale/depaware v0.0.0-20210622194025-720c4b409502/go.mod h1:p9lPsd+cx33L3H9nNoecRRxPssFKUwwI50I3pZ0yT+8= github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07/go.mod h1:kDXzergiv9cbyO7IOYJZWg1U88JhDg3PB6klq9Hg2pA= github.com/teserakt-io/golang-ed25519 v0.0.0-20210104091850-3888c087a4c8 h1:RBkacARv7qY5laaXGlF4wFB/tk5rnthhPb8oIBGoagY= @@ -2392,6 +2415,7 @@ gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.7/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= @@ -2426,11 +2450,13 @@ moul.io/motd v1.0.0/go.mod h1:39rvZ0lC2oRhHDY2VoPyZ8r70VKqeJye3QAxjeLDJso= moul.io/openfiles v1.2.0 h1:oAmBX0ChBBsKERFfTRyLi9JkjOvEv9E474BEL/wVq44= moul.io/openfiles v1.2.0/go.mod h1:FR9BZ1mw7VE0uZN6HVJcA16Ee2nTDG/YZUyiGM/T2Rw= moul.io/progress v1.4.0 h1:XHvUoV1tcah4DCvw/wejjXYY4gkDMRvAZTma28oupFs= +moul.io/progress v1.4.0/go.mod h1:3cQ4mqfoCBS0iFeDL5Pq3HRGEl11MUyZAXsbOUpHjxc= moul.io/srand v1.6.1 h1:SJ335F+54ivLdlH7wH52Rtyv0Ffos6DpsF5wu3ZVMXU= moul.io/srand v1.6.1/go.mod h1:P2uaZB+GFstFNo8sEj6/U8FRV1n25kD0LLckFpJ+qvc= moul.io/testman v1.5.0 h1:tN1XEzLxYh8ZYy1wET6leWufnTl7BcZELkSNiro/yEo= moul.io/testman v1.5.0/go.mod h1:b4/5+lMsMDJtwuh25Cr0eVJ5Y4B2lSPfkzDtfct070g= moul.io/u v1.6.0/go.mod h1:yd3/IoYRIJaZWAJV2rYHvM2EPp/Pp0zSNraB5IPX+hw= +moul.io/u v1.20.0/go.mod h1:wbu/e7QOYvmXQW4P3W2494MZU2y9Zh+H1hcr6HBxftE= moul.io/u v1.27.0 h1:rF0p184mludn2DzL0unA8Gf/mFWMBerdqOh8cyuQYzQ= moul.io/u v1.27.0/go.mod h1:ggYDXxUjoHpfDsMPD3STqkUZTyA741PZiQhSd+7kRnA= moul.io/zapfilter v1.7.0 h1:7aFrG4N72bDH9a2BtYUuUaDS981Dxu3qybWfeqaeBDU= diff --git a/group_context.go b/group_context.go index 1f022207..bac9b167 100644 --- a/group_context.go +++ b/group_context.go @@ -11,11 +11,11 @@ import ( "github.com/libp2p/go-libp2p/core/crypto" "go.uber.org/zap" + "berty.tech/berty/v2/go/pkg/logutil" "berty.tech/go-orbit-db/stores" "berty.tech/weshnet/pkg/cryptoutil" - "berty.tech/weshnet/pkg/ipfsutil" - "berty.tech/berty/v2/go/pkg/logutil" "berty.tech/weshnet/pkg/errcode" + "berty.tech/weshnet/pkg/ipfsutil" "berty.tech/weshnet/pkg/protocoltypes" ) diff --git a/internal/handshake/handshake.go b/internal/handshake/handshake.go index 2416a539..efe506a4 100644 --- a/internal/handshake/handshake.go +++ b/internal/handshake/handshake.go @@ -8,9 +8,9 @@ import ( p2pcrypto "github.com/libp2p/go-libp2p/core/crypto" "golang.org/x/crypto/nacl/box" + "berty.tech/berty/v2/go/pkg/tyber" "berty.tech/weshnet/pkg/cryptoutil" "berty.tech/weshnet/pkg/errcode" - "berty.tech/berty/v2/go/pkg/tyber" ) // Constant nonces diff --git a/internal/handshake/handshake_test.go b/internal/handshake/handshake_test.go index 7618de3b..4094d659 100644 --- a/internal/handshake/handshake_test.go +++ b/internal/handshake/handshake_test.go @@ -14,10 +14,10 @@ import ( "go.uber.org/zap" "golang.org/x/crypto/nacl/box" - "berty.tech/weshnet/pkg/cryptoutil" - "berty.tech/weshnet/pkg/ipfsutil" "berty.tech/berty/v2/go/pkg/testutil" + "berty.tech/weshnet/pkg/cryptoutil" "berty.tech/weshnet/pkg/errcode" + "berty.tech/weshnet/pkg/ipfsutil" ) // Request init a handshake with the responder diff --git a/internal/handshake/request.go b/internal/handshake/request.go index 43536f72..93d40789 100644 --- a/internal/handshake/request.go +++ b/internal/handshake/request.go @@ -9,9 +9,9 @@ import ( "go.uber.org/zap" "golang.org/x/crypto/nacl/box" + "berty.tech/berty/v2/go/pkg/tyber" "berty.tech/weshnet/pkg/cryptoutil" "berty.tech/weshnet/pkg/errcode" - "berty.tech/berty/v2/go/pkg/tyber" ) // RequestUsingReaderWriter init a handshake with the responder, using provided ggio reader and writer diff --git a/internal/handshake/response.go b/internal/handshake/response.go index 0f4fd7ef..0d32263b 100644 --- a/internal/handshake/response.go +++ b/internal/handshake/response.go @@ -9,9 +9,9 @@ import ( "go.uber.org/zap" "golang.org/x/crypto/nacl/box" + "berty.tech/berty/v2/go/pkg/tyber" "berty.tech/weshnet/pkg/cryptoutil" "berty.tech/weshnet/pkg/errcode" - "berty.tech/berty/v2/go/pkg/tyber" ) // ResponseUsingReaderWriter handle the handshake inited by the requester, using provided ggio reader and writer diff --git a/internal/sysutil/sysutil.go b/internal/sysutil/sysutil.go index 10d209d8..6b5225bf 100644 --- a/internal/sysutil/sysutil.go +++ b/internal/sysutil/sysutil.go @@ -9,8 +9,8 @@ import ( "moul.io/openfiles" "berty.tech/weshnet/internal/bertyversion" - "berty.tech/weshnet/pkg/protocoltypes" "berty.tech/weshnet/internal/username" + "berty.tech/weshnet/pkg/protocoltypes" ) func SystemInfoProcess() (*protocoltypes.SystemInfo_Process, error) { diff --git a/message_marshaler.go b/message_marshaler.go index 2ecc0ef7..9042b2b7 100644 --- a/message_marshaler.go +++ b/message_marshaler.go @@ -13,8 +13,8 @@ import ( "berty.tech/go-ipfs-log/entry" "berty.tech/go-orbit-db/iface" "berty.tech/weshnet/pkg/cryptoutil" - "berty.tech/weshnet/pkg/rendezvous" "berty.tech/weshnet/pkg/protocoltypes" + "berty.tech/weshnet/pkg/rendezvous" ) type PeerDeviceGroup struct { diff --git a/orbitdb.go b/orbitdb.go index 5291a39d..c3871b51 100644 --- a/orbitdb.go +++ b/orbitdb.go @@ -17,6 +17,7 @@ import ( "github.com/pkg/errors" "go.uber.org/zap" + "berty.tech/berty/v2/go/pkg/tyber" ipfslog "berty.tech/go-ipfs-log" "berty.tech/go-ipfs-log/enc" "berty.tech/go-ipfs-log/entry" @@ -26,13 +27,12 @@ import ( "berty.tech/go-orbit-db/baseorbitdb" "berty.tech/go-orbit-db/iface" "berty.tech/go-orbit-db/pubsub/pubsubcoreapi" - "berty.tech/weshnet/pkg/cryptoutil" "berty.tech/weshnet/internal/datastoreutil" - "berty.tech/weshnet/pkg/ipfsutil" - "berty.tech/weshnet/pkg/rendezvous" + "berty.tech/weshnet/pkg/cryptoutil" "berty.tech/weshnet/pkg/errcode" + "berty.tech/weshnet/pkg/ipfsutil" "berty.tech/weshnet/pkg/protocoltypes" - "berty.tech/berty/v2/go/pkg/tyber" + "berty.tech/weshnet/pkg/rendezvous" ) type GroupOpenMode uint64 diff --git a/orbitdb_many_adds_berty_test.go b/orbitdb_many_adds_berty_test.go index 102f24d3..176cabbd 100644 --- a/orbitdb_many_adds_berty_test.go +++ b/orbitdb_many_adds_berty_test.go @@ -15,9 +15,9 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap" + "berty.tech/berty/v2/go/pkg/testutil" "berty.tech/go-orbit-db/iface" "berty.tech/weshnet/pkg/ipfsutil" - "berty.tech/berty/v2/go/pkg/testutil" "berty.tech/weshnet/pkg/protocoltypes" ) diff --git a/pkg/cryptoutil/keystore_message_utils_test.go b/pkg/cryptoutil/keystore_message_utils_test.go index 7f0d6606..4a22d6eb 100644 --- a/pkg/cryptoutil/keystore_message_utils_test.go +++ b/pkg/cryptoutil/keystore_message_utils_test.go @@ -14,9 +14,9 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + "berty.tech/berty/v2/go/pkg/testutil" "berty.tech/weshnet" "berty.tech/weshnet/pkg/cryptoutil" - "berty.tech/berty/v2/go/pkg/testutil" "berty.tech/weshnet/pkg/protocoltypes" ) diff --git a/pkg/ipfsutil/lifecycle.go b/pkg/ipfsutil/lifecycle.go index 7880aeee..3d7ee220 100644 --- a/pkg/ipfsutil/lifecycle.go +++ b/pkg/ipfsutil/lifecycle.go @@ -13,8 +13,8 @@ import ( "github.com/libp2p/go-libp2p/p2p/protocol/ping" "go.uber.org/zap" - "berty.tech/weshnet/pkg/lifecycle" "berty.tech/berty/v2/go/pkg/logutil" + "berty.tech/weshnet/pkg/lifecycle" ) var ( diff --git a/pkg/protocoltypes/protocoltypes.pb.go b/pkg/protocoltypes/protocoltypes.pb.go index 25527e06..18a1bd28 100644 --- a/pkg/protocoltypes/protocoltypes.pb.go +++ b/pkg/protocoltypes/protocoltypes.pb.go @@ -7941,6 +7941,9 @@ func (m *VerifiedCredentialsList) XXX_DiscardUnknown() { var xxx_messageInfo_VerifiedCredentialsList proto.InternalMessageInfo type VerifiedCredentialsList_Request struct { + FilterIdentifier string `protobuf:"bytes,1,opt,name=filter_identifier,json=filterIdentifier,proto3" json:"filter_identifier,omitempty"` + FilterIssuer string `protobuf:"bytes,2,opt,name=filter_issuer,json=filterIssuer,proto3" json:"filter_issuer,omitempty"` + ExcludeExpired bool `protobuf:"varint,3,opt,name=exclude_expired,json=excludeExpired,proto3" json:"exclude_expired,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -7979,11 +7982,32 @@ func (m *VerifiedCredentialsList_Request) XXX_DiscardUnknown() { var xxx_messageInfo_VerifiedCredentialsList_Request proto.InternalMessageInfo +func (m *VerifiedCredentialsList_Request) GetFilterIdentifier() string { + if m != nil { + return m.FilterIdentifier + } + return "" +} + +func (m *VerifiedCredentialsList_Request) GetFilterIssuer() string { + if m != nil { + return m.FilterIssuer + } + return "" +} + +func (m *VerifiedCredentialsList_Request) GetExcludeExpired() bool { + if m != nil { + return m.ExcludeExpired + } + return false +} + type VerifiedCredentialsList_Reply struct { - Credentials []*AccountVerifiedCredentialRegistered `protobuf:"bytes,1,rep,name=credentials,proto3" json:"credentials,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Credential *AccountVerifiedCredentialRegistered `protobuf:"bytes,1,opt,name=credential,proto3" json:"credential,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *VerifiedCredentialsList_Reply) Reset() { *m = VerifiedCredentialsList_Reply{} } @@ -8019,9 +8043,9 @@ func (m *VerifiedCredentialsList_Reply) XXX_DiscardUnknown() { var xxx_messageInfo_VerifiedCredentialsList_Reply proto.InternalMessageInfo -func (m *VerifiedCredentialsList_Reply) GetCredentials() []*AccountVerifiedCredentialRegistered { +func (m *VerifiedCredentialsList_Reply) GetCredential() *AccountVerifiedCredentialRegistered { if m != nil { - return m.Credentials + return m.Credential } return nil } @@ -11321,412 +11345,415 @@ func init() { func init() { proto.RegisterFile("protocoltypes.proto", fileDescriptor_8aa93e54ccb19003) } var fileDescriptor_8aa93e54ccb19003 = []byte{ - // 6480 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7d, 0x5b, 0x6c, 0x24, 0xd9, - 0x59, 0xf0, 0x56, 0xb7, 0xed, 0xee, 0xfe, 0xba, 0x6d, 0x97, 0xcf, 0x78, 0x66, 0x7a, 0x7a, 0x67, - 0xc6, 0xb3, 0x35, 0x3b, 0xd7, 0xdd, 0xb5, 0x67, 0x9d, 0xfd, 0xb3, 0xd9, 0x9d, 0xec, 0x26, 0xbe, - 0xcd, 0xfc, 0xde, 0xb9, 0xf5, 0x96, 0xc7, 0x09, 0x1b, 0x16, 0x55, 0xca, 0x55, 0xc7, 0xed, 0x8a, - 0xab, 0xab, 0x2a, 0x55, 0xd5, 0xf6, 0x38, 0x22, 0x28, 0x0a, 0x64, 0x93, 0x88, 0x00, 0xb9, 0x10, - 0x84, 0x94, 0x08, 0xf1, 0xc0, 0x1b, 0x0a, 0xa0, 0x08, 0xad, 0x84, 0xc4, 0x13, 0x4f, 0x04, 0x85, - 0x28, 0x4f, 0x79, 0x41, 0x32, 0xc1, 0x4f, 0x41, 0x42, 0x08, 0x44, 0xe0, 0x01, 0x50, 0x84, 0xce, - 0xad, 0x2e, 0xdd, 0x55, 0x7d, 0xb1, 0x67, 0xc5, 0x03, 0x4f, 0xd3, 0xe7, 0xd4, 0x77, 0x3b, 0xdf, - 0xf9, 0xce, 0x39, 0xdf, 0xf9, 0xce, 0xf7, 0x79, 0xe0, 0x94, 0xe7, 0xbb, 0xa1, 0x6b, 0xb8, 0x76, - 0x78, 0xe0, 0xe1, 0x60, 0x9e, 0xb6, 0xd0, 0xa9, 0x7d, 0x1c, 0xec, 0x38, 0x38, 0x9c, 0x17, 0x1f, - 0xe7, 0xf7, 0x5e, 0x6e, 0xcc, 0xb6, 0xdc, 0x96, 0x4b, 0x3b, 0x16, 0xc8, 0x2f, 0xf6, 0xad, 0x71, - 0xce, 0xeb, 0x04, 0x3b, 0x14, 0x77, 0x21, 0xfa, 0xc5, 0x3e, 0x29, 0x7f, 0x2b, 0x41, 0x69, 0xc9, - 0x30, 0xdc, 0x8e, 0x13, 0xa2, 0x5b, 0x30, 0xde, 0xf2, 0xdd, 0x8e, 0x57, 0x97, 0x2e, 0x49, 0xd7, - 0xab, 0x8b, 0x8d, 0xf9, 0x0c, 0x0e, 0xf3, 0x77, 0x09, 0x84, 0xca, 0x00, 0xd1, 0x3c, 0x9c, 0xd2, - 0x19, 0xb2, 0xe6, 0xf9, 0xd6, 0x9e, 0x1e, 0x62, 0x6d, 0x17, 0x1f, 0xd4, 0x0b, 0x97, 0xa4, 0xeb, - 0x35, 0x75, 0x86, 0x7f, 0x6a, 0xb2, 0x2f, 0xf7, 0xf0, 0x01, 0xba, 0x09, 0x33, 0xba, 0x6d, 0xe9, - 0x41, 0x0a, 0xba, 0x48, 0xa1, 0xa7, 0xe9, 0x87, 0x04, 0xec, 0x2b, 0x70, 0xc6, 0xeb, 0x6c, 0xd9, - 0x96, 0xa1, 0xf9, 0xd8, 0x31, 0xf1, 0xe7, 0xf6, 0xdc, 0x4e, 0xa0, 0x05, 0x18, 0x9b, 0xf5, 0x31, - 0x8a, 0x30, 0xcb, 0xbe, 0xaa, 0xd1, 0xc7, 0x0d, 0x8c, 0x4d, 0xe5, 0xe7, 0x12, 0x8c, 0x53, 0x11, - 0xd1, 0x05, 0x00, 0x8e, 0x4f, 0x98, 0x48, 0x14, 0xa7, 0xc2, 0x7a, 0x08, 0xf9, 0x33, 0x30, 0x11, - 0x60, 0xc3, 0xc7, 0x21, 0x97, 0x96, 0xb7, 0x08, 0x1a, 0xfb, 0xa5, 0x05, 0x56, 0x8b, 0xcb, 0x56, - 0x61, 0x3d, 0x1b, 0x56, 0x0b, 0xbd, 0x01, 0x40, 0x87, 0xae, 0x11, 0x25, 0x52, 0x49, 0xa6, 0x16, - 0x2f, 0xe6, 0x2b, 0xea, 0xf1, 0x81, 0x87, 0xd5, 0x4a, 0x4b, 0xfc, 0x44, 0xe7, 0xa0, 0x1c, 0x58, - 0x2d, 0x47, 0xf3, 0x3a, 0x5b, 0xf5, 0x71, 0x4a, 0xbb, 0x44, 0xda, 0xcd, 0xce, 0x16, 0xf9, 0x64, - 0x5b, 0xce, 0x2e, 0x95, 0x76, 0x82, 0x7d, 0x22, 0x6d, 0x22, 0xeb, 0x25, 0xa8, 0x89, 0x4f, 0x54, - 0xaa, 0x12, 0xfd, 0x0c, 0xfc, 0xf3, 0x86, 0xd5, 0x52, 0xfe, 0x5d, 0x02, 0x99, 0x32, 0xfc, 0xff, - 0x58, 0x37, 0x83, 0xb5, 0x27, 0x9e, 0xeb, 0x87, 0x83, 0x34, 0x90, 0x94, 0xa5, 0x90, 0x96, 0x65, - 0x0d, 0x4e, 0xb5, 0x71, 0xa8, 0x9b, 0x7a, 0xa8, 0x6b, 0x3b, 0x84, 0xa2, 0x66, 0x58, 0x66, 0x50, - 0x2f, 0x5e, 0x2a, 0x5e, 0xaf, 0x2d, 0x9f, 0x3e, 0x3a, 0x9c, 0x9b, 0x79, 0xc0, 0x3f, 0x53, 0x7e, - 0x2b, 0xeb, 0xab, 0x81, 0x3a, 0xd3, 0x4e, 0x75, 0x59, 0x66, 0xc0, 0xc8, 0x04, 0x81, 0xde, 0xc2, - 0x41, 0x92, 0xcc, 0x58, 0x92, 0x0c, 0xfb, 0x9c, 0x22, 0x93, 0xec, 0x22, 0x64, 0x92, 0x9a, 0x19, - 0x4f, 0x69, 0x46, 0xf9, 0x91, 0x04, 0x93, 0x74, 0xdc, 0x42, 0x1e, 0x32, 0x41, 0x78, 0x0f, 0x3b, - 0x21, 0x9b, 0x20, 0xa9, 0xcf, 0x04, 0xad, 0x11, 0x30, 0x36, 0x41, 0x58, 0xfc, 0x44, 0x75, 0x28, - 0x79, 0xfa, 0x81, 0xed, 0xea, 0xa6, 0xd0, 0x09, 0x6f, 0x22, 0x19, 0x8a, 0xb1, 0x45, 0x90, 0x9f, - 0x48, 0x85, 0x19, 0x41, 0x4f, 0x13, 0x83, 0xa7, 0x26, 0x51, 0x5d, 0xbc, 0x92, 0xc9, 0xb1, 0xc9, - 0x7f, 0x0b, 0x61, 0x55, 0xd9, 0xeb, 0xea, 0x51, 0x96, 0xf8, 0x78, 0xd6, 0x9c, 0x3d, 0x6c, 0xbb, - 0x1e, 0x46, 0xb3, 0x30, 0xee, 0xb8, 0x8e, 0x81, 0xf9, 0xfc, 0xb1, 0x06, 0xe9, 0xa5, 0x32, 0x73, - 0x21, 0x59, 0xe3, 0xad, 0xb1, 0x72, 0x51, 0x1e, 0x53, 0xfe, 0x4d, 0x82, 0x29, 0xae, 0x57, 0xa2, - 0x43, 0xec, 0x07, 0x64, 0x54, 0x74, 0x29, 0x62, 0x9f, 0x92, 0x19, 0x53, 0x45, 0x13, 0xdd, 0x80, - 0x8a, 0x89, 0xf7, 0x2c, 0x03, 0x6b, 0xde, 0x2e, 0x23, 0xb6, 0x5c, 0x3b, 0x3a, 0x9c, 0x2b, 0xaf, - 0xd2, 0xce, 0xe6, 0x3d, 0xb5, 0xcc, 0x3e, 0x37, 0x77, 0x33, 0x14, 0xf0, 0x00, 0xca, 0x89, 0x71, - 0x17, 0xaf, 0x57, 0x17, 0x5f, 0xce, 0x1c, 0x77, 0x5a, 0x9a, 0x79, 0x31, 0xd8, 0x35, 0x27, 0xf4, - 0x0f, 0xd4, 0x88, 0x44, 0xe3, 0x36, 0x4c, 0xa6, 0x3e, 0x11, 0x8e, 0xc2, 0x72, 0x2b, 0x2a, 0xf9, - 0x49, 0xc6, 0xbd, 0xa7, 0xdb, 0x1d, 0x4c, 0x45, 0xad, 0xa8, 0xac, 0xf1, 0x7a, 0xe1, 0x23, 0x92, - 0x52, 0x07, 0xb9, 0x5b, 0xbd, 0x6f, 0x8d, 0x95, 0x25, 0xb9, 0xa0, 0xfc, 0x86, 0x04, 0xf2, 0x9a, - 0x63, 0xf8, 0x07, 0x5e, 0x88, 0x4d, 0x2e, 0x0a, 0x3a, 0x0f, 0x15, 0xcf, 0xd6, 0x2d, 0x27, 0xc4, - 0x4f, 0xc2, 0x68, 0x69, 0x88, 0x8e, 0xec, 0x99, 0x2d, 0x9c, 0x6c, 0x66, 0x3d, 0x98, 0xe6, 0xcc, - 0xa3, 0xb9, 0xbd, 0x06, 0xd3, 0xdc, 0xda, 0xe9, 0xf2, 0xc0, 0x7e, 0xc0, 0x45, 0x99, 0x6a, 0xf7, - 0xcc, 0x1f, 0xef, 0x11, 0x56, 0xc9, 0x9b, 0xb1, 0x79, 0x14, 0x13, 0xe6, 0xf1, 0xd6, 0x58, 0x79, - 0x4c, 0x1e, 0x57, 0xbe, 0x28, 0x41, 0x8d, 0x1a, 0xf9, 0x8a, 0xcb, 0x86, 0x75, 0x06, 0x0a, 0x96, - 0xc9, 0x58, 0x2c, 0x4f, 0x1c, 0x1d, 0xce, 0x15, 0xd6, 0x57, 0xd5, 0x82, 0x65, 0xa2, 0x17, 0x01, - 0x3c, 0xdd, 0x27, 0x8b, 0x86, 0x2c, 0xcf, 0x02, 0x5d, 0x9e, 0x93, 0x47, 0x87, 0x73, 0x95, 0x26, - 0xed, 0x25, 0xcb, 0xb2, 0xc2, 0x00, 0xd6, 0xcd, 0x00, 0x5d, 0x85, 0x32, 0xdb, 0x02, 0xbd, 0x5d, - 0xc6, 0x75, 0xb9, 0x7a, 0x74, 0x38, 0x57, 0xa2, 0x66, 0xdb, 0xbc, 0xa7, 0x96, 0xe8, 0xc7, 0xe6, - 0x2e, 0x17, 0x42, 0x85, 0xea, 0x92, 0x17, 0x2f, 0xcf, 0x94, 0xbd, 0x49, 0x7d, 0xed, 0x2d, 0x77, - 0xd0, 0x4a, 0x0b, 0x10, 0x19, 0x92, 0x6e, 0x84, 0x4b, 0xa6, 0xb9, 0x44, 0xce, 0x0d, 0xb2, 0x9f, - 0x8d, 0x40, 0xfa, 0x2a, 0x94, 0xf9, 0x39, 0x24, 0x8c, 0x9e, 0x0e, 0x81, 0x92, 0x22, 0x43, 0x60, - 0x67, 0xd1, 0xae, 0xf2, 0x9b, 0x12, 0xcc, 0xd2, 0x71, 0x2d, 0x99, 0xe6, 0x03, 0xdc, 0xde, 0xc2, - 0x3e, 0x23, 0x46, 0x78, 0xb5, 0x69, 0xbb, 0x8b, 0x17, 0x03, 0x22, 0xbc, 0xd8, 0xe7, 0xe6, 0xee, - 0x28, 0x2b, 0xec, 0x02, 0x00, 0xa7, 0x9a, 0x38, 0x7b, 0x58, 0x0f, 0xd9, 0xe4, 0xd7, 0xa0, 0xc6, - 0x90, 0x36, 0xd8, 0x51, 0xf5, 0x2c, 0x54, 0x8c, 0x1d, 0xdd, 0x72, 0x12, 0xdb, 0x7b, 0x99, 0x76, - 0x10, 0x6d, 0x24, 0x96, 0x7c, 0x21, 0xb5, 0xe4, 0x95, 0x6f, 0x25, 0x06, 0x95, 0xa2, 0x37, 0x82, - 0x02, 0x3f, 0x0c, 0x53, 0x26, 0x0e, 0x42, 0x2d, 0x56, 0x02, 0x1b, 0x99, 0x7c, 0x74, 0x38, 0x57, - 0x5b, 0xc5, 0x41, 0x18, 0x29, 0xa2, 0x66, 0xc6, 0xad, 0xdd, 0xe4, 0xf6, 0x5a, 0x4c, 0x6d, 0xaf, - 0xca, 0xb7, 0x25, 0xb8, 0xf4, 0xa0, 0x63, 0x87, 0x16, 0x83, 0x15, 0x02, 0xd2, 0x29, 0x51, 0x71, - 0xe0, 0xda, 0x7b, 0xdd, 0xbb, 0x55, 0x7f, 0x09, 0xaf, 0xc0, 0x14, 0x9b, 0x62, 0x9f, 0x23, 0x73, - 0x23, 0x9a, 0xd4, 0x53, 0x14, 0xe7, 0xa0, 0x2a, 0x3c, 0x12, 0xd7, 0xdd, 0xe6, 0x42, 0x01, 0xf7, - 0x45, 0x5c, 0x77, 0x5b, 0xf9, 0xb2, 0x04, 0xe7, 0x52, 0x72, 0xe9, 0x4e, 0xb8, 0x64, 0xb6, 0x2d, - 0x47, 0x75, 0x6d, 0x3c, 0x8a, 0x40, 0x1f, 0x83, 0x99, 0x16, 0x41, 0xc6, 0xb8, 0x47, 0x6b, 0xa7, - 0x8e, 0x0e, 0xe7, 0xa6, 0xef, 0xb2, 0x8f, 0x91, 0xe2, 0xa6, 0x5b, 0xa9, 0x8e, 0x5d, 0x65, 0x0d, - 0xea, 0x09, 0x41, 0xd6, 0x1d, 0x2b, 0xb4, 0x74, 0x9b, 0x35, 0x46, 0xb0, 0x47, 0x45, 0x87, 0x4b, - 0x91, 0x72, 0x4d, 0xd3, 0x0a, 0x2d, 0xd7, 0xd1, 0xed, 0xb4, 0x17, 0x35, 0xca, 0xb0, 0x10, 0x8c, - 0x51, 0xa7, 0x8c, 0x69, 0x97, 0xfe, 0x56, 0x4c, 0xb8, 0xcc, 0xdc, 0x44, 0xdc, 0x76, 0xf7, 0xf0, - 0x07, 0xc5, 0xe5, 0xb3, 0x80, 0xb8, 0xe7, 0x4a, 0x99, 0xbd, 0xe5, 0x5a, 0xce, 0x68, 0x44, 0x23, - 0x7f, 0xb7, 0x30, 0xa4, 0xbf, 0xab, 0x60, 0x90, 0x93, 0x2c, 0xef, 0xe3, 0xed, 0x70, 0xc4, 0x6d, - 0x27, 0xda, 0x39, 0x0b, 0xf9, 0x3b, 0xa7, 0xf2, 0x16, 0x5c, 0xe0, 0x6c, 0xf8, 0x36, 0xa7, 0xe2, - 0xcf, 0x76, 0x70, 0x10, 0xae, 0x5a, 0x81, 0xbe, 0x65, 0x8f, 0x34, 0x48, 0x65, 0x1d, 0xce, 0x67, - 0xd2, 0x5a, 0x73, 0x46, 0x26, 0xf5, 0x9e, 0x04, 0x97, 0x33, 0x69, 0xa9, 0x78, 0x1b, 0xfb, 0xd8, - 0x31, 0xb0, 0x8a, 0x83, 0xd1, 0xf6, 0x91, 0x7c, 0x27, 0xbf, 0xd0, 0xc7, 0xc9, 0xff, 0x89, 0x94, - 0xa3, 0xa0, 0x35, 0xe7, 0xb3, 0x1d, 0xdc, 0x19, 0xcd, 0x0a, 0x86, 0x9c, 0x14, 0xf4, 0x31, 0xb2, - 0xa1, 0x52, 0x66, 0x74, 0x97, 0xc8, 0xf3, 0x04, 0x36, 0x76, 0x74, 0x1f, 0x13, 0xd5, 0x0a, 0xc9, - 0x04, 0x16, 0x7a, 0x0e, 0x6a, 0xee, 0xbe, 0x93, 0xf6, 0x14, 0x6b, 0x6a, 0xd5, 0xdd, 0x77, 0x22, - 0x1f, 0x21, 0x84, 0x73, 0x99, 0xe3, 0xda, 0xc0, 0xce, 0x48, 0x6a, 0x7d, 0x11, 0x80, 0x73, 0x8d, - 0x47, 0x45, 0x0f, 0x74, 0x4e, 0xb6, 0x79, 0x4f, 0xad, 0x70, 0x80, 0xe6, 0xae, 0xf2, 0x77, 0x79, - 0xea, 0x54, 0xb1, 0x81, 0xad, 0xbd, 0xd1, 0xd4, 0x39, 0x12, 0x6b, 0xf4, 0x61, 0x38, 0x2b, 0xa0, - 0xbb, 0x0d, 0x80, 0x6d, 0xc5, 0xa7, 0x0d, 0x21, 0x51, 0xd7, 0xd6, 0x21, 0x0b, 0xbc, 0x2e, 0x7d, - 0x4e, 0xf3, 0xfe, 0x48, 0xa7, 0x07, 0x70, 0x31, 0x6f, 0x31, 0x19, 0xba, 0x6f, 0x7e, 0x80, 0xa3, - 0x53, 0xfe, 0x30, 0x4f, 0xb1, 0x4b, 0x86, 0x81, 0x89, 0x37, 0xfa, 0xc1, 0x29, 0x76, 0x48, 0x27, - 0x4d, 0xf1, 0xe0, 0x74, 0x5a, 0xc2, 0x65, 0xdb, 0x35, 0x76, 0x3f, 0x48, 0xa5, 0xf8, 0x70, 0x36, - 0xcd, 0x71, 0xd3, 0xd9, 0xfa, 0xa0, 0x79, 0xfe, 0x96, 0x04, 0x75, 0xce, 0x74, 0x03, 0xfb, 0x84, - 0xc4, 0x63, 0x77, 0x17, 0x3b, 0x4b, 0xe6, 0x88, 0xd3, 0x7f, 0x07, 0x26, 0x03, 0x86, 0xaf, 0x85, - 0x84, 0x00, 0x3f, 0x39, 0x9e, 0xcb, 0xde, 0x09, 0x12, 0x9c, 0xd4, 0x5a, 0x90, 0x68, 0x29, 0x2e, - 0x34, 0x32, 0xc4, 0x61, 0xc7, 0xe5, 0xa8, 0x9b, 0x17, 0x15, 0x44, 0xb3, 0xd8, 0x8e, 0x59, 0x61, - 0xd3, 0x4c, 0xc9, 0xad, 0xaf, 0xaa, 0x25, 0xfa, 0x71, 0xdd, 0x54, 0xbe, 0x2f, 0xe2, 0x03, 0x2a, - 0xf6, 0x6c, 0xcb, 0xd0, 0x43, 0xcb, 0x69, 0x8d, 0xc2, 0x67, 0x15, 0x90, 0xde, 0x09, 0x77, 0xb0, - 0x13, 0x52, 0x64, 0xd7, 0xd1, 0x3a, 0xbe, 0xcd, 0x39, 0xd2, 0x8b, 0xfc, 0x52, 0xea, 0xeb, 0xa6, - 0x7a, 0x5f, 0x9d, 0x49, 0x23, 0x6c, 0xfa, 0x36, 0x7a, 0x09, 0x90, 0x2f, 0xf8, 0xbb, 0x8e, 0x46, - 0x54, 0x82, 0x7d, 0x6a, 0x9e, 0x15, 0x75, 0x26, 0xf1, 0x65, 0x83, 0x7e, 0x50, 0x1e, 0x00, 0x5a, - 0x77, 0x82, 0x50, 0x77, 0x0c, 0xcc, 0x22, 0x1a, 0xab, 0xe4, 0x96, 0x58, 0x81, 0x12, 0x5f, 0x45, - 0x8d, 0x17, 0x61, 0x9c, 0x8c, 0xe7, 0x00, 0x5d, 0x86, 0x49, 0x4c, 0x21, 0xb0, 0xa9, 0xd1, 0xbd, - 0x80, 0x79, 0xc3, 0x35, 0xd1, 0x49, 0x10, 0x95, 0xff, 0x9c, 0x80, 0xba, 0xa0, 0x77, 0x17, 0x13, - 0xeb, 0xdb, 0xb6, 0x5a, 0x1d, 0x9f, 0x72, 0x4c, 0x52, 0xfd, 0xea, 0x84, 0x20, 0xfb, 0x22, 0x40, - 0x14, 0xde, 0x12, 0x1a, 0xa2, 0x46, 0xc6, 0x27, 0x8f, 0x18, 0x99, 0x08, 0x72, 0x8d, 0xe4, 0xe8, - 0x7f, 0x14, 0x64, 0x41, 0xb8, 0x6b, 0x95, 0xa2, 0xa3, 0xc3, 0xb9, 0xa9, 0xa4, 0x8f, 0xd1, 0xbc, - 0xa7, 0x4e, 0xe9, 0xc9, 0xf6, 0x2e, 0xba, 0x0c, 0x25, 0x0f, 0x63, 0x9f, 0xcc, 0xf9, 0x18, 0x9d, - 0x01, 0x38, 0x3a, 0x9c, 0x9b, 0x68, 0x62, 0xec, 0xaf, 0xaf, 0xaa, 0x13, 0xe4, 0xd3, 0xba, 0x49, - 0x2e, 0xb8, 0xb6, 0x15, 0x84, 0xd8, 0x21, 0xb7, 0xca, 0xf1, 0x4b, 0xc5, 0xeb, 0x15, 0x35, 0xee, - 0x40, 0xbf, 0x0c, 0xd5, 0x2d, 0x1b, 0x6b, 0x98, 0x39, 0x01, 0x34, 0xde, 0x34, 0xb5, 0xf8, 0x7a, - 0xa6, 0x19, 0xe7, 0xa9, 0x6c, 0x7e, 0x03, 0x87, 0xc4, 0x8c, 0x36, 0x42, 0x3d, 0xc4, 0x2a, 0x6c, - 0xd9, 0x58, 0xb8, 0x14, 0x26, 0xc8, 0xfb, 0xd6, 0xb6, 0xa5, 0x79, 0x8b, 0x5e, 0xc4, 0xa1, 0x74, - 0x62, 0x0e, 0x53, 0x84, 0x66, 0x73, 0xd1, 0x13, 0x5c, 0x7e, 0x05, 0x6a, 0x6d, 0xd3, 0x09, 0x22, - 0x0e, 0xe5, 0x13, 0x73, 0xa8, 0x12, 0x7a, 0x82, 0xbc, 0x06, 0x93, 0x3e, 0xb6, 0xf5, 0x83, 0x88, - 0x7e, 0xe5, 0xc4, 0xf4, 0x6b, 0x94, 0xa0, 0x60, 0xf0, 0x18, 0x66, 0x84, 0xb9, 0x74, 0x82, 0x1d, - 0xbe, 0x9f, 0x00, 0xdd, 0x4f, 0xae, 0x67, 0xc7, 0x18, 0x3a, 0xc1, 0x0e, 0xdf, 0x2e, 0xf8, 0xc1, - 0xec, 0xab, 0xd3, 0xdc, 0xa4, 0x3a, 0xc1, 0x0e, 0x5d, 0xf3, 0xe8, 0x01, 0xa0, 0x24, 0x55, 0xbe, - 0xc4, 0xaa, 0x94, 0xec, 0x5c, 0x5f, 0xb2, 0xd8, 0x57, 0xe5, 0x98, 0x1a, 0x5f, 0x82, 0x77, 0xa1, - 0x96, 0x1c, 0x02, 0xaa, 0x42, 0x69, 0xd3, 0xd9, 0x75, 0xdc, 0x7d, 0x47, 0x7e, 0x86, 0x34, 0xf8, - 0x60, 0x64, 0x09, 0xd5, 0xa0, 0x2c, 0xdc, 0x53, 0xb9, 0x80, 0xa6, 0xa1, 0xba, 0xe9, 0xe8, 0x7b, - 0xba, 0x65, 0x93, 0x1e, 0xb9, 0xa8, 0x7c, 0x1e, 0xce, 0xe6, 0xf8, 0x8c, 0xc9, 0xa5, 0xf7, 0x49, - 0xb1, 0xf2, 0xf2, 0xfd, 0x42, 0x29, 0xdf, 0x2f, 0x24, 0xb7, 0x4b, 0x31, 0x5b, 0x64, 0xfd, 0x95, - 0x55, 0xd1, 0x54, 0x5e, 0x80, 0xd3, 0x99, 0xae, 0x74, 0x92, 0x79, 0x89, 0x33, 0x57, 0x3e, 0x0d, - 0xb3, 0x59, 0xbe, 0x72, 0x12, 0xf6, 0x8d, 0x13, 0x09, 0xaa, 0xec, 0xc0, 0xf9, 0x6e, 0x6d, 0x04, - 0x38, 0x5b, 0x25, 0x27, 0xe4, 0xf4, 0x35, 0x29, 0x8a, 0x95, 0xc4, 0xbe, 0xa4, 0xd9, 0x68, 0x47, - 0x0c, 0x92, 0x7e, 0xad, 0xf4, 0x54, 0xfc, 0xda, 0x42, 0x8f, 0x5f, 0x1b, 0xab, 0xf6, 0x97, 0xba, - 0x55, 0xcb, 0x3c, 0xa1, 0xc6, 0xab, 0xb1, 0x3c, 0xe9, 0x93, 0x5d, 0xea, 0x7f, 0xb2, 0xc7, 0x94, - 0xdf, 0xc9, 0x98, 0x61, 0xe2, 0xdf, 0x3d, 0x05, 0xd2, 0x4d, 0xa8, 0x25, 0x9d, 0xa3, 0xa7, 0x40, - 0x51, 0x85, 0xa9, 0xb4, 0xf3, 0xf3, 0x14, 0x68, 0xbe, 0x0d, 0xa7, 0x44, 0x50, 0x8c, 0x47, 0xc4, - 0xe8, 0x4c, 0xbf, 0x1c, 0x13, 0x4e, 0xfa, 0x84, 0x52, 0xbe, 0x4f, 0x18, 0x93, 0x7c, 0x0c, 0x67, - 0xba, 0x43, 0x32, 0x2b, 0x3e, 0xd6, 0xc3, 0x94, 0x81, 0x2e, 0x08, 0x03, 0x1d, 0x92, 0xbc, 0xf2, - 0x2e, 0xcc, 0x76, 0x53, 0x25, 0x77, 0xf7, 0xc6, 0xed, 0x58, 0xd2, 0x91, 0x5f, 0xa2, 0x62, 0x99, - 0x37, 0xe0, 0x74, 0x37, 0xf5, 0xfb, 0x58, 0xdf, 0xc3, 0x27, 0x52, 0x84, 0x01, 0x57, 0x7a, 0x62, - 0x53, 0xc9, 0x30, 0x12, 0xb1, 0x35, 0xdb, 0x0d, 0x4e, 0xc6, 0xe4, 0xcb, 0x12, 0x5c, 0xec, 0x8d, - 0x80, 0xf1, 0x48, 0x13, 0x8d, 0x0e, 0x35, 0xde, 0x1d, 0x99, 0x7c, 0x3a, 0x32, 0x54, 0xe8, 0x17, - 0x19, 0x8a, 0x25, 0xf9, 0x7a, 0x46, 0x2c, 0x6e, 0xdd, 0xd9, 0xb3, 0x42, 0x7a, 0xa8, 0x71, 0x13, - 0x38, 0xc6, 0x50, 0x5f, 0x13, 0xa6, 0x32, 0xf2, 0xfc, 0x2a, 0x5f, 0x91, 0x60, 0x3a, 0x11, 0x47, - 0xa6, 0xa6, 0xfd, 0xf6, 0xe8, 0xda, 0xc8, 0x7d, 0xde, 0x61, 0x6f, 0x27, 0x0d, 0x45, 0x48, 0x78, - 0x0e, 0x8a, 0x46, 0x14, 0x2b, 0x2f, 0x1d, 0x1d, 0xce, 0x15, 0x57, 0xd6, 0x57, 0x55, 0xd2, 0x47, - 0xe6, 0x69, 0x8a, 0x8a, 0x42, 0x83, 0xd1, 0xff, 0x9b, 0x92, 0x7c, 0x5f, 0x02, 0x94, 0x7a, 0xfd, - 0xa2, 0xd1, 0x7e, 0x72, 0x4b, 0x61, 0x4f, 0x60, 0x86, 0x1b, 0xbf, 0x6f, 0xe4, 0xdd, 0x52, 0x92, - 0x0f, 0x04, 0x6a, 0x0d, 0x27, 0x9f, 0x0b, 0xde, 0x4c, 0x3c, 0xef, 0xb0, 0x8b, 0x8e, 0x92, 0x3f, - 0x51, 0xd1, 0xcb, 0x47, 0x84, 0x13, 0x3f, 0x52, 0x15, 0x13, 0x8f, 0x54, 0xca, 0x9f, 0x4b, 0x30, - 0xc3, 0x31, 0xd8, 0x6b, 0xc8, 0x53, 0x95, 0xf9, 0x0d, 0x28, 0x89, 0xa7, 0x14, 0x26, 0xf2, 0xe5, - 0x21, 0x5e, 0xa4, 0x54, 0x81, 0x93, 0x7c, 0x73, 0x28, 0xa6, 0xdf, 0x1c, 0xfe, 0x23, 0x16, 0x9b, - 0x0d, 0xef, 0xbe, 0x15, 0x84, 0x8d, 0x9f, 0x4a, 0xa3, 0xcf, 0xfc, 0x55, 0x28, 0x07, 0x96, 0x63, - 0x60, 0x71, 0x67, 0xe3, 0x70, 0x1b, 0xa4, 0x8f, 0xdc, 0xd9, 0xe8, 0xc7, 0x75, 0x13, 0x3d, 0x0b, - 0x15, 0x06, 0xe7, 0xb8, 0xfb, 0x54, 0x9a, 0xb2, 0xca, 0x10, 0x1f, 0xba, 0xfb, 0x84, 0x48, 0xc7, - 0x09, 0x2d, 0x5b, 0x5c, 0x02, 0x38, 0x91, 0x4d, 0xd2, 0x47, 0x88, 0xd0, 0x8f, 0x8c, 0x08, 0x83, - 0x23, 0x44, 0xc6, 0x19, 0x11, 0xda, 0x41, 0x88, 0x5c, 0x26, 0x3e, 0xee, 0x1e, 0xf6, 0x03, 0xac, - 0xb9, 0xbe, 0x89, 0x7d, 0x7a, 0x0f, 0x28, 0x13, 0x3f, 0x95, 0x76, 0x3e, 0x22, 0x7d, 0xf1, 0xd3, - 0x32, 0xd7, 0xd9, 0xff, 0x95, 0x71, 0xff, 0x42, 0x82, 0x0a, 0xdf, 0xf9, 0xb6, 0xdd, 0x86, 0x36, - 0xfa, 0x78, 0x47, 0x0a, 0x51, 0x34, 0x7e, 0x47, 0x3a, 0xf6, 0xe6, 0x38, 0xc2, 0x1e, 0x9f, 0xbe, - 0xa4, 0x16, 0xfb, 0x86, 0x7b, 0x3f, 0x03, 0x93, 0x4b, 0x46, 0x48, 0xf3, 0x31, 0x28, 0xb7, 0x46, - 0x73, 0x74, 0x1d, 0x5c, 0x00, 0xb0, 0x5d, 0x43, 0xb7, 0x35, 0xd7, 0xb1, 0x0f, 0xb8, 0x53, 0x5e, - 0xa1, 0x3d, 0x8f, 0x1c, 0xfb, 0x20, 0x3e, 0x71, 0x1e, 0xc0, 0xf4, 0x2a, 0xd6, 0x53, 0xdc, 0x4e, - 0x72, 0x94, 0x7e, 0x7d, 0x9c, 0x2f, 0x56, 0xfe, 0xbe, 0x15, 0xea, 0x61, 0x27, 0x38, 0x0e, 0xc5, - 0xef, 0x16, 0xc5, 0xac, 0x7c, 0x0c, 0xc6, 0x12, 0x19, 0x05, 0x2f, 0xe4, 0x4f, 0x4a, 0x92, 0xe5, - 0x3c, 0x4d, 0x2f, 0xa0, 0x88, 0xd9, 0x4f, 0xf6, 0x8d, 0x1f, 0x48, 0x30, 0x49, 0x6e, 0xee, 0x2b, - 0xae, 0xe3, 0x60, 0x23, 0xc4, 0x66, 0xf2, 0x76, 0x2f, 0xe5, 0xde, 0xee, 0x47, 0x88, 0x35, 0x34, - 0x01, 0x42, 0x5f, 0x77, 0x02, 0xcf, 0xf5, 0x43, 0x96, 0xc2, 0x31, 0xb5, 0x78, 0x6b, 0x58, 0xf1, - 0x05, 0xa2, 0x9a, 0xa0, 0x81, 0xce, 0xc0, 0x44, 0x5b, 0x37, 0x4d, 0x9f, 0x65, 0x72, 0x54, 0x54, - 0xde, 0x6a, 0xbc, 0x0a, 0x32, 0x11, 0x53, 0xc5, 0x06, 0x1b, 0x8c, 0xe5, 0xb4, 0x86, 0x1a, 0x8d, - 0x40, 0x24, 0x5e, 0xd4, 0x48, 0x6a, 0x50, 0xb6, 0x60, 0x8c, 0x66, 0x6d, 0x4c, 0x43, 0x95, 0xfc, - 0x1b, 0x5f, 0x4d, 0xeb, 0x30, 0x4b, 0x3a, 0xba, 0xa9, 0xca, 0x12, 0x3a, 0x0d, 0x33, 0xe2, 0x4b, - 0xa4, 0x73, 0xb9, 0x90, 0x44, 0x48, 0xca, 0x2f, 0x17, 0x95, 0x35, 0xa8, 0x44, 0x6a, 0x40, 0x53, - 0x00, 0x8f, 0xbd, 0x30, 0xe6, 0x03, 0x30, 0xf1, 0xd8, 0x0b, 0xef, 0x2f, 0x3d, 0x94, 0x25, 0xfe, - 0xfb, 0x93, 0x4b, 0x0f, 0xe5, 0x02, 0x92, 0xa1, 0xf6, 0xd8, 0x0b, 0x9b, 0xbe, 0xfb, 0xc4, 0x6a, - 0x5b, 0xe1, 0x81, 0x5c, 0x54, 0xfe, 0x46, 0x22, 0x26, 0xbe, 0xd5, 0x69, 0x91, 0xfd, 0x93, 0x6a, - 0x3a, 0x48, 0x7a, 0xd1, 0x7f, 0x2c, 0x8d, 0xe8, 0x46, 0xa3, 0xfb, 0xa9, 0x4c, 0xa4, 0xc2, 0x30, - 0x99, 0x48, 0x6c, 0xfb, 0xc9, 0x4c, 0x4c, 0x4a, 0x6f, 0x56, 0xc5, 0x01, 0xf1, 0xd4, 0xdf, 0x2e, - 0xc2, 0x19, 0x3a, 0x98, 0x75, 0x27, 0xf0, 0xb0, 0xc1, 0xc6, 0xb3, 0x11, 0xba, 0x3e, 0x6e, 0x7c, - 0xe5, 0x18, 0x27, 0xc3, 0x26, 0x94, 0x6d, 0xb7, 0x95, 0x1c, 0xc8, 0x4b, 0x99, 0x03, 0xe9, 0x61, - 0x79, 0xdf, 0x6d, 0xd1, 0x71, 0x51, 0xb2, 0xbc, 0xa1, 0x96, 0x6c, 0xf6, 0xa3, 0xf1, 0x33, 0x69, - 0xb0, 0x0f, 0x85, 0x16, 0xa0, 0xca, 0x73, 0x1f, 0x8c, 0x38, 0xf9, 0x61, 0xea, 0xe8, 0x70, 0x0e, - 0x58, 0xf2, 0x03, 0x4d, 0x4a, 0xe2, 0xe9, 0x11, 0x34, 0x1b, 0xe9, 0x61, 0x22, 0x37, 0x2a, 0x91, - 0x69, 0x54, 0x1c, 0x2a, 0xd3, 0x28, 0x4a, 0x92, 0x8a, 0xba, 0xd2, 0x4b, 0x79, 0x6c, 0x50, 0x46, - 0x84, 0xf0, 0x19, 0x27, 0xd2, 0xaf, 0xe7, 0x1e, 0x00, 0x55, 0xce, 0xb1, 0xb7, 0xce, 0xe4, 0x2d, - 0x8e, 0xaf, 0xbb, 0xa0, 0x2e, 0x91, 0xe5, 0xcd, 0x10, 0xd8, 0xc2, 0x0b, 0xd4, 0x12, 0x5b, 0x79, - 0x81, 0xf2, 0x47, 0x05, 0x98, 0x5d, 0xea, 0x84, 0x3b, 0x6b, 0x4f, 0x8c, 0x1d, 0xdd, 0x69, 0x61, - 0x15, 0x07, 0x9e, 0xeb, 0x04, 0x18, 0x3d, 0x07, 0x35, 0xdd, 0x30, 0x70, 0x10, 0xf0, 0x90, 0x16, - 0xcb, 0xde, 0xa9, 0xb2, 0x3e, 0x16, 0xa4, 0x9a, 0x85, 0xf1, 0xc0, 0x70, 0xbd, 0x28, 0x8b, 0x87, - 0x36, 0xe8, 0x06, 0xe9, 0xfb, 0xae, 0x08, 0x08, 0xb3, 0x06, 0x7a, 0x01, 0x66, 0xe8, 0x0f, 0xcd, - 0xc4, 0x81, 0xe1, 0x5b, 0x1e, 0xb9, 0x81, 0xb0, 0xb0, 0xa7, 0x2a, 0xd3, 0x0f, 0xab, 0x71, 0x3f, - 0xda, 0x80, 0x32, 0x8f, 0xb3, 0xb3, 0x98, 0x67, 0x75, 0xf1, 0xd5, 0xcc, 0x09, 0xc9, 0x12, 0x5c, - 0xc4, 0xeb, 0x03, 0x9e, 0x96, 0x24, 0x08, 0x35, 0x6e, 0xc3, 0x64, 0xea, 0xd3, 0x48, 0x69, 0x49, - 0xef, 0x4b, 0x50, 0xa7, 0x33, 0x43, 0x58, 0x72, 0x32, 0x1b, 0x38, 0xa4, 0x7a, 0x68, 0x7c, 0x5d, - 0x4a, 0x86, 0x61, 0xc6, 0x63, 0x7d, 0x55, 0x17, 0x6f, 0x0c, 0x2d, 0xb7, 0xca, 0xf0, 0x9e, 0x4e, - 0x88, 0x3e, 0x3e, 0x42, 0x7f, 0x15, 0xe4, 0xee, 0x90, 0x0f, 0x3a, 0x03, 0x85, 0xc8, 0x8c, 0x68, - 0xfe, 0x50, 0xf3, 0x9e, 0x5a, 0xf0, 0x8e, 0xf9, 0x8a, 0x8b, 0x1a, 0x89, 0xeb, 0x05, 0x73, 0xb6, - 0xa3, 0xb6, 0x62, 0xc3, 0xf9, 0xe4, 0xcb, 0xc8, 0x46, 0xc7, 0x63, 0x81, 0x7c, 0xde, 0x49, 0x8c, - 0x2c, 0x7a, 0x88, 0x11, 0xa7, 0x72, 0x45, 0xad, 0x8a, 0x47, 0x16, 0xb6, 0xae, 0x64, 0x01, 0x82, - 0x1d, 0xd3, 0x73, 0x2d, 0x7e, 0xf4, 0x56, 0xd4, 0x69, 0xde, 0xbf, 0xc6, 0xbb, 0x95, 0x7f, 0x92, - 0xa0, 0x96, 0x64, 0x47, 0xe6, 0x33, 0x69, 0xbc, 0x4f, 0x53, 0xc3, 0xe8, 0xd3, 0x80, 0x02, 0x31, - 0x1c, 0x2d, 0xb2, 0xd6, 0x62, 0x9f, 0xf4, 0xb9, 0x7e, 0x9a, 0x50, 0x67, 0x82, 0xae, 0x9e, 0x00, - 0x5d, 0x04, 0xc0, 0x4f, 0x3c, 0x8b, 0x85, 0xa0, 0xe9, 0x5a, 0x29, 0xaa, 0x89, 0x1e, 0xe5, 0xab, - 0x12, 0x9c, 0x4d, 0x98, 0xe3, 0x8a, 0xdb, 0xf6, 0x6c, 0x1c, 0xe2, 0x3b, 0xb6, 0xbb, 0xdf, 0x78, - 0x23, 0xb6, 0xc8, 0x45, 0xa8, 0x19, 0xba, 0x6d, 0x6f, 0xe9, 0xc6, 0x2e, 0x1d, 0x28, 0x3b, 0x86, - 0xa7, 0x8f, 0x0e, 0xe7, 0xaa, 0x2b, 0xbc, 0x9f, 0x0c, 0xb1, 0x2a, 0x80, 0x88, 0xf9, 0x24, 0xb7, - 0x91, 0xe8, 0x61, 0x4a, 0xea, 0xf3, 0x30, 0xf5, 0xbe, 0x04, 0xa7, 0x12, 0xb2, 0xac, 0x3b, 0x56, - 0x48, 0xe5, 0x78, 0x90, 0xda, 0xc2, 0x88, 0x16, 0x13, 0x32, 0xb0, 0x64, 0xad, 0x4e, 0xb8, 0x43, - 0xf8, 0x97, 0xc8, 0x47, 0xa2, 0xd8, 0x46, 0x62, 0xf1, 0x17, 0xa9, 0x63, 0x12, 0xaf, 0xe1, 0x66, - 0xe2, 0x24, 0x88, 0xe9, 0xd0, 0x93, 0x80, 0xd0, 0x20, 0x7d, 0xe4, 0x08, 0x0c, 0xb0, 0xd1, 0xf1, - 0x71, 0x34, 0xad, 0x65, 0x76, 0x04, 0x6e, 0xd0, 0x5e, 0x02, 0x57, 0x61, 0x00, 0x9b, 0xbe, 0xad, - 0xfc, 0x4c, 0x82, 0x2b, 0x2b, 0x3e, 0x36, 0xc9, 0xe4, 0xea, 0xf6, 0x27, 0xb0, 0x6f, 0x6d, 0x27, - 0x5e, 0xaf, 0x92, 0x43, 0x49, 0xc4, 0x5a, 0x17, 0x40, 0x98, 0x68, 0x62, 0x34, 0xf4, 0xb0, 0xe1, - 0x48, 0x84, 0x09, 0x70, 0x10, 0x32, 0xa6, 0x74, 0x0a, 0x6f, 0xa1, 0x3b, 0x85, 0x17, 0xc1, 0x98, - 0x6d, 0x39, 0xbb, 0x7c, 0xc7, 0xa4, 0xbf, 0x3f, 0x80, 0xa1, 0x7e, 0x4b, 0x82, 0x1b, 0x7d, 0x87, - 0x3a, 0x9c, 0x05, 0x59, 0xd9, 0x16, 0xb4, 0x9e, 0xb4, 0x20, 0xab, 0x71, 0x4d, 0x88, 0x7f, 0x11, - 0xc0, 0xa2, 0x2c, 0xb7, 0x2d, 0x9e, 0xb6, 0x5a, 0x51, 0x13, 0x3d, 0xd4, 0x8a, 0x99, 0x2c, 0xd8, - 0x8c, 0xa5, 0x0b, 0xe8, 0xf5, 0x34, 0xe1, 0x58, 0x19, 0x82, 0xde, 0xa7, 0xa0, 0x6a, 0xc4, 0x60, - 0xf4, 0x6c, 0xab, 0x2e, 0x7e, 0x24, 0x7b, 0x9b, 0x65, 0xef, 0x6d, 0xbd, 0xd4, 0x55, 0xdc, 0xb2, - 0x82, 0x10, 0xfb, 0xd8, 0x54, 0x93, 0xc4, 0x94, 0xaf, 0x49, 0x30, 0x23, 0x96, 0x1f, 0x35, 0xf1, - 0x6e, 0x29, 0xec, 0x11, 0xd7, 0x05, 0xba, 0x0d, 0x25, 0x6e, 0x06, 0xc3, 0xbf, 0x31, 0x0b, 0x0c, - 0xe5, 0xd7, 0xba, 0xa4, 0x59, 0x71, 0x4d, 0x9c, 0x5a, 0x1e, 0x52, 0x7a, 0x79, 0xa0, 0x2b, 0x30, - 0x65, 0xb8, 0x26, 0xd6, 0x8c, 0x1d, 0xdd, 0xb6, 0xb1, 0xd3, 0x12, 0x07, 0xd9, 0x24, 0xe9, 0x5d, - 0x11, 0x9d, 0x29, 0xe1, 0x8b, 0x7d, 0x16, 0xf5, 0x97, 0x24, 0x98, 0x53, 0xd3, 0xcf, 0xb9, 0xf4, - 0xd1, 0x8a, 0x29, 0x8f, 0xf9, 0x28, 0xef, 0xa4, 0x16, 0xf8, 0x50, 0x3a, 0x19, 0x32, 0x53, 0x27, - 0x3e, 0xc3, 0xbe, 0x20, 0xc1, 0xa5, 0x2c, 0x39, 0x58, 0x0f, 0xbf, 0x67, 0x9e, 0x28, 0xec, 0x3c, - 0x27, 0xe6, 0xf5, 0x0c, 0x14, 0x5c, 0x76, 0x34, 0x96, 0xd9, 0xd1, 0xf8, 0xe8, 0x9e, 0x5a, 0x70, - 0x77, 0x95, 0xf7, 0x01, 0x60, 0xe3, 0x20, 0x08, 0x71, 0x9b, 0x86, 0x11, 0x12, 0x26, 0xf1, 0x2f, - 0x91, 0x77, 0xba, 0x04, 0x25, 0xcf, 0x77, 0x89, 0x7b, 0xc4, 0x19, 0x5f, 0xcb, 0x9e, 0xeb, 0x88, - 0xcc, 0x7c, 0x93, 0x81, 0xab, 0x02, 0x0f, 0xbd, 0x09, 0x45, 0x6f, 0xd1, 0xeb, 0x1b, 0xf2, 0x4a, - 0xa2, 0x2f, 0x36, 0xd9, 0x86, 0xd0, 0x5c, 0x6c, 0xaa, 0x04, 0x11, 0x3d, 0x84, 0x92, 0xeb, 0x6f, - 0x59, 0xa1, 0xb9, 0xc5, 0x93, 0x9b, 0x06, 0x8a, 0xf0, 0x88, 0x80, 0xaf, 0x2e, 0xb3, 0x29, 0xe0, - 0x0d, 0x55, 0x10, 0x21, 0x07, 0xe8, 0xbe, 0xee, 0x3b, 0xe2, 0x86, 0xc8, 0x1a, 0x8d, 0x7f, 0x96, - 0x40, 0x80, 0x22, 0x33, 0x7e, 0x02, 0x8f, 0xbc, 0x00, 0x36, 0xfa, 0xd7, 0x86, 0x64, 0x3d, 0x9f, - 0x9c, 0x5a, 0x7a, 0x5f, 0x55, 0xa7, 0x39, 0xc9, 0xe8, 0xe1, 0xe9, 0xf3, 0x30, 0xd3, 0x03, 0x45, - 0x56, 0x82, 0xe7, 0xbb, 0x2d, 0x5f, 0x28, 0xbc, 0xa8, 0x46, 0x6d, 0x1a, 0x00, 0xd4, 0x9f, 0x58, - 0xed, 0x4e, 0x9b, 0x2a, 0xb3, 0xa8, 0x8a, 0x26, 0xc1, 0xda, 0xea, 0x6c, 0x6f, 0x93, 0xc5, 0x4f, - 0x75, 0x54, 0x54, 0xa3, 0x36, 0xb9, 0x11, 0xb3, 0xc4, 0x33, 0x7e, 0xda, 0xf2, 0x56, 0x63, 0x1e, - 0x88, 0x8a, 0xd1, 0x35, 0x98, 0x8e, 0xae, 0xa0, 0x1a, 0x71, 0xa0, 0x05, 0xdf, 0xa9, 0xa8, 0x9b, - 0xf8, 0xd7, 0x41, 0xe3, 0x2b, 0x13, 0x50, 0xe2, 0x73, 0x4b, 0x24, 0xd9, 0xc3, 0x7e, 0x40, 0x8e, - 0x70, 0xb6, 0xf9, 0x89, 0x26, 0x3a, 0x0b, 0xa5, 0x3d, 0x23, 0xd0, 0x7c, 0xbc, 0xcd, 0x97, 0xe9, - 0xc4, 0x9e, 0x11, 0xa8, 0x78, 0x9b, 0x5c, 0x25, 0x3a, 0x5e, 0x68, 0xb5, 0xb1, 0xd6, 0x0e, 0x98, - 0x8c, 0xec, 0x2a, 0xb1, 0x49, 0x3b, 0x1f, 0x6c, 0xa8, 0x65, 0xf6, 0xf9, 0x41, 0x80, 0x5e, 0x07, - 0xb9, 0x13, 0x60, 0x5f, 0x33, 0xbc, 0x8e, 0x26, 0x30, 0x80, 0x62, 0xcc, 0x1c, 0x1d, 0xce, 0x4d, - 0x6e, 0x06, 0xd8, 0x5f, 0x69, 0x6e, 0x3e, 0x66, 0x68, 0x93, 0x04, 0x74, 0xc5, 0xeb, 0x3c, 0x66, - 0xb8, 0x1f, 0x07, 0x14, 0xd0, 0xd9, 0x48, 0x61, 0x57, 0x29, 0x36, 0x4d, 0x65, 0x65, 0x73, 0x15, - 0xe3, 0x4f, 0x33, 0xf0, 0x98, 0xc2, 0x05, 0x80, 0x20, 0xd4, 0xa9, 0x07, 0xa4, 0x87, 0xf5, 0x1a, - 0xd5, 0x45, 0x85, 0xf7, 0x2c, 0xd1, 0xc2, 0x15, 0xdf, 0x26, 0x17, 0x67, 0xcd, 0xe8, 0xf8, 0xf5, - 0x49, 0x9a, 0xbe, 0x5c, 0x61, 0x3d, 0x2b, 0x1d, 0x1f, 0x5d, 0x86, 0x49, 0xa7, 0xd3, 0xd6, 0x5a, - 0xae, 0xef, 0x76, 0x42, 0xcb, 0xc1, 0xf5, 0x29, 0x4a, 0xa0, 0xe6, 0x74, 0xda, 0x77, 0x45, 0x1f, - 0x99, 0x12, 0xc7, 0xdd, 0xb6, 0x6c, 0x5c, 0x9f, 0x66, 0x53, 0xc2, 0x5a, 0xe8, 0x25, 0x38, 0x15, - 0xba, 0xae, 0xd6, 0xd6, 0x9d, 0x03, 0xcd, 0xf5, 0xb0, 0xa3, 0x91, 0xde, 0xa0, 0x2e, 0xd3, 0xd0, - 0x94, 0x1c, 0xba, 0xee, 0x03, 0xdd, 0x39, 0x78, 0xe4, 0x61, 0xe7, 0x0e, 0xe9, 0x47, 0x97, 0xa1, - 0x44, 0x78, 0x19, 0x5e, 0xa7, 0x3e, 0x43, 0x07, 0x48, 0xc3, 0x10, 0x0f, 0x3b, 0x64, 0x74, 0xea, - 0x84, 0xd3, 0x21, 0x83, 0x22, 0xf2, 0xb6, 0x5c, 0x4d, 0xcc, 0x16, 0xa2, 0x73, 0x52, 0x69, 0xb9, - 0x9f, 0xe0, 0xf3, 0x75, 0x03, 0x64, 0xd7, 0xc3, 0x3e, 0x4d, 0xba, 0xd1, 0x98, 0x2a, 0xea, 0xa7, - 0x98, 0x27, 0x1a, 0xf5, 0x33, 0x95, 0xa1, 0x67, 0xa1, 0xb2, 0xe3, 0x06, 0xa1, 0xe6, 0xe8, 0x6d, - 0x5c, 0x9f, 0xa5, 0x30, 0x65, 0xd2, 0xf1, 0x50, 0x6f, 0x63, 0x72, 0xda, 0xeb, 0xbe, 0xb1, 0x53, - 0x3f, 0xcd, 0x4e, 0x7b, 0xf2, 0x3b, 0xa1, 0xaa, 0xb6, 0xfe, 0xa4, 0x7e, 0x26, 0xa9, 0xaa, 0x07, - 0xfa, 0x13, 0xe2, 0x03, 0x78, 0x96, 0x59, 0x3f, 0x4b, 0x45, 0x67, 0x4b, 0x9e, 0x5c, 0x7c, 0x3d, - 0xcb, 0x44, 0xe7, 0x61, 0xcc, 0x23, 0xdf, 0xea, 0xf4, 0x5b, 0xf9, 0xe8, 0x70, 0x6e, 0xac, 0x49, - 0x3e, 0xd2, 0x5e, 0xb6, 0x46, 0x2c, 0xd7, 0xb7, 0xc2, 0x83, 0xfa, 0x39, 0xb1, 0x46, 0x58, 0x9b, - 0x3a, 0x16, 0x96, 0x59, 0x6f, 0xc4, 0x44, 0x37, 0x09, 0xd1, 0x8e, 0x65, 0xa2, 0x39, 0xa8, 0xee, - 0xbb, 0xfe, 0x2e, 0x19, 0xa8, 0x69, 0xf9, 0xf5, 0x67, 0xd9, 0xa9, 0xcd, 0xbb, 0x56, 0x2d, 0x9f, - 0x2c, 0x05, 0x6e, 0x3b, 0xc4, 0xa6, 0xe8, 0x30, 0xcf, 0x53, 0xa0, 0x29, 0xd6, 0xbd, 0xc9, 0x7b, - 0x95, 0xff, 0x1e, 0x87, 0x32, 0x59, 0x14, 0xdd, 0x27, 0xe9, 0x92, 0xd8, 0x35, 0x3f, 0x02, 0xe3, - 0x62, 0x29, 0x15, 0x73, 0x9f, 0x26, 0x04, 0x05, 0xfa, 0x43, 0x65, 0x08, 0x8d, 0xef, 0x17, 0x60, - 0x8c, 0xb4, 0x13, 0xf5, 0x10, 0x95, 0x54, 0x3d, 0xc4, 0x6d, 0x98, 0x20, 0x66, 0x84, 0x59, 0x38, - 0x20, 0x6f, 0x43, 0x8d, 0x68, 0xab, 0x04, 0x56, 0xe5, 0x28, 0xc4, 0xf0, 0xe8, 0xbd, 0x54, 0x38, - 0xa1, 0xbc, 0x85, 0x96, 0xa0, 0xbc, 0x8d, 0xf5, 0xb0, 0xe3, 0x63, 0xb6, 0x2b, 0x4e, 0xe5, 0x95, - 0x92, 0x08, 0xb2, 0x77, 0x18, 0xb4, 0x1a, 0xa1, 0x11, 0xed, 0xb6, 0x2d, 0x47, 0xb3, 0xf5, 0x10, - 0x3b, 0x06, 0xab, 0x85, 0x2a, 0xaa, 0xd0, 0xb6, 0x9c, 0xfb, 0xac, 0x87, 0x98, 0x8f, 0x15, 0x68, - 0x34, 0x8e, 0x8a, 0x79, 0x50, 0xbb, 0x6c, 0x05, 0x34, 0x8a, 0x8b, 0xd1, 0x47, 0xa1, 0x62, 0x5a, - 0x3e, 0x36, 0xe8, 0xad, 0xa0, 0xd4, 0x27, 0x5c, 0xb1, 0x2a, 0xa0, 0xd4, 0x18, 0xa1, 0xf1, 0x13, - 0x72, 0x5c, 0x91, 0x11, 0xa6, 0x99, 0x48, 0x5d, 0x4c, 0xea, 0x50, 0xd2, 0x4d, 0x93, 0x6e, 0xad, - 0x6c, 0x6f, 0x12, 0xcd, 0x34, 0xfb, 0xe2, 0x88, 0xec, 0x09, 0x5d, 0x31, 0x6c, 0xb6, 0xc5, 0x8a, - 0x26, 0x7a, 0x13, 0x4a, 0x41, 0xe8, 0x63, 0xbd, 0x2d, 0xae, 0xfc, 0xcf, 0xf7, 0x57, 0xeb, 0x06, - 0x05, 0x56, 0x05, 0x52, 0xe3, 0x12, 0x4c, 0xb0, 0xae, 0x3c, 0x73, 0x50, 0x7c, 0x28, 0xf1, 0xb9, - 0x40, 0x08, 0xa6, 0x78, 0xf0, 0x8f, 0xf7, 0xc8, 0xcf, 0x20, 0x19, 0x6a, 0xcb, 0xd8, 0x0f, 0x0f, - 0x44, 0x8f, 0x84, 0xa6, 0x00, 0x96, 0xef, 0xaf, 0x89, 0x36, 0x8d, 0x06, 0xde, 0x77, 0x0d, 0xdd, - 0x16, 0x3d, 0x45, 0x1a, 0x47, 0x74, 0x7d, 0xd1, 0x1e, 0x43, 0xd3, 0x50, 0x7d, 0xbb, 0x63, 0x19, - 0xa2, 0x63, 0x5c, 0xf9, 0xae, 0x04, 0xe5, 0xa6, 0x38, 0x94, 0x66, 0x61, 0x3c, 0x08, 0xf5, 0x50, - 0x5c, 0x73, 0x59, 0x83, 0xf4, 0x9a, 0xae, 0xe5, 0xb4, 0x44, 0xd0, 0x81, 0x36, 0x52, 0x87, 0x1b, - 0xd1, 0x72, 0x21, 0x71, 0xb8, 0x9d, 0x87, 0x8a, 0xc1, 0x5d, 0x75, 0x76, 0x52, 0x8d, 0xa9, 0x71, - 0x07, 0xbb, 0xf4, 0x86, 0xba, 0x4d, 0xed, 0x6a, 0x4c, 0x65, 0x0d, 0xca, 0x05, 0xdb, 0x3a, 0xab, - 0x49, 0x1c, 0x53, 0x59, 0x43, 0x71, 0x60, 0x86, 0x3d, 0x2e, 0x7c, 0xd2, 0x0a, 0x77, 0x58, 0xa4, - 0x2a, 0x18, 0xa5, 0x28, 0x66, 0x1e, 0xaa, 0x2c, 0xaa, 0x15, 0x68, 0xde, 0x6e, 0xaa, 0xe4, 0x48, - 0x84, 0xbd, 0x02, 0x15, 0x38, 0x44, 0x73, 0x37, 0x50, 0x0e, 0x25, 0x98, 0x79, 0xd4, 0x09, 0x1f, - 0x6d, 0xd3, 0x20, 0xa3, 0x28, 0xe2, 0xea, 0x13, 0xd6, 0x1b, 0x21, 0x40, 0x9e, 0xa8, 0x94, 0x21, - 0x0a, 0x9b, 0x88, 0x8b, 0xe3, 0x78, 0xc5, 0xdb, 0x58, 0x5c, 0xf1, 0x36, 0x0b, 0xe3, 0xdb, 0xb6, - 0xde, 0x0a, 0xa8, 0x8e, 0x4a, 0x2a, 0x6b, 0xd0, 0x18, 0x95, 0x28, 0x30, 0xd3, 0xd2, 0x11, 0x3a, - 0x39, 0xfa, 0xd0, 0xe4, 0x75, 0x84, 0x51, 0xc5, 0x56, 0x29, 0x51, 0xb1, 0xa5, 0xfc, 0x48, 0x82, - 0x53, 0x19, 0x09, 0x5e, 0x68, 0x15, 0x80, 0xf9, 0xc6, 0x89, 0xc7, 0x87, 0xc4, 0xbe, 0xd1, 0x09, - 0x76, 0xba, 0x52, 0xc3, 0xa8, 0xd7, 0xcc, 0xa2, 0xbb, 0xa1, 0xf8, 0x49, 0xb4, 0xb1, 0xd5, 0x71, - 0x4c, 0x1b, 0xc7, 0x79, 0xa2, 0x54, 0x1b, 0xcb, 0xb4, 0x73, 0x7d, 0x95, 0xb8, 0x32, 0xf4, 0x97, - 0x19, 0x87, 0x3e, 0xf8, 0xa3, 0x2d, 0x0b, 0x7d, 0xdc, 0x82, 0x59, 0x1f, 0x1b, 0x96, 0x67, 0x61, - 0x27, 0xd4, 0x12, 0x37, 0x52, 0xa6, 0x1a, 0x14, 0x7d, 0x6b, 0x8a, 0xab, 0xa9, 0xf2, 0x10, 0x20, - 0xce, 0x23, 0x63, 0x55, 0xb5, 0xe4, 0x57, 0xb2, 0x14, 0x95, 0xf5, 0x90, 0x7b, 0x6c, 0x22, 0x9c, - 0x43, 0xb6, 0x0b, 0x6e, 0xd1, 0xe2, 0xae, 0xbc, 0x64, 0x9a, 0xbe, 0xf2, 0x9e, 0x04, 0xe7, 0x08, - 0x41, 0x36, 0x81, 0x3c, 0x5f, 0x56, 0xdc, 0xc6, 0xd0, 0x9b, 0xe9, 0xe8, 0xd9, 0xf0, 0x09, 0x74, - 0x7c, 0x7c, 0xc3, 0x9b, 0x0b, 0xb9, 0x54, 0x34, 0x62, 0x41, 0x78, 0xe6, 0x5c, 0x2c, 0xc9, 0xab, - 0x30, 0xc1, 0x93, 0xee, 0xa4, 0xe1, 0x92, 0xee, 0x38, 0xf8, 0x28, 0x22, 0xfc, 0xb0, 0x10, 0x15, - 0x62, 0xf4, 0xbb, 0xa3, 0x8e, 0x92, 0xe0, 0x7b, 0x1b, 0x1a, 0x81, 0xd5, 0x72, 0xb0, 0xa9, 0xb1, - 0x2b, 0x76, 0x78, 0xa0, 0xf5, 0x04, 0x1e, 0xce, 0x32, 0x88, 0x75, 0x0e, 0x10, 0xcd, 0x35, 0x5a, - 0x80, 0x53, 0x7b, 0x5c, 0x0e, 0x2d, 0xbe, 0x16, 0xf3, 0xa8, 0x04, 0xda, 0xeb, 0x11, 0x91, 0x2c, - 0x18, 0x9f, 0x8a, 0xc9, 0x22, 0x52, 0x9a, 0x49, 0x36, 0x37, 0xb6, 0xaf, 0xcb, 0xc9, 0x0f, 0xab, - 0x64, 0x9f, 0xbb, 0x06, 0xd3, 0x71, 0xf0, 0x8a, 0x81, 0xb2, 0x93, 0x6f, 0x2a, 0xee, 0xa6, 0x80, - 0xe9, 0x88, 0xc1, 0x44, 0x77, 0xc4, 0x80, 0x9c, 0xcc, 0x56, 0x10, 0x74, 0xb0, 0x4f, 0x97, 0x5e, - 0x45, 0xe5, 0x2d, 0xe5, 0x1b, 0x12, 0x9c, 0x26, 0x13, 0xc2, 0xf6, 0x29, 0x6a, 0x5a, 0x9b, 0x1e, - 0xe1, 0x73, 0xfc, 0xc9, 0x8c, 0x56, 0x51, 0x21, 0xb9, 0x8a, 0x46, 0x78, 0x7c, 0xfd, 0x57, 0x09, - 0xaa, 0x84, 0x2e, 0x37, 0xd4, 0xc6, 0xe5, 0xf8, 0x96, 0x9a, 0x78, 0x05, 0x90, 0x52, 0xaf, 0x00, - 0x8d, 0xbf, 0x8c, 0xae, 0x94, 0x1f, 0x8f, 0xf3, 0x18, 0x98, 0xe4, 0x57, 0x33, 0x25, 0xef, 0xd9, - 0x52, 0xe3, 0xc2, 0x52, 0x72, 0x56, 0xd8, 0x98, 0x78, 0xe4, 0x4f, 0xc4, 0x93, 0x65, 0xdc, 0x81, - 0xae, 0x83, 0xcc, 0xaf, 0xe2, 0xb1, 0x91, 0xb0, 0x0d, 0x63, 0x8a, 0xdd, 0xc2, 0x23, 0xdb, 0xb8, - 0x01, 0xb2, 0x6e, 0xfb, 0x58, 0x37, 0x0f, 0x34, 0x9f, 0x97, 0x93, 0xd0, 0x99, 0x2e, 0xab, 0xd3, - 0xbc, 0x5f, 0x54, 0x99, 0x28, 0xbf, 0x20, 0x67, 0x1e, 0xd5, 0xa5, 0x63, 0x36, 0xbe, 0x93, 0x88, - 0x8d, 0xf7, 0xd9, 0xe7, 0xb3, 0x04, 0x29, 0x64, 0x0a, 0x72, 0x0f, 0x26, 0x19, 0x24, 0x3b, 0x84, - 0x44, 0xc8, 0xf5, 0x6a, 0x4e, 0x7e, 0x48, 0xd7, 0xe1, 0xa6, 0xd6, 0x5a, 0x2c, 0x07, 0x82, 0xe2, - 0x36, 0x1e, 0x0b, 0x45, 0xf7, 0x50, 0x95, 0x8e, 0x4f, 0x55, 0xf9, 0xa1, 0x04, 0x53, 0x54, 0x01, - 0x3b, 0xba, 0xcf, 0xb6, 0xb8, 0xc6, 0x9f, 0x1d, 0xe3, 0x39, 0x2d, 0xb6, 0xda, 0xc2, 0x68, 0x56, - 0xbb, 0x0a, 0x65, 0x3e, 0x47, 0x3e, 0x0f, 0x03, 0x0c, 0xbf, 0x91, 0x46, 0x98, 0x71, 0xf8, 0xc5, - 0x01, 0xc4, 0x20, 0xc3, 0xc4, 0xa6, 0xdd, 0x78, 0x14, 0x0f, 0x28, 0xc9, 0x4f, 0x3a, 0x39, 0xbf, - 0x77, 0x61, 0x92, 0xf3, 0x63, 0xe3, 0x6a, 0x2c, 0xc7, 0xac, 0x8e, 0xbb, 0x92, 0x63, 0xea, 0x6f, - 0xc0, 0xcc, 0x1d, 0xcb, 0x0f, 0xc2, 0xfb, 0x7a, 0x10, 0xae, 0x30, 0x07, 0x81, 0x7a, 0x66, 0xdb, - 0xa4, 0x93, 0x97, 0xd5, 0xb3, 0x06, 0x0d, 0xcb, 0xea, 0x41, 0xc8, 0x0b, 0x6f, 0xe9, 0x6f, 0xe5, - 0xef, 0x25, 0x38, 0xc5, 0x03, 0x17, 0x89, 0xe4, 0x23, 0x76, 0x15, 0xc6, 0xba, 0x8d, 0x4d, 0x6d, - 0xcb, 0x7d, 0x22, 0x16, 0x1a, 0xeb, 0x59, 0x76, 0x9f, 0x90, 0x93, 0xd1, 0xd7, 0xf7, 0x35, 0xdf, - 0x65, 0xb9, 0x77, 0x7c, 0x91, 0x55, 0x7d, 0x7d, 0x5f, 0xe5, 0x5d, 0x8d, 0x2f, 0x49, 0x50, 0x24, - 0xa0, 0x09, 0xd7, 0x5b, 0x4a, 0xbb, 0xde, 0xb3, 0x30, 0x4e, 0xff, 0xfc, 0x82, 0xd8, 0x8d, 0x68, - 0x63, 0x84, 0xdd, 0xa8, 0xbb, 0xe2, 0xa0, 0x96, 0xf9, 0x18, 0xff, 0x5f, 0x12, 0x9c, 0x56, 0xf1, - 0xb6, 0x8f, 0x83, 0x9d, 0x74, 0x26, 0x6e, 0xe3, 0x95, 0x01, 0xf7, 0xad, 0x59, 0x18, 0x67, 0xf9, - 0x04, 0x05, 0x16, 0x2d, 0x62, 0xe9, 0x04, 0x6f, 0x1f, 0x33, 0x25, 0x96, 0x28, 0x22, 0xb4, 0xda, - 0xd8, 0xed, 0x84, 0x22, 0x86, 0xc3, 0x9b, 0x8d, 0x77, 0xc4, 0xb2, 0x6d, 0x42, 0x95, 0xde, 0x05, - 0xb5, 0x6d, 0xb7, 0xe3, 0x98, 0x7c, 0xd1, 0x2e, 0x64, 0xda, 0x44, 0xe6, 0x90, 0xd8, 0x7d, 0x12, - 0x28, 0x8d, 0x3b, 0x84, 0xc4, 0x4d, 0x0b, 0xe2, 0x87, 0x75, 0x74, 0x86, 0xe7, 0xe5, 0xb1, 0xa4, - 0x04, 0x13, 0x6f, 0x5b, 0x0e, 0x36, 0xe5, 0x67, 0xd0, 0x2c, 0x4f, 0xa5, 0x22, 0xfd, 0xfc, 0x00, - 0x97, 0xa5, 0x54, 0x2f, 0x67, 0xc3, 0x32, 0x12, 0xa2, 0xde, 0x44, 0x32, 0xa6, 0x5c, 0xbc, 0xf9, - 0xc5, 0x0a, 0x54, 0xe2, 0xf7, 0xe3, 0x33, 0x80, 0xa2, 0x46, 0x92, 0xd7, 0x65, 0x98, 0x8b, 0xfa, - 0xef, 0xc6, 0xbb, 0x0c, 0x9b, 0x5d, 0x5a, 0xf9, 0x24, 0x4b, 0xbd, 0x40, 0xc9, 0x82, 0x70, 0x06, - 0x54, 0x40, 0x73, 0xf0, 0x6c, 0x04, 0xd4, 0x5b, 0x71, 0x2b, 0x63, 0x74, 0x01, 0xce, 0x65, 0x02, - 0xdc, 0xc7, 0xdb, 0xa1, 0xbc, 0x8d, 0x6e, 0xc2, 0xd5, 0xee, 0xcf, 0xd9, 0x75, 0xad, 0x72, 0x0b, - 0xdd, 0x80, 0x2b, 0xfd, 0x61, 0x45, 0xc5, 0xc1, 0x0e, 0xba, 0x05, 0x2f, 0xf6, 0x07, 0x4d, 0x97, - 0xa5, 0xca, 0x16, 0x5a, 0x84, 0xf9, 0xfe, 0x18, 0x8f, 0x3a, 0x61, 0x8b, 0xdc, 0xa2, 0x44, 0x1d, - 0xa9, 0xfc, 0x19, 0x34, 0x0f, 0x37, 0x87, 0xc3, 0xd9, 0xc0, 0x4e, 0x28, 0xef, 0x0e, 0xe6, 0xb1, - 0xee, 0x18, 0x6e, 0xdb, 0x72, 0x5a, 0xe2, 0xd8, 0x93, 0x6d, 0xf4, 0x21, 0x58, 0x18, 0x0e, 0x27, - 0xaa, 0x59, 0x94, 0xdb, 0xc3, 0x33, 0x12, 0xc5, 0x86, 0xb2, 0x83, 0x14, 0xb8, 0x98, 0x83, 0xc3, - 0xcb, 0xfe, 0x64, 0x17, 0x3d, 0x0f, 0x97, 0x72, 0x60, 0xa2, 0x42, 0x3d, 0xd9, 0x43, 0x0a, 0x5c, - 0x88, 0xa0, 0xba, 0xd2, 0xce, 0x99, 0xd9, 0xfc, 0x40, 0x42, 0xb7, 0xe0, 0x85, 0x08, 0xa6, 0x6f, - 0xfa, 0x34, 0xc3, 0xf8, 0x5e, 0x01, 0xbd, 0x92, 0x50, 0x44, 0x6f, 0x02, 0x72, 0xa2, 0xe0, 0x7d, - 0xc9, 0x71, 0xdc, 0x8e, 0x63, 0x60, 0x53, 0xfe, 0x93, 0x02, 0x9a, 0x87, 0x1b, 0xf9, 0x7c, 0x52, - 0x09, 0xd4, 0xd8, 0x94, 0xff, 0xb4, 0x80, 0xae, 0xc2, 0x73, 0xdd, 0x23, 0xec, 0xa9, 0x0a, 0x94, - 0xbf, 0x51, 0x44, 0xd7, 0xe1, 0x72, 0x3f, 0x38, 0x5e, 0xae, 0x27, 0x7f, 0xb3, 0x88, 0x2e, 0x26, - 0x16, 0x40, 0x77, 0x99, 0x9d, 0xfc, 0xad, 0x22, 0xba, 0x9c, 0xd0, 0x7b, 0xa6, 0xa7, 0x29, 0xff, - 0x6e, 0x11, 0x5d, 0x03, 0x25, 0x05, 0x94, 0x79, 0xd3, 0x91, 0xbf, 0x9d, 0x96, 0x2b, 0xff, 0x26, - 0x22, 0xff, 0x5e, 0x11, 0xbd, 0xdc, 0xbb, 0x44, 0xfa, 0x5d, 0x18, 0xe4, 0x9f, 0x17, 0x53, 0xca, - 0x49, 0xe5, 0xbb, 0xf2, 0xfb, 0x2b, 0x35, 0xf3, 0x7f, 0x2c, 0xdd, 0xfc, 0x9a, 0x48, 0x6c, 0xc8, - 0xc8, 0xc7, 0x41, 0x57, 0xe0, 0xb9, 0xbc, 0x6f, 0x5d, 0x5b, 0x54, 0x1e, 0x18, 0x3f, 0x23, 0x65, - 0x89, 0xd8, 0x63, 0x3e, 0x10, 0x13, 0x4d, 0x2e, 0xdc, 0xfc, 0x2b, 0x29, 0x2a, 0xd2, 0x60, 0x95, - 0x4a, 0xe7, 0xa2, 0x7a, 0x10, 0xda, 0x4e, 0xb2, 0xed, 0xfa, 0xf4, 0xd8, 0xe5, 0x0b, 0x46, 0x96, - 0xc8, 0xa6, 0x9b, 0xfc, 0x14, 0xad, 0xd1, 0x02, 0x3a, 0x0d, 0x33, 0xc9, 0x2f, 0xcc, 0x48, 0x8a, - 0xe8, 0x6c, 0x54, 0x75, 0xc1, 0x11, 0x98, 0x4d, 0x8c, 0x75, 0x33, 0x89, 0x57, 0xee, 0x78, 0x37, - 0x8e, 0x58, 0x7a, 0x13, 0x37, 0xef, 0x42, 0x25, 0x0a, 0x7e, 0xa1, 0x29, 0x00, 0x1e, 0x6a, 0x5a, - 0xb5, 0x7c, 0xf9, 0x19, 0xd2, 0x5e, 0x77, 0xb6, 0xc8, 0x59, 0x43, 0xda, 0x12, 0x9a, 0x86, 0xea, - 0xa3, 0x4e, 0x18, 0x75, 0x14, 0x50, 0x05, 0xc6, 0x97, 0x2d, 0xf2, 0xb3, 0xb8, 0xf8, 0xfe, 0x0b, - 0x30, 0x2d, 0xfe, 0x24, 0x8d, 0x48, 0x99, 0xd8, 0xcb, 0xaa, 0xa6, 0x44, 0x0b, 0x7d, 0xeb, 0xd9, - 0x62, 0xc0, 0x79, 0x71, 0x96, 0xbf, 0x34, 0x3c, 0x82, 0x67, 0x1f, 0xdc, 0x92, 0xd0, 0x7b, 0x52, - 0x7e, 0xd9, 0x25, 0xfa, 0x7f, 0xa3, 0x95, 0xd3, 0x09, 0x21, 0x3e, 0x34, 0x2a, 0x1a, 0x39, 0xf3, - 0x7f, 0x5d, 0xca, 0xad, 0x41, 0x43, 0xaf, 0x64, 0x12, 0xcc, 0x81, 0x8e, 0xc4, 0x58, 0x1c, 0x11, - 0x8b, 0x48, 0xf1, 0xf9, 0x9c, 0x4a, 0x34, 0x34, 0x0c, 0x31, 0x0e, 0x1b, 0x09, 0x70, 0x6b, 0x24, - 0x1c, 0xc2, 0xfe, 0x73, 0xd9, 0xb5, 0x6d, 0xe8, 0xe5, 0x21, 0x28, 0x31, 0xd0, 0x88, 0xf9, 0xc2, - 0x28, 0x28, 0x84, 0xf7, 0x37, 0xa5, 0xfe, 0x65, 0x6f, 0xe8, 0xb5, 0xa1, 0xf4, 0x99, 0x44, 0x89, - 0x84, 0x79, 0xf5, 0x38, 0xa8, 0x44, 0xa8, 0x30, 0xab, 0x3e, 0x0e, 0x0d, 0x33, 0x36, 0x02, 0x38, - 0x60, 0x59, 0x64, 0x22, 0x64, 0x4e, 0x03, 0x3b, 0xa4, 0x87, 0x9a, 0x06, 0x06, 0x3a, 0xd2, 0x34, - 0x44, 0x28, 0x79, 0x16, 0x48, 0xf6, 0xa6, 0x61, 0x2d, 0x90, 0xc0, 0x8e, 0x6a, 0x81, 0x1c, 0x87, - 0xb0, 0xdf, 0x4a, 0x57, 0xd3, 0xa1, 0x1b, 0xfd, 0x28, 0x50, 0x90, 0x88, 0xd9, 0xb5, 0x61, 0x40, - 0x09, 0x8f, 0x9d, 0xee, 0xfa, 0x3a, 0xf4, 0x42, 0x3f, 0x54, 0x0e, 0x14, 0xf1, 0xb9, 0x31, 0x1c, - 0x30, 0xe1, 0xb4, 0x9f, 0x59, 0x75, 0x87, 0xfa, 0xaa, 0x25, 0x09, 0x19, 0xf1, 0x9c, 0x1f, 0x01, - 0x83, 0x30, 0xfe, 0x82, 0x94, 0x57, 0x9c, 0x87, 0xb2, 0x77, 0xc7, 0x6c, 0xe0, 0x88, 0xff, 0xcb, - 0xa3, 0x21, 0x71, 0x23, 0xce, 0x2a, 0xe4, 0x43, 0xc3, 0x91, 0x22, 0xa0, 0x03, 0x8c, 0x38, 0x07, - 0x85, 0x1b, 0x71, 0x66, 0x99, 0x5f, 0x8e, 0x11, 0x67, 0xc2, 0x0e, 0x30, 0xe2, 0x3c, 0x1c, 0xc2, - 0xfe, 0x7b, 0xd2, 0x90, 0x15, 0x81, 0x68, 0x79, 0x28, 0xda, 0x99, 0xb8, 0x91, 0x7c, 0x1f, 0x3f, - 0x11, 0x0d, 0x22, 0xef, 0xef, 0x0f, 0xac, 0x2d, 0x44, 0xb7, 0x87, 0x63, 0x92, 0x42, 0x8a, 0x24, - 0x7c, 0xed, 0x78, 0xc8, 0x44, 0xb4, 0x3f, 0x18, 0xa2, 0xd8, 0x10, 0xbd, 0x31, 0x14, 0xfd, 0x6e, - 0xb4, 0x48, 0xbc, 0xdb, 0xc7, 0x45, 0x27, 0x02, 0xee, 0xf6, 0x54, 0x1e, 0xa2, 0x17, 0xb3, 0xd3, - 0xc6, 0xd2, 0x50, 0x11, 0xf7, 0x9b, 0x43, 0x42, 0xf3, 0x9d, 0x2b, 0x5d, 0x5b, 0x98, 0xb3, 0x73, - 0xa5, 0x81, 0x06, 0xec, 0x5c, 0x3d, 0xc0, 0x84, 0x93, 0x93, 0x51, 0xcf, 0x86, 0xe6, 0x07, 0x17, - 0xf8, 0xb1, 0x27, 0xef, 0xbe, 0x3b, 0x72, 0x6f, 0x4d, 0xe2, 0x2d, 0x09, 0xed, 0xf6, 0x96, 0x91, - 0xa1, 0x97, 0xfa, 0xa1, 0x47, 0x60, 0x11, 0xb7, 0xab, 0x03, 0xc1, 0x05, 0xb3, 0x77, 0x12, 0xb5, - 0x5b, 0xa8, 0x0f, 0x1a, 0xcd, 0x27, 0x12, 0xe4, 0x9f, 0x1f, 0x08, 0x47, 0xf4, 0x86, 0xbb, 0xca, - 0xa2, 0x50, 0xce, 0xf4, 0x26, 0x61, 0x22, 0x16, 0xd7, 0x87, 0x82, 0xe5, 0x56, 0xd7, 0x55, 0x11, - 0x95, 0x63, 0x75, 0x5d, 0x50, 0x03, 0xac, 0xae, 0x17, 0x9a, 0x30, 0x0b, 0x32, 0xca, 0xa5, 0xfa, - 0xd9, 0x42, 0xaa, 0x48, 0x28, 0xfa, 0x6b, 0x2c, 0x43, 0xc3, 0xb3, 0x8b, 0x41, 0xbb, 0xa7, 0x20, - 0x26, 0x77, 0x84, 0x29, 0xa8, 0x81, 0x23, 0xec, 0x86, 0x66, 0xec, 0xbe, 0x28, 0xe5, 0xd5, 0xac, - 0xe4, 0x1c, 0x98, 0xd9, 0xc0, 0x03, 0x0e, 0xcc, 0x5c, 0x24, 0x26, 0xc4, 0xbb, 0xc9, 0x3a, 0x0d, - 0x74, 0x2d, 0x9f, 0x44, 0x7a, 0x2e, 0xaf, 0x0c, 0x06, 0x24, 0xd3, 0xf8, 0x5e, 0x9f, 0x62, 0x83, - 0x9c, 0xab, 0x56, 0x1e, 0xf8, 0x80, 0xab, 0x56, 0x1f, 0x34, 0x22, 0xc8, 0xbb, 0xc9, 0xa4, 0x47, - 0x34, 0x30, 0x97, 0xb0, 0xff, 0x30, 0x53, 0x80, 0xdc, 0xe7, 0xca, 0x48, 0x19, 0xcf, 0xf1, 0xb9, - 0x32, 0x20, 0x07, 0xf8, 0x5c, 0xd9, 0x18, 0xe2, 0x06, 0x99, 0x93, 0x38, 0x9f, 0x73, 0x83, 0xcc, - 0x81, 0x1e, 0x70, 0x83, 0xcc, 0xc7, 0x12, 0xbe, 0xc7, 0x50, 0x99, 0xe7, 0x39, 0xbe, 0xc7, 0x50, - 0xb8, 0x03, 0x7c, 0x8f, 0x61, 0x69, 0x10, 0x79, 0xff, 0x62, 0x94, 0xf4, 0x71, 0x74, 0x67, 0x74, - 0x7e, 0x99, 0x9a, 0x5d, 0x3d, 0x31, 0x1d, 0x31, 0xe3, 0x39, 0x49, 0xe6, 0x39, 0x33, 0x9e, 0x03, - 0x3d, 0x60, 0xc6, 0xf3, 0xb1, 0xf8, 0xf6, 0xdc, 0x93, 0x5d, 0x9e, 0xb3, 0x3d, 0xf7, 0xc0, 0x0d, - 0xd8, 0x9e, 0xb3, 0xe0, 0xd9, 0x56, 0xf5, 0x9d, 0xc1, 0x49, 0xdc, 0xe8, 0xa3, 0x39, 0x2f, 0x26, - 0x7d, 0xb1, 0x22, 0x89, 0x5e, 0x3f, 0x26, 0x36, 0x51, 0xc9, 0x27, 0xe2, 0xec, 0x40, 0x34, 0x20, - 0x8f, 0x4e, 0xb0, 0x1b, 0x94, 0xc5, 0x47, 0xe9, 0x6a, 0xa9, 0x67, 0x77, 0x94, 0xff, 0x1e, 0xc9, - 0x21, 0x06, 0xf8, 0x26, 0x69, 0x48, 0x21, 0x38, 0x7f, 0xe3, 0xce, 0x13, 0x9c, 0x7f, 0x1e, 0x24, - 0x78, 0x0c, 0xc6, 0x1d, 0xc7, 0xf4, 0xd3, 0x71, 0x8e, 0xe3, 0x98, 0x06, 0x1a, 0xe0, 0x38, 0xf6, - 0x00, 0xf3, 0x88, 0x49, 0xef, 0xb3, 0x6e, 0x4e, 0xc4, 0xa4, 0x17, 0x70, 0x40, 0xc4, 0x24, 0x13, - 0x81, 0xbb, 0x5d, 0xa9, 0xc7, 0xdd, 0x1c, 0xb7, 0x2b, 0x05, 0x33, 0xc0, 0xed, 0xea, 0x86, 0xe5, - 0xf7, 0xca, 0xcc, 0x07, 0xbf, 0x9c, 0x7b, 0x65, 0xf6, 0xe3, 0x60, 0xff, 0x7b, 0x65, 0x1e, 0x8e, - 0x67, 0x1f, 0x2c, 0x7f, 0xf8, 0xc7, 0xff, 0x70, 0xf1, 0x99, 0xbf, 0x3e, 0xba, 0x28, 0xfd, 0xf8, - 0xe8, 0xa2, 0xf4, 0xd3, 0xa3, 0x8b, 0xd2, 0xa7, 0x9e, 0xdf, 0xc2, 0x7e, 0x78, 0x30, 0x1f, 0x62, - 0x63, 0x67, 0x81, 0x53, 0x5b, 0xf0, 0x76, 0x5b, 0x0b, 0xa9, 0xff, 0x12, 0x62, 0x6b, 0x82, 0x36, - 0x3f, 0xf4, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x1d, 0xd1, 0x6f, 0xfd, 0x2a, 0x62, 0x00, 0x00, + // 6528 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3d, 0x5b, 0x6c, 0x24, 0xd9, + 0x55, 0x5b, 0xdd, 0xb6, 0xbb, 0xfb, 0x74, 0xdb, 0x2e, 0xdf, 0xf1, 0xcc, 0xf4, 0xf4, 0xce, 0x8c, + 0x67, 0x6b, 0x76, 0xde, 0xbb, 0x9e, 0x59, 0x67, 0xc9, 0x66, 0x77, 0xb2, 0x9b, 0xf8, 0x35, 0x83, + 0x77, 0x5e, 0xbd, 0xe5, 0x71, 0x92, 0x85, 0x45, 0x9d, 0x72, 0xd5, 0x75, 0xbb, 0xe2, 0xea, 0xaa, + 0x4a, 0x55, 0xb5, 0x67, 0x1c, 0x11, 0x14, 0xe5, 0xb1, 0x49, 0x44, 0x80, 0x3c, 0x08, 0x42, 0x4a, + 0x84, 0xf8, 0xe0, 0x0f, 0x05, 0x50, 0x84, 0x56, 0x20, 0xf1, 0xc5, 0x17, 0x41, 0x21, 0xca, 0x57, + 0x7e, 0x90, 0x4c, 0xf0, 0x57, 0x90, 0x10, 0x02, 0x11, 0xf8, 0x00, 0x14, 0xa1, 0xfb, 0xaa, 0xba, + 0xd5, 0xae, 0xea, 0x87, 0x67, 0x56, 0x7c, 0xf0, 0x35, 0x7d, 0x4f, 0x9d, 0xd7, 0x3d, 0xf7, 0x75, + 0xee, 0xb9, 0xe7, 0x78, 0xe0, 0x98, 0x1f, 0x78, 0x91, 0x67, 0x7a, 0x4e, 0xb4, 0xe7, 0xe3, 0x70, + 0x9e, 0xb6, 0xd0, 0xb1, 0x47, 0x38, 0xdc, 0x76, 0x71, 0x34, 0x2f, 0x3e, 0xce, 0xef, 0xbe, 0xd4, + 0x98, 0x6d, 0x7b, 0x6d, 0x8f, 0x02, 0xae, 0x93, 0x5f, 0xec, 0x5b, 0xe3, 0x94, 0xdf, 0x0d, 0xb7, + 0x29, 0xed, 0xf5, 0xf8, 0x17, 0xfb, 0xa4, 0xfd, 0x9d, 0x02, 0xa5, 0x45, 0xd3, 0xf4, 0xba, 0x6e, + 0x84, 0x6e, 0xc0, 0x78, 0x3b, 0xf0, 0xba, 0x7e, 0x5d, 0x39, 0xa7, 0x5c, 0xae, 0x2e, 0x34, 0xe6, + 0x33, 0x24, 0xcc, 0xdf, 0x26, 0x18, 0x3a, 0x43, 0x44, 0xf3, 0x70, 0xcc, 0x60, 0xc4, 0x2d, 0x3f, + 0xb0, 0x77, 0x8d, 0x08, 0xb7, 0x76, 0xf0, 0x5e, 0xbd, 0x70, 0x4e, 0xb9, 0x5c, 0xd3, 0x67, 0xf8, + 0xa7, 0x26, 0xfb, 0x72, 0x07, 0xef, 0xa1, 0xab, 0x30, 0x63, 0x38, 0xb6, 0x11, 0xa6, 0xb0, 0x8b, + 0x14, 0x7b, 0x9a, 0x7e, 0x90, 0x70, 0x5f, 0x86, 0x13, 0x7e, 0x77, 0xd3, 0xb1, 0xcd, 0x56, 0x80, + 0x5d, 0x0b, 0x7f, 0x66, 0xd7, 0xeb, 0x86, 0xad, 0x10, 0x63, 0xab, 0x3e, 0x46, 0x09, 0x66, 0xd9, + 0x57, 0x3d, 0xfe, 0xb8, 0x8e, 0xb1, 0xa5, 0xfd, 0x5c, 0x81, 0x71, 0xaa, 0x22, 0x3a, 0x03, 0xc0, + 0xe9, 0x89, 0x10, 0x85, 0xd2, 0x54, 0x18, 0x84, 0xb0, 0x3f, 0x01, 0x13, 0x21, 0x36, 0x03, 0x1c, + 0x71, 0x6d, 0x79, 0x8b, 0x90, 0xb1, 0x5f, 0xad, 0xd0, 0x6e, 0x73, 0xdd, 0x2a, 0x0c, 0xb2, 0x6e, + 0xb7, 0xd1, 0xeb, 0x00, 0xb4, 0xeb, 0x2d, 0x62, 0x44, 0xaa, 0xc9, 0xd4, 0xc2, 0xd9, 0x7c, 0x43, + 0x3d, 0xdc, 0xf3, 0xb1, 0x5e, 0x69, 0x8b, 0x9f, 0xe8, 0x14, 0x94, 0x43, 0xbb, 0xed, 0xb6, 0xfc, + 0xee, 0x66, 0x7d, 0x9c, 0xf2, 0x2e, 0x91, 0x76, 0xb3, 0xbb, 0x49, 0x3e, 0x39, 0xb6, 0xbb, 0x43, + 0xb5, 0x9d, 0x60, 0x9f, 0x48, 0x9b, 0xe8, 0x7a, 0x0e, 0x6a, 0xe2, 0x13, 0xd5, 0xaa, 0x44, 0x3f, + 0x03, 0xff, 0xbc, 0x6e, 0xb7, 0xb5, 0xff, 0x50, 0x40, 0xa5, 0x02, 0x7f, 0x19, 0x1b, 0x56, 0xb8, + 0xfa, 0xd8, 0xf7, 0x82, 0x68, 0x90, 0x05, 0x64, 0x5d, 0x0a, 0x69, 0x5d, 0x56, 0xe1, 0x58, 0x07, + 0x47, 0x86, 0x65, 0x44, 0x46, 0x6b, 0x9b, 0x70, 0x6c, 0x99, 0xb6, 0x15, 0xd6, 0x8b, 0xe7, 0x8a, + 0x97, 0x6b, 0x4b, 0xc7, 0x0f, 0xf6, 0xe7, 0x66, 0xee, 0xf1, 0xcf, 0x54, 0xde, 0xf2, 0xda, 0x4a, + 0xa8, 0xcf, 0x74, 0x52, 0x20, 0xdb, 0x0a, 0x19, 0x9b, 0x30, 0x34, 0xda, 0x38, 0x94, 0xd9, 0x8c, + 0xc9, 0x6c, 0xd8, 0xe7, 0x14, 0x1b, 0x19, 0x44, 0xd8, 0xc8, 0x96, 0x19, 0x4f, 0x59, 0x46, 0xfb, + 0x91, 0x02, 0x93, 0xb4, 0xdf, 0x42, 0x1f, 0x32, 0x40, 0x78, 0x17, 0xbb, 0x11, 0x1b, 0x20, 0xa5, + 0xcf, 0x00, 0xad, 0x12, 0x34, 0x36, 0x40, 0x58, 0xfc, 0x44, 0x75, 0x28, 0xf9, 0xc6, 0x9e, 0xe3, + 0x19, 0x96, 0xb0, 0x09, 0x6f, 0x22, 0x15, 0x8a, 0xc9, 0x8c, 0x20, 0x3f, 0x91, 0x0e, 0x33, 0x82, + 0x5f, 0x4b, 0x74, 0x9e, 0x4e, 0x89, 0xea, 0xc2, 0x85, 0x4c, 0x89, 0x4d, 0xfe, 0x5b, 0x28, 0xab, + 0xab, 0x7e, 0x0f, 0x44, 0x5b, 0xe4, 0xfd, 0x59, 0x75, 0x77, 0xb1, 0xe3, 0xf9, 0x18, 0xcd, 0xc2, + 0xb8, 0xeb, 0xb9, 0x26, 0xe6, 0xe3, 0xc7, 0x1a, 0x04, 0x4a, 0x75, 0xe6, 0x4a, 0xb2, 0xc6, 0x9b, + 0x63, 0xe5, 0xa2, 0x3a, 0xa6, 0xfd, 0xbb, 0x02, 0x53, 0xdc, 0xae, 0xc4, 0x86, 0x38, 0x08, 0x49, + 0xaf, 0xe8, 0x52, 0xc4, 0x01, 0x65, 0x33, 0xa6, 0x8b, 0x26, 0xba, 0x02, 0x15, 0x0b, 0xef, 0xda, + 0x26, 0x6e, 0xf9, 0x3b, 0x8c, 0xd9, 0x52, 0xed, 0x60, 0x7f, 0xae, 0xbc, 0x42, 0x81, 0xcd, 0x3b, + 0x7a, 0x99, 0x7d, 0x6e, 0xee, 0x64, 0x18, 0xe0, 0x1e, 0x94, 0xa5, 0x7e, 0x17, 0x2f, 0x57, 0x17, + 0x5e, 0xca, 0xec, 0x77, 0x5a, 0x9b, 0x79, 0xd1, 0xd9, 0x55, 0x37, 0x0a, 0xf6, 0xf4, 0x98, 0x45, + 0xe3, 0x26, 0x4c, 0xa6, 0x3e, 0x11, 0x89, 0x62, 0xe6, 0x56, 0x74, 0xf2, 0x93, 0xf4, 0x7b, 0xd7, + 0x70, 0xba, 0x98, 0xaa, 0x5a, 0xd1, 0x59, 0xe3, 0xb5, 0xc2, 0x87, 0x14, 0xad, 0x0e, 0x6a, 0xaf, + 0x79, 0xdf, 0x1c, 0x2b, 0x2b, 0x6a, 0x41, 0xfb, 0xa2, 0x02, 0xea, 0xaa, 0x6b, 0x06, 0x7b, 0x7e, + 0x84, 0x2d, 0xae, 0x0a, 0x3a, 0x0d, 0x15, 0xdf, 0x31, 0x6c, 0x37, 0xc2, 0x8f, 0xa3, 0x78, 0x69, + 0x08, 0x40, 0xf6, 0xc8, 0x16, 0x9e, 0x6c, 0x64, 0x7d, 0x98, 0xe6, 0xc2, 0xe3, 0xb1, 0xbd, 0x04, + 0xd3, 0x7c, 0xb6, 0xd3, 0xe5, 0x81, 0x83, 0x90, 0xab, 0x32, 0xd5, 0x39, 0x34, 0x7e, 0x1c, 0x22, + 0x66, 0x25, 0x6f, 0x26, 0xd3, 0xa3, 0x28, 0x4d, 0x8f, 0x37, 0xc7, 0xca, 0x63, 0xea, 0xb8, 0xf6, + 0x79, 0x05, 0x6a, 0x74, 0x92, 0x2f, 0x7b, 0xac, 0x5b, 0x27, 0xa0, 0x60, 0x5b, 0x4c, 0xc4, 0xd2, + 0xc4, 0xc1, 0xfe, 0x5c, 0x61, 0x6d, 0x45, 0x2f, 0xd8, 0x16, 0x7a, 0x01, 0xc0, 0x37, 0x02, 0xb2, + 0x68, 0xc8, 0xf2, 0x2c, 0xd0, 0xe5, 0x39, 0x79, 0xb0, 0x3f, 0x57, 0x69, 0x52, 0x28, 0x59, 0x96, + 0x15, 0x86, 0xb0, 0x66, 0x85, 0xe8, 0x22, 0x94, 0xd9, 0x16, 0xe8, 0xef, 0x30, 0xa9, 0x4b, 0xd5, + 0x83, 0xfd, 0xb9, 0x12, 0x9d, 0xb6, 0xcd, 0x3b, 0x7a, 0x89, 0x7e, 0x6c, 0xee, 0x70, 0x25, 0x74, + 0xa8, 0x2e, 0xfa, 0xc9, 0xf2, 0x4c, 0xcd, 0x37, 0xa5, 0xef, 0x7c, 0xcb, 0xed, 0xb4, 0xd6, 0x06, + 0x44, 0xba, 0x64, 0x98, 0xd1, 0xa2, 0x65, 0x2d, 0x92, 0x73, 0x83, 0xec, 0x67, 0x23, 0xb0, 0xbe, + 0x08, 0x65, 0x7e, 0x0e, 0x89, 0x49, 0x4f, 0xbb, 0x40, 0x59, 0x91, 0x2e, 0xb0, 0xb3, 0x68, 0x47, + 0xfb, 0x4d, 0x05, 0x66, 0x69, 0xbf, 0x16, 0x2d, 0xeb, 0x1e, 0xee, 0x6c, 0xe2, 0x80, 0x31, 0x23, + 0xb2, 0x3a, 0xb4, 0xdd, 0x23, 0x8b, 0x21, 0x11, 0x59, 0xec, 0x73, 0x73, 0x67, 0x94, 0x15, 0x76, + 0x06, 0x80, 0x73, 0x95, 0xce, 0x1e, 0x06, 0x21, 0x9b, 0xfc, 0x2a, 0xd4, 0x18, 0xd1, 0x3a, 0x3b, + 0xaa, 0x9e, 0x85, 0x8a, 0xb9, 0x6d, 0xd8, 0xae, 0xb4, 0xbd, 0x97, 0x29, 0x80, 0x58, 0x43, 0x5a, + 0xf2, 0x85, 0xd4, 0x92, 0xd7, 0xbe, 0x25, 0x75, 0x2a, 0xc5, 0x6f, 0x04, 0x03, 0x7e, 0x10, 0xa6, + 0x2c, 0x1c, 0x46, 0xad, 0xc4, 0x08, 0xac, 0x67, 0xea, 0xc1, 0xfe, 0x5c, 0x6d, 0x05, 0x87, 0x51, + 0x6c, 0x88, 0x9a, 0x95, 0xb4, 0x76, 0xe4, 0xed, 0xb5, 0x98, 0xda, 0x5e, 0xb5, 0x6f, 0x2b, 0x70, + 0xee, 0x5e, 0xd7, 0x89, 0x6c, 0x86, 0x2b, 0x14, 0xa4, 0x43, 0xa2, 0xe3, 0xd0, 0x73, 0x76, 0x7b, + 0x77, 0xab, 0xfe, 0x1a, 0x5e, 0x80, 0x29, 0x36, 0xc4, 0x01, 0x27, 0xe6, 0x93, 0x68, 0xd2, 0x48, + 0x71, 0x9c, 0x83, 0xaa, 0xf0, 0x48, 0x3c, 0x6f, 0x8b, 0x2b, 0x05, 0xdc, 0x17, 0xf1, 0xbc, 0x2d, + 0xed, 0xcb, 0x0a, 0x9c, 0x4a, 0xe9, 0x65, 0xb8, 0xd1, 0xa2, 0xd5, 0xb1, 0x5d, 0xdd, 0x73, 0xf0, + 0x28, 0x0a, 0x7d, 0x04, 0x66, 0xda, 0x84, 0x18, 0xe3, 0x43, 0x56, 0x3b, 0x76, 0xb0, 0x3f, 0x37, + 0x7d, 0x9b, 0x7d, 0x8c, 0x0d, 0x37, 0xdd, 0x4e, 0x01, 0x76, 0xb4, 0x55, 0xa8, 0x4b, 0x8a, 0xac, + 0xb9, 0x76, 0x64, 0x1b, 0x0e, 0x6b, 0x8c, 0x30, 0x1f, 0x35, 0x03, 0xce, 0xc5, 0xc6, 0xb5, 0x2c, + 0x3b, 0xb2, 0x3d, 0xd7, 0x70, 0xd2, 0x5e, 0xd4, 0x28, 0xdd, 0x42, 0x30, 0x46, 0x9d, 0x32, 0x66, + 0x5d, 0xfa, 0x5b, 0xb3, 0xe0, 0x3c, 0x73, 0x13, 0x71, 0xc7, 0xdb, 0xc5, 0xef, 0x97, 0x94, 0x4f, + 0x03, 0xe2, 0x9e, 0x2b, 0x15, 0xf6, 0xa6, 0x67, 0xbb, 0xa3, 0x31, 0x8d, 0xfd, 0xdd, 0xc2, 0x90, + 0xfe, 0xae, 0x86, 0x41, 0x95, 0x45, 0xde, 0xc5, 0x5b, 0xd1, 0x88, 0xdb, 0x4e, 0xbc, 0x73, 0x16, + 0xf2, 0x77, 0x4e, 0xed, 0x4d, 0x38, 0xc3, 0xc5, 0xf0, 0x6d, 0x4e, 0xc7, 0x9f, 0xee, 0xe2, 0x30, + 0x5a, 0xb1, 0x43, 0x63, 0xd3, 0x19, 0xa9, 0x93, 0xda, 0x1a, 0x9c, 0xce, 0xe4, 0xb5, 0xea, 0x8e, + 0xcc, 0xea, 0x5d, 0x05, 0xce, 0x67, 0xf2, 0xd2, 0xf1, 0x16, 0x0e, 0xb0, 0x6b, 0x62, 0x1d, 0x87, + 0xa3, 0xed, 0x23, 0xf9, 0x4e, 0x7e, 0xa1, 0x8f, 0x93, 0xff, 0x13, 0x25, 0xc7, 0x40, 0xab, 0xee, + 0xa7, 0xbb, 0xb8, 0x3b, 0xda, 0x2c, 0x18, 0x72, 0x50, 0xd0, 0x47, 0xc8, 0x86, 0x4a, 0x85, 0xd1, + 0x5d, 0x22, 0xcf, 0x13, 0x58, 0xdf, 0x36, 0x02, 0x4c, 0x4c, 0x2b, 0x34, 0x13, 0x54, 0xe8, 0x39, + 0xa8, 0x79, 0x8f, 0xdc, 0xb4, 0xa7, 0x58, 0xd3, 0xab, 0xde, 0x23, 0x37, 0xf6, 0x11, 0x22, 0x38, + 0x95, 0xd9, 0xaf, 0x75, 0xec, 0x8e, 0x64, 0xd6, 0x17, 0x00, 0xb8, 0xd4, 0xa4, 0x57, 0xf4, 0x40, + 0xe7, 0x6c, 0x9b, 0x77, 0xf4, 0x0a, 0x47, 0x68, 0xee, 0x68, 0x7f, 0x9f, 0x67, 0x4e, 0x1d, 0x9b, + 0xd8, 0xde, 0x1d, 0xcd, 0x9c, 0x23, 0x89, 0x46, 0x1f, 0x84, 0x93, 0x02, 0xbb, 0x77, 0x02, 0xb0, + 0xad, 0xf8, 0xb8, 0x29, 0x34, 0xea, 0xd9, 0x3a, 0x54, 0x41, 0xd7, 0x63, 0xcf, 0x69, 0x0e, 0x8f, + 0x6d, 0xba, 0x07, 0x67, 0xf3, 0x16, 0x93, 0x69, 0x04, 0xd6, 0xfb, 0xd8, 0x3b, 0xed, 0x0f, 0xf3, + 0x0c, 0xbb, 0x68, 0x9a, 0x98, 0x78, 0xa3, 0xef, 0x9f, 0x61, 0x87, 0x74, 0xd2, 0x34, 0x1f, 0x8e, + 0xa7, 0x35, 0x5c, 0x72, 0x3c, 0x73, 0xe7, 0xfd, 0x34, 0x4a, 0x00, 0x27, 0xd3, 0x12, 0x37, 0xdc, + 0xcd, 0xf7, 0x5b, 0xe6, 0x6f, 0x29, 0x50, 0xe7, 0x42, 0xd7, 0x71, 0x40, 0x58, 0x3c, 0xf4, 0x76, + 0xb0, 0xbb, 0x68, 0x8d, 0x38, 0xfc, 0xb7, 0x60, 0x32, 0x64, 0xf4, 0xad, 0x88, 0x30, 0xe0, 0x27, + 0xc7, 0x73, 0xd9, 0x3b, 0x81, 0x24, 0x49, 0xaf, 0x85, 0x52, 0x4b, 0xf3, 0xa0, 0x91, 0xa1, 0x0e, + 0x3b, 0x2e, 0x47, 0xdd, 0xbc, 0xa8, 0x22, 0x2d, 0x9b, 0xed, 0x98, 0x15, 0x36, 0xcc, 0x94, 0xdd, + 0xda, 0x8a, 0x5e, 0xa2, 0x1f, 0xd7, 0x2c, 0xed, 0xfb, 0x22, 0x3e, 0xa0, 0x63, 0xdf, 0xb1, 0x4d, + 0x23, 0xb2, 0xdd, 0xf6, 0x28, 0x72, 0x56, 0x00, 0x19, 0xdd, 0x68, 0x1b, 0xbb, 0x11, 0x25, 0xf6, + 0xdc, 0x56, 0x37, 0x70, 0xb8, 0x44, 0x7a, 0x91, 0x5f, 0x4c, 0x7d, 0xdd, 0xd0, 0xef, 0xea, 0x33, + 0x69, 0x82, 0x8d, 0xc0, 0x41, 0x2f, 0x02, 0x0a, 0x84, 0x7c, 0xcf, 0x6d, 0x11, 0x93, 0xe0, 0x80, + 0x4e, 0xcf, 0x8a, 0x3e, 0x23, 0x7d, 0x59, 0xa7, 0x1f, 0xb4, 0x7b, 0x80, 0xd6, 0xdc, 0x30, 0x32, + 0x5c, 0x13, 0xb3, 0x88, 0xc6, 0x0a, 0xb9, 0x25, 0x56, 0xa0, 0xc4, 0x57, 0x51, 0xe3, 0x05, 0x18, + 0x27, 0xfd, 0xd9, 0x43, 0xe7, 0x61, 0x12, 0x53, 0x0c, 0x6c, 0xb5, 0xe8, 0x5e, 0xc0, 0xbc, 0xe1, + 0x9a, 0x00, 0x12, 0x42, 0xed, 0xbf, 0x26, 0xa0, 0x2e, 0xf8, 0xdd, 0xc6, 0x64, 0xf6, 0x6d, 0xd9, + 0xed, 0x6e, 0x40, 0x25, 0xca, 0x5c, 0xbf, 0x3a, 0x21, 0xd8, 0xbe, 0x00, 0x10, 0x87, 0xb7, 0x84, + 0x85, 0xe8, 0x24, 0xe3, 0x83, 0x47, 0x26, 0x99, 0x08, 0x72, 0x8d, 0xe4, 0xe8, 0x7f, 0x18, 0x54, + 0xc1, 0xb8, 0x67, 0x95, 0xa2, 0x83, 0xfd, 0xb9, 0x29, 0xd9, 0xc7, 0x68, 0xde, 0xd1, 0xa7, 0x0c, + 0xb9, 0xbd, 0x83, 0xce, 0x43, 0xc9, 0xc7, 0x38, 0x20, 0x63, 0x3e, 0x46, 0x47, 0x00, 0x0e, 0xf6, + 0xe7, 0x26, 0x9a, 0x18, 0x07, 0x6b, 0x2b, 0xfa, 0x04, 0xf9, 0xb4, 0x66, 0x91, 0x0b, 0xae, 0x63, + 0x87, 0x11, 0x76, 0xc9, 0xad, 0x72, 0xfc, 0x5c, 0xf1, 0x72, 0x45, 0x4f, 0x00, 0xe8, 0x57, 0xa1, + 0xba, 0xe9, 0xe0, 0x16, 0x66, 0x4e, 0x00, 0x8d, 0x37, 0x4d, 0x2d, 0xbc, 0x96, 0x39, 0x8d, 0xf3, + 0x4c, 0x36, 0xbf, 0x8e, 0x23, 0x32, 0x8d, 0xd6, 0x23, 0x23, 0xc2, 0x3a, 0x6c, 0x3a, 0x58, 0xb8, + 0x14, 0x16, 0xa8, 0x8f, 0xec, 0x2d, 0xbb, 0xe5, 0x2f, 0xf8, 0xb1, 0x84, 0xd2, 0x13, 0x4b, 0x98, + 0x22, 0x3c, 0x9b, 0x0b, 0xbe, 0x90, 0xf2, 0x6b, 0x50, 0xeb, 0x58, 0x6e, 0x18, 0x4b, 0x28, 0x3f, + 0xb1, 0x84, 0x2a, 0xe1, 0x27, 0xd8, 0xb7, 0x60, 0x32, 0xc0, 0x8e, 0xb1, 0x17, 0xf3, 0xaf, 0x3c, + 0x31, 0xff, 0x1a, 0x65, 0x28, 0x04, 0x3c, 0x84, 0x19, 0x31, 0x5d, 0xba, 0xe1, 0x36, 0xdf, 0x4f, + 0x80, 0xee, 0x27, 0x97, 0xb3, 0x63, 0x0c, 0xdd, 0x70, 0x9b, 0x6f, 0x17, 0xfc, 0x60, 0x0e, 0xf4, + 0x69, 0x3e, 0xa5, 0xba, 0xe1, 0x36, 0x5d, 0xf3, 0xe8, 0x1e, 0x20, 0x99, 0x2b, 0x5f, 0x62, 0x55, + 0xca, 0x76, 0xae, 0x2f, 0x5b, 0x1c, 0xe8, 0x6a, 0xc2, 0x8d, 0x2f, 0xc1, 0xdb, 0x50, 0x93, 0xbb, + 0x80, 0xaa, 0x50, 0xda, 0x70, 0x77, 0x5c, 0xef, 0x91, 0xab, 0x3e, 0x43, 0x1a, 0xbc, 0x33, 0xaa, + 0x82, 0x6a, 0x50, 0x16, 0xee, 0xa9, 0x5a, 0x40, 0xd3, 0x50, 0xdd, 0x70, 0x8d, 0x5d, 0xc3, 0x76, + 0x08, 0x44, 0x2d, 0x6a, 0x9f, 0x85, 0x93, 0x39, 0x3e, 0xa3, 0xbc, 0xf4, 0x3e, 0x2e, 0x56, 0x5e, + 0xbe, 0x5f, 0xa8, 0xe4, 0xfb, 0x85, 0xe4, 0x76, 0x29, 0x46, 0x8b, 0xac, 0xbf, 0xb2, 0x2e, 0x9a, + 0xda, 0x35, 0x38, 0x9e, 0xe9, 0x4a, 0xcb, 0xc2, 0x4b, 0x5c, 0xb8, 0xf6, 0x49, 0x98, 0xcd, 0xf2, + 0x95, 0x65, 0xdc, 0xd7, 0x9f, 0x48, 0x51, 0x6d, 0x1b, 0x4e, 0xf7, 0x5a, 0x23, 0xc4, 0xd9, 0x26, + 0x79, 0x42, 0x49, 0x5f, 0x53, 0xe2, 0x58, 0x49, 0xe2, 0x4b, 0x5a, 0x8d, 0x4e, 0x2c, 0x40, 0xf6, + 0x6b, 0x95, 0xa7, 0xe2, 0xd7, 0x16, 0x0e, 0xf9, 0xb5, 0x89, 0x69, 0x3f, 0xd1, 0x6b, 0x5a, 0xe6, + 0x09, 0x35, 0x5e, 0x49, 0xf4, 0x49, 0x9f, 0xec, 0x4a, 0xff, 0x93, 0x3d, 0xe1, 0xfc, 0x76, 0xc6, + 0x08, 0x13, 0xff, 0xee, 0x29, 0xb0, 0x6e, 0x42, 0x4d, 0x76, 0x8e, 0x9e, 0x02, 0x47, 0x1d, 0xa6, + 0xd2, 0xce, 0xcf, 0x53, 0xe0, 0xf9, 0x16, 0x1c, 0x13, 0x41, 0x31, 0x1e, 0x11, 0xa3, 0x23, 0xfd, + 0x52, 0xc2, 0x58, 0xf6, 0x09, 0x95, 0x7c, 0x9f, 0x30, 0x61, 0xf9, 0x10, 0x4e, 0xf4, 0x86, 0x64, + 0x96, 0x03, 0x6c, 0x44, 0xa9, 0x09, 0x7a, 0x5d, 0x4c, 0xd0, 0x21, 0xd9, 0x6b, 0xef, 0xc0, 0x6c, + 0x2f, 0x57, 0x72, 0x77, 0x6f, 0xdc, 0x4c, 0x34, 0x1d, 0xf9, 0x25, 0x2a, 0xd1, 0x79, 0x1d, 0x8e, + 0xf7, 0x72, 0xbf, 0x8b, 0x8d, 0x5d, 0xfc, 0x44, 0x86, 0x30, 0xe1, 0xc2, 0xa1, 0xd8, 0x94, 0x1c, + 0x46, 0x22, 0x73, 0xcd, 0xf1, 0xc2, 0x27, 0x13, 0xf2, 0x65, 0x05, 0xce, 0x1e, 0x8e, 0x80, 0xf1, + 0x48, 0x13, 0x8d, 0x0e, 0x35, 0xde, 0x19, 0x99, 0x7d, 0x3a, 0x32, 0x54, 0xe8, 0x17, 0x19, 0x4a, + 0x34, 0xf9, 0x7a, 0x46, 0x2c, 0x6e, 0xcd, 0xdd, 0xb5, 0x23, 0x7a, 0xa8, 0xf1, 0x29, 0x70, 0x84, + 0xae, 0xbe, 0x2a, 0xa6, 0xca, 0xc8, 0xe3, 0xab, 0x7d, 0x45, 0x81, 0x69, 0x29, 0x8e, 0x4c, 0xa7, + 0xf6, 0x5b, 0xa3, 0x5b, 0x23, 0xf7, 0x79, 0x87, 0xbd, 0x9d, 0x34, 0x34, 0xa1, 0xe1, 0x29, 0x28, + 0x9a, 0x71, 0xac, 0xbc, 0x74, 0xb0, 0x3f, 0x57, 0x5c, 0x5e, 0x5b, 0xd1, 0x09, 0x8c, 0x8c, 0xd3, + 0x14, 0x55, 0x85, 0x06, 0xa3, 0xff, 0x2f, 0x35, 0xf9, 0xbe, 0x02, 0x28, 0xf5, 0xfa, 0x45, 0xa3, + 0xfd, 0xe4, 0x96, 0xc2, 0x9e, 0xc0, 0x4c, 0x2f, 0x79, 0xdf, 0xc8, 0xbb, 0xa5, 0xc8, 0x0f, 0x04, + 0x7a, 0x0d, 0xcb, 0xcf, 0x05, 0x6f, 0x48, 0xcf, 0x3b, 0xec, 0xa2, 0xa3, 0xe5, 0x0f, 0x54, 0xfc, + 0xf2, 0x11, 0xd3, 0x24, 0x8f, 0x54, 0x45, 0xe9, 0x91, 0x4a, 0xfb, 0x73, 0x05, 0x66, 0x38, 0x05, + 0x7b, 0x0d, 0x79, 0xaa, 0x3a, 0xbf, 0x0e, 0x25, 0xf1, 0x94, 0xc2, 0x54, 0x3e, 0x3f, 0xc4, 0x8b, + 0x94, 0x2e, 0x68, 0xe4, 0x37, 0x87, 0x62, 0xfa, 0xcd, 0xe1, 0x3f, 0x13, 0xb5, 0x59, 0xf7, 0xee, + 0xda, 0x61, 0xd4, 0xf8, 0xa9, 0x32, 0xfa, 0xc8, 0x5f, 0x84, 0x72, 0x68, 0xbb, 0x26, 0x16, 0x77, + 0x36, 0x8e, 0xb7, 0x4e, 0x60, 0xe4, 0xce, 0x46, 0x3f, 0xae, 0x59, 0xe8, 0x59, 0xa8, 0x30, 0x3c, + 0xd7, 0x7b, 0x44, 0xb5, 0x29, 0xeb, 0x8c, 0xf0, 0xbe, 0xf7, 0x88, 0x30, 0xe9, 0xba, 0x91, 0xed, + 0x88, 0x4b, 0x00, 0x67, 0xb2, 0x41, 0x60, 0x84, 0x09, 0xfd, 0xc8, 0x98, 0x30, 0x3c, 0xc2, 0x64, + 0x9c, 0x31, 0xa1, 0x00, 0xc2, 0xe4, 0x3c, 0xf1, 0x71, 0x77, 0x71, 0x10, 0xe2, 0x96, 0x17, 0x58, + 0x38, 0xa0, 0xf7, 0x80, 0x32, 0xf1, 0x53, 0x29, 0xf0, 0x01, 0x81, 0x25, 0x4f, 0xcb, 0xdc, 0x66, + 0xff, 0x5f, 0xfa, 0xfd, 0x0b, 0x05, 0x2a, 0x7c, 0xe7, 0xdb, 0xf2, 0x1a, 0xad, 0xd1, 0xfb, 0x3b, + 0x52, 0x88, 0xa2, 0xf1, 0x3b, 0xca, 0x91, 0x37, 0xc7, 0x11, 0xf6, 0xf8, 0xf4, 0x25, 0xb5, 0xd8, + 0x37, 0xdc, 0xfb, 0x29, 0x98, 0x5c, 0x34, 0x23, 0x9a, 0x8f, 0x41, 0xa5, 0x35, 0x9a, 0xa3, 0xdb, + 0xe0, 0x0c, 0x80, 0xe3, 0x99, 0x86, 0xd3, 0xf2, 0x5c, 0x67, 0x8f, 0x3b, 0xe5, 0x15, 0x0a, 0x79, + 0xe0, 0x3a, 0x7b, 0xc9, 0x89, 0x73, 0x0f, 0xa6, 0x57, 0xb0, 0x91, 0x92, 0xf6, 0x24, 0x47, 0xe9, + 0xd7, 0xc7, 0xf9, 0x62, 0xe5, 0xef, 0x5b, 0x91, 0x11, 0x75, 0xc3, 0xa3, 0x70, 0xfc, 0x6e, 0x51, + 0x8c, 0xca, 0x47, 0x60, 0x4c, 0xca, 0x28, 0xb8, 0x96, 0x3f, 0x28, 0xb2, 0xc8, 0x79, 0x9a, 0x5e, + 0x40, 0x09, 0xb3, 0x9f, 0xec, 0x1b, 0x3f, 0x50, 0x60, 0x92, 0xdc, 0xdc, 0x97, 0x3d, 0xd7, 0xc5, + 0x66, 0x84, 0x2d, 0xf9, 0x76, 0xaf, 0xe4, 0xde, 0xee, 0x47, 0x88, 0x35, 0x34, 0x01, 0xa2, 0xc0, + 0x70, 0x43, 0xdf, 0x0b, 0x22, 0x96, 0xc2, 0x31, 0xb5, 0x70, 0x63, 0x58, 0xf5, 0x05, 0xa1, 0x2e, + 0xf1, 0x40, 0x27, 0x60, 0xa2, 0x63, 0x58, 0x56, 0xc0, 0x32, 0x39, 0x2a, 0x3a, 0x6f, 0x35, 0x5e, + 0x01, 0x95, 0xa8, 0xa9, 0x63, 0x93, 0x75, 0xc6, 0x76, 0xdb, 0x43, 0xf5, 0x46, 0x10, 0x12, 0x2f, + 0x6a, 0x24, 0x33, 0x68, 0x9b, 0x30, 0x46, 0xb3, 0x36, 0xa6, 0xa1, 0x4a, 0xfe, 0x4d, 0xae, 0xa6, + 0x75, 0x98, 0x25, 0x80, 0x5e, 0xae, 0xaa, 0x82, 0x8e, 0xc3, 0x8c, 0xf8, 0x12, 0xdb, 0x5c, 0x2d, + 0xc8, 0x04, 0xb2, 0xfe, 0x6a, 0x51, 0x5b, 0x85, 0x4a, 0x6c, 0x06, 0x34, 0x05, 0xf0, 0xd0, 0x8f, + 0x12, 0x39, 0x00, 0x13, 0x0f, 0xfd, 0xe8, 0xee, 0xe2, 0x7d, 0x55, 0xe1, 0xbf, 0x3f, 0xbe, 0x78, + 0x5f, 0x2d, 0x20, 0x15, 0x6a, 0x0f, 0xfd, 0xa8, 0x19, 0x78, 0x8f, 0xed, 0x8e, 0x1d, 0xed, 0xa9, + 0x45, 0xed, 0x6f, 0x15, 0x32, 0xc5, 0x37, 0xbb, 0x6d, 0xb2, 0x7f, 0x52, 0x4b, 0x87, 0xb2, 0x17, + 0xfd, 0xc7, 0xca, 0x88, 0x6e, 0x34, 0xba, 0x9b, 0xca, 0x44, 0x2a, 0x0c, 0x93, 0x89, 0xc4, 0xb6, + 0x9f, 0xcc, 0xc4, 0xa4, 0xf4, 0x66, 0x55, 0x1c, 0x10, 0x4f, 0xfd, 0xed, 0x22, 0x9c, 0xa0, 0x9d, + 0x59, 0x73, 0x43, 0x1f, 0x9b, 0xac, 0x3f, 0xeb, 0x91, 0x17, 0xe0, 0xc6, 0x57, 0x8e, 0x70, 0x32, + 0x6c, 0x40, 0xd9, 0xf1, 0xda, 0x72, 0x47, 0x5e, 0xcc, 0xec, 0xc8, 0x21, 0x91, 0x77, 0xbd, 0x36, + 0xed, 0x17, 0x65, 0xcb, 0x1b, 0x7a, 0xc9, 0x61, 0x3f, 0x1a, 0x3f, 0x53, 0x06, 0xfb, 0x50, 0xe8, + 0x3a, 0x54, 0x79, 0xee, 0x83, 0x99, 0x24, 0x3f, 0x4c, 0x1d, 0xec, 0xcf, 0x01, 0x4b, 0x7e, 0xa0, + 0x49, 0x49, 0x3c, 0x3d, 0x82, 0x66, 0x23, 0xdd, 0x97, 0x72, 0xa3, 0xa4, 0x4c, 0xa3, 0xe2, 0x50, + 0x99, 0x46, 0x71, 0x92, 0x54, 0x0c, 0x4a, 0x2f, 0xe5, 0xb1, 0x41, 0x19, 0x11, 0xc2, 0x67, 0x9c, + 0x48, 0xbf, 0x9e, 0xfb, 0x00, 0xd4, 0x38, 0x47, 0xde, 0x3a, 0xe5, 0x5b, 0x1c, 0x5f, 0x77, 0x61, + 0x5d, 0x21, 0xcb, 0x9b, 0x11, 0xb0, 0x85, 0x17, 0xea, 0x25, 0xb6, 0xf2, 0x42, 0xed, 0x8f, 0x0a, + 0x30, 0xbb, 0xd8, 0x8d, 0xb6, 0x57, 0x1f, 0x9b, 0xdb, 0x86, 0xdb, 0xc6, 0x3a, 0x0e, 0x7d, 0xcf, + 0x0d, 0x31, 0x7a, 0x0e, 0x6a, 0x86, 0x69, 0xe2, 0x30, 0xe4, 0x21, 0x2d, 0x96, 0xbd, 0x53, 0x65, + 0x30, 0x16, 0xa4, 0x9a, 0x85, 0xf1, 0xd0, 0xf4, 0xfc, 0x38, 0x8b, 0x87, 0x36, 0xe8, 0x06, 0x19, + 0x04, 0x9e, 0x08, 0x08, 0xb3, 0x06, 0xba, 0x06, 0x33, 0xf4, 0x47, 0xcb, 0xc2, 0xa1, 0x19, 0xd8, + 0x3e, 0xb9, 0x81, 0xb0, 0xb0, 0xa7, 0xae, 0xd2, 0x0f, 0x2b, 0x09, 0x1c, 0xad, 0x43, 0x99, 0xc7, + 0xd9, 0x59, 0xcc, 0xb3, 0xba, 0xf0, 0x4a, 0xe6, 0x80, 0x64, 0x29, 0x2e, 0xe2, 0xf5, 0x21, 0x4f, + 0x4b, 0x12, 0x8c, 0x1a, 0x37, 0x61, 0x32, 0xf5, 0x69, 0xa4, 0xb4, 0xa4, 0xf7, 0x14, 0xa8, 0xd3, + 0x91, 0x21, 0x22, 0x39, 0x9b, 0x75, 0x1c, 0x51, 0x3b, 0x34, 0xbe, 0xae, 0xc8, 0x61, 0x98, 0xf1, + 0xc4, 0x5e, 0xd5, 0x85, 0x2b, 0x43, 0xeb, 0xad, 0x33, 0xba, 0xa7, 0x13, 0xa2, 0x4f, 0x8e, 0xd0, + 0x5f, 0x07, 0xb5, 0x37, 0xe4, 0x83, 0x4e, 0x40, 0x21, 0x9e, 0x46, 0x34, 0x7f, 0xa8, 0x79, 0x47, + 0x2f, 0xf8, 0x47, 0x7c, 0xc5, 0x45, 0x0d, 0xe9, 0x7a, 0xc1, 0x9c, 0xed, 0xb8, 0xad, 0x39, 0x70, + 0x5a, 0x7e, 0x19, 0x59, 0xef, 0xfa, 0x2c, 0x90, 0xcf, 0x81, 0x64, 0x92, 0xc5, 0x0f, 0x31, 0xe2, + 0x54, 0xae, 0xe8, 0x55, 0xf1, 0xc8, 0xc2, 0xd6, 0x95, 0x2a, 0x50, 0xb0, 0x6b, 0xf9, 0x9e, 0xcd, + 0x8f, 0xde, 0x8a, 0x3e, 0xcd, 0xe1, 0xab, 0x1c, 0xac, 0xfd, 0xb3, 0x02, 0x35, 0x59, 0x1c, 0x19, + 0x4f, 0x79, 0xf2, 0x3e, 0x4d, 0x0b, 0xa3, 0x4f, 0x02, 0x0a, 0x45, 0x77, 0x5a, 0xf1, 0x6c, 0x2d, + 0xf6, 0x49, 0x9f, 0xeb, 0x67, 0x09, 0x7d, 0x26, 0xec, 0x81, 0x84, 0xe8, 0x2c, 0x00, 0x7e, 0xec, + 0xdb, 0x2c, 0x04, 0x4d, 0xd7, 0x4a, 0x51, 0x97, 0x20, 0xda, 0x57, 0x15, 0x38, 0x29, 0x4d, 0xc7, + 0x65, 0xaf, 0xe3, 0x3b, 0x38, 0xc2, 0xb7, 0x1c, 0xef, 0x51, 0xe3, 0xf5, 0x64, 0x46, 0x2e, 0x40, + 0xcd, 0x34, 0x1c, 0x67, 0xd3, 0x30, 0x77, 0x68, 0x47, 0xd9, 0x31, 0x3c, 0x7d, 0xb0, 0x3f, 0x57, + 0x5d, 0xe6, 0x70, 0xd2, 0xc5, 0xaa, 0x40, 0x22, 0xd3, 0x47, 0xde, 0x46, 0xe2, 0x87, 0x29, 0xa5, + 0xcf, 0xc3, 0xd4, 0x7b, 0x0a, 0x1c, 0x93, 0x74, 0x59, 0x73, 0xed, 0x88, 0xea, 0x71, 0x2f, 0xb5, + 0x85, 0x11, 0x2b, 0x4a, 0x3a, 0xb0, 0x64, 0xad, 0x6e, 0xb4, 0x4d, 0xe4, 0x97, 0xc8, 0x47, 0x62, + 0xd8, 0x86, 0xb4, 0xf8, 0x8b, 0xd4, 0x31, 0x49, 0xd6, 0x70, 0x53, 0x3a, 0x09, 0x12, 0x3e, 0xf4, + 0x24, 0x20, 0x3c, 0x08, 0x8c, 0x1c, 0x81, 0x21, 0x36, 0xbb, 0x01, 0x8e, 0x87, 0xb5, 0xcc, 0x8e, + 0xc0, 0x75, 0x0a, 0x25, 0x78, 0x15, 0x86, 0xb0, 0x11, 0x38, 0xda, 0xcf, 0x14, 0xb8, 0xb0, 0x1c, + 0x60, 0x8b, 0x0c, 0xae, 0xe1, 0x7c, 0x0c, 0x07, 0xf6, 0x96, 0xf4, 0x7a, 0x25, 0x77, 0x45, 0x8a, + 0xb5, 0x5e, 0x07, 0x31, 0x45, 0xa5, 0xde, 0xd0, 0xc3, 0x86, 0x13, 0x11, 0x21, 0xc0, 0x51, 0x48, + 0x9f, 0xd2, 0x29, 0xbc, 0x85, 0xde, 0x14, 0x5e, 0x04, 0x63, 0x8e, 0xed, 0xee, 0xf0, 0x1d, 0x93, + 0xfe, 0x7e, 0x1f, 0xba, 0xfa, 0x2d, 0x05, 0xae, 0xf4, 0xed, 0xea, 0x70, 0x33, 0xc8, 0xce, 0x9e, + 0x41, 0x6b, 0xf2, 0x0c, 0xb2, 0x1b, 0x97, 0x84, 0xfa, 0x67, 0x01, 0x6c, 0x2a, 0x72, 0xcb, 0xe6, + 0x69, 0xab, 0x15, 0x5d, 0x82, 0x68, 0x5f, 0x28, 0xc0, 0x49, 0xa6, 0x0b, 0xb6, 0x12, 0xed, 0x42, + 0x7a, 0x3d, 0xfd, 0xa2, 0xb4, 0xb1, 0x5e, 0x83, 0x99, 0x2d, 0xdb, 0x89, 0xe8, 0x91, 0xd6, 0xc3, + 0x4e, 0x65, 0x1f, 0xd6, 0x62, 0x38, 0xb9, 0x19, 0x0a, 0xe4, 0x30, 0xec, 0xf2, 0xa4, 0xb1, 0x8a, + 0x5e, 0xe3, 0x88, 0x14, 0x86, 0x2e, 0xc1, 0x34, 0x7e, 0x6c, 0x3a, 0x5d, 0x0b, 0xb7, 0xe8, 0xaa, + 0xe2, 0xc9, 0x0a, 0x65, 0x7d, 0x8a, 0x83, 0x57, 0x19, 0xb4, 0x61, 0x88, 0xbe, 0x7c, 0x02, 0xc0, + 0x8c, 0x55, 0xe4, 0x3b, 0xfc, 0x87, 0xb2, 0x77, 0x78, 0xf6, 0xd4, 0x77, 0xb8, 0x63, 0x3a, 0x6e, + 0xdb, 0x61, 0x84, 0x03, 0x6c, 0xe9, 0x12, 0x2f, 0xed, 0x6b, 0x0a, 0xcc, 0x88, 0x85, 0x4f, 0x17, + 0x17, 0xed, 0xbf, 0xe4, 0x58, 0x3a, 0x23, 0xae, 0x48, 0x74, 0x13, 0x4a, 0x7c, 0x02, 0x0e, 0xff, + 0xba, 0x2d, 0x28, 0xb4, 0xdf, 0xe8, 0xd1, 0x66, 0xd9, 0xb3, 0x70, 0x6a, 0x61, 0x2a, 0xe9, 0x85, + 0x89, 0x2e, 0xc0, 0x94, 0xe9, 0x59, 0xb8, 0x65, 0x6e, 0x1b, 0x8e, 0x83, 0xdd, 0xb6, 0x38, 0x42, + 0x27, 0x09, 0x74, 0x59, 0x00, 0x53, 0xca, 0x17, 0xfb, 0x6c, 0x27, 0x5f, 0x52, 0x60, 0x4e, 0x4f, + 0x3f, 0x24, 0xd3, 0xe7, 0x32, 0x66, 0x3b, 0xe6, 0x1d, 0xbd, 0x9d, 0xda, 0x5a, 0x86, 0xb2, 0xc9, + 0x90, 0x39, 0x42, 0xc9, 0xe9, 0xf9, 0x39, 0x05, 0xce, 0x65, 0xe9, 0xc1, 0x20, 0xfc, 0x86, 0xfb, + 0x44, 0x01, 0xef, 0x39, 0x31, 0xae, 0x27, 0xa0, 0xe0, 0xb1, 0x43, 0xb9, 0xcc, 0x0e, 0xe5, 0x07, + 0x77, 0xf4, 0x82, 0xb7, 0xa3, 0xbd, 0x07, 0x00, 0xeb, 0x7b, 0x61, 0x84, 0x3b, 0x34, 0x80, 0x21, + 0x4d, 0x89, 0x7f, 0x8d, 0xfd, 0xe2, 0x45, 0x28, 0xf9, 0x81, 0x47, 0x1c, 0x33, 0x2e, 0xf8, 0x52, + 0xf6, 0x58, 0xc7, 0x6c, 0xe6, 0x9b, 0x0c, 0x5d, 0x17, 0x74, 0xe8, 0x0d, 0x28, 0xfa, 0x0b, 0x7e, + 0xdf, 0x60, 0x9b, 0x4c, 0xbe, 0xd0, 0x64, 0x5b, 0x51, 0x73, 0xa1, 0xa9, 0x13, 0x42, 0x74, 0x1f, + 0x4a, 0x5e, 0xb0, 0x69, 0x47, 0xd6, 0x26, 0x4f, 0xab, 0x1a, 0xa8, 0xc2, 0x03, 0x82, 0xbe, 0xb2, + 0xc4, 0x86, 0x80, 0x37, 0x74, 0xc1, 0x84, 0x1c, 0xdd, 0x8f, 0x8c, 0xc0, 0x15, 0x77, 0x53, 0xd6, + 0x68, 0xfc, 0x8b, 0x02, 0x02, 0x15, 0x59, 0xc9, 0xe3, 0x7b, 0xec, 0x7f, 0xb0, 0xde, 0xbf, 0x3a, + 0xa4, 0xe8, 0x79, 0x79, 0x68, 0xe9, 0x4d, 0x59, 0x9f, 0xe6, 0x2c, 0xe3, 0x27, 0xaf, 0xcf, 0xc2, + 0xcc, 0x21, 0x2c, 0xb2, 0x12, 0xfc, 0xc0, 0x6b, 0x07, 0xc2, 0xe0, 0x45, 0x3d, 0x6e, 0xd3, 0xd0, + 0xa3, 0xf1, 0xd8, 0xee, 0x74, 0x3b, 0xd4, 0x98, 0x45, 0x5d, 0x34, 0x09, 0xd5, 0x66, 0x77, 0x6b, + 0x0b, 0x8b, 0x8d, 0xa6, 0xa8, 0xc7, 0x6d, 0x72, 0x17, 0x67, 0x29, 0x6f, 0xfc, 0x9c, 0xe7, 0xad, + 0xc6, 0x3c, 0x10, 0x13, 0x93, 0xad, 0x2a, 0xbe, 0xfc, 0xb6, 0x88, 0xeb, 0x2e, 0xe4, 0x4e, 0xc5, + 0x60, 0xe2, 0xd9, 0x87, 0x8d, 0xaf, 0x4c, 0x40, 0x89, 0x8f, 0x2d, 0xd1, 0x64, 0x17, 0x07, 0x21, + 0x71, 0x1e, 0xd8, 0x3e, 0x29, 0x9a, 0xe8, 0x24, 0x94, 0x76, 0xcd, 0xb0, 0x15, 0xe0, 0x2d, 0xbe, + 0x4c, 0x27, 0x76, 0xcd, 0x50, 0xc7, 0x5b, 0xe4, 0x12, 0xd3, 0xf5, 0x23, 0xbb, 0x83, 0x5b, 0x9d, + 0x90, 0xe9, 0xc8, 0x2e, 0x31, 0x1b, 0x14, 0x78, 0x6f, 0x5d, 0x2f, 0xb3, 0xcf, 0xf7, 0x42, 0xf4, + 0x1a, 0xa8, 0xdd, 0x10, 0x07, 0x2d, 0xd3, 0xef, 0xb6, 0x04, 0x05, 0x50, 0x8a, 0x99, 0x83, 0xfd, + 0xb9, 0xc9, 0x8d, 0x10, 0x07, 0xcb, 0xcd, 0x8d, 0x87, 0x8c, 0x6c, 0x92, 0xa0, 0x2e, 0xfb, 0xdd, + 0x87, 0x8c, 0xf6, 0xa3, 0x80, 0x42, 0x3a, 0x1a, 0x29, 0xea, 0x2a, 0xa5, 0xa6, 0x49, 0xb4, 0x6c, + 0xac, 0x12, 0xfa, 0x69, 0x86, 0x9e, 0x70, 0x38, 0x03, 0x10, 0x46, 0x06, 0xf5, 0xbd, 0x8c, 0xa8, + 0x5e, 0xa3, 0xb6, 0xa8, 0x70, 0xc8, 0x22, 0x2d, 0x99, 0x09, 0x1c, 0x72, 0x65, 0x6f, 0x99, 0xdd, + 0xa0, 0x3e, 0x49, 0x13, 0xa7, 0x2b, 0x0c, 0xb2, 0xdc, 0xa5, 0xc7, 0x83, 0xdb, 0xed, 0xb4, 0xda, + 0x5e, 0xe0, 0x75, 0x23, 0xdb, 0xc5, 0xf5, 0x29, 0xca, 0xa0, 0xe6, 0x76, 0x3b, 0xb7, 0x05, 0x8c, + 0x0c, 0x89, 0xeb, 0x6d, 0xd9, 0x0e, 0xae, 0x4f, 0xb3, 0x21, 0x61, 0x2d, 0xf4, 0x22, 0x1c, 0x8b, + 0x3c, 0xaf, 0xd5, 0x31, 0xdc, 0xbd, 0x96, 0xe7, 0x63, 0xb7, 0x45, 0xa0, 0x61, 0x5d, 0xa5, 0x47, + 0x87, 0x1a, 0x79, 0xde, 0x3d, 0xc3, 0xdd, 0x7b, 0xe0, 0x63, 0xf7, 0x16, 0x81, 0xa3, 0xf3, 0x50, + 0x22, 0xb2, 0x4c, 0xbf, 0x5b, 0x9f, 0xa1, 0x1d, 0xa4, 0x01, 0x90, 0xfb, 0x5d, 0xd2, 0x3b, 0x7d, + 0xc2, 0xed, 0x92, 0x4e, 0x11, 0x7d, 0xdb, 0x5e, 0x4b, 0x8c, 0x16, 0xa2, 0x63, 0x52, 0x69, 0x7b, + 0x1f, 0xe3, 0xe3, 0x75, 0x05, 0x54, 0xcf, 0xc7, 0x01, 0x4d, 0xf7, 0x69, 0x31, 0x53, 0xd4, 0x8f, + 0x31, 0x1f, 0x38, 0x86, 0x33, 0x93, 0xa1, 0x67, 0xa1, 0xb2, 0xed, 0x85, 0x51, 0xcb, 0x35, 0x3a, + 0xb8, 0x3e, 0x4b, 0x71, 0xca, 0x04, 0x70, 0xdf, 0xe8, 0x60, 0xe2, 0x67, 0x18, 0x81, 0xb9, 0x5d, + 0x3f, 0xce, 0xfc, 0x0c, 0xf2, 0x5b, 0x32, 0x55, 0xc7, 0x78, 0x5c, 0x3f, 0x21, 0x9b, 0xea, 0x9e, + 0xf1, 0x98, 0x78, 0x1f, 0xbe, 0x6d, 0xd5, 0x4f, 0x52, 0xd5, 0xd9, 0x92, 0x27, 0x57, 0x6e, 0xdf, + 0xb6, 0xd0, 0x69, 0x18, 0xf3, 0xc9, 0xb7, 0x3a, 0xfd, 0x56, 0x3e, 0xd8, 0x9f, 0x1b, 0x6b, 0x92, + 0x8f, 0x14, 0xca, 0xd6, 0x88, 0xed, 0x05, 0x76, 0xb4, 0x57, 0x3f, 0x25, 0xd6, 0x08, 0x6b, 0x53, + 0x97, 0xc6, 0xb6, 0xea, 0x8d, 0x84, 0xe9, 0x06, 0x61, 0xda, 0xb5, 0x2d, 0x34, 0x07, 0xd5, 0x47, + 0x5e, 0xb0, 0x43, 0x3a, 0x6a, 0xd9, 0x41, 0xfd, 0x59, 0xe6, 0x2f, 0x70, 0xd0, 0x8a, 0x4d, 0x4f, + 0x6d, 0x3e, 0x77, 0xc8, 0x9c, 0xa2, 0xdd, 0x3c, 0x4d, 0x91, 0xa6, 0x18, 0x78, 0x83, 0x43, 0xb5, + 0xff, 0x19, 0x87, 0x32, 0x59, 0x14, 0xbd, 0x27, 0xe9, 0xa2, 0xd8, 0x35, 0x3f, 0x04, 0xe3, 0x62, + 0x29, 0x15, 0x73, 0x1f, 0x45, 0x04, 0x07, 0xfa, 0x43, 0x67, 0x04, 0x8d, 0xef, 0x17, 0x60, 0x8c, + 0xb4, 0xa5, 0x4a, 0x8c, 0x4a, 0xaa, 0x12, 0xe3, 0x26, 0x4c, 0x90, 0x69, 0x84, 0x59, 0x20, 0x22, + 0x6f, 0x43, 0x8d, 0x79, 0xeb, 0x04, 0x57, 0xe7, 0x24, 0x64, 0xe2, 0xd1, 0x1b, 0xb1, 0x70, 0x7f, + 0x79, 0x0b, 0x2d, 0x42, 0x79, 0x0b, 0x1b, 0x51, 0x37, 0xc0, 0x6c, 0x57, 0x9c, 0xca, 0x2b, 0x62, + 0x11, 0x6c, 0x6f, 0x31, 0x6c, 0x3d, 0x26, 0x23, 0xd6, 0xed, 0xd8, 0x6e, 0xcb, 0x31, 0x22, 0xec, + 0x9a, 0xac, 0x0a, 0xab, 0xa8, 0x43, 0xc7, 0x76, 0xef, 0x32, 0x08, 0x99, 0x3e, 0x76, 0xd8, 0xa2, + 0x11, 0x5c, 0xcc, 0xc3, 0xe9, 0x65, 0x3b, 0xa4, 0xf1, 0x63, 0x8c, 0x3e, 0x0c, 0x15, 0xcb, 0x0e, + 0xb0, 0x49, 0xef, 0x23, 0xa5, 0x3e, 0x81, 0x92, 0x15, 0x81, 0xa5, 0x27, 0x04, 0x8d, 0x9f, 0x90, + 0xe3, 0x8a, 0xf4, 0x30, 0x2d, 0x44, 0xe9, 0x11, 0x52, 0x87, 0x92, 0x61, 0x59, 0x74, 0x6b, 0x65, + 0x7b, 0x93, 0x68, 0xa6, 0xc5, 0x17, 0x47, 0x14, 0x4f, 0xf8, 0x8a, 0x6e, 0xb3, 0x2d, 0x56, 0x34, + 0xd1, 0x1b, 0x50, 0x0a, 0xa3, 0x00, 0x1b, 0x1d, 0x11, 0x6c, 0x78, 0xbe, 0xbf, 0x59, 0xd7, 0x29, + 0xb2, 0x2e, 0x88, 0x1a, 0xe7, 0x60, 0x82, 0x81, 0xf2, 0xa6, 0x83, 0x16, 0x40, 0x89, 0x8f, 0x05, + 0x42, 0x30, 0xc5, 0xc3, 0x8e, 0x1c, 0xa2, 0x3e, 0x83, 0x54, 0xa8, 0x2d, 0xe1, 0x20, 0xda, 0x13, + 0x10, 0x05, 0x4d, 0x01, 0x2c, 0xdd, 0x5d, 0x15, 0x6d, 0x1a, 0x87, 0xbc, 0xeb, 0x99, 0x86, 0x23, + 0x20, 0x45, 0x1a, 0xc1, 0xf4, 0x02, 0xd1, 0x1e, 0x43, 0xd3, 0x50, 0x7d, 0xab, 0x6b, 0x9b, 0x02, + 0x30, 0xae, 0x7d, 0x57, 0x81, 0x72, 0x53, 0x1c, 0x4a, 0xb3, 0x30, 0x1e, 0x46, 0x46, 0x24, 0x2e, + 0xd8, 0xac, 0x41, 0xa0, 0x96, 0x67, 0xbb, 0x6d, 0x11, 0xee, 0xa0, 0x8d, 0xd4, 0xe1, 0x46, 0xac, + 0x5c, 0x90, 0x0e, 0xb7, 0xd3, 0x50, 0x31, 0xf9, 0x25, 0x81, 0x9d, 0x54, 0x63, 0x7a, 0x02, 0x60, + 0xd7, 0xed, 0xc8, 0x70, 0xe8, 0xbc, 0x1a, 0xd3, 0x59, 0x83, 0x4a, 0xc1, 0x8e, 0xc1, 0xaa, 0x21, + 0xc7, 0x74, 0xd6, 0xd0, 0x5c, 0x98, 0x61, 0xcf, 0x1a, 0x1f, 0xb7, 0xa3, 0x6d, 0x16, 0x23, 0x0b, + 0x47, 0x29, 0xc7, 0x99, 0x87, 0x2a, 0x8b, 0xa7, 0x85, 0x2d, 0x7f, 0x27, 0x55, 0xec, 0x24, 0x02, + 0x6e, 0xa1, 0x0e, 0x1c, 0xa3, 0xb9, 0x13, 0x6a, 0xfb, 0x0a, 0xcc, 0x3c, 0xe8, 0x46, 0x0f, 0xb6, + 0x68, 0x78, 0x53, 0x94, 0x8f, 0xf5, 0x09, 0x28, 0x8e, 0x10, 0x9a, 0x97, 0x6a, 0x74, 0x88, 0xc1, + 0x26, 0x92, 0xb2, 0x3c, 0x5e, 0x6b, 0x37, 0x96, 0xd4, 0xda, 0xcd, 0xc2, 0xf8, 0x96, 0x63, 0xb4, + 0x43, 0x6a, 0xa3, 0x92, 0xce, 0x1a, 0x34, 0x3a, 0x26, 0x4a, 0xdb, 0x5a, 0xe9, 0xd8, 0xa0, 0x1a, + 0x7f, 0x68, 0xf2, 0x0a, 0xc6, 0xb8, 0x56, 0xac, 0x24, 0xd5, 0x8a, 0x69, 0x3f, 0x52, 0xe0, 0x58, + 0x46, 0x6a, 0x19, 0x5a, 0x01, 0x60, 0xbe, 0xb1, 0xf4, 0xec, 0x21, 0xed, 0x1b, 0xdd, 0x70, 0xbb, + 0x27, 0x29, 0x8d, 0x7a, 0xcd, 0x2c, 0xae, 0x1c, 0x89, 0x9f, 0xc4, 0x1a, 0x9b, 0x5d, 0xd7, 0x72, + 0x70, 0x92, 0xa1, 0x4a, 0xad, 0xb1, 0x44, 0x81, 0x6b, 0x2b, 0xc4, 0x95, 0xa1, 0xbf, 0xac, 0x24, + 0xe8, 0xc2, 0x9f, 0x8b, 0x59, 0xd0, 0xe5, 0x06, 0xcc, 0x06, 0xd8, 0xb4, 0x7d, 0x1b, 0xbb, 0x51, + 0x4b, 0xba, 0x0b, 0x33, 0xd3, 0xa0, 0xf8, 0x5b, 0x53, 0x5c, 0x8a, 0xb5, 0xfb, 0x00, 0x49, 0x06, + 0x1b, 0xab, 0xe7, 0x25, 0xbf, 0xe4, 0x22, 0x58, 0x06, 0x21, 0x37, 0x68, 0x29, 0x90, 0x44, 0xb6, + 0x0b, 0x3e, 0xa3, 0xc5, 0x2d, 0x7d, 0xd1, 0xb2, 0x02, 0xed, 0x5d, 0x05, 0x4e, 0x11, 0x86, 0x6c, + 0x00, 0x79, 0xa6, 0xae, 0xb8, 0x8c, 0xa1, 0x37, 0xd2, 0x71, 0xbb, 0xe1, 0x53, 0xf7, 0x78, 0xff, + 0x86, 0x9f, 0x2e, 0xe4, 0x52, 0xd1, 0x48, 0x14, 0xe1, 0x39, 0x7b, 0x89, 0x26, 0xaf, 0xc0, 0x04, + 0x4f, 0xf7, 0x53, 0x86, 0x4b, 0xf7, 0xe3, 0xe8, 0xa3, 0xa8, 0xf0, 0xc3, 0x42, 0x5c, 0x02, 0xd2, + 0xef, 0x8a, 0x3a, 0x4a, 0x6a, 0xf1, 0x4d, 0x68, 0x84, 0x76, 0xdb, 0xc5, 0x16, 0xbf, 0x9f, 0x47, + 0x7b, 0xad, 0x43, 0x21, 0x8f, 0x93, 0x0c, 0x63, 0x8d, 0x23, 0xc4, 0x63, 0x8d, 0xae, 0xc3, 0xb1, + 0x5d, 0xae, 0x47, 0x4b, 0xba, 0x61, 0xb3, 0x78, 0x08, 0xda, 0x3d, 0xa4, 0x22, 0x59, 0x30, 0x01, + 0x55, 0x93, 0xc5, 0xc2, 0x5a, 0x16, 0xd9, 0xdc, 0xd8, 0xbe, 0xae, 0xca, 0x1f, 0x56, 0xc8, 0x3e, + 0x47, 0x2f, 0xfa, 0x22, 0x6c, 0xc6, 0x50, 0xd9, 0xc9, 0x37, 0x95, 0x80, 0x29, 0x62, 0x3a, 0x56, + 0x31, 0xd1, 0x1b, 0xab, 0x20, 0x27, 0x33, 0x8f, 0x27, 0x94, 0x98, 0xdb, 0xcc, 0x5a, 0xda, 0x37, + 0x14, 0x38, 0x4e, 0x06, 0x84, 0xed, 0x53, 0x74, 0x6a, 0x6d, 0xf8, 0x44, 0xce, 0xd1, 0x07, 0x33, + 0x5e, 0x45, 0x05, 0x79, 0x15, 0x8d, 0xf0, 0xec, 0xfb, 0x6f, 0x0a, 0x54, 0x09, 0x5f, 0x3e, 0x51, + 0x1b, 0xe7, 0x93, 0x5b, 0xaa, 0xf4, 0xfe, 0xa0, 0xa4, 0xde, 0x1f, 0x1a, 0x7f, 0x15, 0x5f, 0x29, + 0x3f, 0x9a, 0x64, 0x50, 0x30, 0xcd, 0x2f, 0x66, 0x6a, 0x7e, 0x68, 0x4b, 0x4d, 0x4a, 0x5a, 0xc9, + 0x59, 0xe1, 0x60, 0xe2, 0x91, 0x3f, 0x16, 0x8f, 0xa5, 0x09, 0x00, 0x5d, 0x06, 0x95, 0x5f, 0xc5, + 0x93, 0x49, 0xc2, 0x36, 0x8c, 0x29, 0x76, 0x0b, 0x8f, 0xe7, 0xc6, 0x15, 0x50, 0x0d, 0x27, 0xc0, + 0x86, 0xb5, 0xd7, 0x0a, 0x78, 0x21, 0x0b, 0x1d, 0xe9, 0xb2, 0x3e, 0xcd, 0xe1, 0xa2, 0xbe, 0x45, + 0xfb, 0x05, 0x39, 0xf3, 0xa8, 0x2d, 0x5d, 0xab, 0xf1, 0x1d, 0x29, 0x78, 0xd4, 0x67, 0x9f, 0xcf, + 0x52, 0xa4, 0x90, 0xa9, 0xc8, 0x1d, 0x98, 0x64, 0x98, 0xec, 0x10, 0x12, 0xc1, 0xde, 0x8b, 0x39, + 0x99, 0x29, 0x3d, 0x87, 0x9b, 0x5e, 0x6b, 0xb3, 0xec, 0x0b, 0x4a, 0xdb, 0x78, 0x28, 0x0c, 0x7d, + 0x88, 0xab, 0x72, 0x74, 0xae, 0xda, 0x0f, 0x15, 0x98, 0xa2, 0x06, 0xd8, 0x36, 0x02, 0xb6, 0xc5, + 0x35, 0xfe, 0xec, 0x08, 0x0f, 0x79, 0xc9, 0xac, 0x2d, 0x8c, 0x36, 0x6b, 0x57, 0xa0, 0xcc, 0xc7, + 0x28, 0xe0, 0x61, 0x80, 0xe1, 0x37, 0xd2, 0x98, 0x32, 0x09, 0xbf, 0xb8, 0x80, 0x18, 0x66, 0x24, + 0x6d, 0xda, 0x8d, 0x07, 0x49, 0x87, 0x64, 0x79, 0xca, 0x93, 0xcb, 0x7b, 0x07, 0x26, 0xb9, 0x3c, + 0xd6, 0xaf, 0xc6, 0x52, 0x22, 0xea, 0xa8, 0x2b, 0x39, 0xe1, 0xfe, 0x3a, 0xcc, 0xdc, 0xb2, 0x83, + 0x30, 0xba, 0x6b, 0x84, 0xd1, 0x32, 0x73, 0x10, 0xa8, 0x67, 0xb6, 0x45, 0x80, 0xbc, 0xa0, 0x9f, + 0x35, 0x68, 0x40, 0xd8, 0x08, 0x23, 0x5e, 0xf2, 0x4b, 0x7f, 0x6b, 0xff, 0xa0, 0xc0, 0x31, 0x1e, + 0xb8, 0x90, 0xd2, 0x9e, 0xd8, 0x55, 0x18, 0x1b, 0x0e, 0xb6, 0x5a, 0x9b, 0xde, 0x63, 0xb1, 0xd0, + 0x18, 0x64, 0xc9, 0x7b, 0x4c, 0x4e, 0xc6, 0xc0, 0x78, 0xd4, 0x0a, 0x3c, 0x96, 0xf5, 0xc7, 0x17, + 0x59, 0x35, 0x30, 0x1e, 0xe9, 0x1c, 0xd4, 0xf8, 0x92, 0x02, 0x45, 0x82, 0x2a, 0xb9, 0xde, 0x4a, + 0xda, 0xf5, 0x9e, 0x85, 0x71, 0xfa, 0x87, 0x1f, 0xc4, 0x6e, 0x44, 0x1b, 0x23, 0xec, 0x46, 0xbd, + 0xb5, 0x0e, 0xb5, 0xcc, 0x34, 0x80, 0xff, 0x56, 0xe0, 0xb8, 0x8e, 0xb7, 0x02, 0x1c, 0x6e, 0xa7, + 0x73, 0x80, 0x1b, 0x2f, 0x0f, 0xb8, 0x6f, 0xcd, 0xc2, 0x38, 0xcb, 0x64, 0x28, 0xb0, 0x68, 0x11, + 0x4b, 0x64, 0x78, 0xeb, 0x88, 0xc9, 0xb8, 0xc4, 0x10, 0x91, 0xdd, 0xc1, 0x5e, 0x37, 0x12, 0x31, + 0x1c, 0xde, 0x6c, 0xbc, 0x2d, 0x96, 0x6d, 0x13, 0xaa, 0xf4, 0x2e, 0xd8, 0xda, 0xf2, 0xba, 0xae, + 0xc5, 0x17, 0xed, 0xf5, 0xcc, 0x39, 0x91, 0xd9, 0x25, 0x76, 0x9f, 0x04, 0xca, 0xe3, 0x16, 0x61, + 0x71, 0xd5, 0x86, 0xe4, 0x49, 0x1f, 0x9d, 0xe0, 0x19, 0x81, 0x2c, 0x1d, 0xc2, 0xc2, 0x5b, 0xb6, + 0x8b, 0x2d, 0xf5, 0x19, 0x34, 0xcb, 0x93, 0xb8, 0x08, 0x9c, 0x1f, 0xe0, 0xaa, 0x92, 0x82, 0x72, + 0x31, 0x2c, 0x17, 0x22, 0x86, 0x4a, 0x69, 0xa0, 0x6a, 0xf1, 0xea, 0xe7, 0x2b, 0x50, 0x49, 0x5e, + 0xae, 0x4f, 0x00, 0x8a, 0x1b, 0xb2, 0xac, 0xf3, 0x30, 0x17, 0xc3, 0x6f, 0x27, 0xbb, 0x0c, 0x1b, + 0x5d, 0x5a, 0x73, 0xa5, 0x2a, 0x87, 0x91, 0xe4, 0x52, 0x74, 0x86, 0x54, 0x40, 0x73, 0xf0, 0x6c, + 0x8c, 0x74, 0xb8, 0xd6, 0x57, 0xc5, 0xe8, 0x0c, 0x9c, 0xca, 0x44, 0xb8, 0x8b, 0xb7, 0x22, 0x75, + 0x0b, 0x5d, 0x85, 0x8b, 0xbd, 0x9f, 0xb3, 0x2b, 0x6a, 0xd5, 0x36, 0xba, 0x02, 0x17, 0xfa, 0xe3, + 0x8a, 0x5a, 0x87, 0x6d, 0x74, 0x03, 0x5e, 0xe8, 0x8f, 0x9a, 0x2e, 0x88, 0x55, 0x6d, 0xb4, 0x00, + 0xf3, 0xfd, 0x29, 0x1e, 0x74, 0xa3, 0x36, 0xb9, 0x45, 0x89, 0x0a, 0x56, 0xf5, 0x53, 0x68, 0x1e, + 0xae, 0x0e, 0x47, 0xb3, 0x8e, 0xdd, 0x48, 0xdd, 0x19, 0x2c, 0x63, 0xcd, 0x35, 0xbd, 0x8e, 0xed, + 0xb6, 0xc5, 0xb1, 0xa7, 0x3a, 0xe8, 0x03, 0x70, 0x7d, 0x38, 0x9a, 0xb8, 0x5a, 0x52, 0xed, 0x0c, + 0x2f, 0x48, 0x94, 0x39, 0xaa, 0x2e, 0xd2, 0xe0, 0x6c, 0x0e, 0x0d, 0x2f, 0x38, 0x54, 0x3d, 0xf4, + 0x3c, 0x9c, 0xcb, 0xc1, 0x89, 0x4b, 0x04, 0x55, 0x1f, 0x69, 0x70, 0x26, 0xc6, 0xea, 0x49, 0x78, + 0x67, 0xd3, 0xe6, 0x07, 0x0a, 0xba, 0x01, 0xd7, 0x62, 0x9c, 0xbe, 0x89, 0xdb, 0x8c, 0xe2, 0x7b, + 0x05, 0xf4, 0xb2, 0x64, 0x88, 0xc3, 0xa9, 0xcf, 0x52, 0xa9, 0xfd, 0xa2, 0xeb, 0x7a, 0x5d, 0xd7, + 0xc4, 0x96, 0xfa, 0x27, 0x05, 0x34, 0x0f, 0x57, 0xf2, 0xe5, 0xa4, 0x52, 0xb7, 0xb1, 0xa5, 0xfe, + 0x69, 0x01, 0x5d, 0x84, 0xe7, 0x7a, 0x7b, 0x78, 0xa8, 0x1e, 0x51, 0xfd, 0x46, 0x11, 0x5d, 0x86, + 0xf3, 0xfd, 0xf0, 0x78, 0xa1, 0xa0, 0xfa, 0xcd, 0x22, 0x3a, 0x2b, 0x2d, 0x80, 0xde, 0x02, 0x3f, + 0xf5, 0x5b, 0x45, 0x74, 0x5e, 0xb2, 0x7b, 0xa6, 0xa7, 0xa9, 0xfe, 0x6e, 0x11, 0x5d, 0x02, 0x2d, + 0x85, 0x94, 0x79, 0xd3, 0x51, 0xbf, 0x9d, 0xd6, 0x2b, 0xff, 0x26, 0xa2, 0xfe, 0x5e, 0x11, 0xbd, + 0x74, 0x78, 0x89, 0xf4, 0xbb, 0x30, 0xa8, 0x3f, 0x2f, 0xa6, 0x8c, 0x93, 0xca, 0xb4, 0xe5, 0xf7, + 0x57, 0x3a, 0xcd, 0xff, 0xa9, 0x74, 0xf5, 0x6b, 0x22, 0xa5, 0x22, 0x23, 0x13, 0x08, 0x5d, 0x80, + 0xe7, 0xf2, 0xbe, 0xf5, 0x6c, 0x51, 0x79, 0x68, 0xfc, 0x8c, 0x54, 0x15, 0x32, 0x1f, 0xf3, 0x91, + 0x98, 0x6a, 0x6a, 0xe1, 0xea, 0x5f, 0x2b, 0x71, 0x79, 0x08, 0xab, 0x91, 0x3a, 0x15, 0x57, 0xa2, + 0xd0, 0xb6, 0x2c, 0xb6, 0xe7, 0xd3, 0x43, 0x8f, 0x2f, 0x18, 0x55, 0x21, 0x9b, 0xae, 0xfc, 0x29, + 0x5e, 0xa3, 0x05, 0x74, 0x1c, 0x66, 0xe4, 0x2f, 0x6c, 0x92, 0x14, 0xd1, 0xc9, 0xb8, 0xde, 0x83, + 0x13, 0xb0, 0x39, 0x31, 0xd6, 0x2b, 0x24, 0x59, 0xb9, 0xe3, 0xbd, 0x34, 0x62, 0xe9, 0x4d, 0x5c, + 0xbd, 0x0d, 0x95, 0x38, 0xf8, 0x85, 0xa6, 0x00, 0x78, 0xa8, 0x69, 0xc5, 0x0e, 0xd4, 0x67, 0x48, + 0x7b, 0xcd, 0xdd, 0x24, 0x67, 0x0d, 0x69, 0x2b, 0x68, 0x1a, 0xaa, 0x0f, 0xba, 0x51, 0x0c, 0x28, + 0xa0, 0x0a, 0x8c, 0x2f, 0xd9, 0xe4, 0x67, 0x71, 0xe1, 0x2f, 0xae, 0xc1, 0xb4, 0xf8, 0x63, 0x38, + 0x22, 0x59, 0x63, 0x37, 0xab, 0x8e, 0x13, 0x5d, 0xef, 0x5b, 0x49, 0x97, 0x20, 0xce, 0x8b, 0xb3, + 0xfc, 0xc5, 0xe1, 0x09, 0x7c, 0x67, 0xef, 0x86, 0x82, 0xde, 0x55, 0xf2, 0x0b, 0x3e, 0xd1, 0x2f, + 0x8d, 0x56, 0xc8, 0x27, 0x94, 0xf8, 0xc0, 0xa8, 0x64, 0xe4, 0xcc, 0xff, 0x82, 0x92, 0x5b, 0xfd, + 0x86, 0x5e, 0xce, 0x64, 0x98, 0x83, 0x1d, 0xab, 0xb1, 0x30, 0x22, 0x15, 0xd1, 0xe2, 0xb3, 0x39, + 0x35, 0x70, 0x68, 0x18, 0x66, 0x1c, 0x37, 0x56, 0xe0, 0xc6, 0x48, 0x34, 0x44, 0xfc, 0x67, 0xb2, + 0xab, 0xea, 0xd0, 0x4b, 0x43, 0x70, 0x62, 0xa8, 0xb1, 0xf0, 0xeb, 0xa3, 0x90, 0x10, 0xd9, 0xdf, + 0x54, 0xfa, 0x17, 0xdc, 0xa1, 0x57, 0x87, 0xb2, 0xa7, 0x4c, 0x12, 0x2b, 0xf3, 0xca, 0x51, 0x48, + 0x89, 0x52, 0x51, 0x56, 0x65, 0x1e, 0x1a, 0xa6, 0x6f, 0x04, 0x71, 0xc0, 0xb2, 0xc8, 0x24, 0xc8, + 0x1c, 0x06, 0x76, 0x48, 0x0f, 0x35, 0x0c, 0x0c, 0x75, 0xa4, 0x61, 0x88, 0x49, 0xf2, 0x66, 0x20, + 0xd9, 0x9b, 0x86, 0x9d, 0x81, 0x04, 0x77, 0xd4, 0x19, 0xc8, 0x69, 0x88, 0xf8, 0xcd, 0x74, 0x1d, + 0x1f, 0xba, 0xd2, 0x8f, 0x03, 0x45, 0x89, 0x85, 0x5d, 0x1a, 0x06, 0x95, 0xc8, 0xd8, 0xee, 0xad, + 0xec, 0x43, 0xd7, 0xfa, 0x91, 0x72, 0xa4, 0x58, 0xce, 0x95, 0xe1, 0x90, 0x89, 0xa4, 0x47, 0x99, + 0xf5, 0x7e, 0xa8, 0xaf, 0x59, 0x64, 0xcc, 0x58, 0xe6, 0xfc, 0x08, 0x14, 0x44, 0xf0, 0xe7, 0x94, + 0xbc, 0xb2, 0x40, 0x94, 0xbd, 0x3b, 0x66, 0x23, 0xc7, 0xf2, 0x5f, 0x1a, 0x8d, 0x88, 0x4f, 0xe2, + 0xac, 0x12, 0x42, 0x34, 0x1c, 0x2b, 0x82, 0x3a, 0x60, 0x12, 0xe7, 0x90, 0xf0, 0x49, 0x9c, 0x59, + 0x60, 0x98, 0x33, 0x89, 0x33, 0x71, 0x07, 0x4c, 0xe2, 0x3c, 0x1a, 0x22, 0xfe, 0x7b, 0xca, 0x90, + 0xb5, 0x88, 0x68, 0x69, 0x28, 0xde, 0x99, 0xb4, 0xb1, 0x7e, 0x1f, 0x7d, 0x22, 0x1e, 0x44, 0xdf, + 0xdf, 0x1f, 0x58, 0xd5, 0x88, 0x6e, 0x0e, 0x27, 0x24, 0x45, 0x14, 0x6b, 0xf8, 0xea, 0xd1, 0x88, + 0x89, 0x6a, 0x7f, 0x30, 0x44, 0x99, 0x23, 0x7a, 0x7d, 0x28, 0xfe, 0xbd, 0x64, 0xb1, 0x7a, 0x37, + 0x8f, 0x4a, 0x4e, 0x14, 0xdc, 0x39, 0x54, 0xf3, 0x88, 0x5e, 0xc8, 0xce, 0x1a, 0x4b, 0x63, 0xc5, + 0xd2, 0xaf, 0x0e, 0x89, 0xcd, 0x77, 0xae, 0x74, 0x55, 0x63, 0xce, 0xce, 0x95, 0x46, 0x1a, 0xb0, + 0x73, 0x1d, 0x42, 0x26, 0x92, 0xdc, 0x8c, 0x4a, 0x3a, 0x34, 0x3f, 0xb8, 0xb4, 0x90, 0x3d, 0x79, + 0xf7, 0xdd, 0x91, 0x0f, 0x57, 0x43, 0xde, 0x50, 0xd0, 0xce, 0xe1, 0x02, 0x36, 0xf4, 0x62, 0x3f, + 0xf2, 0x18, 0x2d, 0x96, 0x76, 0x71, 0x20, 0xba, 0x10, 0xf6, 0xb6, 0x54, 0x35, 0x86, 0xfa, 0x90, + 0xd1, 0x7c, 0x22, 0xc1, 0xfe, 0xf9, 0x81, 0x78, 0xc4, 0x6e, 0xb8, 0xa7, 0x20, 0x0b, 0xe5, 0x0c, + 0xaf, 0x8c, 0x13, 0x8b, 0xb8, 0x3c, 0x14, 0x2e, 0x9f, 0x75, 0x3d, 0xb5, 0x58, 0x39, 0xb3, 0xae, + 0x07, 0x6b, 0xc0, 0xac, 0x3b, 0x8c, 0x4d, 0x84, 0x85, 0x19, 0x85, 0x5a, 0xfd, 0xe6, 0x42, 0xaa, + 0x3c, 0x29, 0xfe, 0x3b, 0x30, 0x43, 0xe3, 0xb3, 0x8b, 0x41, 0xe7, 0x50, 0x29, 0x4e, 0x6e, 0x0f, + 0x53, 0x58, 0x03, 0x7b, 0xd8, 0x8b, 0xcd, 0xc4, 0x7d, 0x5e, 0xc9, 0xab, 0x96, 0xc9, 0x39, 0x30, + 0xb3, 0x91, 0x07, 0x1c, 0x98, 0xb9, 0x44, 0x4c, 0x89, 0x77, 0xe4, 0x0a, 0x11, 0x74, 0x29, 0x9f, + 0x45, 0x7a, 0x2c, 0x2f, 0x0c, 0x46, 0x24, 0xc3, 0xf8, 0x6e, 0x9f, 0x32, 0x87, 0x9c, 0xab, 0x56, + 0x1e, 0xfa, 0x80, 0xab, 0x56, 0x1f, 0x32, 0xa2, 0xc8, 0x3b, 0x72, 0xd2, 0x23, 0x1a, 0x98, 0x4b, + 0xd8, 0xbf, 0x9b, 0x29, 0x44, 0xee, 0x73, 0x65, 0x24, 0xab, 0xe7, 0xf8, 0x5c, 0x19, 0x98, 0x03, + 0x7c, 0xae, 0x6c, 0x0a, 0x71, 0x83, 0xcc, 0x49, 0xd9, 0xcf, 0xb9, 0x41, 0xe6, 0x60, 0x0f, 0xb8, + 0x41, 0xe6, 0x53, 0x09, 0xdf, 0x63, 0xa8, 0x9c, 0xf7, 0x1c, 0xdf, 0x63, 0x28, 0xda, 0x01, 0xbe, + 0xc7, 0xb0, 0x3c, 0x88, 0xbe, 0x7f, 0x39, 0x4a, 0xe2, 0x3a, 0xba, 0x35, 0xba, 0xbc, 0x4c, 0xcb, + 0xae, 0x3c, 0x31, 0x1f, 0xa2, 0xfb, 0x97, 0x94, 0xdc, 0xf4, 0xf6, 0x9c, 0x11, 0xcf, 0xc1, 0x1e, + 0x30, 0xe2, 0xf9, 0x54, 0x6c, 0xdf, 0x08, 0x33, 0xf2, 0xcb, 0x73, 0x36, 0xe8, 0x43, 0x78, 0x03, + 0x36, 0xe8, 0x2c, 0x7c, 0x26, 0xf4, 0x3b, 0x83, 0xd3, 0xb8, 0xd1, 0x87, 0x73, 0xde, 0x4c, 0xfa, + 0x52, 0xc5, 0x1a, 0xbd, 0x76, 0x44, 0x6a, 0x32, 0x34, 0x1f, 0x4b, 0xf2, 0x03, 0xd1, 0x80, 0x4c, + 0x3a, 0x21, 0x6e, 0x50, 0x1e, 0x1f, 0xe5, 0xdb, 0x4a, 0x3d, 0xbc, 0xa3, 0xfc, 0x17, 0x49, 0x8e, + 0x31, 0xc0, 0x3b, 0x49, 0x63, 0x0a, 0xc5, 0xf9, 0x2b, 0x77, 0x9e, 0xe2, 0xfc, 0xf3, 0x20, 0xc5, + 0x13, 0x34, 0xee, 0x3a, 0xa6, 0x1f, 0x8f, 0x73, 0x5c, 0xc7, 0x34, 0xd2, 0x00, 0xd7, 0xf1, 0x10, + 0x32, 0x8f, 0x99, 0x1c, 0x7e, 0xd8, 0xcd, 0x89, 0x99, 0x1c, 0x46, 0x1c, 0x10, 0x33, 0xc9, 0x24, + 0xe0, 0x8e, 0x57, 0xea, 0x79, 0x37, 0xc7, 0xf1, 0x4a, 0xe1, 0x0c, 0x70, 0xbc, 0x7a, 0x71, 0xf9, + 0xcd, 0x32, 0xf3, 0xc9, 0x2f, 0xe7, 0x66, 0x99, 0xfd, 0x3c, 0xd8, 0xff, 0x66, 0x99, 0x47, 0xe3, + 0x3b, 0x7b, 0x4b, 0x1f, 0xfc, 0xf1, 0x3f, 0x9e, 0x7d, 0xe6, 0x6f, 0x0e, 0xce, 0x2a, 0x3f, 0x3e, + 0x38, 0xab, 0xfc, 0xf4, 0xe0, 0xac, 0xf2, 0x2b, 0xcf, 0x6f, 0xe2, 0x20, 0xda, 0x9b, 0x8f, 0xb0, + 0xb9, 0x7d, 0x9d, 0x73, 0xbb, 0xee, 0xef, 0xb4, 0xaf, 0xa7, 0xfe, 0x3b, 0x8a, 0xcd, 0x09, 0xda, + 0xfc, 0xc0, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x5b, 0x28, 0x57, 0xdc, 0xa6, 0x62, 0x00, 0x00, } func (m *Account) Marshal() (dAtA []byte, err error) { @@ -17236,6 +17263,30 @@ func (m *VerifiedCredentialsList_Request) MarshalToSizedBuffer(dAtA []byte) (int i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.ExcludeExpired { + i-- + if m.ExcludeExpired { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x18 + } + if len(m.FilterIssuer) > 0 { + i -= len(m.FilterIssuer) + copy(dAtA[i:], m.FilterIssuer) + i = encodeVarintProtocoltypes(dAtA, i, uint64(len(m.FilterIssuer))) + i-- + dAtA[i] = 0x12 + } + if len(m.FilterIdentifier) > 0 { + i -= len(m.FilterIdentifier) + copy(dAtA[i:], m.FilterIdentifier) + i = encodeVarintProtocoltypes(dAtA, i, uint64(len(m.FilterIdentifier))) + i-- + dAtA[i] = 0xa + } return len(dAtA) - i, nil } @@ -17263,19 +17314,17 @@ func (m *VerifiedCredentialsList_Reply) MarshalToSizedBuffer(dAtA []byte) (int, i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if len(m.Credentials) > 0 { - for iNdEx := len(m.Credentials) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Credentials[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintProtocoltypes(dAtA, i, uint64(size)) + if m.Credential != nil { + { + size, err := m.Credential.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err } - i-- - dAtA[i] = 0xa + i -= size + i = encodeVarintProtocoltypes(dAtA, i, uint64(size)) } + i-- + dAtA[i] = 0xa } return len(dAtA) - i, nil } @@ -18196,20 +18245,20 @@ func (m *PeerList_Peer) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x28 } if len(m.Features) > 0 { - dAtA27 := make([]byte, len(m.Features)*10) - var j26 int + dAtA28 := make([]byte, len(m.Features)*10) + var j27 int for _, num := range m.Features { for num >= 1<<7 { - dAtA27[j26] = uint8(uint64(num)&0x7f | 0x80) + dAtA28[j27] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j26++ + j27++ } - dAtA27[j26] = uint8(num) - j26++ + dAtA28[j27] = uint8(num) + j27++ } - i -= j26 - copy(dAtA[i:], dAtA27[:j26]) - i = encodeVarintProtocoltypes(dAtA, i, uint64(j26)) + i -= j27 + copy(dAtA[i:], dAtA28[:j27]) + i = encodeVarintProtocoltypes(dAtA, i, uint64(j27)) i-- dAtA[i] = 0x22 } @@ -22241,6 +22290,17 @@ func (m *VerifiedCredentialsList_Request) Size() (n int) { } var l int _ = l + l = len(m.FilterIdentifier) + if l > 0 { + n += 1 + l + sovProtocoltypes(uint64(l)) + } + l = len(m.FilterIssuer) + if l > 0 { + n += 1 + l + sovProtocoltypes(uint64(l)) + } + if m.ExcludeExpired { + n += 2 + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -22253,11 +22313,9 @@ func (m *VerifiedCredentialsList_Reply) Size() (n int) { } var l int _ = l - if len(m.Credentials) > 0 { - for _, e := range m.Credentials { - l = e.Size() - n += 1 + l + sovProtocoltypes(uint64(l)) - } + if m.Credential != nil { + l = m.Credential.Size() + n += 1 + l + sovProtocoltypes(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) @@ -37553,6 +37611,90 @@ func (m *VerifiedCredentialsList_Request) Unmarshal(dAtA []byte) error { return fmt.Errorf("proto: Request: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FilterIdentifier", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowProtocoltypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthProtocoltypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthProtocoltypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.FilterIdentifier = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FilterIssuer", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowProtocoltypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthProtocoltypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthProtocoltypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.FilterIssuer = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ExcludeExpired", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowProtocoltypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ExcludeExpired = bool(v != 0) default: iNdEx = preIndex skippy, err := skipProtocoltypes(dAtA[iNdEx:]) @@ -37606,7 +37748,7 @@ func (m *VerifiedCredentialsList_Reply) Unmarshal(dAtA []byte) error { switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Credentials", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Credential", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -37633,8 +37775,10 @@ func (m *VerifiedCredentialsList_Reply) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Credentials = append(m.Credentials, &AccountVerifiedCredentialRegistered{}) - if err := m.Credentials[len(m.Credentials)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if m.Credential == nil { + m.Credential = &AccountVerifiedCredentialRegistered{} + } + if err := m.Credential.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/pkg/protocoltypes/protocoltypes.pb.gw.go b/pkg/protocoltypes/protocoltypes.pb.gw.go index 9752b7a0..4200c77a 100644 --- a/pkg/protocoltypes/protocoltypes.pb.gw.go +++ b/pkg/protocoltypes/protocoltypes.pb.gw.go @@ -1169,7 +1169,7 @@ func local_request_ProtocolService_CredentialVerificationServiceCompleteFlow_0(c } -func request_ProtocolService_VerifiedCredentialsList_0(ctx context.Context, marshaler runtime.Marshaler, client ProtocolServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { +func request_ProtocolService_VerifiedCredentialsList_0(ctx context.Context, marshaler runtime.Marshaler, client ProtocolServiceClient, req *http.Request, pathParams map[string]string) (ProtocolService_VerifiedCredentialsListClient, runtime.ServerMetadata, error) { var protoReq VerifiedCredentialsList_Request var metadata runtime.ServerMetadata @@ -1181,25 +1181,16 @@ func request_ProtocolService_VerifiedCredentialsList_0(ctx context.Context, mars return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) } - msg, err := client.VerifiedCredentialsList(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) - return msg, metadata, err - -} - -func local_request_ProtocolService_VerifiedCredentialsList_0(ctx context.Context, marshaler runtime.Marshaler, server ProtocolServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { - var protoReq VerifiedCredentialsList_Request - var metadata runtime.ServerMetadata - - newReader, berr := utilities.IOReaderFactory(req.Body) - if berr != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr) + stream, err := client.VerifiedCredentialsList(ctx, &protoReq) + if err != nil { + return nil, metadata, err } - if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF { - return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + header, err := stream.Header() + if err != nil { + return nil, metadata, err } - - msg, err := server.VerifiedCredentialsList(ctx, &protoReq) - return msg, metadata, err + metadata.HeaderMD = header + return stream, metadata, nil } @@ -2216,26 +2207,10 @@ func RegisterProtocolServiceHandlerServer(ctx context.Context, mux *runtime.Serv }) mux.Handle("POST", pattern_ProtocolService_VerifiedCredentialsList_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { - ctx, cancel := context.WithCancel(req.Context()) - defer cancel() - var stream runtime.ServerTransportStream - ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) - inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) - rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) - if err != nil { - runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) - return - } - resp, md, err := local_request_ProtocolService_VerifiedCredentialsList_0(rctx, inboundMarshaler, server, req, pathParams) - md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) - ctx = runtime.NewServerMetadataContext(ctx, md) - if err != nil { - runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) - return - } - - forward_ProtocolService_VerifiedCredentialsList_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) - + err := status.Error(codes.Unimplemented, "streaming calls are not yet supported in the in-process transport") + _, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return }) mux.Handle("POST", pattern_ProtocolService_ServicesTokenList_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { @@ -3186,7 +3161,7 @@ func RegisterProtocolServiceHandlerClient(ctx context.Context, mux *runtime.Serv return } - forward_ProtocolService_VerifiedCredentialsList_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + forward_ProtocolService_VerifiedCredentialsList_0(ctx, mux, outboundMarshaler, w, req, func() (proto.Message, error) { return resp.Recv() }, mux.GetForwardResponseOptions()...) }) @@ -3536,7 +3511,7 @@ var ( forward_ProtocolService_CredentialVerificationServiceCompleteFlow_0 = runtime.ForwardResponseMessage - forward_ProtocolService_VerifiedCredentialsList_0 = runtime.ForwardResponseMessage + forward_ProtocolService_VerifiedCredentialsList_0 = runtime.ForwardResponseStream forward_ProtocolService_ServicesTokenList_0 = runtime.ForwardResponseStream diff --git a/pkg/protocoltypes/protocoltypes_grpc.pb.go b/pkg/protocoltypes/protocoltypes_grpc.pb.go index 85980107..4da27b7e 100644 --- a/pkg/protocoltypes/protocoltypes_grpc.pb.go +++ b/pkg/protocoltypes/protocoltypes_grpc.pb.go @@ -1,8 +1,4 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. -// versions: -// - protoc-gen-go-grpc v1.2.0 -// - protoc (unknown) -// source: protocoltypes.proto package protocoltypes @@ -88,7 +84,7 @@ type ProtocolServiceClient interface { // CredentialVerificationServiceCompleteFlow Completes a credential verification flow CredentialVerificationServiceCompleteFlow(ctx context.Context, in *CredentialVerificationServiceCompleteFlow_Request, opts ...grpc.CallOption) (*CredentialVerificationServiceCompleteFlow_Reply, error) // VerifiedCredentialsList Retrieves the list of verified credentials - VerifiedCredentialsList(ctx context.Context, in *VerifiedCredentialsList_Request, opts ...grpc.CallOption) (*VerifiedCredentialsList_Reply, error) + VerifiedCredentialsList(ctx context.Context, in *VerifiedCredentialsList_Request, opts ...grpc.CallOption) (ProtocolService_VerifiedCredentialsListClient, error) // ServicesTokenList Retrieves the list of services tokens ServicesTokenList(ctx context.Context, in *ServicesTokenList_Request, opts ...grpc.CallOption) (ProtocolService_ServicesTokenListClient, error) // ReplicationServiceRegisterGroup Asks a replication service to distribute a group contents @@ -570,17 +566,40 @@ func (c *protocolServiceClient) CredentialVerificationServiceCompleteFlow(ctx co return out, nil } -func (c *protocolServiceClient) VerifiedCredentialsList(ctx context.Context, in *VerifiedCredentialsList_Request, opts ...grpc.CallOption) (*VerifiedCredentialsList_Reply, error) { - out := new(VerifiedCredentialsList_Reply) - err := c.cc.Invoke(ctx, "/weshnet.protocol.v1.ProtocolService/VerifiedCredentialsList", in, out, opts...) +func (c *protocolServiceClient) VerifiedCredentialsList(ctx context.Context, in *VerifiedCredentialsList_Request, opts ...grpc.CallOption) (ProtocolService_VerifiedCredentialsListClient, error) { + stream, err := c.cc.NewStream(ctx, &ProtocolService_ServiceDesc.Streams[6], "/weshnet.protocol.v1.ProtocolService/VerifiedCredentialsList", opts...) if err != nil { return nil, err } - return out, nil + x := &protocolServiceVerifiedCredentialsListClient{stream} + if err := x.ClientStream.SendMsg(in); err != nil { + return nil, err + } + if err := x.ClientStream.CloseSend(); err != nil { + return nil, err + } + return x, nil +} + +type ProtocolService_VerifiedCredentialsListClient interface { + Recv() (*VerifiedCredentialsList_Reply, error) + grpc.ClientStream +} + +type protocolServiceVerifiedCredentialsListClient struct { + grpc.ClientStream +} + +func (x *protocolServiceVerifiedCredentialsListClient) Recv() (*VerifiedCredentialsList_Reply, error) { + m := new(VerifiedCredentialsList_Reply) + if err := x.ClientStream.RecvMsg(m); err != nil { + return nil, err + } + return m, nil } func (c *protocolServiceClient) ServicesTokenList(ctx context.Context, in *ServicesTokenList_Request, opts ...grpc.CallOption) (ProtocolService_ServicesTokenListClient, error) { - stream, err := c.cc.NewStream(ctx, &ProtocolService_ServiceDesc.Streams[6], "/weshnet.protocol.v1.ProtocolService/ServicesTokenList", opts...) + stream, err := c.cc.NewStream(ctx, &ProtocolService_ServiceDesc.Streams[7], "/weshnet.protocol.v1.ProtocolService/ServicesTokenList", opts...) if err != nil { return nil, err } @@ -753,7 +772,7 @@ type ProtocolServiceServer interface { // CredentialVerificationServiceCompleteFlow Completes a credential verification flow CredentialVerificationServiceCompleteFlow(context.Context, *CredentialVerificationServiceCompleteFlow_Request) (*CredentialVerificationServiceCompleteFlow_Reply, error) // VerifiedCredentialsList Retrieves the list of verified credentials - VerifiedCredentialsList(context.Context, *VerifiedCredentialsList_Request) (*VerifiedCredentialsList_Reply, error) + VerifiedCredentialsList(*VerifiedCredentialsList_Request, ProtocolService_VerifiedCredentialsListServer) error // ServicesTokenList Retrieves the list of services tokens ServicesTokenList(*ServicesTokenList_Request, ProtocolService_ServicesTokenListServer) error // ReplicationServiceRegisterGroup Asks a replication service to distribute a group contents @@ -884,8 +903,8 @@ func (UnimplementedProtocolServiceServer) CredentialVerificationServiceInitFlow( func (UnimplementedProtocolServiceServer) CredentialVerificationServiceCompleteFlow(context.Context, *CredentialVerificationServiceCompleteFlow_Request) (*CredentialVerificationServiceCompleteFlow_Reply, error) { return nil, status.Errorf(codes.Unimplemented, "method CredentialVerificationServiceCompleteFlow not implemented") } -func (UnimplementedProtocolServiceServer) VerifiedCredentialsList(context.Context, *VerifiedCredentialsList_Request) (*VerifiedCredentialsList_Reply, error) { - return nil, status.Errorf(codes.Unimplemented, "method VerifiedCredentialsList not implemented") +func (UnimplementedProtocolServiceServer) VerifiedCredentialsList(*VerifiedCredentialsList_Request, ProtocolService_VerifiedCredentialsListServer) error { + return status.Errorf(codes.Unimplemented, "method VerifiedCredentialsList not implemented") } func (UnimplementedProtocolServiceServer) ServicesTokenList(*ServicesTokenList_Request, ProtocolService_ServicesTokenListServer) error { return status.Errorf(codes.Unimplemented, "method ServicesTokenList not implemented") @@ -1575,22 +1594,25 @@ func _ProtocolService_CredentialVerificationServiceCompleteFlow_Handler(srv inte return interceptor(ctx, in, info, handler) } -func _ProtocolService_VerifiedCredentialsList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(VerifiedCredentialsList_Request) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(ProtocolServiceServer).VerifiedCredentialsList(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/weshnet.protocol.v1.ProtocolService/VerifiedCredentialsList", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ProtocolServiceServer).VerifiedCredentialsList(ctx, req.(*VerifiedCredentialsList_Request)) +func _ProtocolService_VerifiedCredentialsList_Handler(srv interface{}, stream grpc.ServerStream) error { + m := new(VerifiedCredentialsList_Request) + if err := stream.RecvMsg(m); err != nil { + return err } - return interceptor(ctx, in, info, handler) + return srv.(ProtocolServiceServer).VerifiedCredentialsList(m, &protocolServiceVerifiedCredentialsListServer{stream}) +} + +type ProtocolService_VerifiedCredentialsListServer interface { + Send(*VerifiedCredentialsList_Reply) error + grpc.ServerStream +} + +type protocolServiceVerifiedCredentialsListServer struct { + grpc.ServerStream +} + +func (x *protocolServiceVerifiedCredentialsListServer) Send(m *VerifiedCredentialsList_Reply) error { + return x.ServerStream.SendMsg(m) } func _ProtocolService_ServicesTokenList_Handler(srv interface{}, stream grpc.ServerStream) error { @@ -1881,10 +1903,6 @@ var ProtocolService_ServiceDesc = grpc.ServiceDesc{ MethodName: "CredentialVerificationServiceCompleteFlow", Handler: _ProtocolService_CredentialVerificationServiceCompleteFlow_Handler, }, - { - MethodName: "VerifiedCredentialsList", - Handler: _ProtocolService_VerifiedCredentialsList_Handler, - }, { MethodName: "ReplicationServiceRegisterGroup", Handler: _ProtocolService_ReplicationServiceRegisterGroup_Handler, @@ -1949,6 +1967,11 @@ var ProtocolService_ServiceDesc = grpc.ServiceDesc{ Handler: _ProtocolService_DebugInspectGroupStore_Handler, ServerStreams: true, }, + { + StreamName: "VerifiedCredentialsList", + Handler: _ProtocolService_VerifiedCredentialsList_Handler, + ServerStreams: true, + }, { StreamName: "ServicesTokenList", Handler: _ProtocolService_ServicesTokenList_Handler, diff --git a/pkg/pushtypes/pushtypes_grpc.pb.go b/pkg/pushtypes/pushtypes_grpc.pb.go index 71a4fbf2..718fb2d8 100644 --- a/pkg/pushtypes/pushtypes_grpc.pb.go +++ b/pkg/pushtypes/pushtypes_grpc.pb.go @@ -1,8 +1,4 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. -// versions: -// - protoc-gen-go-grpc v1.2.0 -// - protoc (unknown) -// source: pushtypes/pushtypes.proto package pushtypes diff --git a/pkg/tinder/driver_localdiscovery.go b/pkg/tinder/driver_localdiscovery.go index 41b8e6d9..901da4ef 100644 --- a/pkg/tinder/driver_localdiscovery.go +++ b/pkg/tinder/driver_localdiscovery.go @@ -20,9 +20,9 @@ import ( manet "github.com/multiformats/go-multiaddr/net" "go.uber.org/zap" + "berty.tech/berty/v2/go/pkg/logutil" nearby "berty.tech/weshnet/pkg/androidnearby" ble "berty.tech/weshnet/pkg/ble-driver" - "berty.tech/berty/v2/go/pkg/logutil" mc "berty.tech/weshnet/pkg/multipeer-connectivity-driver" ) diff --git a/pkg/tinder/records.pb.go b/pkg/tinder/records.pb.go index 287cbaa7..5a3b5cc2 100644 --- a/pkg/tinder/records.pb.go +++ b/pkg/tinder/records.pb.go @@ -133,7 +133,7 @@ func init() { func init() { proto.RegisterFile("tinder/records.proto", fileDescriptor_1bf1d691fe9c34fc) } var fileDescriptor_1bf1d691fe9c34fc = []byte{ - // 189 bytes of a gzipped FileDescriptorProto + // 184 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x29, 0xc9, 0xcc, 0x4b, 0x49, 0x2d, 0xd2, 0x2f, 0x4a, 0x4d, 0xce, 0x2f, 0x4a, 0x29, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x83, 0x88, 0x4a, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x85, 0xf4, 0x41, 0x2c, 0x88, @@ -141,11 +141,11 @@ var fileDescriptor_1bf1d691fe9c34fc = []byte{ 0x02, 0xb3, 0x06, 0xb7, 0x11, 0x9f, 0x1e, 0x44, 0xab, 0x1e, 0x44, 0x45, 0x10, 0x4c, 0x5a, 0xc9, 0x88, 0x8b, 0x0d, 0x22, 0x24, 0x24, 0xc0, 0xc5, 0x9c, 0x9c, 0x99, 0x22, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0x62, 0x0a, 0x89, 0x71, 0xb1, 0xa5, 0x56, 0x14, 0x64, 0x16, 0xa5, 0x4a, 0x30, - 0x29, 0x30, 0x6a, 0x30, 0x07, 0x41, 0x79, 0x4e, 0x26, 0x17, 0x1e, 0xca, 0x31, 0x9c, 0x78, 0x24, - 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x51, 0x4a, 0x49, 0xa9, 0x45, 0x25, - 0x95, 0x7a, 0x25, 0xa9, 0xc9, 0x19, 0xfa, 0xe5, 0xa9, 0xc5, 0x19, 0x79, 0xa9, 0x25, 0xfa, 0x99, - 0x79, 0x25, 0xa9, 0x45, 0x79, 0x89, 0x39, 0xfa, 0x10, 0x9b, 0x93, 0xd8, 0xc0, 0xae, 0x34, 0x06, - 0x04, 0x00, 0x00, 0xff, 0xff, 0x0c, 0xd9, 0x71, 0x84, 0xdb, 0x00, 0x00, 0x00, + 0x29, 0x30, 0x6a, 0x30, 0x07, 0x41, 0x79, 0x4e, 0xfa, 0x17, 0x1e, 0xca, 0x31, 0x9c, 0x78, 0x24, + 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x51, 0xb2, 0x49, 0xa9, 0x45, 0x25, + 0x95, 0x7a, 0x25, 0xa9, 0xc9, 0x19, 0xfa, 0xe5, 0xa9, 0xc5, 0x19, 0x79, 0xa9, 0x25, 0xfa, 0x05, + 0xd9, 0xe9, 0xfa, 0x10, 0x4b, 0x93, 0xd8, 0xc0, 0x0e, 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, + 0x30, 0x32, 0x98, 0x08, 0xd6, 0x00, 0x00, 0x00, } func (m *Records) Marshal() (dAtA []byte, err error) { diff --git a/service.go b/service.go index e85a98b8..13a6cca9 100644 --- a/service.go +++ b/service.go @@ -23,20 +23,20 @@ import ( "go.uber.org/zap" "google.golang.org/grpc" + "berty.tech/berty/v2/go/pkg/bertypush" + "berty.tech/berty/v2/go/pkg/bertyvcissuer" + "berty.tech/berty/v2/go/pkg/tyber" "berty.tech/go-orbit-db/baseorbitdb" "berty.tech/go-orbit-db/iface" "berty.tech/go-orbit-db/pubsub/directchannel" - "berty.tech/weshnet/pkg/cryptoutil" + "berty.tech/weshnet/internal/bertyversion" "berty.tech/weshnet/internal/datastoreutil" + "berty.tech/weshnet/pkg/cryptoutil" + "berty.tech/weshnet/pkg/errcode" "berty.tech/weshnet/pkg/ipfsutil" ipfs_mobile "berty.tech/weshnet/pkg/ipfsutil/mobile" - tinder "berty.tech/weshnet/pkg/tinder" - "berty.tech/berty/v2/go/pkg/bertypush" - "berty.tech/berty/v2/go/pkg/bertyvcissuer" - "berty.tech/weshnet/internal/bertyversion" - "berty.tech/weshnet/pkg/errcode" "berty.tech/weshnet/pkg/protocoltypes" - "berty.tech/berty/v2/go/pkg/tyber" + tinder "berty.tech/weshnet/pkg/tinder" ) var _ Service = (*service)(nil) diff --git a/services_auth_test.go b/services_auth_test.go index ba790918..44ab74d5 100644 --- a/services_auth_test.go +++ b/services_auth_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "berty.tech/weshnet/pkg/authtypes" "berty.tech/berty/v2/go/pkg/bertyauth" + "berty.tech/weshnet/pkg/authtypes" ) func TestServiceAuthServiceInitFlow(t *testing.T) { diff --git a/store_message.go b/store_message.go index 954fbb17..37b2e328 100644 --- a/store_message.go +++ b/store_message.go @@ -16,6 +16,8 @@ import ( "golang.org/x/crypto/nacl/secretbox" "golang.org/x/sync/semaphore" + "berty.tech/berty/v2/go/pkg/logutil" + "berty.tech/berty/v2/go/pkg/tyber" ipfslog "berty.tech/go-ipfs-log" "berty.tech/go-ipfs-log/identityprovider" ipliface "berty.tech/go-ipfs-log/iface" @@ -25,11 +27,9 @@ import ( "berty.tech/go-orbit-db/stores/basestore" "berty.tech/go-orbit-db/stores/operation" "berty.tech/weshnet/pkg/cryptoutil" - "berty.tech/berty/v2/go/pkg/logutil" "berty.tech/weshnet/pkg/errcode" "berty.tech/weshnet/pkg/protocoltypes" "berty.tech/weshnet/pkg/pushtypes" - "berty.tech/berty/v2/go/pkg/tyber" ) const groupMessageStoreType = "berty_group_messages" diff --git a/store_message_test.go b/store_message_test.go index 14383420..6070ad03 100644 --- a/store_message_test.go +++ b/store_message_test.go @@ -11,8 +11,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - ipfslog "berty.tech/go-ipfs-log" "berty.tech/berty/v2/go/pkg/testutil" + ipfslog "berty.tech/go-ipfs-log" "berty.tech/weshnet/pkg/protocoltypes" ) diff --git a/store_metadata.go b/store_metadata.go index 977b3344..b6532e08 100644 --- a/store_metadata.go +++ b/store_metadata.go @@ -17,6 +17,8 @@ import ( "go.uber.org/zap" "golang.org/x/crypto/nacl/box" + "berty.tech/berty/v2/go/pkg/logutil" + "berty.tech/berty/v2/go/pkg/tyber" ipfslog "berty.tech/go-ipfs-log" "berty.tech/go-ipfs-log/identityprovider" ipliface "berty.tech/go-ipfs-log/iface" @@ -26,10 +28,8 @@ import ( "berty.tech/go-orbit-db/stores/basestore" "berty.tech/go-orbit-db/stores/operation" "berty.tech/weshnet/pkg/cryptoutil" - "berty.tech/berty/v2/go/pkg/logutil" "berty.tech/weshnet/pkg/errcode" "berty.tech/weshnet/pkg/protocoltypes" - "berty.tech/berty/v2/go/pkg/tyber" ) const groupMetadataStoreType = "berty_group_metadata" diff --git a/store_metadata_test.go b/store_metadata_test.go index 6b38a749..ef696590 100644 --- a/store_metadata_test.go +++ b/store_metadata_test.go @@ -17,9 +17,9 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap" + "berty.tech/berty/v2/go/pkg/testutil" "berty.tech/weshnet/pkg/cryptoutil" "berty.tech/weshnet/pkg/ipfsutil" - "berty.tech/berty/v2/go/pkg/testutil" "berty.tech/weshnet/pkg/protocoltypes" ) diff --git a/tinder_swiper.go b/tinder_swiper.go index 9bc131d7..7df56ac5 100644 --- a/tinder_swiper.go +++ b/tinder_swiper.go @@ -15,9 +15,9 @@ import ( "moul.io/srand" "berty.tech/berty/v2/go/pkg/logutil" + "berty.tech/berty/v2/go/pkg/tyber" "berty.tech/weshnet/pkg/rendezvous" tinder "berty.tech/weshnet/pkg/tinder" - "berty.tech/berty/v2/go/pkg/tyber" ) type swiperRequest struct { diff --git a/tool/bench-cellular/bench.go b/tool/bench-cellular/bench.go index f03898c9..57d54d86 100644 --- a/tool/bench-cellular/bench.go +++ b/tool/bench-cellular/bench.go @@ -10,13 +10,12 @@ import ( "os" "strings" + golog "github.com/ipfs/go-log" "github.com/libp2p/go-libp2p" - "github.com/libp2p/go-libp2p/core/crypto" quict "github.com/libp2p/go-libp2p-quic-transport" + "github.com/libp2p/go-libp2p/core/crypto" tcpt "github.com/libp2p/go-libp2p/p2p/transport/tcp" ma "github.com/multiformats/go-multiaddr" - - golog "github.com/ipfs/go-log" "github.com/peterbourgon/ff/v3/ffcli" ) diff --git a/tool/bench-cellular/client.go b/tool/bench-cellular/client.go index 604c3083..9adf8cf0 100644 --- a/tool/bench-cellular/client.go +++ b/tool/bench-cellular/client.go @@ -12,8 +12,8 @@ import ( "time" "github.com/libp2p/go-libp2p" - "github.com/libp2p/go-libp2p/core/host" peer "github.com/libp2p/go-libp2p-peer" + "github.com/libp2p/go-libp2p/core/host" peerstore "github.com/libp2p/go-libp2p/p2p/host/peerstore" p2pping "github.com/libp2p/go-libp2p/p2p/protocol/ping" ma "github.com/multiformats/go-multiaddr" diff --git a/tool/bench-cellular/server.go b/tool/bench-cellular/server.go index cef7d293..bdd73864 100644 --- a/tool/bench-cellular/server.go +++ b/tool/bench-cellular/server.go @@ -12,13 +12,12 @@ import ( "github.com/libp2p/go-libp2p" dht "github.com/libp2p/go-libp2p-kad-dht" routing "github.com/libp2p/go-libp2p-routing" - ma "github.com/multiformats/go-multiaddr" - manet "github.com/multiformats/go-multiaddr/net" - "github.com/libp2p/go-libp2p/core/event" "github.com/libp2p/go-libp2p/core/host" "github.com/libp2p/go-libp2p/core/network" "github.com/libp2p/go-libp2p/core/peer" + ma "github.com/multiformats/go-multiaddr" + manet "github.com/multiformats/go-multiaddr/net" ) var tcpBertyRelays = []string{