From 7b37ddba6d98a5d5e49ecd1e6d76295fba18ddec Mon Sep 17 00:00:00 2001 From: Ibrahim Jarif Date: Wed, 22 Apr 2020 12:37:44 +0530 Subject: [PATCH] Update badger to commit cddf7c03451c (#5216) This PR updates badger to latest version https://github.com/dgraph-io/badger/commit/cddf7c03451c . This PR also changes the following things. 1. Removes the second argument from `watermark.Init()` function. The second parameter was removed Init() function by commit https://github.com/dgraph-io/badger/commit/09dd2e1a4195dbd801ffd09292aa8c9da31e25fc 2. go.mod and go.sum updates 3. Change `pb.KV` in `pb.proto` to use `badgerpb2.KV` instead of `badgerpb2.KV`. The protobuf package was renamed from `pb` to `badgr.pb2` https://github.com/dgraph-io/badger/commit/cddf7c03451c91e7a9c9df4121d16e1a56937786. NOTE - I've updated badger using `go get -u ... ` command. All the changes in go.mod file except badger are a side effect of badger update. Following new commits are being added from badger ``` git log 91c31ebe8c22...cddf7c03451c --oneline ``` ``` cddf7c0 Proto: Rename dgraph.badger.v2.pb to badgerpb2 (#1314) fd693e4 Support entry version in Write batch (#1310) f9332eb Disable go 1.11 builds on travis (#1306) 09dd2e1 Replace EventLog with Logger (#1203) 4f6763c Add leveled logging (#1249) 30eeec2 Update issue template (#1295) 8097259 Proto: make badger/v2 compatible with v1 (#1293) 2e708d9 Fail fast if cgo is disabled and compression is ZSTD (#1284) 6e032c0 Fix race condition in DoesNotHave (#1287) fa94030 Fix Sequence generates duplicate values (#1281) 69f35b3 Add go_package in .proto (#1282) 5f48d42 Disable eventlogging by default (#1285) 4b539b9 Update Project Status in readme.md (#1274) ``` --- conn/node.go | 2 +- dgraph/cmd/zero/oracle.go | 2 +- go.mod | 16 +- go.sum | 62 +++- posting/index.go | 1 - protos/pb.proto | 26 +- protos/pb/pb.pb.go | 551 ++++++++++++++++++----------------- wiki/content/deploy/index.md | 18 +- 8 files changed, 358 insertions(+), 320 deletions(-) diff --git a/conn/node.go b/conn/node.go index 2f4f3fc3d8b..a27fecab972 100644 --- a/conn/node.go +++ b/conn/node.go @@ -142,7 +142,7 @@ func NewNode(rc *pb.RaftContext, store *raftwal.DiskStorage) *Node { peers: make(map[uint64]string), requestCh: make(chan linReadReq, 100), } - n.Applied.Init(nil, true) + n.Applied.Init(nil) // This should match up to the Applied index set above. n.Applied.SetDoneUntil(n.Cfg.Applied) glog.Infof("Setting raft.Config to: %+v\n", n.Cfg) diff --git a/dgraph/cmd/zero/oracle.go b/dgraph/cmd/zero/oracle.go index 8fce0b1cd32..8589716262f 100644 --- a/dgraph/cmd/zero/oracle.go +++ b/dgraph/cmd/zero/oracle.go @@ -61,7 +61,7 @@ func (o *Oracle) Init() { o.keyCommit = make(map[string]uint64) o.subscribers = make(map[int]chan pb.OracleDelta) o.updates = make(chan *pb.OracleDelta, 100000) // Keeping 1 second worth of updates. - o.doneUntil.Init(nil, true) + o.doneUntil.Init(nil) go o.sendDeltasToSubscribers() } diff --git a/go.mod b/go.mod index ab5532c9fd7..f506fe1b2a9 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ require ( github.com/99designs/gqlgen v0.11.0 github.com/DataDog/datadog-go v0.0.0-20190425163447-40bafcb5f6c1 // indirect github.com/DataDog/opencensus-go-exporter-datadog v0.0.0-20190503082300-0f32ad59ab08 - github.com/DataDog/zstd v1.4.4 // indirect + github.com/DataDog/zstd v1.4.5 // indirect github.com/OneOfOne/xxhash v1.2.5 // indirect github.com/beorn7/perks v1.0.0 // indirect github.com/blevesearch/bleve v0.0.0-20181114232033-e1f5e6cdcd76 @@ -16,11 +16,11 @@ require ( github.com/blevesearch/segment v0.0.0-20160915185041-762005e7a34f // indirect github.com/blevesearch/snowballstem v0.0.0-20180110192139-26b06a2c243d // indirect github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd - github.com/dgraph-io/badger/v2 v2.0.1-rc1.0.20200316175624-91c31ebe8c22 + github.com/dgraph-io/badger/v2 v2.0.1-rc1.0.20200421062606-cddf7c03451c github.com/dgraph-io/dgo/v200 v200.0.0-20200401175452-e463f9234453 - github.com/dgraph-io/ristretto v0.0.2-0.20200115201040-8f368f2f2ab3 + github.com/dgraph-io/ristretto v0.0.2 github.com/dgrijalva/jwt-go v3.2.0+incompatible - github.com/dgryski/go-farm v0.0.0-20191112170834-c2139c5d712b + github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 github.com/dgryski/go-groupvarint v0.0.0-20190318181831-5ce5df8ca4e1 github.com/dustin/go-humanize v1.0.0 github.com/getsentry/sentry-go v0.6.0 @@ -29,7 +29,7 @@ require ( github.com/gogo/protobuf v1.3.1 github.com/golang/geo v0.0.0-20170810003146-31fb0106dc4a github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b - github.com/golang/protobuf v1.3.5 + github.com/golang/protobuf v1.4.0 github.com/golang/snappy v0.0.1 github.com/google/codesearch v1.0.0 github.com/google/go-cmp v0.4.0 @@ -40,7 +40,7 @@ require ( github.com/mitchellh/panicwrap v1.0.0 github.com/paulmach/go.geojson v0.0.0-20170327170536-40612a87147b github.com/philhofer/fwd v1.0.0 // indirect - github.com/pkg/errors v0.8.1 + github.com/pkg/errors v0.9.1 github.com/pkg/profile v1.2.1 github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829 github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 // indirect @@ -58,9 +58,9 @@ require ( go.etcd.io/etcd v0.0.0-20190228193606-a943ad0ee4c9 go.opencensus.io v0.21.0 golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 - golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 + golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e golang.org/x/sync v0.0.0-20190423024810-112230192c58 - golang.org/x/sys v0.0.0-20200116001909-b77594299b42 + golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f golang.org/x/text v0.3.2 google.golang.org/genproto v0.0.0-20190516172635-bb713bdc0e52 // indirect google.golang.org/grpc v1.23.0 diff --git a/go.sum b/go.sum index 9c546c4826b..b5825910f39 100644 --- a/go.sum +++ b/go.sum @@ -7,21 +7,24 @@ contrib.go.opencensus.io/exporter/prometheus v0.1.0/go.mod h1:cGFniUXGZlKRjzOyuZ github.com/99designs/gqlgen v0.11.0 h1:7MVbtFYo4IVV8ejJzqs9n+0VNP3HdJhJOaaxFV1OLnA= github.com/99designs/gqlgen v0.11.0/go.mod h1:vjFOyBZ7NwDl+GdSD4PFn7BQn5Fy7ohJwXn7Vk8zz+c= github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8= +github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/CloudyKit/fastprinter v0.0.0-20170127035650-74b38d55f37a/go.mod h1:EFZQ978U7x8IRnstaskI3IysnWY5Ao3QgZUKOXlsAdw= github.com/CloudyKit/jet v2.1.3-0.20180809161101-62edd43e4f88+incompatible/go.mod h1:HPYO+50pSWkPoj9Q/eq0aRGByCL6ScRlUmiEX5Zgm+w= +github.com/DATA-DOG/go-sqlmock v1.3.2 h1:2L2f5t3kKnCLxnClDD/PrDfExFFa1wjESgxHG/B1ibo= github.com/DATA-DOG/go-sqlmock v1.3.2/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= github.com/DataDog/datadog-go v0.0.0-20190425163447-40bafcb5f6c1 h1:fSu93OUqfEkoQJBkTsxFB1e0oESqabS45iRX880e7Xw= github.com/DataDog/datadog-go v0.0.0-20190425163447-40bafcb5f6c1/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/opencensus-go-exporter-datadog v0.0.0-20190503082300-0f32ad59ab08 h1:5btKvK+N+FpW0EEgvxq7LWcUEwIRLsL4IwIo0u+Qlhs= github.com/DataDog/opencensus-go-exporter-datadog v0.0.0-20190503082300-0f32ad59ab08/go.mod h1:gMGUEe16aZh0QN941HgDjwrdjU4iTthPoz2/AtDRADE= github.com/DataDog/zstd v1.4.1/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/DataDog/zstd v1.4.4 h1:+IawcoXhCBylN7ccwdwf8LOH2jKq7NavGpEPanrlTzE= -github.com/DataDog/zstd v1.4.4/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= +github.com/DataDog/zstd v1.4.5 h1:EndNeuB0l9syBZhut0wns3gV1hL8zX8LIu6ZiVHWLIQ= +github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/Joker/hpp v1.0.0/go.mod h1:8x5n+M1Hp5hC0g8okX3sR3vFQwynaX/UgSOM9MeBKzY= github.com/Joker/jade v1.0.1-0.20190614124447-d475f43051e7/go.mod h1:6E6s8o2AE4KhCrqr6GRJjdC/gNfTdxkIXvuGZZda2VM= github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= +github.com/OneOfOne/xxhash v1.2.5 h1:zl/OfRA6nftbBK9qTohYBJ5xvw6C/oNKizR7cZGl3cI= github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= github.com/Shopify/goreferrer v0.0.0-20181106222321-ec9c9a553398/go.mod h1:a1uqRtAwp2Xwc6WNPJEufxJ7fx3npB4UV/JOLmbu5I0= github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= @@ -32,9 +35,11 @@ github.com/agnivade/levenshtein v1.0.3/go.mod h1:4SFRZbbXWLF4MU1T9Qg0pGgH3Pjs+t6 github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883 h1:bvNMNQO63//z+xNgfBlViaCIJKLlCJ6/fmUseuG0wVQ= github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo29Kk6CurOXKm700vrz8f0KW0JNfpkRJY/8= github.com/apache/thrift v0.12.0 h1:pODnxUFNcjP9UTLZGTdeh+j16A8lJbRvD3rOtrk/7bs= github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= +github.com/arbovm/levenshtein v0.0.0-20160628152529-48b4e1c0c4d0 h1:jfIu9sQUG6Ig+0+Ap1h4unLjW6YQJpKZVmUzxsD4E/Q= github.com/arbovm/levenshtein v0.0.0-20160628152529-48b4e1c0c4d0/go.mod h1:t2tdKJDJF9BV14lnkjHmOQgcvEKgtqs5a1N3LNdJhGE= github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g= @@ -64,25 +69,29 @@ github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3Ee github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= +github.com/d4l3k/messagediff v1.2.1 h1:ZcAIMYsUg0EAp9X+tt8/enBE/Q8Yd5kzPynLyKptt9U= github.com/d4l3k/messagediff v1.2.1/go.mod h1:Oozbb1TVXFac9FtSIxHBMnBCq2qeH/2KkEQxENCrlLo= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/dgraph-io/badger v1.6.0 h1:DshxFxZWXUcO0xX476VJC07Xsr6ZCBVRHKZ93Oh7Evo= github.com/dgraph-io/badger v1.6.0/go.mod h1:zwt7syl517jmP8s94KqSxTlM6IMsdhYy6psNgSztDR4= -github.com/dgraph-io/badger/v2 v2.0.1-rc1.0.20200316175624-91c31ebe8c22 h1:X2g/STOldw/iNkdP9BHI/8zHe4N/Lkp8Z4jLyywtnCI= -github.com/dgraph-io/badger/v2 v2.0.1-rc1.0.20200316175624-91c31ebe8c22/go.mod h1:3KY8+bsP8wI0OEnQJAKpd4wIJW/Mm32yw2j/9FUVnIM= +github.com/dgraph-io/badger/v2 v2.0.1-rc1.0.20200421062606-cddf7c03451c h1:IXsBFBQ0g5JlPfu+3HotLmkej2xgyrkKceWmFlXSYIQ= +github.com/dgraph-io/badger/v2 v2.0.1-rc1.0.20200421062606-cddf7c03451c/go.mod h1:3KY8+bsP8wI0OEnQJAKpd4wIJW/Mm32yw2j/9FUVnIM= github.com/dgraph-io/dgo/v200 v200.0.0-20200401175452-e463f9234453 h1:DTgOrw91nMIukDm/WEvdobPLl0LgeDd/JE66+24jBks= github.com/dgraph-io/dgo/v200 v200.0.0-20200401175452-e463f9234453/go.mod h1:Co+FwJrnndSrPORO8Gdn20dR7FPTfmXr0W/su0Ve/Ig= github.com/dgraph-io/ristretto v0.0.2-0.20200115201040-8f368f2f2ab3 h1:MQLRM35Pp0yAyBYksjbj1nZI/w6eyRY/mWoM1sFf4kU= github.com/dgraph-io/ristretto v0.0.2-0.20200115201040-8f368f2f2ab3/go.mod h1:KPxhHT9ZxKefz+PCeOGsrHpl1qZ7i70dGTu2u+Ahh6E= +github.com/dgraph-io/ristretto v0.0.2 h1:a5WaUrDa0qm0YrAAS1tUykT5El3kt62KNZZeMxQn3po= +github.com/dgraph-io/ristretto v0.0.2/go.mod h1:KPxhHT9ZxKefz+PCeOGsrHpl1qZ7i70dGTu2u+Ahh6E= github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= -github.com/dgryski/go-farm v0.0.0-20191112170834-c2139c5d712b h1:SeiGBzKrEtuDddnBABHkp4kq9sBGE9nuYmk6FPTg0zg= -github.com/dgryski/go-farm v0.0.0-20191112170834-c2139c5d712b/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= +github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 h1:fAjc9m62+UWV/WAFKLNi6ZS0675eEUC9y3AlwSbQu1Y= +github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= github.com/dgryski/go-groupvarint v0.0.0-20190318181831-5ce5df8ca4e1 h1:RSnSk6/ViWmqng/mNcPztSPgr6/4EVDxMmBH/a0w/6I= github.com/dgryski/go-groupvarint v0.0.0-20190318181831-5ce5df8ca4e1/go.mod h1:MlkUQveSLEDbIgq2r1e++tSf0zfzU9mQpa9Qkczl+9Y= +github.com/dgryski/trifles v0.0.0-20190318185328-a8d75aae118c h1:TUuUh0Xgj97tLMNtWtNvI9mIV6isjEb9lBMNv+77IGM= github.com/dgryski/trifles v0.0.0-20190318185328-a8d75aae118c/go.mod h1:if7Fbed8SFyPtHLHbg49SI7NAdJiC5WIA09pe59rfAA= github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= github.com/docker/go-units v0.3.3/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= @@ -101,8 +110,6 @@ github.com/flosch/pongo2 v0.0.0-20190707114632-bbf5a6c351f4/go.mod h1:T9YF2M40nI github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/gavv/httpexpect v2.0.0+incompatible/go.mod h1:x+9tiU1YnrOvnB725RkpoLv1M62hOWzwo5OXotisrKc= -github.com/getsentry/sentry-go v0.5.1 h1:MIPe7ScHADsrK2vznqmhksIUFxq7m0JfTh+ZIMkI+VQ= -github.com/getsentry/sentry-go v0.5.1/go.mod h1:B8H7x8TYDPkeWPRzGpIiFO97LZP6rL8A3hEt8lUItMw= github.com/getsentry/sentry-go v0.6.0 h1:kPd+nr+dlXmaarUBg7xlC/qn+7wyMJL6PMsSn5fA+RM= github.com/getsentry/sentry-go v0.6.0/go.mod h1:0yZBuzSvbZwBnvaF9VwZIMen3kXscY8/uasKtAX1qG8= github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32/go.mod h1:GIjDIg/heH5DOkXY3YJ/wNhfHsQHoXGjl8G8amsYQ1I= @@ -110,6 +117,7 @@ github.com/gin-contrib/sse v0.0.0-20190301062529-5545eab6dad3/go.mod h1:VJ0WA2NB github.com/gin-gonic/gin v1.4.0/go.mod h1:OW2EZn3DO8Ln9oIKOvM++LBO+5UPHJJDH72/q/3rZdM= github.com/go-check/check v0.0.0-20180628173108-788fd7840127/go.mod h1:9ES+weclKsC9YodN5RgxqK/VD9HM9JsCSh7rNhMZE98= github.com/go-chi/chi v3.3.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-errors/errors v1.0.1 h1:LUHzmkK3GUKUrL/1gfBUxAHzcev3apQlezX/+O7ma6w= github.com/go-errors/errors v1.0.1/go.mod h1:f4zRHt4oKfwPJE5k8C9vpYG+aDHdBFUsgrm6/TyX73Q= github.com/go-ini/ini v1.39.0 h1:/CyW/jTlZLjuzy52jc1XnhJm6IUKEuunpJFpecywNeI= github.com/go-ini/ini v1.39.0/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8= @@ -136,8 +144,12 @@ github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfb github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.5 h1:F768QJ1E9tib+q5Sc8MkdJi1RxLTbRcTf8LJV56aRls= -github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0 h1:oOuy+ugB+P/kBdUnG5QaMXSIyJ1q38wWSojYCb3z5VQ= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= @@ -146,11 +158,14 @@ github.com/google/btree v0.0.0-20180124185431-e89373fe6b4a/go.mod h1:lNA+9X1NB3Z github.com/google/codesearch v1.0.0 h1:z4h5JoHkUS+GqxqPDrldC3Y0Qq0vHAGgaDEW5pWU/ys= github.com/google/codesearch v1.0.0/go.mod h1:qCnXDFnak/trCmLaE50kgPte3AX9jSeruZexWEOivi0= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.4.0 h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4= github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= github.com/google/uuid v1.0.0 h1:b4Gk+7WdP/d3HZH8EJsZpvV7EtDOgaZLtnaNGIu1adA= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/context v0.0.0-20160226214623-1ea25387ff6f/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= @@ -173,6 +188,7 @@ github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/imkira/go-interpol v1.1.0/go.mod h1:z0h2/2T3XF8kyEPpRgJ3kmNv+C43p+I/CoI+jC3w2iA= +github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= github.com/iris-contrib/blackfriday v2.0.0+incompatible/go.mod h1:UzZ2bDEoaSGPbkg6SAB4att1aAwTmVIx/5gCVqeyUdI= github.com/iris-contrib/go.uuid v2.0.0+incompatible/go.mod h1:iz2lgM/1UnEf1kP0L/+fafWORmlnuysV2EMP8MW+qe0= @@ -180,6 +196,7 @@ github.com/iris-contrib/i18n v0.0.0-20171121225848-987a633949d0/go.mod h1:pMCz62 github.com/iris-contrib/schema v0.0.1/go.mod h1:urYA3uvUNG1TIIjOSCzHr9/LmbQo8LrOcOqfqxa4hXw= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/juju/errors v0.0.0-20181118221551-089d3ea4e4d5/go.mod h1:W54LbzXuIE0boCoNJfwqpmkKJ1O4TCTZMetAt6jGk7Q= github.com/juju/loggo v0.0.0-20180524022052-584905176618/go.mod h1:vgyd7OREkbtVEN/8IXZe5Ooef3LQePvuBm9UWj6ZL8U= @@ -197,9 +214,11 @@ github.com/klauspost/compress v1.9.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0 github.com/klauspost/cpuid v1.2.1/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pty v1.0.0/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/labstack/echo/v4 v4.1.11/go.mod h1:i541M3Fj6f76NZtHSj7TXnyM8n2gaodfvfxNnFqi74g= github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k= @@ -261,10 +280,13 @@ github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/9 github.com/philhofer/fwd v1.0.0 h1:UbZqGr5Y38ApvM/V/jEljVxwocdweyH+vmYvRPBnbqQ= github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/pingcap/errors v0.11.4 h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4= github.com/pingcap/errors v0.11.4/go.mod h1:Oi8TUi2kEtXXLMJk9l1cGmz20kV3TaQ0usTwv5KuLY8= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1 h1:F++O52m40owAmADcojzM+9gyjmMOY/T4oYJkgFDH8RE= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= @@ -295,6 +317,7 @@ github.com/rs/cors v1.6.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/ryanuber/columnize v2.1.0+incompatible/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= +github.com/sergi/go-diff v1.1.0 h1:we8PVUC3FE2uYfodKH/nBHMSetSfHDR6scGdBi+erh0= github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= github.com/shurcooL/httpfs v0.0.0-20171119174359-809beceb2371/go.mod h1:ZY1cvUeJuFPAdZ/B6v7RHavJWZn2YPVFQ1OSXhCGOkg= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= @@ -302,10 +325,13 @@ github.com/shurcooL/vfsgen v0.0.0-20180121065927-ffb13db8def0/go.mod h1:TrYk7fJV github.com/sirupsen/logrus v1.0.5/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= +github.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= +github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI= github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2 h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= @@ -398,8 +424,8 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 h1:efeOvDhwQ29Dj3SdAV/MJf8oukgn+8D8WgaCaRMchF8= -golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e h1:3G+cUijn7XD+S4eJFddp53Pv7+slrESplyjG25HgL+k= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -422,6 +448,9 @@ golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42 h1:vEOn+mP2zCOVzKckCZy6YsCtDblrpj/w7B9nxGNELpg= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f h1:gWF768j/LaZugp8dyS4UwsslYCYz9XgFxvlgsn0n9H8= +golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= @@ -447,6 +476,7 @@ google.golang.org/api v0.3.1/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMt google.golang.org/api v0.3.2 h1:iTp+3yyl/KOtxa/d1/JUE0GGSoR6FuW5udver22iwpw= google.golang.org/api v0.3.2/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMtkk= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.4.0 h1:/wp5JvzpHIxhs/dumFmF7BXTf3Z+dd4uXta4kVyO508= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/genproto v0.0.0-20180608181217-32ee49c4dd80/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= @@ -458,17 +488,25 @@ google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3 google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.23.0 h1:AzbTB6ux+okLTzP8Ru1Xs41C303zdcfEht7MQnYJt5A= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0 h1:qdOKuR/EIArgaWNjetjgTzgVTAZ+S/WXVrq9HW9zimw= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= gopkg.in/DataDog/dd-trace-go.v1 v1.13.1 h1:oTzOClfuudNhW9Skkp2jxjqYO92uDKXqKLbiuPA13Rk= gopkg.in/DataDog/dd-trace-go.v1 v1.13.1/go.mod h1:DVp8HmDh8PuTu2Z0fVVlBsyWaC++fzwVCaGWylTe3tg= gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/cheggaaa/pb.v1 v1.0.25/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2/go.mod h1:Xk6kEKp8OKb+X14hQBKWaSkCsqBpgog8nAV2xsGOxlo= gopkg.in/go-playground/assert.v1 v1.2.1/go.mod h1:9RXL0bg/zibRAgZUYszZSwO/z8Y/a8bDuhia5mkpMnE= gopkg.in/go-playground/validator.v8 v8.18.2/go.mod h1:RX2a/7Ha8BgOhfk7j780h4/u/RRjR0eouCJSH80/M2Y= +gopkg.in/ini.v1 v1.48.0 h1:URjZc+8ugRY5mL5uUeQH/a63JcHwdX9xZaWvmNWD7z8= gopkg.in/ini.v1 v1.48.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce/go.mod h1:yeKp02qBN3iKW1OzL3MGk2IdtZzaj7SFntXj72NppTA= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= diff --git a/posting/index.go b/posting/index.go index 61fb65bc6f8..41f04339da2 100644 --- a/posting/index.go +++ b/posting/index.go @@ -557,7 +557,6 @@ func (r *rebuilder) Run(ctx context.Context) error { WithNumVersionsToKeep(math.MaxInt32). WithLogger(&x.ToGlog{}). WithCompression(options.None). - WithEventLogging(false). WithLogRotatesToFlush(10). WithEncryptionKey(enc.ReadEncryptionKeyFile(x.WorkerConfig.BadgerKeyFile)) tmpDB, err := badger.OpenManaged(dbOpts) diff --git a/protos/pb.proto b/protos/pb.proto index 09ecd1d2316..21fa93735e1 100644 --- a/protos/pb.proto +++ b/protos/pb.proto @@ -281,20 +281,20 @@ message RestoreRequest { } message Proposal { - Mutations mutations = 2; - repeated KV kv = 4; - MembershipState state = 5; - string clean_predicate = 6; // Delete the predicate which was moved to other group. - string key = 7; - OracleDelta delta = 8; - Snapshot snapshot = 9; // Used to tell the group when to take snapshot. - uint64 index = 10; // Used to store Raft index, in raft.Ready. - uint64 expected_checksum = 11; // Block an operation until membership reaches this checksum. - RestoreRequest restore = 12; + Mutations mutations = 2; + repeated badgerpb2.KV kv = 4; + MembershipState state = 5; + string clean_predicate = 6; // Delete the predicate which was moved to other group. + string key = 7; + OracleDelta delta = 8; + Snapshot snapshot = 9; // Used to tell the group when to take snapshot. + uint64 index = 10; // Used to store Raft index, in raft.Ready. + uint64 expected_checksum = 11; // Block an operation until membership reaches this checksum. + RestoreRequest restore = 12; } message KVS { - repeated pb.KV kv = 1; + repeated badgerpb2.KV kv = 1; // done used to indicate if the stream of KVS is over. bool done = 2; } @@ -534,7 +534,7 @@ service Worker { rpc Export (ExportRequest) returns (Status) {} rpc ReceivePredicate(stream KVS) returns (api.Payload) {} rpc MovePredicate(MovePredicatePayload) returns (api.Payload) {} - rpc Subscribe(SubscriptionRequest) returns (stream pb.KVList) {} + rpc Subscribe(SubscriptionRequest) returns (stream badgerpb2.KVList) {} } message SubscriptionRequest { @@ -542,7 +542,7 @@ message SubscriptionRequest { } message SubscriptionResponse { - pb.KVList kvs = 1; + badgerpb2.KVList kvs = 1; } message Num { diff --git a/protos/pb/pb.pb.go b/protos/pb/pb.pb.go index 1d488941e95..506ad1fdb2c 100644 --- a/protos/pb/pb.pb.go +++ b/protos/pb/pb.pb.go @@ -4720,281 +4720,282 @@ func init() { func init() { proto.RegisterFile("pb.proto", fileDescriptor_f80abaa17e25ccc8) } var fileDescriptor_f80abaa17e25ccc8 = []byte{ - // 4381 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x3a, 0x4d, 0x8f, 0x1c, 0xd7, - 0x56, 0xae, 0xea, 0xaf, 0xaa, 0xd3, 0x3d, 0xe3, 0xf6, 0x8d, 0x9f, 0xd3, 0x19, 0x27, 0x9e, 0x49, - 0x25, 0x4e, 0x26, 0x71, 0x3c, 0x76, 0x26, 0x41, 0xbc, 0x44, 0x42, 0x62, 0x3e, 0xda, 0xce, 0xc4, - 0xf3, 0xf5, 0x6e, 0xf7, 0x38, 0xbc, 0x2c, 0x68, 0xd5, 0x54, 0xdd, 0xe9, 0xa9, 0x37, 0xd5, 0x55, - 0x45, 0x55, 0xf5, 0xd0, 0x93, 0x15, 0x08, 0x81, 0x58, 0xc0, 0x8a, 0xcd, 0x5b, 0xf1, 0x58, 0xb3, - 0x41, 0x62, 0x85, 0x58, 0xb3, 0x40, 0xac, 0xf8, 0x05, 0x06, 0x05, 0x56, 0x96, 0x58, 0x81, 0x60, - 0x8b, 0xce, 0xb9, 0xb7, 0xbe, 0xda, 0x6d, 0x3b, 0x79, 0xd2, 0x5b, 0xf5, 0x3d, 0x1f, 0xf7, 0xa3, - 0xce, 0x39, 0xf7, 0x7c, 0xdd, 0x06, 0x23, 0x3a, 0xdd, 0x88, 0xe2, 0x30, 0x0d, 0x99, 0x1e, 0x9d, - 0xae, 0x98, 0x76, 0xe4, 0x49, 0x70, 0xe5, 0xc3, 0xb1, 0x97, 0x9e, 0x4f, 0x4f, 0x37, 0x9c, 0x70, - 0xf2, 0xc0, 0x1d, 0xc7, 0x76, 0x74, 0x7e, 0xdf, 0x0b, 0x1f, 0x9c, 0xda, 0xee, 0x58, 0xc4, 0x0f, - 0xa2, 0xd3, 0x07, 0xd9, 0xbc, 0x95, 0xfb, 0x25, 0xc6, 0x71, 0x38, 0x0e, 0x1f, 0x10, 0xfa, 0x74, - 0x7a, 0x46, 0x10, 0x01, 0x34, 0x92, 0xec, 0xd6, 0x0a, 0xd4, 0xf7, 0xbd, 0x24, 0x65, 0x0c, 0xea, - 0x53, 0xcf, 0x4d, 0x7a, 0xda, 0x5a, 0x6d, 0xbd, 0xc9, 0x69, 0x6c, 0x1d, 0x80, 0x39, 0xb4, 0x93, - 0x8b, 0xa7, 0xb6, 0x3f, 0x15, 0xac, 0x0b, 0xb5, 0x4b, 0xdb, 0xef, 0x69, 0x6b, 0xda, 0x7a, 0x87, - 0xe3, 0x90, 0x6d, 0x80, 0x71, 0x69, 0xfb, 0xa3, 0xf4, 0x2a, 0x12, 0x3d, 0x7d, 0x4d, 0x5b, 0x5f, - 0xde, 0x7c, 0x63, 0x23, 0x3a, 0xdd, 0x38, 0x0e, 0x93, 0xd4, 0x0b, 0xc6, 0x1b, 0x4f, 0x6d, 0x7f, - 0x78, 0x15, 0x09, 0xde, 0xba, 0x94, 0x03, 0xeb, 0x08, 0xda, 0x83, 0xd8, 0x79, 0x34, 0x0d, 0x9c, - 0xd4, 0x0b, 0x03, 0xdc, 0x31, 0xb0, 0x27, 0x82, 0x56, 0x34, 0x39, 0x8d, 0x11, 0x67, 0xc7, 0xe3, - 0xa4, 0x57, 0x5b, 0xab, 0x21, 0x0e, 0xc7, 0xac, 0x07, 0x2d, 0x2f, 0xd9, 0x09, 0xa7, 0x41, 0xda, - 0xab, 0xaf, 0x69, 0xeb, 0x06, 0xcf, 0x40, 0xeb, 0x57, 0x35, 0x68, 0xfc, 0x6c, 0x2a, 0xe2, 0x2b, - 0x9a, 0x97, 0xa6, 0x71, 0xb6, 0x16, 0x8e, 0xd9, 0x4d, 0x68, 0xf8, 0x76, 0x30, 0x4e, 0x7a, 0x3a, - 0x2d, 0x26, 0x01, 0x76, 0x1b, 0x4c, 0xfb, 0x2c, 0x15, 0xf1, 0x68, 0xea, 0xb9, 0xbd, 0xda, 0x9a, - 0xb6, 0xde, 0xe4, 0x06, 0x21, 0x4e, 0x3c, 0x97, 0xbd, 0x05, 0x86, 0x1b, 0x8e, 0x9c, 0xf2, 0x5e, - 0x6e, 0x48, 0x7b, 0xb1, 0xf7, 0xc0, 0x98, 0x7a, 0xee, 0xc8, 0xf7, 0x92, 0xb4, 0xd7, 0x58, 0xd3, - 0xd6, 0xdb, 0x9b, 0x06, 0x7e, 0x2c, 0xca, 0x8e, 0xb7, 0xa6, 0x9e, 0x4b, 0x42, 0xfc, 0x18, 0x8c, - 0x24, 0x76, 0x46, 0x67, 0xd3, 0xc0, 0xe9, 0x35, 0x89, 0xe9, 0x3a, 0x32, 0x95, 0xbe, 0x9a, 0xb7, - 0x12, 0x09, 0xe0, 0x67, 0xc5, 0xe2, 0x52, 0xc4, 0x89, 0xe8, 0xb5, 0xe4, 0x56, 0x0a, 0x64, 0x0f, - 0xa1, 0x7d, 0x66, 0x3b, 0x22, 0x1d, 0x45, 0x76, 0x6c, 0x4f, 0x7a, 0x46, 0xb1, 0xd0, 0x23, 0x44, - 0x1f, 0x23, 0x36, 0xe1, 0x70, 0x96, 0x03, 0xec, 0x33, 0x58, 0x22, 0x28, 0x19, 0x9d, 0x79, 0x7e, - 0x2a, 0xe2, 0x9e, 0x49, 0x73, 0x96, 0x69, 0x0e, 0x61, 0x86, 0xb1, 0x10, 0xbc, 0x23, 0x99, 0x24, - 0x86, 0xbd, 0x03, 0x20, 0x66, 0x91, 0x1d, 0xb8, 0x23, 0xdb, 0xf7, 0x7b, 0x40, 0x67, 0x30, 0x25, - 0x66, 0xcb, 0xf7, 0xd9, 0x9b, 0x78, 0x3e, 0xdb, 0x1d, 0xa5, 0x49, 0x6f, 0x69, 0x4d, 0x5b, 0xaf, - 0xf3, 0x26, 0x82, 0xc3, 0x04, 0xe5, 0xea, 0xd8, 0xce, 0xb9, 0xe8, 0x2d, 0xaf, 0x69, 0xeb, 0x0d, - 0x2e, 0x01, 0xc4, 0x9e, 0x79, 0x71, 0x92, 0xf6, 0xae, 0x4b, 0x2c, 0x01, 0xd6, 0x26, 0x98, 0x64, - 0x3d, 0x24, 0x9d, 0xbb, 0xd0, 0xbc, 0x44, 0x40, 0x1a, 0x59, 0x7b, 0x73, 0x09, 0x8f, 0x97, 0x1b, - 0x18, 0x57, 0x44, 0xeb, 0x0e, 0x18, 0xfb, 0x76, 0x30, 0xce, 0xac, 0x12, 0xd5, 0x46, 0x13, 0x4c, - 0x4e, 0x63, 0xeb, 0x97, 0x3a, 0x34, 0xb9, 0x48, 0xa6, 0x7e, 0xca, 0x3e, 0x04, 0x40, 0xa5, 0x4c, - 0xec, 0x34, 0xf6, 0x66, 0x6a, 0xd5, 0x42, 0x2d, 0xe6, 0xd4, 0x73, 0x0f, 0x88, 0xc4, 0x1e, 0x42, - 0x87, 0x56, 0xcf, 0x58, 0xf5, 0xe2, 0x00, 0xf9, 0xf9, 0x78, 0x9b, 0x58, 0xd4, 0x8c, 0x5b, 0xd0, - 0x24, 0x3b, 0x90, 0xb6, 0xb8, 0xc4, 0x15, 0xc4, 0xee, 0xc2, 0xb2, 0x17, 0xa4, 0xa8, 0x27, 0x27, - 0x1d, 0xb9, 0x22, 0xc9, 0x0c, 0x65, 0x29, 0xc7, 0xee, 0x8a, 0x24, 0x65, 0x9f, 0x82, 0x14, 0x76, - 0xb6, 0x61, 0x83, 0x36, 0x5c, 0xce, 0x95, 0x98, 0xc8, 0x1d, 0x89, 0x47, 0xed, 0x78, 0x1f, 0xda, - 0xf8, 0x7d, 0xd9, 0x8c, 0x26, 0xcd, 0xe8, 0xd0, 0xd7, 0x28, 0x71, 0x70, 0x40, 0x06, 0xc5, 0x8e, - 0xa2, 0x41, 0x63, 0x94, 0xc6, 0x43, 0x63, 0xab, 0x0f, 0x8d, 0xa3, 0xd8, 0x15, 0xf1, 0xc2, 0xfb, - 0xc0, 0xa0, 0xee, 0x8a, 0xc4, 0xa1, 0xab, 0x6a, 0x70, 0x1a, 0x17, 0x77, 0xa4, 0x56, 0xba, 0x23, - 0xd6, 0x5f, 0x6b, 0xd0, 0x1e, 0x84, 0x71, 0x7a, 0x20, 0x92, 0xc4, 0x1e, 0x0b, 0xb6, 0x0a, 0x8d, - 0x10, 0x97, 0x55, 0x12, 0x36, 0xf1, 0x4c, 0xb4, 0x0f, 0x97, 0xf8, 0x39, 0x3d, 0xe8, 0x2f, 0xd7, - 0x03, 0xda, 0x0e, 0xdd, 0xae, 0x9a, 0xb2, 0x1d, 0xba, 0x5b, 0xb7, 0xa0, 0x19, 0x9e, 0x9d, 0x25, - 0x42, 0xca, 0xb2, 0xc1, 0x15, 0xf4, 0x52, 0x13, 0xb4, 0x7e, 0x0b, 0x00, 0xcf, 0xf7, 0x23, 0xad, - 0xc0, 0x3a, 0x87, 0x36, 0xb7, 0xcf, 0xd2, 0x9d, 0x30, 0x48, 0xc5, 0x2c, 0x65, 0xcb, 0xa0, 0x7b, - 0x2e, 0x89, 0xa8, 0xc9, 0x75, 0xcf, 0xc5, 0xc3, 0x8d, 0xe3, 0x70, 0x1a, 0x91, 0x84, 0x96, 0xb8, - 0x04, 0x48, 0x94, 0xae, 0x1b, 0xd3, 0x89, 0x51, 0x94, 0xae, 0x1b, 0xb3, 0x55, 0x68, 0x27, 0x81, - 0x1d, 0x25, 0xe7, 0x61, 0x8a, 0x87, 0xab, 0xd3, 0xe1, 0x20, 0x43, 0x0d, 0x13, 0xeb, 0xbf, 0x74, - 0x68, 0x1e, 0x88, 0xc9, 0xa9, 0x88, 0x5f, 0xd8, 0xe5, 0x21, 0x18, 0xb4, 0xf0, 0xc8, 0x73, 0xe5, - 0x46, 0xdb, 0x3f, 0x79, 0xfe, 0x6c, 0xf5, 0x06, 0xe1, 0xf6, 0xdc, 0x4f, 0xc2, 0x89, 0x97, 0x8a, - 0x49, 0x94, 0x5e, 0xf1, 0x96, 0x42, 0x2d, 0x3c, 0xc1, 0x2d, 0x68, 0xfa, 0xc2, 0x46, 0x9d, 0x48, - 0xf3, 0x53, 0x10, 0xbb, 0x0f, 0x2d, 0x7b, 0x32, 0x72, 0x85, 0xed, 0x92, 0x97, 0x32, 0xb6, 0x6f, - 0x3e, 0x7f, 0xb6, 0xda, 0xb5, 0x27, 0xbb, 0xc2, 0x2e, 0xaf, 0xdd, 0x94, 0x18, 0xf6, 0x05, 0xda, - 0x5c, 0x92, 0x8e, 0xa6, 0x91, 0x6b, 0xa7, 0x82, 0x7c, 0x56, 0x7d, 0xbb, 0xf7, 0xfc, 0xd9, 0xea, - 0x4d, 0x44, 0x9f, 0x10, 0xb6, 0x34, 0x0d, 0x0a, 0x2c, 0xdb, 0x83, 0x1b, 0x8e, 0x3f, 0x4d, 0xd0, - 0x95, 0x7a, 0xc1, 0x59, 0x38, 0x0a, 0x03, 0xff, 0x8a, 0xd4, 0x64, 0x6c, 0xbf, 0xf3, 0xfc, 0xd9, - 0xea, 0x5b, 0x8a, 0xb8, 0x17, 0x9c, 0x85, 0x47, 0x81, 0x7f, 0x55, 0x5a, 0xe5, 0xfa, 0x1c, 0x89, - 0xfd, 0x2e, 0x2c, 0x9f, 0x85, 0xb1, 0x23, 0x46, 0xb9, 0x60, 0x96, 0x69, 0x9d, 0x95, 0xe7, 0xcf, - 0x56, 0x6f, 0x11, 0xe5, 0xf1, 0x0b, 0xd2, 0xe9, 0x94, 0xf1, 0xd6, 0x3f, 0xe8, 0xd0, 0xa0, 0x31, - 0x7b, 0x08, 0xad, 0x09, 0x09, 0x3e, 0xf3, 0x32, 0xb7, 0xd0, 0x12, 0x88, 0xb6, 0x21, 0x35, 0x92, - 0xf4, 0x83, 0x34, 0xbe, 0xe2, 0x19, 0x1b, 0xce, 0x48, 0xed, 0x53, 0x5f, 0xa4, 0x89, 0xb2, 0xdc, - 0xd2, 0x8c, 0xa1, 0x24, 0xa8, 0x19, 0x8a, 0x6d, 0x5e, 0xfd, 0xb5, 0x79, 0xf5, 0xb3, 0x15, 0x30, - 0x9c, 0x73, 0xe1, 0x5c, 0x24, 0xd3, 0x89, 0x32, 0x8e, 0x1c, 0x5e, 0x79, 0x04, 0x9d, 0xf2, 0x39, - 0x30, 0xae, 0x5e, 0x88, 0x2b, 0x32, 0x90, 0x3a, 0xc7, 0x21, 0x5b, 0x83, 0x06, 0x79, 0x22, 0x32, - 0x8f, 0xf6, 0x26, 0xe0, 0x71, 0xe4, 0x14, 0x2e, 0x09, 0x5f, 0xea, 0x3f, 0xd5, 0x70, 0x9d, 0xf2, - 0xe9, 0xca, 0xeb, 0x98, 0x2f, 0x5f, 0x47, 0x4e, 0x29, 0xad, 0x63, 0x85, 0xd0, 0xda, 0xf7, 0x1c, - 0x11, 0x24, 0x14, 0x7d, 0xa7, 0x89, 0xc8, 0xbd, 0x06, 0x8e, 0xf1, 0x53, 0x26, 0xf6, 0xec, 0x30, - 0x74, 0x45, 0x42, 0xeb, 0xd4, 0x79, 0x0e, 0x23, 0x4d, 0xcc, 0x22, 0x2f, 0xbe, 0x1a, 0x4a, 0x21, - 0xd4, 0x78, 0x0e, 0x63, 0x78, 0x13, 0x01, 0x6e, 0xe6, 0x66, 0x91, 0x54, 0x81, 0xd6, 0xdf, 0xd4, - 0xa0, 0xf3, 0xad, 0x88, 0xc3, 0xe3, 0x38, 0x8c, 0xc2, 0xc4, 0xf6, 0xd9, 0x56, 0x55, 0x9c, 0x52, - 0x6d, 0x6b, 0x78, 0xda, 0x32, 0xdb, 0xc6, 0x20, 0x97, 0xaf, 0x54, 0x47, 0x59, 0xe0, 0x16, 0x34, - 0xa5, 0x3a, 0x17, 0xc8, 0x4c, 0x51, 0x90, 0x47, 0x2a, 0x90, 0xce, 0x5a, 0x95, 0x87, 0xa2, 0xb0, - 0x3b, 0x00, 0x13, 0x7b, 0xb6, 0x2f, 0xec, 0x44, 0xec, 0xb9, 0xd9, 0xbd, 0x2e, 0x30, 0x4a, 0x1a, - 0xc3, 0x59, 0x30, 0x4c, 0xe8, 0x7e, 0x49, 0x69, 0x10, 0xcc, 0xde, 0x06, 0x73, 0x62, 0xcf, 0xd0, - 0xc1, 0xec, 0xb9, 0xf2, 0x26, 0xf1, 0x02, 0xc1, 0xde, 0x85, 0x5a, 0x3a, 0x0b, 0xc8, 0x5b, 0x63, - 0x30, 0xc7, 0xc4, 0x6e, 0x38, 0x0b, 0x94, 0x2b, 0xe2, 0x48, 0xcb, 0x34, 0x68, 0x14, 0x1a, 0xec, - 0x42, 0xcd, 0xf1, 0x5c, 0x8a, 0xe6, 0x26, 0xc7, 0x21, 0xbb, 0x0b, 0x2d, 0x5f, 0x6a, 0x8b, 0x22, - 0x76, 0x7b, 0xb3, 0x2d, 0x1d, 0x1d, 0xa1, 0x78, 0x46, 0x5b, 0xf9, 0x1d, 0xb8, 0x3e, 0x27, 0xae, - 0xb2, 0x7d, 0x2c, 0xc9, 0xd5, 0x6f, 0x96, 0xed, 0xa3, 0x5e, 0xb6, 0x89, 0x7f, 0xab, 0xc1, 0x75, - 0x65, 0xa4, 0xe7, 0x5e, 0x34, 0x48, 0xf1, 0xbe, 0xf7, 0xa0, 0x45, 0xde, 0x5a, 0xd9, 0x47, 0x9d, - 0x67, 0x20, 0xfb, 0x6d, 0x68, 0xd2, 0xc5, 0xcd, 0xee, 0xcf, 0x6a, 0x21, 0xfc, 0x7c, 0xba, 0xbc, - 0x4f, 0x4a, 0x73, 0x8a, 0x9d, 0x7d, 0x0e, 0x8d, 0xef, 0x44, 0x1c, 0xca, 0xe8, 0xd3, 0xde, 0xbc, - 0xb3, 0x68, 0x1e, 0x9a, 0x80, 0x9a, 0x26, 0x99, 0x7f, 0x83, 0x3a, 0x7a, 0x1f, 0xe3, 0xcd, 0x24, - 0xbc, 0x14, 0x6e, 0xaf, 0x45, 0x27, 0x2a, 0x9b, 0x51, 0x46, 0xca, 0x94, 0x62, 0x2c, 0x54, 0x8a, - 0xf9, 0x0a, 0xa5, 0xec, 0x42, 0xbb, 0x24, 0x85, 0x05, 0x0a, 0x59, 0xad, 0x5e, 0x58, 0x33, 0xf7, - 0x43, 0xe5, 0x7b, 0xbf, 0x0b, 0x50, 0xc8, 0xe4, 0xd7, 0xf5, 0x1e, 0xd6, 0x1f, 0x6b, 0x70, 0x7d, - 0x27, 0x0c, 0x02, 0x41, 0x59, 0xa9, 0xd4, 0x70, 0x71, 0x89, 0xb4, 0x97, 0x5e, 0xa2, 0x8f, 0xa0, - 0x91, 0x20, 0xb3, 0x5a, 0xfd, 0x8d, 0x05, 0x2a, 0xe3, 0x92, 0x03, 0xbd, 0xe4, 0xc4, 0x9e, 0x8d, - 0x22, 0x11, 0xb8, 0x5e, 0x30, 0xce, 0xbc, 0xe4, 0xc4, 0x9e, 0x1d, 0x4b, 0x8c, 0xf5, 0x3f, 0x1a, - 0xc0, 0x57, 0xc2, 0xf6, 0xd3, 0x73, 0x8c, 0x04, 0xa8, 0x37, 0x2f, 0x48, 0x52, 0x3b, 0x70, 0xb2, - 0x9a, 0x20, 0x87, 0xd1, 0xf8, 0x30, 0xec, 0x89, 0x44, 0x3a, 0x21, 0x93, 0x67, 0x20, 0x06, 0x42, - 0xdc, 0x6e, 0x9a, 0xa8, 0xf0, 0xa8, 0xa0, 0x22, 0x98, 0xd7, 0x09, 0xad, 0x82, 0x79, 0x0f, 0x5a, - 0x98, 0x63, 0x7b, 0x61, 0x40, 0xa6, 0x61, 0xf2, 0x0c, 0xc4, 0x75, 0xa6, 0x51, 0xea, 0x4d, 0x64, - 0x10, 0xac, 0x71, 0x05, 0xe1, 0xa9, 0x30, 0xe8, 0xf5, 0x9d, 0xf3, 0x90, 0x2e, 0x6f, 0x8d, 0xe7, - 0x30, 0xae, 0x16, 0x06, 0xe3, 0x10, 0xbf, 0xce, 0xa0, 0xfc, 0x29, 0x03, 0xe5, 0xb7, 0xb8, 0x62, - 0x86, 0x24, 0x93, 0x48, 0x39, 0x6c, 0xfd, 0x91, 0x0e, 0x4d, 0xe9, 0x76, 0x2a, 0xb9, 0x80, 0xf6, - 0x83, 0x72, 0x81, 0xb7, 0xc1, 0x8c, 0x62, 0xe1, 0x7a, 0x4e, 0xa6, 0x03, 0x93, 0x17, 0x08, 0x4a, - 0xc2, 0x31, 0x2c, 0x92, 0x2c, 0x0c, 0x2e, 0x01, 0xc4, 0x26, 0x91, 0xed, 0x08, 0x75, 0x7e, 0x09, - 0xe0, 0x07, 0x4b, 0x8b, 0x26, 0x4b, 0x36, 0xb8, 0x82, 0xd8, 0x67, 0x60, 0x52, 0xd2, 0x45, 0xf1, - 0xdc, 0xa4, 0x38, 0x7c, 0xeb, 0xf9, 0xb3, 0x55, 0x86, 0xc8, 0xb9, 0x40, 0x6e, 0x64, 0x38, 0x4c, - 0x3b, 0x70, 0x32, 0xba, 0x6f, 0xa0, 0x1c, 0x82, 0xd2, 0x0e, 0x44, 0x0d, 0x93, 0x72, 0xda, 0x21, - 0x31, 0xd6, 0xdf, 0xea, 0xd0, 0xd9, 0xf5, 0x62, 0xe1, 0xa4, 0xc2, 0xed, 0xbb, 0x63, 0x3a, 0x8c, - 0x08, 0x52, 0x2f, 0xbd, 0x52, 0x89, 0x92, 0x82, 0xf2, 0x3c, 0x56, 0xaf, 0xd6, 0x75, 0xd2, 0xc0, - 0x6b, 0x54, 0x8a, 0x4a, 0x80, 0x6d, 0x02, 0xc8, 0x0c, 0x9f, 0xca, 0xd1, 0xfa, 0xcb, 0xcb, 0x51, - 0x93, 0xd8, 0x70, 0x88, 0xe5, 0x9e, 0x9c, 0xe3, 0xc9, 0x6c, 0xa9, 0x49, 0xb5, 0xea, 0x14, 0x9d, - 0x08, 0x25, 0xc6, 0xa7, 0xc2, 0x27, 0x6b, 0xa0, 0xc4, 0xf8, 0x54, 0xf8, 0x79, 0x39, 0xd2, 0x92, - 0xc7, 0xc1, 0x31, 0x7b, 0x0f, 0xf4, 0x30, 0x22, 0x19, 0xaa, 0x0d, 0xcb, 0x1f, 0xb6, 0x71, 0x14, - 0x71, 0x3d, 0x8c, 0xf0, 0x6a, 0xc9, 0xda, 0x8b, 0xac, 0x01, 0xaf, 0x16, 0x06, 0x00, 0xaa, 0x04, - 0xb8, 0xa2, 0x58, 0xb7, 0x40, 0x3f, 0x8a, 0x58, 0x0b, 0x6a, 0x83, 0xfe, 0xb0, 0x7b, 0x0d, 0x07, - 0xbb, 0xfd, 0xfd, 0xae, 0x66, 0x7d, 0xaf, 0x83, 0x79, 0x30, 0x4d, 0x6d, 0xbc, 0xa8, 0x09, 0x9e, - 0xb9, 0x6a, 0x32, 0x85, 0x6d, 0xbc, 0x05, 0x46, 0x92, 0xda, 0x31, 0x05, 0x51, 0xe9, 0xd2, 0x5b, - 0x04, 0x0f, 0x13, 0xf6, 0x01, 0x34, 0x84, 0x3b, 0x16, 0x99, 0xa7, 0xed, 0xce, 0x9f, 0x93, 0x4b, - 0x32, 0x5b, 0x87, 0x66, 0xe2, 0x9c, 0x8b, 0x89, 0xdd, 0xab, 0x17, 0x8c, 0x03, 0xc2, 0xc8, 0xb4, - 0x8f, 0x2b, 0x3a, 0x7b, 0x1f, 0x1a, 0x28, 0xe9, 0x44, 0xd5, 0x29, 0x54, 0xd9, 0xa0, 0x50, 0x15, - 0x9b, 0x24, 0xa2, 0x5d, 0xb8, 0x71, 0x18, 0x8d, 0xc2, 0x88, 0x64, 0xb6, 0xbc, 0x79, 0x93, 0x1c, - 0x46, 0xf6, 0x35, 0x1b, 0xbb, 0x71, 0x18, 0x1d, 0x45, 0xbc, 0xe9, 0xd2, 0x2f, 0x96, 0xa4, 0xc4, - 0x2e, 0xf5, 0x2b, 0x3d, 0xac, 0x89, 0x18, 0xd9, 0x82, 0x58, 0x07, 0x63, 0x22, 0x52, 0xdb, 0xb5, - 0x53, 0x5b, 0x39, 0xda, 0x8e, 0xf4, 0x3f, 0x12, 0xc7, 0x73, 0xaa, 0xf5, 0x00, 0x9a, 0x72, 0x69, - 0x66, 0x40, 0xfd, 0xf0, 0xe8, 0xb0, 0x2f, 0x05, 0xba, 0xb5, 0xbf, 0xdf, 0xd5, 0x10, 0xb5, 0xbb, - 0x35, 0xdc, 0xea, 0xea, 0x38, 0x1a, 0xfe, 0xfc, 0xb8, 0xdf, 0xad, 0x59, 0xff, 0xa2, 0x81, 0x91, - 0xad, 0xc3, 0xbe, 0x04, 0xc0, 0x3b, 0x35, 0x3a, 0xf7, 0x82, 0x3c, 0x1f, 0xb9, 0x5d, 0xde, 0x69, - 0xe3, 0x38, 0x16, 0xee, 0x57, 0x48, 0x95, 0x91, 0x89, 0xae, 0x20, 0xc1, 0x2b, 0x03, 0x58, 0xae, - 0x12, 0x17, 0x24, 0x66, 0xf7, 0xca, 0x2e, 0x7a, 0x79, 0xf3, 0x27, 0x95, 0xa5, 0x71, 0x26, 0x19, - 0x6a, 0xc9, 0x5b, 0xdf, 0x07, 0x23, 0x43, 0xb3, 0x36, 0xb4, 0x76, 0xfb, 0x8f, 0xb6, 0x4e, 0xf6, - 0xd1, 0x48, 0x00, 0x9a, 0x83, 0xbd, 0xc3, 0xc7, 0xfb, 0x7d, 0xf9, 0x59, 0xfb, 0x7b, 0x83, 0x61, - 0x57, 0xb7, 0xfe, 0x4a, 0x03, 0x23, 0x0b, 0xff, 0xec, 0x23, 0x8c, 0xdb, 0x94, 0x65, 0x28, 0xb7, - 0x4e, 0x9d, 0x84, 0x52, 0x1d, 0xc4, 0x33, 0x3a, 0x1a, 0x3d, 0x79, 0xa9, 0x2c, 0x21, 0x20, 0xa0, - 0x5c, 0x85, 0xd5, 0x2a, 0x8d, 0x00, 0x2c, 0x28, 0xc3, 0x40, 0xa8, 0xfc, 0x8e, 0xc6, 0x64, 0x83, - 0x5e, 0xe0, 0x90, 0x27, 0x68, 0x28, 0x1b, 0x44, 0x78, 0x98, 0x58, 0xbf, 0xd2, 0x61, 0x99, 0x8b, - 0x24, 0x0d, 0x63, 0xc1, 0xc5, 0x1f, 0x4c, 0xb1, 0x4a, 0x7e, 0x85, 0x31, 0xbf, 0x03, 0x10, 0x4b, - 0xe6, 0xc2, 0x9c, 0x4d, 0x85, 0x91, 0x19, 0xb6, 0x1f, 0x3a, 0x64, 0x45, 0xca, 0xf1, 0xe7, 0x30, - 0xbb, 0x0d, 0xe6, 0xa9, 0xed, 0x5c, 0xc8, 0x65, 0xa5, 0xfb, 0x37, 0x24, 0x42, 0xae, 0x6b, 0x3b, - 0x8e, 0x48, 0x92, 0x11, 0x2a, 0x45, 0x06, 0x01, 0x53, 0x62, 0x9e, 0x88, 0x2b, 0x24, 0x27, 0xc2, - 0x89, 0x45, 0x4a, 0x64, 0x79, 0xf9, 0x4d, 0x89, 0x41, 0xf2, 0x7b, 0xb0, 0x94, 0x88, 0x04, 0x03, - 0xc6, 0x28, 0x0d, 0x2f, 0x44, 0xa0, 0x3c, 0x41, 0x47, 0x21, 0x87, 0x88, 0x43, 0x1f, 0x6d, 0x07, - 0x61, 0x70, 0x35, 0x09, 0xa7, 0x89, 0x72, 0xae, 0x05, 0x02, 0xbf, 0xf9, 0x42, 0x5c, 0x8d, 0xce, - 0x3c, 0x5f, 0xa8, 0xc4, 0xae, 0x75, 0x21, 0xae, 0x1e, 0x79, 0xbe, 0xb0, 0xfe, 0x4f, 0x07, 0x23, - 0xcf, 0x8a, 0xef, 0x81, 0x39, 0xc9, 0xee, 0x89, 0x8a, 0xb6, 0x4b, 0x95, 0xcb, 0xc3, 0x0b, 0x3a, - 0xbb, 0x05, 0xfa, 0xc5, 0xa5, 0xba, 0xb3, 0x4d, 0xe4, 0x7a, 0xf2, 0x94, 0xeb, 0x17, 0x97, 0x45, - 0xb8, 0x6e, 0xbc, 0x36, 0x5c, 0x7f, 0x08, 0xd7, 0x1d, 0x5f, 0xd8, 0xc1, 0xa8, 0x88, 0x2f, 0xf2, - 0xf3, 0x97, 0x09, 0x7d, 0x9c, 0x07, 0x19, 0x65, 0xcf, 0xad, 0xc2, 0x9e, 0xef, 0x42, 0xc3, 0x15, - 0x7e, 0x6a, 0x97, 0x5b, 0x55, 0x47, 0xb1, 0xed, 0xf8, 0x62, 0x17, 0xd1, 0x5c, 0x52, 0xf1, 0xfa, - 0x66, 0x29, 0x7b, 0xf9, 0xfa, 0x66, 0x96, 0xca, 0x73, 0x6a, 0x61, 0x88, 0x50, 0x36, 0xc4, 0x7b, - 0x70, 0x43, 0xcc, 0x22, 0xf2, 0x59, 0xa3, 0xbc, 0xbc, 0x6a, 0x13, 0x47, 0x37, 0x23, 0xec, 0x28, - 0x3c, 0xfb, 0x04, 0xad, 0x96, 0xac, 0xa5, 0xd7, 0xa1, 0xbd, 0x18, 0x99, 0x7d, 0xc5, 0xfe, 0x78, - 0xc6, 0x62, 0x7d, 0x0a, 0xb5, 0x27, 0x4f, 0x07, 0x4a, 0x8c, 0xda, 0x0b, 0x62, 0xcc, 0x2c, 0x5d, - 0x2f, 0x2c, 0xdd, 0xfa, 0xdf, 0x1a, 0xb4, 0x54, 0x6c, 0x41, 0x91, 0x4c, 0xf3, 0x22, 0x1f, 0x87, - 0xd5, 0xdc, 0x3a, 0x0f, 0x52, 0xe5, 0x8e, 0x69, 0xed, 0xf5, 0x1d, 0x53, 0xf6, 0x25, 0x74, 0x22, - 0x49, 0x2b, 0x87, 0xb5, 0x37, 0xcb, 0x73, 0xd4, 0x2f, 0xcd, 0x6b, 0x47, 0x05, 0x80, 0x76, 0x46, - 0xed, 0xa4, 0xd4, 0x1e, 0x93, 0xf6, 0x3b, 0xbc, 0x85, 0xf0, 0xd0, 0x1e, 0xbf, 0x24, 0xb8, 0xfd, - 0x80, 0x18, 0xc5, 0x96, 0x29, 0xd8, 0x75, 0xe8, 0xaa, 0x62, 0x5c, 0x2b, 0x87, 0x9c, 0xa5, 0x6a, - 0xc8, 0xb9, 0x0d, 0xa6, 0x13, 0x4e, 0x26, 0x1e, 0xd1, 0x96, 0x55, 0x11, 0x4c, 0x88, 0x61, 0x62, - 0xfd, 0x99, 0x06, 0x2d, 0xf5, 0xb5, 0x2f, 0x38, 0xb4, 0xed, 0xbd, 0xc3, 0x2d, 0xfe, 0xf3, 0xae, - 0x86, 0x0e, 0x7b, 0xef, 0x70, 0xd8, 0xd5, 0x99, 0x09, 0x8d, 0x47, 0xfb, 0x47, 0x5b, 0xc3, 0x6e, - 0x0d, 0x9d, 0xdc, 0xf6, 0xd1, 0xd1, 0x7e, 0xb7, 0xce, 0x3a, 0x60, 0xec, 0x6e, 0x0d, 0xfb, 0xc3, - 0xbd, 0x83, 0x7e, 0xb7, 0x81, 0xbc, 0x8f, 0xfb, 0x47, 0xdd, 0x26, 0x0e, 0x4e, 0xf6, 0x76, 0xbb, - 0x2d, 0xa4, 0x1f, 0x6f, 0x0d, 0x06, 0xdf, 0x1c, 0xf1, 0xdd, 0xae, 0x41, 0x8e, 0x72, 0xc8, 0xf7, - 0x0e, 0x1f, 0x77, 0x4d, 0x1c, 0x1f, 0x6d, 0x7f, 0xdd, 0xdf, 0x19, 0x76, 0xc1, 0xfa, 0x14, 0xda, - 0x25, 0x09, 0xe2, 0x6c, 0xde, 0x7f, 0xd4, 0xbd, 0x86, 0x5b, 0x3e, 0xdd, 0xda, 0x3f, 0x41, 0xbf, - 0xba, 0x0c, 0x40, 0xc3, 0xd1, 0xfe, 0xd6, 0xe1, 0xe3, 0xae, 0x6e, 0xfd, 0x0c, 0x8c, 0x13, 0xcf, - 0xdd, 0xf6, 0x43, 0xe7, 0x02, 0x0d, 0xe3, 0xd4, 0x4e, 0x84, 0xca, 0xbf, 0x69, 0x8c, 0xb9, 0x0c, - 0xd9, 0x7b, 0xa2, 0x74, 0xaf, 0x20, 0x94, 0x55, 0x30, 0x9d, 0x8c, 0xa8, 0xcb, 0x5e, 0x93, 0xce, - 0x2e, 0x98, 0x4e, 0x4e, 0x3c, 0x37, 0xb1, 0x0e, 0xa1, 0x75, 0xe2, 0xb9, 0xc7, 0xb6, 0x73, 0x81, - 0x0e, 0xe8, 0x14, 0x97, 0x1e, 0x25, 0xde, 0x77, 0x42, 0x39, 0x45, 0x93, 0x30, 0x03, 0xef, 0x3b, - 0xc1, 0xde, 0x87, 0x26, 0x01, 0x59, 0xad, 0x45, 0x37, 0x28, 0x3b, 0x0e, 0x57, 0x34, 0xeb, 0x2f, - 0xb4, 0xfc, 0xb3, 0xa8, 0x8d, 0xba, 0x0a, 0xf5, 0xc8, 0x76, 0x2e, 0x54, 0x00, 0x68, 0xab, 0x39, - 0xb8, 0x1f, 0x27, 0x02, 0xfb, 0x10, 0x0c, 0x65, 0x3b, 0xd9, 0xc2, 0xed, 0x92, 0x91, 0xf1, 0x9c, - 0x58, 0xd5, 0x6a, 0xad, 0xaa, 0x55, 0xca, 0xc5, 0x23, 0xdf, 0xa3, 0x8e, 0x58, 0x0d, 0x03, 0x85, - 0x84, 0xac, 0xcf, 0x01, 0x8a, 0xce, 0xf5, 0x82, 0x78, 0x78, 0x13, 0x1a, 0xb6, 0xef, 0xd9, 0x59, - 0x6e, 0x2f, 0x01, 0xeb, 0x10, 0xda, 0xa5, 0x7e, 0x37, 0x8a, 0xcf, 0xf6, 0x7d, 0x74, 0xcb, 0x09, - 0xcd, 0x35, 0x78, 0xcb, 0xf6, 0xfd, 0x27, 0xe2, 0x2a, 0xc1, 0x5c, 0x44, 0xb6, 0xca, 0xf5, 0xb9, - 0x2e, 0x2b, 0x4d, 0xe5, 0x92, 0x68, 0x7d, 0x02, 0x4d, 0xd9, 0x7a, 0x2d, 0x59, 0xba, 0xf6, 0xd2, - 0x6c, 0xec, 0x0b, 0x75, 0x66, 0x6a, 0xd4, 0xb2, 0x7b, 0xaa, 0x25, 0x9f, 0xc8, 0x07, 0x00, 0xad, - 0xa8, 0x0e, 0x25, 0x93, 0xea, 0xc6, 0x13, 0xb3, 0xb5, 0x0b, 0xc6, 0x2b, 0x1f, 0x39, 0x94, 0x00, - 0xf4, 0x42, 0x00, 0x0b, 0x9e, 0x3d, 0xac, 0x5f, 0x00, 0x14, 0xad, 0x7b, 0x75, 0xf1, 0xe4, 0x2a, - 0x78, 0xf1, 0x3e, 0x06, 0xc3, 0x39, 0xf7, 0x7c, 0x37, 0x16, 0x41, 0xe5, 0xab, 0x8b, 0x66, 0x7f, - 0x4e, 0x67, 0x6b, 0x50, 0xa7, 0x17, 0x89, 0x5a, 0xe1, 0x73, 0xf3, 0xe7, 0x08, 0xa2, 0x58, 0x33, - 0x58, 0x92, 0x49, 0xde, 0x0f, 0x08, 0xcc, 0x77, 0x64, 0x72, 0x44, 0xb1, 0x20, 0x7b, 0x5b, 0x29, - 0x61, 0xd0, 0x08, 0xce, 0x3c, 0xe1, 0xbb, 0xd9, 0xd7, 0x28, 0x08, 0x95, 0x2c, 0x13, 0xc6, 0xba, - 0x6c, 0x35, 0x13, 0x60, 0xfd, 0x89, 0x0e, 0x20, 0xb7, 0x3e, 0x0c, 0x5d, 0x51, 0x2d, 0x6f, 0xb4, - 0xf9, 0xf2, 0x86, 0x41, 0x3d, 0x7f, 0x6c, 0x32, 0x39, 0x8d, 0x8b, 0x50, 0xa1, 0x4a, 0x1e, 0x19, - 0x2a, 0xde, 0x06, 0x93, 0xe2, 0xb3, 0xf7, 0x1d, 0x75, 0x48, 0x71, 0xc3, 0x02, 0x51, 0x7e, 0x7a, - 0x69, 0x54, 0x9f, 0x5e, 0xf2, 0xfe, 0x74, 0x53, 0xae, 0x26, 0xfb, 0xd3, 0x0b, 0x5a, 0xed, 0xb2, - 0x5e, 0x4c, 0x44, 0x9c, 0x66, 0xe5, 0x93, 0x84, 0xf2, 0x12, 0xc1, 0x54, 0xbc, 0x58, 0x22, 0xac, - 0x42, 0x3b, 0x08, 0x47, 0x4e, 0x18, 0x9c, 0xf9, 0x9e, 0x93, 0xaa, 0xa7, 0x16, 0x08, 0xc2, 0x1d, - 0x85, 0xb1, 0xbe, 0x84, 0x4e, 0x26, 0x7f, 0xea, 0x68, 0x7f, 0x9c, 0xa7, 0xe1, 0x5a, 0xa1, 0xdb, - 0x42, 0x4c, 0xdb, 0x7a, 0x4f, 0xcb, 0x12, 0x71, 0xeb, 0xbf, 0x6b, 0xd9, 0x64, 0xd5, 0x98, 0x7d, - 0xb5, 0x0c, 0xab, 0x75, 0x92, 0xfe, 0x83, 0xea, 0xa4, 0x9f, 0x82, 0xe9, 0x52, 0xb1, 0xe0, 0x5d, - 0x66, 0x71, 0x6b, 0x65, 0xbe, 0x30, 0x50, 0xe5, 0x84, 0x77, 0x29, 0x78, 0xc1, 0xfc, 0x1a, 0x3d, - 0xe4, 0xd2, 0x6e, 0x2c, 0x92, 0x76, 0xf3, 0xd7, 0x94, 0xf6, 0xbb, 0xd0, 0x09, 0xc2, 0x60, 0x14, - 0x4c, 0x7d, 0x1f, 0xab, 0x6c, 0x25, 0xee, 0x76, 0x10, 0x06, 0x87, 0x0a, 0xc5, 0x3e, 0x86, 0x1b, - 0x65, 0x16, 0x79, 0xa9, 0xdb, 0xc4, 0x77, 0xbd, 0xc4, 0x47, 0x57, 0x7f, 0x1d, 0xba, 0xe1, 0xe9, - 0x2f, 0x84, 0x93, 0x92, 0xc4, 0x46, 0x74, 0x9b, 0x3b, 0x32, 0x31, 0x92, 0x78, 0x14, 0xd1, 0x21, - 0xde, 0xeb, 0x39, 0x35, 0x2f, 0xbd, 0xa0, 0xe6, 0x2f, 0xc0, 0xcc, 0xa5, 0x54, 0x2a, 0x4c, 0x4c, - 0x68, 0xec, 0x1d, 0xee, 0xf6, 0x7f, 0xaf, 0xab, 0x61, 0x2c, 0xe4, 0xfd, 0xa7, 0x7d, 0x3e, 0xe8, - 0x77, 0x75, 0x8c, 0x53, 0xbb, 0xfd, 0xfd, 0xfe, 0xb0, 0xdf, 0xad, 0x7d, 0x5d, 0x37, 0x5a, 0x5d, - 0x83, 0xda, 0xab, 0xbe, 0xe7, 0x78, 0xa9, 0x35, 0x00, 0x28, 0xaa, 0x2d, 0xf4, 0xca, 0xc5, 0xe1, - 0x54, 0xef, 0x24, 0xcd, 0x8e, 0xb5, 0x9e, 0x5f, 0x48, 0xfd, 0x65, 0x35, 0x9d, 0xa4, 0x5b, 0x9b, - 0x60, 0x1e, 0xd8, 0xd1, 0x57, 0xf2, 0x25, 0xe1, 0x2e, 0x2c, 0x47, 0x76, 0x9c, 0x7a, 0xe8, 0x26, - 0x32, 0xaf, 0x5b, 0x5b, 0xef, 0xf0, 0xa5, 0x1c, 0x8b, 0xbe, 0xd7, 0x3a, 0x01, 0xe3, 0xc0, 0x8e, - 0x5e, 0xa8, 0x74, 0x3a, 0x79, 0x03, 0x73, 0xaa, 0xde, 0x39, 0x54, 0x62, 0x74, 0x17, 0x5a, 0x2a, - 0x98, 0x28, 0x7f, 0x54, 0x09, 0x34, 0x19, 0xcd, 0xfa, 0x7b, 0x0d, 0x6e, 0x1e, 0x84, 0x97, 0x22, - 0x4f, 0x3b, 0x8f, 0xed, 0x2b, 0x3f, 0xb4, 0xdd, 0xd7, 0x58, 0x37, 0xa6, 0xef, 0xe1, 0x94, 0x9e, - 0x12, 0xb2, 0xe7, 0x15, 0x6e, 0x4a, 0xcc, 0x63, 0xf5, 0xbe, 0x2b, 0x92, 0x94, 0x88, 0x2a, 0x04, - 0x23, 0x8c, 0xa4, 0x9f, 0x40, 0x33, 0x9d, 0x05, 0xc5, 0x6b, 0x4e, 0x23, 0xa5, 0x86, 0xe1, 0xc2, - 0x9c, 0xb3, 0xb1, 0x38, 0xe7, 0xb4, 0x76, 0xc0, 0x1c, 0xce, 0xa8, 0x99, 0x26, 0xf3, 0xfc, 0x3c, - 0x35, 0xd2, 0x5e, 0x91, 0x1a, 0xe9, 0x73, 0xa9, 0xd1, 0x7f, 0x6a, 0xd0, 0x2e, 0x25, 0xcf, 0xec, - 0x5d, 0xa8, 0xa7, 0xb3, 0xa0, 0xfa, 0x66, 0x9a, 0x6d, 0xc2, 0x89, 0x84, 0x16, 0x3f, 0xb1, 0x67, - 0x23, 0x3b, 0x49, 0xbc, 0x71, 0x20, 0x5c, 0xb5, 0x64, 0x7b, 0x62, 0xcf, 0xb6, 0x14, 0x8a, 0xed, - 0xc3, 0x75, 0xe9, 0xd0, 0xb3, 0x8f, 0xc8, 0x5a, 0x01, 0xef, 0xcd, 0x25, 0xeb, 0xb2, 0xe1, 0x98, - 0x7d, 0x92, 0xaa, 0x6f, 0x97, 0xc7, 0x15, 0xe4, 0xca, 0x16, 0xbc, 0xb1, 0x80, 0xed, 0x47, 0xb5, - 0x98, 0x57, 0x61, 0x69, 0x38, 0x0b, 0x86, 0xde, 0x44, 0x24, 0xa9, 0x3d, 0x89, 0x28, 0xb5, 0x54, - 0x01, 0xb9, 0xce, 0xf5, 0x34, 0xb1, 0x3e, 0x80, 0xce, 0xb1, 0x10, 0x31, 0x17, 0x49, 0x14, 0x06, - 0x32, 0xad, 0x52, 0x8d, 0x3e, 0x19, 0xfd, 0x15, 0x64, 0xfd, 0x3e, 0x98, 0x58, 0xcc, 0x6e, 0xdb, - 0xa9, 0x73, 0xfe, 0x63, 0x8a, 0xdd, 0x0f, 0xa0, 0x15, 0x49, 0x9b, 0x52, 0xd5, 0x55, 0x87, 0xb2, - 0x00, 0x65, 0x67, 0x3c, 0x23, 0x5a, 0x9f, 0xc2, 0x1b, 0x83, 0xe9, 0x69, 0xe2, 0xc4, 0x5e, 0x44, - 0x11, 0x53, 0x45, 0xc8, 0x15, 0x30, 0xa2, 0x58, 0x9c, 0x79, 0x33, 0x91, 0x5d, 0x8c, 0x1c, 0xb6, - 0x3e, 0x87, 0x9b, 0xd5, 0x29, 0xea, 0x13, 0xde, 0x86, 0xda, 0xc5, 0x65, 0x52, 0xee, 0xae, 0x3e, - 0x79, 0x4a, 0x6f, 0x94, 0x88, 0xb6, 0x38, 0xd4, 0x0e, 0xa7, 0x93, 0xf2, 0xff, 0x2c, 0xea, 0xf2, - 0x7f, 0x16, 0xb7, 0xcb, 0x1d, 0x39, 0x59, 0x82, 0x14, 0x9d, 0xb7, 0xb7, 0xc1, 0x3c, 0x0b, 0xe3, - 0x3f, 0xb4, 0x63, 0x57, 0xb8, 0x2a, 0x06, 0x16, 0x08, 0xeb, 0x5b, 0x68, 0x67, 0x26, 0xb0, 0xe7, - 0xd2, 0xa3, 0x0c, 0xd9, 0xe0, 0x9e, 0x5b, 0x31, 0x49, 0xd9, 0xef, 0x12, 0x81, 0xbb, 0x97, 0xd9, - 0x8e, 0x04, 0xaa, 0x3b, 0xab, 0x5e, 0x7a, 0xb6, 0xb3, 0xf5, 0x08, 0x3a, 0x59, 0xe9, 0x76, 0x20, - 0x52, 0x9b, 0xac, 0xda, 0xf7, 0x44, 0x50, 0xb2, 0x78, 0x43, 0x22, 0x86, 0xd5, 0xb6, 0x95, 0x5e, - 0x49, 0x28, 0xac, 0x0d, 0x68, 0xaa, 0x2b, 0xc3, 0xa0, 0xee, 0x84, 0xae, 0xbc, 0xd6, 0x0d, 0x4e, - 0x63, 0x14, 0xc7, 0x24, 0x19, 0x67, 0xc9, 0xd2, 0x24, 0x19, 0x5b, 0xff, 0xa8, 0xc3, 0xd2, 0x36, - 0x95, 0xf3, 0x99, 0x2e, 0x4a, 0x1d, 0x0a, 0xad, 0xd2, 0xa1, 0x28, 0x77, 0x23, 0xf4, 0x4a, 0x37, - 0xa2, 0x72, 0xa0, 0x5a, 0x35, 0xc3, 0x79, 0x13, 0x5a, 0xd3, 0xc0, 0x9b, 0x65, 0xbe, 0xc0, 0xe4, - 0x4d, 0x04, 0x87, 0x09, 0x5b, 0x83, 0x36, 0xba, 0x0b, 0x2f, 0x90, 0x7d, 0x07, 0xd9, 0x3c, 0x28, - 0xa3, 0xe6, 0xba, 0x0b, 0xcd, 0x57, 0x77, 0x17, 0x5a, 0xaf, 0xed, 0x2e, 0x18, 0xaf, 0xeb, 0x2e, - 0x98, 0xf3, 0xdd, 0x85, 0x6a, 0x76, 0x06, 0xf3, 0xd9, 0x99, 0x95, 0xc2, 0x52, 0x7f, 0x16, 0xd1, - 0xdb, 0xf9, 0x6b, 0x33, 0xbd, 0x92, 0x58, 0xf5, 0x8a, 0x58, 0x4b, 0x02, 0xaa, 0xa9, 0x66, 0xb9, - 0x14, 0x10, 0xe6, 0x7e, 0x61, 0x3c, 0xb1, 0xd3, 0x4c, 0x70, 0x12, 0xb2, 0xfe, 0x52, 0x07, 0x53, - 0xaa, 0x0c, 0x3f, 0xf3, 0x23, 0x95, 0xc6, 0x69, 0x45, 0xf7, 0x2b, 0x27, 0x6e, 0x3c, 0x11, 0x57, - 0x94, 0x7e, 0xc8, 0xec, 0x6e, 0x51, 0xff, 0x57, 0xc5, 0x14, 0x59, 0x7c, 0x50, 0x4c, 0xb9, 0x0d, - 0xa6, 0x74, 0xb5, 0x53, 0x2f, 0x7b, 0x10, 0x92, 0xbe, 0xf7, 0xc4, 0xa3, 0xd7, 0xf3, 0x54, 0xc4, - 0x13, 0xa5, 0x2d, 0x1a, 0x57, 0xd3, 0xbc, 0x25, 0x95, 0x78, 0x58, 0xe7, 0xd0, 0x52, 0xbb, 0x63, - 0x1c, 0x3e, 0x39, 0x7c, 0x72, 0x78, 0xf4, 0xcd, 0x61, 0xf7, 0x5a, 0xde, 0x2f, 0xd4, 0x8a, 0x48, - 0xad, 0x97, 0x23, 0x75, 0x0d, 0xf1, 0x3b, 0x47, 0x27, 0x87, 0xc3, 0x6e, 0x9d, 0x2d, 0x81, 0x49, - 0xc3, 0x11, 0xef, 0x3f, 0xed, 0x36, 0xa8, 0xee, 0xdc, 0xf9, 0xaa, 0x7f, 0xb0, 0xd5, 0x6d, 0xe6, - 0xdd, 0xc6, 0x96, 0xf5, 0xa7, 0x1a, 0xdc, 0x90, 0x9f, 0x5c, 0xae, 0xd2, 0xca, 0x7f, 0xc1, 0xaa, - 0xcb, 0xbf, 0x60, 0xfd, 0x66, 0x0b, 0xb3, 0xcd, 0x7f, 0xd2, 0xa0, 0x8e, 0xce, 0x91, 0xdd, 0x07, - 0xf3, 0x2b, 0x61, 0xc7, 0xe9, 0xa9, 0xb0, 0x53, 0x56, 0x71, 0x84, 0x2b, 0x94, 0x7b, 0x16, 0xcf, - 0x34, 0xd6, 0xb5, 0x87, 0x1a, 0xdb, 0x90, 0x7f, 0xa4, 0xc8, 0xfe, 0x1f, 0xb2, 0x94, 0x39, 0x59, - 0x72, 0xc2, 0x2b, 0x95, 0xf9, 0xd6, 0xb5, 0x75, 0xe2, 0xff, 0x3a, 0xf4, 0x82, 0x1d, 0xf9, 0xee, - 0xcf, 0xe6, 0x9d, 0xf2, 0xfc, 0x0c, 0x76, 0x1f, 0x9a, 0x7b, 0x09, 0x7a, 0xff, 0x17, 0x59, 0x29, - 0x7b, 0x29, 0x07, 0x06, 0xeb, 0xda, 0xe6, 0xdf, 0xd5, 0xa0, 0xfe, 0xad, 0x88, 0x43, 0xf6, 0x09, - 0xb4, 0xd4, 0xa3, 0x16, 0x2b, 0x3d, 0x5e, 0xad, 0x50, 0x7e, 0x3b, 0xf7, 0xda, 0x45, 0xbb, 0x74, - 0x65, 0x02, 0x54, 0x74, 0xc4, 0x58, 0xf1, 0xe6, 0xf6, 0xc2, 0xa1, 0xbe, 0x80, 0xee, 0x20, 0x8d, - 0x85, 0x3d, 0x29, 0xb1, 0x57, 0x45, 0xb5, 0xa8, 0xbd, 0x46, 0xf2, 0xba, 0x07, 0x4d, 0x19, 0x62, - 0xe7, 0x26, 0xcc, 0x77, 0xca, 0x88, 0xf9, 0x43, 0x68, 0x0f, 0xce, 0xc3, 0xa9, 0xef, 0x0e, 0x44, - 0x7c, 0x29, 0x58, 0xe9, 0x99, 0x7a, 0xa5, 0x34, 0xb6, 0xae, 0xb1, 0x75, 0x00, 0xe9, 0xdc, 0x4f, - 0xd0, 0x52, 0x5a, 0x48, 0x3b, 0x9c, 0x4e, 0xe4, 0xa2, 0x25, 0xaf, 0x2f, 0x39, 0x4b, 0x91, 0xf6, - 0x55, 0x9c, 0x9f, 0xc1, 0xd2, 0x0e, 0x59, 0xcd, 0x51, 0xbc, 0x75, 0x1a, 0xc6, 0x29, 0x9b, 0x7f, - 0xaa, 0x5e, 0x99, 0x47, 0x58, 0xd7, 0xd8, 0x43, 0x30, 0x86, 0xf1, 0x95, 0xe4, 0xbf, 0xa1, 0x12, - 0x94, 0x62, 0xbf, 0x05, 0x5f, 0xb9, 0xf9, 0xe7, 0x75, 0x68, 0x7e, 0x13, 0xc6, 0x17, 0x22, 0xc6, - 0x5a, 0x87, 0x5a, 0x9a, 0xca, 0x8c, 0xf2, 0xf6, 0xe6, 0xa2, 0x8d, 0xde, 0x07, 0x93, 0x84, 0x32, - 0xb4, 0x93, 0x0b, 0xa9, 0x2a, 0xfa, 0xfb, 0x9f, 0x94, 0x8b, 0xac, 0x9d, 0x48, 0xaf, 0xcb, 0x52, - 0x51, 0x79, 0x0f, 0xbc, 0xd2, 0x67, 0x5c, 0x69, 0xc9, 0xc8, 0x3b, 0x40, 0xd3, 0x7c, 0xa8, 0xa1, - 0x3b, 0x1a, 0xc8, 0x2f, 0x45, 0xa6, 0xe2, 0x6f, 0x4f, 0xd2, 0xf2, 0x8b, 0xff, 0x19, 0x59, 0xd7, - 0xd8, 0x03, 0x68, 0xca, 0xc4, 0x59, 0x7e, 0x66, 0xa5, 0x66, 0x5e, 0xe9, 0x96, 0x51, 0x6a, 0xc2, - 0x47, 0xd0, 0x94, 0xf7, 0x5c, 0x4e, 0xa8, 0x84, 0x2d, 0x79, 0x6a, 0x19, 0xfa, 0xac, 0x6b, 0xec, - 0x1e, 0xb4, 0x54, 0x77, 0x92, 0x2d, 0x68, 0x55, 0xce, 0x31, 0x7f, 0x04, 0x4d, 0xe9, 0xc6, 0xe5, - 0xba, 0x15, 0x97, 0x3e, 0xc7, 0x7a, 0x1f, 0xba, 0x5c, 0x38, 0xc2, 0x2b, 0xe5, 0xd2, 0x2c, 0x93, - 0xc0, 0x82, 0xab, 0xfa, 0x05, 0x2c, 0x55, 0xf2, 0x6e, 0xd6, 0x23, 0xad, 0x2c, 0x48, 0xc5, 0x5f, - 0xb8, 0x20, 0x9f, 0x83, 0xa9, 0xd2, 0x9e, 0x53, 0xc1, 0xa8, 0x49, 0xb9, 0x20, 0x71, 0x5a, 0x29, - 0xe5, 0x3d, 0x68, 0xee, 0xdb, 0xdd, 0x7f, 0xfe, 0xfe, 0x8e, 0xf6, 0xaf, 0xdf, 0xdf, 0xd1, 0xfe, - 0xfd, 0xfb, 0x3b, 0xda, 0x2f, 0xff, 0xe3, 0xce, 0xb5, 0xd3, 0x26, 0xfd, 0x33, 0xf5, 0xb3, 0xff, - 0x0f, 0x00, 0x00, 0xff, 0xff, 0x9f, 0x89, 0xd8, 0x77, 0x0c, 0x2b, 0x00, 0x00, + // 4390 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x3a, 0x4d, 0x6f, 0x1b, 0xd7, + 0x76, 0x9a, 0xe1, 0xd7, 0xcc, 0x21, 0x29, 0xd3, 0x37, 0x8e, 0xc3, 0xc8, 0x89, 0xa5, 0x4c, 0xe2, + 0x44, 0x89, 0x63, 0xd9, 0x51, 0x5e, 0xd1, 0x24, 0x0f, 0x05, 0xaa, 0x0f, 0xda, 0x56, 0x2c, 0x51, + 0x7a, 0x43, 0xca, 0xe9, 0xcb, 0xa2, 0xc4, 0x70, 0xe6, 0x8a, 0x9a, 0xa7, 0xe1, 0xcc, 0x74, 0x66, + 0xa8, 0x52, 0x59, 0xb5, 0x28, 0xda, 0x55, 0x8b, 0x2e, 0xba, 0x79, 0xab, 0xbe, 0xae, 0xbb, 0x29, + 0xd0, 0x55, 0xd1, 0x75, 0x17, 0x45, 0x57, 0xfd, 0x05, 0x6e, 0x91, 0x76, 0x65, 0xa0, 0xab, 0x16, + 0x5d, 0x16, 0xc5, 0x39, 0xf7, 0xce, 0x17, 0x4d, 0xdb, 0xc9, 0x03, 0xde, 0x8a, 0xf7, 0x9c, 0x73, + 0xbf, 0xe6, 0x7c, 0x9f, 0x73, 0x09, 0x5a, 0x38, 0xde, 0x0a, 0xa3, 0x20, 0x09, 0x98, 0x1a, 0x8e, + 0xd7, 0x74, 0x2b, 0x74, 0x05, 0xb8, 0xf6, 0xd1, 0xc4, 0x4d, 0xce, 0x67, 0xe3, 0x2d, 0x3b, 0x98, + 0xde, 0x77, 0x26, 0x91, 0x15, 0x9e, 0xdf, 0x73, 0x83, 0xfb, 0x63, 0xcb, 0x99, 0xf0, 0xe8, 0x7e, + 0x38, 0xbe, 0x9f, 0xae, 0x5b, 0xbb, 0x57, 0x98, 0x38, 0x09, 0x26, 0xc1, 0x7d, 0x42, 0x8f, 0x67, + 0x67, 0x04, 0x11, 0x40, 0x23, 0x31, 0xdd, 0x58, 0x83, 0xea, 0xa1, 0x1b, 0x27, 0x8c, 0x41, 0x75, + 0xe6, 0x3a, 0x71, 0x57, 0xd9, 0xa8, 0x6c, 0xd6, 0x4d, 0x1a, 0x1b, 0x47, 0xa0, 0x0f, 0xad, 0xf8, + 0xe2, 0xa9, 0xe5, 0xcd, 0x38, 0xeb, 0x40, 0xe5, 0xd2, 0xf2, 0xba, 0xca, 0x86, 0xb2, 0xd9, 0x32, + 0x71, 0xc8, 0xb6, 0x40, 0xbb, 0xb4, 0xbc, 0x51, 0x72, 0x15, 0xf2, 0xae, 0xba, 0xa1, 0x6c, 0xae, + 0x6e, 0xbf, 0xb1, 0x15, 0x8e, 0xb7, 0x4e, 0x82, 0x38, 0x71, 0xfd, 0xc9, 0xd6, 0x53, 0xcb, 0x1b, + 0x5e, 0x85, 0xdc, 0x6c, 0x5c, 0x8a, 0x81, 0x71, 0x0c, 0xcd, 0x41, 0x64, 0x3f, 0x9c, 0xf9, 0x76, + 0xe2, 0x06, 0x3e, 0x9e, 0xe8, 0x5b, 0x53, 0x4e, 0x3b, 0xea, 0x26, 0x8d, 0x11, 0x67, 0x45, 0x93, + 0xb8, 0x5b, 0xd9, 0xa8, 0x20, 0x0e, 0xc7, 0xac, 0x0b, 0x0d, 0x37, 0xde, 0x0b, 0x66, 0x7e, 0xd2, + 0xad, 0x6e, 0x28, 0x9b, 0x9a, 0x99, 0x82, 0xc6, 0xaf, 0x2a, 0x50, 0xfb, 0xd9, 0x8c, 0x47, 0x57, + 0xb4, 0x2e, 0x49, 0xa2, 0x74, 0x2f, 0x1c, 0xb3, 0x1b, 0x50, 0xf3, 0x2c, 0x7f, 0x12, 0x77, 0x55, + 0xda, 0x4c, 0x00, 0xec, 0x16, 0xe8, 0xd6, 0x59, 0xc2, 0xa3, 0xd1, 0xcc, 0x75, 0xba, 0x95, 0x0d, + 0x65, 0xb3, 0x6e, 0x6a, 0x84, 0x38, 0x75, 0x1d, 0xf6, 0x36, 0x68, 0x4e, 0x30, 0xb2, 0x8b, 0x67, + 0x39, 0x01, 0x9d, 0xc5, 0xde, 0x07, 0x6d, 0xe6, 0x3a, 0x23, 0xcf, 0x8d, 0x93, 0x6e, 0x6d, 0x43, + 0xd9, 0x6c, 0x6e, 0x6b, 0xf8, 0xb1, 0xc8, 0x3b, 0xb3, 0x31, 0x73, 0x1d, 0x62, 0xe2, 0x27, 0xa0, + 0xc5, 0x91, 0x3d, 0x3a, 0x9b, 0xf9, 0x76, 0xb7, 0x4e, 0x93, 0xae, 0xe1, 0xa4, 0xc2, 0x57, 0x9b, + 0x8d, 0x58, 0x00, 0xf8, 0x59, 0x11, 0xbf, 0xe4, 0x51, 0xcc, 0xbb, 0x0d, 0x71, 0x94, 0x04, 0xd9, + 0x03, 0x68, 0x9e, 0x59, 0x36, 0x4f, 0x46, 0xa1, 0x15, 0x59, 0xd3, 0xae, 0x96, 0x6f, 0xf4, 0x10, + 0xd1, 0x27, 0x88, 0x8d, 0x4d, 0x38, 0xcb, 0x00, 0xf6, 0x39, 0xb4, 0x09, 0x8a, 0x47, 0x67, 0xae, + 0x97, 0xf0, 0xa8, 0xab, 0xd3, 0x9a, 0x55, 0x5a, 0x43, 0x98, 0x61, 0xc4, 0xb9, 0xd9, 0x12, 0x93, + 0x04, 0x86, 0xbd, 0x0b, 0xc0, 0xe7, 0xa1, 0xe5, 0x3b, 0x23, 0xcb, 0xf3, 0xba, 0x40, 0x77, 0xd0, + 0x05, 0x66, 0xc7, 0xf3, 0xd8, 0x5b, 0x78, 0x3f, 0xcb, 0x19, 0x25, 0x71, 0xb7, 0xbd, 0xa1, 0x6c, + 0x56, 0xcd, 0x3a, 0x82, 0xc3, 0x18, 0xf9, 0x6a, 0x5b, 0xf6, 0x39, 0xef, 0xae, 0x6e, 0x28, 0x9b, + 0x35, 0x53, 0x00, 0x88, 0x3d, 0x73, 0xa3, 0x38, 0xe9, 0x5e, 0x13, 0x58, 0x02, 0x8c, 0x6d, 0xd0, + 0x49, 0x7b, 0x88, 0x3b, 0x77, 0xa0, 0x7e, 0x89, 0x80, 0x50, 0xb2, 0xe6, 0x76, 0x1b, 0xaf, 0x97, + 0x29, 0x98, 0x29, 0x89, 0xc6, 0x6d, 0xd0, 0x0e, 0x2d, 0x7f, 0x92, 0x6a, 0x25, 0x8a, 0x8d, 0x16, + 0xe8, 0x26, 0x8d, 0x8d, 0x5f, 0xaa, 0x50, 0x37, 0x79, 0x3c, 0xf3, 0x12, 0xf6, 0x11, 0x00, 0x0a, + 0x65, 0x6a, 0x25, 0x91, 0x3b, 0x97, 0xbb, 0xe6, 0x62, 0xd1, 0x67, 0xae, 0x73, 0x44, 0x24, 0xf6, + 0x00, 0x5a, 0xb4, 0x7b, 0x3a, 0x55, 0xcd, 0x2f, 0x90, 0xdd, 0xcf, 0x6c, 0xd2, 0x14, 0xb9, 0xe2, + 0x26, 0xd4, 0x49, 0x0f, 0x84, 0x2e, 0xb6, 0x4d, 0x09, 0xb1, 0x3b, 0xb0, 0xea, 0xfa, 0x09, 0xca, + 0xc9, 0x4e, 0x46, 0x0e, 0x8f, 0x53, 0x45, 0x69, 0x67, 0xd8, 0x7d, 0x1e, 0x27, 0xec, 0x33, 0x10, + 0xcc, 0x4e, 0x0f, 0xac, 0xd1, 0x81, 0xab, 0x99, 0x10, 0x63, 0x71, 0x22, 0xcd, 0x91, 0x27, 0xde, + 0x83, 0x26, 0x7e, 0x5f, 0xba, 0xa2, 0x4e, 0x2b, 0x5a, 0xf4, 0x35, 0x92, 0x1d, 0x26, 0xe0, 0x04, + 0x39, 0x1d, 0x59, 0x83, 0xca, 0x28, 0x94, 0x87, 0xc6, 0x46, 0x0f, 0x6a, 0xc7, 0x91, 0xc3, 0xa3, + 0xa5, 0xf6, 0xc0, 0xa0, 0xea, 0xf0, 0xd8, 0x26, 0x53, 0xd5, 0x4c, 0x1a, 0xe7, 0x36, 0x52, 0x29, + 0xd8, 0x88, 0xf1, 0xd7, 0x0a, 0x34, 0x07, 0x41, 0x94, 0x1c, 0xf1, 0x38, 0xb6, 0x26, 0x9c, 0xad, + 0x43, 0x2d, 0xc0, 0x6d, 0x25, 0x87, 0x75, 0xbc, 0x13, 0x9d, 0x63, 0x0a, 0xfc, 0x82, 0x1c, 0xd4, + 0x97, 0xcb, 0x01, 0x75, 0x87, 0xac, 0xab, 0x22, 0x75, 0x87, 0x6c, 0xeb, 0x26, 0xd4, 0x83, 0xb3, + 0xb3, 0x98, 0x0b, 0x5e, 0xd6, 0x4c, 0x09, 0xbd, 0x54, 0x05, 0x8d, 0xdf, 0x02, 0xc0, 0xfb, 0xfd, + 0x48, 0x2d, 0x30, 0xce, 0xa1, 0x69, 0x5a, 0x67, 0xc9, 0x5e, 0xe0, 0x27, 0x7c, 0x9e, 0xb0, 0x55, + 0x50, 0x5d, 0x87, 0x58, 0x54, 0x37, 0x55, 0xd7, 0xc1, 0xcb, 0x4d, 0xa2, 0x60, 0x16, 0x12, 0x87, + 0xda, 0xa6, 0x00, 0x88, 0x95, 0x8e, 0x13, 0xd1, 0x8d, 0x91, 0x95, 0x8e, 0x13, 0xb1, 0x75, 0x68, + 0xc6, 0xbe, 0x15, 0xc6, 0xe7, 0x41, 0x82, 0x97, 0xab, 0xd2, 0xe5, 0x20, 0x45, 0x0d, 0x63, 0xe3, + 0xbf, 0x54, 0xa8, 0x1f, 0xf1, 0xe9, 0x98, 0x47, 0x2f, 0x9c, 0xf2, 0x00, 0x34, 0xda, 0x78, 0xe4, + 0x3a, 0xe2, 0xa0, 0xdd, 0x37, 0x9f, 0x3f, 0x5b, 0xbf, 0x4e, 0xb8, 0x03, 0xe7, 0xd3, 0x60, 0xea, + 0x26, 0x7c, 0x1a, 0x26, 0x57, 0x66, 0x43, 0xa2, 0x96, 0xde, 0xe0, 0x26, 0xd4, 0x3d, 0x6e, 0xa1, + 0x4c, 0x84, 0xfa, 0x49, 0x88, 0xdd, 0x83, 0x86, 0x35, 0x1d, 0x39, 0xdc, 0x72, 0xc8, 0x4b, 0x69, + 0xbb, 0x37, 0x9e, 0x3f, 0x5b, 0xef, 0x58, 0xd3, 0x7d, 0x6e, 0x15, 0xf7, 0xae, 0x0b, 0x0c, 0xfb, + 0x12, 0x75, 0x2e, 0x4e, 0x46, 0xb3, 0xd0, 0xb1, 0x12, 0x4e, 0x3e, 0xab, 0xba, 0xdb, 0x7d, 0xfe, + 0x6c, 0xfd, 0x06, 0xa2, 0x4f, 0x09, 0x5b, 0x58, 0x06, 0x39, 0x96, 0x1d, 0xc0, 0x75, 0xdb, 0x9b, + 0xc5, 0xe8, 0x4a, 0x5d, 0xff, 0x2c, 0x18, 0x05, 0xbe, 0x77, 0x45, 0x62, 0xd2, 0x76, 0xdf, 0x7d, + 0xfe, 0x6c, 0xfd, 0x6d, 0x49, 0x3c, 0xf0, 0xcf, 0x82, 0x63, 0xdf, 0xbb, 0x2a, 0xec, 0x72, 0x6d, + 0x81, 0xc4, 0x7e, 0x17, 0x56, 0xcf, 0x82, 0xc8, 0xe6, 0xa3, 0x8c, 0x31, 0xab, 0xb4, 0xcf, 0xda, + 0xf3, 0x67, 0xeb, 0x37, 0x89, 0xf2, 0xe8, 0x05, 0xee, 0xb4, 0x8a, 0x78, 0xe3, 0x1f, 0x54, 0xa8, + 0xd1, 0x98, 0x3d, 0x80, 0xc6, 0x94, 0x18, 0x9f, 0x7a, 0x99, 0x9b, 0xa8, 0x09, 0x44, 0xdb, 0x12, + 0x12, 0x89, 0x7b, 0x7e, 0x12, 0x5d, 0x99, 0xe9, 0x34, 0x5c, 0x91, 0x58, 0x63, 0x8f, 0x27, 0xb1, + 0xd4, 0xdc, 0xc2, 0x8a, 0xa1, 0x20, 0xc8, 0x15, 0x72, 0xda, 0xa2, 0xf8, 0x2b, 0x8b, 0xe2, 0x67, + 0x6b, 0xa0, 0xd9, 0xe7, 0xdc, 0xbe, 0x88, 0x67, 0x53, 0xa9, 0x1c, 0x19, 0xbc, 0xf6, 0x10, 0x5a, + 0xc5, 0x7b, 0x60, 0x5c, 0xbd, 0xe0, 0x57, 0xa4, 0x20, 0x55, 0x13, 0x87, 0x6c, 0x03, 0x6a, 0xe4, + 0x89, 0x48, 0x3d, 0x9a, 0xdb, 0x80, 0xd7, 0x11, 0x4b, 0x4c, 0x41, 0xf8, 0x4a, 0xfd, 0x42, 0xc1, + 0x7d, 0x8a, 0xb7, 0x2b, 0xee, 0xa3, 0xbf, 0x7c, 0x1f, 0xb1, 0xa4, 0xb0, 0x8f, 0x11, 0x40, 0xe3, + 0xd0, 0xb5, 0xb9, 0x1f, 0x53, 0xf4, 0x9d, 0xc5, 0x3c, 0xf3, 0x1a, 0x38, 0xc6, 0x4f, 0x99, 0x5a, + 0xf3, 0x7e, 0xe0, 0xf0, 0x98, 0xf6, 0xa9, 0x9a, 0x19, 0x8c, 0x34, 0x3e, 0x0f, 0xdd, 0xe8, 0x6a, + 0x28, 0x98, 0x50, 0x31, 0x33, 0x18, 0xc3, 0x1b, 0xf7, 0xf1, 0x30, 0x27, 0x8d, 0xa4, 0x12, 0x34, + 0xfe, 0xa6, 0x02, 0xad, 0x6f, 0x79, 0x14, 0x9c, 0x44, 0x41, 0x18, 0xc4, 0x96, 0xc7, 0x76, 0xca, + 0xec, 0x14, 0x62, 0xdb, 0xc0, 0xdb, 0x16, 0xa7, 0x6d, 0x0d, 0x32, 0xfe, 0x0a, 0x71, 0x14, 0x19, + 0x6e, 0x40, 0x5d, 0x88, 0x73, 0x09, 0xcf, 0x24, 0x05, 0xe7, 0x08, 0x01, 0xd2, 0x5d, 0xcb, 0xfc, + 0x90, 0x14, 0x76, 0x1b, 0x60, 0x6a, 0xcd, 0x0f, 0xb9, 0x15, 0xf3, 0x03, 0x27, 0xb5, 0xeb, 0x1c, + 0x23, 0xb9, 0x31, 0x9c, 0xfb, 0xc3, 0x98, 0xec, 0x4b, 0x70, 0x83, 0x60, 0xf6, 0x0e, 0xe8, 0x53, + 0x6b, 0x8e, 0x0e, 0xe6, 0xc0, 0x11, 0x96, 0x64, 0xe6, 0x08, 0xf6, 0x1e, 0x54, 0x92, 0xb9, 0x4f, + 0xde, 0x1a, 0x83, 0x39, 0x26, 0x76, 0xc3, 0xb9, 0x2f, 0x5d, 0x91, 0x89, 0xb4, 0x54, 0x82, 0x5a, + 0x2e, 0xc1, 0x0e, 0x54, 0x6c, 0xd7, 0xa1, 0x68, 0xae, 0x9b, 0x38, 0x64, 0x77, 0xa0, 0xe1, 0x09, + 0x69, 0x51, 0xc4, 0x6e, 0x6e, 0x37, 0x85, 0xa3, 0x23, 0x94, 0x99, 0xd2, 0xd6, 0x7e, 0x07, 0xae, + 0x2d, 0xb0, 0xab, 0xa8, 0x1f, 0x6d, 0xb1, 0xfb, 0x8d, 0xa2, 0x7e, 0x54, 0x8b, 0x3a, 0xf1, 0x6f, + 0x15, 0xb8, 0x26, 0x95, 0xf4, 0xdc, 0x0d, 0x07, 0x09, 0xda, 0x7b, 0x17, 0x1a, 0xe4, 0xad, 0xa5, + 0x7e, 0x54, 0xcd, 0x14, 0x64, 0xbf, 0x0d, 0x75, 0x32, 0xdc, 0xd4, 0x7e, 0xd6, 0x73, 0xe6, 0x67, + 0xcb, 0x85, 0x3d, 0x49, 0xc9, 0xc9, 0xe9, 0xec, 0x27, 0x50, 0xfb, 0x8e, 0x47, 0x81, 0x88, 0x3e, + 0xcd, 0xed, 0xdb, 0xcb, 0xd6, 0xa1, 0x0a, 0xc8, 0x65, 0x62, 0xf2, 0x6f, 0x50, 0x46, 0x1f, 0x60, + 0xbc, 0x99, 0x06, 0x97, 0xdc, 0xe9, 0x36, 0xe8, 0x46, 0x45, 0x35, 0x4a, 0x49, 0xa9, 0x50, 0xb4, + 0xa5, 0x42, 0xd1, 0x5f, 0x21, 0x94, 0x7d, 0x68, 0x16, 0xb8, 0xb0, 0x44, 0x20, 0xeb, 0x65, 0x83, + 0xd5, 0x33, 0x3f, 0x54, 0xb4, 0xfb, 0x7d, 0x80, 0x9c, 0x27, 0xbf, 0xae, 0xf7, 0x30, 0xfe, 0x58, + 0x81, 0x6b, 0x7b, 0x81, 0xef, 0x73, 0xca, 0x4a, 0x85, 0x84, 0x73, 0x23, 0x52, 0x5e, 0x6a, 0x44, + 0x1f, 0x43, 0x2d, 0xc6, 0xc9, 0x72, 0xf7, 0x37, 0x96, 0x88, 0xcc, 0x14, 0x33, 0xd0, 0x4b, 0x4e, + 0xad, 0xf9, 0x28, 0xe4, 0xbe, 0xe3, 0xfa, 0x93, 0xd4, 0x4b, 0x4e, 0xad, 0xf9, 0x89, 0xc0, 0x18, + 0xff, 0xa3, 0x00, 0x3c, 0xe6, 0x96, 0x97, 0x9c, 0x63, 0x24, 0x40, 0xb9, 0xb9, 0x7e, 0x9c, 0x58, + 0xbe, 0x9d, 0xd6, 0x04, 0x19, 0x8c, 0xca, 0x87, 0x61, 0x8f, 0xc7, 0xc2, 0x09, 0xe9, 0x66, 0x0a, + 0x62, 0x20, 0xc4, 0xe3, 0x66, 0xb1, 0x0c, 0x8f, 0x12, 0xca, 0x83, 0x79, 0x95, 0xd0, 0x32, 0x98, + 0x77, 0xa1, 0x81, 0x39, 0xb6, 0x1b, 0xf8, 0xa4, 0x1a, 0xba, 0x99, 0x82, 0xb8, 0xcf, 0x2c, 0x4c, + 0xdc, 0xa9, 0x08, 0x82, 0x15, 0x53, 0x42, 0x78, 0x2b, 0x0c, 0x7a, 0x3d, 0xfb, 0x3c, 0x20, 0xe3, + 0xad, 0x98, 0x19, 0x8c, 0xbb, 0x05, 0xfe, 0x24, 0xc0, 0xaf, 0xd3, 0x28, 0x7f, 0x4a, 0x41, 0xf1, + 0x2d, 0x0e, 0x9f, 0x23, 0x49, 0x27, 0x52, 0x06, 0x1b, 0x7f, 0xa4, 0x42, 0x5d, 0xb8, 0x9d, 0x52, + 0x2e, 0xa0, 0xfc, 0xa0, 0x5c, 0xe0, 0x1d, 0xd0, 0xc3, 0x88, 0x3b, 0xae, 0x9d, 0xca, 0x40, 0x37, + 0x73, 0x04, 0x25, 0xe1, 0x18, 0x16, 0x89, 0x17, 0x9a, 0x29, 0x00, 0xc4, 0xc6, 0xa1, 0x65, 0x73, + 0x79, 0x7f, 0x01, 0xe0, 0x07, 0x0b, 0x8d, 0x26, 0x4d, 0xd6, 0x4c, 0x09, 0xb1, 0xcf, 0x41, 0xa7, + 0xa4, 0x8b, 0xe2, 0xb9, 0x4e, 0x71, 0xf8, 0xe6, 0xf3, 0x67, 0xeb, 0x0c, 0x91, 0x0b, 0x81, 0x5c, + 0x4b, 0x71, 0x98, 0x76, 0xe0, 0x62, 0x74, 0xdf, 0x40, 0x39, 0x04, 0xa5, 0x1d, 0x88, 0x1a, 0xc6, + 0xc5, 0xb4, 0x43, 0x60, 0x8c, 0xbf, 0x55, 0xa1, 0xb5, 0xef, 0x46, 0xdc, 0x4e, 0xb8, 0xd3, 0x73, + 0x26, 0x74, 0x19, 0xee, 0x27, 0x6e, 0x72, 0x25, 0x13, 0x25, 0x09, 0x65, 0x79, 0xac, 0x5a, 0xae, + 0xeb, 0x84, 0x82, 0x57, 0xa8, 0x14, 0x15, 0x00, 0xdb, 0x06, 0x10, 0x19, 0x3e, 0x95, 0xa3, 0xd5, + 0x97, 0x97, 0xa3, 0x3a, 0x4d, 0xc3, 0x21, 0x96, 0x7b, 0x62, 0x8d, 0x2b, 0xb2, 0xa5, 0x3a, 0xd5, + 0xaa, 0x33, 0x74, 0x22, 0x94, 0x18, 0x8f, 0xb9, 0x47, 0xda, 0x40, 0x89, 0xf1, 0x98, 0x7b, 0x59, + 0x39, 0xd2, 0x10, 0xd7, 0xc1, 0x31, 0x7b, 0x1f, 0xd4, 0x20, 0x24, 0x1e, 0xca, 0x03, 0x8b, 0x1f, + 0xb6, 0x75, 0x1c, 0x9a, 0x6a, 0x10, 0xa2, 0x69, 0x89, 0xda, 0x8b, 0xb4, 0x01, 0x4d, 0x0b, 0x03, + 0x00, 0x55, 0x02, 0xa6, 0xa4, 0x18, 0x37, 0x41, 0x3d, 0x0e, 0x59, 0x03, 0x2a, 0x83, 0xde, 0xb0, + 0xb3, 0x82, 0x83, 0xfd, 0xde, 0x61, 0x47, 0x31, 0xbe, 0x57, 0x41, 0x3f, 0x9a, 0x25, 0x16, 0x1a, + 0x6a, 0x8c, 0x77, 0x2e, 0xab, 0x4c, 0xae, 0x1b, 0x6f, 0x83, 0x16, 0x27, 0x56, 0x44, 0x41, 0x54, + 0xb8, 0xf4, 0x06, 0xc1, 0xc3, 0x98, 0x7d, 0x08, 0x35, 0xee, 0x4c, 0x78, 0xea, 0x69, 0x3b, 0x8b, + 0xf7, 0x34, 0x05, 0x99, 0x6d, 0x42, 0x3d, 0xb6, 0xcf, 0xf9, 0xd4, 0xea, 0x56, 0xf3, 0x89, 0x03, + 0xc2, 0x88, 0xb4, 0xcf, 0x94, 0x74, 0xf6, 0x01, 0xd4, 0x90, 0xd3, 0xb1, 0xac, 0x53, 0xa8, 0xb2, + 0x41, 0xa6, 0xca, 0x69, 0x82, 0x88, 0x7a, 0xe1, 0x44, 0x41, 0x38, 0x0a, 0x42, 0xe2, 0xd9, 0xea, + 0xf6, 0x0d, 0x72, 0x18, 0xe9, 0xd7, 0x6c, 0xed, 0x47, 0x41, 0x78, 0x1c, 0x9a, 0x75, 0x87, 0x7e, + 0xb1, 0x24, 0xa5, 0xe9, 0x42, 0xbe, 0xc2, 0xc3, 0xea, 0x88, 0x11, 0x2d, 0x88, 0x4d, 0xd0, 0xa6, + 0x3c, 0xb1, 0x1c, 0x2b, 0xb1, 0xa4, 0xa3, 0x6d, 0x09, 0xff, 0x23, 0x70, 0x66, 0x46, 0x35, 0xee, + 0x43, 0x5d, 0x6c, 0xcd, 0x34, 0xa8, 0xf6, 0x8f, 0xfb, 0x3d, 0xc1, 0xd0, 0x9d, 0xc3, 0xc3, 0x8e, + 0x82, 0xa8, 0xfd, 0x9d, 0xe1, 0x4e, 0x47, 0xc5, 0xd1, 0xf0, 0xe7, 0x27, 0xbd, 0x4e, 0xc5, 0xf8, + 0x17, 0x05, 0xb4, 0x74, 0x1f, 0xf6, 0x15, 0x00, 0xda, 0xd4, 0xe8, 0xdc, 0xf5, 0xb3, 0x7c, 0xe4, + 0x56, 0xf1, 0xa4, 0xad, 0x93, 0x88, 0x3b, 0x8f, 0x91, 0x2a, 0x22, 0x13, 0x99, 0x20, 0xc1, 0x6b, + 0x03, 0x58, 0x2d, 0x13, 0x97, 0x24, 0x66, 0x77, 0x8b, 0x2e, 0x7a, 0x75, 0xfb, 0xcd, 0xd2, 0xd6, + 0xb8, 0x92, 0x14, 0xb5, 0xe0, 0xad, 0xef, 0x81, 0x96, 0xa2, 0x59, 0x13, 0x1a, 0xfb, 0xbd, 0x87, + 0x3b, 0xa7, 0x87, 0xa8, 0x24, 0x00, 0xf5, 0xc1, 0x41, 0xff, 0xd1, 0x61, 0x4f, 0x7c, 0xd6, 0xe1, + 0xc1, 0x60, 0xd8, 0x51, 0x8d, 0xbf, 0x52, 0x40, 0x4b, 0xc3, 0x3f, 0xfb, 0x18, 0xe3, 0x36, 0x65, + 0x19, 0xd2, 0xad, 0x53, 0x27, 0xa1, 0x50, 0x07, 0x99, 0x29, 0x1d, 0x95, 0x9e, 0xbc, 0x54, 0x9a, + 0x10, 0x10, 0x50, 0xac, 0xc2, 0x2a, 0xa5, 0x46, 0x00, 0x16, 0x94, 0x81, 0xcf, 0x65, 0x7e, 0x47, + 0x63, 0xd2, 0x41, 0xd7, 0xb7, 0xc9, 0x13, 0xd4, 0xa4, 0x0e, 0x22, 0x3c, 0x8c, 0x8d, 0x5f, 0xa9, + 0xb0, 0x6a, 0xf2, 0x38, 0x09, 0x22, 0x6e, 0xf2, 0x3f, 0x98, 0x61, 0x95, 0xfc, 0x0a, 0x65, 0x7e, + 0x17, 0x20, 0x12, 0x93, 0x73, 0x75, 0xd6, 0x25, 0x46, 0x64, 0xd8, 0x5e, 0x60, 0x93, 0x16, 0x49, + 0xc7, 0x9f, 0xc1, 0xec, 0x16, 0xe8, 0x63, 0xcb, 0xbe, 0x10, 0xdb, 0x0a, 0xf7, 0xaf, 0x09, 0x84, + 0xd8, 0xd7, 0xb2, 0x6d, 0x1e, 0xc7, 0x23, 0x14, 0x8a, 0x08, 0x02, 0xba, 0xc0, 0x3c, 0xe1, 0x57, + 0x48, 0x8e, 0xb9, 0x1d, 0xf1, 0x84, 0xc8, 0xc2, 0xf8, 0x75, 0x81, 0x41, 0xf2, 0xfb, 0xd0, 0x8e, + 0x79, 0x8c, 0x01, 0x63, 0x94, 0x04, 0x17, 0xdc, 0x97, 0x9e, 0xa0, 0x25, 0x91, 0x43, 0xc4, 0xa1, + 0x8f, 0xb6, 0xfc, 0xc0, 0xbf, 0x9a, 0x06, 0xb3, 0x58, 0x3a, 0xd7, 0x1c, 0x81, 0xdf, 0x7c, 0xc1, + 0xaf, 0x46, 0x67, 0xae, 0xc7, 0x65, 0x62, 0xd7, 0xb8, 0xe0, 0x57, 0x0f, 0x5d, 0x8f, 0x1b, 0xff, + 0xa7, 0x82, 0x96, 0x65, 0xc5, 0x77, 0x41, 0x9f, 0xa6, 0x76, 0x22, 0xa3, 0x6d, 0xbb, 0x64, 0x3c, + 0x66, 0x4e, 0x67, 0xef, 0x82, 0x7a, 0x71, 0x29, 0x6d, 0xb6, 0xbd, 0x25, 0xba, 0x82, 0xe1, 0x78, + 0x7b, 0xeb, 0xc9, 0x53, 0x53, 0xbd, 0xb8, 0xcc, 0xa3, 0x76, 0xed, 0xb5, 0x51, 0xfb, 0x23, 0xb8, + 0x66, 0x7b, 0xdc, 0xf2, 0x47, 0x79, 0x98, 0x11, 0x5c, 0x58, 0x25, 0xf4, 0x49, 0x16, 0x6b, 0xa4, + 0x5a, 0x37, 0x72, 0xb5, 0xbe, 0x03, 0x35, 0x87, 0x7b, 0x89, 0x55, 0xec, 0x58, 0x1d, 0x47, 0x96, + 0xed, 0xf1, 0x7d, 0x44, 0x9b, 0x82, 0x8a, 0x56, 0x9c, 0x66, 0xee, 0x45, 0x2b, 0x4e, 0x15, 0xd6, + 0xcc, 0xa8, 0xb9, 0x3e, 0x42, 0x51, 0x1f, 0xef, 0xc2, 0x75, 0x3e, 0x0f, 0xc9, 0x75, 0x8d, 0xb2, + 0x2a, 0xab, 0x49, 0x33, 0x3a, 0x29, 0x61, 0x4f, 0xe2, 0xd9, 0xa7, 0xa8, 0xbc, 0xa4, 0x34, 0xdd, + 0x16, 0x9d, 0xc5, 0x48, 0xfb, 0x4b, 0x6a, 0x68, 0xa6, 0x53, 0x8c, 0x2f, 0xa0, 0xf2, 0xe4, 0xe9, + 0x40, 0x72, 0x53, 0x79, 0x19, 0x37, 0x53, 0xbd, 0x57, 0x73, 0xbd, 0x37, 0xfe, 0xb7, 0x02, 0x0d, + 0x19, 0x69, 0x90, 0x33, 0xb3, 0xac, 0xe4, 0xc7, 0x61, 0x39, 0xd3, 0xce, 0x42, 0x56, 0xb1, 0x7f, + 0x5a, 0x79, 0x7d, 0xff, 0x94, 0x7d, 0x05, 0xad, 0x50, 0xd0, 0x8a, 0x41, 0xee, 0xad, 0xe2, 0x1a, + 0xf9, 0x4b, 0xeb, 0x9a, 0x61, 0x0e, 0xa0, 0xd6, 0x51, 0x73, 0x29, 0xb1, 0x26, 0xa4, 0x04, 0x2d, + 0xb3, 0x81, 0xf0, 0xd0, 0x9a, 0xbc, 0x24, 0xd4, 0xfd, 0x80, 0x88, 0xc5, 0x56, 0x29, 0xf4, 0xb5, + 0xc8, 0x70, 0x31, 0xca, 0x15, 0x03, 0x50, 0xbb, 0x1c, 0x80, 0x6e, 0x81, 0x6e, 0x07, 0xd3, 0xa9, + 0x4b, 0xb4, 0x55, 0x59, 0x12, 0x13, 0x62, 0x18, 0x1b, 0x7f, 0xa6, 0x40, 0x43, 0x7e, 0xed, 0x0b, + 0xee, 0x6d, 0xf7, 0xa0, 0xbf, 0x63, 0xfe, 0xbc, 0xa3, 0xa0, 0xfb, 0x3e, 0xe8, 0x0f, 0x3b, 0x2a, + 0xd3, 0xa1, 0xf6, 0xf0, 0xf0, 0x78, 0x67, 0xd8, 0xa9, 0xa0, 0xcb, 0xdb, 0x3d, 0x3e, 0x3e, 0xec, + 0x54, 0x59, 0x0b, 0xb4, 0xfd, 0x9d, 0x61, 0x6f, 0x78, 0x70, 0xd4, 0xeb, 0xd4, 0x70, 0xee, 0xa3, + 0xde, 0x71, 0xa7, 0x8e, 0x83, 0xd3, 0x83, 0xfd, 0x4e, 0x03, 0xe9, 0x27, 0x3b, 0x83, 0xc1, 0x37, + 0xc7, 0xe6, 0x7e, 0x47, 0x23, 0xb7, 0x39, 0x34, 0x0f, 0xfa, 0x8f, 0x3a, 0x3a, 0x8e, 0x8f, 0x77, + 0xbf, 0xee, 0xed, 0x0d, 0x3b, 0x60, 0x7c, 0x06, 0xcd, 0x02, 0x07, 0x71, 0xb5, 0xd9, 0x7b, 0xd8, + 0x59, 0xc1, 0x23, 0x9f, 0xee, 0x1c, 0x9e, 0xa2, 0x97, 0x5d, 0x05, 0xa0, 0xe1, 0xe8, 0x70, 0xa7, + 0xff, 0xa8, 0xa3, 0x1a, 0x3f, 0x03, 0xed, 0xd4, 0x75, 0x76, 0xbd, 0xc0, 0xbe, 0x40, 0xc5, 0x18, + 0x5b, 0x31, 0x97, 0xd9, 0x38, 0x8d, 0x31, 0xb3, 0x21, 0xb5, 0x8f, 0xa5, 0xec, 0x25, 0x84, 0xbc, + 0xf2, 0x67, 0xd3, 0x11, 0xf5, 0xdc, 0x2b, 0xc2, 0xf5, 0xf9, 0xb3, 0xe9, 0xa9, 0xeb, 0xc4, 0x46, + 0x1f, 0x1a, 0xa7, 0xae, 0x73, 0x62, 0xd9, 0x17, 0xe8, 0x8e, 0xc6, 0xb8, 0xf5, 0x28, 0x76, 0xbf, + 0xe3, 0xd2, 0x45, 0xea, 0x84, 0x19, 0xb8, 0xdf, 0x71, 0xf6, 0x01, 0xd4, 0x09, 0x48, 0x2b, 0x2f, + 0x32, 0xa4, 0xf4, 0x3a, 0xa6, 0xa4, 0x19, 0x7f, 0xae, 0x64, 0x9f, 0x45, 0x4d, 0xd5, 0x75, 0xa8, + 0x86, 0x96, 0x7d, 0x21, 0xc3, 0x41, 0x53, 0xae, 0xc1, 0xf3, 0x4c, 0x22, 0xb0, 0x8f, 0x40, 0x93, + 0xba, 0x93, 0x6e, 0xdc, 0x2c, 0x28, 0x99, 0x99, 0x11, 0xcb, 0x52, 0xad, 0x94, 0xa5, 0x4a, 0x99, + 0x79, 0xe8, 0xb9, 0xd4, 0x1f, 0xab, 0x60, 0xd8, 0x10, 0x90, 0xf1, 0x13, 0x80, 0xbc, 0x8f, 0xbd, + 0x24, 0x3a, 0xde, 0x80, 0x9a, 0xe5, 0xb9, 0x56, 0x9a, 0xe9, 0x0b, 0xc0, 0xe8, 0x43, 0xb3, 0xd0, + 0xfd, 0x46, 0xf6, 0x59, 0x9e, 0x87, 0x4e, 0x3a, 0xa6, 0xb5, 0x9a, 0xd9, 0xb0, 0x3c, 0xef, 0x09, + 0xbf, 0x8a, 0x31, 0x33, 0x11, 0x8d, 0x73, 0x75, 0xa1, 0xe7, 0x4a, 0x4b, 0x4d, 0x41, 0x34, 0x3e, + 0x85, 0xba, 0x68, 0xc4, 0x16, 0x34, 0x5d, 0x79, 0x69, 0x6e, 0xf6, 0xa5, 0xbc, 0x33, 0xb5, 0x6d, + 0xd9, 0x5d, 0xd9, 0xa0, 0x8f, 0xc5, 0x73, 0x80, 0x92, 0xd7, 0x8a, 0x62, 0x92, 0xec, 0xcd, 0xd3, + 0x64, 0x63, 0x1f, 0xb4, 0x57, 0x3e, 0x79, 0x48, 0x06, 0xa8, 0x39, 0x03, 0x96, 0x3c, 0x82, 0x18, + 0xbf, 0x00, 0xc8, 0x1b, 0xf9, 0xd2, 0xf0, 0xc4, 0x2e, 0x68, 0x78, 0x9f, 0x80, 0x66, 0x9f, 0xbb, + 0x9e, 0x13, 0x71, 0xbf, 0xf4, 0xd5, 0x79, 0xeb, 0x3f, 0xa3, 0xb3, 0x0d, 0xa8, 0xd2, 0xfb, 0x44, + 0x25, 0x77, 0xbd, 0xd9, 0xe3, 0x04, 0x51, 0x8c, 0x39, 0xb4, 0x45, 0xca, 0xf7, 0x03, 0xc2, 0xf4, + 0x6d, 0x91, 0x2a, 0x51, 0x48, 0x48, 0x5f, 0x5a, 0x0a, 0x18, 0x54, 0x82, 0x33, 0x97, 0x7b, 0x4e, + 0xfa, 0x35, 0x12, 0x42, 0x21, 0x8b, 0xf4, 0xb1, 0x2a, 0x1a, 0xcf, 0x04, 0x18, 0x7f, 0xa2, 0x02, + 0x88, 0xa3, 0xfb, 0x81, 0xc3, 0xcb, 0xc5, 0x8e, 0xb2, 0x58, 0xec, 0x30, 0xa8, 0x66, 0x4f, 0x4f, + 0xba, 0x49, 0xe3, 0x3c, 0x62, 0xc8, 0x02, 0x48, 0x44, 0x8c, 0x77, 0x40, 0xa7, 0x68, 0xed, 0x7e, + 0x47, 0xfd, 0x52, 0x3c, 0x30, 0x47, 0x14, 0x1f, 0x62, 0x6a, 0xe5, 0x87, 0x98, 0xac, 0x5b, 0x5d, + 0x17, 0xbb, 0x89, 0x6e, 0xf5, 0x92, 0xc6, 0xbb, 0xa8, 0x1e, 0x63, 0x1e, 0x25, 0x69, 0x31, 0x25, + 0xa0, 0xac, 0x60, 0xd0, 0xe5, 0x5c, 0x2c, 0x18, 0xd6, 0xa1, 0xe9, 0x07, 0x23, 0x3b, 0xf0, 0xcf, + 0x3c, 0xd7, 0x4e, 0xe4, 0xc3, 0x0b, 0xf8, 0xc1, 0x9e, 0xc4, 0x18, 0x5f, 0x41, 0x2b, 0xe5, 0x3f, + 0xf5, 0xb7, 0x3f, 0xc9, 0x92, 0x72, 0x25, 0x97, 0x6d, 0xce, 0xa6, 0x5d, 0xb5, 0xab, 0xa4, 0x69, + 0xb9, 0xf1, 0xdf, 0x95, 0x74, 0xb1, 0x6c, 0xd3, 0xbe, 0x9a, 0x87, 0xe5, 0xaa, 0x49, 0xfd, 0x41, + 0x55, 0xd3, 0x17, 0xa0, 0x3b, 0x54, 0x3a, 0xb8, 0x97, 0x69, 0xdc, 0x5a, 0x5b, 0x2c, 0x13, 0x64, + 0x71, 0xe1, 0x5e, 0x72, 0x33, 0x9f, 0xfc, 0x1a, 0x39, 0x64, 0xdc, 0xae, 0x2d, 0xe3, 0x76, 0xfd, + 0xd7, 0xe4, 0xf6, 0x7b, 0xd0, 0xf2, 0x03, 0x7f, 0xe4, 0xcf, 0x3c, 0x0f, 0x6b, 0x6e, 0xc9, 0xee, + 0xa6, 0x1f, 0xf8, 0x7d, 0x89, 0x62, 0x9f, 0xc0, 0xf5, 0xe2, 0x14, 0x61, 0xd4, 0x4d, 0x9a, 0x77, + 0xad, 0x30, 0x8f, 0x4c, 0x7f, 0x13, 0x3a, 0xc1, 0xf8, 0x17, 0xdc, 0x4e, 0x88, 0x63, 0x23, 0xb2, + 0xe6, 0x96, 0xc8, 0x8f, 0x04, 0x1e, 0x59, 0xd4, 0x47, 0xbb, 0x5e, 0x10, 0x73, 0xfb, 0x05, 0x31, + 0x7f, 0x09, 0x7a, 0xc6, 0xa5, 0x42, 0x99, 0xa2, 0x43, 0xed, 0xa0, 0xbf, 0xdf, 0xfb, 0xbd, 0x8e, + 0x82, 0xb1, 0xd0, 0xec, 0x3d, 0xed, 0x99, 0x83, 0x5e, 0x47, 0xc5, 0x38, 0xb5, 0xdf, 0x3b, 0xec, + 0x0d, 0x7b, 0x9d, 0xca, 0xd7, 0x55, 0xad, 0xd1, 0xd1, 0xa8, 0xd9, 0xea, 0xb9, 0xb6, 0x9b, 0x18, + 0x03, 0x80, 0xbc, 0xf6, 0x42, 0xaf, 0x9c, 0x5f, 0x4e, 0x76, 0x52, 0x92, 0xf4, 0x5a, 0x9b, 0x99, + 0x41, 0xaa, 0x2f, 0xab, 0xf0, 0x04, 0xdd, 0xd8, 0x06, 0xfd, 0xc8, 0x0a, 0x1f, 0x8b, 0x77, 0x85, + 0x3b, 0xb0, 0x1a, 0x5a, 0x51, 0xe2, 0xa2, 0x9b, 0x48, 0xbd, 0x6e, 0x65, 0xb3, 0x65, 0xb6, 0x33, + 0x2c, 0xfa, 0x5e, 0xe3, 0x14, 0xb4, 0x23, 0x2b, 0x7c, 0xa1, 0xee, 0x69, 0x65, 0xed, 0xcc, 0x99, + 0x7c, 0xf5, 0x90, 0x89, 0xd1, 0x1d, 0x68, 0xc8, 0x60, 0x22, 0xfd, 0x51, 0x29, 0xd0, 0xa4, 0x34, + 0xe3, 0xef, 0x15, 0xb8, 0x71, 0x14, 0x5c, 0xf2, 0x2c, 0xfb, 0x3c, 0xb1, 0xae, 0xbc, 0xc0, 0x72, + 0x5e, 0xa3, 0xdd, 0x98, 0xcc, 0x07, 0x33, 0x7a, 0x58, 0x48, 0x1f, 0x5b, 0x4c, 0x5d, 0x60, 0x1e, + 0xc9, 0xd7, 0x5e, 0x1e, 0x27, 0x44, 0x94, 0x21, 0x18, 0x61, 0x24, 0xbd, 0x09, 0xf5, 0x64, 0xee, + 0xe7, 0x6f, 0x3b, 0xb5, 0x84, 0xda, 0x87, 0x4b, 0x53, 0xcf, 0xda, 0xf2, 0xd4, 0xd3, 0xd8, 0x03, + 0x7d, 0x38, 0xa7, 0xd6, 0x9a, 0xc8, 0xfa, 0xb3, 0xd4, 0x48, 0x79, 0x45, 0x6a, 0xa4, 0x2e, 0xa4, + 0x46, 0xff, 0xa9, 0x40, 0xb3, 0x90, 0x43, 0xb3, 0xf7, 0xa0, 0x9a, 0xcc, 0xfd, 0xf2, 0x0b, 0x6a, + 0x7a, 0x88, 0x49, 0x24, 0xd4, 0xf8, 0xa9, 0x35, 0x1f, 0x59, 0x71, 0xec, 0x4e, 0x7c, 0xee, 0xc8, + 0x2d, 0x9b, 0x53, 0x6b, 0xbe, 0x23, 0x51, 0xec, 0x10, 0xae, 0x09, 0x87, 0x9e, 0x7e, 0x44, 0xda, + 0x18, 0x78, 0x7f, 0x21, 0x67, 0x17, 0xed, 0xc7, 0xf4, 0x93, 0x64, 0xb5, 0xbb, 0x3a, 0x29, 0x21, + 0xd7, 0x76, 0xe0, 0x8d, 0x25, 0xd3, 0x7e, 0x54, 0xc3, 0x79, 0x1d, 0xda, 0xc3, 0xb9, 0x3f, 0x74, + 0xa7, 0x3c, 0x4e, 0xac, 0x69, 0x48, 0xa9, 0xa5, 0x0c, 0xc8, 0x55, 0x53, 0x4d, 0x62, 0xe3, 0x43, + 0x68, 0x9d, 0x70, 0x1e, 0x99, 0x3c, 0x0e, 0x03, 0x5f, 0xa4, 0x55, 0xb2, 0xed, 0x27, 0xa2, 0xbf, + 0x84, 0x8c, 0xdf, 0x07, 0x1d, 0x4b, 0xdb, 0x5d, 0x2b, 0xb1, 0xcf, 0x7f, 0x4c, 0xe9, 0xfb, 0x21, + 0x34, 0x42, 0xa1, 0x53, 0xb2, 0xd6, 0x6a, 0x51, 0x16, 0x20, 0xf5, 0xcc, 0x4c, 0x89, 0xc6, 0x67, + 0xf0, 0xc6, 0x60, 0x36, 0x8e, 0xed, 0xc8, 0x0d, 0x29, 0x62, 0xca, 0x08, 0xb9, 0x06, 0x5a, 0x18, + 0xf1, 0x33, 0x77, 0xce, 0x53, 0xc3, 0xc8, 0x60, 0xe3, 0xa7, 0x70, 0xa3, 0xbc, 0x44, 0x7e, 0xc2, + 0xfb, 0x50, 0xb9, 0xb8, 0x8c, 0xe5, 0xcd, 0xae, 0x97, 0xca, 0x0c, 0x7a, 0xb8, 0x44, 0xaa, 0x61, + 0x42, 0xa5, 0x3f, 0x9b, 0x16, 0xff, 0x7c, 0x51, 0x15, 0x7f, 0xbe, 0xb8, 0x55, 0x6c, 0xd3, 0x89, + 0x4a, 0x24, 0x6f, 0xc7, 0xbd, 0x03, 0xfa, 0x59, 0x10, 0xfd, 0xa1, 0x15, 0x39, 0xdc, 0x91, 0xa1, + 0x30, 0x47, 0x18, 0xdf, 0x42, 0x33, 0xd5, 0x84, 0x03, 0x87, 0x5e, 0x6a, 0x48, 0x15, 0x0f, 0x9c, + 0x92, 0x66, 0x8a, 0x26, 0x18, 0xf7, 0x9d, 0x83, 0x54, 0x85, 0x04, 0x50, 0x3e, 0x59, 0x36, 0xd8, + 0xd3, 0x93, 0x8d, 0x87, 0xd0, 0x4a, 0x0b, 0xb9, 0x23, 0x9e, 0x58, 0xa4, 0xdc, 0x9e, 0xcb, 0xfd, + 0x82, 0xe2, 0x6b, 0x02, 0x31, 0x2c, 0xf7, 0xb2, 0xd4, 0x52, 0x5e, 0x61, 0x6c, 0x41, 0x5d, 0x5a, + 0x0e, 0x83, 0xaa, 0x1d, 0x38, 0xc2, 0xba, 0x6b, 0x26, 0x8d, 0x91, 0x1d, 0xd3, 0x78, 0x92, 0xe6, + 0x4c, 0xd3, 0x78, 0x62, 0xfc, 0xa3, 0x0a, 0xed, 0x5d, 0xaa, 0xf1, 0x53, 0x91, 0x14, 0xda, 0x16, + 0x4a, 0xa9, 0x6d, 0x51, 0x6c, 0x51, 0xa8, 0xa5, 0x16, 0x45, 0xe9, 0x42, 0x95, 0x72, 0xa2, 0xf3, + 0x16, 0x34, 0x66, 0xbe, 0x3b, 0x4f, 0x5d, 0x82, 0x6e, 0xd6, 0x11, 0x1c, 0xc6, 0x6c, 0x03, 0x9a, + 0xe8, 0x35, 0x5c, 0x5f, 0x34, 0x23, 0x44, 0x47, 0xa1, 0x88, 0x5a, 0x68, 0x39, 0xd4, 0x5f, 0xdd, + 0x72, 0x68, 0xbc, 0xb6, 0xe5, 0xa0, 0xbd, 0xae, 0xe5, 0xa0, 0x2f, 0xb6, 0x1c, 0xca, 0x49, 0x1a, + 0x2c, 0x26, 0x69, 0x46, 0x02, 0xed, 0xde, 0x3c, 0xa4, 0x07, 0xf5, 0xd7, 0x26, 0x7c, 0x05, 0xb6, + 0xaa, 0x25, 0xb6, 0x16, 0x18, 0x54, 0x91, 0x1d, 0x74, 0xc1, 0x20, 0x4c, 0x01, 0x83, 0x68, 0x6a, + 0x25, 0x29, 0xe3, 0x04, 0x64, 0xfc, 0x85, 0x0a, 0xba, 0x10, 0x19, 0x7e, 0xe6, 0xc7, 0x32, 0x9b, + 0x53, 0xf2, 0x96, 0x58, 0x46, 0xdc, 0x7a, 0xc2, 0xaf, 0x28, 0x0b, 0x11, 0x49, 0xde, 0xb2, 0xa6, + 0xb0, 0x0c, 0x2d, 0xa2, 0x06, 0xa1, 0xd0, 0x72, 0x0b, 0x74, 0xe1, 0x71, 0x67, 0x6e, 0xfa, 0x4a, + 0x24, 0x5c, 0xf0, 0xa9, 0x4b, 0x4f, 0xea, 0x09, 0x8f, 0xa6, 0x52, 0x5a, 0x34, 0x2e, 0x67, 0x7b, + 0x6d, 0x99, 0x7f, 0x18, 0xe7, 0xd0, 0x90, 0xa7, 0x63, 0x38, 0x3e, 0xed, 0x3f, 0xe9, 0x1f, 0x7f, + 0xd3, 0xef, 0xac, 0x64, 0x4d, 0x44, 0x25, 0x0f, 0xd8, 0x6a, 0x31, 0x60, 0x57, 0x10, 0xbf, 0x77, + 0x7c, 0xda, 0x1f, 0x76, 0xaa, 0xac, 0x0d, 0x3a, 0x0d, 0x47, 0x66, 0xef, 0x69, 0xa7, 0x46, 0xe5, + 0xe7, 0xde, 0xe3, 0xde, 0xd1, 0x4e, 0xa7, 0x9e, 0xb5, 0x20, 0x1b, 0xc6, 0x9f, 0x2a, 0x70, 0x5d, + 0x7c, 0x72, 0xb1, 0x58, 0x2b, 0xfe, 0x2f, 0xab, 0x2a, 0xfe, 0x97, 0xf5, 0x9b, 0xad, 0xcf, 0xb6, + 0xff, 0x49, 0x81, 0x2a, 0xfa, 0x48, 0x76, 0x0f, 0xf4, 0xc7, 0xdc, 0x8a, 0x92, 0x31, 0xb7, 0x12, + 0x56, 0xf2, 0x87, 0x6b, 0x94, 0x82, 0xe6, 0x6f, 0x37, 0xc6, 0xca, 0x03, 0x85, 0x6d, 0x89, 0x7f, + 0x57, 0xa4, 0x7f, 0x1a, 0x69, 0xa7, 0xbe, 0x96, 0x7c, 0xf1, 0x5a, 0x69, 0xbd, 0xb1, 0xb2, 0x49, + 0xf3, 0xbf, 0x0e, 0x5c, 0x7f, 0x4f, 0xfc, 0x19, 0x80, 0x2d, 0xfa, 0xe6, 0xc5, 0x15, 0xec, 0x1e, + 0xd4, 0x0f, 0x62, 0x0c, 0x02, 0x2f, 0x4e, 0xa5, 0x24, 0xa6, 0x18, 0x1f, 0x8c, 0x95, 0xed, 0xbf, + 0xab, 0x40, 0xf5, 0x5b, 0x1e, 0x05, 0xec, 0x53, 0x68, 0xc8, 0x97, 0x2e, 0x56, 0x78, 0xd1, 0x5a, + 0xa3, 0x34, 0x77, 0xe1, 0x09, 0x8c, 0x4e, 0xe9, 0x88, 0x3c, 0x28, 0xef, 0x8f, 0xb1, 0xfc, 0x21, + 0xee, 0x85, 0x4b, 0x7d, 0x09, 0x9d, 0x41, 0x12, 0x71, 0x6b, 0x5a, 0x98, 0x5e, 0x66, 0xd5, 0xb2, + 0x66, 0x1b, 0xf1, 0xeb, 0x2e, 0xd4, 0x45, 0xa4, 0x5d, 0x58, 0xb0, 0xd8, 0x37, 0xa3, 0xc9, 0x1f, + 0x41, 0x73, 0x70, 0x1e, 0xcc, 0x3c, 0x67, 0xc0, 0xa3, 0x4b, 0xce, 0x0a, 0x6f, 0xd7, 0x6b, 0x85, + 0xb1, 0xb1, 0xc2, 0x36, 0x01, 0x84, 0x73, 0x3f, 0x45, 0x4d, 0x69, 0x20, 0xad, 0x3f, 0x9b, 0x8a, + 0x4d, 0x0b, 0x5e, 0x5f, 0xcc, 0x2c, 0x04, 0xdc, 0x57, 0xcd, 0xfc, 0x1c, 0xda, 0x7b, 0xa4, 0x35, + 0xc7, 0xd1, 0xce, 0x38, 0x88, 0x12, 0xb6, 0xf8, 0x7e, 0xbd, 0xb6, 0x88, 0x30, 0x56, 0xd8, 0x03, + 0xd0, 0x86, 0xd1, 0x95, 0x98, 0x7f, 0x5d, 0xe6, 0x29, 0xf9, 0x79, 0x4b, 0xbe, 0x72, 0xfb, 0x2f, + 0xab, 0x50, 0xff, 0x26, 0x88, 0x2e, 0x78, 0x84, 0x25, 0x0f, 0xf5, 0x39, 0xa5, 0x1a, 0x65, 0x3d, + 0xcf, 0x65, 0x07, 0x7d, 0x00, 0x3a, 0x31, 0x65, 0x68, 0xc5, 0x17, 0x42, 0x54, 0xf4, 0x9f, 0x40, + 0xc1, 0x17, 0x51, 0x42, 0x91, 0x5c, 0x57, 0x85, 0xa0, 0xb2, 0xc6, 0x78, 0xa9, 0xeb, 0xb8, 0x46, + 0xdf, 0xff, 0xe4, 0xe9, 0x00, 0x55, 0xf3, 0x81, 0x82, 0xee, 0x68, 0x20, 0xbe, 0x14, 0x27, 0xe5, + 0xff, 0x85, 0x12, 0x9a, 0x9f, 0xff, 0xf9, 0xc8, 0x58, 0x61, 0xf7, 0xa1, 0x2e, 0xf2, 0x67, 0xf1, + 0x99, 0xa5, 0xd2, 0x79, 0xad, 0x53, 0x44, 0xc9, 0x05, 0x1f, 0x43, 0x5d, 0xd8, 0xb9, 0x58, 0x50, + 0x0a, 0x5b, 0xe2, 0xd6, 0x22, 0xf4, 0x19, 0x2b, 0xec, 0x2e, 0x34, 0x64, 0xaf, 0x92, 0x2d, 0x69, + 0x5c, 0x2e, 0x4c, 0xfe, 0x18, 0xea, 0xc2, 0x8d, 0x8b, 0x7d, 0x4b, 0x2e, 0x7d, 0x61, 0xea, 0x3d, + 0xe8, 0x98, 0xdc, 0xe6, 0x6e, 0x21, 0xa5, 0x66, 0x29, 0x07, 0x96, 0x98, 0xea, 0x97, 0xd0, 0x2e, + 0xa5, 0xdf, 0xac, 0x4b, 0x52, 0x59, 0x92, 0x91, 0xbf, 0x60, 0x20, 0x3f, 0x05, 0x5d, 0x66, 0x3f, + 0x63, 0xce, 0xa8, 0x57, 0xb9, 0x24, 0x7f, 0x5a, 0x7b, 0x31, 0xfd, 0x41, 0xad, 0xdf, 0xed, 0xfc, + 0xf3, 0xf7, 0xb7, 0x95, 0x7f, 0xfd, 0xfe, 0xb6, 0xf2, 0xef, 0xdf, 0xdf, 0x56, 0x7e, 0xf9, 0x1f, + 0xb7, 0x57, 0xc6, 0x75, 0xfa, 0xd7, 0xea, 0xe7, 0xff, 0x1f, 0x00, 0x00, 0xff, 0xff, 0x9b, 0x0b, + 0xd7, 0x37, 0x28, 0x2b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/wiki/content/deploy/index.md b/wiki/content/deploy/index.md index 23567dd5982..0d1bc7bc719 100644 --- a/wiki/content/deploy/index.md +++ b/wiki/content/deploy/index.md @@ -2047,15 +2047,15 @@ The disk metrics let you track the disk activity of the Dgraph process. Dgraph d directly with the filesystem. Instead it relies on [Badger](https://github.com/dgraph-io/badger) to read from and write to disk. - Metrics | Description - ------- | ----------- - `badger_disk_reads_total` | Total count of disk reads in Badger. - `badger_disk_writes_total` | Total count of disk writes in Badger. - `badger_gets_total` | Total count of calls to Badger's `get`. - `badger_memtable_gets_total` | Total count of memtable accesses to Badger's `get`. - `badger_puts_total` | Total count of calls to Badger's `put`. - `badger_read_bytes` | Total bytes read from Badger. - `badger_written_bytes` | Total bytes written to Badger. + Metrics | Description + ------- | ----------- + `badger_v2_disk_reads_total` | Total count of disk reads in Badger. + `badger_v2_disk_writes_total` | Total count of disk writes in Badger. + `badger_v2_gets_total` | Total count of calls to Badger's `get`. + `badger_v2_memtable_gets_total` | Total count of memtable accesses to Badger's `get`. + `badger_v2_puts_total` | Total count of calls to Badger's `put`. + `badger_v2_read_bytes` | Total bytes read from Badger. + `badger_v2_written_bytes` | Total bytes written to Badger. ### Memory Metrics