From c8ca4a450455bf47fa39542be615b0015ea1b5cf Mon Sep 17 00:00:00 2001 From: Kevin Su Date: Fri, 4 Aug 2023 16:40:42 -0700 Subject: [PATCH 1/8] Add tags to execution spec (#414) * add tags to execution spec Signed-off-by: Kevin Su * add tags to execution spec Signed-off-by: Kevin Su * add comment Signed-off-by: Kevin Su --------- Signed-off-by: Kevin Su --- .gitignore | 1 + boilerplate/flyte/golang_support_tools/go.mod | 15 +- boilerplate/flyte/golang_support_tools/go.sum | 52 +-- gen/pb-cpp/flyteidl/admin/execution.pb.cc | 155 ++++++--- gen/pb-cpp/flyteidl/admin/execution.pb.h | 92 +++++ gen/pb-go/flyteidl/admin/execution.pb.go | 238 +++++++------ gen/pb-go/flyteidl/service/admin.swagger.json | 7 + .../service/flyteadmin/api/swagger.yaml | 17 + .../flyteadmin/model_admin_execution_spec.go | 2 + gen/pb-go/flyteidl/service/openapi.go | 4 +- .../flyteidl/admin/ExecutionOuterClass.java | 324 ++++++++++++++++-- gen/pb-js/flyteidl.d.ts | 6 + gen/pb-js/flyteidl.js | 25 ++ gen/pb_python/flyteidl/admin/execution_pb2.py | 44 +-- .../flyteidl/admin/execution_pb2.pyi | 6 +- .../flyteadmin/models/admin_execution_spec.py | 34 +- gen/pb_rust/flyteidl.admin.rs | 3 + protos/flyteidl/admin/execution.proto | 2 + 18 files changed, 765 insertions(+), 262 deletions(-) diff --git a/.gitignore b/.gitignore index 93eb52b93..00b37709e 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ tmp/ __pycache__/ venv/ +build/ diff --git a/boilerplate/flyte/golang_support_tools/go.mod b/boilerplate/flyte/golang_support_tools/go.mod index dbf94f411..d60582796 100644 --- a/boilerplate/flyte/golang_support_tools/go.mod +++ b/boilerplate/flyte/golang_support_tools/go.mod @@ -1,6 +1,6 @@ module github.com/flyteorg/boilerplate -go 1.17 +go 1.19 require ( github.com/EngHabu/mockery v0.0.0-20220405200825-3f76291311cf @@ -163,16 +163,15 @@ require ( github.com/ultraware/whitespace v0.0.4 // indirect github.com/uudashr/gocognit v1.0.1 // indirect go.opencensus.io v0.22.6 // indirect - golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect + golang.org/x/crypto v0.11.0 // indirect golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect - golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect - golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect + golang.org/x/mod v0.12.0 // indirect + golang.org/x/net v0.12.0 // indirect golang.org/x/oauth2 v0.0.0-20210126194326-f9ce19ea3013 // indirect - golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect - golang.org/x/text v0.3.7 // indirect + golang.org/x/sys v0.10.0 // indirect + golang.org/x/text v0.11.0 // indirect golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect - golang.org/x/tools v0.1.10 // indirect - golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect + golang.org/x/tools v0.11.1 // indirect google.golang.org/api v0.38.0 // indirect google.golang.org/appengine v1.6.7 // indirect google.golang.org/genproto v0.0.0-20210126160654-44e461bb6506 // indirect diff --git a/boilerplate/flyte/golang_support_tools/go.sum b/boilerplate/flyte/golang_support_tools/go.sum index 02895fb57..c9b663bf4 100644 --- a/boilerplate/flyte/golang_support_tools/go.sum +++ b/boilerplate/flyte/golang_support_tools/go.sum @@ -51,27 +51,19 @@ github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.3.0 h1:Px2UA+2RvSSvv+RvJ github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.3.0/go.mod h1:tPaiy8S5bQ+S5sOiDlINkp7+Ef339+Nz5L5XO+cnOHo= github.com/Azure/go-autorest v14.2.0+incompatible h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs= github.com/Azure/go-autorest v14.2.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= -github.com/Azure/go-autorest/autorest v0.9.0/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI= github.com/Azure/go-autorest/autorest v0.11.12/go.mod h1:eipySxLmqSyC5s5k1CLupqet0PSENBEDP93LQ9a8QYw= github.com/Azure/go-autorest/autorest v0.11.17 h1:2zCdHwNgRH+St1J+ZMf66xI8aLr/5KMy+wWLH97zwYM= github.com/Azure/go-autorest/autorest v0.11.17/go.mod h1:eipySxLmqSyC5s5k1CLupqet0PSENBEDP93LQ9a8QYw= -github.com/Azure/go-autorest/autorest/adal v0.5.0/go.mod h1:8Z9fGy2MpX0PvDjB1pEgQTmVqjGhiHBW7RJJEciWzS0= github.com/Azure/go-autorest/autorest/adal v0.9.5/go.mod h1:B7KF7jKIeC9Mct5spmyCB/A8CG/sEz1vwIRGv/bbw7A= github.com/Azure/go-autorest/autorest/adal v0.9.10 h1:r6fZHMaHD8B6LDCn0o5vyBFHIHrM6Ywwx7mb49lPItI= github.com/Azure/go-autorest/autorest/adal v0.9.10/go.mod h1:B7KF7jKIeC9Mct5spmyCB/A8CG/sEz1vwIRGv/bbw7A= -github.com/Azure/go-autorest/autorest/date v0.1.0/go.mod h1:plvfp3oPSKwf2DNjlBjWF/7vwR+cUD/ELuzDCXwHUVA= github.com/Azure/go-autorest/autorest/date v0.3.0 h1:7gUk1U5M/CQbp9WoqinNzJar+8KY+LPI6wiWrP/myHw= github.com/Azure/go-autorest/autorest/date v0.3.0/go.mod h1:BI0uouVdmngYNUzGWeSYnokU+TrmwEsOqdt8Y6sso74= -github.com/Azure/go-autorest/autorest/mocks v0.1.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= -github.com/Azure/go-autorest/autorest/mocks v0.2.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= github.com/Azure/go-autorest/autorest/mocks v0.4.1 h1:K0laFcLE6VLTOwNgSxaGbUcLPuGXlNkbVvq4cW4nIHk= github.com/Azure/go-autorest/autorest/mocks v0.4.1/go.mod h1:LTp+uSrOhSkaKrUy935gNZuuIPPVsHlr9DSOxSayd+k= github.com/Azure/go-autorest/autorest/to v0.4.0 h1:oXVqrxakqqV1UZdSazDOPOLvOIz+XA683u8EctwboHk= -github.com/Azure/go-autorest/autorest/to v0.4.0/go.mod h1:fE8iZBn7LQR7zH/9XU2NcPR4o9jEImooCeWJcYV/zLE= -github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6LSNgds39diKLz7Vrc= github.com/Azure/go-autorest/logger v0.2.0 h1:e4RVHVZKC5p6UANLJHkM4OfR1UKZPj8Wt8Pcx+3oqrE= github.com/Azure/go-autorest/logger v0.2.0/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8= -github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= github.com/Azure/go-autorest/tracing v0.6.0 h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUMfuitfgcfuo= github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU= github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= @@ -123,12 +115,10 @@ github.com/ashanbrown/forbidigo v1.1.0/go.mod h1:vVW7PEdqEFqapJe95xHkTfB1+XvZXBF github.com/ashanbrown/makezero v0.0.0-20201205152432-7b7cdbb3025a h1:/U9tbJzDRof4fOR51vwzWdIBsIH6R2yU0KG1MBRM2Js= github.com/ashanbrown/makezero v0.0.0-20201205152432-7b7cdbb3025a/go.mod h1:oG9Dnez7/ESBqc4EdrdNlryeo7d0KcW1ftXHm7nU/UU= github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= -github.com/aws/aws-sdk-go v1.23.4/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/aws/aws-sdk-go v1.37.1 h1:BTHmuN+gzhxkvU9sac2tZvaY0gV9ihbHw+KxZOecYvY= github.com/aws/aws-sdk-go v1.37.1/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= -github.com/benlaurie/objecthash v0.0.0-20180202135721-d1e3d6079fc1/go.mod h1:jvdWlw8vowVGnZqSDC7yhPd7AifQeQbRDkZcQXV2nRg= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= @@ -149,7 +139,6 @@ github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XL github.com/charithe/durationcheck v0.0.6 h1:Tsy7EppNow2pDC0jN7Hsmcb6mHd71ZbI1vFissRBtc0= github.com/charithe/durationcheck v0.0.6/go.mod h1:SSbRIBVfMjCi/kEB6K65XEA83D6prSM8ap1UCpNKtgg= github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927 h1:SKI1/fuSdodxmNNyVBR8d7X/HuLnRpvvFO0AgyQk764= -github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927/go.mod h1:h/aW8ynjgkuj+NQRlZcDbAbM1ORAbXjXX77sX7T289U= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= @@ -259,7 +248,6 @@ github.com/go-openapi/swag v0.19.2/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/go-test/deep v1.0.7/go.mod h1:QV8Hv/iy04NyLBxAdO9njL0iVPN1S4d/A3NVv1V36o8= github.com/go-toolsmith/astcast v1.0.0 h1:JojxlmI6STnFVG9yOImLeGREv8W2ocNUM+iOhR6jE7g= github.com/go-toolsmith/astcast v1.0.0/go.mod h1:mt2OdQTeAQcY4DQgPSArJjHCcOwlX+Wl/kwN+LbLGQ4= github.com/go-toolsmith/astcopy v1.0.0 h1:OMgl1b1MEpjFQ1m5ztEO06rz5CUd3oBv9RF7+DyvdG8= @@ -374,7 +362,6 @@ github.com/google/pprof v0.0.0-20200905233945-acf8798be1f7/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/readahead v0.0.0-20161222183148-eaceba169032/go.mod h1:qYysrqQXuV4tzsizt4oOQ6mrBZQ0xnQXP3ylXX8Jk5Y= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v0.0.0-20161128191214-064e2069ce9c/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= @@ -431,7 +418,6 @@ github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09 github.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= 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/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= @@ -584,7 +570,6 @@ github.com/nats-io/nkeys v0.1.3/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxzi github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= github.com/nbutton23/zxcvbn-go v0.0.0-20201221231540-e56b841a3c88 h1:o+O3Cd1HO9CTgxE3/C8p5I5Y4C0yYWbF8d4IkfOLtcQ= github.com/nbutton23/zxcvbn-go v0.0.0-20201221231540-e56b841a3c88/go.mod h1:KSVJerMDfblTH7p5MZaTt+8zaT2iEk3AkVb9PQdZuE8= -github.com/ncw/swift v1.0.49/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM= github.com/ncw/swift v1.0.53 h1:luHjjTNtekIEvHg5KdAFIBaH7bWfNkefwFnpDffSIks= github.com/ncw/swift v1.0.53/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= @@ -642,7 +627,6 @@ github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE 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/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= -github.com/pkg/sftp v1.10.0/go.mod h1:NxmoDg/QLVWluQDUYG7XBZTLUpKeFa8e3aMf1BfjyHk= github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= @@ -650,7 +634,6 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/polyfloyd/go-errorlint v0.0.0-20201127212506-19bd8db6546f h1:xAw10KgJqG5NJDfmRqJ05Z0IFblKumjtMeyiOLxj3+4= github.com/polyfloyd/go-errorlint v0.0.0-20201127212506-19bd8db6546f/go.mod h1:wi9BfjxjF/bwiZ701TzmfKu6UKC357IOAtNr0Td0Lvw= github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= -github.com/pquerna/ffjson v0.0.0-20190813045741-dac163c6c0a9/go.mod h1:YARuvh7BUWHNhzDq2OM5tzR2RiCcN2D7sapiKyCel/M= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= @@ -719,7 +702,6 @@ github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeV github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= -github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/sirupsen/logrus v1.8.0 h1:nfhvjKcUMhBMVqbKHJlk5RPrrfYr/NMo3692g0dwfWU= github.com/sirupsen/logrus v1.8.0/go.mod h1:4GuYW9TZmE769R5STWrRakJc4UqQ3+QQ95fyz7ENv1A= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM= @@ -742,7 +724,6 @@ github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkU github.com/spf13/cast v1.3.1 h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng= github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/cobra v1.1.1/go.mod h1:WnodtKOvamDL/PwE2M4iKs8aMDBZ5Q5klgD3qfVJQMI= github.com/spf13/cobra v1.1.3 h1:xghbfqPkxzxP3C/f3n5DdpAbdKLj4ZE4BWQI362l53M= github.com/spf13/cobra v1.1.3/go.mod h1:pGADOWyqRD/YMrPZigI/zbliZ2wVD/23d+is3pSWzOo= github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= @@ -807,7 +788,6 @@ github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= @@ -841,9 +821,8 @@ golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= -golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 h1:7I4JAnoQBe7ZtJcBaYHi5UtiO8tQHbUSXxL+pnGRANg= -golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.11.0 h1:6Ewdq3tDic1mg5xRO4milcWCfMVQhI4NkqWWvqejpuA= +golang.org/x/crypto v0.11.0/go.mod h1:xgJhtzW8F9jGdVFWZESrid1U1bjeNy4zgy5cRr/CIio= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -877,9 +856,8 @@ golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzB golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 h1:kQgndtyPBW/JIYERgdxfwMYh3AVStj88WQTlNDi2a+o= -golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= +golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc= +golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -925,11 +903,10 @@ golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwY golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f h1:OfiFi4JbukWwe3lzw+xunroH1mnC1e2Gy5cxNJApiSY= -golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.12.0 h1:cfawfvKITfUsFCeJIHJrbSxpeu/E81khclypR0GVT50= +golang.org/x/net v0.12.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA= 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/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -951,7 +928,7 @@ golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -1010,10 +987,8 @@ golang.org/x/sys v0.0.0-20201214210602-f9fddec55a1e/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 h1:id054HUawV2/6IGm2IV8KZQjqtwAOo2CYlOToYqa0d0= -golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= +golang.org/x/sys v0.10.0 h1:SqMFp9UcQJZa+pmYuAKjd9xq1f0j5rLcDIk0mj4qAsA= +golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1022,8 +997,9 @@ golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.11.0 h1:LAntKIrcmeSKERyiOh0XMV39LXS8IE9UL2yP7+f5ij4= +golang.org/x/text v0.11.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -1125,8 +1101,8 @@ golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4f golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= -golang.org/x/tools v0.1.10 h1:QjFRCZxdOhBJ/UNgnBZLbNV13DlbnK0quyivTnXJM20= -golang.org/x/tools v0.1.10/go.mod h1:Uh6Zz+xoGYZom868N8YTex3t7RhtHDBrE8Gzo9bV56E= +golang.org/x/tools v0.11.1 h1:ojD5zOW8+7dOGzdnNgersm8aPfcDjhMp12UfG93NIMc= +golang.org/x/tools v0.11.1/go.mod h1:anzJrxPjNtfgiYQYirP2CPGzGLxrH2u2QBhn6Bf3qY8= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -1255,7 +1231,6 @@ gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.62.0 h1:duBzk771uxoUuOlyRLkHsygud9+5lrlGjdFBb4mSKDU= gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/kothar/go-backblaze.v0 v0.0.0-20190520213052-702d4e7eb465/go.mod h1:zJ2QpyDCYo1KvLXlmdnFlQAyF/Qfth0fB8239Qg7BIE= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= @@ -1283,7 +1258,6 @@ honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9 honnef.co/go/tools v0.1.2 h1:SMdYLJl312RXuxXziCCHhRsp/tvct9cGKey0yv95tZM= honnef.co/go/tools v0.1.2/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= k8s.io/api v0.0.0-20210217171935-8e2decd92398/go.mod h1:60tmSUpHxGPFerNHbo/ayI2lKxvtrhbxFyXuEIWJd78= -k8s.io/api v0.20.2/go.mod h1:d7n6Ehyzx+S+cE3VhTGfVNNqtGc/oL9DCdYYahlurV8= k8s.io/apimachinery v0.0.0-20210217011835-527a61b4dffe/go.mod h1:Z7ps/g0rjlTeMstYrMOUttJfT2Gg34DEaG/f2PYLCWY= k8s.io/apimachinery v0.20.2 h1:hFx6Sbt1oG0n6DZ+g4bFt5f6BoMkOjKWsQFu077M3Vg= k8s.io/apimachinery v0.20.2/go.mod h1:WlLqWAHZGg07AeltaI0MV5uk1Omp8xaN0JGLY6gkRpU= diff --git a/gen/pb-cpp/flyteidl/admin/execution.pb.cc b/gen/pb-cpp/flyteidl/admin/execution.pb.cc index 29b30e823..912181fed 100644 --- a/gen/pb-cpp/flyteidl/admin/execution.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/execution.pb.cc @@ -683,6 +683,7 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fadmin_2fexecution_2eprot PROTOBUF_FIELD_OFFSET(::flyteidl::admin::ExecutionSpec, interruptible_), PROTOBUF_FIELD_OFFSET(::flyteidl::admin::ExecutionSpec, overwrite_cache_), PROTOBUF_FIELD_OFFSET(::flyteidl::admin::ExecutionSpec, envs_), + PROTOBUF_FIELD_OFFSET(::flyteidl::admin::ExecutionSpec, tags_), PROTOBUF_FIELD_OFFSET(::flyteidl::admin::ExecutionSpec, notification_overrides_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::admin::ExecutionTerminateRequest, _internal_metadata_), @@ -760,15 +761,15 @@ static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SE { 95, -1, sizeof(::flyteidl::admin::ExecutionMetadata)}, { 107, -1, sizeof(::flyteidl::admin::NotificationList)}, { 113, -1, sizeof(::flyteidl::admin::ExecutionSpec)}, - { 135, -1, sizeof(::flyteidl::admin::ExecutionTerminateRequest)}, - { 142, -1, sizeof(::flyteidl::admin::ExecutionTerminateResponse)}, - { 147, -1, sizeof(::flyteidl::admin::WorkflowExecutionGetDataRequest)}, - { 153, -1, sizeof(::flyteidl::admin::WorkflowExecutionGetDataResponse)}, - { 162, -1, sizeof(::flyteidl::admin::ExecutionUpdateRequest)}, - { 169, -1, sizeof(::flyteidl::admin::ExecutionStateChangeDetails)}, - { 177, -1, sizeof(::flyteidl::admin::ExecutionUpdateResponse)}, - { 182, -1, sizeof(::flyteidl::admin::WorkflowExecutionGetMetricsRequest)}, - { 189, -1, sizeof(::flyteidl::admin::WorkflowExecutionGetMetricsResponse)}, + { 136, -1, sizeof(::flyteidl::admin::ExecutionTerminateRequest)}, + { 143, -1, sizeof(::flyteidl::admin::ExecutionTerminateResponse)}, + { 148, -1, sizeof(::flyteidl::admin::WorkflowExecutionGetDataRequest)}, + { 154, -1, sizeof(::flyteidl::admin::WorkflowExecutionGetDataResponse)}, + { 163, -1, sizeof(::flyteidl::admin::ExecutionUpdateRequest)}, + { 170, -1, sizeof(::flyteidl::admin::ExecutionStateChangeDetails)}, + { 178, -1, sizeof(::flyteidl::admin::ExecutionUpdateResponse)}, + { 183, -1, sizeof(::flyteidl::admin::WorkflowExecutionGetMetricsRequest)}, + { 190, -1, sizeof(::flyteidl::admin::WorkflowExecutionGetMetricsResponse)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { @@ -872,7 +873,7 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fexecution_2eproto[] = "\022\n\n\006SYSTEM\020\002\022\014\n\010RELAUNCH\020\003\022\022\n\016CHILD_WORK" "FLOW\020\004\022\r\n\tRECOVERED\020\005\"G\n\020NotificationLis" "t\0223\n\rnotifications\030\001 \003(\0132\034.flyteidl.admi" - "n.Notification\"\244\006\n\rExecutionSpec\022.\n\013laun" + "n.Notification\"\262\006\n\rExecutionSpec\022.\n\013laun" "ch_plan\030\001 \001(\0132\031.flyteidl.core.Identifier" "\022-\n\006inputs\030\002 \001(\0132\031.flyteidl.core.Literal" "MapB\002\030\001\0223\n\010metadata\030\003 \001(\0132!.flyteidl.adm" @@ -891,40 +892,40 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fexecution_2eproto[] = "(\0132!.flyteidl.admin.ClusterAssignment\0221\n" "\rinterruptible\030\025 \001(\0132\032.google.protobuf.B" "oolValue\022\027\n\017overwrite_cache\030\026 \001(\010\022\"\n\004env" - "s\030\027 \001(\0132\024.flyteidl.admin.EnvsB\030\n\026notific" - "ation_overridesJ\004\010\004\020\005\"b\n\031ExecutionTermin" - "ateRequest\0226\n\002id\030\001 \001(\0132*.flyteidl.core.W" - "orkflowExecutionIdentifier\022\r\n\005cause\030\002 \001(" - "\t\"\034\n\032ExecutionTerminateResponse\"Y\n\037Workf" - "lowExecutionGetDataRequest\0226\n\002id\030\001 \001(\0132*" - ".flyteidl.core.WorkflowExecutionIdentifi" - "er\"\336\001\n WorkflowExecutionGetDataResponse\022" - ",\n\007outputs\030\001 \001(\0132\027.flyteidl.admin.UrlBlo" - "bB\002\030\001\022+\n\006inputs\030\002 \001(\0132\027.flyteidl.admin.U" - "rlBlobB\002\030\001\022.\n\013full_inputs\030\003 \001(\0132\031.flytei" - "dl.core.LiteralMap\022/\n\014full_outputs\030\004 \001(\013" - "2\031.flyteidl.core.LiteralMap\"\177\n\026Execution" - "UpdateRequest\0226\n\002id\030\001 \001(\0132*.flyteidl.cor" - "e.WorkflowExecutionIdentifier\022-\n\005state\030\002" - " \001(\0162\036.flyteidl.admin.ExecutionState\"\220\001\n" - "\033ExecutionStateChangeDetails\022-\n\005state\030\001 " - "\001(\0162\036.flyteidl.admin.ExecutionState\022/\n\013o" - "ccurred_at\030\002 \001(\0132\032.google.protobuf.Times" - "tamp\022\021\n\tprincipal\030\003 \001(\t\"\031\n\027ExecutionUpda" - "teResponse\"k\n\"WorkflowExecutionGetMetric" - "sRequest\0226\n\002id\030\001 \001(\0132*.flyteidl.core.Wor" - "kflowExecutionIdentifier\022\r\n\005depth\030\002 \001(\005\"" - "H\n#WorkflowExecutionGetMetricsResponse\022!" - "\n\004span\030\001 \001(\0132\023.flyteidl.core.Span*>\n\016Exe" - "cutionState\022\024\n\020EXECUTION_ACTIVE\020\000\022\026\n\022EXE" - "CUTION_ARCHIVED\020\001B7Z5github.com/flyteorg" - "/flyteidl/gen/pb-go/flyteidl/adminb\006prot" - "o3" + "s\030\027 \001(\0132\024.flyteidl.admin.Envs\022\014\n\004tags\030\030 " + "\003(\tB\030\n\026notification_overridesJ\004\010\004\020\005\"b\n\031E" + "xecutionTerminateRequest\0226\n\002id\030\001 \001(\0132*.f" + "lyteidl.core.WorkflowExecutionIdentifier" + "\022\r\n\005cause\030\002 \001(\t\"\034\n\032ExecutionTerminateRes" + "ponse\"Y\n\037WorkflowExecutionGetDataRequest" + "\0226\n\002id\030\001 \001(\0132*.flyteidl.core.WorkflowExe" + "cutionIdentifier\"\336\001\n WorkflowExecutionGe" + "tDataResponse\022,\n\007outputs\030\001 \001(\0132\027.flyteid" + "l.admin.UrlBlobB\002\030\001\022+\n\006inputs\030\002 \001(\0132\027.fl" + "yteidl.admin.UrlBlobB\002\030\001\022.\n\013full_inputs\030" + "\003 \001(\0132\031.flyteidl.core.LiteralMap\022/\n\014full" + "_outputs\030\004 \001(\0132\031.flyteidl.core.LiteralMa" + "p\"\177\n\026ExecutionUpdateRequest\0226\n\002id\030\001 \001(\0132" + "*.flyteidl.core.WorkflowExecutionIdentif" + "ier\022-\n\005state\030\002 \001(\0162\036.flyteidl.admin.Exec" + "utionState\"\220\001\n\033ExecutionStateChangeDetai" + "ls\022-\n\005state\030\001 \001(\0162\036.flyteidl.admin.Execu" + "tionState\022/\n\013occurred_at\030\002 \001(\0132\032.google." + "protobuf.Timestamp\022\021\n\tprincipal\030\003 \001(\t\"\031\n" + "\027ExecutionUpdateResponse\"k\n\"WorkflowExec" + "utionGetMetricsRequest\0226\n\002id\030\001 \001(\0132*.fly" + "teidl.core.WorkflowExecutionIdentifier\022\r" + "\n\005depth\030\002 \001(\005\"H\n#WorkflowExecutionGetMet" + "ricsResponse\022!\n\004span\030\001 \001(\0132\023.flyteidl.co" + "re.Span*>\n\016ExecutionState\022\024\n\020EXECUTION_A" + "CTIVE\020\000\022\026\n\022EXECUTION_ARCHIVED\020\001B7Z5githu" + "b.com/flyteorg/flyteidl/gen/pb-go/flytei" + "dl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fexecution_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fexecution_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fexecution_2eproto, - "flyteidl/admin/execution.proto", &assign_descriptors_table_flyteidl_2fadmin_2fexecution_2eproto, 4602, + "flyteidl/admin/execution.proto", &assign_descriptors_table_flyteidl_2fadmin_2fexecution_2eproto, 4616, }; void AddDescriptors_flyteidl_2fadmin_2fexecution_2eproto() { @@ -7376,6 +7377,7 @@ const int ExecutionSpec::kClusterAssignmentFieldNumber; const int ExecutionSpec::kInterruptibleFieldNumber; const int ExecutionSpec::kOverwriteCacheFieldNumber; const int ExecutionSpec::kEnvsFieldNumber; +const int ExecutionSpec::kTagsFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 ExecutionSpec::ExecutionSpec() @@ -7385,7 +7387,8 @@ ExecutionSpec::ExecutionSpec() } ExecutionSpec::ExecutionSpec(const ExecutionSpec& from) : ::google::protobuf::Message(), - _internal_metadata_(nullptr) { + _internal_metadata_(nullptr), + tags_(from.tags_) { _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.has_launch_plan()) { launch_plan_ = new ::flyteidl::core::Identifier(*from.launch_plan_); @@ -7533,6 +7536,7 @@ void ExecutionSpec::Clear() { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + tags_.Clear(); if (GetArenaNoVirtual() == nullptr && launch_plan_ != nullptr) { delete launch_plan_; } @@ -7791,6 +7795,25 @@ const char* ExecutionSpec::_InternalParse(const char* begin, const char* end, vo {parser_till_end, object}, ptr - size, ptr)); break; } + // repeated string tags = 24; + case 24: { + if (static_cast<::google::protobuf::uint8>(tag) != 194) goto handle_unusual; + do { + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + ctx->extra_parse_data().SetFieldName("flyteidl.admin.ExecutionSpec.tags"); + object = msg->add_tags(); + if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { + parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; + goto string_till_end; + } + GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); + ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); + ptr += size; + if (ptr >= end) break; + } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 65535) == 450 && (ptr += 2)); + break; + } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -7806,6 +7829,10 @@ const char* ExecutionSpec::_InternalParse(const char* begin, const char* end, vo } // switch } // while return ptr; +string_till_end: + static_cast<::std::string*>(object)->clear(); + static_cast<::std::string*>(object)->reserve(size); + goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); @@ -8004,6 +8031,22 @@ bool ExecutionSpec::MergePartialFromCodedStream( break; } + // repeated string tags = 24; + case 24: { + if (static_cast< ::google::protobuf::uint8>(tag) == (194 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->add_tags())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->tags(this->tags_size() - 1).data(), + static_cast(this->tags(this->tags_size() - 1).length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "flyteidl.admin.ExecutionSpec.tags")); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -8124,6 +8167,16 @@ void ExecutionSpec::SerializeWithCachedSizes( 23, HasBitSetters::envs(this), output); } + // repeated string tags = 24; + for (int i = 0, n = this->tags_size(); i < n; i++) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->tags(i).data(), static_cast(this->tags(i).length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.admin.ExecutionSpec.tags"); + ::google::protobuf::internal::WireFormatLite::WriteString( + 24, this->tags(i), output); + } + if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -8243,6 +8296,16 @@ ::google::protobuf::uint8* ExecutionSpec::InternalSerializeWithCachedSizesToArra 23, HasBitSetters::envs(this), target); } + // repeated string tags = 24; + for (int i = 0, n = this->tags_size(); i < n; i++) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->tags(i).data(), static_cast(this->tags(i).length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.admin.ExecutionSpec.tags"); + target = ::google::protobuf::internal::WireFormatLite:: + WriteStringToArray(24, this->tags(i), target); + } + if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -8264,6 +8327,14 @@ size_t ExecutionSpec::ByteSizeLong() const { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // repeated string tags = 24; + total_size += 2 * + ::google::protobuf::internal::FromIntSize(this->tags_size()); + for (int i = 0, n = this->tags_size(); i < n; i++) { + total_size += ::google::protobuf::internal::WireFormatLite::StringSize( + this->tags(i)); + } + // .flyteidl.core.Identifier launch_plan = 1; if (this->has_launch_plan()) { total_size += 1 + @@ -8404,6 +8475,7 @@ void ExecutionSpec::MergeFrom(const ExecutionSpec& from) { ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; + tags_.MergeFrom(from.tags_); if (from.has_launch_plan()) { mutable_launch_plan()->::flyteidl::core::Identifier::MergeFrom(from.launch_plan()); } @@ -8486,6 +8558,7 @@ void ExecutionSpec::Swap(ExecutionSpec* other) { void ExecutionSpec::InternalSwap(ExecutionSpec* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); + tags_.InternalSwap(CastToBase(&other->tags_)); swap(launch_plan_, other->launch_plan_); swap(inputs_, other->inputs_); swap(metadata_, other->metadata_); diff --git a/gen/pb-cpp/flyteidl/admin/execution.pb.h b/gen/pb-cpp/flyteidl/admin/execution.pb.h index 395e88a2a..9665aff4c 100644 --- a/gen/pb-cpp/flyteidl/admin/execution.pb.h +++ b/gen/pb-cpp/flyteidl/admin/execution.pb.h @@ -2280,6 +2280,28 @@ class ExecutionSpec final : // accessors ------------------------------------------------------- + // repeated string tags = 24; + int tags_size() const; + void clear_tags(); + static const int kTagsFieldNumber = 24; + const ::std::string& tags(int index) const; + ::std::string* mutable_tags(int index); + void set_tags(int index, const ::std::string& value); + #if LANG_CXX11 + void set_tags(int index, ::std::string&& value); + #endif + void set_tags(int index, const char* value); + void set_tags(int index, const char* value, size_t size); + ::std::string* add_tags(); + void add_tags(const ::std::string& value); + #if LANG_CXX11 + void add_tags(::std::string&& value); + #endif + void add_tags(const char* value); + void add_tags(const char* value, size_t size); + const ::google::protobuf::RepeatedPtrField<::std::string>& tags() const; + ::google::protobuf::RepeatedPtrField<::std::string>* mutable_tags(); + // .flyteidl.core.Identifier launch_plan = 1; bool has_launch_plan() const; void clear_launch_plan(); @@ -2430,6 +2452,7 @@ class ExecutionSpec final : inline void clear_has_notification_overrides(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::RepeatedPtrField<::std::string> tags_; ::flyteidl::core::Identifier* launch_plan_; ::flyteidl::core::LiteralMap* inputs_; ::flyteidl::admin::ExecutionMetadata* metadata_; @@ -6356,6 +6379,75 @@ inline void ExecutionSpec::set_allocated_envs(::flyteidl::admin::Envs* envs) { // @@protoc_insertion_point(field_set_allocated:flyteidl.admin.ExecutionSpec.envs) } +// repeated string tags = 24; +inline int ExecutionSpec::tags_size() const { + return tags_.size(); +} +inline void ExecutionSpec::clear_tags() { + tags_.Clear(); +} +inline const ::std::string& ExecutionSpec::tags(int index) const { + // @@protoc_insertion_point(field_get:flyteidl.admin.ExecutionSpec.tags) + return tags_.Get(index); +} +inline ::std::string* ExecutionSpec::mutable_tags(int index) { + // @@protoc_insertion_point(field_mutable:flyteidl.admin.ExecutionSpec.tags) + return tags_.Mutable(index); +} +inline void ExecutionSpec::set_tags(int index, const ::std::string& value) { + // @@protoc_insertion_point(field_set:flyteidl.admin.ExecutionSpec.tags) + tags_.Mutable(index)->assign(value); +} +#if LANG_CXX11 +inline void ExecutionSpec::set_tags(int index, ::std::string&& value) { + // @@protoc_insertion_point(field_set:flyteidl.admin.ExecutionSpec.tags) + tags_.Mutable(index)->assign(std::move(value)); +} +#endif +inline void ExecutionSpec::set_tags(int index, const char* value) { + GOOGLE_DCHECK(value != nullptr); + tags_.Mutable(index)->assign(value); + // @@protoc_insertion_point(field_set_char:flyteidl.admin.ExecutionSpec.tags) +} +inline void ExecutionSpec::set_tags(int index, const char* value, size_t size) { + tags_.Mutable(index)->assign( + reinterpret_cast(value), size); + // @@protoc_insertion_point(field_set_pointer:flyteidl.admin.ExecutionSpec.tags) +} +inline ::std::string* ExecutionSpec::add_tags() { + // @@protoc_insertion_point(field_add_mutable:flyteidl.admin.ExecutionSpec.tags) + return tags_.Add(); +} +inline void ExecutionSpec::add_tags(const ::std::string& value) { + tags_.Add()->assign(value); + // @@protoc_insertion_point(field_add:flyteidl.admin.ExecutionSpec.tags) +} +#if LANG_CXX11 +inline void ExecutionSpec::add_tags(::std::string&& value) { + tags_.Add(std::move(value)); + // @@protoc_insertion_point(field_add:flyteidl.admin.ExecutionSpec.tags) +} +#endif +inline void ExecutionSpec::add_tags(const char* value) { + GOOGLE_DCHECK(value != nullptr); + tags_.Add()->assign(value); + // @@protoc_insertion_point(field_add_char:flyteidl.admin.ExecutionSpec.tags) +} +inline void ExecutionSpec::add_tags(const char* value, size_t size) { + tags_.Add()->assign(reinterpret_cast(value), size); + // @@protoc_insertion_point(field_add_pointer:flyteidl.admin.ExecutionSpec.tags) +} +inline const ::google::protobuf::RepeatedPtrField<::std::string>& +ExecutionSpec::tags() const { + // @@protoc_insertion_point(field_list:flyteidl.admin.ExecutionSpec.tags) + return tags_; +} +inline ::google::protobuf::RepeatedPtrField<::std::string>* +ExecutionSpec::mutable_tags() { + // @@protoc_insertion_point(field_mutable_list:flyteidl.admin.ExecutionSpec.tags) + return &tags_; +} + inline bool ExecutionSpec::has_notification_overrides() const { return notification_overrides_case() != NOTIFICATION_OVERRIDES_NOT_SET; } diff --git a/gen/pb-go/flyteidl/admin/execution.pb.go b/gen/pb-go/flyteidl/admin/execution.pb.go index 56ad6dc09..8cf8b9184 100644 --- a/gen/pb-go/flyteidl/admin/execution.pb.go +++ b/gen/pb-go/flyteidl/admin/execution.pb.go @@ -1084,7 +1084,9 @@ type ExecutionSpec struct { // data once execution finishes successfully. OverwriteCache bool `protobuf:"varint,22,opt,name=overwrite_cache,json=overwriteCache,proto3" json:"overwrite_cache,omitempty"` // Environment variables to be set for the execution. - Envs *Envs `protobuf:"bytes,23,opt,name=envs,proto3" json:"envs,omitempty"` + Envs *Envs `protobuf:"bytes,23,opt,name=envs,proto3" json:"envs,omitempty"` + // Tags to be set for the execution. + Tags []string `protobuf:"bytes,24,rep,name=tags,proto3" json:"tags,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1252,6 +1254,13 @@ func (m *ExecutionSpec) GetEnvs() *Envs { return nil } +func (m *ExecutionSpec) GetTags() []string { + if m != nil { + return m.Tags + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*ExecutionSpec) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -1720,119 +1729,120 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/execution.proto", fileDescriptor_4e2785d91b3809ec) } var fileDescriptor_4e2785d91b3809ec = []byte{ - // 1814 bytes of a gzipped FileDescriptorProto + // 1827 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0x5b, 0x73, 0xdb, 0xc6, - 0xf5, 0x17, 0x29, 0x52, 0x97, 0x43, 0x8b, 0xa2, 0x57, 0x8a, 0x0c, 0xcb, 0x8e, 0xad, 0x20, 0xf3, - 0xff, 0xdb, 0x93, 0x4c, 0xc9, 0x89, 0x52, 0x4d, 0x26, 0x6e, 0x9d, 0x09, 0x45, 0xd1, 0x91, 0x52, - 0x5d, 0xdc, 0xd5, 0xc5, 0xb9, 0x4c, 0x06, 0x5d, 0x01, 0x4b, 0x12, 0x0d, 0x80, 0x85, 0x77, 0x17, - 0x92, 0xfd, 0x0d, 0x3a, 0xfd, 0x04, 0xed, 0x37, 0xe8, 0x53, 0x1f, 0xfb, 0xd0, 0xe7, 0x7e, 0xac, - 0x3e, 0x74, 0xb0, 0x58, 0x80, 0x00, 0x48, 0x59, 0xf2, 0x58, 0x6f, 0xd8, 0x3d, 0xbf, 0x73, 0xd9, - 0xb3, 0xe7, 0xb6, 0x80, 0x47, 0x03, 0xef, 0xad, 0xa4, 0xae, 0xe3, 0x75, 0x88, 0xe3, 0xbb, 0x41, - 0x87, 0xbe, 0xa1, 0x76, 0x24, 0x5d, 0x16, 0xb4, 0x43, 0xce, 0x24, 0x43, 0xcd, 0x94, 0xde, 0x56, - 0xf4, 0xf5, 0x27, 0x25, 0xbc, 0xed, 0x45, 0x42, 0x52, 0x6e, 0x11, 0x21, 0xdc, 0x61, 0xe0, 0xd3, - 0x40, 0x26, 0x8c, 0xeb, 0x0f, 0xca, 0x40, 0xe6, 0xfb, 0xa9, 0xd4, 0xf5, 0x87, 0x19, 0xd1, 0x66, - 0x9c, 0x76, 0x3c, 0x57, 0x52, 0x4e, 0x3c, 0xa1, 0xa9, 0x1f, 0x17, 0xa9, 0x25, 0x93, 0xd6, 0x1f, - 0x15, 0xc9, 0xae, 0x43, 0x03, 0xe9, 0x0e, 0x5c, 0xca, 0x27, 0x34, 0x2b, 0xba, 0x4f, 0x25, 0x77, - 0x6d, 0x31, 0x5d, 0xb3, 0xa0, 0x76, 0xc4, 0x5d, 0xf9, 0x36, 0x15, 0x3d, 0x64, 0x6c, 0xe8, 0xd1, - 0x8e, 0x5a, 0x9d, 0x47, 0x83, 0x8e, 0x13, 0x71, 0x92, 0x53, 0xfd, 0xb8, 0x4c, 0x97, 0xae, 0x4f, - 0x85, 0x24, 0x7e, 0x78, 0x95, 0x80, 0x4b, 0x4e, 0xc2, 0x90, 0x72, 0xad, 0xde, 0xfc, 0x4f, 0x05, - 0xd6, 0xfa, 0xe9, 0x79, 0x7a, 0x9c, 0x12, 0x49, 0x31, 0x7d, 0x1d, 0x51, 0x21, 0x91, 0x01, 0xf3, - 0x21, 0x67, 0x7f, 0xa6, 0xb6, 0x34, 0x2a, 0x1b, 0x95, 0xa7, 0x8b, 0x38, 0x5d, 0xa2, 0x35, 0x98, + 0xf5, 0x17, 0x29, 0x52, 0xa2, 0x0e, 0x2d, 0x8a, 0x5e, 0x29, 0x32, 0x2c, 0x3b, 0xb6, 0x82, 0xcc, + 0xff, 0x6f, 0x4f, 0x32, 0x25, 0x27, 0x4a, 0x35, 0x99, 0xb8, 0x75, 0x26, 0x14, 0x45, 0x47, 0x4a, + 0x75, 0x71, 0x57, 0x17, 0xe7, 0x32, 0x19, 0x74, 0x05, 0xac, 0x48, 0x34, 0x00, 0x16, 0xde, 0x5d, + 0x48, 0xf6, 0x37, 0xe8, 0xf4, 0xa9, 0x8f, 0xed, 0x37, 0xe8, 0x53, 0x1f, 0xfb, 0xd0, 0xe7, 0x7e, + 0xb0, 0x0e, 0x16, 0x0b, 0x10, 0x00, 0x29, 0x4b, 0x1e, 0xeb, 0x0d, 0xbb, 0xe7, 0x77, 0x2e, 0x7b, + 0xf6, 0xdc, 0x16, 0xf0, 0xe8, 0xdc, 0x7b, 0x2b, 0xa9, 0xeb, 0x78, 0x5d, 0xe2, 0xf8, 0x6e, 0xd0, + 0xa5, 0x6f, 0xa8, 0x1d, 0x49, 0x97, 0x05, 0x9d, 0x90, 0x33, 0xc9, 0x50, 0x2b, 0xa5, 0x77, 0x14, + 0x7d, 0xed, 0x49, 0x09, 0x6f, 0x7b, 0x91, 0x90, 0x94, 0x5b, 0x44, 0x08, 0x77, 0x18, 0xf8, 0x34, + 0x90, 0x09, 0xe3, 0xda, 0x83, 0x32, 0x90, 0xf9, 0x7e, 0x2a, 0x75, 0xed, 0x61, 0x46, 0xb4, 0x19, + 0xa7, 0x5d, 0xcf, 0x95, 0x94, 0x13, 0x4f, 0x68, 0xea, 0xc7, 0x45, 0x6a, 0xc9, 0xa4, 0xb5, 0x47, + 0x45, 0xb2, 0xeb, 0xd0, 0x40, 0xba, 0xe7, 0x2e, 0xe5, 0x13, 0x9a, 0x15, 0xdd, 0xa7, 0x92, 0xbb, + 0xb6, 0x98, 0xae, 0x59, 0x50, 0x3b, 0xe2, 0xae, 0x7c, 0x9b, 0x8a, 0x1e, 0x32, 0x36, 0xf4, 0x68, + 0x57, 0xad, 0xce, 0xa2, 0xf3, 0xae, 0x13, 0x71, 0x92, 0x53, 0xfd, 0xb8, 0x4c, 0x97, 0xae, 0x4f, + 0x85, 0x24, 0x7e, 0x78, 0x95, 0x80, 0x4b, 0x4e, 0xc2, 0x90, 0x72, 0xad, 0xde, 0xfc, 0x6f, 0x05, + 0x56, 0x07, 0xe9, 0x79, 0xfa, 0x9c, 0x12, 0x49, 0x31, 0x7d, 0x1d, 0x51, 0x21, 0x91, 0x01, 0xf3, + 0x21, 0x67, 0x7f, 0xa6, 0xb6, 0x34, 0x2a, 0xeb, 0x95, 0xa7, 0x0b, 0x38, 0x5d, 0xa2, 0x55, 0x98, 0x73, 0x98, 0x4f, 0xdc, 0xc0, 0xa8, 0x2a, 0x82, 0x5e, 0x21, 0x04, 0xb5, 0x80, 0xf8, 0xd4, 0x98, - 0x55, 0xbb, 0xea, 0x1b, 0x7d, 0x01, 0x35, 0x11, 0x52, 0xdb, 0xa8, 0x6d, 0x54, 0x9e, 0x36, 0x36, - 0x3f, 0x6e, 0x17, 0xaf, 0xaf, 0x9d, 0xe9, 0x3e, 0x0e, 0xa9, 0x8d, 0x15, 0x14, 0x7d, 0x01, 0x73, - 0x6e, 0x10, 0x46, 0x52, 0x18, 0x75, 0xc5, 0x74, 0x7f, 0xcc, 0x14, 0xfb, 0xa8, 0xbd, 0x9f, 0xdc, - 0xce, 0x01, 0x09, 0xb1, 0x06, 0x9a, 0x7f, 0xaf, 0x80, 0x91, 0x89, 0xc2, 0xd4, 0x23, 0x51, 0x60, - 0x8f, 0xd2, 0x83, 0x3c, 0x83, 0xaa, 0xeb, 0xa8, 0x33, 0x34, 0x36, 0x3f, 0x2b, 0xc9, 0x7a, 0xc5, - 0xf8, 0xaf, 0x03, 0x8f, 0x5d, 0x66, 0xcc, 0x7b, 0xd9, 0xed, 0xe1, 0xaa, 0xeb, 0x4c, 0x3d, 0xd2, - 0x13, 0x58, 0x66, 0x17, 0x94, 0x5f, 0x72, 0x57, 0x52, 0xcb, 0x26, 0xf6, 0x88, 0xaa, 0xd3, 0x2d, - 0xe0, 0x66, 0xb6, 0xdd, 0x8b, 0x77, 0xbf, 0xaf, 0x2d, 0x54, 0x5b, 0xb3, 0xe6, 0x3f, 0x2a, 0x70, - 0x2f, 0x67, 0x9b, 0x1d, 0x83, 0x6e, 0xd3, 0xb4, 0x6a, 0xce, 0xb4, 0xe7, 0xb0, 0xe0, 0x53, 0x49, - 0x1c, 0x22, 0x89, 0x32, 0xb9, 0xb1, 0xf9, 0xc9, 0x95, 0x1e, 0x3f, 0xd0, 0x40, 0x9c, 0xb1, 0x98, - 0xa7, 0x39, 0x4b, 0xd3, 0x60, 0x10, 0x21, 0x0b, 0x04, 0xfd, 0x10, 0x4b, 0xcd, 0x1f, 0xe1, 0xc1, - 0x04, 0xe4, 0x3b, 0x2a, 0x6f, 0xc1, 0x09, 0xe6, 0xbf, 0x2a, 0xb0, 0x98, 0xd1, 0x3e, 0xc8, 0x9d, - 0x69, 0xa0, 0x56, 0x6f, 0x1e, 0xa8, 0xcf, 0x60, 0xde, 0xf6, 0x98, 0x88, 0x38, 0xd5, 0xce, 0xde, - 0xb8, 0x92, 0xab, 0x97, 0xe0, 0x70, 0xca, 0x60, 0xfe, 0x09, 0x96, 0x32, 0xe2, 0xbe, 0x2b, 0x24, - 0xfa, 0x1a, 0x20, 0x2b, 0x2c, 0xc2, 0xa8, 0x6c, 0xcc, 0x16, 0x23, 0xbf, 0x24, 0x0f, 0xe7, 0xc0, - 0x68, 0x15, 0xea, 0x92, 0xfd, 0x4a, 0xd3, 0x74, 0x4c, 0x16, 0x26, 0x85, 0xe6, 0x38, 0x53, 0xb6, - 0x3d, 0x76, 0x8e, 0xbe, 0x82, 0xb9, 0x0b, 0xe2, 0x45, 0x54, 0x68, 0x17, 0x5d, 0x9d, 0x58, 0xdb, - 0x55, 0xa3, 0xb2, 0x3b, 0x83, 0x35, 0x1c, 0x21, 0x98, 0x8d, 0xb8, 0x9b, 0x88, 0xdf, 0x9d, 0xc1, - 0xf1, 0x62, 0x7b, 0x0e, 0x6a, 0x2a, 0x66, 0x7a, 0xb0, 0xd4, 0x3d, 0x67, 0x5c, 0xa6, 0xe1, 0x14, - 0x5b, 0x63, 0x93, 0x48, 0x50, 0x5d, 0x35, 0x92, 0x05, 0x7a, 0x08, 0x8b, 0x21, 0x77, 0x03, 0xdb, - 0x0d, 0x89, 0xa7, 0xed, 0x1c, 0x6f, 0x98, 0x7f, 0x9b, 0x87, 0x56, 0xd9, 0x57, 0xe8, 0x1b, 0x98, - 0x67, 0x91, 0x54, 0x85, 0x20, 0xb1, 0xf7, 0x51, 0xd9, 0x1d, 0xc5, 0xf3, 0x69, 0xa3, 0x53, 0x26, - 0xb4, 0x05, 0x75, 0xca, 0x39, 0xe3, 0x93, 0x57, 0xaa, 0x4e, 0x9b, 0xe9, 0xeb, 0xc7, 0xa0, 0xdd, - 0x19, 0x9c, 0xa0, 0xd1, 0xff, 0x41, 0x83, 0xc4, 0x07, 0xb2, 0x92, 0x53, 0x40, 0x6c, 0xab, 0x16, - 0x0d, 0x8a, 0xd0, 0x53, 0x07, 0x7a, 0x01, 0xcd, 0x04, 0x96, 0x25, 0xdc, 0x9d, 0xe9, 0x91, 0x53, - 0xf0, 0xce, 0xee, 0x0c, 0x5e, 0x22, 0x05, 0x77, 0x7d, 0x0b, 0x8d, 0xc4, 0x60, 0x4b, 0x09, 0x59, - 0xba, 0xd9, 0xcd, 0x40, 0xc2, 0xb3, 0x13, 0x4b, 0x78, 0x01, 0xcb, 0x36, 0xf3, 0xc3, 0x48, 0x52, - 0xc7, 0xd2, 0x85, 0x73, 0xf6, 0x06, 0x52, 0x70, 0x33, 0xe5, 0xda, 0x53, 0x4c, 0xe8, 0xf7, 0x50, - 0x0f, 0x47, 0x44, 0x24, 0xd5, 0xac, 0xb9, 0xf9, 0xff, 0xd7, 0x25, 0x50, 0xfb, 0x65, 0x8c, 0xc6, - 0x09, 0x53, 0x1c, 0xbf, 0x42, 0x12, 0x1e, 0x1b, 0x41, 0xa4, 0xae, 0xdc, 0xeb, 0xed, 0xa4, 0xfd, - 0xb4, 0xd3, 0xf6, 0xd3, 0x3e, 0x49, 0xfb, 0x13, 0x5e, 0xd4, 0xe8, 0xae, 0x44, 0x5b, 0xb0, 0x90, - 0xf6, 0x35, 0x63, 0x4e, 0x5b, 0x5e, 0x66, 0xdc, 0xd1, 0x00, 0x9c, 0x41, 0x63, 0x8d, 0xb6, 0x2a, - 0x52, 0x4a, 0xe3, 0xfc, 0xf5, 0x1a, 0x35, 0xba, 0xab, 0x92, 0x2d, 0x0a, 0x9d, 0x94, 0x75, 0xe1, - 0x7a, 0x56, 0x8d, 0xee, 0x4a, 0xb4, 0x0d, 0x4b, 0x01, 0x8b, 0xeb, 0x86, 0x4d, 0x92, 0x54, 0x5d, - 0x54, 0xa9, 0xfa, 0xb0, 0x7c, 0xed, 0x87, 0x39, 0x10, 0x2e, 0xb2, 0xa0, 0x67, 0xd0, 0xb8, 0xd4, - 0xde, 0xb4, 0x5c, 0xc7, 0x68, 0x4c, 0xbd, 0xad, 0x5c, 0x7d, 0x82, 0x14, 0xbd, 0xe7, 0xa0, 0x5f, - 0x60, 0x55, 0x48, 0x12, 0x77, 0x9e, 0x11, 0x09, 0x86, 0xd4, 0x72, 0xa8, 0x24, 0xae, 0x27, 0x8c, - 0xa6, 0x12, 0xf2, 0xf9, 0xd5, 0x75, 0x2b, 0x66, 0xea, 0x29, 0x9e, 0x9d, 0x84, 0x05, 0x23, 0x31, - 0xb1, 0xb7, 0xbd, 0x0c, 0x4b, 0x3a, 0x1c, 0x39, 0x15, 0x91, 0x27, 0xcd, 0x9f, 0xa1, 0x79, 0xfc, - 0x56, 0x48, 0xea, 0x67, 0x11, 0xfb, 0x39, 0xdc, 0xcd, 0x8a, 0x8f, 0xa5, 0xe7, 0x2d, 0x9d, 0xec, - 0x2d, 0x3a, 0x4e, 0x62, 0xb5, 0x1f, 0xe7, 0x7d, 0xdc, 0x99, 0x44, 0x48, 0xec, 0xb4, 0x55, 0x8d, - 0x37, 0xcc, 0x7f, 0xd7, 0xe0, 0xee, 0x44, 0x43, 0x42, 0x3d, 0xa8, 0xf9, 0xcc, 0x49, 0x0a, 0x48, - 0x73, 0xb3, 0x73, 0x6d, 0x07, 0xcb, 0xed, 0x30, 0x87, 0x62, 0xc5, 0xfc, 0xee, 0x82, 0x13, 0x0f, - 0x37, 0x01, 0x15, 0xd2, 0x0d, 0x86, 0x2a, 0x57, 0x96, 0x70, 0xba, 0x44, 0xcf, 0xe1, 0x8e, 0xb0, - 0x47, 0xd4, 0x89, 0xbc, 0x24, 0x38, 0x6a, 0xd7, 0x06, 0x47, 0x23, 0xc3, 0x77, 0x25, 0xfa, 0x09, - 0x3e, 0x0a, 0x09, 0xa7, 0x81, 0xb4, 0x02, 0xe6, 0x50, 0x2b, 0xf3, 0x87, 0xce, 0x88, 0x72, 0x52, - 0x1d, 0x32, 0x87, 0x4e, 0xeb, 0x48, 0x2b, 0x89, 0x90, 0x02, 0x19, 0xfd, 0x0c, 0x2b, 0x9c, 0x0e, - 0x28, 0xa7, 0x81, 0x9d, 0x97, 0xdc, 0x7a, 0xef, 0x7e, 0x87, 0x32, 0x31, 0x63, 0xe1, 0xdf, 0xc1, - 0xb2, 0x50, 0xf7, 0x3c, 0x2e, 0x68, 0x77, 0xa7, 0x57, 0xdd, 0x62, 0x38, 0xe0, 0xa6, 0x28, 0xac, - 0xcd, 0x61, 0xae, 0xb3, 0xc5, 0xf7, 0x81, 0x00, 0xe6, 0x0e, 0xba, 0x87, 0xa7, 0xdd, 0xfd, 0xd6, - 0x0c, 0x5a, 0x82, 0xc5, 0xe3, 0xde, 0x6e, 0x7f, 0xe7, 0x74, 0xbf, 0xbf, 0xd3, 0xaa, 0xc4, 0xa4, - 0xe3, 0x1f, 0x8f, 0x4f, 0xfa, 0x07, 0xad, 0x2a, 0xba, 0x03, 0x0b, 0xb8, 0xbf, 0xdf, 0x3d, 0x3d, - 0xec, 0xed, 0xb6, 0x66, 0x11, 0x82, 0x66, 0x6f, 0x77, 0x6f, 0x7f, 0xc7, 0x7a, 0x75, 0x84, 0xff, - 0xf0, 0x62, 0xff, 0xe8, 0x55, 0xab, 0x16, 0x33, 0xe3, 0x7e, 0xef, 0xe8, 0xac, 0x8f, 0xfb, 0x3b, - 0xad, 0xba, 0x79, 0x06, 0xad, 0x7c, 0x92, 0xa9, 0x2e, 0x3a, 0x91, 0x9d, 0x95, 0xf7, 0xce, 0x4e, - 0xf3, 0xbf, 0xf3, 0xb9, 0x13, 0x1c, 0x27, 0x8d, 0xbe, 0x91, 0x8c, 0x94, 0x56, 0xe8, 0x91, 0xe0, - 0x8a, 0xee, 0x99, 0xcf, 0xd7, 0x04, 0xfd, 0xd2, 0x23, 0x01, 0xda, 0xca, 0xa6, 0xd9, 0xea, 0x4d, - 0x8a, 0xb2, 0x06, 0x7f, 0xe0, 0x24, 0x87, 0x76, 0xcb, 0x7e, 0xa8, 0x4f, 0x1f, 0x50, 0xca, 0x0e, - 0x8c, 0xfb, 0x53, 0xb1, 0x56, 0x7d, 0x02, 0x0d, 0xc7, 0x15, 0xe4, 0xdc, 0xa3, 0x16, 0xf1, 0x3c, - 0x55, 0x9f, 0x17, 0xe2, 0x06, 0xa4, 0x37, 0xbb, 0x9e, 0x87, 0xda, 0x30, 0xe7, 0x91, 0x73, 0xea, - 0x09, 0x5d, 0x84, 0xd7, 0x26, 0xfa, 0xb4, 0xa2, 0x62, 0x8d, 0x42, 0xcf, 0xa1, 0x41, 0x82, 0x80, - 0x49, 0x6d, 0x5a, 0x52, 0x7e, 0x1f, 0x4c, 0xf4, 0xcd, 0x31, 0x04, 0xe7, 0xf1, 0x68, 0x0f, 0x5a, - 0xe9, 0x33, 0xc9, 0xb2, 0x59, 0x20, 0xe9, 0x1b, 0xa9, 0xba, 0x74, 0x21, 0x54, 0x95, 0x6f, 0x8f, - 0x35, 0xac, 0x97, 0xa0, 0xf0, 0xb2, 0x28, 0x6e, 0xa0, 0xaf, 0x61, 0x91, 0x44, 0x72, 0x64, 0x71, - 0xe6, 0x51, 0x9d, 0x47, 0xc6, 0x84, 0x1d, 0x91, 0x1c, 0x61, 0xe6, 0x51, 0x75, 0x3d, 0x0b, 0x44, - 0xaf, 0xd0, 0x01, 0xa0, 0xd7, 0x11, 0xf1, 0x62, 0x23, 0xd8, 0xc0, 0x12, 0x94, 0x5f, 0xb8, 0x36, - 0xd5, 0x29, 0xf3, 0xb8, 0x64, 0xc7, 0x1f, 0x13, 0xe0, 0xd1, 0xe0, 0x38, 0x81, 0xe1, 0xd6, 0xeb, - 0xd2, 0x4e, 0xfc, 0xa8, 0xf0, 0xc9, 0x1b, 0x2b, 0x24, 0x9c, 0x78, 0x1e, 0xf5, 0x5c, 0xe1, 0x1b, - 0x68, 0xa3, 0xf2, 0xb4, 0x8e, 0x9b, 0x3e, 0x79, 0xf3, 0x72, 0xbc, 0x8b, 0x7e, 0x80, 0x35, 0x4e, - 0x2e, 0xad, 0xdc, 0xcc, 0x10, 0x3b, 0x61, 0xe0, 0x0e, 0x8d, 0x15, 0xa5, 0xfb, 0xd3, 0xb2, 0xfd, - 0x98, 0x5c, 0x1e, 0x65, 0xc3, 0x42, 0x4f, 0x41, 0xf1, 0x0a, 0x9f, 0xdc, 0x44, 0x2f, 0x01, 0x4d, - 0xbe, 0x9e, 0x8d, 0xd5, 0xe9, 0xc1, 0xa7, 0xeb, 0x7b, 0x37, 0x03, 0xe2, 0xbb, 0x76, 0x79, 0x0b, - 0x7d, 0x0b, 0x4b, 0x6e, 0x20, 0x29, 0xe7, 0x51, 0x28, 0xdd, 0x73, 0x8f, 0x1a, 0x1f, 0x5d, 0x51, - 0x4c, 0xb7, 0x19, 0xf3, 0xce, 0xe2, 0x59, 0x13, 0x17, 0x19, 0xa6, 0xbd, 0xb5, 0xd6, 0xa6, 0xbd, - 0xb5, 0xd0, 0x53, 0xa8, 0xd1, 0xe0, 0x42, 0x18, 0xf7, 0x94, 0x86, 0xd5, 0x89, 0x5c, 0x09, 0x2e, - 0x04, 0x56, 0x88, 0x6d, 0x03, 0xd6, 0xf2, 0x11, 0x6e, 0xc5, 0x82, 0xb8, 0xeb, 0x50, 0xf1, 0x7d, - 0x6d, 0xa1, 0xd6, 0xaa, 0x9b, 0x3e, 0xdc, 0xcf, 0x32, 0xeb, 0x84, 0x72, 0xdf, 0x0d, 0x72, 0x8f, - 0xe2, 0x0f, 0x79, 0x61, 0x64, 0x83, 0x71, 0x35, 0x37, 0x18, 0x9b, 0x0f, 0x61, 0x7d, 0x9a, 0xba, - 0xe4, 0xd9, 0x65, 0xfe, 0x02, 0x8f, 0xa7, 0x3d, 0x9d, 0xe2, 0x5b, 0xbb, 0x8d, 0xe7, 0xd3, 0x5f, - 0xaa, 0xb0, 0x71, 0xb5, 0x7c, 0xfd, 0xf4, 0xdb, 0x2a, 0xcf, 0xe1, 0xf7, 0xca, 0xde, 0x3d, 0xe5, - 0x5e, 0x3a, 0x80, 0x8f, 0xc7, 0xef, 0x2f, 0x4b, 0x85, 0xef, 0x9d, 0x5c, 0x69, 0xd9, 0x7b, 0x06, - 0x8d, 0x41, 0xe4, 0x79, 0x37, 0x9d, 0x63, 0x31, 0xc4, 0xe8, 0x6c, 0x7e, 0xbd, 0xa3, 0x78, 0x53, - 0x63, 0x6b, 0xd7, 0x31, 0x2b, 0x55, 0x49, 0x1a, 0x08, 0xf3, 0xaf, 0xf9, 0x3f, 0x21, 0xa7, 0x6a, - 0xdc, 0xbb, 0x8d, 0x4b, 0xff, 0x2d, 0xd4, 0xd5, 0x94, 0xa5, 0x9c, 0xd0, 0x9c, 0x6c, 0xa6, 0xc5, - 0xf9, 0x0c, 0x27, 0x60, 0xf3, 0x9f, 0x15, 0x78, 0xf0, 0x8e, 0xc9, 0x6d, 0x2c, 0xb5, 0xf2, 0x1e, - 0x52, 0xd1, 0xef, 0xa0, 0xc1, 0x6c, 0x3b, 0xe2, 0x3c, 0x99, 0x6c, 0xaa, 0xd7, 0x4e, 0x36, 0x90, - 0xc2, 0xbb, 0xb2, 0x38, 0x4f, 0xcd, 0x96, 0x1f, 0x70, 0xf7, 0x73, 0x7f, 0x0e, 0x52, 0xe7, 0xe9, - 0x10, 0xbe, 0x00, 0x73, 0x5a, 0x88, 0x1d, 0x24, 0xbf, 0xc1, 0x6e, 0x29, 0xb1, 0x1c, 0x1a, 0xca, - 0x91, 0x3a, 0x51, 0x1d, 0x27, 0x0b, 0xf3, 0x10, 0x3e, 0x7d, 0xa7, 0x5e, 0x1d, 0xdd, 0x4f, 0xe2, - 0x77, 0x7f, 0xd6, 0xd4, 0x57, 0xca, 0x1d, 0x24, 0x24, 0x01, 0x56, 0x80, 0xcf, 0xbe, 0x81, 0x66, - 0xd1, 0xad, 0x68, 0x15, 0x5a, 0xfd, 0x1f, 0xfa, 0xbd, 0xd3, 0x93, 0xbd, 0xa3, 0x43, 0xab, 0xdb, - 0x3b, 0xd9, 0x3b, 0xeb, 0xb7, 0x66, 0xd0, 0x1a, 0xa0, 0xdc, 0x2e, 0xee, 0xed, 0xee, 0x9d, 0xc5, - 0xb3, 0xce, 0xf6, 0x57, 0x3f, 0x6d, 0x0d, 0x5d, 0x39, 0x8a, 0xce, 0xdb, 0x36, 0xf3, 0x3b, 0x4a, - 0x0d, 0xe3, 0xc3, 0x4e, 0xf6, 0xff, 0x6f, 0x48, 0x83, 0x4e, 0x78, 0xfe, 0x9b, 0x21, 0xeb, 0x14, - 0xff, 0x54, 0x9e, 0xcf, 0xa9, 0x9b, 0xf9, 0xf2, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xcf, 0xfc, - 0x3f, 0x1f, 0x1b, 0x15, 0x00, 0x00, + 0x55, 0xbb, 0xea, 0x1b, 0x7d, 0x01, 0x35, 0x11, 0x52, 0xdb, 0xa8, 0xad, 0x57, 0x9e, 0x36, 0x37, + 0x3e, 0xee, 0x14, 0xaf, 0xaf, 0x93, 0xe9, 0x3e, 0x0a, 0xa9, 0x8d, 0x15, 0x14, 0x7d, 0x01, 0x73, + 0x6e, 0x10, 0x46, 0x52, 0x18, 0x75, 0xc5, 0x74, 0x7f, 0xcc, 0x14, 0xfb, 0xa8, 0xb3, 0x97, 0xdc, + 0xce, 0x3e, 0x09, 0xb1, 0x06, 0x9a, 0xff, 0xa8, 0x80, 0x91, 0x89, 0xc2, 0xd4, 0x23, 0x51, 0x60, + 0x8f, 0xd2, 0x83, 0x3c, 0x83, 0xaa, 0xeb, 0xa8, 0x33, 0x34, 0x37, 0x3e, 0x2b, 0xc9, 0x7a, 0xc5, + 0xf8, 0xaf, 0xe7, 0x1e, 0xbb, 0xcc, 0x98, 0x77, 0xb3, 0xdb, 0xc3, 0x55, 0xd7, 0x99, 0x7a, 0xa4, + 0x27, 0xb0, 0xc4, 0x2e, 0x28, 0xbf, 0xe4, 0xae, 0xa4, 0x96, 0x4d, 0xec, 0x11, 0x55, 0xa7, 0x6b, + 0xe0, 0x56, 0xb6, 0xdd, 0x8f, 0x77, 0xbf, 0xaf, 0x35, 0xaa, 0xed, 0x59, 0xf3, 0x9f, 0x15, 0xb8, + 0x97, 0xb3, 0xcd, 0x8e, 0x41, 0xb7, 0x69, 0x5a, 0x35, 0x67, 0xda, 0x73, 0x68, 0xf8, 0x54, 0x12, + 0x87, 0x48, 0xa2, 0x4c, 0x6e, 0x6e, 0x7c, 0x72, 0xa5, 0xc7, 0xf7, 0x35, 0x10, 0x67, 0x2c, 0xe6, + 0x49, 0xce, 0xd2, 0x34, 0x18, 0x44, 0xc8, 0x02, 0x41, 0x3f, 0xc4, 0x52, 0xf3, 0x47, 0x78, 0x30, + 0x01, 0xf9, 0x8e, 0xca, 0x5b, 0x70, 0x82, 0xf9, 0xef, 0x0a, 0x2c, 0x64, 0xb4, 0x0f, 0x72, 0x67, + 0x1a, 0xa8, 0xd5, 0x9b, 0x07, 0xea, 0x33, 0x98, 0xb7, 0x3d, 0x26, 0x22, 0x4e, 0xb5, 0xb3, 0xd7, + 0xaf, 0xe4, 0xea, 0x27, 0x38, 0x9c, 0x32, 0x98, 0x7f, 0x82, 0xc5, 0x8c, 0xb8, 0xe7, 0x0a, 0x89, + 0xbe, 0x06, 0xc8, 0x0a, 0x8b, 0x30, 0x2a, 0xeb, 0xb3, 0xc5, 0xc8, 0x2f, 0xc9, 0xc3, 0x39, 0x30, + 0x5a, 0x81, 0xba, 0x64, 0xbf, 0xd2, 0x34, 0x1d, 0x93, 0x85, 0x49, 0xa1, 0x35, 0xce, 0x94, 0x2d, + 0x8f, 0x9d, 0xa1, 0xaf, 0x60, 0xee, 0x82, 0x78, 0x11, 0x15, 0xda, 0x45, 0x57, 0x27, 0xd6, 0x56, + 0xd5, 0xa8, 0xec, 0xcc, 0x60, 0x0d, 0x47, 0x08, 0x66, 0x23, 0xee, 0x26, 0xe2, 0x77, 0x66, 0x70, + 0xbc, 0xd8, 0x9a, 0x83, 0x9a, 0x8a, 0x99, 0x3e, 0x2c, 0xf6, 0xce, 0x18, 0x97, 0x69, 0x38, 0xc5, + 0xd6, 0xd8, 0x24, 0x12, 0x54, 0x57, 0x8d, 0x64, 0x81, 0x1e, 0xc2, 0x42, 0xc8, 0xdd, 0xc0, 0x76, + 0x43, 0xe2, 0x69, 0x3b, 0xc7, 0x1b, 0xe6, 0xdf, 0xe7, 0xa1, 0x5d, 0xf6, 0x15, 0xfa, 0x06, 0xe6, + 0x59, 0x24, 0x55, 0x21, 0x48, 0xec, 0x7d, 0x54, 0x76, 0x47, 0xf1, 0x7c, 0xda, 0xe8, 0x94, 0x09, + 0x6d, 0x42, 0x9d, 0x72, 0xce, 0xf8, 0xe4, 0x95, 0xaa, 0xd3, 0x66, 0xfa, 0x06, 0x31, 0x68, 0x67, + 0x06, 0x27, 0x68, 0xf4, 0x7f, 0xd0, 0x24, 0xf1, 0x81, 0xac, 0xe4, 0x14, 0x10, 0xdb, 0xaa, 0x45, + 0x83, 0x22, 0xf4, 0xd5, 0x81, 0x5e, 0x40, 0x2b, 0x81, 0x65, 0x09, 0x77, 0x67, 0x7a, 0xe4, 0x14, + 0xbc, 0xb3, 0x33, 0x83, 0x17, 0x49, 0xc1, 0x5d, 0xdf, 0x42, 0x33, 0x31, 0xd8, 0x52, 0x42, 0x16, + 0x6f, 0x76, 0x33, 0x90, 0xf0, 0x6c, 0xc7, 0x12, 0x5e, 0xc0, 0x92, 0xcd, 0xfc, 0x30, 0x92, 0xd4, + 0xb1, 0x74, 0xe1, 0x9c, 0xbd, 0x81, 0x14, 0xdc, 0x4a, 0xb9, 0x76, 0x15, 0x13, 0xfa, 0x3d, 0xd4, + 0xc3, 0x11, 0x11, 0x49, 0x35, 0x6b, 0x6d, 0xfc, 0xff, 0x75, 0x09, 0xd4, 0x79, 0x19, 0xa3, 0x71, + 0xc2, 0x14, 0xc7, 0xaf, 0x90, 0x84, 0xc7, 0x46, 0x10, 0xa9, 0x2b, 0xf7, 0x5a, 0x27, 0x69, 0x3f, + 0x9d, 0xb4, 0xfd, 0x74, 0x8e, 0xd3, 0xfe, 0x84, 0x17, 0x34, 0xba, 0x27, 0xd1, 0x26, 0x34, 0xd2, + 0xbe, 0x66, 0xcc, 0x69, 0xcb, 0xcb, 0x8c, 0xdb, 0x1a, 0x80, 0x33, 0x68, 0xac, 0xd1, 0x56, 0x45, + 0x4a, 0x69, 0x9c, 0xbf, 0x5e, 0xa3, 0x46, 0xf7, 0x54, 0xb2, 0x45, 0xa1, 0x93, 0xb2, 0x36, 0xae, + 0x67, 0xd5, 0xe8, 0x9e, 0x44, 0x5b, 0xb0, 0x18, 0xb0, 0xb8, 0x6e, 0xd8, 0x24, 0x49, 0xd5, 0x05, + 0x95, 0xaa, 0x0f, 0xcb, 0xd7, 0x7e, 0x90, 0x03, 0xe1, 0x22, 0x0b, 0x7a, 0x06, 0xcd, 0x4b, 0xed, + 0x4d, 0xcb, 0x75, 0x8c, 0xe6, 0xd4, 0xdb, 0xca, 0xd5, 0x27, 0x48, 0xd1, 0xbb, 0x0e, 0xfa, 0x05, + 0x56, 0x84, 0x24, 0x71, 0xe7, 0x19, 0x91, 0x60, 0x48, 0x2d, 0x87, 0x4a, 0xe2, 0x7a, 0xc2, 0x68, + 0x29, 0x21, 0x9f, 0x5f, 0x5d, 0xb7, 0x62, 0xa6, 0xbe, 0xe2, 0xd9, 0x4e, 0x58, 0x30, 0x12, 0x13, + 0x7b, 0x5b, 0x4b, 0xb0, 0xa8, 0xc3, 0x91, 0x53, 0x11, 0x79, 0xd2, 0xfc, 0x19, 0x5a, 0x47, 0x6f, + 0x85, 0xa4, 0x7e, 0x16, 0xb1, 0x9f, 0xc3, 0xdd, 0xac, 0xf8, 0x58, 0x7a, 0xde, 0xd2, 0xc9, 0xde, + 0xa6, 0xe3, 0x24, 0x56, 0xfb, 0x71, 0xde, 0xc7, 0x9d, 0x49, 0x84, 0xc4, 0x4e, 0x5b, 0xd5, 0x78, + 0xc3, 0xfc, 0x4f, 0x0d, 0xee, 0x4e, 0x34, 0x24, 0xd4, 0x87, 0x9a, 0xcf, 0x9c, 0xa4, 0x80, 0xb4, + 0x36, 0xba, 0xd7, 0x76, 0xb0, 0xdc, 0x0e, 0x73, 0x28, 0x56, 0xcc, 0xef, 0x2e, 0x38, 0xf1, 0x70, + 0x13, 0x50, 0x21, 0xdd, 0x60, 0xa8, 0x72, 0x65, 0x11, 0xa7, 0x4b, 0xf4, 0x1c, 0xee, 0x08, 0x7b, + 0x44, 0x9d, 0xc8, 0x4b, 0x82, 0xa3, 0x76, 0x6d, 0x70, 0x34, 0x33, 0x7c, 0x4f, 0xa2, 0x9f, 0xe0, + 0xa3, 0x90, 0x70, 0x1a, 0x48, 0x2b, 0x60, 0x0e, 0xb5, 0x32, 0x7f, 0xe8, 0x8c, 0x28, 0x27, 0xd5, + 0x01, 0x73, 0xe8, 0xb4, 0x8e, 0xb4, 0x9c, 0x08, 0x29, 0x90, 0xd1, 0xcf, 0xb0, 0xcc, 0xe9, 0x39, + 0xe5, 0x34, 0xb0, 0xf3, 0x92, 0xdb, 0xef, 0xdd, 0xef, 0x50, 0x26, 0x66, 0x2c, 0xfc, 0x3b, 0x58, + 0x12, 0xea, 0x9e, 0xc7, 0x05, 0xed, 0xee, 0xf4, 0xaa, 0x5b, 0x0c, 0x07, 0xdc, 0x12, 0x85, 0xb5, + 0x39, 0xcc, 0x75, 0xb6, 0xf8, 0x3e, 0x10, 0xc0, 0xdc, 0x7e, 0xef, 0xe0, 0xa4, 0xb7, 0xd7, 0x9e, + 0x41, 0x8b, 0xb0, 0x70, 0xd4, 0xdf, 0x19, 0x6c, 0x9f, 0xec, 0x0d, 0xb6, 0xdb, 0x95, 0x98, 0x74, + 0xf4, 0xe3, 0xd1, 0xf1, 0x60, 0xbf, 0x5d, 0x45, 0x77, 0xa0, 0x81, 0x07, 0x7b, 0xbd, 0x93, 0x83, + 0xfe, 0x4e, 0x7b, 0x16, 0x21, 0x68, 0xf5, 0x77, 0x76, 0xf7, 0xb6, 0xad, 0x57, 0x87, 0xf8, 0x0f, + 0x2f, 0xf6, 0x0e, 0x5f, 0xb5, 0x6b, 0x31, 0x33, 0x1e, 0xf4, 0x0f, 0x4f, 0x07, 0x78, 0xb0, 0xdd, + 0xae, 0x9b, 0xa7, 0xd0, 0xce, 0x27, 0x99, 0xea, 0xa2, 0x13, 0xd9, 0x59, 0x79, 0xef, 0xec, 0x34, + 0xff, 0xd6, 0xc8, 0x9d, 0xe0, 0x28, 0x69, 0xf4, 0xcd, 0x64, 0xa4, 0xb4, 0x42, 0x8f, 0x04, 0x57, + 0x74, 0xcf, 0x7c, 0xbe, 0x26, 0xe8, 0x97, 0x1e, 0x09, 0xd0, 0x66, 0x36, 0xcd, 0x56, 0x6f, 0x52, + 0x94, 0x35, 0xf8, 0x03, 0x27, 0x39, 0xb4, 0x53, 0xf6, 0x43, 0x7d, 0xfa, 0x80, 0x52, 0x76, 0x60, + 0xdc, 0x9f, 0x8a, 0xb5, 0xea, 0x13, 0x68, 0x3a, 0xae, 0x20, 0x67, 0x1e, 0xb5, 0x88, 0xe7, 0xa9, + 0xfa, 0xdc, 0x88, 0x1b, 0x90, 0xde, 0xec, 0x79, 0x1e, 0xea, 0xc0, 0x9c, 0x47, 0xce, 0xa8, 0x27, + 0x74, 0x11, 0x5e, 0x9d, 0xe8, 0xd3, 0x8a, 0x8a, 0x35, 0x0a, 0x3d, 0x87, 0x26, 0x09, 0x02, 0x26, + 0xb5, 0x69, 0x49, 0xf9, 0x7d, 0x30, 0xd1, 0x37, 0xc7, 0x10, 0x9c, 0xc7, 0xa3, 0x5d, 0x68, 0xa7, + 0xcf, 0x24, 0xcb, 0x66, 0x81, 0xa4, 0x6f, 0xa4, 0xea, 0xd2, 0x85, 0x50, 0x55, 0xbe, 0x3d, 0xd2, + 0xb0, 0x7e, 0x82, 0xc2, 0x4b, 0xa2, 0xb8, 0x81, 0xbe, 0x86, 0x05, 0x12, 0xc9, 0x91, 0xc5, 0x99, + 0x47, 0x75, 0x1e, 0x19, 0x13, 0x76, 0x44, 0x72, 0x84, 0x99, 0x47, 0xd5, 0xf5, 0x34, 0x88, 0x5e, + 0xa1, 0x7d, 0x40, 0xaf, 0x23, 0xe2, 0xc5, 0x46, 0xb0, 0x73, 0x4b, 0x50, 0x7e, 0xe1, 0xda, 0x54, + 0xa7, 0xcc, 0xe3, 0x92, 0x1d, 0x7f, 0x4c, 0x80, 0x87, 0xe7, 0x47, 0x09, 0x0c, 0xb7, 0x5f, 0x97, + 0x76, 0xe2, 0x47, 0x85, 0x4f, 0xde, 0x58, 0x21, 0xe1, 0xc4, 0xf3, 0xa8, 0xe7, 0x0a, 0xdf, 0x40, + 0xeb, 0x95, 0xa7, 0x75, 0xdc, 0xf2, 0xc9, 0x9b, 0x97, 0xe3, 0x5d, 0xf4, 0x03, 0xac, 0x72, 0x72, + 0x69, 0xe5, 0x66, 0x86, 0xd8, 0x09, 0xe7, 0xee, 0xd0, 0x58, 0x56, 0xba, 0x3f, 0x2d, 0xdb, 0x8f, + 0xc9, 0xe5, 0x61, 0x36, 0x2c, 0xf4, 0x15, 0x14, 0x2f, 0xf3, 0xc9, 0x4d, 0xf4, 0x12, 0xd0, 0xe4, + 0xeb, 0xd9, 0x58, 0x99, 0x1e, 0x7c, 0xba, 0xbe, 0xf7, 0x32, 0x20, 0xbe, 0x6b, 0x97, 0xb7, 0xd0, + 0xb7, 0xb0, 0xe8, 0x06, 0x92, 0x72, 0x1e, 0x85, 0xd2, 0x3d, 0xf3, 0xa8, 0xf1, 0xd1, 0x15, 0xc5, + 0x74, 0x8b, 0x31, 0xef, 0x34, 0x9e, 0x35, 0x71, 0x91, 0x61, 0xda, 0x5b, 0x6b, 0x75, 0xda, 0x5b, + 0x0b, 0x3d, 0x85, 0x1a, 0x0d, 0x2e, 0x84, 0x71, 0x4f, 0x69, 0x58, 0x99, 0xc8, 0x95, 0xe0, 0x42, + 0x60, 0x85, 0x88, 0xdf, 0x4d, 0x92, 0x0c, 0x85, 0x61, 0xac, 0xcf, 0xc6, 0xef, 0xa6, 0xf8, 0x7b, + 0xcb, 0x80, 0xd5, 0x7c, 0xd4, 0x5b, 0xb1, 0x70, 0xee, 0x3a, 0x54, 0x7c, 0x5f, 0x6b, 0xd4, 0xda, + 0x75, 0xd3, 0x87, 0xfb, 0x59, 0xb6, 0x1d, 0x53, 0xee, 0xbb, 0x41, 0xee, 0xa1, 0xfc, 0x21, 0xaf, + 0x8e, 0x6c, 0x58, 0xae, 0xe6, 0x86, 0x65, 0xf3, 0x21, 0xac, 0x4d, 0x53, 0x97, 0x3c, 0xc5, 0xcc, + 0x5f, 0xe0, 0xf1, 0xb4, 0xe7, 0x54, 0x7c, 0x93, 0xb7, 0xf1, 0xa4, 0xfa, 0x4b, 0x15, 0xd6, 0xaf, + 0x96, 0xaf, 0x9f, 0x83, 0x9b, 0xe5, 0xd9, 0xfc, 0x5e, 0xd9, 0xe3, 0x27, 0xdc, 0x4b, 0x87, 0xf2, + 0xf1, 0x48, 0xfe, 0x65, 0xa9, 0x18, 0xbe, 0x93, 0x2b, 0x2d, 0x85, 0xcf, 0xa0, 0x79, 0x1e, 0x79, + 0xde, 0x4d, 0x67, 0x5b, 0x0c, 0x31, 0x3a, 0x9b, 0x69, 0xef, 0x28, 0xde, 0xd4, 0xd8, 0xda, 0x75, + 0xcc, 0x4a, 0x55, 0x92, 0x1a, 0xc2, 0xfc, 0x6b, 0xfe, 0xef, 0xc8, 0x89, 0x1a, 0x01, 0x6f, 0xe3, + 0xd2, 0x7f, 0x0b, 0x75, 0x35, 0x79, 0x29, 0x27, 0xb4, 0x26, 0x1b, 0x6c, 0x71, 0x66, 0xc3, 0x09, + 0xd8, 0xfc, 0x57, 0x05, 0x1e, 0xbc, 0x63, 0x9a, 0x1b, 0x4b, 0xad, 0xbc, 0x87, 0x54, 0xf4, 0x3b, + 0x68, 0x32, 0xdb, 0x8e, 0x38, 0x4f, 0xa6, 0x9d, 0xea, 0xb5, 0xd3, 0x0e, 0xa4, 0xf0, 0x9e, 0x2c, + 0xce, 0x58, 0xb3, 0xe5, 0x47, 0xdd, 0xfd, 0xdc, 0xdf, 0x84, 0xd4, 0x79, 0x3a, 0x84, 0x2f, 0xc0, + 0x9c, 0x16, 0x62, 0xfb, 0xc9, 0xaf, 0xb1, 0x5b, 0x4a, 0x2c, 0x87, 0x86, 0x72, 0xa4, 0x4e, 0x54, + 0xc7, 0xc9, 0xc2, 0x3c, 0x80, 0x4f, 0xdf, 0xa9, 0x57, 0x47, 0xf7, 0x13, 0xa8, 0x89, 0x30, 0x6b, + 0xf4, 0xcb, 0xe5, 0xae, 0x12, 0x92, 0x00, 0x2b, 0xc0, 0x67, 0xdf, 0x40, 0xab, 0xe8, 0x56, 0xb4, + 0x02, 0xed, 0xc1, 0x0f, 0x83, 0xfe, 0xc9, 0xf1, 0xee, 0xe1, 0x81, 0xd5, 0xeb, 0x1f, 0xef, 0x9e, + 0x0e, 0xda, 0x33, 0x68, 0x15, 0x50, 0x6e, 0x17, 0xf7, 0x77, 0x76, 0x4f, 0xe3, 0xf9, 0x67, 0xeb, + 0xab, 0x9f, 0x36, 0x87, 0xae, 0x1c, 0x45, 0x67, 0x1d, 0x9b, 0xf9, 0x5d, 0xa5, 0x86, 0xf1, 0x61, + 0x37, 0xfb, 0x27, 0x38, 0xa4, 0x41, 0x37, 0x3c, 0xfb, 0xcd, 0x90, 0x75, 0x8b, 0x7f, 0x2f, 0xcf, + 0xe6, 0xd4, 0xcd, 0x7c, 0xf9, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xbe, 0xd1, 0xc1, 0xb5, 0x2f, + 0x15, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/service/admin.swagger.json b/gen/pb-go/flyteidl/service/admin.swagger.json index 907fb741b..93c5148f9 100644 --- a/gen/pb-go/flyteidl/service/admin.swagger.json +++ b/gen/pb-go/flyteidl/service/admin.swagger.json @@ -4022,6 +4022,13 @@ "envs": { "$ref": "#/definitions/adminEnvs", "description": "Environment variables to be set for the execution." + }, + "tags": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Tags to be set for the execution." } }, "description": "An ExecutionSpec encompasses all data used to launch this execution. The Spec does not change over the lifetime\nof an execution as it progresses across phase changes." diff --git a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml index e1c05a664..94d28f629 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml +++ b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml @@ -3544,6 +3544,9 @@ definitions: labels: values: key: "values" + tags: + - "tags" + - "tags" launch_plan: domain: "domain" resource_type: {} @@ -3926,6 +3929,9 @@ definitions: labels: values: key: "values" + tags: + - "tags" + - "tags" launch_plan: domain: "domain" resource_type: {} @@ -4124,6 +4130,9 @@ definitions: labels: values: key: "values" + tags: + - "tags" + - "tags" launch_plan: domain: "domain" resource_type: {} @@ -4392,6 +4401,11 @@ definitions: envs: description: "Environment variables to be set for the execution." $ref: "#/definitions/adminEnvs" + tags: + type: "array" + description: "Tags to be set for the execution." + items: + type: "string" description: "An ExecutionSpec encompasses all data used to launch this execution.\ \ The Spec does not change over the lifetime\nof an execution as it progresses\ \ across phase changes." @@ -4431,6 +4445,9 @@ definitions: labels: values: key: "values" + tags: + - "tags" + - "tags" launch_plan: domain: "domain" resource_type: {} diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_spec.go b/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_spec.go index 4c0f659e3..3c9dc0ffd 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_spec.go +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_spec.go @@ -39,4 +39,6 @@ type AdminExecutionSpec struct { OverwriteCache bool `json:"overwrite_cache,omitempty"` // Environment variables to be set for the execution. Envs *AdminEnvs `json:"envs,omitempty"` + // Tags to be set for the execution. + Tags []string `json:"tags,omitempty"` } diff --git a/gen/pb-go/flyteidl/service/openapi.go b/gen/pb-go/flyteidl/service/openapi.go index 22f95da78..f8c612a29 100644 --- a/gen/pb-go/flyteidl/service/openapi.go +++ b/gen/pb-go/flyteidl/service/openapi.go @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x4b\x23\xbd\x57\x69\xba\x83\x4a\xc8\x3b\x94\x6e\x4e\x41\x19\x93\x45\x85\x4a\x67\x37\xf3\xaa\x70\x49\x64\x00\x94\x69\xf8\x38\xe6\x44\x06\x06\x71\xe4\xed\x5a\x09\x9d\x12\x7d\x93\x8f\x98\x26\x89\xd0\x78\x6f\xc0\xaa\x1d\x76\xb5\xee\x34\x12\x5c\x4a\x1b\xc5\x6e\xda\x59\x9e\x8b\xb4\x45\x5d\x3c\x83\xb8\x7d\x7e\x7d\x35\xae\x57\xc8\x0b\x9e\xb9\x5a\x79\xf6\x61\x63\xc2\x7a\x6b\x53\x2b\x2b\xe3\x15\x6b\xb1\x46\x6d\xbc\xe3\xd3\x8b\x73\x5f\x10\xaa\xd2\x75\xbd\x38\x5e\x88\x52\xde\x5e\x1e\xaf\x3e\xe3\xa0\x50\x5e\xa5\x89\x25\xa5\xf2\x56\x6f\x56\x39\x76\x76\x1b\x08\xba\xca\xd6\xaf\x3c\x6b\x65\x9a\x59\x15\xe2\xbd\xa3\x6d\x6a\x61\xd1\x11\x08\x5f\x2f\xed\xad\x06\x21\x46\xbf\x25\x15\x4e\xb3\x30\x7d\xd1\x61\x70\xda\x69\x9a\xa3\xd6\x76\xa1\xbc\x2a\x36\x78\x84\x4d\x64\x48\x75\x70\xb5\xad\x58\xcf\x7b\x74\x6f\x21\xc7\x77\x11\x12\xfc\x7a\xf9\xc0\xc9\xa2\x88\x80\x93\x56\x0e\x72\xe5\xac\x5b\x6c\xe8\x13\xe2\xe1\xd5\x5b\x37\x74\xdb\x84\x3f\x0f\xc3\x24\x08\x96\x36\xb4\x01\xf2\xe2\x2a\x39\x33\x6b\x98\x5a\xfd\x98\x4d\x66\xed\xa1\x2f\x68\x10\x5c\x35\xb6\x46\x57\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\xe3\x67\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\xce\x7b\xd3\x33\x98\x9a\x24\x4d\xb5\x32\x0c\x62\x3e\xe3\x87\x3c\x73\xf2\x7f\xe9\x2d\xa8\x46\x41\xa7\xfa\xc6\x0a\x5c\xff\xfa\x0b\x76\x48\x3e\x53\xa9\xf4\x1d\xdd\x10\xf7\xe8\x1a\x01\xe9\x01\x6a\x54\xcd\x89\xbd\xe1\x46\x1f\x06\xdf\x5d\xdf\xde\x0f\xcf\x46\x1f\x8a\x48\x77\x97\xca\xe5\xd1\x95\x1c\x58\x3e\x67\x23\xe6\x83\x53\x3d\x98\x30\xec\x25\xc2\x71\x5c\xa0\x04\x58\x85\xcc\xc8\x3f\x4b\x39\x72\x70\x2a\x56\x86\xa5\x2e\x69\xe6\x01\xf2\x79\xf6\xf5\x64\x2d\x71\x43\x95\x4e\x8e\xc9\x4a\x5a\x92\x3e\xb2\xa3\xcb\x26\xc4\x41\x55\x46\x6f\x25\xca\x01\xf5\x31\xf2\xec\xf4\x0e\xb8\x9d\x8f\xb1\xb9\x84\xd7\xe3\x76\x6e\x43\x36\xd8\xd4\x8f\xf4\x33\x89\x6f\x5b\xa4\xaa\x9d\x64\x87\x74\x8a\xaa\x6b\xdc\x85\x9c\xd1\x75\xb4\x67\x3f\x95\x07\xfd\x5d\x77\xb6\x74\x5d\xc0\x9b\x15\x50\xa5\x80\x53\xaa\x10\x46\x11\x11\x0a\x53\x86\xa6\x70\xb0\x59\xb4\x40\x00\x7e\x41\xc0\x1f\xfc\x47\x94\x52\x06\x59\xf8\xcb\x96\xf6\xa1\x3c\x8f\x35\x84\xd6\xcb\xf3\xab\x87\xfb\x92\xa8\xfa\xfd\xf5\x43\xb9\x40\xfa\xe0\xe7\xa5\xb2\x6a\xa5\x85\x65\x81\x37\xc1\x14\x8b\x8c\x3e\x8b\xd8\xea\x57\xa6\x71\xa2\xc9\x42\x91\x87\xdb\x8b\xad\xe4\xbb\x66\xc7\x53\x2b\xde\x76\x28\x5d\x35\xa3\x0b\x74\xf9\x34\x26\xd1\x2a\x44\xd0\xee\x74\x64\x22\x8a\xf4\x3a\x58\xcb\x9c\x45\x0b\xc3\x12\x65\x58\x58\x9f\x4e\x6c\x82\x89\xca\x55\xb6\x8c\xe6\xb5\x0c\x8d\xe1\x13\x51\x3f\xea\xab\x8f\xb3\x5d\x64\x14\x58\x51\x16\x7c\x8d\x64\xfc\x64\x1a\x5e\xe3\xa4\xd9\xa1\x2c\x49\x1b\x71\xc2\x32\xf4\x80\x6c\x0f\x21\x86\xc1\x91\xa9\xb6\x3e\xd0\xcd\xc1\x8a\xb8\xd8\x3c\xad\x92\x72\xa6\x29\xd2\x40\x93\x3a\x3c\xd3\xa0\x39\x3e\x35\x1f\x77\x44\x77\x0b\x22\xc4\x75\x5b\xc5\x52\xa2\xc1\xcd\x79\xc3\x5a\x5f\x54\xdd\x31\x5f\x56\x69\x98\xc4\x7b\x86\x76\x0d\x38\x14\xa4\xfa\xed\x05\xc2\x90\x9d\xe9\x76\x90\x42\xc6\x81\x7e\x53\xf6\xca\xef\x03\xf2\x6d\x93\xca\x50\x4a\xe1\x5d\x01\x72\xbb\x5e\x56\x5b\xb1\x0c\x6b\x02\x08\x85\x03\xb2\x29\x15\x21\x68\x4e\x3d\x5e\xf7\x20\x04\xd1\xe1\xa6\xf8\xac\xf5\xd3\xef\x0c\x58\xa8\x98\x4d\x17\x64\xa1\x1f\x0d\x45\x7b\xe0\x09\x80\xd2\x70\xc5\x0d\x5d\x9c\xad\xcd\x03\x0f\xa7\x1b\x52\xdb\x7a\x60\x44\xc5\xf8\x9c\x29\xd9\xe2\x3a\xe3\x0c\x5b\xbb\x03\x28\x51\xae\xea\x40\x53\x91\xba\xa3\x11\x0b\x82\x3f\xa4\x51\x7b\xf4\x19\x71\x85\x3e\xa0\x7a\x2c\x03\x90\x68\x48\x78\xf1\xc2\x4f\x69\x07\xaa\xe9\xe6\x6a\x5e\x2e\xd5\x51\xeb\xc7\x9e\x4e\x39\xc7\x2e\xa9\xcf\x59\x50\x6c\x4c\x5d\x68\x5f\x82\xf6\x02\x70\x7e\xdb\x31\x98\x76\xc1\x68\x81\x83\xd2\x6f\x41\x22\x78\xcc\x89\x64\x5f\x29\x9f\x36\x49\x13\x5b\x5e\x04\x57\x4d\xed\x5a\xaa\xc3\xd4\xb6\xbc\xfc\x80\xef\x00\xe9\x68\x5d\xc5\x21\x38\x56\x2b\xcd\x54\xce\x5f\x0a\x94\x10\xc6\xf5\x40\xa7\x6d\x16\xea\xcf\x19\x89\x36\x81\x63\xb9\xc1\x02\xa7\x44\x11\xb1\x2c\xb4\xa7\x5c\x98\x19\x44\x1c\xb7\x83\xb6\x5f\xb3\x8b\xa6\x6a\x45\xb5\xbc\x89\xd7\x6e\x2f\x56\xc1\xab\xf8\x59\xac\x85\x24\xa5\xa7\xf1\xa3\xb5\xa2\xaf\x39\x0b\xdb\x4f\x31\x0d\x1b\xb9\x14\xa0\xe9\x6c\x3b\xa7\xd7\x81\x15\xb9\xaf\x01\x74\x94\x42\x6f\xf6\x04\x4f\x64\xf5\x28\xdb\x80\x44\x56\xf1\xd2\x9d\xf0\x6e\x97\x2d\xe0\xd2\x51\x2b\x87\xaa\x94\x87\x00\x54\x02\x2a\x95\xc1\xd4\x68\x06\x03\x01\xa1\xa5\x29\xda\x30\x70\xa1\x59\xa8\xb8\xc2\xa0\x6b\x25\xab\x6a\xa1\xa6\xca\x72\xad\xe0\x71\xbb\x02\x4a\xe8\x25\x9a\x5d\x4b\x34\xab\x48\xb9\x14\xa9\xaa\xa9\x93\x88\x0a\x66\x8b\x2d\xa0\x6c\x93\xed\xcb\x13\x84\x3c\x1e\x7b\x45\xda\x2a\xac\x70\xf5\x53\xe6\xff\x55\xe6\xe0\x8e\xa8\x43\x52\x6d\x4a\x50\x3c\x0a\x5c\x50\xe0\x81\x4a\x42\x69\xc0\xc6\xa8\xc0\x68\x4d\x48\xa1\xb1\xf2\x9f\x5f\x19\x07\x16\x24\x0a\x2f\x78\x8e\x9e\xa9\x9c\x23\xc5\x47\x0c\x62\xee\xbc\x37\x40\x71\x64\x5e\x3c\x80\xb7\x00\x52\x40\xe6\x93\x94\x2a\x84\x83\x19\x96\x4c\x92\x07\xf6\x3c\xeb\x0f\x60\xc6\x8d\x39\xeb\x4d\x70\x37\x2b\x0e\xcd\x06\xf6\xb5\xa2\x91\x6d\xd3\xd2\x83\xf8\xe0\x97\x4d\x4c\x0f\x34\x9e\x50\xc3\x6c\x3c\x73\x7d\x66\x3a\x6a\xb6\x36\x58\x00\x4e\x40\x49\xa5\x52\x55\xee\x16\x6b\xe8\x59\x91\x95\x5e\x6c\x44\xa7\xb4\xf4\xe2\xf5\x5d\xe4\xa5\xb7\x95\xfc\x5a\x96\xa7\xe8\x3e\x69\xb1\x7f\xbb\xfc\x57\xc5\x5d\x10\x7a\x28\x29\xdd\xb4\x4a\x4a\xfb\x86\x10\x56\x04\xd7\x6f\x1e\xaa\xbd\x8e\x3a\x58\xe4\x3a\x85\x54\x14\xa4\x2e\x96\xf1\x55\x48\x95\xf3\x33\xae\x20\x3f\x25\x82\x72\xe8\xb5\x9c\xc9\x11\x6b\x96\x40\x96\xf3\xc4\x6d\xd3\x1d\x76\x8a\x24\x16\x9c\x3f\x37\x0b\x6b\xd1\xfa\xc9\x07\x8c\x19\x65\xd9\x16\x36\xaf\x8a\x98\x85\x8b\xaf\x2d\xd0\x47\x0b\x1e\x9b\x24\xef\x36\x9c\xca\xe6\xa1\xd7\x92\x11\x56\x9e\x0b\x7b\xe9\xee\x50\xb5\xab\x71\xe7\xce\xb9\x1b\x5e\x46\xb6\xdc\xd8\x05\x1f\x3b\x35\xbe\xe2\xa9\xdd\xa4\x60\x2b\x00\x74\xee\x0c\x56\xb4\x9a\xe9\xaf\x1b\x3f\x00\xef\xae\x1d\x3a\x36\x91\x2e\x1e\xec\xba\xb2\x25\xa5\x09\xdb\x42\xf8\x2f\x30\xe9\x75\x8b\xec\x06\xde\x46\x61\x23\x67\x69\x68\x37\x80\xea\xba\x36\xe0\xb0\xc2\x87\xbd\x68\x97\xb3\x98\x08\x46\xb0\x9a\xbf\x5e\xbe\xc2\xe9\xb6\xc6\xe9\x30\xc0\xfe\x45\x73\x17\x4e\x77\x52\x61\xbd\x92\x0f\xb0\x66\x2a\xc0\x1a\x71\xf5\x45\xbd\xdd\x9a\xe2\xd8\x60\x34\x0c\xe0\x5c\xd6\xa1\xd2\xad\x52\x1a\x9a\x95\xb9\x97\x49\xee\x68\xb0\xfa\xd4\xd2\x3a\xf4\x61\x0f\xab\x14\xaf\x58\x92\x2f\x22\x8b\xe2\xe5\x03\xfb\x97\xd5\x43\xce\x83\x58\x7f\x28\x4a\xad\x30\x65\x96\x7b\x2d\x0b\xef\xd7\x12\x65\x8a\x9b\x22\xfa\xf7\x3e\x57\xe4\x8b\x4f\x15\xe9\x13\x07\xfa\xc4\x81\x86\x3d\xea\x13\x07\x10\x7a\x6f\x89\x03\xcb\xcc\x9f\xde\x23\x07\x75\x2b\x4b\xc5\x62\xcc\xfe\xae\xd0\x22\x37\x0f\xe8\x77\x16\xc4\x30\x1a\xca\xfe\x62\x7f\x68\x0c\x88\xaa\x7d\x56\x9d\x6d\x68\xcd\x64\x8b\xaa\x53\x00\x8b\x38\xb1\x88\x6e\x36\x5c\xb9\x6c\x7d\x5a\x66\x28\x1d\xb1\xef\xf9\x33\x79\x22\xe2\x00\x61\x85\x52\x2e\x15\xf0\x61\x17\x1d\x03\x07\xa1\x04\x0e\x6e\xa2\x20\x30\xba\xc2\x29\x89\x4d\xed\xc0\x20\xa8\xd1\x9a\x6b\xad\xa3\xb5\x09\xb8\x14\x30\x38\xcd\x36\xb8\xa8\x89\x11\x33\x81\x86\x26\xb8\x0d\x64\x05\xea\x26\x06\x04\xf3\x3b\xef\x06\xfe\xdd\x11\xba\xd7\xf7\x13\x95\xe5\xf1\x06\x38\x66\x6d\x63\x1b\xb1\x99\xe0\x79\xe6\x2d\x68\x7c\x62\x8a\xc8\x9a\xd8\xa7\xba\x1b\x18\x06\xe3\x7c\xc0\x11\x8e\xb5\x26\xbe\x9c\x70\xde\x24\x06\x75\x23\x30\xa0\x90\x80\xf4\x31\xf4\x81\x75\x36\xd0\xdd\x78\x6f\x03\x08\x94\x65\x90\xe6\x2f\xe4\x5a\x3e\x23\x12\x6c\x42\xde\xe6\x5e\xca\xc8\x2e\x67\xfd\x37\x8e\x73\x99\x45\xd4\x7b\x2d\x9c\x65\xbf\x19\x50\xa0\xe8\xdc\x46\x7c\x99\x74\x4f\x7b\x4f\xbc\x98\xad\xb4\x73\xec\x6c\x1b\xbf\xb8\xc9\x45\xc6\x41\x12\x4b\x16\x0e\x00\xc1\x62\xa6\x65\x3c\xcb\x4d\x54\x1b\x0d\x83\x9c\x1a\x29\x9b\x4a\x75\x89\x55\x34\xd7\x9c\xbb\xc0\x0e\xdb\x51\xb4\x5f\xc1\x95\x5f\xd6\x7e\xda\x30\x83\xd3\xb0\xf7\x16\x87\x42\x07\x7b\xba\xb9\xf7\x5d\x70\xbd\x93\x24\x52\xdd\x9f\x71\xba\xd9\xd2\xd0\x81\x55\xd4\x7d\x62\x9f\xe8\x89\xae\xa2\xa2\x55\xe3\xef\x46\x5b\xe5\xda\x55\x3b\x8f\x23\xdc\x02\x8c\xe5\xcc\x42\x5f\x15\x2f\xda\x5a\xa7\x2d\xce\x7f\x41\x37\xcb\x01\xb2\x78\xf3\x4f\x5a\x1c\xf1\xf6\xd6\x14\x67\x5a\x89\x50\x5c\xdf\x92\x62\x66\xe4\x58\x13\x25\x8b\x30\xca\x05\x75\x67\xbf\x92\x5d\xdd\x4e\x1d\x60\x9f\x3c\x0e\x6b\x13\x45\x38\x28\xdb\x66\xdc\xfd\x38\x52\x39\xf6\x61\x89\x40\x13\xae\x9c\xb8\xc9\x24\x77\x6e\x75\xe1\xc4\xbb\x86\x3d\x5d\x49\xd8\x5b\xec\x32\x6e\x42\x0a\xec\x74\xd2\x28\x9b\x05\x30\x83\xcd\x36\xe2\x2e\x55\x04\x1a\xbf\xec\x56\x09\xa1\xf1\x53\x27\xfb\x6c\xf2\xed\x12\x18\xa4\x8d\x23\xb3\x4b\x51\xee\x36\x0c\xd6\x4a\x4f\x21\x00\xa4\xb5\xdf\x01\x8e\x2b\x05\x37\x3d\xb6\xd2\xd4\x7f\xf9\xbf\x4c\xd5\x29\xb3\x34\xff\x85\xb8\x18\x31\xf3\xfb\x81\xaf\xf8\xa0\x5f\x28\xa0\x54\x71\x4a\x0a\xb0\x49\x51\x86\xa5\x03\x70\x0e\x0b\x2b\x66\x60\x73\x3d\xe0\xbd\x1e\xc3\x63\x3e\x21\x82\x11\x3d\x34\x97\xc6\xef\x99\x59\x8a\x19\x9e\x01\x48\xef\x01\xc4\xc5\x81\xb8\x5a\xa8\x22\x86\xa4\x4d\xe5\x40\xe0\x56\x9a\x59\xda\x6c\xdb\xa2\x82\x2e\xf4\x69\x44\x59\x8b\x11\x5a\x04\x57\x34\x53\xff\xad\xed\x7f\x33\x89\xfd\x7e\x70\xf7\xc3\xf8\x76\x78\x77\xfd\x70\x7b\x5a\x12\xdb\x4f\x2f\x1e\xee\xee\x87\xb7\x8d\xcf\x8a\x4c\xd5\xbf\x3e\x0c\x1f\x5a\x1e\xb9\x06\x2e\x06\xdf\x0d\x4b\xe5\xa8\xff\xfa\x30\xb8\x38\xbf\xff\x79\x7c\xfd\x71\x7c\x37\xbc\xfd\xf1\xfc\x74\x38\xbe\xbb\x19\x9e\x9e\x7f\x3c\x3f\x1d\xe8\x2f\xc3\x77\x6f\x2e\x1e\x3e\x9d\x5f\x8d\x5d\xd0\x71\xf8\xe8\xa7\xeb\xdb\x1f\x3e\x5e\x5c\xff\x34\x0e\xba\xbc\xbe\xfa\x78\xfe\xa9\x69\x16\x83\xbb\xbb\xf3\x4f\x57\x97\xc3\xab\xe5\x65\xaf\x9b\x57\xa3\xb5\xa2\x6e\x70\x91\x05\x46\xa3\x40\x4c\x9a\x2c\x2c\x69\xd3\x5f\xc1\x75\x71\x63\xe8\xf1\xf0\xc0\xfd\x65\x8a\x54\x1f\x6a\x16\xe8\xbc\x62\x05\xf7\x18\x31\xef\xb6\xf4\x97\xaa\xc2\x33\xe9\x12\x8f\x4b\xa3\x3d\x41\x03\x38\x2b\xa0\x30\x94\x3a\x85\xbc\x06\x3f\x52\xe7\xe8\x06\x3a\x4c\x68\x4a\xc1\xe7\x8d\x0e\x51\x75\xc3\xcb\x0d\xda\x39\xc1\x10\xac\xd7\x2e\x5e\x76\x1a\x64\x35\xa7\x19\x28\xe5\x04\x39\x0e\x4d\x8c\x39\xc1\xa0\xb8\x2e\x18\x4e\x69\x54\x4d\xc0\x00\x20\x53\x54\x80\x76\x54\x5b\x2c\x11\x58\xb9\xe5\x39\x41\x3f\xfc\xa5\x18\x14\x78\x30\xac\xe6\x9d\xd7\x6a\xd3\xd9\x07\x22\x37\xab\xba\x8a\x3c\x4b\x3d\xb9\x63\x6e\x4d\xcb\x70\x6e\x6d\x0d\x6c\x70\x37\xe5\x2c\x00\xee\x2a\xf9\x9e\xf4\xf1\x36\x33\xaa\xd0\xf8\x09\xba\x03\xd0\x10\x59\xa8\xee\x7a\x17\xb3\x24\x9f\x51\x86\x68\x9a\x25\xa4\xa8\x9e\x3e\x21\x73\xfc\x44\xb9\x2b\x04\x61\xea\x65\xc0\x3a\x5a\xd1\x0a\x1d\xa2\xd6\x83\x72\x82\x06\x71\x2c\xcb\x0c\xae\x44\x39\x8e\x65\x1e\x96\x87\x1d\x62\x6d\xb1\xd8\xb3\xcd\x0a\x1d\x15\x47\x0e\x56\x6c\xf7\xb0\x28\x75\x76\x58\xbe\x7b\xb7\xb8\xfe\xf5\x0a\x8e\x1d\x29\x8f\x37\x12\x06\xee\xb1\x7c\x74\xac\x79\x95\x40\xe0\x00\x6a\xb6\xeb\xd1\x22\xd5\x74\xed\xd4\xaf\xec\x18\x0e\xda\x66\x7d\xb6\xe2\x2b\xaf\xe8\xd2\xcd\x38\xa9\x14\xc1\xea\xdc\x5f\xa9\x88\x56\x63\x67\x3b\xf5\xf6\x34\x4b\x63\x70\x24\xc7\x9e\xfe\xd7\x98\xc7\x0d\x7c\x7a\xed\xbf\x5c\x2a\xb2\x8d\x83\x75\x5b\xd7\x07\x54\x4b\xd1\xb5\x7e\xa0\xa5\x74\xb8\x23\xa0\xa4\xee\xc2\x20\x94\x30\xa0\x11\xb8\xfb\x30\x65\xb6\xb0\x0d\xf1\xfe\x28\x57\xca\x59\x9f\x63\x5f\x6c\x0d\x4f\xf8\x53\x49\xb9\x4c\x89\x94\xb8\x05\xae\x24\x30\x89\x6d\xc3\x18\xfc\x09\xb5\x1f\x76\xa4\x27\x77\x26\xef\xf5\x57\xcb\x8c\x3e\xb7\xa1\x66\xec\x26\xaa\x05\xd6\xd8\xc5\xd9\xa2\x6b\x93\x6d\xa7\xf9\xcb\x41\x11\x4a\xc3\x45\x10\x61\xd4\xe6\xfe\xe9\x68\x56\xab\x2e\x58\x63\xbd\xa2\xd0\x85\xb7\x7e\x04\x4e\xd0\xfa\xc6\xd8\xd2\xd6\xaf\x82\xcb\xeb\xb3\x06\xd5\x95\xfc\x9d\x61\x2d\xe7\x88\xa7\xa9\x91\x0b\x4a\xb6\xd4\x03\x84\x4d\x92\x63\x21\x4d\xc9\x3c\x9a\x1b\x2f\x93\xbe\x32\x0e\x46\xec\x39\xd8\x90\x52\x18\xf0\x20\x6c\x09\x70\x39\x3f\xeb\xe3\x46\x9f\x4a\xc1\xd5\x20\x32\x52\x88\xf4\x0d\x08\xc1\x38\x04\x8b\x42\x4c\x2b\x08\x3c\xd8\xaf\x2d\x48\x7d\x83\xaa\x7b\x95\xf5\x6d\xab\xbd\xe7\xe7\x16\x94\xbc\xdb\x42\x53\xee\x3a\x84\xa0\xea\x5e\xd3\x08\x76\x50\x74\xef\x55\x81\xb2\x7d\xb2\xa6\xc9\xed\x4d\x27\x16\xa1\x42\x4f\xd7\xad\xf6\xef\xdd\x8c\x7e\x6f\xfc\x0e\x79\x0b\xa4\x49\xd0\x9a\xc7\xca\x46\x87\x5a\x66\x75\xa9\xf6\x36\x10\x43\xa2\x43\x83\xbf\xf7\x15\xc4\x59\x0e\x6e\xce\xbf\x3a\x40\x5f\x85\xb9\x66\x5f\x6d\x74\x00\xed\xb8\x6d\xe1\x3d\xd0\xa6\x4a\x09\x07\xe5\x63\x07\x7b\x55\x39\x89\x76\xcf\xec\x41\x44\x6d\xe7\x50\x7f\x59\xfa\x06\x9c\xd3\x50\x48\xce\xf8\x6f\x7d\xb8\xb3\x75\x01\x19\x19\x97\xca\x86\xb5\x8b\x47\x6c\xb2\xa8\x3a\x79\x0e\xbc\x97\xa7\xf3\x29\xdd\xba\x38\x9a\x6e\xaf\x9e\x9c\xbc\xe3\x30\xdc\xe5\xf7\xc1\x8a\x74\xe7\x81\x89\xb8\xe6\xd3\x80\x8b\xb5\x45\x29\xf4\xf1\xeb\x4d\xb3\x2a\xd9\xcb\xdc\x62\x36\x6e\xca\x2a\xf9\xe7\xbd\x91\x5b\x87\xa0\xef\x41\xd3\x8a\xd8\x78\xff\x16\xe1\xba\xa7\xb2\x97\xa5\xb2\x5d\xe4\x3b\x94\x07\xb7\xfe\x05\x7a\x6a\xe4\xb8\xa0\x19\x67\x70\xd5\xca\x84\x67\xf0\xa5\x0a\x7a\xab\x4b\xcf\xae\xe9\xf3\x0d\xd6\x64\xb5\xd3\xf7\xce\x04\x0e\x18\xb7\x6b\x7d\xac\xd5\xa1\x0e\x94\x2d\xe7\xc3\xa9\xc9\x6d\x54\x34\x25\x07\x88\xb3\x64\x11\x04\x3b\xd8\xf3\x0a\xe4\x66\x62\x94\xe6\x84\x0a\xd7\x89\x45\x18\x5c\x2b\x19\x7e\x4d\x69\xbc\x8d\x46\xb6\x88\x34\xb9\x1a\x5c\x0e\xcf\xc6\xc3\xab\xfb\xf3\xfb\x9f\x1b\xd0\x23\xcb\x8f\x1d\x80\x64\xf0\xc2\xdd\xcf\x77\xf7\xc3\xcb\xf1\xa7\xe1\xd5\xf0\x76\x70\xbf\x02\x5c\x72\x59\x67\x6d\xc0\x85\xb9\x6c\x52\xdf\xd6\x01\x2f\x74\x66\xde\x86\xde\xeb\x10\x93\x41\x27\x94\xb4\xc0\x4c\x9a\xc4\x7f\x16\x13\x81\x62\xf2\x44\x12\x9e\x15\x66\xd5\xc6\x05\x0b\xf0\x27\x1b\xda\x5f\x86\x41\x09\x6d\x56\xd7\xf8\x04\x99\xaa\x69\x41\xe1\x58\xdf\x20\x88\x7c\x58\x10\xf6\x95\x42\xe4\x73\x96\xd0\x88\xaa\x20\x31\x90\x0b\xeb\x5e\x31\xee\x43\x88\x4e\x5d\x41\x5c\x3b\x8b\x46\xd9\xb9\xce\x1f\x7a\xd2\xeb\xda\xbe\x3f\x51\x1e\x0f\x6d\x65\x29\x9e\x1d\x28\xf6\x2d\x4e\xe3\x1a\x5c\xdb\x06\xa3\x7b\x09\xf3\x40\x3d\x43\xc7\x26\xf7\xb5\x40\xb9\x35\x0f\x72\xf5\x6d\xb8\x2c\x4e\xa6\x74\xae\x97\x07\xca\x74\xa3\xd4\x37\x0e\x77\x29\x95\xa8\xdc\x01\xee\x86\x8d\x5d\x5f\x33\x60\xa1\x56\x79\x85\x99\x98\x53\x8c\x04\x49\xb9\xd2\x0a\x98\x89\x08\x38\xd0\x42\x15\xc5\x09\xfd\x15\x10\xaa\x04\x39\x0a\x22\x28\x1c\xae\x57\xe1\x3e\xb0\xe8\x11\x47\x23\x76\x36\xbc\xb9\x1d\x9e\x6a\x86\x74\x84\x1e\x24\x80\x4f\x95\xa6\x7e\x66\xc9\xdb\x88\x63\x61\x24\x03\x65\x52\x11\xdc\x16\x0c\x46\x84\xe0\xa2\x3b\x7f\xf0\xfd\x0d\xe1\xbb\x66\xf2\x86\x67\x25\xdb\x94\x33\x00\x5c\xb5\xd6\x17\x0e\x72\x06\x76\x9e\x92\x75\x8b\x9f\x4b\x2b\x12\x82\x6f\x80\x24\x52\x5e\xf5\x17\x5c\x6d\x80\xef\xec\x3e\xbf\x52\x9f\x37\xf0\xed\xb2\x79\xde\x43\x88\x9d\x54\x05\x16\xa8\x81\x0b\xf5\xf5\x63\x2a\xf3\x6c\x15\x15\xc5\x5b\x00\x75\x54\x48\x7f\x42\x66\x98\x21\x91\x33\x56\x01\x87\x0d\x2d\x6d\xf5\xa0\x99\x75\x8f\xaa\x5e\x33\x9c\xf2\x9c\x81\xd2\x00\x61\xac\x0d\x83\x91\x19\x61\x6a\xc5\x60\xde\x0a\x86\xa5\x32\xd4\xfd\x45\x62\x69\x18\x68\x1b\x18\x4b\x93\x3f\x09\x8a\x18\xaf\x77\x2d\xbb\xa0\xbc\x92\x53\x49\x1f\x2a\x7f\x3f\x37\x6b\xd9\x58\x3e\x6e\xdd\xdd\x3d\x96\x8f\xab\xbb\x8a\x49\xf4\xb8\xee\x65\x53\xcd\xcc\x4c\x6c\x0d\xe8\x9a\xb1\x6f\xa1\x9f\xda\x22\x27\x50\xfa\x3b\x7a\x44\xdf\xdf\x5f\x5e\xa0\x29\xd5\x72\xaf\xbe\x56\xae\xb0\x96\xb1\x1f\x44\xe2\xec\xc2\xd6\xb6\x9a\x8b\xc4\xdf\xbd\xb0\xf1\x4e\x94\x0a\xa4\x04\x7d\xa3\xe1\x19\x71\xc6\x5e\x61\xb1\xf6\x2a\x45\x4e\x04\x66\x31\x4f\xcd\x3c\x8e\x65\x3e\x9d\xd2\xcf\x47\x0a\x8b\x6f\x5a\xd6\xc3\x44\x55\x8c\xff\xce\x27\x63\x3d\xa2\x2d\x2f\xe2\xa6\xe6\x90\x2d\x4d\xec\x97\xcd\xce\xec\xcc\xbc\xfb\x7f\xf9\x04\x72\xdd\x33\xc1\x01\xff\x0f\xbc\x73\x36\x52\xc1\xbe\xe2\x28\xe9\x08\xb9\x04\xaa\x12\xc4\x49\xc4\x85\x20\x36\x45\xde\x54\xe9\xcc\xb0\x50\x14\xac\xb5\x0e\x22\xa5\x84\x8d\x5f\x6c\x51\x58\x3c\x7b\x8e\x0b\x1c\xea\x09\x21\xe0\xe0\xc9\x68\xb2\x9e\xd2\x7b\x5a\xf2\x4d\x56\x4e\xa0\x8d\x3c\xb5\xa8\x99\x60\x90\x59\x29\x62\x0d\x9f\x08\x53\x3b\xd1\x4f\xa0\x89\x86\xa4\xfd\x6e\x5e\x06\x53\x2c\xf3\xfc\xac\xb8\xdc\x5c\x48\x6f\x18\xd5\xa4\x04\x86\x7b\xde\x26\x4a\x59\x97\x7a\x9b\xa3\xff\xa9\xb3\xef\x18\x5e\xad\xaf\xcb\x8a\xd0\x78\xbb\xda\x45\xd1\xec\x22\xac\xd5\x01\xfb\x6f\x08\xe3\x23\x89\xb1\x62\x04\xf0\x11\x56\x39\xad\xee\xb9\xe9\x53\xd3\x56\xa5\xcb\x95\x5b\xbe\x01\x66\x4d\xa9\x99\x4f\x04\x52\x3a\x77\x11\x88\xbe\x4e\xea\x3e\x0c\xe4\x41\x24\x10\x42\xbd\xd4\x8a\x65\x0a\x76\x6b\xce\xe7\x25\x3b\xdc\x41\x46\x37\x83\xd1\x42\x23\xc9\x04\x89\xf4\x55\x76\x82\x6e\x12\xa2\x25\xaf\x5c\x4b\x5f\x79\x92\x38\x7c\xaf\xe5\xd2\xe1\x5a\x98\x74\x2f\x3e\xaf\x40\xf7\x58\x32\x31\x87\x6f\xb7\x7c\x66\xc1\x1a\xec\x1e\x70\x21\x58\x5f\x30\x21\x83\x21\xb1\xac\x45\x02\x87\x5f\x98\xb8\x59\x30\x25\xe1\xd2\x45\x46\x7f\xd5\xec\x57\x10\x39\xe7\xad\x49\x8e\xe1\x6c\x5f\x66\x0e\x6e\x29\x5f\x70\x12\xee\x3e\x6c\x8b\xab\xee\x20\xd7\x54\xee\xc0\x92\x88\xb3\x6c\x8a\xbe\xf6\x83\x8f\xfe\xb0\x68\xab\xf6\x6e\xb5\x43\x83\x5b\xb2\x30\xb5\x85\xc8\x67\x85\xeb\xa2\x50\x66\x16\xc6\xf7\xea\x3f\x2f\x0c\xc8\x45\x4a\x00\x55\xb2\xa8\xdf\x86\xf4\x5d\xdb\xb6\xc5\x7a\x9e\xe3\x5c\xac\x05\x49\x51\x60\x96\xaf\xc3\xb9\x6d\x32\x4a\x31\x2c\xbd\x08\xcd\xec\xd2\x96\x92\x00\x31\xda\x86\x1a\xc9\x12\x0e\x9c\x25\x1b\xb3\x8c\x8d\x2a\x5e\x3b\x53\xde\xd6\xad\x06\x52\x72\x21\xca\xbc\x94\x77\xad\x44\x81\xa5\x09\xf4\xc8\x62\xeb\x23\x8b\xd9\xba\x22\x9e\xf6\x00\x07\x50\x09\x48\xfc\x2f\x1c\x68\x55\xc1\xc1\x1a\xbd\x57\x65\x3e\x95\x76\xa7\x53\x9a\x53\xe9\x0b\xcd\x4b\xce\xb6\xf4\xc0\xe9\xc9\x2c\xc6\x90\x38\xba\x4d\x14\x4e\x69\xfe\xc6\x7b\x00\x6d\x92\x18\x19\xf4\x02\x83\x7b\x6c\xd7\xce\x7b\x4e\x32\x2c\x08\x53\x23\x76\xab\x47\x61\xbe\x28\x22\x31\x5c\x1c\x8e\xc3\xa2\x87\xea\xaf\x53\x84\xed\x57\xb0\xe8\x6d\x81\x70\x72\x6c\x5e\x02\xd5\xf4\x05\x93\xec\xbf\x33\xef\x18\xcc\x03\x8b\xf9\xa3\xa7\x4a\xa7\x85\x1a\xaf\x05\xc8\x68\x4e\x01\x72\x20\x26\xd2\x5e\x48\x54\x59\x4c\x09\x2f\x7e\xe7\xc4\xa1\x2f\xc3\x67\x9e\x7f\x35\x31\x6c\x67\x28\x60\xce\x40\x27\x47\x2c\xe8\x63\x09\x58\xa7\x51\xd6\x37\x54\x25\x60\x9f\x69\xec\x1d\x5f\xf0\x4f\xb3\x43\x5c\xd0\x19\x65\x41\xc9\x24\x3b\xbd\x14\x67\x60\xde\x35\x67\x90\x4f\xfd\x9d\x76\x6f\xb3\x0c\x8e\x60\xc4\xff\xf3\xdf\x7f\x3b\xa2\x6d\xde\x0f\x39\xb6\x2b\xb0\x0f\x3b\xb9\xde\xb6\x84\x3b\x1f\xa0\x88\xb4\xa0\x53\x04\x3a\xad\x2c\x65\x4e\x14\xbf\xda\xcb\x4d\x13\x0d\x57\x73\xe3\xee\x2d\x93\x3b\xf8\x46\x44\xbe\xbc\x8a\x40\xc0\xe2\x8a\x80\x80\xc2\xeb\x1b\x04\xdd\xba\x1a\x11\x26\x58\x52\xb7\x5f\xb9\x50\x2a\x0c\x2a\x00\xf3\xdb\x26\x38\x71\x8e\xe5\xcb\x45\xa0\x34\xd6\x36\x32\x46\xe3\xf0\x8e\x5c\x15\x8b\x62\x06\x69\x92\x1a\xf5\xae\xe4\x92\x08\x73\xa0\x3d\xea\x93\x25\x9e\x10\xaa\x10\x42\x11\x57\xb8\xd4\x48\x8a\xe9\x5a\x61\xf3\xfa\xfd\x66\x20\xc5\x92\x4d\x1d\xcf\x88\x18\xc7\x79\x29\x46\x7a\x55\xdb\x37\xfa\xa3\xb3\x5c\x2d\x56\xb7\x2f\x13\x5c\xaf\xed\xb2\x0c\xbc\x52\xbf\xdf\xd2\xec\x6a\xc1\x30\x88\x64\x29\x0b\x87\x2d\xd0\x90\xa4\x02\x0d\x69\x43\x2b\x4b\x96\x00\xb8\x68\x18\xd4\xd5\x0f\x14\x06\x7b\x13\x19\x00\x6b\x18\x39\x9a\xe4\x85\xe5\xc4\x97\x04\x88\x8f\x46\xec\xa3\xa9\xa9\x01\xca\x8c\x19\x40\x04\x79\x2d\xe4\x73\xc6\x25\x29\x25\x5a\x35\xc0\xfc\xdb\x44\x49\x3b\x8c\x66\x99\xb4\xf8\x68\x7b\x91\xf4\xcd\x41\x3e\xeb\x1b\x5e\x9f\x72\x33\x05\x6e\x25\xf5\x44\x34\xa3\x9a\x76\xc6\x8d\x27\x6d\xfd\xa9\x77\xad\x12\x53\x84\x2e\x01\xdc\x93\x4a\x16\x07\xc8\x4f\xaf\x42\x10\x09\x79\x22\x60\x35\x86\x31\x86\xc5\x1c\xca\xe6\xab\x16\x76\xb2\xea\x00\x15\x59\x8e\xc0\x16\x50\x5c\x1d\x41\x39\x17\xac\x89\x16\xcb\x59\x2e\x5b\x27\x64\x35\xc5\x5f\xac\x21\x85\x0e\xc2\xa2\x16\x0b\xa2\x10\xf9\xac\x88\x2d\x7b\x79\xef\x52\xe6\xea\x51\xf6\xa8\x39\xeb\xa7\x5d\x44\xda\x3d\x55\xd4\x26\x62\x13\xa5\x5d\x4e\x60\xec\xee\x7d\x9b\x23\x37\xc7\x2c\xb6\x89\x9f\x56\x96\xd6\x32\x05\xcc\xce\xd8\x96\x7c\x48\xbc\x4d\x5f\x0c\xd0\xc0\x4d\x9b\x06\xb6\x1c\x2e\x32\xa7\x17\x69\xc9\x1c\xa2\x08\xb8\xd0\x02\x6a\xce\x14\x4d\x34\x71\xd8\x31\x68\xad\x39\x67\x1e\x8f\x0f\x02\xb8\xdb\x20\xdf\xa8\x94\x94\xcd\xc6\x76\x25\x5d\x0e\x63\xb7\x8b\xa1\x4c\x53\x97\xa6\x29\xf3\xe3\x77\xae\xa1\xe5\xb6\x63\x43\xd6\x00\xc7\xe5\xb2\x27\x41\xb0\x66\xdc\x4d\xc6\xe2\xa8\xb9\xa4\xcb\x31\x8d\xcd\x52\x50\x53\x5d\x19\x26\xba\x8e\x79\x19\xc4\xba\x3a\x5c\x41\x71\x85\x48\x9b\x11\x69\xf2\x9c\x20\x20\x5d\xb5\xa4\x7c\xca\xd6\x54\xcf\x73\xe6\x45\x34\x5b\xdb\xc9\x27\xb4\x57\xb2\x46\xb1\xeb\xce\x46\xdd\xe3\x24\x99\xe0\xe8\xd1\x2b\x1b\x5e\xe5\xe6\xc2\x61\xe3\x6b\x01\x15\x8a\x7f\x19\xe2\xd2\x03\x8d\x40\xba\x09\x9d\x62\x06\xb0\xc6\x0e\xbb\xe8\xdc\xac\x9a\x45\x02\x33\x08\x45\x66\xf4\x26\x84\x3f\x26\x59\xc2\x17\x69\xcb\x7d\x56\xcd\x94\xdb\x26\x20\xa5\x2d\x51\x6f\xa7\x57\x59\x85\xe9\xad\x7d\x99\xd5\xd2\x6e\x76\x00\x9f\xb4\x06\x97\xfc\x94\xf0\x09\x58\x0e\xad\x96\xed\x52\x49\x82\x8c\x86\xea\x79\x5e\x37\xc1\xa5\x7a\x22\xa9\xcc\x12\xbc\x58\xd6\x83\x49\xad\x78\xd9\x7d\x33\xa9\xf8\xab\x8d\x60\xdd\x83\x92\x1b\x3f\x7f\x09\xa0\xde\x0b\x27\x09\x98\x77\x0d\xff\xaa\x18\x93\x4c\x4e\xdb\x91\xf1\xc5\x2a\x3e\x62\x0a\xcf\xdc\xe6\x5a\xe1\x92\x3f\x33\x22\xe4\x9c\x66\xa5\xa2\x80\x5b\x47\x41\x5b\x8a\xb6\xff\x31\x31\xbf\x6b\xf0\x4e\x9e\x1d\x1a\x20\x0e\x4d\x1f\x32\xc3\x51\x61\xfc\x8b\x12\x2c\x25\x9d\x2e\x02\xfc\x0c\x1f\x50\x0a\x59\x4a\x65\x6d\x39\xa8\xc3\xd5\xc4\x68\xcc\xf8\x76\x93\x40\xbe\x7d\xf2\xdc\x43\xf9\xf8\xd1\x38\x04\x2a\xd3\xf7\x49\x1d\x2c\xc5\xdd\xd4\x16\x34\xa5\x15\x70\xd5\x64\xca\x6f\x96\xf0\xbd\x14\xe3\xa6\xdd\x8c\x50\x08\x93\x76\xd8\x56\x91\xf1\xb8\x16\x21\xe6\x8b\x2a\x65\x0c\xc2\xe6\x6b\xc5\xc9\x99\x3f\x35\x71\x7a\x4c\x0c\x80\x0e\x28\x3e\x3e\x40\x72\x2b\x2c\xa9\x2e\x74\x71\x46\x12\xb2\x93\xc0\xe2\x0d\x88\xa4\xea\xb5\x0f\xc8\x63\x29\x69\x14\x58\xfa\xab\x8d\x0b\x1b\xc4\x3b\xb7\x20\xd2\x34\x0f\xfd\x27\x33\x50\x1b\xf2\xdc\xb4\x8b\x60\xff\x82\x55\xee\xaa\xbb\x34\x41\xdb\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\xfb\x48\x6a\x6f\x1c\x19\x5c\x1b\xd7\x27\xd2\x25\x8a\x61\xe5\x01\xd8\x88\x03\xd5\xf9\x74\x37\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe2\xde\xd7\xf1\x7f\x4f\x34\xb1\xb3\xbc\x86\x1d\xad\x7e\xf3\x21\x5f\xef\xd4\xde\x11\x25\xdd\x95\x50\x43\x0b\xb4\x9b\xb3\x87\x5b\xb0\x1f\xc7\xd2\x08\xae\x5f\xbc\xdc\xb2\x35\x16\x80\x1d\x99\xcd\x88\xff\x0d\x09\x54\x66\x8e\xb1\xfd\xc2\x67\xbf\x97\x70\x9f\x70\x09\x2b\xcf\xac\xd1\xdb\x73\xbd\x2a\x69\x7f\xe9\xa2\xd7\xfa\x34\x5e\x1d\x55\x41\xdd\xbd\x3c\xb8\x9e\x3c\xe8\xb0\x24\xf7\xf0\xf2\x6f\x3b\x06\xfb\x79\xff\xec\x81\x70\x58\xbb\x12\x77\x27\x22\xbe\x23\x32\xd9\x0b\x49\xb1\xb6\x15\xaf\x25\x2f\x1e\x3a\x30\x9f\x02\x1a\x67\x7f\xb7\x68\x3f\x4e\xf2\xad\x75\x03\xbd\xdc\x05\xbb\x9a\x5e\x76\x42\x1f\x80\x6b\x89\x21\xfd\x37\xb7\x85\x32\xe0\xf0\x06\x21\x63\x35\xdf\xc3\x8a\x60\x3c\x3b\xbc\x4e\x61\x78\xb5\xe5\x7c\x89\xed\xb5\xb9\x5e\x9d\x37\xf7\x25\x49\x6d\xdd\xb1\xec\x42\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x3e\x26\xb6\xdb\x2d\xda\x80\x20\xe3\xb6\x6c\x97\x87\xac\xa9\xba\xd9\xf6\xd9\xea\x2e\x95\x6d\x9c\x09\x32\xa5\x9f\x37\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\xd4\x4b\x03\xf7\x0c\xd4\x57\x0b\xe2\xf6\xec\x4a\xdb\x9a\x4a\x23\x56\x24\x00\xda\xec\xbf\x47\xb2\x40\x5c\x94\x7e\xda\x14\xeb\x70\xf7\xb5\xdd\xcc\xbe\xce\x95\xca\xe4\xc9\xf1\xf1\x8c\xaa\x79\x3e\x39\x8a\x78\x6a\xc2\xcd\xb9\x98\x99\x3f\x8e\xa9\x94\x39\x91\xc7\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\xd0\x63\xea\x7e\xa7\xf2\x96\x13\x2c\xb7\x8b\xec\x71\x99\x5a\x2f\x9c\xb1\x1b\x74\xe3\x72\x24\xf5\x37\x52\xe1\x34\x0b\xa3\x47\x4d\x75\x34\xa9\x70\x51\x93\x01\xd2\xef\xf4\x34\xd1\x1c\x67\x19\x61\xed\x66\x07\x93\x4f\xb9\x05\xeb\x71\x19\x99\x76\x84\xe4\x73\x96\x60\x56\x46\x19\x80\x02\x43\x82\x44\x84\x29\x9b\x01\x5f\xd4\x4b\x06\x6a\x34\x48\x37\x86\xff\xaf\x97\x71\x07\x73\xa4\xb2\xa8\x1c\xe6\x86\x63\xab\x78\xba\xda\x8e\x38\x58\xba\x6a\xe5\xd4\x62\xed\x88\x5b\xb5\x65\xb9\x78\x77\xf5\xfa\xd9\xeb\x57\x6e\x11\x9c\x8d\xc9\x67\xcd\xe4\xe4\xa6\xb8\x54\x0f\x92\x48\x34\xf8\xe9\x0e\xc9\x05\x53\xf8\xf3\x09\xba\xa4\x0c\x04\xd8\xef\x79\x2e\x24\x3a\xc3\x8b\x43\x3e\x3d\x4c\x39\x53\x73\x74\x09\xff\x6b\x7f\x7a\x26\xe4\x11\xfd\x4c\xb0\xb0\xfc\xc1\x56\x5e\xf3\x45\xbc\x35\x09\x89\x9c\x49\x44\x9e\xf4\x09\xfd\xc3\x7f\xa2\xd4\xb4\x7c\x82\xbe\x3d\xfe\xc3\x7f\xa2\xdf\xc1\xff\xff\xff\xd1\xef\x5a\x34\xfd\xf5\x90\xad\xa0\x3e\xef\x6d\xd9\x9d\x7b\x50\x59\xa9\x0d\x4a\x96\x9f\x0a\x5e\xec\x54\x63\xcb\x8f\x34\x7a\xe4\xd3\xe9\x58\x13\x86\xc9\x57\x1b\x63\x51\x43\x45\xde\x10\x26\x94\xda\x02\xcb\xa6\x60\x5b\x51\x2a\xc5\x76\x6a\x80\x0d\x1c\xbb\x96\x79\x51\x60\x16\x82\x88\x4a\x45\x7b\xa9\x84\xaf\x48\xac\xb9\xea\x3a\xa7\xc3\x59\xf7\x5c\x8e\xb3\xb3\xe0\x84\x40\x20\x61\xd1\x70\x1f\xf8\x17\x46\xb1\x9a\x40\x1f\xbb\x90\x8d\xc7\xa1\x16\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\xd6\x3a\x5f\x1d\x2a\x79\xc7\xc5\x56\xfa\xd6\x23\xa9\xc5\x6c\x77\x2c\x0b\xe4\x4a\xd5\x86\xe5\xeb\x21\x11\x9a\x0b\x0f\xd7\x6b\xec\x22\xb6\x78\xe0\x6a\x2b\x26\x15\x26\xb8\xac\xdb\xa1\xd7\x53\x3f\xf3\x9f\xac\x1a\x26\x44\x9a\xb9\xb7\x8b\xb2\x68\x30\x5a\x2d\x22\x69\x96\xd8\x30\xe2\x06\x4c\xbf\x55\x1b\x7a\xe7\x61\x1c\xa0\x71\x08\x7b\x84\x94\x0f\xe6\x24\x5b\x9b\x27\xdf\xbc\x9f\xb9\x88\xc8\x29\xdf\x2e\xec\x35\xa1\xac\x16\x2f\xdf\xbd\xe2\x8e\x5f\xbd\x0b\x5b\x5b\xc9\xc1\xde\xf2\xb8\x50\x16\x8c\x5b\xc0\x16\x5b\x08\xf0\x36\xcb\xb3\x01\xdc\xb6\x5d\x40\x3a\xd6\x4a\x00\x6c\xc1\xb5\x8d\xe1\xb8\x60\x78\xae\x82\x44\xa5\x70\x84\xc0\x9a\x17\x2e\x89\x5d\x83\xa0\xa2\xad\xc7\x11\x14\x43\x29\x22\x95\x2a\x45\xc7\xb1\xa9\x08\x22\x36\x84\xe4\x34\x75\x89\x0e\x90\xc0\x10\x94\xa9\xe6\xba\x3d\x49\xc4\xe1\x14\x47\x94\xcd\x0e\x02\x34\x46\x40\x46\x08\xaf\x83\x26\x22\xbd\xc7\xf2\x71\xb7\x81\x86\x5b\xd7\x69\xa4\x71\x51\x2b\xcc\xe2\xa7\x18\xc7\x06\xad\x41\xd1\x29\x2c\x1f\xdb\x00\x84\x6a\xe8\x65\x4b\x46\xe7\x97\xc2\x61\x9e\x2d\x1b\x9f\xcb\xb4\x26\xa1\x3e\x05\xa5\x09\x5c\xe5\x60\x8b\x65\xe8\x12\xdb\xb0\x07\x1b\xa9\x82\x78\x2e\x19\xbf\x9c\x73\xa1\xc6\x1b\xc2\x9f\x56\xb3\xc5\x19\x39\x4c\x00\xb7\x84\x3f\x11\xf1\x44\xc9\x73\x19\x45\x74\x1d\x5a\x34\x46\xb3\x20\xaa\x0e\x60\x26\xd3\x8c\x43\x0a\xcd\x14\xa5\x98\x2d\x0c\xa3\xd4\xcc\x05\xcb\x47\xe9\xeb\x95\x22\x99\xe2\x24\x39\x40\x82\xe4\xd2\xd4\xf1\x95\x24\x99\x1e\xba\x8a\x0f\x31\x4a\xf8\x8c\x46\x38\x41\x93\x84\x47\x8f\x72\xc4\xb4\xa0\xc0\x66\x86\x49\x65\x82\x47\x44\xca\x40\xb2\x2a\x92\xb6\x6d\x2a\x1d\x14\x2b\x55\x44\xa4\x94\x51\xa9\x68\xe4\x44\xa6\x02\x7b\xc1\x94\xcc\x8e\x30\x98\x84\x21\x31\x11\x86\xab\x25\x3d\x62\x30\x28\x73\x66\x6b\x03\xc1\x75\x6d\xa1\xe5\x5c\x90\x78\xdb\x01\xda\x01\x52\x9e\xa3\x90\xb1\x2a\x1f\xc8\x15\x47\xea\xd4\x7e\x06\xc7\x78\x19\x09\xdc\x96\x4f\x94\x27\x48\x7f\xd2\x4a\xe8\x3d\x10\x53\xee\x43\xe0\x4b\x92\x8b\x8f\x0c\xdf\x33\xe0\x2e\x18\x72\x0b\x5c\xd7\x2a\x9a\xd6\xab\x08\x22\x0f\x94\xa3\xaa\x7a\xcd\x29\x8b\x92\x3c\xf6\x05\x09\xb5\x08\xf0\xa4\x89\xc4\x2d\x8f\x5e\x7b\x2d\x28\x1c\x20\x2c\xd1\x33\x49\x12\xfd\x5f\x13\x01\x7f\xe8\xeb\x03\x68\x96\x6c\x6a\x38\x40\x27\x8e\x4b\xb7\x51\xd4\xde\x81\x30\xde\x60\x35\x37\xa9\xed\x29\x57\xa6\x16\xa4\x01\x61\x74\xf6\x2d\x83\xda\x37\x49\xf8\x04\x4e\x3a\xe0\x33\xba\xd4\xd8\x20\xad\x2e\x8f\x22\x42\x62\x12\xa3\xaf\x83\x83\xeb\x61\x17\xbe\x69\x46\x0b\x2c\xad\xc8\x1e\x60\x33\x56\x0d\x6b\xad\x08\x8d\xe5\x72\x66\x47\xe8\xa6\x82\x3f\x12\x96\x29\xc7\x55\x34\xaa\x83\xda\x16\xbe\x0d\x9e\x63\x65\x12\x2f\xb7\x43\x6b\xe2\x39\x96\xfa\xdc\x01\x9e\x63\x65\x9e\x2d\xb1\xfb\x7c\xf6\xa2\x39\xc7\x7a\x52\x17\xbc\x7b\x22\x98\xc1\xc1\x32\x77\x67\x89\x04\xdd\x81\x5c\x34\x11\xe2\x7e\x61\x55\x56\x8a\xfe\xbd\x2d\x56\x65\x65\x30\xfb\x8c\x55\x59\x19\xea\xfe\x62\x55\x36\x0c\xb4\x03\x56\xa5\x71\xee\x8f\x35\x51\x77\x63\x0a\x90\xd8\x32\xc9\xa7\x77\x90\xea\xbd\x74\x8c\xa7\x26\x70\xc0\x5c\x63\xee\x8e\xb6\xd0\xcd\x30\x5a\x9b\x03\xd9\x16\x0e\x55\x71\x42\xac\x4b\x7b\xde\xfb\x46\xa5\xd1\xd0\xd6\x33\xbb\x1f\x84\xd6\x6e\xb0\x43\x46\x38\xb3\x39\xe5\x6d\x15\x55\xf6\x27\x7b\x76\x33\x18\x50\x80\xda\x2b\xb1\xfc\x4e\x40\x59\x97\x95\xe2\x04\x73\xfe\x6c\x0b\x04\x01\x19\x1a\xa2\x6c\x25\x41\xe8\x74\x6c\x95\xb6\xb6\x95\xa3\x4c\x91\x59\x55\xa7\x2d\x0e\x0d\x65\xea\x4f\x7f\x5c\xc9\x89\x0c\x92\xa0\x53\x0f\x83\x12\x01\xde\xd9\x61\x9f\x91\x18\x45\x73\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x14\x53\xa7\x48\xe5\xd2\xb8\x96\xa8\x1c\xb1\x12\xf4\xe6\x11\xfa\x08\x75\x4f\x71\x9a\x69\xfd\xcb\xcf\x8f\x6a\x4a\x1a\xe5\xdf\x7e\xfb\x27\x82\xbe\x45\x29\xc1\xac\xa4\xc3\x82\xda\xa4\xaf\x3e\x80\xaa\x53\x73\x32\x62\x8d\x5b\x81\x86\x9f\x4d\x29\x25\x17\xef\x77\xce\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd9\x29\x7c\xd9\x18\x00\xeb\x6e\xec\x7a\x1b\x0f\xe0\x1e\x39\x94\xa4\x04\x61\xd4\xe0\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\x1e\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x0e\x80\x12\xf2\x68\x6e\x1c\xab\x5a\x67\xc1\xb6\x2e\xc3\x13\x95\xb9\x56\x68\xa1\x2d\x57\x06\x42\x2a\x6c\xa0\x97\xe6\x14\xfa\xd1\xea\x37\x81\xaf\xc2\x2c\x39\xd4\x4d\x8b\x0a\xd1\x51\x2b\x3c\xbf\x23\x3a\x6a\x89\xaa\x7a\x74\x54\x8f\x8e\x5a\x5f\x97\x7d\x44\x47\xad\xec\x79\x37\x74\xd4\xa6\x2d\xdf\x00\x1d\xb5\xd4\xcc\x17\x83\x8e\x5a\x59\xd1\x2f\x06\x1d\xb5\x32\xaf\x1e\x1d\xf5\xcb\x43\x47\xdd\x12\xff\xb3\x99\x17\x1b\x7c\x25\x45\xd9\x62\x6d\x22\xfb\x4a\xa2\xf3\x6b\x4d\x60\xd1\x63\x39\xa8\xcd\x5f\x57\xdb\x63\x8e\x36\x33\xa1\xf5\x30\x47\x1b\x55\xf5\x76\x56\xb7\x2d\xc0\x13\x28\x06\xaf\x8c\x39\x5a\x9a\x40\x1f\x5f\xb9\x7e\x7c\x65\x23\xf1\xd9\xbe\xf5\xf0\x5c\xd0\x65\xf5\x42\xee\x88\x3a\x5a\xda\x9f\x4e\x91\x98\x20\xba\xef\x80\x12\x5f\x56\x9a\xbf\x2f\x1d\xf2\x95\xb2\x7c\xb8\x8a\xd2\xe2\x1f\x6b\x09\xcf\xa1\xc5\x19\x25\x3c\xf4\xff\xf7\x94\xbb\x41\x64\x70\x65\x79\xbd\x5f\xc5\xd0\x62\x07\x52\xed\x4c\xa1\x4e\x2b\xdd\x4d\xa2\xac\x4b\x9e\x5c\xd3\xc5\xec\x06\x71\x97\x91\xa8\xc5\xc6\x4c\x53\xba\xab\x66\x57\x5d\x64\x1e\x0b\x0b\x14\xf2\x5a\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x5a\x63\x9b\x6a\x23\xdc\xc6\x55\x9a\xe5\x9d\x03\x62\x82\x55\x9d\x6d\xf6\x59\x4a\x52\x2e\x56\x05\x56\x35\x7e\x69\x2b\xba\x6c\xf2\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xdd\x46\xba\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xce\xdb\xbd\xed\x36\x5b\xcc\xcc\x35\x1d\x42\x0e\x33\x78\xb9\xc1\xcd\xbe\x54\x72\x77\x03\x7d\x37\xc6\x74\xf8\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x4e\x15\x5f\xd9\x7a\xc7\x6b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\xeb\x07\x78\xb4\xa0\xa6\xd6\x97\x07\x22\x73\x24\x11\x87\xa1\x66\x50\x1a\x4c\x7d\xbd\x4a\x54\xe2\x34\xca\x2d\x88\x24\x17\xad\x51\xa6\x5d\x0c\xda\x91\xca\x71\x02\x9a\x44\x58\xa4\xb1\xba\xa9\x93\x45\x43\xda\x63\x37\x8f\x09\x65\xea\xcf\xff\xb1\xd6\x6e\x6a\xd5\xca\xae\x1b\x14\x96\xc2\x51\x44\xa4\xb1\xb1\xdb\x28\x64\x3c\xe1\x4f\x50\x53\x6a\x9b\x5d\xd5\x47\x59\xcf\x5b\x33\x78\x0f\x45\x1c\x17\xa4\x6e\xc4\x85\xb9\xe0\xf9\x6c\xee\x6c\x48\xfa\xcc\xe8\xa9\x35\xed\xe5\x8f\x35\x1b\xf9\xda\x7b\xf9\x5d\x4e\x93\xcd\x2c\x74\x77\xa5\x6a\x5b\x9f\xce\xef\x91\x9c\xfb\xd3\x3a\x81\x66\x1b\x37\xb6\x3e\xe8\xee\x7d\xda\x6f\xbd\xbf\x06\xba\x39\x70\xf0\x9b\x53\x9e\x24\xe0\x69\x90\x24\x7d\x0a\x8b\xe4\x87\xdd\xc3\x84\xef\xe9\x7a\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x49\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x4d\x36\xb6\x9f\xea\x85\x4e\xde\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x5b\x92\x57\x0e\x1c\x5c\x31\x8f\x7d\x0d\x1e\xac\x30\x3b\x1f\xcb\x57\x5c\x33\x2e\x70\xc8\x28\x3e\x03\xbd\xc4\x23\x36\x28\xe5\x53\xb8\x82\xd0\x93\x45\x11\x90\x6d\x74\x88\x90\x99\x41\x39\x09\x6b\x58\x01\x37\x9a\xfe\x0b\x34\x1d\x03\x5e\x6b\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x10\x47\x8b\x28\xa1\x51\xa0\x33\xcf\x04\xce\xe6\x4d\x1c\xcf\xed\x7c\x8f\xba\xf3\x56\xa8\x3b\x6d\x75\x97\xd6\x89\xdb\x76\x74\xc5\x70\x4a\x7a\x34\xa0\x26\x34\xa0\x03\x8f\x77\xc1\x8a\x0a\x52\x6f\x08\xa3\x50\x3f\x77\x3d\x24\xd0\x1b\x40\x02\x6d\x72\xf8\x0a\xbc\x9f\xd2\xb1\xeb\x61\x8a\x3e\x74\x82\x29\xf2\x97\xe0\x5e\x21\xcf\xb4\x9f\xc7\x37\x46\x34\xa9\x0f\xec\x2d\x61\x89\x1a\xc4\x85\x75\xe4\xa6\x65\xb8\x44\xcb\xe8\xa2\xd3\xba\xbc\x2d\x4a\xd0\x7a\x2b\xb3\x16\x00\x50\xe3\xdd\xb5\x27\x70\x40\xed\xdb\xb0\x27\xe7\x66\x97\x59\x2d\xeb\x95\xc8\x0c\x33\x5b\xd6\x51\xb0\xd6\x4b\x72\xf1\xf4\xf0\xbe\x12\x5d\x8a\x5a\x62\x9b\x25\xbb\x0c\x9c\x0f\x9a\x08\x34\xe7\x49\xec\x40\x28\xfc\x6a\xf9\x0e\x7c\x26\x80\x5f\x20\xb7\x19\x50\xd3\x1b\xb4\xad\xa2\x20\xd8\xb2\x94\x16\xbf\x89\x30\xdc\x1d\x30\x9a\x5d\x58\x11\x3c\x27\xd9\xc4\x7e\xb0\x52\x16\x91\x65\xf3\xf7\x92\x31\x96\x56\x08\xac\xe6\xcd\xc3\x5c\x69\xf7\x5d\x31\xb8\x65\xa2\x47\x60\x1c\x14\x4d\x15\x2d\x0d\x9d\xc1\xd3\x27\xea\x0c\x11\x38\xec\x71\xa9\x97\xce\xcd\xae\x93\xa7\xae\x4a\x2c\x1b\x04\x83\xd5\x2a\xb7\x6d\x0f\x0e\x94\xe2\xcf\xe3\x0c\x0b\x9c\x24\x24\xa1\x32\x7d\xb1\x60\xe0\xd3\xb2\xbb\x56\x9f\x55\xc1\x8d\x89\x88\xe5\xe9\xc4\x90\xa2\x1b\x88\xad\x17\xa9\x38\x12\x39\x0b\xa1\xcd\x9e\x6b\x45\xf5\x73\xb8\x17\xc0\xaa\x14\xcd\xa1\x38\xe9\x14\x53\xc1\x88\x6c\x2d\x05\x49\xa2\x5c\x50\xb5\x18\xdb\xca\x9a\xdd\x0f\xdc\x9d\xfd\xf2\xd4\x7e\xb8\xdc\xc3\xed\xb2\xfa\x5d\x7f\xbe\x92\x67\x46\x04\x94\x09\x72\x05\x6f\x82\xea\xa1\x16\xb5\x81\xf8\x5a\x43\x10\xfe\x5c\xbb\xb6\xdb\x02\x87\xf1\xf3\x38\xc8\xa8\x1a\x47\x55\xe2\x58\x75\x58\x9b\x70\xa7\x96\x4d\xf2\x85\x91\x97\x5a\xbc\xc8\x2f\x50\x65\xc4\xa6\x4d\x98\xa6\xf5\x80\x03\x57\x30\xd8\x2b\x8b\x8d\x09\x52\xde\xad\x52\xd5\x32\x4e\x8b\xf5\xd3\x14\x7c\xb4\x64\xb0\x83\xe0\xab\x0e\x23\x0e\x3a\xd9\xd1\xb0\xf5\x41\x17\x22\xcf\x14\x9d\xd4\xa1\x6d\xd4\xee\xaa\x8e\x0e\x12\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x34\x62\x03\x89\x9e\x09\x62\xc4\x42\x48\x34\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x03\xdd\x30\x54\x2d\x55\x1c\x82\x3f\x31\x7a\x16\x38\xcb\x88\x18\x31\x9b\xc5\x01\x0e\x17\xce\x13\xd3\x7e\x5b\x88\xab\x5d\x03\x32\x8e\x70\x34\x7f\xa5\x3d\xc2\x90\x8c\x13\xcd\x49\xec\xf2\x85\xcb\xdb\xe3\xe6\x6d\x0c\xd6\x6b\x6c\xd6\xf9\xd4\x95\xcf\x3a\xb0\x9d\x24\x91\xe6\x28\xbe\x9a\x72\x46\x84\x1e\xb5\xa6\xe1\x27\xc2\x10\x9d\xba\x71\xd8\xd8\x1d\xf4\x0c\x9e\x29\x4d\xfa\x4f\x98\x26\x26\x01\xdf\x75\xed\x84\x40\x63\x7e\x1f\x31\xe3\xee\x66\x51\x29\x43\x95\x32\x2a\xe7\x9a\x53\xe7\xe0\x93\x04\x35\xa3\x2d\x71\x86\x3d\xad\x73\x9a\x87\xfa\xf5\xe5\x1c\xf4\x89\x0a\xce\x52\x48\x92\xb1\xb8\x4c\x6e\xf9\x24\x51\xfe\x78\x34\xa6\x38\xae\x94\x88\xe3\x58\x96\x8d\x9f\x46\xad\xa4\xbf\x96\xcc\x2e\x87\xa5\xac\xc0\x28\x80\x15\x82\x20\x4e\x57\x59\x6c\x99\xfc\xdb\xa7\x36\xd4\x53\x1b\x9a\xd7\x66\x1f\xd3\x1b\xfc\x21\x5e\x37\xc5\xa1\x6d\xfb\x77\x21\xd9\xee\x30\xd5\xe1\x8d\x73\x02\x5e\x26\x1d\xe0\x6d\xf3\x37\x5e\x22\x75\xa3\x4f\x70\x78\xc3\x04\x87\xce\x96\xda\x72\x6c\x76\xfb\xb1\x5d\x2b\x39\x60\x05\x98\x53\x53\x2f\x97\x44\x09\x1a\xc9\x5d\xf0\x07\x99\xe1\x8e\x51\x6d\xa0\x05\x66\x2b\xa4\x26\xfd\x82\x77\x42\x42\x9c\x98\xaf\xf3\x37\x11\x04\x3f\xc6\xfc\xb9\x66\xab\x93\x21\x9a\xc6\x25\xd7\x62\x8f\x20\x11\x95\xa4\x14\xc9\x42\x25\x62\x44\x5a\x63\x27\x1e\xb1\x39\x25\x02\x8b\x68\x0e\xd9\x8d\xc5\xc6\x98\x2c\x59\x03\x68\x64\x62\x19\x42\x6f\xd3\x1a\x9b\xde\x61\xdd\xab\x16\x26\x8f\x4f\x67\xf7\x5c\x8f\x24\x35\x9f\x78\x61\xc6\x4a\x19\xa1\x49\xae\xd3\xf6\x6f\x1b\x88\xef\x17\xfb\x45\x83\xf1\x7d\x30\x51\xf0\x45\xc7\x80\xfc\x82\x1a\xfa\xa0\xfc\x17\x0a\xca\x6f\x58\xe2\xf5\x02\xf3\x37\x32\xf9\xbd\x7e\xcc\xb0\xeb\xf9\x35\xe2\x86\x57\x05\x6d\xe5\x93\xf1\x8b\x1f\xbd\xc6\x39\x77\x3d\x81\x3f\x79\xa2\x30\x12\xb1\xd0\x74\x36\x21\x71\x0c\x9c\x56\x71\x5b\x29\xba\xa0\x1d\x67\x1e\xd0\x77\x2f\x96\x9a\xd8\x71\xc2\xd9\x4c\xd2\xd8\x80\xad\x64\x18\x2a\xb6\x86\xc6\x0b\x00\x17\x80\xfd\x4d\x12\x22\x9c\x57\x42\xa0\xaf\x25\x65\x16\x4d\xd1\xff\x16\x73\x22\xd9\x57\xca\x18\x0b\x30\x5b\xa0\x47\xc6\x9f\x13\x12\xcf\x60\x87\xaa\x83\x39\x44\x94\x1c\x20\xaa\xfc\x67\x02\xd0\x08\x78\xae\x46\x7a\xec\x10\x6b\x66\x34\x00\x62\xbf\x0d\x6a\xa2\xfb\x66\xbe\x39\x42\xe8\x9c\xa1\x29\x8e\xd4\x01\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\xf4\x31\xe3\x0d\x9d\x37\x9f\x0d\xc7\x1d\x34\xb9\x0e\x12\x8a\xb7\x8a\xad\x7b\xc2\xdb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xab\xad\xb3\x32\x95\x75\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x9d\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xa6\x4d\xcb\xf4\x8d\x47\x4e\x39\x33\x0e\xc2\xad\xe4\x4e\x3a\x63\x38\x59\xd3\xc6\x51\x5b\xb9\xba\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xca\x7c\x43\x79\x0f\xa3\x98\x64\x84\xc5\x84\x45\x0b\x20\x11\x06\xc8\x39\x82\xe1\x04\x61\xf8\x0e\x27\x47\xe8\xcc\xe4\xd7\x78\x09\xcf\x5e\xeb\x70\xa1\xa7\x98\xd1\xa9\xd6\x13\xc0\x08\x6b\x47\x39\x62\x66\x98\xce\x07\x12\x14\xed\xf7\x2b\xd6\xb4\x33\xfa\x06\xb9\xda\x12\x95\x98\x95\xbf\x47\xcb\x2f\x1c\xe8\x6d\xd9\xee\xe8\xe6\x5c\x0d\x02\x99\x4f\x0e\xe1\xdf\xa5\x84\x33\x07\xd4\x53\xa0\xc8\x90\x84\x80\x39\xd0\x7a\xbc\xe0\x62\x6c\x03\x96\xdb\x85\xdf\x6e\x45\x1e\x47\xd0\x47\x49\xa9\x49\x29\xa3\x69\x9e\x06\xce\x3b\x53\xb1\x20\xb2\xf6\x4b\x93\x89\x91\x69\x3d\x20\x72\xe0\xe5\x48\x5f\xae\x6c\x81\x66\xf4\x89\xb0\x11\xcb\x38\x65\xea\x08\x5d\x71\x45\x82\x12\x11\x06\x3a\x8a\x67\x8a\xa6\x06\xed\x54\x10\x7d\x0e\x0c\x28\x36\x00\x4d\xce\xb1\x3a\x40\x71\x0e\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xec\x0c\xc4\x47\x8b\x11\x33\x37\xdd\x14\xd3\x24\x17\xc4\xca\xac\xd8\xe4\xc5\x14\x43\x2e\x46\x66\x91\xd0\x82\x49\xa4\x74\x36\x57\x7a\x8b\xb4\x8c\x67\xfd\x8d\x73\xcd\x8d\xf8\x88\x4d\x08\xc2\x28\xe3\x92\x2a\xfa\xe4\xfd\x97\x74\x8a\xb0\x94\x60\x41\x39\x42\x67\x25\xfb\x3f\x95\xa0\x7a\xb7\xc5\xd5\x52\x36\xb6\xb6\xe7\xf6\x7c\x9c\xad\x37\xb2\xd4\x8b\x5d\x65\x3c\x91\x3c\xc9\x55\xe8\x82\x6d\xde\xdb\xc2\x34\xee\x80\xfb\xc1\x40\xcc\xa7\x23\xe6\xe8\x5a\x1e\xa1\x81\x44\x92\xeb\x5d\x92\x66\x2b\x23\x41\x15\x11\xd4\xa0\x38\x11\x65\x36\xc1\x9f\x53\x7f\x06\x52\x2c\x1e\xb5\x08\x15\x5a\xe0\x0d\xa6\x68\xc9\xda\x31\x31\x12\x12\xc0\x5a\x85\xdb\x01\xa6\x7f\xc4\x38\x3b\x64\x64\x86\x57\xed\xc8\x88\x95\xb6\x04\x7d\x4d\xa7\x85\x42\xda\xe6\x73\x0c\xd6\x6e\x0c\x91\x4f\x6d\xbb\x64\x3a\x6e\xdb\xa4\x69\xc2\xf1\x0a\xb7\xf1\xb4\x38\xf4\xe8\xef\x7c\x62\xc6\xa8\xf5\x7e\xae\x40\x0a\xd4\xea\xd5\x94\x0b\x32\xc7\x2c\x3e\x70\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\xac\x75\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x61\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x1b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x0d\x04\xbf\x24\x5f\x2b\xb9\x2a\x70\xfb\x2d\xda\x6a\x9a\x28\xbc\xaa\xcc\xc8\x1a\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x34\x62\xe7\xea\x2b\xa9\x45\x74\xce\x66\xfa\xa2\x89\x9f\xa8\x2c\x8a\x9c\x44\x9c\xc9\x3c\x25\xc2\x76\xa1\x6f\x64\x4d\x91\xb6\x40\x00\x76\x32\x94\x1e\x9b\xde\xfb\x27\x9c\xd0\xd8\x15\xe2\xd1\x3f\x9a\x33\xa7\x47\x29\x9d\x47\xb1\x21\x24\xcc\x6e\x6e\xac\xd7\xea\xcd\xc4\xfa\x1f\x43\xc9\x1d\xa5\x85\x90\x8f\xad\xad\xfe\xb8\x2a\xe2\xdb\x55\x5f\x22\xde\x4f\x6a\x93\x42\xcb\x05\x23\xbb\x0a\x67\xab\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x16\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbe\xb5\x67\x5b\x96\x89\x90\x11\x4e\xea\x3b\xbc\xc4\xde\x6c\xde\x5f\xae\x04\xd8\xe3\x66\xda\x5e\x9a\xf4\x1b\xf1\x24\x59\xa7\x84\x49\x65\xe6\xa7\xc5\xe7\xcb\x47\x54\xf4\xa3\x37\xc0\xed\x05\x9c\x1a\x73\x79\xe3\xc4\x9a\x52\xa4\xb2\xbb\x14\xbe\x64\xd4\xb0\x85\x65\xad\x23\xc6\xa7\x50\xe4\x26\x69\x8b\xea\xca\x04\x4f\xe9\x3a\x28\xcb\x26\xd0\xe9\xd6\xd9\xc5\x57\x58\x19\x9c\xf5\x1c\x44\x53\x43\x5e\xb6\x47\xc8\xd7\xc3\x56\xdc\x5c\x72\x86\x52\x9c\x6d\xb4\xe0\xab\xbc\x42\x03\x94\x1a\x97\x9c\x5d\x3d\xc0\x5b\x24\x50\x2f\x06\x16\xf9\x19\x2f\x8a\xd4\xe8\x36\xfc\x5c\xb6\x16\x39\x3c\xe8\xd7\xcf\xd9\x94\xaf\x71\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x5d\xce\xe3\x69\x13\x51\xaf\x7d\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x9d\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf9\x52\x5d\x96\xe8\x70\xe7\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\x69\x6e\xf5\x15\xd6\xcc\x1e\x92\x4e\x8b\xb5\x25\x76\xc3\x7a\x38\xc0\xae\x47\x8f\xfa\xdb\x7c\x42\x57\x16\x39\xe8\xbe\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x9f\x37\x18\x38\x5d\x82\x98\x0f\xa8\x32\xa1\xf2\x4e\x7a\xca\x05\x0d\x0a\x83\x3a\x19\x09\x51\x28\x50\x12\x3a\x79\x02\x85\x1e\x4c\x8b\x73\xfe\x6c\xa2\xd3\x05\xd5\x3c\xcb\x08\xab\x0a\xcc\x3d\x9a\x17\x50\x6b\x2d\x31\xc6\x26\xff\x01\x37\x31\x83\xd8\xd6\x3e\x2e\x46\xd5\xb2\xa5\xbb\x28\xf1\xd4\x3d\xff\xce\xf5\x7a\xaf\xbf\xa8\xef\x4d\xe3\x08\xef\xcb\xad\xaf\x3d\x3a\x2f\xe5\xaf\x1f\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\x67\x3f\x1c\x3f\x9c\x23\xa2\x22\x94\xd0\x47\x32\x62\x91\x7c\x3a\xd0\xe2\xf1\x3f\x72\xa2\xf4\xcf\x2d\x1e\x01\x9a\x12\x26\x81\x13\x50\x55\xc3\x1e\x6a\x5e\x48\xb7\x30\xfa\xbf\x67\xe5\xef\x97\x90\x7c\x2d\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x03\xc5\x18\x5b\xe4\xb0\xa9\x1a\xe6\x06\xe9\x42\xec\xef\x39\x5b\x53\xe8\x3a\x2d\x3e\x0a\x46\xd1\x22\xd3\xa5\x19\x06\xac\xeb\xf5\xf2\x90\xcc\x37\x8d\xad\xaf\x62\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x34\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\x9a\xb8\x84\xc0\x2c\x9a\x6f\x6b\x42\xa6\xd3\x31\x49\xd6\x91\x44\xcf\xa7\xc3\x44\x6a\xfa\x8e\x1e\x5b\x4e\xe7\x26\x35\x1b\x8b\xc9\xd8\x4a\xb4\xa6\xee\x13\x2a\x4c\xd0\x38\x31\x15\xe5\x08\x02\x1f\x65\x35\x7b\xcc\x00\x44\xe8\x5d\xb4\x92\xba\x71\x51\x9a\xb4\x0d\x1f\x92\x0d\xbd\x20\xac\x46\x4c\xe4\x0c\x8a\x4d\xf8\x88\x05\x8c\x0a\xbc\xf0\xc8\xf9\x0f\xac\x37\x67\xa6\xd9\x84\x81\xe3\x36\x2f\x6b\xfd\x8c\xe7\x12\x6c\x35\x29\x51\xfa\x82\xfa\x1a\xea\xc0\x9a\x90\xa1\x03\x94\x09\x9a\x82\xb9\x55\x7e\xd3\xb0\x75\xa7\x58\xe1\x84\xcf\x06\x42\xd1\x29\x8e\xd4\x3d\xde\x4a\x03\xc7\xb6\x99\x4d\xc3\x4f\xdd\x30\xd0\xf9\x99\x5e\xfc\x19\x61\x44\xc0\x44\xb5\x4e\xde\x7c\x84\xe1\xc9\x46\x9c\x1b\xac\x6c\xd6\x30\x2a\xbd\xc5\x02\xe7\x8a\xa7\x5a\xbf\xc5\x49\xb2\x38\x30\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x97\xbb\xc9\x2e\xee\x29\x8e\xe6\xe4\x0e\xaa\x22\x37\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\x27\xe8\x7f\x8a\x39\x9e\x0e\x4e\xbf\x1f\x8e\xcf\xce\xef\x06\xdf\x5d\x0c\xcf\x82\xf9\xd8\x27\x97\xe7\x77\x77\xf5\x5f\xbf\x3f\xbf\xaf\xff\x78\x73\x7d\xf3\x70\x31\xb8\x6f\x6a\xe5\xe2\xfa\xfa\x87\x87\x9b\xf1\xc7\xc1\xf9\xc5\xc3\xed\xb0\xe1\xd3\x87\xfb\xf6\x87\x77\x3f\x9c\xdf\xdc\x0c\xcf\xdc\xaa\xfc\x2d\x38\x5d\x60\x3d\x86\xd4\x8b\xe6\x69\x54\x0f\xe0\x21\x2a\xbf\x78\x82\x1e\xaa\xa5\x0f\x6c\x2c\xb2\xc1\xb1\x78\xc6\x52\xf3\x30\x08\x85\x1f\x31\xe4\x3e\xd7\x8b\xd2\xf6\xa9\x09\xd7\x89\xe6\x04\x25\x9c\x3f\xe6\x99\x65\x6d\x26\x3e\x8c\x71\x63\xf8\x21\x32\x68\xed\xfb\xf3\xfb\x93\x7a\x09\x06\xdf\x58\x80\x98\xe5\xce\x00\x8c\x0b\x3b\x76\x0a\xb6\x14\x07\xcd\x5f\x58\x6f\x83\x1e\xfc\xce\x2c\xeb\xc7\xb4\x86\x99\xaa\x74\x13\xc7\xb6\xe8\xaf\x9b\x58\xd0\x70\x79\x5f\x97\xad\xa6\x5f\x0e\x53\x7b\x0a\x4d\x48\x84\x73\x13\xd4\xa4\xef\x29\x21\xb8\x08\x07\x5c\xd0\xc3\xee\x1a\xb5\x74\xd4\xd8\x60\x65\xcf\xf4\xc4\xe5\x23\xcd\x32\x12\x7f\xa8\xcb\x2f\xe5\xea\xb0\xb6\x26\x39\x9f\xa2\xe0\x4c\x6a\xbd\x1e\x74\x7e\x57\x38\x65\xbe\xf0\x9e\x34\x08\xdc\x28\x42\x59\x00\xc8\x59\xdf\x09\xbe\xb0\x05\x05\xd7\x18\x56\xe8\x99\x40\x4a\x75\x6e\x2b\x47\x19\xdd\x5b\x9f\x6d\xe8\xce\xd8\xb4\x5d\x1d\xb8\x52\xaa\x75\x2b\x33\xde\x85\xc0\xad\xbf\x97\xa4\x89\x11\x6f\x91\x17\x7b\x66\x1a\x05\xee\xec\x62\xde\x60\xc4\x2d\xc1\x0d\xee\x36\x68\xb0\x90\x2f\x91\xaf\xea\x37\xd2\x8a\xcb\x42\xb3\xed\x2e\xe3\x71\x58\x20\x25\x80\xeb\xee\x03\x2b\x81\x20\xaf\x5c\xab\x7b\x1e\xe3\x85\x26\x0e\x88\x35\x96\x79\x96\x71\xa1\x50\x4b\x1b\xc6\x8d\x6f\xc6\x07\x77\x8e\x9d\x87\xe7\x71\xd0\x88\x96\x30\x64\x43\x2d\x8d\x6e\xf0\x08\x76\x5d\x0b\xc6\x11\x06\xc8\x82\x22\xe8\xeb\x1e\xa5\x25\x95\xba\x44\xa1\x4d\xc2\xef\x36\x19\x06\x99\xbe\xe0\xbb\x96\xe1\x6b\xea\xfd\xda\xb5\xd0\xb8\xe5\x09\x99\xaa\x71\xa3\xd7\x67\x89\x81\x53\xb7\xc8\xda\x10\x65\xe8\x6c\xbe\x83\x16\xbb\x6b\x09\x7f\xb4\x81\x3d\x5a\x35\x08\x2c\x04\x82\x73\x65\xe4\xd3\x42\x87\x41\x6e\x35\xc1\xbc\x60\x3b\xb5\xb9\x60\x5e\x08\xd4\x32\xbf\xf1\x87\xfa\xb4\xa9\xa3\x11\x1b\x42\x00\x45\xa1\x88\xb8\x14\x31\xd0\x02\x56\xca\xff\xa5\xa2\xa3\xaf\x1a\xad\xd9\x8e\xf0\x5a\xd0\xbd\xad\x97\x9f\x2c\x50\x51\x58\xb6\xf4\x5d\x97\xd3\x63\xac\xde\x4e\x04\x34\x13\xb6\x65\xdc\x15\xc9\xac\x65\xde\xcc\xb3\x88\xf4\x81\xf8\x30\xdd\xd5\x11\xfa\xc9\x59\x7e\x20\xf0\xb5\xa8\xc9\x6c\x63\x37\x12\xbc\x70\xa0\x90\x4d\x0b\xbb\x0b\x9c\xc5\x5d\x87\xc2\x2e\x5f\x60\x0f\xe8\xd4\xb0\xca\x25\x05\x9c\x31\x63\x91\x5d\x23\xed\xe3\xd4\x7f\x74\x47\x96\x47\x05\x7c\x84\x32\x9c\x36\xb2\x0a\x84\x0e\x96\x2c\xfe\x97\xd9\x2c\x93\x89\xea\x0a\x6b\xd9\xb2\x88\xd6\x83\xaa\xcf\x0f\x78\x00\x4d\xa2\x2a\x9a\xd2\x24\x01\x39\xe0\x08\x0d\xa0\x3c\x30\x24\x72\xea\xab\xd0\x05\x58\xd0\x19\xe3\xab\x72\xcc\x5a\x88\x29\x0a\x88\xe9\xae\x9d\x98\x24\x50\x53\x91\xc7\xbf\x1b\x8a\xda\x01\xa6\x8b\xe6\x2d\xb8\x8e\x88\xdd\x1d\xc9\x65\x0d\xe5\xfd\x2d\xa2\xa3\x6b\xc3\x0d\x3e\xfc\x57\xf3\xd0\x3f\xe5\x58\x60\xa6\x20\xe6\xd7\x8a\xee\x82\x04\xa9\x47\xe4\x33\xc4\x67\x30\x63\x08\x86\x9f\xc2\xcd\x75\x2e\x7f\x08\xf7\x42\x34\x3e\x40\xf4\x88\x1c\x41\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\x56\x8b\x65\x3c\x42\x83\x44\x72\xfb\x05\x61\x51\x02\xe5\xb8\x83\xf0\x64\x4f\xf9\xd6\xad\x34\x59\x80\x82\x02\x5b\x59\x34\xcf\xed\x83\xe0\x43\x28\x32\x06\x3e\xf1\x04\x4e\x7a\xf1\xfb\xef\x79\x66\xbc\x15\x6d\x71\x12\x2f\x58\xce\xa1\x76\x0d\xbd\xd8\x26\x99\x52\x81\xcb\x36\x08\xde\x80\x8d\x29\x62\x4c\x03\x04\x16\xf4\x35\x56\x28\x21\x58\x2a\xf4\x87\x6f\xd6\x8a\x0d\x71\x13\x2c\xb8\xab\x3d\xbe\x45\xa2\x98\x4b\x35\x08\x85\x3b\xdf\x31\xd4\x8e\xc3\x42\x21\x8c\x18\x79\x0e\x23\x4b\x39\x04\x03\xbb\x82\x70\x24\xc8\x6d\x35\xf1\x64\x26\x33\x1f\xb2\x35\x8c\xca\xd4\xc2\x47\x1c\xdc\xb1\x75\x9f\xda\x61\x35\x50\x96\x55\x9e\x6c\x88\x27\x40\x72\x15\x41\xff\x73\xac\x46\xcc\x72\x56\x17\x36\x12\xa4\x79\x0d\x92\xa4\x1c\x68\x8f\x21\x97\x84\xe9\x09\x43\x7d\xf6\x23\xbf\x40\x57\xa0\x7e\xf9\x68\xe7\x92\x9d\xae\x38\x2c\x26\x1e\xcf\xe3\x1d\x85\x6d\x37\x4a\x3b\x4d\xf6\xe5\x57\x14\x82\x1b\xba\xbf\x30\x85\xf2\x3b\x08\xc3\xa4\x69\xc8\x2b\x0e\x56\xdd\xa6\xbf\x44\x36\xde\x75\x07\xdd\x45\xe5\x66\xfb\x38\x5c\xb3\xcf\xbc\xc1\xdc\xde\xb2\xb9\x81\x6c\xb1\x8d\x02\xee\xc3\xee\x5f\xcb\xe3\x5b\x1a\xfa\x79\x0c\x49\x7f\xab\xb9\x60\x91\x44\xe7\x58\x87\x89\xbd\x8e\x83\x9c\x9e\x20\x85\x00\x82\xff\x1c\xe3\xb3\x6f\xb6\x78\x5e\xb3\xf7\x3d\xfd\x83\x62\xfe\x6e\x2a\x3e\x08\xae\x3e\xf1\x76\x61\x6f\x10\xff\x1d\x47\x10\xe9\x0f\x3d\xb9\x1c\x83\x3a\x20\x93\x83\xb1\xc6\x60\xcc\x6f\x14\x0f\x33\xc1\x23\x22\xe5\x11\x1a\xc2\x45\x63\xff\x89\xf0\xd4\x39\x24\x82\x97\x47\x4c\x6b\x26\x0e\xbf\x25\x68\xbf\x4c\xe2\x4d\x27\xc0\x80\xc1\x6d\xe5\xcb\x49\x57\xd7\x28\x69\xd3\x26\x1c\x16\x1d\xb4\x01\x65\x0d\xd0\x70\x76\x82\x62\x1e\x3d\x12\x71\x2c\x48\x4c\xe5\x09\xf8\xd6\x55\xab\x53\x2f\xd5\xda\xf6\xd6\x92\x46\x5b\xa0\xc0\x8a\xa4\xb8\x53\xd3\xbf\x0d\xb0\x76\xe1\xb5\x07\x88\x4e\x41\x9d\x70\x39\x19\x26\x08\xd9\xc1\xdd\x10\xa6\xc4\x02\xe2\xfa\xbd\x29\xab\xb2\x10\x4e\xd3\xd0\x42\x5b\x5b\x36\x91\xd8\x45\x0c\xce\x86\xd3\xbe\x9f\x13\x49\x5c\xc0\x81\x99\x94\xe2\x36\x96\xd9\xb0\x8b\x0c\xab\xb9\x84\xd4\xd5\xf2\x1a\x58\xa5\x0b\x3e\xd5\x2b\x84\x33\x88\x57\x30\x56\x8a\xe2\x23\x9f\x60\x29\x15\x4d\x92\x11\x63\x84\xc4\x12\x41\x96\xe9\x57\x8d\x19\xf2\xfa\xd3\x03\x84\xe3\x18\xfd\xef\xaf\x3f\x5e\xfc\x7c\x3f\x1c\x9f\x5f\x81\xd1\xfa\xfc\x62\xf8\xcd\x81\xff\xf1\xfa\xe1\xde\xff\x6a\x2c\x2c\x4f\x44\xa0\x14\x3f\x82\x8a\xc7\x24\xb1\xc9\x13\x64\xc4\xc2\x91\x3a\xec\x00\xfd\x44\x12\x17\xe9\x6a\xc5\x14\x0f\xa1\x68\xf7\xb0\xb5\x62\xb1\xb1\xf9\xad\xa1\xfc\xde\xfa\x4f\x96\xd3\xa0\x23\x1e\xdf\x85\x13\x03\x21\x47\x06\xcb\x20\x99\xdc\xea\xbe\x05\xc1\x11\x36\xa3\xac\x2d\x1e\x8f\xb0\xa7\x97\x14\xe2\x7f\x20\x8b\x1f\xb5\x7a\x7d\x83\xa9\xe8\x4c\x7b\xcd\x68\x40\xee\xc4\x68\x3d\x1d\xcb\xea\xa1\x92\x46\x16\x36\xd9\x36\xad\x31\x9f\x4d\x40\x70\x6f\x3e\x5d\x0b\x2f\x45\x3e\x2b\xe1\x50\x2a\x7c\x3e\x87\x83\x72\xf2\x17\x4d\x41\x83\x23\x76\x7f\x7d\x76\x7d\x82\x48\x82\x27\x1c\x42\xf9\x6d\x48\x90\x6b\xc2\x2e\x58\xc4\xd3\xa0\xa1\x12\x42\xc9\x01\xca\x0a\x84\x92\xd0\x88\x76\x64\xda\x58\x81\x54\x92\x71\x51\xc7\xf7\xd8\xad\x0a\x68\x27\x7b\xc3\x45\x97\xeb\x5f\xbf\x06\x4b\xc7\x33\xad\xc8\x55\x38\xaf\xbd\x9b\xa7\x04\x9b\x5a\xfa\xc6\x2d\x64\x6d\xf9\x36\x80\x35\x49\x4a\xf5\x14\xf5\xc1\x91\x47\xd6\x05\x5f\xbc\xc9\x19\xfa\xe1\x2f\x12\x4d\x72\x35\x62\xe5\x36\x38\x43\x83\x9f\xee\xd0\x77\x58\x45\xf3\x6f\x46\xec\x5a\xab\x99\x3f\xfc\xa5\x05\x4a\x69\x6d\x74\x42\xbd\x26\x67\x58\xe1\x0b\x8e\x63\xca\x66\x4d\xd0\x84\x45\xfd\x98\xe1\xfd\xe0\x04\x5d\x5b\x1d\xbe\xc8\x04\xf1\x29\xc1\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x65\xf8\x36\xa3\x99\xc1\x85\x35\x62\xf7\x06\x93\x51\x73\x55\xaa\x50\xc6\x6d\x0d\x23\xad\x95\x19\xb4\x4a\xec\x32\xa4\x48\xb2\x40\x7a\x75\x80\x8c\xfd\x66\x58\x79\x0c\xe4\x99\x3a\xb3\x1f\x31\x50\xd0\x7d\x6e\x4a\xc2\x23\x9c\x40\x4c\xde\x61\x60\xd3\xd3\x6a\x3b\xcf\x21\x3f\xdc\x14\x3d\x5f\x94\x43\x67\x3d\x64\x81\x17\xca\xc2\x8d\x02\x03\x00\xec\xa3\xf5\xc6\xa6\x5c\x73\x1c\x83\xc5\x06\xc6\xb7\xc4\xac\x8e\xfe\xd0\x63\xb3\x99\x65\xd1\x4f\x7d\xda\x16\xcf\x99\xc3\x22\x89\xc0\x7c\xcf\x16\x10\xbe\x0d\x45\x47\x38\x84\x7e\x14\xdc\xd9\x12\x65\x6d\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\x58\xcf\x15\xcb\x33\x1b\xd8\x68\x65\xfd\x4c\x90\x43\x9f\x01\x15\x97\xd6\x54\xdf\xb0\x47\xe8\x36\x54\xaf\x63\x1e\xe5\xa9\x43\x56\x86\xec\xa9\xa2\xac\x7c\x49\xe2\x31\x17\xfb\x2a\x8a\x07\x94\x16\x45\x20\x7d\xbc\xb3\x7e\x6c\x08\x66\x10\x7e\x5a\x97\xd4\xdb\x05\x5f\xe0\x1d\xdb\x45\xad\x99\x86\xc6\x59\xb9\xa5\x52\x6b\x5b\xe7\x25\x5e\x15\xe8\xaf\x5c\x80\xb0\x45\x3e\x67\x1c\x8c\xdc\x26\x3d\x8b\xc7\x5f\x49\x74\x7e\xa3\x25\x20\xad\xf1\xfa\x33\x98\x4b\x65\x82\xcb\x20\x5d\xc7\x7c\x6d\xd2\x05\x0e\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x9d\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x3a\xa7\xda\x62\x17\xec\x01\x6c\x5b\xfe\x4d\x50\x1e\x83\xd8\x21\x3c\xb3\x27\x5c\x86\x27\x13\x95\x8e\x66\x11\x49\x20\x89\x3a\x28\x73\x08\x2f\xec\x5a\x89\xfe\x7f\x2d\x01\x2b\x1b\xeb\xa3\xb2\x59\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xf0\x33\xd6\x9c\xfb\xc0\xc2\x68\x99\x8f\x8c\xe7\x65\x8a\x23\x83\x0a\x2a\xd1\xd7\x9f\x4f\xf4\x6f\x07\x68\x71\x02\x41\xa4\x07\xe8\xd7\x13\x8b\x96\x83\x85\x1a\xeb\x9f\xbe\x71\xb2\xb6\x6d\x02\x06\x4d\x25\xfa\xea\xf8\x09\x0b\x53\x33\xfa\xd8\x8c\xe8\x2b\xcb\x59\x7d\x5d\xbc\x50\x36\x4f\x38\x7f\xb4\x01\xb6\xb5\x0f\x8f\x1d\xf0\x1a\x90\xb7\xf7\x9b\x98\xad\xf7\x89\xf9\x0a\x1d\xc2\x0b\x04\x1d\x65\x13\x74\xf4\x77\xc9\x19\x3a\x5a\xe0\x34\xb1\xbf\xba\xa7\x36\xfe\x17\x4b\x9b\x13\x17\xfb\x20\x9f\x64\x61\x2c\xa5\xdf\x25\x7c\x02\xb3\xba\x74\x33\x35\x11\xb4\x30\xd0\xe2\xf6\x29\x2e\x2c\x3b\x11\x97\x88\x0a\xf8\x41\x29\x57\xe6\x15\xe0\x71\x4d\xb3\xfa\xec\x87\xf4\xdf\xc6\x2f\x0c\x8b\xe2\x92\xf8\x8c\x71\xd8\x47\xaf\xe9\x46\x3f\xa3\xaf\x2d\x0b\xfa\x46\xdf\x31\x36\x5c\xd9\x2c\x43\x53\x07\x0b\xdf\xc1\xcf\x41\x07\x94\x21\x93\x96\xb9\xe4\xcb\x5f\x8f\x8f\x8e\x8e\xfc\xd7\x90\xb5\xfe\xff\x22\xaa\x24\x49\xa6\xa6\x25\x77\x83\x2d\x46\xec\xd2\x15\x5e\x70\xc6\xeb\x02\xd2\x31\x13\x5c\xf1\x88\x27\xe8\xb0\x30\xe8\xc6\x3c\x92\xe8\xdf\xb5\x58\x1b\x2c\x25\xfc\xa8\xf5\xb8\x16\x18\x58\x83\xf4\xfc\x4a\x87\xca\x1a\xc4\xab\xc7\x2a\x44\x71\xf3\x8a\x2d\x96\x61\x15\x0f\xa0\x05\x4d\x39\xc7\x16\xe9\x4d\x08\xfd\x32\xf9\xac\xe0\x51\x0b\x90\x5e\x63\x28\x7b\xf3\x4d\x59\x63\xb7\x05\x9e\x9e\x21\xeb\x96\x05\xb0\x78\x57\x96\x33\x98\x79\x1e\x84\xee\x13\x7d\xb9\xb0\xb0\x14\x80\xcc\xd3\x14\x8b\xc5\x71\x71\xda\xea\xc4\x59\x20\xad\x01\x8f\x49\xdc\x02\x80\x0b\x37\xb1\x47\xcb\x46\x31\x58\xf1\xd2\xdd\x68\xfe\xec\x46\x50\xcb\x30\x40\x2c\x20\x2c\xe2\xb1\xa5\xeb\x22\xfb\xb4\x2c\xb1\xf8\x77\xea\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\xb7\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x86\x7b\xf4\xfc\xfa\xce\x7d\xd3\xfd\xd2\x85\x75\x28\x8b\xec\x38\x09\xf1\xf1\xd8\x0c\x09\xfc\x5c\x5c\xbf\x10\xdb\x61\xac\x33\xb9\xcf\xcd\x35\xff\x3e\xe5\x37\x34\xd1\xb7\x16\xd0\xf8\xd1\x88\x95\x7e\x3e\x40\x24\xa1\x29\x65\x3e\xb6\xce\x30\x77\x3e\x35\xd2\xf3\x23\x55\x7a\xcb\x64\xfc\xa8\x39\x98\xc3\x75\x0a\x54\xaa\x01\x5b\x38\xd2\xf1\x8e\x29\x6b\x81\xc8\xa5\x1e\x57\xa1\xa3\x6b\x61\x56\x37\x71\x68\x05\x52\x1a\x10\x1e\x9c\xdf\x11\xd3\xad\xb9\xb3\x54\x84\x0b\x07\xed\x05\xcd\x1d\x3a\x40\xfc\x80\x03\x40\x1f\xa5\x98\x5f\x2f\xff\x36\x08\x28\x43\x96\xa7\xdb\x26\x9b\xd8\xf0\xe1\xb7\x32\xd3\xdd\x08\xe2\x6e\x2a\x9b\xb8\x44\x58\x9e\xba\x03\xb5\x06\xc5\x0d\xad\xf8\x13\x93\x28\xc1\x06\xa9\x46\x37\x04\x91\x8f\x07\xc6\x41\x9a\x05\x7d\x99\xeb\xc5\x74\x63\x6a\xec\x24\x84\x7d\x6d\xfe\xfd\x0d\xb2\x77\xc3\xb7\x07\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\x3e\x00\x65\xb4\xd6\x1f\x96\xc0\x04\x60\xd4\x4d\x14\xa0\x99\xf0\x56\xb9\x46\x10\x05\x3b\x66\x3c\x26\xdb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x96\x4e\x4b\xa4\x5c\xd3\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x2d\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x6d\x37\x21\x6a\x40\x2b\xea\x74\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x9c\xb3\x29\x3f\xb1\x3a\xd5\x05\x65\x8f\x86\xe2\x5f\x6a\x8f\x0c\x20\x36\x89\x4b\x30\x6e\xae\x4a\x2b\xcc\xe1\x10\x51\x16\x25\x39\x5c\x7c\x52\xe1\xe8\xd1\x80\x7a\xb7\x19\x7d\xf5\x37\xe3\xd5\xc9\x94\x2d\x12\x53\x9e\x24\xb6\xdb\xe2\x02\x2d\xca\x58\x3f\x51\x8c\x30\x7a\xb8\x3d\x6f\xee\xfb\x91\xd6\x9d\x39\xcd\xb7\x67\x99\x40\xe0\x7f\x7e\xa0\x6b\xc5\x5d\x56\x60\xf1\x48\x89\xd4\xbd\x71\xa9\x0d\x74\x55\x13\xe9\x27\xac\xc8\xb6\x99\x50\x06\x03\x6c\x8d\x48\xbd\x1a\xb8\xda\x52\xeb\xf1\x96\xc8\x64\x05\xaa\x18\x84\x06\xb5\x43\xa4\x85\xc1\x5a\xf0\x70\x0d\xec\x06\x78\xbf\xdb\x7c\x2a\xef\xae\x98\xce\xf2\x61\x26\x84\xac\x81\x36\x70\xa7\x5f\xef\x38\xc8\xd2\xab\xcb\xc6\xf8\x8c\x4d\xf5\x85\x3a\xe8\x6f\x6c\x25\xbb\x75\x98\xad\x23\x47\x23\x5e\x4b\x9f\x23\xe2\x47\xe2\xc2\x70\xbc\x2c\xe6\xfa\x9d\x81\x6f\x8b\x97\x8a\x3b\x78\x0b\x6d\x03\xe1\x07\x62\xeb\x96\x61\x13\x5a\xfc\x1a\xa7\x9d\x01\xe5\x8a\x8e\xcf\xec\xc7\x97\x35\x78\x39\xcf\x8a\x2e\x21\x8b\xcf\x03\xa7\xa4\x98\xe9\x93\xed\x7a\x6d\x31\x42\x1a\x89\x70\xa3\x21\x3d\x64\x1b\x0d\xc8\xf4\xd8\xb1\xee\xa1\xed\xca\xb5\xf2\x6c\xec\xf0\x38\x31\x76\x26\x35\x07\x13\x44\x51\x2f\x48\x73\xb4\xb2\x29\xc2\xd4\x16\x4a\xb0\x98\x19\x05\x49\x12\xf5\xff\xb1\xf7\x6d\xcd\x6d\x23\x49\xba\xef\xf3\x2b\x2a\x62\x1f\x6c\x9f\x43\x51\xd3\x3d\xb1\x1b\xbd\x8e\xd8\x07\x5a\x96\xa7\x35\x6d\x4b\x1e\x49\xee\xee\x3d\xcb\x0d\xba\x08\x14\x49\x8c\xc0\x2a\x18\x05\x48\xe6\xec\xcc\x7f\x3f\x51\x99\x59\x17\x5c\x09\x90\x92\xed\x99\xed\x87\xdd\x69\x8b\x40\xa1\xee\x95\x95\xf9\xe5\xf7\xe9\x17\x2d\x23\xec\x73\x1e\x8e\x18\xe1\x03\x34\x59\xc3\xb8\x27\x98\xdf\x7d\x2b\xcd\xd5\xb2\x4a\x2e\xea\x4e\x65\xa7\x6e\x1c\x30\xe7\xf9\x44\x8c\x48\xe5\xc8\xc4\x1d\x9b\xb5\xd2\xcd\x99\x72\xa4\x36\xf7\x25\xdf\x3a\x46\x00\xab\x10\x4c\xf9\x5d\x58\xb9\xa5\x00\x5e\xdc\xee\x3a\x1c\x2d\xc2\x1d\x56\x81\x44\x31\xbb\x6a\x30\x97\x33\xfb\x88\x67\xf7\x32\x17\xb3\x1c\x0d\x70\xc0\x87\x22\x1a\x1a\xee\x57\xdc\xf7\x3a\x35\xae\xa3\x11\x63\x93\x37\xeb\x3a\xe2\xe6\x7e\xe7\x4e\x23\x52\x0c\x72\x1c\x9e\xbd\x6a\x4d\x24\x9f\x7f\xc4\xc7\x6f\x6c\x13\x6b\x4a\xfc\x6d\x1f\xde\x7f\x97\xb2\x8c\x11\x54\x50\x28\xfe\x8f\x18\xd2\x74\xe7\xa7\xa9\x27\x89\xab\x7d\xac\xb9\x5a\x8b\xa3\x76\xe3\x84\x6f\x17\xb9\xea\x96\xb3\x1a\xd0\x4d\xb6\x88\x8a\x7f\x67\x83\xf2\x16\x3b\xf6\xa9\xe4\x29\x1e\x6e\x92\xa6\xa3\xad\x36\x98\xca\xdf\xff\x1b\x9b\xc1\xe9\xc3\xde\xc1\xbe\x08\x01\x7e\x28\xad\x50\x2c\xd9\x66\x22\xd7\x4a\xf2\x4e\x5d\xb7\xbb\x1f\xf4\x82\xb4\x69\x16\x3c\x8a\x54\xd9\xd4\xa1\x19\xd1\x92\x96\xd2\xc2\x46\x71\x76\x57\x2e\x45\x2e\x05\x6a\xd7\xc1\x73\xcc\x3e\x37\xa8\xba\x8a\x97\xc5\xe6\xfb\x45\x94\x26\x83\x05\x73\x20\xbb\x68\x66\x5e\x3b\xc3\xb7\xfa\x1a\x50\x29\xbf\x52\x75\xc9\xf0\x37\x86\xbf\x4d\xd9\x2b\x1e\xdd\x09\x19\xb3\x2c\x2d\xd7\x09\x91\x09\xc0\x09\x05\xdb\x65\xe0\x9e\xad\x36\x0c\x6d\x0b\x2c\xdf\x1c\x43\x73\xb9\xe5\x77\x48\x62\x4b\x46\x64\xc4\xd3\x4e\x2a\x2a\x67\x56\x2f\x92\xe6\xdc\xdd\x3b\x5a\xee\x3c\x6c\x16\x53\x9f\x7b\xba\xc4\xdc\x8a\x87\x8d\xa2\x88\x74\xc5\xaa\x1f\xb1\x70\xdd\x6c\x6d\x70\xbe\xd8\xbc\x7c\xa7\x62\x48\x95\xc1\xd5\x0b\xee\x5e\x20\x62\x2e\x25\xe3\x40\x1b\xf3\x4c\xb3\x32\xb3\xf6\x19\xf8\x21\x53\x88\x0a\xe3\x10\x98\x1f\xb2\xc4\xdc\xd2\x36\x62\x2e\x01\x69\xcb\x5c\xf3\x1a\x62\x57\x4c\x78\x40\x4c\xdb\xd6\xb0\x42\xd2\x84\xe3\x62\x9c\x0d\x1e\xe7\x3d\xf3\x74\x20\x8a\xb8\xd8\x08\xb9\x38\x80\x4e\x78\xf8\xa0\x55\x10\xc3\x64\x06\x3b\x7f\xae\xeb\xc2\x52\x26\x24\x20\x45\x2e\xfc\x90\x2b\x33\x59\xd5\xcc\xe8\x44\x33\xcd\x8b\x44\x9b\xbd\xac\xb5\xc7\x3d\x55\xc5\x31\xbd\xce\xc7\xf1\x63\xb4\x70\x63\xd4\xfa\xc2\x65\x25\x4c\xd9\x1b\xf0\x82\x05\x37\x03\xe5\x98\x26\xba\x36\xac\x62\x23\x3a\x29\x17\x1f\x03\xce\x63\x5b\x10\x3c\xdf\xeb\xdc\x74\x19\x28\x53\x36\xf3\xd1\x07\xe4\xda\xc0\xb8\xc2\x9e\x16\x89\x54\x8b\x43\x26\xdf\x20\x47\x1d\x44\xe8\x61\x02\x31\xb0\xa4\xb4\xf9\xbb\x67\x90\x77\xd5\x7c\x80\x24\x4f\x7e\x27\x64\x9f\x37\x66\x78\x0d\xd1\x5d\xd6\xeb\x12\x70\x7e\x38\x85\xae\xb8\x43\x2a\x38\x7c\xd9\x79\x7a\x93\x64\x75\x6a\xba\xdc\x5c\x43\xa2\x3b\x4a\x2d\x41\x6f\x2c\x11\xa4\x3c\x6c\x94\x0e\xd7\x99\x1d\x3f\xbc\xc9\xe6\xa5\x63\x09\x87\xd4\x1c\xd7\xc1\x88\xc9\x91\x2a\xe4\x4f\x81\x5a\xbb\x45\x8a\x9e\x66\x37\xde\xcc\x6e\xa1\xd0\x0d\x10\xc5\xb2\x45\x35\x57\xf3\x4f\x3f\xe8\x2b\x58\xb1\x8f\x91\xa9\xdf\x2e\xcb\x7a\x3c\x4a\xfe\xc0\xf8\x80\xc3\x7f\x79\x4d\x57\x1e\x3b\x6e\x89\x4c\xc5\xcc\x4f\xaf\xf1\x02\xae\x5f\xbf\x59\x35\xe1\xd7\x41\x6d\xdb\x37\xb3\xdf\x05\x20\x02\xb6\x2c\x13\xd4\x50\xaf\x18\x84\xca\x5a\x1c\xc0\x7f\x0c\xc7\x7f\xa2\xdd\x79\xd2\x3e\xc7\xde\xab\xf8\x98\x89\x35\x9e\x4e\xaf\x39\xaf\x07\x60\x8c\x75\x9b\xe6\x7b\x4f\x4f\x64\xaa\x1b\x1d\x1a\x2f\x86\xab\xa4\x03\x1c\x60\x59\xae\x6e\x40\x5d\xa4\x8b\xb1\x22\x20\xde\xb7\x29\x68\x66\x9c\xcd\x67\x5c\x42\x44\xd7\xa0\x50\x74\xd9\x1f\xff\x9c\xfd\xe9\xe6\xea\xf2\x64\xcb\x73\xbd\xe1\x90\x11\x6c\xcb\x9a\x58\xc1\x36\xbc\x1e\xdb\xa8\x57\x22\xe7\xf2\x84\xad\xd5\x04\x63\xac\x2f\xd9\xa6\x28\x32\xfd\xf2\xf4\x74\x9d\x14\x9b\x72\x39\x8d\xd4\xf6\xd4\x77\xcd\x29\xcf\x92\xd3\x65\xaa\x96\xa7\xb9\x00\x94\xed\xc9\x77\xd3\xef\xbf\x83\x91\x39\xbd\xff\xee\x14\x22\x6b\xd3\xb5\xfa\x97\xb7\xdf\xff\xfb\x1f\xfe\xcd\x14\x9c\xed\x8a\x8d\x92\x2f\x29\x80\xdb\x5b\xf6\x09\x5a\xe5\xa7\xf8\x4a\xed\x2b\xff\x3e\xfd\x7d\x58\x0d\x7a\x74\xab\x62\x91\xea\xd3\xfb\xef\x16\x76\x60\xa6\xd9\xee\x37\x5c\xea\x57\xc3\xa5\xde\x25\xc5\x6f\xb8\xd4\xaf\x8a\x4b\x1d\x6e\xe1\xb8\x3d\x06\x88\x3e\xfd\xfe\x68\xfe\xee\xf6\x48\xeb\x7a\xdf\xb7\x0f\xb5\x1c\x0e\x61\xd6\xc0\x11\x47\xc4\x9d\x18\x75\xc5\xae\x35\xd7\x5d\x1d\x3a\x5c\x6c\x63\xc9\xf6\x3b\x8d\xf9\x51\x49\xd2\x80\x02\x49\x22\x20\x72\x46\x97\x60\xc6\x93\x36\xb4\x29\xa1\x9d\x8e\xe9\xbf\xa7\xa4\x24\x7f\x6c\x2e\x72\x6a\xee\x81\x3c\xe4\x29\xbe\x6d\xb1\x59\xea\xc1\xf2\x8f\x3f\x06\x6b\xf7\x40\x1d\x57\x47\x46\x8c\x93\x07\xea\x62\xeb\xd5\x51\x8d\x0d\xd7\x87\x81\xfc\x66\x48\xf9\xe7\xe2\x74\x4e\x15\x9f\x3e\x68\x0f\x0e\xcb\xa2\x00\x22\xe1\x44\xd6\x94\x95\x79\xa6\xb4\xd0\x53\xf6\xa6\xa6\x74\xe8\x81\x8b\xd7\x6f\xce\xd8\x77\x3f\xfc\xfb\x1f\xe6\xf2\x79\xcb\xb9\x0d\xfb\xbd\xca\xd7\x84\xa3\x84\xd3\x7a\xcb\x75\x21\xf2\xd3\x7c\x15\x9d\xe2\x2e\x77\x6a\xde\x3f\xa1\x8f\x9e\xa8\xd5\x89\xa3\x24\x3e\x21\x76\xd6\xe9\x36\x1e\x47\x30\x50\x99\x7a\x78\xd6\xd0\x41\xa3\xe1\x50\x42\x2a\x22\xb5\x72\xe4\xf3\x98\xe7\x82\x3a\x15\x6a\xd5\xf2\x1f\xaf\x52\xb5\xd4\x2f\x1c\x01\x1a\xd7\xf6\x1b\x9e\x91\xa8\x7b\x69\x3e\x0e\x3b\xb9\x9d\x22\x4f\xe9\xa8\xb0\x7b\x49\x78\x1d\x19\xd3\xf1\xed\x8b\xcd\x1f\xf7\xc8\xc7\xc0\x73\x55\x4a\xcb\xee\xac\xa4\x50\x2b\x40\xf1\x81\x25\x6c\x51\x0a\xe0\xab\x35\x27\xad\xe7\x5e\xc8\x45\x86\x07\x0c\x44\x15\xba\xbb\xfb\x48\x86\xf3\x7d\xfd\xfc\x14\x0c\xe7\xc7\xf6\x3b\x6d\x28\x5f\xa9\xc3\x8f\x85\x12\xe2\x52\x1a\x83\xaa\x30\xcf\xef\x8d\xa0\xba\x7d\xc0\xab\x0f\x79\x32\xe1\x8c\xe7\x60\xa4\x89\x93\x42\x9d\x00\x69\x0d\x50\xa1\xa0\xe6\x40\x17\xac\x02\x22\xcf\x63\x8e\x49\xf3\xfc\x80\x7a\xa2\x61\xfe\x39\xa8\x28\xd9\x24\x1a\x29\x3c\x09\x92\x95\x48\x29\x72\x8a\xa9\xed\x3d\x51\x47\xc6\xa5\xc3\xa1\xec\x47\x64\x05\xba\xd6\x01\x1f\xbc\xc3\xe3\xf3\x60\x13\x98\x32\xb0\x3e\x37\x6a\xab\x8c\x39\xa3\x4a\x1d\xfc\x88\xb7\x17\x38\x84\x3b\x6d\xaf\x2d\xcf\x90\xa4\xee\xeb\xb5\xc6\x2c\x2d\xf3\x13\x3a\xf5\xc2\x87\x46\x49\x6c\x2c\xab\xa2\x02\x7b\xea\xef\xd8\xe0\xfb\xe7\x0d\xa0\x1e\x50\xa7\x0e\xa4\x62\x89\xe3\x39\xf9\xab\xb9\xd7\x98\x29\xe5\x6e\x0a\xee\xe4\x46\x90\x0e\x72\x31\x86\x74\xaf\xd6\x9a\xef\xcc\x96\x2e\xb7\x23\xc7\xc0\x81\x8c\x87\x0c\x00\x97\x08\xbb\xb5\x78\xdb\x93\x56\xc0\x6d\xd7\xba\xb4\xc2\xac\xf1\xc2\xf2\x85\x8e\xab\xea\x8d\x2b\x80\xa8\x41\x9b\xf5\xf6\x74\x4b\x80\xce\xc6\x3e\xc6\x0d\xc1\xda\x16\x1d\xa0\x1b\x39\x7e\x31\x82\xc0\xca\x98\xbe\x83\x8f\xe0\xe4\x6c\xf4\x60\xb0\x16\xba\x3a\x70\x9c\x8b\xad\xcf\x63\xd5\x06\xe7\x47\x86\x3a\x9f\xbd\x63\x6a\xd9\xb8\x3c\xba\x17\xef\xbd\x0a\xf5\x2e\x13\x13\xb6\x2c\xe1\xf7\xcb\xab\xdb\x10\xad\x91\x60\x6b\x4f\xa2\x8d\x88\xee\xc0\x61\x82\x47\x9e\x13\x6d\x24\x36\xbc\xb9\xf4\xd2\x5f\x85\xb2\xd0\x83\x9d\x63\x43\x77\x8a\x00\x2a\x67\x71\xa2\xb3\x94\xef\x20\xc8\x2b\x11\xa7\xef\x03\xc4\x2e\xc1\xc5\x6c\x05\xfb\xfc\xc5\xc3\x47\xda\x8c\xca\xcc\xbf\x37\xb6\x2f\x79\xbe\x4c\x8a\x9c\xe7\x3b\xe6\x3b\xb3\xb9\x1f\x30\x2d\xb6\x5c\x16\x49\x34\x97\x5b\xc1\x65\x88\xca\xa3\x20\xb7\xe9\xe4\x58\x09\xe2\x0b\x5e\xad\x44\x54\x78\xc2\x41\x30\xde\x5d\x4f\xed\x5b\x83\xe3\xda\xee\x56\x5e\x6f\xd3\x7f\x4c\x24\xa6\xb7\x27\x5b\xc0\x7c\xd2\x1c\xa2\xa3\xf1\xc0\xe0\x0d\x48\xc5\xd1\x91\x6b\x2f\x83\xf0\x2f\x3b\xa7\xd8\x52\x14\x0f\x02\xf2\xe9\x29\x01\xb0\xcd\xc6\x3f\x5a\x2e\xe0\x38\xf5\xdf\x76\xdd\xe4\x00\x09\x86\x0b\x2c\x04\x93\x39\xe2\x1f\x59\x63\xf0\x79\x46\x29\x89\xe0\xed\x79\x46\x7e\xab\x67\x70\x4c\x9b\xdb\x63\x7e\x2f\xe2\xb9\xac\xd2\x2a\x91\xcd\xe8\x17\x1c\xf3\x42\x58\x8f\xb3\xdb\xd8\x3e\x1e\xe4\xcb\x3f\x07\x2a\x09\x4f\x22\xe9\x92\xee\x7a\x84\xb9\xb0\xd1\x4f\x79\xab\xb2\x9a\x80\xa1\x75\x3f\x00\x92\x25\xb4\x15\xba\x21\x5d\xbc\x0a\x9e\xc2\x4d\x4a\x47\x1a\x83\x8c\x72\x0e\x00\x4b\x7e\xc9\x86\xa7\xb3\xad\x8c\xb9\xb4\xd9\xd4\xab\x32\x45\x96\xd0\x2e\xa9\x30\xe2\x90\xb2\x99\x1f\x5f\x2f\x03\xc8\xf9\xd5\x58\xa0\x2d\xe6\x60\x0f\x01\x18\x19\xf7\x3a\x3b\xeb\x85\xd4\x28\x48\x6d\x65\x85\xc0\xf1\xbc\x16\x05\x9c\xe6\x71\x99\x62\x72\x30\x78\xcc\x81\x8f\x8a\xa7\x29\x4b\x0a\x3d\x97\x8e\x3e\x0b\xc9\xd0\x61\x87\xb5\x2e\x75\xab\x48\x2b\x9d\xae\x2d\x69\xf7\x83\x1d\x96\x44\x49\xd1\x80\x70\xef\x42\x29\x8e\x2c\x13\x1c\x73\xd9\x70\xd8\xe6\x32\xbc\x73\xd5\x07\x81\x12\xbf\x40\xa3\xfc\x31\x72\xb0\x7a\x10\xf9\x20\xec\x3e\x7a\x48\xa6\x6c\x86\xad\x33\x17\x2e\xab\xb2\x89\xb5\xa5\xfc\x79\x42\x5a\x9a\x5b\x4d\xa1\xad\x8f\xdc\xdf\x5b\x41\xce\x39\x2a\x53\x9e\xa7\xc0\x49\xbf\x2a\x53\x96\xac\x02\xc1\x50\x18\x03\x24\x4f\x32\xc3\x15\x29\x38\xab\xad\x97\x5c\xf3\xad\x08\xf2\xb6\xc9\xbd\x93\x06\x18\x0a\x64\x84\xc6\xe0\xbc\x29\xeb\xc5\x94\xbd\xae\x2b\xcc\xc3\x9a\x08\x48\x17\x13\x8d\xdb\x9f\xab\x6f\x90\x72\x88\x4a\xf5\xc9\xca\x5c\x29\x9f\x05\xab\xae\x63\x04\x81\xbc\x7d\x1c\x40\xc3\x52\xf7\xf7\xa3\x86\x5b\x53\x8e\xcd\xab\x35\xd8\x86\x5b\x10\x1d\x15\xb4\xa7\xc2\xc8\x4a\x86\x84\x95\x07\x54\xd4\x11\x82\xb6\x54\x76\xdb\xa3\x4f\x0a\xe3\x38\xb2\xaa\x81\xda\xcf\xf8\x8a\x06\x33\x27\x84\xe3\x0c\xe9\xd9\x35\x2f\xc6\x62\x73\x5c\x32\xce\xf8\x8a\xb6\xe2\xa0\x86\x54\x13\x76\x8f\x91\xf5\xf4\x12\xfc\xe3\x2b\xea\xa4\x9f\xbd\x1e\x80\xd7\xc4\xaf\xe4\x50\x5a\xa6\x43\xd7\x02\x3d\x97\x74\xd8\x8d\x4f\xff\x9c\xf9\x39\x07\x82\x47\xcc\x54\x7f\xca\xae\xa4\x40\xe4\x9c\x5a\x05\x87\x0a\x55\x80\x94\x91\x80\x6c\x5e\x06\x12\xd4\x69\x22\xef\x2c\xb5\x84\x59\x72\x13\xc6\x7d\xe9\xb0\xeb\xe1\xb4\xc1\x5d\xa4\xc3\x96\x6c\x93\x66\x38\xc2\xbc\x1c\x96\xa0\xd9\x7e\xe7\x0f\x00\xa8\xe3\x77\x80\xb6\x76\x0c\x1f\x96\x5e\x24\xb9\xbb\xc5\x55\x34\xc6\x43\xd4\x68\x91\x14\xbb\x7d\xfd\xfb\x7e\x53\x45\x21\x8e\x10\x32\xfa\x70\xf9\xfa\xfc\xcd\xc5\x65\x55\x7d\xe8\xcf\x1f\xce\x3f\x54\xff\x72\xfd\xe1\xf2\xf2\xe2\xf2\x8f\xe1\x9f\x6e\x3e\x9c\x9d\x9d\x9f\xbf\xae\x3e\xf7\x66\x76\xf1\xb6\xf6\x9c\xf9\x53\xf5\xa1\xd9\xab\xab\xeb\x9a\xde\x91\x15\x2b\x0a\xfe\x74\x7b\xf1\xee\xfc\xf5\xe2\xea\x43\x45\x32\xe9\xf5\x7f\x5e\xce\xde\x5d\x9c\x2d\x5a\xea\x73\x7d\x7e\x76\xf5\xf3\xf9\xf5\x1e\xc5\x23\xdf\xde\xd6\x2e\x7d\x0c\xf8\xd8\xc1\xfa\x57\x33\xb6\xca\x13\x21\xe3\x74\x87\xd8\x7b\x7b\xb3\xad\x81\x69\xc3\xb3\x37\xd9\x0a\x55\x1e\x03\xa1\xbf\xdd\xa0\x42\x3d\xb0\x60\x60\x69\x94\x32\xcb\xf5\x5d\x27\x47\x62\x91\x37\xa3\x02\xbd\x99\x42\x45\xbe\x73\xb9\x68\x7d\xd5\xf1\x0c\x4a\xf4\x11\x96\x89\xbc\xaf\x2e\x60\x19\xe5\x65\x56\x24\xcb\xee\xa4\x88\x81\xcc\x42\xe3\xef\xde\xc8\xf7\xd7\x4e\x8e\x72\xd9\xbe\x31\x56\x72\x03\x8e\x01\x1e\x43\x09\x87\xca\xba\xb9\xb7\x2d\x58\x33\x2b\x97\x69\x12\xb1\x24\xae\xfb\x53\x30\x85\x0d\x5d\xc6\x75\x5a\xd0\x4c\xe4\x60\xaa\x9a\x1b\x40\x96\x8b\x13\x5e\x16\x1b\xab\x38\xef\x32\x19\x91\xa6\x53\x44\xb9\xc0\x58\x80\xd0\xe0\xa4\x45\x3d\xaf\xe0\x4b\x50\x19\xca\xe0\x8e\x81\x2c\x66\x1a\x50\xb4\x77\xc4\x08\xf0\x4d\x2c\x7d\x84\x93\x14\x9f\xef\xed\x1a\xaa\x71\xa2\xeb\x62\xce\x70\xc2\xe3\x8f\x56\x15\xcc\xb4\xdb\xec\xd4\x4e\x15\x0b\x07\xd9\xe6\x6e\xb4\x37\x63\xdf\x1c\x0b\x27\x4a\x35\x99\x81\x4a\xa7\x9f\xce\x72\x01\x87\x08\x41\x01\xac\xff\x02\xa0\x2b\x94\xeb\x01\x29\x1e\xe6\xaa\xb6\x14\x1b\x9e\xae\xd0\xe2\x30\x43\xe3\xd7\x55\x73\x8a\xde\xaa\x3b\x21\xaf\x71\xc0\xbe\xca\x76\x28\xf1\xe6\xe3\x73\xfa\x9d\x47\xc8\xbb\x30\x4d\x1d\xed\xac\xb2\xb9\x6e\x60\x4c\x15\x78\x4f\x08\x7e\xc6\x94\x0e\xcf\xd8\x6b\xd3\xe4\x56\xab\xe4\xb3\x29\x70\x2e\x45\x2b\x67\x29\xe0\x85\x2c\xbb\x92\xdb\x97\x01\x1b\x85\x14\x35\x77\x42\x82\x9e\x18\xca\x0d\xef\x9d\xb3\xe3\xfc\xe7\xcd\xb1\xe8\x71\xe8\x83\xcf\x2f\xa9\xc8\xac\x85\x51\x1e\xdb\x4f\x05\xe6\xd8\x4c\xd9\x6b\x22\xde\x30\x7f\x39\x7b\x7b\x71\x7e\x79\xbb\x38\xbb\x3e\x7f\x7d\x7e\x79\x7b\x31\x7b\x7b\x33\x74\xf9\x3d\x46\x5e\x54\x6d\xf5\xd5\xd3\x83\xdc\x0e\x71\x4a\x2b\xcf\xa7\xe7\xba\x46\xf9\x65\x07\x43\xb2\xbf\xf6\x49\x9c\x2d\xe2\x44\x47\xe6\xf8\xdb\x2d\x84\x8c\x81\xec\xf9\xa0\xa9\xda\x5e\x54\xbd\x15\xee\x09\xe6\x9e\xb0\x3b\x08\x9e\x76\xf7\x76\x46\xbb\xdf\x01\x75\x07\x6e\xc8\x5c\x98\xc5\x1f\x9b\xfb\x81\x3b\x6d\xa6\xfb\x15\x3e\x4c\x71\xc7\xb5\xad\x5a\x44\xbd\x4d\x58\xdf\x44\xeb\x92\x9b\xfd\xd1\x3e\x06\x90\xc3\x8e\x5e\x21\x06\xbe\x90\x71\x3a\x09\xd4\x52\x59\xa2\xe7\x72\xcb\x65\xcc\x0b\x95\xef\x3a\x9a\x38\x6c\xf3\x0c\x97\x4d\x75\x0b\x0d\x8f\x6c\x29\x44\x6c\x47\x01\x1f\xe5\xb2\x3e\x95\x90\x97\xfa\xf6\xea\xa7\xf3\xcb\x9b\xc5\xf9\xe5\xcf\x8b\xf7\xd7\xe7\x6f\x2e\x7e\x75\x48\xc8\x8c\xeb\x36\x75\xc4\x2c\x17\x66\x77\xb1\x34\x1f\xad\xfb\x0b\x4a\x16\xda\x72\x48\xa6\x2a\x59\xcd\xa5\xdd\x59\x72\x5f\xfc\x26\x57\xe5\x7a\xd3\x5e\x50\xbd\x96\xef\x67\xb7\x3f\x1e\x54\x4d\x20\x61\x42\x5d\x33\x5c\x6d\x4d\x44\x68\xb2\xa2\x7d\x0f\x61\xa4\xb5\xea\x01\x95\x18\x3c\xda\x16\x65\xe8\xd8\xd1\x0e\xba\xbd\x34\x37\xad\x5e\xe3\xbf\xe5\xf1\xae\x09\x74\x1b\xec\x9b\x95\x63\x04\x10\xca\x28\x8f\xd9\x28\xed\x65\xcb\xdf\x2a\x27\xd8\xf7\x27\xa9\x58\xaf\x45\x8c\xd3\xab\x5e\x30\xf9\xe0\x68\x0b\x8c\xfc\xb9\xde\xd6\x8b\x24\x60\x77\xc4\xc1\xec\xf0\x5e\xc3\x37\xf0\xf7\xee\x95\xf6\xbd\xe2\xcc\x8a\x64\x47\x4a\xea\x82\xcb\x8e\x40\xf2\x7d\x13\xa1\x39\x68\x2b\xba\xca\x99\x4b\x7e\x22\x87\x89\x0d\x19\xf8\x75\x70\x48\x08\x8d\x84\xfa\x24\x79\x3c\x02\x01\xbf\x40\xd5\xbb\x65\x10\xc0\x77\x7a\x6d\x77\xc4\xa7\x77\x6e\xf4\x5e\x9d\x88\x79\x0a\x5c\xbd\xa8\x94\x44\xe0\x73\xf4\x06\x81\xfc\x58\x27\x30\x78\xd4\x80\xd4\xbe\xfc\x33\x75\x3d\xde\x5a\xab\xae\x66\x6e\xb9\xdd\xdc\x00\x39\xe3\xad\xee\xb1\xdb\xef\xdf\xaa\xd8\xe1\xbe\xe4\x2c\x57\x71\x19\x59\xf6\x1b\x28\xd6\x23\x5c\xc8\xa1\x65\x0f\xd8\x98\x9d\x98\x61\xa6\x4b\x8a\x88\x4f\x00\xbb\x3e\x97\x5d\xe1\x24\xbb\x07\x74\xb8\xb9\xde\xdb\x53\xeb\x98\xb1\x6f\xe9\xfd\xee\x25\x68\x3b\x7b\x58\x0e\x29\xb3\x8f\x83\xb1\xd7\x01\x10\xa2\x71\x59\x72\x8c\x15\x57\x8f\xe3\x2e\xb2\x0b\xb7\xab\x8e\xc3\x31\x0d\x83\x81\x54\x93\x43\xf0\x88\xdc\x70\x8d\x96\x6b\x11\x6d\xaa\x15\x87\xd6\x54\x09\xe2\xea\xd5\x75\x96\xe0\x71\x1e\x82\x41\x11\xa3\x09\xde\xa9\x13\xf2\xe1\x56\xc4\xbe\x9c\x72\xe1\xb8\x89\x1f\x1a\x47\xee\xf2\x82\xfb\x1e\x6c\x58\x29\x2f\x65\xb4\x61\x59\xca\x31\x6f\x7a\xc3\x35\x4e\x69\x0b\x9b\xe0\xcb\x24\x4d\x0a\x20\xa4\xc1\x68\x5e\xad\x87\xcd\x8d\x86\xe7\x77\x96\x03\x96\x7b\xf6\xa1\xbe\x49\x7f\x24\x3c\xd5\x0b\xe4\x7f\x49\x80\xaa\x5f\xb2\xc1\x1b\xbd\xb1\x40\x3f\x2d\x09\x9c\xea\x87\xc3\xec\x78\x30\x2d\x7d\x5b\xc6\x8d\x2c\x95\xf8\xbe\xfe\x7a\xa5\xbf\x5b\x0e\xea\xf1\xe0\x0c\x22\x37\x1f\xb1\xcd\xd7\xa9\xcf\x5b\x57\xd6\x2a\x55\xbc\x43\x7e\xd7\x96\x8d\x4c\xe6\x5d\x65\xc7\xaa\x5c\x76\x71\xe7\x62\xad\xfa\x4b\xef\xf3\xfb\xdb\x75\xfb\x58\x7e\xc1\x70\x03\xe4\x85\x28\x92\x71\xae\x8d\xa0\xd1\xbc\x10\x27\xf0\x7a\x7b\xe1\x94\x4c\x37\xb8\xcd\x8d\x89\xe6\xf5\x34\x1c\x43\x2f\xc0\xe6\x9a\xb3\xeb\xcf\x25\x37\x5b\xc3\xd5\xea\x06\x19\x52\x8e\x99\x64\x45\xd2\x9c\x61\xed\x2b\xb1\xfe\xd5\xdb\x6a\x50\x25\x9c\x03\x83\xf3\x4f\xdb\x5a\x73\x63\xde\x1e\xbe\x20\xab\x1a\xf5\x59\x9e\x28\x60\x0a\x21\x65\xfc\x1e\x92\xc1\xd6\xef\x1e\xd1\x93\x9f\x4a\x51\x0a\x33\xf7\x97\x65\xbc\x6e\xfa\x36\x47\x58\x67\xbe\x49\x1b\xf5\xc0\xb6\x65\xb4\x61\xb6\x70\x16\x8b\x94\xef\x2a\x4d\x03\x7b\xa9\x50\x29\xd0\xf6\x1e\xc8\x21\x1a\x95\xba\x50\x5b\x80\x95\xfa\x72\xf3\x52\xc2\x84\x67\xbc\x28\xf2\x64\x59\x16\xad\x10\xb4\x0a\xa7\xd8\x81\x01\xad\x9b\xf7\xe7\x67\x17\x6f\x2e\x6a\xd1\xa4\xd9\xcd\x4f\xe1\xbf\x7f\xb9\xba\xfe\xe9\xcd\xdb\xab\x5f\xc2\xbf\xbd\x9d\x7d\xb8\x3c\xfb\x71\xf1\xfe\xed\xec\xb2\x12\x73\x9a\xdd\xce\x6e\xce\x6f\xf7\x84\x95\x9a\x5f\xed\x1e\x08\x1e\x50\x9e\x59\xa0\xab\xe5\x7e\xb6\xb7\x4b\xfa\xea\x4b\x36\xb3\x04\x70\x15\x8a\x42\x1b\x1a\x04\x2c\x01\x2a\x21\x53\x04\xf1\x35\x2f\x38\x29\xcb\x4f\xd9\x8c\x11\x0c\x18\xe1\xdd\xda\x18\x0b\xc4\x8e\x65\x46\x07\x8b\x30\x16\x43\xe4\x6f\x6e\x5e\xdc\x4e\xad\x88\x97\x2e\x15\x21\x0d\xba\xcd\x65\x9a\xcb\xf3\x7b\x21\x8b\x12\x38\x9a\x79\x9a\x32\x2b\x68\x4f\x0f\x04\x79\xda\xb6\x96\x3a\xd9\x26\x29\xcf\xbd\x0e\xd9\x15\x95\x05\x06\xbb\xad\xab\xa3\xe5\x69\x26\x01\xdb\xcb\xc3\x87\x0b\x06\xf5\x3e\x7b\x7b\x01\x26\x50\x54\x58\x91\x0d\xfb\xf1\xb9\x44\xde\x33\xfa\xe2\x96\x43\xca\x41\xa1\xc8\x9f\x86\x9f\xa7\x87\xbb\x27\xa2\x3e\x66\x11\x5b\xcf\xf3\x53\xc1\x9a\x5c\x25\xed\x7f\x9c\xcb\x22\xdf\x0d\xb6\x6b\x6e\x21\xc7\x56\x83\x6d\x4a\x08\xa6\xaa\x36\x19\xba\x3b\x98\x2d\xfd\x12\x8c\x1d\x0b\xaf\x23\x6f\xbc\x73\xba\x23\x9a\xa1\xc3\xfe\x4e\xcd\x21\xf4\xad\xf6\x43\x48\x83\x02\xbd\xb0\x54\xa5\x8c\x35\x61\xad\xb6\x89\x3c\xdd\xf2\xcf\x2f\x6c\x4b\x91\x56\xc0\x29\x04\x00\x65\x94\x48\xcd\x4d\x64\x67\x36\xb9\xfe\xee\x9a\xcb\x9e\xfe\xda\x6f\x2d\xda\x9d\x15\xae\x3d\xfe\x8e\x8a\xa8\xb1\x7b\xb1\x6b\x1b\xbf\x86\xca\x0b\x22\xd3\x68\xc1\x43\x21\x59\x2e\xcc\x83\x0e\x92\x96\x22\xd2\xd0\xfd\x1b\xa0\xe7\x15\x25\xba\xf6\xbd\x3b\x8c\xf2\x1e\xb5\x6c\x5a\xe3\xcb\x4f\x20\xd3\x43\x5f\x32\x63\x86\xd1\x66\xeb\xe8\x24\xa8\x3d\x85\xd1\xcc\x60\xfd\x45\x2d\xd9\x0a\xf2\x4e\x48\x69\x3a\x17\xe0\xd8\x86\xa1\xb0\xbc\xd2\x40\x2c\xd4\x08\x61\xdb\x29\x90\x0a\x0d\xee\x5e\x69\xae\x5b\xe2\x53\x49\x11\xbb\xef\x7e\x3f\xee\x9c\x2d\xf2\x1d\xb3\x1a\x06\x61\xde\x0b\xa5\x7d\xd1\x99\x0b\xf5\x2a\x65\xd2\xc6\x36\x76\x5d\x4a\x73\x14\x3f\x06\xd8\x61\x78\x34\xab\xf6\x51\xfa\xe7\xde\xd4\x10\xeb\x88\xcd\xf1\xf9\x27\x23\x8f\xfc\xb9\xc6\x19\x49\x9f\x03\x20\x32\x95\x1e\x1e\x68\x4b\x1e\xdd\x3d\xf0\x3c\x46\x5f\x21\xa0\x0f\xa6\xec\x47\xf5\x20\xee\x45\x3e\x61\x91\xc8\x0b\x4e\x84\x4d\x1a\xc2\xaf\xb0\xa0\xa8\x9c\xb9\x04\x5c\x3e\xb2\x5f\x49\x10\xe9\x2e\x92\xf5\xc6\xdc\x27\x83\xe0\xb9\xca\xcd\x76\x54\x20\x57\x5f\x26\x22\xa2\xc8\xe9\xe8\x80\x55\xca\xef\x9b\x0c\x54\x87\xe4\xf6\xb3\x0b\x97\x5c\x68\xa3\x53\x96\xab\xbf\x0f\xee\x40\x1d\x46\x9b\x26\x92\x9a\x4c\xd8\x5a\xa5\x5c\xae\xa7\xd3\x29\x13\x45\x34\x7d\x31\x6a\xa2\x53\x81\x61\xbc\xcb\x81\x6a\x53\xa5\xb4\x48\x77\x8e\xd6\xc5\xa5\x3d\x00\xce\xee\x73\x21\xa4\x4e\xd0\xe5\xd1\x32\xfd\x6f\xea\x1c\x01\x5f\xd6\x75\xde\x7e\x53\x1d\x9d\x54\xd7\x51\x0e\x48\xff\x8c\x28\x09\x9f\x6f\xbf\x79\x1d\x94\x24\xda\xc1\x2b\xab\xe4\xd8\xcc\xc7\x9f\x55\x97\x90\xf5\x41\x6c\x6b\xad\x25\x11\x35\xc5\x41\xd9\x62\x5d\x1e\x8b\x5a\x02\xdf\x11\xb9\x7b\x3d\x69\x78\x23\x33\xf0\x5a\xd6\x5d\xcb\xb2\xa8\x0d\xf7\xe8\x65\xb1\x5f\x8d\xa0\xb5\x41\x23\x33\x1c\x7d\x2a\xf2\x18\xd3\x09\x93\xa4\xd2\x1d\xdc\xb8\x5c\xbe\x23\x78\x96\xe3\xc0\x33\x5e\x71\xfc\x43\xe6\x8d\x8f\x1c\x38\xca\xa0\x20\x50\xa0\x0b\x95\xf3\xb5\x60\x5b\x11\x27\xe5\xb6\x75\xb3\x71\xd5\x3d\x06\xed\xa5\xd2\x72\xdb\x4d\xde\x76\xac\x01\xed\x2b\x89\xff\x75\x06\x9f\x1b\x6c\x40\x7b\xc9\x76\x2b\x0a\x43\xf5\x45\x37\x38\xf5\xb5\x39\x29\xf3\x44\x03\xcd\xe0\x21\x89\x6e\xae\x18\x2c\x1a\xa2\x75\xbb\x0c\xdd\xaf\x95\xd1\x3d\xb1\xd1\x1d\x7a\x45\xe3\xa8\x42\x88\xaf\xfb\x50\xa8\x63\xc8\x46\x8f\x11\x48\x8e\x1c\x14\xd7\x04\xb3\x31\x20\xff\x26\x90\x0b\x14\x48\x91\xf8\x42\xb1\x95\x4d\x9d\xba\x13\x01\x19\x55\x0c\xb4\xe0\x0f\xc8\x6c\xf2\xd3\x0f\xda\xc6\xec\x09\x56\xe1\x2d\x96\xc2\x7f\x04\x63\x03\xf7\xdf\x59\x34\x0d\xb6\x10\x8b\x00\xca\xa8\x98\xcb\xa2\xb5\x00\x0f\x36\x83\xb2\xf0\x95\x9f\x79\x99\xb6\x3f\x4e\xe5\xc3\xa3\x28\x31\x34\xfb\xe5\x86\x61\x57\x13\x81\x74\xde\x57\xd1\xa0\x90\xfd\x78\x1e\xe8\xae\xc5\x01\x96\x60\x65\x1c\xb0\xd3\x2d\x83\xb8\xe9\x76\x51\x44\x1b\x6f\x79\x54\xb5\x82\x49\x3f\x8e\xda\xb9\xf5\x94\xd8\x08\x95\x0c\x31\x67\xc9\x5a\xaa\x50\xcd\x41\x49\x01\x41\x1a\xb3\x01\xa9\xb0\x58\x96\x14\xfb\x81\x3d\x23\x79\xa2\xf6\x4d\xb5\x42\x21\x60\x83\xda\x59\x89\xb5\xc1\x95\x22\x41\x76\x19\x8b\x8a\xc4\x3b\x11\xc9\x91\xd5\xa9\x92\xab\xf9\xfa\x73\x59\xfd\x54\xa3\x93\x2c\xf2\x26\xc9\x05\x32\x9c\x6a\x63\xbd\x15\xc9\xbd\x59\xa8\xcd\x69\xed\x26\x28\xec\x00\xcd\xb9\x37\x97\x58\xed\x80\x26\xf5\x4e\xec\x74\xa8\x7d\x46\x33\x8a\x75\x4d\xc8\xc4\xb4\x87\xc6\x6b\xff\x50\x40\xc7\x2d\x02\x2d\xf7\x61\x67\x19\x7e\xf4\x9d\x79\xb9\x07\xd2\xd7\x28\xdc\xcc\x41\x9f\x9b\xe6\x7d\x8a\xb4\x4d\xf8\x7e\xa6\x31\xf4\xa8\x9d\x16\x9d\x7f\xef\x9e\x85\x8b\xaf\xb9\xdf\xce\x25\x31\x29\x07\x87\x9c\xd9\x70\x9a\xc3\x46\x09\xb3\xc8\xdf\xba\xab\x90\x7d\x00\xd9\x9d\x25\xfe\xab\x7e\xd2\xc6\x1d\xad\x74\xe6\x5c\xc2\xa7\x31\xa5\xd0\xfa\xf0\x5a\x3f\x78\x20\x14\x8c\x06\xb7\x13\xfe\x15\xe4\xed\xe0\x93\xc4\xf7\x86\x22\x7a\x78\xfb\x89\x84\xe9\xbe\x99\x6c\x45\x5e\x59\xdc\xd5\xcd\xf9\xd9\xf5\xf9\xed\x17\x83\x87\x59\x6c\xd6\x68\x7c\x98\xad\xe7\xeb\xf3\x37\xb3\x0f\x6f\x6f\x17\xaf\x2f\xae\x9f\x02\x20\x46\x3f\x1d\x80\x10\xbb\x21\x82\xf6\x33\x25\x0b\xf1\xf9\xa8\x33\x39\x2f\xe5\x82\x8f\xc8\x54\x70\x12\x0d\x7d\xe6\x0e\x16\xda\x24\x98\x77\xec\xef\xc4\x36\x88\x27\x9a\xe3\x93\x5f\x79\xa7\xe1\x2a\x49\x53\x48\xdc\x74\xee\x75\x4a\x0a\x32\x9d\x0a\xfb\x8f\x25\x58\xa4\x3d\x75\x2e\x97\x15\xfe\x7f\x70\xf9\x6d\xcc\x25\x18\x53\x36\x33\xd3\x01\x79\x02\x09\x71\x7d\x1c\xf4\xeb\x44\x0a\x5f\x0d\x14\xbc\x2d\x25\xeb\x24\x0e\xa6\x41\x7c\xca\xbc\x5c\x32\xbc\x86\xda\x9a\x76\xc6\x55\xe6\xa7\x35\x3f\xed\x8f\xae\x85\xb8\x88\x13\x89\x86\x69\x65\x35\xdf\xb4\x4f\xdd\x53\xbf\x04\xa0\xdf\xcd\x48\x72\x88\x41\x80\xa6\xac\x1f\x48\x1a\x08\xd4\xa6\xf1\xc1\x89\xbb\x04\x51\x34\x6a\x55\xeb\x67\xb3\x15\x9a\xbe\x4e\x20\x52\xc1\x89\x8b\x22\x4a\x4b\x5d\x88\x9c\xdc\x26\xb3\x5f\x6e\xe6\xf2\x95\x39\xbe\x5e\xd0\x29\x44\xfa\x25\xf8\x09\xc4\x70\xa8\xca\xf7\xad\x85\x12\xee\x60\xcf\xd1\x47\xbd\x15\x5c\x6a\xd4\xfb\x4e\x53\x91\xfb\x99\x81\xf5\x11\x22\x26\xcd\x37\x20\xdf\xf4\xef\x93\xe4\xb3\x82\x55\x6b\xea\x4b\xbf\x92\xe8\x71\x7d\x3e\x75\xe5\x05\x03\x40\xf4\x29\x67\x4e\x4b\x9e\xc2\xd0\x59\x44\xd8\xda\xd6\x49\x54\xcd\x1a\x18\x34\x97\x6e\xb1\xb8\xdf\xa6\xd2\x23\x4e\xa5\x01\xe7\x7a\x78\x4a\xb0\x8d\x32\x1b\xa8\x13\xf7\xf0\x61\x66\xc7\x4b\x90\x02\xfe\xc9\x74\x63\xeb\xa9\x53\x13\xb8\x3b\xe2\xd4\x41\x45\xbb\xe3\xe0\x9c\xb3\x16\x02\x14\xaf\xa4\x64\x63\x3b\xbd\xda\x79\x4f\x43\x34\x36\xb3\x78\x3b\xa9\x0a\x4b\x19\xe0\x20\x6e\x84\xd7\x33\x0f\x38\xae\x8a\xde\x3a\x12\xff\x83\xb5\x52\x16\x47\xea\x4f\xdd\x86\xb8\xc0\x4a\x12\x25\xd6\x22\x4c\xbf\xb6\x29\xd7\x8e\xb2\x61\xcc\xe4\x3b\x5c\xe1\xb0\x3a\xe7\x1c\xfd\xdf\x41\x60\x87\xcb\xab\xcb\xf3\x10\xaa\x70\x71\x79\x7b\xfe\xc7\xf3\xeb\x4a\xfa\xed\xdb\xab\x59\x25\x85\xf6\xe6\xf6\xba\x96\x39\xfb\xea\xea\xea\xed\x79\x03\xf3\x70\x7e\x7b\xf1\xae\x52\xf8\xeb\x0f\xd7\xb3\xdb\x8b\xab\xca\x73\xaf\x2e\x2e\x67\xd7\xff\x19\xfe\xe5\xfc\xfa\xfa\xea\xba\xf6\xbd\x0f\x67\xfd\xe8\x89\x4a\x33\xda\xdd\x3f\x3e\x38\x1b\x30\x21\xb6\x2e\xe3\xaa\x02\xe4\x11\xab\x78\x20\x08\x6b\xdf\x74\xb4\xd9\xb5\x71\x48\x90\x8e\x0b\xc3\x54\x75\xd4\xac\x7b\x7c\xc9\xca\x4a\xd7\x65\xfc\xb8\x6d\xcf\x9c\x6a\x8b\xc7\x00\xc5\xf5\x1a\x80\xee\x2b\x35\xc7\xad\x2e\x20\x05\x09\xbb\x36\x83\x08\xd6\x9a\x77\x0a\xb6\xc8\xf8\xc9\x6b\x6a\xbf\xb1\xaf\x9e\x9e\x79\x67\x0f\x81\xc9\x63\x91\x17\xf4\x55\x3a\xf8\x98\xcd\x0d\x4e\x62\x6b\x28\xd8\x1f\x83\x83\x1b\x9a\x61\x66\x4e\x30\x1d\xbb\xb4\x05\xdb\x73\x1c\xfa\xc9\xb2\xc6\xd6\x9f\x3e\xd2\xac\x7b\x8d\x59\x61\x44\xbd\x81\xe1\x66\x4c\xbd\x6f\xb9\xbe\x1b\x5b\x6f\xfa\x48\xb3\xde\x60\xf6\x1d\x54\x6f\x70\x78\x17\xed\xac\x17\x23\x36\xb1\xb0\x98\x6a\xf5\x5c\x4a\xae\x7b\x24\x90\xf0\x1c\x56\x47\xb3\x00\x9e\xf6\x7a\x99\xf1\xe1\x81\x0c\xa8\x8d\x5b\xae\xbc\x46\x02\x7d\x03\xbf\x42\x0b\x97\xb9\xe0\x77\xb1\x7a\xa0\xf1\xa8\x23\x43\xd9\xa0\xdd\xbc\xda\x41\x66\x0f\xb7\x47\x04\x08\x7f\x9b\x4f\x22\x4a\xcd\x17\x0f\x30\xb9\x84\x68\x8c\xd1\x06\x0b\xb4\x27\xeb\xbc\x21\xc0\xd4\x22\xfd\xe8\xcc\x25\x5a\xf3\x6d\xfa\x95\x66\x54\x4d\x8d\x28\xd3\x1f\x9a\xea\x6c\x68\x0c\xae\xeb\x60\x60\x29\x97\xa1\xcc\x01\x4c\xb7\xcc\xe1\xce\x04\x1d\x92\x48\x70\x26\xe7\xe6\xc2\x93\x8b\x28\xd1\x22\xd0\xf0\x69\x3d\xb1\x3f\x1d\xc7\xf8\x5f\xf0\xa2\xd5\xed\x3a\xd8\x1f\xce\xa3\xa2\xe4\x29\xfb\x54\x8a\x7c\x47\x84\x69\xe8\xab\xc4\xbf\x44\x5c\x62\xd2\x44\x21\xb6\x19\x24\xe1\x86\x68\xff\xb9\xfc\x05\x80\x12\x38\x04\xcf\x34\xfb\x23\x40\x1e\xec\xc3\x74\x08\x6f\x79\x01\x67\xf1\x9f\xf1\x1b\xee\xb7\xe9\x5c\x56\x34\x31\x82\xb7\x2a\xf2\x18\xd3\xb9\xb4\xa4\xf4\xb1\x8a\xf4\x14\x6e\x7c\x53\x95\xaf\x4f\x49\xce\xd5\x4c\x76\x75\xb7\x54\xea\xee\x54\xc8\x53\xf0\x49\x15\xa7\xbc\x2c\xd4\x29\xc0\xa5\x70\xfc\xf5\xa9\x55\x7d\xb4\xb2\x99\xfa\x74\x93\xdc\x0b\xf8\x7f\xd3\x4d\xb1\x4d\xff\x45\x67\x9b\xcf\x27\xeb\x34\x3f\x31\xef\x9e\x84\xef\x9e\xd8\x77\x4f\xec\xbb\x27\xe6\x35\xfc\x7f\xd9\x0e\xc3\x3b\xe2\x33\x37\x67\xd9\x64\x2e\x13\xa9\x45\x5e\x80\xf5\xf3\x90\x27\x85\x17\x1f\xd9\xb1\x67\xff\xf3\x3f\x6c\x9a\xf3\x07\x4c\x9f\x7b\xcd\x0b\xfe\x1e\xfd\x8b\x7f\xff\xfb\x33\x08\xa8\x62\x7e\x4b\xc6\xf3\x4f\xa5\x28\xe6\x52\x0b\xb3\x08\xd9\xff\x99\x4b\x88\xc0\x6e\x77\x8b\x02\xfd\xae\xe8\x83\x8c\x35\xfb\x0f\x2c\xf3\x02\xc9\x03\x63\x6d\x4a\xea\x40\xd6\x27\x3c\x6d\x11\x0a\xee\x70\xd1\x7f\x4a\x5f\xd3\xf3\x23\x96\xf5\xa7\xb4\xba\xaa\xad\xfc\x85\xfe\x94\xc2\x01\x9a\x2a\x6e\xc1\x5a\xcc\x4d\x5e\xb8\x27\x53\xe5\xda\xd6\x48\x03\x1a\xf0\xa4\x61\xfa\xf6\xb5\x72\x83\x04\xc6\xd6\x73\xdf\xd8\x46\x20\x56\xe0\xe3\x10\x10\x3d\x4f\xcc\x0a\xb9\x41\x4f\x28\x58\x6e\xd8\x72\xb0\x49\x29\x74\xee\xca\x43\xc7\x85\xfe\xc3\xcb\xd3\xd3\x09\x5b\x6b\xf8\x9f\xe5\x27\xf8\x1f\x40\x0f\x3d\x16\x07\x67\xa3\x33\x1d\x10\xae\x39\xca\xfb\x47\xe2\x31\x50\x74\x5f\x82\xf6\xb9\x36\x4d\x5f\x95\x32\x4e\x85\xcf\x06\xac\x84\x44\x52\x65\x85\xca\xd1\x31\x56\x17\xd8\x80\x31\x5e\x8a\x88\x9b\x8d\xaf\xf1\x6d\x04\x97\xaa\x55\x21\x24\x7a\xc3\x72\xaf\xbf\xc5\xd1\x73\x05\x66\x31\x40\x21\x79\x41\x90\x73\x01\x7f\x84\x8f\x00\x8f\xf2\xa4\xfe\x13\xdb\xa9\x92\x28\x81\x81\xe8\x32\x16\x51\x0a\xbc\xeb\x96\xec\x83\xe5\xa2\x28\x73\xc9\x38\xcb\xb8\x8c\xb9\x86\x19\xb8\xca\x21\xda\x99\x33\xde\xac\xe8\x04\xe1\xb8\xaa\x2c\x80\xc2\x06\x91\x05\x61\x4f\x20\x67\x73\x50\xe7\x49\x50\x09\x3c\x13\x80\x3a\xb6\xf1\xe2\x74\x2e\xad\x42\x14\x61\xe1\xd0\x53\x16\xa9\x6c\x47\x04\x25\xf5\x4e\x4f\xac\xe7\x8c\xba\x7b\xe2\xf1\x26\xf5\x67\x27\x2c\xa9\x86\xd6\x80\x1e\xba\x08\x34\x6e\xad\x4a\xf0\x73\x21\x23\x15\x8b\x5c\xbf\x30\xcb\x30\x71\xf7\x0e\xb4\x1f\x12\xed\x07\x03\x76\x29\x73\xb8\x91\xb7\xd0\x14\xef\x74\x54\x4c\xef\x54\x08\x85\xdb\xec\x9c\xfd\x4b\xe5\x5b\x47\xc1\xb4\xd5\x97\xfe\xf3\x8b\x22\x62\x42\x5c\xa7\xbd\x73\x1e\xee\x82\xc0\x25\x1b\xee\xb8\x58\x28\xda\x38\x64\x9c\x58\x41\xd1\xa4\x00\xcd\xb2\x5c\xe8\x62\x2e\xe9\x04\x9e\xb0\x95\xe0\xc6\xce\x9b\xb0\x48\xdf\xe3\x66\x8c\xc7\x7d\xf1\xa0\x3c\x06\xc7\xaa\x51\x00\x18\xb6\x52\xb8\x77\x12\xe3\x63\x80\x28\xe0\x51\x81\x00\x83\x4e\xed\x69\x6b\xaa\x40\x67\xb5\x6e\x88\x07\xf4\x83\x15\x37\xa8\x0b\x09\x85\xda\x1a\xd0\x13\x3b\x0c\x14\xb3\x7a\x3d\xf0\x07\xb3\xf1\x60\xeb\x10\x06\x12\x6c\x8e\x60\x71\x13\x96\x16\xd7\x99\x8f\xe1\x86\x0c\xd3\xe0\x9b\xe9\x5a\x54\x3d\x1d\x01\x15\x38\xcc\x6f\x61\x5e\xdd\xeb\xb0\xd2\x22\xb7\xca\x0b\xd8\x56\xe4\x83\xdb\x24\x79\x7c\x92\xf1\xbc\xd8\xd9\xe9\x9b\x26\x4b\x20\x6c\x4f\x93\x3b\xc1\x66\x79\xae\x1e\x1e\xbb\x17\x3a\xb7\x96\xae\x1b\xf6\x31\x48\xf6\xb1\xb7\xfc\x56\x36\xc8\xba\xbb\xe3\x30\xe6\xc9\x2e\xc7\x47\xeb\x77\x72\x51\xe4\xbb\x85\x99\x88\xdb\xac\x73\xa7\x18\x94\x34\x31\xdc\xc8\x1d\x47\x6a\x59\x73\x61\x74\x92\x5a\x56\x46\xf5\xdb\x21\xb5\x6c\xe1\xab\x6c\x92\x5a\x5e\x5c\x5e\xdc\x5e\xcc\xde\x5e\xfc\xbf\x5a\x89\xbf\xcc\x2e\x6e\x2f\x2e\xff\xb8\x78\x73\x75\xbd\xb8\x3e\xbf\xb9\xfa\x70\x7d\x76\xde\xcf\x52\xd3\xac\xbd\x37\xc1\x4f\x58\xf8\x9d\x97\xec\x36\x00\x6a\x60\xb2\x01\xd9\xdf\xa4\x58\x08\xb3\xca\x2c\xe6\x44\xae\x27\xb0\x50\x5f\xb2\xf3\x3c\xbf\xd8\xf2\xb5\x78\x5f\xa6\x29\xc0\xa9\x30\xb3\xe7\x2c\x17\x70\xf1\x9c\xb0\xf7\x2a\xbe\x08\xde\x83\x74\xc4\xd6\x66\xc0\xf7\x79\x1c\xe7\x42\x6b\xfc\xfc\x84\xbe\x1f\x80\x87\x5c\xaa\x23\x81\xe7\xf8\x3d\x4f\x52\x73\x7f\x7b\xc9\x5e\xf1\xe8\x4e\xad\x56\x98\x3e\x33\x71\x89\x53\xec\x53\xa9\x0a\xce\xc4\xe7\x08\x98\x99\xda\xe7\xc9\x5b\xb5\xfe\x0a\x50\xe5\x01\xe1\xa9\x8e\x4b\x0a\x28\x53\x2d\xda\x8f\xf3\xf6\x8d\x80\x5a\xf9\x0e\x5f\x7d\x83\x6f\xb6\x3b\x28\x8b\xf4\x11\x32\xc5\xdf\xaa\x75\xbb\x4e\x08\x58\xd7\x24\x6e\x42\x81\x84\x88\x78\x27\xd4\x9a\xe9\x44\xde\xcd\xe5\x2f\x1b\x21\x99\x2a\x73\xfc\x13\x5c\xf3\x8d\x99\x99\x96\x7a\x23\x40\x38\x74\xc2\x1e\x04\xdb\xf2\x1d\x9a\xcd\x70\x27\x70\xe2\x06\x30\x65\xe0\x14\x31\x6f\xa7\x89\x34\xbb\x45\x96\xd8\xbc\x84\xfa\xd0\x3f\xc6\x8d\xcb\xf2\x92\xf1\xe3\x69\x43\xfb\xce\xd3\x0a\x3e\x0f\x5c\x65\x1e\x37\x69\x01\x42\xb4\x73\x83\x76\xa2\x52\x77\x65\xe6\x19\x0c\x9f\xd9\xe0\x24\x74\xf7\xbd\x4a\x62\x16\x97\x59\x9a\x44\x6e\xdf\x7d\x50\x79\x27\x4d\x2b\x26\xd0\x0c\x3f\x75\xea\x69\x61\x7d\x0d\x6b\xc9\xce\x09\x90\x74\x3d\x84\xad\x4f\x4c\x59\xcb\x12\x19\xa5\x25\xa8\x42\x95\x5a\xe4\x27\x45\x9e\xac\xd7\x60\x80\xdb\x5c\xbf\x6f\x9f\xd3\xd6\x73\xe6\x1d\x9f\xd6\x16\x26\x9d\xa7\x6a\x9d\x44\x3c\x0d\xc1\xcd\x1e\x15\xe1\x48\x33\xed\xb2\x27\xcd\x4c\xc8\x83\xb0\x15\xea\x24\x03\xca\x72\x01\xbc\xad\x0b\xd8\xca\x17\xb4\xdd\x1d\x53\xef\x15\x33\x17\x74\xac\x57\x48\x69\x69\xc3\x0b\xf6\x84\xf3\xdf\xb6\xc2\x49\x60\x62\xa2\xa8\x32\x53\x0f\x52\xe4\x60\xc1\x02\xec\xc3\xb4\x54\x2a\xb0\x4d\x9c\x98\x92\xc3\x27\x5b\x31\xb1\x95\x03\x62\x63\xe6\xec\x3a\xb9\x17\xf2\xcb\x73\x10\x07\x1f\x88\x78\xb4\x11\x0b\x6b\x97\x3f\xf6\x96\xe5\x0e\x80\x91\x9b\x95\x55\x35\x08\xb7\x52\x17\xde\x84\xab\x13\xd6\xb8\xb9\x77\x61\x20\xb1\x27\x23\xcb\x54\x62\x11\x8b\xe8\xee\x8b\x6f\xcd\x1e\x64\x65\x2b\xc2\x38\x7b\x2d\xa2\x3b\xf6\xe1\xfa\x02\xb3\x81\x93\x82\x99\xad\x40\x6f\xbc\x4a\x4b\xe7\xdd\xad\xe0\xeb\x27\x20\x37\x1a\x2a\x33\xe3\x99\xc5\x9d\xb8\x96\xa9\x10\x01\xa2\x20\x5f\xd2\x6c\x92\x94\x4b\x03\x40\x30\x5e\x58\xf1\x11\x70\xc4\x33\xbd\x05\xad\x91\xb2\x08\x04\xba\x52\xbe\x14\xa9\x6e\x6f\x70\xa6\xe2\x85\x8d\x93\x1c\x0b\xe6\x69\x94\x65\xfd\x18\x14\x75\xb4\x79\x0c\xdc\x58\xac\xb7\xf4\x20\xbb\xfb\x41\x07\xf4\x1a\x2a\xa4\xfb\x85\x7b\x3d\xd7\xa2\xa6\x58\x9f\xac\x48\x11\x05\x13\xfa\x41\xfb\xdb\xec\x97\xa6\xa4\xf7\x2a\x26\x98\x9e\xe3\xf3\x32\x56\x90\x20\xef\x89\xc7\x55\x84\x55\x70\xfa\xe8\x1a\x7c\x03\xba\x10\x3c\x66\x6a\x45\xde\xc4\x2c\x4b\x13\x20\x72\x8d\x91\x33\x1a\xd8\x33\x74\x15\x1d\x1f\x96\x66\x2b\x1b\x90\x7c\xbc\xb7\x40\xbc\xde\x78\xa3\x0f\x72\x99\x76\x55\x9d\xdc\x75\x9b\xea\x58\xed\x2f\x97\x8f\x74\xe8\x15\xba\xdf\x9b\xb6\x4e\xd5\x12\x3a\xaa\x1b\x14\xd7\xb3\x41\x9b\xdd\x29\x4f\xe2\x31\xc7\xbb\xed\x93\x2b\xf7\x6a\x5f\x05\xaf\xac\xa7\xc3\x7d\xc9\x0e\x33\x23\x9a\xed\x30\x82\x5f\x4b\x63\xdf\x77\xd7\x86\x00\xa1\x76\x11\x42\x67\x8d\x5b\x92\x79\x58\x15\x6e\x3b\xee\xb8\x56\x57\xdb\x72\xd4\x40\x37\x89\x51\xf6\xf4\xa5\xe7\x52\xe9\x1f\xe4\x23\xd8\x2d\x70\xe5\x3a\x8a\x8b\x31\x4c\xc1\x76\xe8\x10\xe3\x6b\xfa\xd3\x0f\x62\x25\xf9\x62\xd0\x88\xd6\xfb\xdd\xae\xe2\x63\xba\xfc\x29\x56\x54\x59\x28\xef\xf2\x87\xf6\x5c\x00\x7f\x66\x98\xd6\x05\xdb\xc6\x45\xdc\x01\x17\xb0\x36\x98\x5d\x9a\x23\x40\xa8\xa3\x60\xb0\x59\x2e\x6c\xf0\x68\x27\x0a\x97\xdc\x9f\x5a\x2d\x28\x88\x8d\xb8\x56\x57\xd9\x4d\x2c\x81\x81\x63\xa4\x82\x48\x06\xd9\x7b\x91\xda\x66\x4a\x02\x36\x05\x53\x95\xe6\x92\x0a\xb7\x8a\xbe\x2e\xbc\x52\xc9\x77\x9b\x90\x57\x0b\xb3\x27\x84\x56\xe9\x3d\xc5\xd1\x02\xe2\x79\xd0\x02\x33\x15\x3c\x33\x17\x04\x73\x1d\x86\x00\x2f\x6d\xef\x00\x07\xaf\xc9\xda\xe6\x62\x9d\xe8\x42\x84\x29\x82\xe1\xfb\x8f\xa6\x40\x58\xb9\x41\xf7\x75\x7d\xa7\x02\xe1\x3e\x53\xd8\xac\xda\x11\xf5\xd9\x65\x22\xbe\x70\xef\xf5\x4f\x86\x5a\x16\xb7\xdf\x24\x2a\xa7\x00\xce\x01\xbc\x02\x68\xe4\x7b\xd2\x8e\x32\xde\x0d\x12\x31\xf1\x70\x8f\x6a\x33\x43\xb4\x2e\x79\xce\x65\x21\x84\x9e\x4b\x8a\x3e\x22\x6f\x59\x48\xcd\x51\x43\xc3\x39\x03\x37\x52\xba\x40\x1a\x20\x78\x65\xc5\x93\xb4\xcc\x3b\xef\x9c\x38\x2b\x0f\xe2\x1e\xe8\xeb\xa5\x33\x28\x96\xb5\x0d\x9a\xcb\x62\x0d\x56\x91\xa3\xce\xa8\xc7\x0e\xab\x49\x9e\x1d\x4d\xb0\x5b\xee\xf0\xf1\x76\x0e\xc7\x8e\xc4\xd6\x1f\xf4\x22\x53\x23\x76\xbc\x9f\x7e\xd0\xef\x55\x47\x4a\xb0\xfe\xd4\x70\x8c\xf5\xc4\xd0\x3f\x75\x91\xe8\x73\x7d\x07\xe1\xa7\x7d\xf7\xf1\xfd\x4e\xf6\x3f\x7c\xbf\x3f\x48\xd5\xb9\x77\xc1\xac\xdd\x70\x19\xa7\xe6\x9e\xca\x8b\xda\x09\xe4\xc1\xbe\xc6\x2e\x2e\xec\xe6\xd8\x9d\xd9\x05\x89\x12\x8b\xa8\x91\x65\xb7\xaf\x9f\x6a\xe9\x79\xbd\x80\xba\xda\x57\xaa\x49\x73\x6d\xc9\x1a\xfe\x64\x27\xe9\x4a\xb7\x60\xbb\xa7\xe0\x2a\x59\x7f\x03\x97\xac\x77\xcd\x9d\x32\xa2\xa5\x48\xe7\x97\x43\x7e\x1f\xb9\x18\x21\xc9\xc6\x6c\x66\x21\x4f\xef\x5c\x92\xb2\x2d\x46\x5e\x21\xe4\x86\x5c\x54\x9a\x7d\xe7\x32\x2f\xbf\xfb\x57\xcb\x44\xb4\x63\x2b\xe8\x6b\xa0\xfb\x52\x51\x54\xe6\x10\x16\x25\xd7\x0d\x13\x78\x36\x8d\xa1\x53\x9f\xe1\x89\xec\xc0\x2c\x68\x3e\xb5\x59\x0f\xce\x57\x57\x69\xd4\x2d\xb8\x68\x50\xa3\xd7\x9d\x85\x24\xbd\x92\xeb\x82\xe9\x42\x64\xad\xbb\x52\xc5\xe8\xaa\xca\x50\x1f\x61\x76\x79\x11\xec\x81\xb6\xee\x88\x3d\x7a\x16\x5c\xa7\xff\x74\x73\x75\xc9\x32\xbe\x03\x5c\x58\xa1\x48\x3f\x1c\xc8\x18\xeb\xeb\x77\xdf\x08\x54\x1b\x5f\x5d\x6c\xd8\xa7\x16\x60\xda\xee\xbb\xa5\x2f\x36\x6d\x28\x98\x33\x34\x25\xcd\x52\xce\x55\x7a\x92\xa5\x5c\x06\xd0\x5f\x3d\x65\xb5\xcf\x87\xb1\x5e\x17\xf5\x21\x34\x0d\x54\x00\xdc\x29\x34\x17\xf2\xb2\x15\x1c\x5a\x55\xd6\x3e\x2a\xbc\xdb\xb9\x47\xf4\x82\xde\xde\x21\x9d\x3e\x8f\xcc\x32\x41\x66\x01\x1b\xb2\x76\xa8\x07\xae\x01\x90\x38\x62\xa0\xfa\x65\xc0\xe7\xd2\xaa\xbc\xaa\x07\xcd\x62\xe4\x5e\x28\x13\xbd\x01\xff\x24\x06\x04\x00\x1c\x44\xfb\x0b\x22\x17\x72\x2e\xb5\x19\x50\xf0\x69\x8a\x7b\x41\x8e\x8d\x4a\x30\xee\xe2\xf5\x5b\x17\xdf\xc7\x41\x22\x21\xae\x8e\xae\x0f\x0c\xb3\x63\x2e\x30\xad\xba\xd4\xfb\x39\xee\xdf\xf1\xac\x2f\x6b\xec\xe8\x12\xf7\x8d\x92\x63\x9e\xa9\x5b\x9d\xa0\xd0\x09\xda\x3c\x95\xd4\xb1\xb0\xf7\x3e\xc8\x23\xb7\x9f\x56\xd2\xeb\xfd\xfc\xfa\x83\x2f\x61\xc3\x32\x01\x47\xec\x3d\x01\x09\x9c\xc3\xd6\x38\x7b\xd9\xac\x72\x50\x3e\x01\xf6\x2a\xf4\xa4\x4d\xd9\x8d\x10\xec\x23\xf4\x94\xf9\xd8\x47\x52\xd6\x02\xb8\x60\xc1\x93\x56\xe1\x13\x78\xfa\x42\xae\xd4\x71\x9b\x41\xbe\x6e\xc0\xd1\x8e\xea\x95\xf6\x7a\x1e\x0b\x78\x83\x54\x46\xf9\xb4\xf9\xf7\xad\xed\xda\x03\x6f\x7b\xef\xef\xe4\x94\x95\x67\x6b\x6a\xce\x67\x18\xe2\x43\x18\x9e\x6a\x93\xc4\xb4\x72\x82\xac\xc5\x77\x52\x3d\x48\xb4\x05\xe8\x4b\xec\xb9\x59\x7f\x70\x80\xa1\x03\x15\xcd\x82\x12\x77\xc3\x17\x40\xa3\x3c\x73\xff\x66\x37\x18\x2b\xc2\x3a\x83\x4e\x88\x06\xe3\x87\x14\x3e\x60\x37\x7f\x3e\x9b\xb0\x57\x13\x76\x36\x61\xd3\xe9\xf4\xc5\x04\xf5\x7a\xa9\x46\xf8\x0a\x22\xc7\x0a\xbe\x36\x65\x93\x72\xc2\x2a\xf8\x00\xc8\xde\x98\xc3\xca\xb2\x85\x71\xff\x54\xe0\x79\xb0\x4d\xc0\x1c\x46\x4a\xb8\xa0\xb8\x7a\xb4\x51\x89\xaf\x14\x40\x34\x45\xa4\x72\x0b\xf2\xd4\x85\xca\x2d\x60\xed\x9e\xe7\x3c\x91\x90\xda\xcd\x9b\x70\x5d\xfa\x72\x40\xee\x2c\x3e\xf3\x2d\xb4\x3f\x91\x8e\xdf\xd2\x74\xd3\xad\xab\x7f\xb1\xcb\xc8\x21\xfd\x90\x27\x45\x61\x4e\x67\x3d\x97\x37\xec\xe5\x7f\xb0\x59\x96\xa5\x82\xcd\xd8\xdf\xd8\x2b\x2e\xb9\xe4\xec\x15\xfb\x1b\x3b\xe3\xb2\xe0\xa9\x2a\x33\xc1\xce\xd8\xdf\x4c\xb7\x99\xf2\x2e\x95\x39\x0e\x77\x13\xc6\x99\x2c\x53\x3c\xf5\x9f\x5b\x30\xd8\x0b\xd7\x2e\xee\x47\x67\x29\x8a\x07\x21\x24\xd3\x6a\x4b\x47\xe1\xaf\x2e\x26\xa1\x13\xb9\x4e\x45\x41\xf3\xa1\x0a\xdb\xc3\x0f\x9c\x40\x4b\x5f\xce\xa5\xf3\xe5\xfd\x6a\x6a\xfc\x2b\xfb\x1b\xbb\x2c\xd3\xd4\x54\xc9\x6c\x34\x66\x22\xbd\x64\x36\x8d\x42\xc8\xe9\x43\x72\x97\x64\x22\x4e\x38\x24\x52\x98\x7f\x9d\xde\xc2\x68\x2f\x4a\xcf\x99\x17\xae\x69\xa7\xbd\x72\xcc\xd6\xf3\x24\x49\xd9\x4e\x82\xc7\x0e\x7e\xcf\xcd\xaf\xfa\xea\x78\x8b\xc8\x33\x85\xd2\x7a\x20\x83\x15\x75\x73\x42\xa9\x9f\x83\xb6\x80\xda\x61\x6b\xcb\x6a\x39\x0a\xc2\x43\xfd\xd8\x4d\x16\x94\xa3\x1e\xfd\x0e\x39\x40\xc6\x67\xe8\x96\xdb\x10\x21\xa9\xa4\xb9\x83\x2d\xe9\xa9\x7e\x06\x45\x85\x9c\xf8\xc8\xcf\x55\xe9\xac\x4a\x17\xab\x64\x90\xc6\x58\xad\xb2\x1f\xc8\x77\x81\x09\x6a\x66\x99\x26\xe9\xa9\x59\xaa\xa7\x97\x4a\x9a\x6b\xab\x4e\xd6\x48\x4f\x04\x30\x22\x0d\x84\xac\xd6\x28\xb8\xad\x9a\xac\xc1\x12\x00\xfb\xc0\x54\x09\xa1\x6d\x85\xd9\x05\xcc\x10\xa4\xbb\xb9\x34\x6f\xd0\x89\x04\x30\xf7\xc4\xb1\xd8\xe2\xd7\xac\x9a\x39\x7d\x8b\x36\xe4\xa0\xf0\x96\x09\xd6\x97\x43\x7b\xc4\x84\xa3\x94\xad\x23\xbc\xe2\x97\x01\x83\x1b\x95\x66\xe9\x3d\x30\xee\xb9\x14\xa9\x92\x6b\x33\x2b\xba\x36\x01\xb5\xe5\xc9\x31\xc0\x92\xb0\x0a\x58\x58\x67\x0d\xcc\x61\x49\x8f\xd0\x90\x98\x73\x32\x89\xfd\xfd\x5e\x97\x4b\x63\x47\x38\x8f\xac\x3b\x0d\xa9\x71\x5d\x09\xc5\xc7\xc5\x97\x3f\x68\x91\x03\xcd\x32\x22\x1c\x9c\xb7\x1f\x0f\x4e\x4f\xb6\x81\x2d\x1a\xb6\xa8\x7a\x81\xb1\xed\xae\x10\x8a\x26\x34\x52\xab\x07\xcc\xc7\xaf\x89\x91\x7d\x4a\x39\xf8\x56\xed\x77\x78\xce\x94\x46\x7f\x1a\xab\xef\x6e\x7b\xef\x31\xe0\x83\x9f\x50\xee\x65\xa1\x56\x36\x93\x72\xf8\x99\xde\x10\xdc\x19\x86\x52\x09\x49\xb6\x43\x61\x9a\xe6\xc4\xe9\xcc\x07\x97\x0b\x8a\x48\x0c\xab\x6c\xbd\xc3\xae\xe4\x1b\x7c\xfd\xbd\x4a\x93\xa8\x1f\xf4\x66\x8f\xab\x8d\x7a\x68\x41\x11\x2d\x05\xa0\x40\xc9\xff\x43\x95\x42\x0b\xbd\x10\x51\xe1\x23\x6e\xcd\xc6\xfd\xaf\x06\xda\xec\xbf\x83\xa3\x47\xd9\x75\x1b\x88\x3e\xba\x18\x1e\x9c\xad\x40\xb0\x09\xbc\xf2\xe8\x6b\x85\x5c\x3a\x88\x6d\x47\x9c\x5c\xd0\x95\x9e\x87\x0d\xfa\x61\xa3\x52\x73\x17\x93\x31\x91\x95\xce\x65\x26\xf2\x48\x01\x40\x05\xf3\xe0\x15\x8b\x36\x49\x1a\x7b\xf1\x96\xe7\x80\xe8\x05\xdc\xdd\x0b\x52\xa8\x13\x2e\xc6\x6c\x8b\xef\x39\x75\xed\xb4\xb3\x2a\xd5\xc7\x79\xa0\x1e\x0f\xa2\xd7\x37\xed\x7f\x21\x28\x19\x76\x05\xd1\x0b\xd5\xa2\x85\xa6\xd3\x2b\xf5\x19\xe5\xe1\x05\x1d\xe9\x95\xd5\xc1\xb4\x17\xa7\xa2\x36\xae\x34\xcd\xea\x5d\x09\xa4\xb3\x88\xa2\x42\x00\x89\x16\x50\x9d\xad\xe0\x68\x8b\x79\x0a\x48\x1a\xd4\xb9\xf4\xf1\xd1\x67\x3a\xb4\xcb\x5a\xc7\x19\x39\x55\x2d\x08\x70\xc2\x9e\x55\x1a\xfa\x0c\x48\x49\xa5\x82\xef\x51\x0c\xab\xd2\x35\x30\x5d\x27\x2c\x29\xe6\x32\xd1\x38\x33\x73\x91\x8a\x7b\x53\xbb\xd0\x59\x4c\x58\x17\x7b\x77\xb6\xcd\x06\x1c\x39\xb7\xe9\xc7\x4e\xdc\x1c\x16\x61\x1e\x92\x5b\x72\x70\x4c\xc7\x42\x1b\xbb\x11\x64\x39\xc4\x67\xb3\x00\x12\x88\x85\x20\xfc\x23\x16\xd2\xd6\x0f\x50\x21\xa8\x9f\x3a\x97\x17\x2b\xc8\x01\x85\xcc\xd3\x38\xc6\x5b\xa8\x15\x6a\x70\x4c\x63\x09\x39\x87\x15\xdd\xc9\xed\x40\x90\xc0\x22\xae\x24\x71\x2f\xf2\x5d\x01\x4e\x5d\xe8\x57\x29\x78\xb1\x61\x49\x31\x01\x8a\x38\xbb\x53\xce\x25\x8f\x49\x9f\x9a\x8a\x33\x5d\x03\xf3\xbe\x67\x9c\xe9\xf7\xa5\xba\xef\x33\x6c\x8f\x45\x7d\xe1\xaa\xce\x52\x2e\x17\x78\x82\x7c\x05\xdc\x57\xa0\x7d\xd9\x15\xea\x2c\x97\x0b\x47\x6b\xf3\x28\xf5\x74\xfb\xfd\x75\x45\x91\xd6\xd8\xb1\xf6\x43\x13\x9c\x0c\x9e\xd6\xda\x5e\x4f\x9c\x9f\x86\xd0\x05\x39\xb3\x11\xd8\xe1\xbb\x80\x87\x84\xf1\x1a\x12\xc1\xce\xd6\x7d\x98\x30\x3b\x03\xbe\x55\x7c\xd2\x90\x91\xaf\x9d\x21\xf5\x61\x1f\x0f\x8d\x69\x58\x88\x07\xc1\x63\xf6\x54\xeb\x69\x21\x32\x9d\x7e\x94\x26\x54\xc6\xb6\x36\x08\xf7\x61\xf2\x84\x40\x3f\x9c\x73\xf3\xb4\x6b\x9b\x86\xf7\x30\xd5\x82\xad\x7c\x4c\x1f\x35\xec\x53\x43\x3d\x25\x3e\xf7\x1a\xea\x35\x65\x17\x92\x59\x73\x6f\xc2\x9e\xe1\xc4\xd2\xcf\xc8\x05\x49\x02\xb9\x14\x3b\x8f\x69\xf5\x50\xb6\x6a\x1d\x8a\x81\x39\x03\x7e\xb9\x61\x24\xa8\x97\xda\xf0\x49\xfb\xe5\x55\x02\x39\x0b\x87\xa4\xa5\x63\x14\x71\x89\x05\xd0\x21\x89\xd7\xee\x1d\x1a\xed\xca\x7b\xb3\x7d\x83\x6d\xbc\x8b\xbd\xb2\x2f\x9a\x2e\xca\x4a\x3a\x4f\xed\xef\x4c\xe5\x73\x69\x4b\x23\x97\xa4\x46\x2d\xa5\x7a\x51\x01\x84\x9a\x6c\xfe\x60\xa6\x02\x88\xc1\xca\x67\x81\x2a\x9b\xe7\x5f\xad\xef\x02\x00\x8a\x58\x0a\x2f\xed\x3d\x65\x33\xff\x35\x63\x78\x98\x09\xbe\xc5\x63\xbe\xce\xd1\x98\xa6\xa6\x53\x92\xc2\x52\x42\x06\xe9\x0d\xba\x04\x62\xd3\x55\x69\x36\xa3\x80\xfd\x75\x2e\x4d\xe7\xb1\x55\x02\xb8\x5f\xea\x97\xb9\x7c\xa7\xb4\xcd\xa6\xd7\xbe\x3f\x2c\x86\x94\xba\xed\x99\x53\x11\xa3\x3f\xbc\x86\x43\x9b\x7c\xfe\x35\x59\x79\xc8\x6b\x21\x4a\x8c\x9d\x2a\x73\xdf\xa8\x88\xcb\xb9\xfc\x8b\xe9\x1e\x14\x75\x76\x8a\xe8\x6a\x85\x4b\xd8\xca\xf0\xb3\xe7\x1f\xb1\xd0\xe7\xff\xfa\xe2\xe3\x0b\xc4\xa1\x97\x1a\x84\x1b\x27\xd5\x03\xc4\x11\x81\x97\x69\x0a\x91\x68\xdb\x02\x47\x46\xe1\x3f\xc1\xfb\x60\x39\x74\xa9\x5b\xc8\xaa\x89\x31\x64\xa1\xf7\xcd\x60\xef\x7c\x9e\xb1\x88\x17\xd1\xe6\xc4\xda\x72\xb4\x8d\xd9\xd3\x8f\x86\x0f\x15\xdc\x8c\xa5\xd5\xce\x85\x6d\x2e\x9c\xf9\xd6\xb1\xf3\x55\xe6\x8b\x69\x02\x00\x6b\x6e\xeb\xc2\x30\x8e\x3c\x14\x27\xa7\xd7\x24\xf7\x76\x9e\x7b\xdc\xca\xb2\xf9\x1b\x27\x79\xc9\x25\xdf\x8a\x98\x3d\x83\x8c\xa9\x67\x76\xf0\xe7\x32\x5b\x4e\xd3\xdd\xaa\x20\x8a\x27\xd3\x29\x53\x10\x30\xda\x73\xca\x2d\xe2\xe6\x35\x69\x4f\x67\x77\x5e\xb4\xda\x6d\x1d\xd7\x37\xee\x4b\xc3\x0d\x16\xf4\x71\xb9\xde\xb9\xa9\x42\x84\xaa\x4c\xea\x5c\xdf\x4d\xd8\x32\xe7\x12\xb4\x27\xe2\xd0\xa8\xf2\xab\x13\x2e\xcf\xc8\x9f\x64\x53\x28\x24\x4f\x77\x80\x1d\x9f\xcc\x25\x92\x4d\x01\x2b\xf1\x2e\x4a\x93\x88\xad\x73\x9e\x6d\x6a\x76\x90\xb8\x17\xb2\x38\x27\x76\x05\x0b\x52\x3f\x36\xb4\xec\xd8\x1a\x8e\xe2\xdc\xbb\xa8\x5a\x3b\xdc\xd3\x50\x78\x0f\x2b\x26\xaa\xd0\x8d\xda\x82\x5a\xdd\x04\x9f\x90\x14\x1a\xf0\x71\xb1\x3f\x97\x4b\x95\x5a\x42\xb3\x8b\xd7\x4c\xe5\xa0\x25\x50\x28\xfa\x53\x12\x77\x9d\x62\x89\x8c\xc5\xe7\xa3\x58\x05\xfa\x0f\x24\x6b\xde\x99\xcf\x04\x94\xf5\xf5\xc6\xc2\x2a\xca\x85\x39\x2c\x0a\x7b\x83\x6b\x3c\xa5\xeb\x08\xbb\x59\x5a\x6c\x00\xf6\x86\x80\x6b\xdf\xa9\x5b\xbe\x63\xd1\x86\xcb\x75\x70\x85\x06\x14\x92\xc8\x54\x8e\x9a\x7b\xf7\x40\xdf\xa5\x72\x9b\xb5\x49\xb9\x88\x84\xfa\x76\x0e\x6f\x04\x5b\x2a\x9b\x70\xc8\xd7\xeb\x5c\xac\x21\x91\x7e\x2e\x2b\xd9\xd4\x40\x5d\x66\xe9\xfe\xf1\x3b\x7d\xc9\xa8\x8f\xc3\xe8\xd0\x75\x6b\x29\xf2\x9d\x4b\xe5\x23\xc1\x4a\xd7\x75\x8d\x6e\x9d\xb0\x44\x4c\x27\xec\x7b\x0f\x30\x15\x91\x92\x2e\x17\xb0\x23\x11\xac\xe6\x9a\xde\xb3\x17\xb5\x50\x3f\xb4\xd7\x1d\x7e\x6b\xc8\x5e\xb6\x4e\x9a\xde\x64\xca\x82\x17\xe5\x88\xbd\x92\xa4\x8d\xcf\xcc\xcb\x37\xf8\x6e\x2f\x06\x9b\x67\x66\x7b\xb3\xb4\x3b\xe6\x79\xb3\xc3\x9b\x6f\x7b\x5a\xde\xb6\xbe\xde\xeb\xe8\x4c\x55\xb7\xa3\xf3\x31\x4c\x4a\xcb\xad\xb0\xdf\xd7\x99\x76\xf0\x05\xf4\xb4\x69\xac\x2b\xd3\x82\x51\x09\x66\xae\xeb\xd7\xad\x96\x1d\x20\xcb\x55\x5c\x46\x22\x36\x2b\x17\xec\x76\x44\x6e\x38\xda\x82\xca\x26\xd9\x76\x20\x54\xb8\x57\x40\xe0\xfa\x4b\xdd\x8d\x07\xd1\xdd\xba\xee\xff\xd0\x71\x2f\xb6\x96\x49\x5b\xa7\x87\xeb\x13\xfb\x29\x1f\x79\x4e\xb9\xcf\x57\x49\x6a\x55\x9e\xac\x13\xc9\x0b\x95\xb3\xe7\x2e\x39\xf1\x85\x53\xb6\x81\x5e\x7c\x8c\x6d\xa2\xd2\x45\xb8\x4d\xb4\xdf\xbd\x00\xcf\x2c\xe2\xc5\x38\xee\xac\xb1\x0c\xcf\x30\x49\xcd\x53\xba\xe0\xdb\x2c\xa4\x7d\x74\xba\xc1\xd4\x33\x29\x76\x02\xb3\x15\x03\x1f\x5f\xa2\x7d\x0e\xd6\x5c\x92\x67\x1c\xc7\x4d\xe5\x21\x6f\x71\xe7\xd9\x9c\x95\xc5\xe2\x40\x2a\x13\x7c\x79\x9c\x83\x84\xc2\xe5\xef\x78\xd6\x4f\x0e\xc1\xe9\x6a\x8c\x49\x28\x4e\x4c\xd9\x5a\x2a\xd5\xf9\xd9\xaf\x0c\x30\x92\xac\xb2\x1e\xe2\xbd\x7e\x6b\x03\x1a\xfe\xde\x52\xb9\x08\xc0\x40\x20\x4b\x9e\x06\xab\x02\xaf\xa0\x6e\x5b\x33\xa7\xb8\x65\x94\x38\x4b\x55\x19\x33\xda\xd4\x28\x5c\x9c\x4f\xf1\x74\x04\xda\xca\xe9\xb4\x8b\xc3\x6b\xa4\x62\xa9\xdb\x7f\xe0\xbd\xf6\x15\x08\xbf\x75\xec\xc0\xbd\x4b\x9f\x7a\xf6\xc9\x86\x9e\x7a\x1a\xc6\xde\x6d\xc7\xa3\xc6\xde\x79\x6b\x81\x43\x6b\x9c\x23\x0f\xee\x4d\x49\x9c\xc2\x7a\x0b\x1d\xdd\x2d\x2c\x9f\x95\x00\xa2\xbe\x3b\xfa\x73\x36\xd3\xb6\xff\x53\x19\xcf\x85\x2c\x16\xf0\xc5\x71\x1f\x83\x8f\xbc\x87\xd7\x2b\x06\xd3\x20\x87\xe5\x7f\xdd\x2a\xf4\x43\x5b\xc2\x8c\xff\x66\x37\xe4\x7b\xd1\x56\xd5\xde\x9c\x8e\xcf\x13\xc0\xc6\x04\x31\x3b\x37\x70\x1d\xc3\x45\x0d\x3a\xa0\xf7\x82\x06\x55\xb6\xf6\x41\x0d\xf2\xb5\x87\x90\x2a\x94\x42\x6e\x28\xca\xf0\x34\x5b\xad\xfd\x5b\x40\xa2\x7d\x59\xf9\x37\x10\x1e\x9a\xf1\x4b\xd9\x5f\x45\xae\x7c\xda\x02\x3a\x55\xc2\x82\x7b\xed\xf5\xc3\xf5\x3f\xd1\x1e\x47\xe5\xc9\x50\x7a\x0d\xfe\x42\x9c\x24\x78\xf3\x5d\xee\xec\x75\xa4\x8b\x4e\x5d\x44\x8b\x0e\x9e\xfd\x41\x55\x09\x2e\x9e\x21\x6f\x7e\x52\x3b\xcc\xec\x02\x3d\x85\x7b\x35\xb1\xfe\x6d\x79\x46\x38\x34\x82\xbc\xd6\x83\x0c\x53\x68\xc4\x7f\xfd\xfa\xdf\xd3\x2e\x65\x67\xa8\xfa\x58\x58\x8f\xab\xfc\x9b\x3c\x11\x32\x86\xa0\x21\x8f\x9b\x12\x30\xb2\xe2\x45\xae\x6c\xcf\x66\x1a\x3e\x4a\x76\x5f\xfb\x51\xab\x17\x38\x89\xbe\x40\xe4\xd9\x6f\xb2\x6e\xf9\x56\xe2\x52\x5d\xa6\x84\x5e\xc4\x3b\xc9\xb7\x4d\x2d\xec\x27\xad\xe3\x2e\x11\x69\x0c\x55\xa4\xaf\xef\x8b\x9e\xc4\x22\xba\x1b\x6b\x13\x1c\x4c\x60\x2d\xa2\x3b\xf6\xe3\xed\xbb\xb7\xa8\x57\x98\xe8\xb9\xbc\xe4\x45\x72\x2f\x3e\xe4\xa9\x73\x5b\x13\x23\x49\x9e\xda\x35\x52\x25\x54\x0d\xc8\x3b\x2c\xfb\xaa\x35\x1c\x42\xbe\xeb\xed\xee\x64\x59\x46\x77\xa2\x38\xcd\xb9\x8c\xd5\x16\x9b\x71\xaa\xcb\xd5\x2a\xf9\x3c\x2d\x78\xde\x41\x7e\x8d\x7e\x84\xaf\x68\xe7\x7a\x49\x93\xc2\xdb\xbc\x68\xea\x3e\x40\x76\x22\x09\xe5\x56\x8c\x5b\xb8\x02\xe7\x7c\x2b\x80\xbd\x8c\x55\x89\xe3\xa1\x14\x4c\xf8\x03\x7d\x35\xad\x09\xe9\xad\x48\xbd\xf5\x63\x60\xdc\x7f\x0c\x6a\x55\x55\x10\xb6\x95\xf2\x9a\x65\x5b\x7e\x87\xf7\xc3\x75\x2e\xb4\x9e\x30\xad\xa0\xc6\x73\x69\x31\xd3\x36\xaf\x07\xf0\x19\xc0\x7f\x98\xee\x58\xa4\xb2\x04\x24\xde\x5c\xbb\x36\xea\x01\xfc\xc9\x61\x7a\x1b\xa8\x72\x96\xb2\x48\x52\xc6\x57\x05\x39\x9b\x81\xec\xd9\x8a\xbb\xe8\xe9\x5c\x42\xc8\x30\x82\xe6\x43\x28\xdf\x85\x09\x5c\x23\x34\x5b\xf1\x28\x49\x93\x82\x28\x68\x20\x19\x86\x9b\xf6\x9a\xf3\xc0\xf4\x65\xce\x77\x3c\xf5\x17\x2b\x9e\x96\x3e\xa3\xef\x44\x8b\x3a\xc5\xd9\xef\xc2\xff\xad\xdc\x73\xfb\x4e\xdd\x23\x2e\xbc\xc7\x1c\x3e\xcd\x2b\xad\x53\x1c\xf5\xe7\x78\x12\x5b\x9c\x68\xc5\xd4\xf5\xcc\xb3\xee\xf8\x01\xdf\x79\xc7\xa5\x7a\x6a\x75\x62\x9a\x5f\x18\xd1\x7b\xed\x46\xd8\x17\x72\x17\x74\x71\xe0\x0e\xa9\xbe\xf5\x76\xbf\x57\x2a\x3d\xd6\xe3\xcd\x53\xbb\xa1\x2e\x40\x3a\xf1\x98\xeb\x1a\x4e\x00\xe7\x38\xba\x78\xed\x62\xaf\x8e\x54\xb6\x2a\xb8\x42\xb0\x20\xaa\x02\x6c\x14\x50\x89\x1e\xc4\xb0\xce\x5a\x82\xef\x23\x91\xcf\x50\x06\xa2\x76\xac\xe9\xdc\x74\xc1\x07\xb9\xec\xdc\xd7\x11\x88\xf7\x6a\x35\x1c\xe5\x0c\x43\xa1\xc3\xda\xa7\x9c\x63\x2c\x24\xe8\x74\xfd\x18\x7c\xdb\xf6\x27\xca\x2b\x9b\xf3\x89\xac\xe4\xb9\x0c\x2c\x62\x64\xd5\xb1\xd0\x72\xd7\x6b\x6d\xfe\xb2\xca\x34\x3c\xda\x5f\x76\x0c\x0b\x73\x6f\x40\xe5\x75\xa8\xa7\x04\x98\x80\x48\x6d\x97\x89\xb4\xa9\xca\xe4\x44\x06\x53\x7e\x66\x49\xee\x9c\xc3\xdf\x9a\xe4\xc8\xb2\x5f\xeb\x7b\x67\x46\x84\x7c\x81\xe1\x96\xb5\xef\xba\x1b\xde\x9f\x1e\x97\x30\xba\x03\xa5\x5a\x6f\x41\xa2\x19\x4f\x1f\xf8\x4e\x83\xe6\xa8\x30\xbb\xe2\x0a\x1d\xa7\xd5\xfa\x4f\x82\xe3\xdd\x12\x28\x92\x80\x77\x49\x52\xc4\xd4\x96\x04\xf9\x1b\x44\x6a\xd5\x55\x3d\x2f\xce\x33\xdd\xde\x39\x5f\x27\x16\x92\xf7\xc6\x42\x30\x18\xf9\x8f\x11\xfe\xe8\x71\xb2\x1e\xe9\xeb\x0d\x8e\x49\xb4\xc8\x08\x2e\x02\x09\x3c\xb0\x1d\x9b\x6f\x4f\xd8\x96\x27\x92\x96\x01\x2a\x58\xc5\x62\x59\xae\xd7\x9d\x2e\xc8\x6f\x3f\x96\x51\x5d\x27\xff\xf4\xbe\xe6\x5e\x66\xa7\xc7\xf0\xc6\x5e\xd8\x2f\xa1\x7b\xd8\xdc\xab\xbe\x8c\x03\xf6\x2b\x7a\xbb\x5b\x43\x4e\x8d\x49\xf4\x38\xde\xee\x8b\x21\xde\x6e\x8b\xf1\x81\x54\x2b\xba\xae\x5a\x1c\xc6\x6f\x6e\xf0\x2f\xe3\x06\x1f\x34\x29\x90\xde\x63\x91\x54\x0d\xf4\x9e\x1a\x1e\xc8\x12\xe6\xe8\x24\xa1\x56\xa4\x06\xae\x85\x8c\x35\x5b\xf2\xe8\x09\x68\xc3\xe0\x74\x3c\xde\xdf\xb6\x07\x5c\x72\xa3\xb6\x82\xc1\xa7\x34\x6a\x1f\x30\xca\x66\x9b\x00\x6a\xd1\x34\xd0\x23\x32\x08\xef\x01\xc7\x29\x22\x43\x62\x6f\x54\x3f\x97\xe2\x81\x99\xd3\x6a\x12\xc2\xb8\x82\xe1\x01\x51\x9c\x17\xc6\x3a\xac\x60\xbe\x5d\xea\x7e\x2e\xd6\x3c\x8f\x21\xd3\x80\x96\x64\xca\xa3\x3b\xf3\xdf\x50\x3f\xfa\x22\x41\xcd\x2c\x3f\x37\xc2\x1f\x7d\x69\x89\x8c\x72\x20\x65\x22\x54\x9b\xaf\x1f\xbe\xae\x19\x8f\x72\xa5\xd1\x29\xe3\xb4\x24\x21\xd3\x15\x0c\xd8\xfb\x24\x2e\x79\x8a\x5f\xec\xf4\x64\x73\x7d\x14\xdf\xf8\x2c\x90\x7d\x11\x9f\xb3\x94\xcb\xea\x9a\xc4\xe6\x02\x57\x4d\xd2\x33\xf3\x1d\xe5\xda\x31\x55\x19\x4d\x1d\x79\x11\x28\xae\xfa\x65\x85\xd6\x71\x2e\x78\xbc\x0b\x89\xa9\x12\x49\xba\xfb\x3c\xde\x26\xd2\x0c\xbd\x55\xf5\x72\xfb\xab\x25\xf8\x45\xc0\x25\x88\x5f\xa4\x69\x6d\xe9\x6b\x26\x85\x31\xa9\x78\x9e\xa4\x3b\xb0\xa2\xb3\x5c\x9c\x04\xdf\x09\xd6\x37\xe5\x7b\x00\x55\x31\x91\x28\x94\x5a\xac\xca\x14\x6d\x6d\xb8\x8d\xba\x06\xd0\x3a\xfc\x70\x31\x31\xc7\x6c\x41\x94\xf3\xc1\x87\x51\xc8\xe9\x31\xb0\xf3\x8d\x18\xd8\xb8\x38\x8e\x27\x4e\xcb\x01\xe2\xbb\x51\x0f\x36\xd1\xe7\x81\x7b\x24\x67\xd7\x99\xf2\x68\xbe\xfb\x7e\xeb\xcb\xde\x7b\xec\xea\xc4\xce\x8f\x2b\x01\x1b\xfa\x4d\xc4\x6e\x45\x26\x12\x9a\x43\x5a\x88\xde\x1f\x5a\x6a\xcc\x17\x32\x63\x09\xbb\xb6\xbd\xde\x57\xdd\xa1\xcc\xb5\x2e\xd1\x4a\xb2\x79\xf9\xfb\xdf\xff\x41\xb0\xdf\x43\x02\x15\x59\xe1\x18\x75\x01\xea\x34\x2c\x1d\x36\x2a\xf7\x01\x81\xbc\x6a\x8d\x11\x61\x6d\xc0\x47\x9b\xad\x0c\xd0\x41\x1e\x6d\x98\x2e\x97\x88\x8b\xe3\xe4\xb8\xe7\xd2\x31\x93\xbe\x55\x00\x71\xc3\xf3\xcc\xd6\xfe\x7f\x89\x9b\x1a\xd9\xc1\xe7\x32\x53\x48\x9e\x0b\x80\xc2\xa5\x60\x5b\x9e\xdf\x81\xd8\x1b\x29\x7a\x33\x5e\xb0\xe7\x89\x98\x56\x9d\xd6\x2f\x2a\xf5\xa1\x30\x01\x92\x62\xb2\xbc\x94\xd2\xaa\x57\x30\x63\x8e\x79\x0f\xf2\x64\x2e\x97\x65\x78\xe3\xaa\xb8\xa0\xfd\xd4\x02\x37\x34\x6c\xb6\x0a\x98\x12\xa8\x52\x5c\x07\x4a\xe3\x6c\x80\x2f\x7a\x2e\x9f\xc8\x19\xdd\xe5\xe6\x7a\x4f\x96\x87\x75\x61\x05\x68\x6d\x68\x6e\x28\xb0\x08\xc3\x81\xd3\x1e\x8e\xf6\xf7\xa0\xb2\x38\x61\x3f\x26\xf7\x62\xc2\x6e\x32\x9e\xdf\x4d\xd8\x6b\x0c\x2a\xfd\x49\x2d\xdb\x3c\x57\x8d\x74\xfa\xa3\xbd\x57\x87\x39\x6f\x06\x4b\xb5\x3b\x9b\xf7\x97\xa6\x0e\x7b\x57\x44\xf5\x1f\x13\xe7\xd5\xc1\x74\xf0\xcf\x7e\xff\xde\x13\xfc\xfc\x0d\x12\xf5\x4f\x79\x17\xec\x27\x39\xf8\x5d\xf8\xbf\x76\xff\xb2\x16\x17\xd8\x9e\xb4\xcb\xb5\x62\x9d\xbe\xad\xb4\xce\x24\xae\x1f\xca\xcd\xec\xce\x61\x4b\x81\x92\x67\x63\x97\xd8\x3b\x02\xca\x4d\xaf\xda\xfe\x3a\x4b\x95\x2e\xf3\xfe\xc5\x7f\x5d\xad\xb5\xfd\x7a\x0b\xd1\x21\x4c\xb6\xed\x52\x40\xce\xf6\x50\x50\x03\x3e\xb6\xf8\x8b\x5a\x2e\x00\xc1\x73\xdc\x0a\x6f\x2b\xce\x4a\xa7\xb8\x38\x10\x55\xd5\x9f\x90\x37\x99\x00\xbe\x1d\x6f\x8a\x7a\x37\x78\x6d\x86\x39\x87\xc0\x5c\x5a\xfa\x61\xcc\x17\xcc\x73\x01\x3c\xa9\xe6\xde\x7b\x2f\x72\x96\xf1\xdc\x85\xd1\xad\x45\x14\xdc\x7c\x3c\xd4\x22\xcc\xf1\x81\x54\x3d\xba\x6f\x2d\x85\x90\xae\xb7\xc7\x98\x12\xc6\x3a\xa8\xf7\x3e\x61\xa8\x1e\x04\x8b\x10\x9e\xdf\xa1\x5e\xd6\x78\x2f\xb8\x0b\x82\xc9\xbd\x16\x45\xb0\x9b\xd7\x4c\x8b\xca\xd2\xac\xc4\x65\xbe\x29\x1c\x79\x6b\xe4\xb5\x46\x4d\x54\x71\x1b\x0c\x8a\x64\x3d\x86\x97\xf8\x3d\x2f\x36\x78\xa1\xdd\xaa\x82\x64\xe4\x91\x23\x05\xe7\x0b\xfa\x5a\x97\xa9\x5a\x82\x14\x8f\xf9\xa5\xeb\x6e\x18\xd1\xd2\x1e\xd4\x75\xcd\x01\x1b\xb2\x33\x98\xdd\x04\xf2\x0c\x73\xa1\x81\x6e\xa2\x19\x9b\x19\x8a\x7a\x1d\x77\xe9\x6e\x56\xd7\x6c\xfa\xaf\x1b\x97\xed\x26\x3f\xb9\x59\xd6\x00\x81\x3c\x3f\x20\x2f\xe3\x3c\xcc\xd5\x33\xc6\x01\x51\xb5\x52\xf0\x13\xd9\x1a\x6b\xed\xb5\x8a\xaf\x73\x39\xc3\x5f\x82\x43\x80\x7b\x1d\x0e\x87\x32\x24\x71\x3f\xb7\xfe\x30\x79\x8f\xcd\x42\x5c\x1b\x79\x08\x26\xde\x83\x07\x97\x81\x09\xe4\xca\xc9\x22\xc9\x05\x93\x10\x7b\x9f\x4b\x5d\x2e\x4f\x3c\x2d\x83\xb9\xc5\xdd\x03\x95\x88\x16\x19\x87\xab\x0c\xb0\xb5\x9c\xb4\x1c\xc3\xe8\x8f\xf3\x7c\xfa\x96\xbe\x8c\xa7\xb4\xf9\x43\x06\x1e\xe6\x05\xbb\xb6\xbb\x72\xcc\x65\x0d\x6e\xd1\x36\x27\x15\x0f\xbb\xbe\xfd\x02\x14\x3f\x20\xaf\xef\x1a\xb1\x03\x5f\xfb\x00\x0f\x63\x80\x43\x8f\x6e\x88\x22\xcd\xe5\xff\xb5\x67\x43\x37\x54\x75\xc4\x4c\x37\x3d\x63\x8e\xa8\x4e\x08\x6d\xa5\x6e\xf6\x0a\x19\x18\x81\xdd\x95\x6a\x4c\xf9\xb6\x52\xb9\x45\x73\x84\xfc\xf6\x8a\x92\x30\xe1\xd7\xfb\x44\x07\x64\xc7\xf0\xb5\x1b\x21\xd8\xcb\x5c\xac\x5e\x7e\xcc\xc5\x6a\x61\x47\x7a\x0a\x0d\x9a\x9a\x16\x35\x29\x8f\x07\x4e\x0e\x9d\x29\xd9\x4e\xfd\xb6\x87\x9a\xb1\xd6\x24\x2c\x27\x68\x53\xb2\x62\x5e\x06\xcd\xb4\x07\xf2\xdf\x45\x5c\xe7\x62\x6e\xd4\xec\x8b\x1f\x73\x5d\xf8\xa7\x01\x00\xa3\x0e\xf9\xb0\x7f\xfe\xe3\xad\xd2\x67\x43\x8e\xb7\xdb\x2a\x50\xc4\x6e\xf6\x5c\xba\x03\xaf\x1b\x50\xfc\x65\x31\xcf\x30\x80\x3a\xe3\x0f\x92\x58\x3c\x46\xb9\x9e\x86\x1d\x6b\xed\x42\xe6\xe6\x58\x6b\x20\xbf\xfc\x2a\x93\xd6\xd3\x97\x38\xad\xad\x49\x20\x53\xcb\xd3\x34\x64\x94\xf7\xf1\xa5\xb9\xf4\xd9\x8e\xc6\x6a\x4d\x53\xeb\xc2\xab\xd8\x1b\xc4\xd9\x12\x43\x9a\xa9\x98\x58\xca\x09\x22\x6b\xa3\x28\xd0\xc9\x92\x83\x06\xa2\xd3\x59\xd9\xb7\x9a\x1f\xeb\x12\xf9\x8d\x65\xdb\xee\x89\xb7\xe2\x67\x17\x77\x62\x37\xba\xae\xed\x91\x0e\x2f\xc1\xb8\x81\xc5\x6c\x77\xd9\x88\xe7\xb9\xc5\x8e\xd3\x57\x99\xb9\x2b\xad\x78\x54\x71\x73\x76\xd4\x73\x23\xa2\xbb\x4c\x25\x72\xf4\x5e\x14\xd4\xc7\x18\x52\x85\x39\xcf\x7c\x69\xee\x76\x38\xe8\x70\xac\xd8\x93\xd8\x10\x0d\xa0\x02\x0b\x88\xf4\x54\x54\x9c\x39\x8d\xc9\xee\x69\xf7\xd8\xfe\x0b\xe1\xcf\x86\x27\xf0\xc5\xb6\xc4\x87\x6a\xa7\x0a\x6f\x71\xec\x54\x78\x10\x79\x23\xa7\x68\x60\x67\x73\x56\x21\x70\x6b\xed\x52\x70\x41\xfe\xe6\x19\xfa\xcd\x33\xf4\x0f\xee\x19\xfa\x92\x6e\x21\x40\x84\x3c\xa5\x4f\xa8\x27\x40\x7e\xc4\x72\x74\x5f\x3d\x56\x70\x19\xad\xe3\x49\x20\x0c\x1a\xe4\xcf\x35\xe1\xed\x96\x5e\xa1\x00\x59\xe5\xe8\x4e\xc8\xce\x18\xbd\x25\xc5\xe9\x54\x8f\x7d\x2c\xd8\x67\x37\xa7\x4f\xf0\x76\x3f\x47\x9a\x07\xf8\x10\x65\x6a\x1b\xcd\x84\x59\x27\x60\x7b\x9a\x86\x9f\x00\x54\x4a\xe5\x8e\xd6\x57\x53\x6e\x17\x06\x23\x91\x7c\x07\x21\x42\x35\x22\xdc\xa1\x48\x30\xfb\xe1\x45\xa6\x54\xda\x0a\x08\x7b\xd4\x0e\x6c\xa4\x87\x0c\xed\xbc\x0b\x34\x46\x75\x08\x93\xb2\xbd\xe8\x53\x0d\x7c\x62\x02\x66\x21\x80\x12\x00\xcc\xa6\xb8\x84\x0c\x3d\xdf\x1d\x53\x9f\xd7\xc3\x9d\xc3\x85\x90\x51\x4b\x11\x71\x50\xc1\xb3\x90\xb5\x88\xbb\x9c\x8b\x90\x6a\xa7\x91\x04\xa1\x9b\xdf\xe9\x88\x5a\x42\xb9\x8b\xa4\x8d\xf6\x7f\xec\xe2\xaa\x59\x08\x16\x50\x8d\x35\xb7\x48\x12\x4b\x3a\xb7\x4f\xf4\xd0\x32\xec\x2e\xa2\x94\xeb\x81\x86\x75\xeb\xbe\x73\x41\x05\x9d\x41\x39\xc3\x37\xd2\x1f\x21\x09\x65\x3b\x10\xb9\x33\x97\x33\x27\xfa\xe7\xb1\x5f\x0e\xaf\x86\xe1\x52\x44\xea\x35\x86\x06\x99\xec\xfc\xcd\x65\xc2\x74\x19\x6d\x80\xab\xaf\xba\x4f\x85\xfb\x56\x73\xc5\x4e\xe6\xd2\x5c\x88\xc0\xd5\xb2\xe5\x90\x6d\xfd\x60\x8c\x55\x9d\xfc\x55\x38\x78\x16\x51\x42\x85\x88\x2c\xbc\x38\x29\xd9\x8a\x5e\xb3\xb4\x89\x08\xb0\xf0\x98\x92\x32\x8b\x79\x21\xa6\x73\x8f\xb6\x49\xd0\xd3\x69\x51\x1e\x64\x32\xeb\xb0\x61\x21\x7a\xaf\xb6\xd3\xa6\xc9\x4a\x44\xbb\xa8\xa1\x82\xd2\x4f\x3e\xf0\xdb\xb5\xed\xdb\xba\xb6\x21\xc7\x28\x66\xca\x8d\xe9\x5a\xaa\xea\xb5\x7f\xfd\xb8\xce\x15\x2c\xa8\x89\x1e\xd1\xcf\x5f\xf0\xda\xd9\x62\x03\x8f\xb3\xe7\x07\xdf\x83\xfa\x8f\x33\x7f\xb1\xf5\x87\x75\x90\x58\xdf\x30\x0b\xc3\xe0\x62\x11\x4e\x1d\x63\xd0\x0e\x0e\xeb\x77\x73\x97\x7c\x53\xe0\xa4\x21\x17\x57\x63\x71\x3b\xb8\xd2\xa5\xb5\xb4\xa5\xc0\xf3\xae\xc7\xe2\x0e\x38\xad\x79\xf1\x4c\xbb\x5e\xaf\xee\x80\x16\xf1\xfe\x36\xd1\xc5\xcf\x35\xc5\xc4\xc3\x24\x17\x9f\xcc\x34\xb5\x55\xc5\x6a\x0e\xb5\xa8\xae\xab\x36\x8f\x5a\xd9\x39\x07\x97\x27\xab\x91\x65\xea\x3d\xe6\x1e\xf4\xd1\xf5\xd7\x47\x3c\x9a\x1e\x72\x9e\x65\x22\xb7\x07\x79\xc3\xd6\x02\xc1\x29\xf8\x0a\x28\xc6\x6d\x04\xca\xd6\xd6\x6e\xb9\x66\x2b\xa9\x15\x0d\x8f\x41\xd7\x4d\xdb\x47\xee\xb2\x4c\xd3\xce\x91\xdb\xaf\x63\x73\xf9\xe1\xed\xdb\xc5\xcf\xb3\xb7\x1f\xce\x6d\xf3\x5b\x75\x61\x82\xc7\x3a\xfb\xc4\xd5\x84\xfa\xc4\x2b\xcf\x99\xcf\x0a\x2b\x9d\xab\x7c\xab\xd1\xc9\x55\xa6\x69\x55\x33\x68\x2e\x3f\x52\x39\x00\xd3\x46\x3d\x44\xd3\x6f\xac\xb7\xe3\xaa\xdf\x87\xc7\x3e\x9a\xc2\x3f\xe2\xbb\x27\xcc\x37\xe2\x25\x28\xdb\x91\x62\x56\x7b\xbf\x52\x0e\xc8\x11\xcb\x01\xc1\xc0\x5d\xcb\xe1\xb1\x55\xd1\x0e\x5b\x1e\x1f\x24\xf0\x31\x8b\xd8\x8a\x99\x3d\xca\xea\xc0\xbe\xfb\x58\x8d\x53\xbb\xbd\x3c\xc6\x2b\x0d\x94\x3b\x41\x2d\x2b\x50\xe8\xf5\x72\x4f\x73\x89\x3e\x50\x53\xa7\x42\x75\xd7\x89\x5d\x90\x79\x9b\x72\xb9\x2e\xf9\xda\x58\xb7\xf6\xe3\x73\xb9\x4d\xd6\x1b\x64\x97\x28\x33\x8f\x4f\xe6\x4c\x02\x09\x49\x6d\x0a\xd5\xf0\xc9\x89\x9c\x4b\x6a\x93\x5c\xfb\xe2\x11\x2b\xfb\xa7\x1b\xd7\x1c\x02\xa5\x63\x41\x24\xc7\x25\xe7\x12\x07\x17\x59\x2f\x6c\x24\x04\x6e\x2c\xbc\xa8\x4f\x5d\x0e\xb1\x4b\x94\xac\x36\x7b\xfa\x1a\x62\x32\x73\xe9\x12\x53\xd1\x73\x44\x6d\x08\x64\x1b\xb0\x4a\xfb\xf7\x13\x3b\x18\x76\x4d\x50\xdd\xda\x67\xfd\xd1\x67\x80\x59\x70\x8b\x11\xda\xbb\xcd\x6d\x6c\xa0\xb7\x90\x07\x1b\x47\x17\x5b\x01\x64\x23\xb7\xd7\xc6\xb6\x0b\x9f\xe9\x84\xb6\xaa\x72\x99\x8e\xa8\x12\x3e\xdf\x5b\x29\xdc\x92\xfb\x2b\x35\xe0\x3a\x7c\x5d\x5b\x5a\x66\x9a\xf6\x7d\x76\xa9\x54\xc7\xb8\x3c\x62\x40\xb1\x52\x29\x7a\x61\x5f\x67\x94\x51\x71\xc8\x7c\x19\x90\xa2\x57\xef\x22\xbb\xfb\xf4\x55\x28\x4d\xf4\x41\xd5\xf1\xf6\xd3\xe0\x1a\x39\x0b\x81\x0e\xbb\x51\x3b\x2c\x9d\x73\x95\x0d\xb6\x63\x9b\xa4\x78\x92\x15\xb1\x4d\x70\x7b\x31\x8b\x07\x15\x66\xcd\xfc\x9f\xb8\x49\x34\xf1\x23\x37\x81\x4a\x46\x65\xae\xcd\x76\x49\xfb\x1d\xed\xda\x2a\x67\x7c\x2e\xad\x1a\x82\xdd\x8e\x67\x16\x9c\x9b\xbb\xbf\x62\xda\x63\x86\x6c\xe2\x60\xb1\x16\x4c\x49\x61\x77\xc3\xb9\xb4\xca\xc7\x13\xc6\x97\xda\x0a\x0a\x73\xb9\x73\x2a\xbf\x89\x93\x70\xe3\x92\x01\xea\x79\xff\x9e\x57\x33\x03\x2a\xe7\xfc\xef\xcc\xff\xfd\xfd\x77\xff\x3f\x00\x00\xff\xff\x22\xbb\xb9\xf6\x08\xa7\x04\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x5d\x23\xbd\xdf\xde\x6c\xdc\x71\xcc\xab\xb4\xf3\x41\x25\x4c\x1f\xca\x4d\xa7\xa0\x40\xca\xa2\xaa\xa6\xb3\xf5\x79\xf5\xbd\x24\xe6\x00\x32\x36\x7c\x1c\x73\x22\x03\x23\x3e\xf2\xb6\xb8\x84\x4e\x89\x96\x3e\x46\x4c\x93\x71\xe8\x70\x30\x00\xdb\x0e\x6f\x5b\x77\x1a\x09\x2e\xa5\x8d\xbc\x37\xed\x2c\xcf\x9f\xda\xa2\x96\x9f\x41\x09\x3f\xbf\xbe\x1a\xd7\xab\xfa\x05\xcf\x5c\x7d\x3f\xfb\xb0\x31\xc9\xbe\xb5\xa9\x95\xd5\xfc\x8a\xb5\x58\xa3\x9e\xdf\xf1\xe9\xc5\xb9\x2f\x62\x55\xe9\xba\x5e\xd0\x2f\x44\x56\x6f\x2f\xe9\x57\x9f\x71\x50\xdc\xaf\xd2\xc4\x92\xf2\x7e\xab\x37\xab\x1c\xef\xbb\x0d\x6c\x5e\x65\xeb\x57\xf2\x87\x32\xcd\xac\x0a\x4b\xdf\xd1\x36\xb5\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x76\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\xb5\xad\x58\xcf\xe3\x75\x6f\x61\xd2\x77\x11\xc6\xfc\x7a\x39\xcc\xc9\xa2\x88\xda\x93\x56\x76\x73\x25\xb8\x5b\xec\xfe\x13\xe2\x21\xe1\x5b\x37\x74\xdb\x24\x45\x0f\x1d\x25\x08\x96\x36\x1c\x03\x72\xf9\x2a\x79\x3e\x6b\x98\x87\xfd\x98\x4d\x36\xf0\xa1\x2f\xc2\x10\x5c\x35\xb6\xae\x58\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\x63\x7e\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\x01\x07\xa6\x67\x30\x8f\x49\x9a\x6a\x05\x1e\x54\x13\xc6\x0f\x79\xe6\x74\x96\xd2\x5b\x50\x41\x83\x4e\xf5\x8d\x15\x84\x2b\xe8\x2f\xd8\x21\xf9\x4c\xa5\xd2\x72\x45\x43\xac\xa6\x6b\x04\x24\x1e\xa8\xab\x35\x27\xf6\x86\x1b\x7d\x18\x7c\x77\x7d\x7b\x3f\x3c\x1b\x7d\x28\xa2\xf3\x5d\xfa\x99\x47\x84\x72\x00\xff\x9c\x8d\x98\x0f\xa8\xf5\x00\xc8\xb0\x97\x08\xc7\x71\x81\x6c\x60\x95\x48\x23\xb3\x2d\xe5\xc8\xc1\xa9\x58\x19\x4a\xbb\xa4\x99\x07\xc8\x41\xda\xd7\x93\xb5\xc4\x75\x56\x3a\x39\x26\x93\x6a\x49\xca\xcb\x8e\x2e\x9b\x10\xbb\x55\x19\x5d\x9b\x28\x07\x2e\xc8\xc8\xb3\xd3\x95\xe0\x76\x3e\xc6\xe6\x12\x5e\x8f\xdb\xb9\x0d\xd9\x60\x53\x3f\xd2\xcf\x24\xbe\x6d\x91\xaa\x76\x92\xd1\xd2\x29\x12\xb0\x71\x17\x72\x46\xd7\xd1\xf8\xfd\x54\x1e\xf4\x77\xdd\xd9\xd2\x75\x01\xc9\x56\xc0\xab\x02\xb6\xaa\x42\x18\x45\x44\x28\x4c\x19\x9a\xc2\xc1\x66\xd1\x02\x01\x60\x07\x01\x1f\xf6\x1f\x51\x4a\x19\x20\x07\x2c\x5b\xda\x87\xf2\x3c\xd6\x10\x5a\x2f\xcf\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\x83\x9f\x97\xca\xaa\x95\x16\x96\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xc6\x89\x26\x0b\x45\x1e\x6e\x2f\xb6\x92\xef\x9a\x9d\x65\xad\x18\xe1\xa1\x74\xd5\x8c\x88\xd0\xe5\xd3\x98\x44\xab\x50\x4c\xbb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x32\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\x76\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x8d\x93\x66\x87\xb2\x24\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\x47\xa6\x42\xfc\x40\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x11\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\x06\x37\xe7\x0d\x6b\x7d\x51\x75\x21\x7d\x59\xe5\x6c\x12\xef\xcd\xda\x35\x48\x52\x90\x9e\xb8\x17\xa8\x48\x76\xa6\xdb\xc1\x20\x19\xa7\xff\x4d\x39\x92\x60\x1f\xd0\x7a\x9b\x54\x86\x52\xda\xf1\x0a\x60\xde\xf5\x32\xf1\x8a\x65\x58\x13\xf4\x28\x1c\x90\x4d\x03\x09\x81\x7e\xea\x31\xc6\x07\x21\xf0\x0f\x37\x05\x73\x6d\x6c\xc1\xce\xc0\x90\x8a\xd9\x74\x41\x43\xfa\xd1\x50\xb4\x07\xcb\x00\xf8\x0f\x57\x90\xd1\xc5\x06\xdb\xdc\xf5\x70\xba\x21\xb5\xad\x07\xa0\x54\x8c\xcf\x99\xbf\x2d\x16\x35\xce\xb0\xb5\x3b\x80\x12\xe5\x2a\x25\x34\x15\xd6\x3b\x1a\xb1\x20\x60\x45\x1a\xb5\x47\x9f\x11\x57\x9c\x04\x2a\xde\x32\x00\xb6\x86\x24\x1d\x2f\xfc\x94\x76\xa0\x9a\x22\xaf\xe6\xe5\xf2\x22\xb5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\xa0\x33\xad\xab\x38\x04\xc7\x6a\xa5\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xcd\xaa\xfe\x39\x23\xd1\x26\x10\x32\x37\x58\xe0\x94\x28\x22\x96\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x2a\x48\x18\x3f\x8b\xb5\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x35\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x6d\xe7\xf4\x3a\x50\x28\xf7\x35\x50\x91\x52\xb8\xd0\x9e\x60\xa0\xac\x1e\x65\x1b\xf8\xc9\x2a\x5e\xba\x13\xde\xed\x32\x1c\x5c\x0a\x6d\xe5\x50\x95\x72\x27\x80\x4a\x40\xa5\x32\x38\x20\xcd\x00\x26\x20\xb4\x34\x45\x48\x06\x6e\x3f\x0b\x6f\x57\x18\x74\xad\x64\x55\x2d\x2e\x55\x59\xae\x15\x3c\x6e\x57\xe0\x0e\xbd\x44\xb3\x6b\x89\x66\x15\x29\x97\xa2\x6b\x35\x75\x12\x51\xc1\x99\xb1\x45\x9f\x2d\x40\x40\x79\x82\x90\x7b\x64\xaf\x48\x5b\x39\x16\xae\x7e\xca\xfc\xbf\xca\x1c\xdc\x11\x75\x48\xaa\x4d\x49\x95\x47\x81\x0b\x0a\x3c\x50\x49\x28\x0d\xd8\xb8\x1a\x18\xad\x09\x83\x34\x56\xfe\xf3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x07\xf0\x16\xc0\x20\xc8\x7c\x92\x52\x85\x70\x30\xc3\x92\x49\xf2\xc0\x9e\x67\xfd\x01\xcc\xb8\x31\xcf\xbe\x09\xa2\x67\xc5\xa1\xd9\xc0\xbe\x56\x34\xb2\x6d\x2a\x7d\x10\xd3\xfc\xb2\xc9\xf4\x81\xc6\x13\x6a\x98\x8d\x67\xae\xcf\xa6\x47\xcd\xd6\x06\x0b\x1a\x0a\xc8\xae\x54\xaa\xca\xdd\x62\x0d\x3d\x2b\x32\xe9\x8b\x8d\xe8\x94\x4a\x5f\xbc\xbe\x8b\x5c\xfa\xb6\x32\x65\xcb\x72\x2b\xdd\x27\x2d\xf6\x6f\x97\xb3\xab\xb8\x0b\x9c\x0f\x25\xa5\x9b\x56\x49\x69\xdf\x50\xcd\x8a\x84\x80\xcd\xc3\xcb\xd7\x51\x07\x8b\xfc\xac\x90\x8a\x82\x74\xcb\x32\x26\x0c\xa9\x72\x7e\xc6\x15\xe4\xd4\x44\x50\xc2\xbd\x96\xe7\x39\x62\xcd\x12\xc8\x72\x9e\xb8\x6d\x8a\xc6\x4e\xd1\xcf\x82\xf3\xe7\x66\x61\x2d\x5a\x3f\xf9\x20\x37\xa3\x2c\xdb\x62\xec\x55\x11\xb3\x70\xf1\xb5\x05\x27\x69\xc1\x63\x93\x84\xe3\x86\x53\xd9\x3c\xf4\x5a\x02\xc5\xca\x73\x61\x2f\xdd\x1d\xaa\x76\x35\xee\xdc\x39\xdf\xc4\xcb\xc8\x96\x1b\xbb\x80\x69\xa7\xc6\x57\x3c\xb5\x9b\x14\x99\x05\x50\xd1\x9d\x41\xa1\x56\xd1\x09\x74\xe3\x07\xe0\xdd\xb5\x43\xc7\x26\xd2\xc5\x03\x74\x57\xb6\xa4\x34\x61\x5b\xbc\xff\x05\x26\xbd\x6e\x61\xe0\xc0\xdb\x28\x6c\xb4\x2f\x0d\xed\x06\x50\x11\xd8\x06\x49\x56\xf8\xb0\x17\xed\x72\x16\x13\xc1\x08\x56\xf3\xd7\xcb\xb1\x38\xdd\xd6\x38\x1d\x8c\xef\x65\xf3\x2d\x4e\x77\x52\x15\x3e\x1c\x6e\xb9\x42\xfa\xca\x71\xea\xd7\xbb\xd8\x89\x6c\xe8\x81\xaf\x11\x5c\x53\x1c\x1b\x8c\x86\x01\x04\xcd\x3a\x54\xba\x55\x1a\x46\xb3\x32\xf7\x32\x09\x29\x0d\x56\x9f\x5a\x2a\x8a\x3e\xec\x61\x65\xe5\x15\x4b\xf2\x45\x64\x7e\xbc\x7c\x32\xc2\xb2\x1a\xce\x79\x90\x9f\x00\x85\xb4\x15\xa6\xcc\x72\xaf\x65\x29\x09\x5a\xa2\x4c\x71\x53\x16\xc2\xde\xe7\xb7\x7c\xf1\xe9\x2d\x7d\xb2\x43\x9f\xec\xd0\xb0\x47\x7d\xb2\x03\x42\xfb\x96\xec\xb0\x4a\x01\x5d\x66\xfe\xf4\x1e\x39\xa8\xb5\x59\x2a\x70\x63\xf6\x77\x85\x16\xb9\x79\x40\xbf\xb3\x20\x86\xd1\x50\xf6\x17\xfb\x43\x63\x40\x54\xed\xb3\xea\x6c\x43\x6b\x26\x5b\x54\x9d\x02\x58\xc4\x89\x45\xa1\xb3\xe1\xca\x65\xeb\xd3\x32\x43\xe9\x88\x7d\xcf\x9f\xc9\x13\x11\x07\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xe8\x18\x38\x08\x25\x40\x73\x13\x05\x81\xd1\x15\x4e\x49\x6c\xea\x1d\x06\x41\x8d\xd6\x5c\x6b\x1d\xad\x4d\x60\xab\x80\x1b\x6a\xb6\xc1\x45\x4d\x8c\x98\x09\x34\x34\xc1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x37\xf0\xef\x8e\xd0\xbd\xbe\x9f\xa8\x2c\x8f\x37\xc0\x5e\x6b\x1b\xdb\x88\xcd\x04\xcf\x33\x6f\x41\xe3\x13\x53\xf8\xd6\xc4\x3e\xd5\xdd\xc0\x30\x18\xe7\x03\x8e\x70\xac\x35\xf1\xe5\x84\xf3\x26\x31\xa8\x1b\x01\x18\x85\x04\xa4\x8f\xa1\x0f\xac\xb3\x81\xee\xc6\x7b\x1b\xc0\xb6\x2c\x83\x61\x7f\x21\xd7\xf2\x19\x91\x60\x13\xf2\x36\xf7\x52\x16\x79\x19\xa9\xa0\x71\x9c\xcb\x2c\xa2\xde\x6b\xe1\x2c\xfb\xcd\x20\x08\x45\xe7\x36\xe2\xcb\xa4\xa8\xda\x7b\xe2\xc5\x6c\xa5\x9d\x63\x67\xdb\xf8\xc5\x4d\x2e\x32\x0e\x92\x58\xb2\x70\xa0\x0d\x16\xe7\x2d\xe3\x59\x6e\xa2\xda\x68\x18\xe4\xd4\x48\xd9\x54\xaa\x4b\xac\xa2\xb9\xe6\xdc\x05\xde\xd9\x8e\xa2\xfd\x0a\xae\xfc\xb2\xf6\xd3\x86\x19\x9c\x86\xbd\xb7\x38\x14\x3a\xd8\xd3\xcd\xbd\xef\x82\xeb\x9d\x24\x91\xea\xfe\x8c\xd3\xcd\x96\xb3\x0e\xac\xa2\xee\x13\xfb\x44\x4f\x74\x15\x15\xad\x1a\x7f\x37\xda\x2a\xd7\xdb\xda\x79\x1c\xe1\x16\x00\x32\x67\x16\xae\xab\x78\xd1\xd6\x67\x6d\x71\xfe\x0b\xba\x59\x0e\x90\xc5\xc8\x7f\xd2\xe2\x88\xb7\xb7\xa6\x38\xd3\x4a\x84\xe2\xfa\x96\x14\x33\x23\xc7\x9a\x28\x59\x84\x51\x2e\xa8\x3b\xfb\x95\x8c\xf0\x76\xea\x00\xfb\xe4\x71\x58\x4f\x29\xc2\x41\xa9\x39\xe3\xee\xc7\x91\xca\xb1\x0f\x4b\x04\x9a\x70\x25\xd0\x4d\xf6\xbb\x73\xab\x0b\x27\xde\x35\xec\xe9\x4a\xc2\xde\x62\x97\x71\x13\xba\x61\xa7\x93\x46\xd9\x2c\x80\x46\x6c\xb6\x11\x77\xa9\x7c\xd0\xf8\x65\xb7\xea\x0d\x8d\x9f\x3a\xd9\x67\x93\x6f\x97\x40\x37\x6d\x1c\x99\x5d\x8a\x72\xb7\x61\xb0\x56\x7a\x0a\x41\x2b\xad\xfd\x0e\xb0\x67\x29\xb8\xe9\xb1\x95\xa6\xfe\xcb\xff\x65\x2a\x65\x99\xa5\xf9\x2f\xc4\xc5\x88\x99\xdf\x0f\x7c\x95\x0a\xfd\x42\x01\xff\x8a\x53\x52\x00\x64\x8a\x32\x94\x1e\x00\x8a\x58\x28\x34\x03\xf5\xeb\x41\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xe8\x01\xcf\xcc\x52\xcc\xf0\x0c\x80\x85\x0f\x20\x2e\x0e\xc4\xd5\x42\x15\x31\x24\x6d\xaa\x1d\x02\xb7\xd2\xcc\xd2\x66\xdb\x16\x55\x7f\xa1\x4f\x23\xca\x5a\x5c\xd3\x22\xb8\xa2\x99\xfa\x6f\x6d\xff\x9b\x49\xec\xf7\x83\xbb\x1f\xc6\xb7\xc3\xbb\xeb\x87\xdb\xd3\x92\xd8\x7e\x7a\xf1\x70\x77\x3f\xbc\x6d\x7c\x56\x64\xaa\xfe\xf5\x61\xf8\xd0\xf2\xc8\x35\x70\x31\xf8\x6e\x58\x2a\xa1\xfd\xd7\x87\xc1\xc5\xf9\xfd\xcf\xe3\xeb\x8f\xe3\xbb\xe1\xed\x8f\xe7\xa7\xc3\xf1\xdd\xcd\xf0\xf4\xfc\xe3\xf9\xe9\x40\x7f\x19\xbe\x7b\x73\xf1\xf0\xe9\xfc\x6a\xec\x82\x8e\xc3\x47\x3f\x5d\xdf\xfe\xf0\xf1\xe2\xfa\xa7\x71\xd0\xe5\xf5\xd5\xc7\xf3\x4f\x4d\xb3\x18\xdc\xdd\x9d\x7f\xba\xba\x1c\x5e\x2d\x2f\xd5\xdd\xbc\x1a\xad\x55\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xae\x8b\x1b\x43\x8f\x87\x07\xee\x2f\x53\x58\xfb\x50\xb3\x40\xe7\x15\x2b\xb8\xc7\x88\x79\xb7\xa5\xbf\x54\x15\x9e\x49\x97\x78\x5c\x1a\xed\x09\x1a\xc0\x59\x01\x85\xa1\xd4\x29\xe4\x35\xf8\x91\x3a\x47\x37\xd0\x61\x42\x53\x0a\x3e\x6f\x74\x88\xaa\x1b\x5e\x6e\xd0\xce\x09\x86\x60\xbd\x76\xf1\xb2\xd3\x20\xab\x39\xcd\x40\x29\x27\xc8\x71\x68\x62\xcc\x09\x06\x79\x76\xc1\x70\x4a\xa3\x6a\x02\x06\x80\xaf\xa2\x02\x68\xa4\xda\x62\x89\xc0\xca\x2d\xcf\x09\xfa\xe1\x2f\xc5\xa0\xc0\x83\x61\x35\xef\xbc\x56\x4f\xcf\x3e\x10\xb9\x59\xd5\x55\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\xeb\x76\x83\xbb\x29\x67\x01\xd8\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd0\x1d\x00\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xc5\xf7\x09\x99\xe3\x27\xca\x5d\xf1\x0a\x53\xe3\x03\xd6\xd1\x8a\x56\xe8\x10\xb5\x1e\x94\x13\x34\x88\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xb0\x3c\xec\x10\x1f\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xbb\x87\x72\xa9\xb3\xc3\xf2\xdd\xbb\xc5\xf5\xaf\x57\x70\xec\x48\x79\xbc\x91\x30\x70\x8f\xe5\xa3\x63\xcd\xab\x04\x02\x07\xaa\xb3\x5d\x8f\x16\x5d\xa7\x6b\xa7\x7e\x65\xc7\x70\xd0\x36\xeb\xb3\x15\x13\x7a\x45\x97\x6e\xc6\x49\xa5\x70\x57\xe7\xfe\x4a\x85\xbf\x1a\x3b\xdb\xa9\xb7\xa7\x59\x1a\x83\x23\x39\xf6\xf4\xbf\xc6\x3c\x6e\xe0\xd3\x6b\xff\xe5\x52\x91\x6d\x1c\xac\xdb\xba\x3e\xa0\x5a\x8a\xae\xf5\x03\x2d\xa5\xc3\x1d\x81\x3b\x75\x17\x06\xa1\xec\x02\x8d\xc0\xdd\x87\x29\xb3\xc5\x78\x88\xf7\x47\xb9\xf2\xd3\xfa\x1c\xfb\x02\x71\x78\xc2\x9f\x4a\xca\x65\x4a\xa4\xc4\x2d\x70\x25\x81\x49\x6c\x1b\xc6\xe0\x4f\xa8\xfd\xb0\x23\x3d\xb9\x33\x79\xaf\xbf\x5a\x66\xf4\xb9\x0d\x35\x63\x37\x51\x2d\xb0\xc6\x2e\xce\x16\x5d\x9b\x6c\x3b\xcd\x5f\x0e\x8a\x50\x1a\x2e\x82\x08\xa3\x36\xf7\x4f\x47\xb3\x5a\x75\xc1\x1a\x6b\x2c\x85\x2e\xbc\xf5\x23\x70\x82\xd6\x37\xc6\xc3\xb6\x7e\x15\x5c\x5e\x9f\x35\xa8\xae\xe4\xef\x0c\xeb\x4f\x47\x3c\x4d\x8d\x5c\x50\xb2\xa5\x1e\x20\x6c\x92\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\x71\x30\x62\xcf\xc1\x86\x94\xc2\x80\x07\x61\x4b\x80\x25\xfa\x59\x1f\x37\xfa\x54\x0a\xae\x06\x91\x91\x42\xa4\x6f\x40\x08\xc6\x21\x58\x14\x8f\x5a\x41\xe0\xc1\x7e\x6d\x41\xea\x1b\x54\x0a\xac\xac\x6f\x5b\xbd\x40\x3f\xb7\xa0\x4c\xdf\x16\x9a\x72\xd7\x21\x04\x95\x02\x9b\x46\xb0\x83\x42\x81\xaf\x0a\xee\xed\x93\x35\x4d\x6e\x6f\x3a\xb1\x08\x15\x7a\xba\x6e\xb5\x7f\xef\x66\xf4\x7b\xe3\x77\xc8\x5b\x20\x4d\x82\xd6\x3c\xbe\x37\x3a\xd4\x32\xab\x4b\xb5\xb7\x81\x18\x12\x1d\x1a\xcc\xc0\xaf\x20\xce\x72\x70\x73\xfe\xd5\x01\xfa\x2a\xcc\x35\xfb\x6a\xa3\x03\x68\xc7\x6d\x8b\x05\x82\x36\x55\x4a\x38\x28\x1f\x3b\xd8\xab\xca\x49\xb4\x7b\x66\x0f\x22\x6a\x3b\x87\xfa\xcb\xd2\x37\xe0\x9c\x86\xe2\x77\xc6\x7f\xeb\xc3\x9d\xad\x0b\xc8\xc8\xb8\x54\x36\xac\x5d\x3c\x62\x93\x45\xd5\xc9\x73\xe0\xbd\x3c\x9d\x4f\xe9\xd6\x05\xdd\x74\x7b\xf5\xe4\xe4\x1d\x87\xe1\x2e\xbf\x0f\x56\xa4\x3b\x0f\x4c\xc4\x35\x9f\x06\x5c\xac\x2d\x4a\xa1\x8f\x5f\x6f\x9a\x55\xc9\x5e\xe6\x16\xb3\x71\x53\x56\xc9\x3f\xef\x8d\xdc\x3a\x04\x7d\x0f\x9a\x56\xc4\xc6\xfb\xb7\x08\xd7\x3d\x95\xbd\x2c\x95\xed\x22\xdf\xa1\x3c\xb8\xf5\x2f\xd0\x53\x23\xc7\x05\xcd\x38\x83\xab\x56\x26\x3c\x83\x2f\x55\xfd\x5b\x5d\x2e\x77\x4d\x9f\x6f\xb0\x26\xab\x9d\xbe\x77\x26\x70\xc0\xb8\x5d\xeb\x63\xad\x0e\x75\xa0\x6c\x09\x22\x4e\x4d\x6e\xa3\xa2\x29\x39\x40\x9c\x25\x8b\x20\xd8\xc1\x9e\x57\x20\x37\x13\xa3\x34\x27\x54\xb8\x4e\x2c\xc2\xe0\x5a\xc9\xf0\x6b\x4a\xe3\x6d\x34\xb2\x45\xa4\xc9\xd5\xe0\x72\x78\x36\x1e\x5e\xdd\x9f\xdf\xff\xdc\x80\x1e\x59\x7e\xec\x00\x24\x83\x17\xee\x7e\xbe\xbb\x1f\x5e\x8e\x3f\x0d\xaf\x86\xb7\x83\xfb\x15\xe0\x92\xcb\x3a\x6b\x03\x2e\xcc\x65\x93\xfa\xb6\x0e\x78\xa1\x33\xf3\x36\xf4\x5e\x87\x98\x0c\x3a\xa1\xa4\x05\x66\xd2\x24\xfe\xb3\x98\x08\x14\x93\x27\x92\xf0\xac\x30\xab\x36\x2e\x58\x80\x3f\xd9\xd0\xfe\x32\x0c\x4a\x68\xb3\xba\xc6\x27\xc8\x54\x7a\x0b\x8a\xdd\xfa\x06\x41\xe4\xc3\x82\xb0\xaf\x14\x22\x9f\xb3\x84\x46\x54\x05\x89\x81\x5c\x58\xf7\x8a\x71\x1f\x42\x74\xea\x0a\xe2\xda\x59\x34\xca\xce\x75\xfe\xd0\x93\x5e\xd7\xf6\xfd\x89\xf2\x78\x68\x2b\xcb\x07\xed\x40\xb1\x6f\x71\x1a\xd7\xe0\xda\x36\x18\xdd\x4b\x98\x07\xea\x19\x3a\x36\xb9\xaf\x05\xca\xad\x79\x90\xab\x6f\xc3\x65\x71\x32\xa5\x73\xbd\x3c\x50\xa6\x1b\xa5\xbe\x71\xb8\x4b\xa9\xac\xe6\x0e\x70\x37\x6c\xec\xfa\x9a\x01\x0b\xb5\x6a\x31\xcc\xc4\x9c\x62\x24\x48\xca\x95\x56\xc0\x4c\x44\xc0\x81\x16\xaa\x28\x4e\xe8\xaf\x80\x50\x25\xc8\x51\x10\x41\xe1\x70\xbd\x0a\xf7\x81\x45\x8f\x38\x1a\xb1\xb3\xe1\xcd\xed\xf0\x54\x33\xa4\x23\xf4\x20\x01\x7c\xaa\x34\xf5\x33\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xb6\x60\x30\x22\x04\x17\xdd\xf9\x83\xef\x6f\x08\xdf\x35\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb5\x26\x72\x90\x33\xb0\xf3\x94\xac\x5b\xfc\x5c\x5a\x91\x10\x7c\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x7c\x67\xf7\xf9\x95\xfa\xbc\x81\x6f\x97\xcd\xf3\x1e\x42\xec\xa4\x2a\xb0\x40\x0d\x5c\xa8\xaf\x79\x53\x99\x67\xab\xa8\x28\xde\x02\xa8\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x38\x6c\x68\x69\xab\x07\xcd\xac\x7b\x54\xf5\x9a\xe1\x94\xe7\x0c\x94\x06\x08\x63\x6d\x18\x8c\xcc\x08\x53\x2b\x06\xf3\x56\x30\x2c\x95\xa1\xee\x2f\x12\x4b\xc3\x40\xdb\xc0\x58\x9a\xfc\x49\x50\x78\x79\xbd\x6b\xd9\x05\xe5\x95\x9c\x4a\xfa\x50\xf9\xfb\xb9\x59\xcb\xc6\xf2\x71\xeb\xee\xee\xb1\x7c\x5c\xdd\x55\x4c\xa2\xc7\x75\x2f\x9b\x6a\x66\x66\x62\xeb\x56\xd7\x8c\x7d\x0b\xfd\xd4\x16\x66\x81\x72\xe5\xd1\x23\xfa\xfe\xfe\xf2\x02\x4d\xa9\x96\x7b\xf5\xb5\x72\x85\xb5\x8c\xfd\x20\x12\x67\x17\xb6\xb6\xd5\x5c\x24\xfe\xee\x85\x8d\x77\xa2\x54\x20\x25\xe8\x1b\x0d\xcf\x88\x33\xf6\x0a\x8b\xb5\x57\x29\xcc\x22\x30\x8b\x79\x6a\xe6\x71\x2c\xf3\xe9\x94\x7e\x3e\x52\x58\x7c\xd3\xb2\x1e\x26\xaa\x62\xfc\x77\x3e\x19\xeb\x11\x6d\x79\x11\x37\x35\x87\x6c\x39\x65\xbf\x6c\x76\x66\x67\xe6\xdd\xff\xcb\x27\x90\xeb\x9e\x09\x0e\xf8\x7f\xe0\x9d\xb3\x91\x0a\xf6\x15\x47\x49\x47\xc8\x25\x50\x95\x20\x4e\x22\x2e\x04\xb1\x29\xf2\xa6\xb2\x68\x86\x85\xa2\x60\xad\x75\x10\x29\x25\x6c\xfc\x62\x8b\xc2\x82\xdf\x73\x5c\xe0\x50\x4f\x08\x01\x07\x4f\x46\x93\xf5\x94\xde\xd3\x92\x6f\xb2\x72\x02\x6d\xe4\xa9\x45\xcd\x04\x83\xcc\x4a\x11\x6b\xf8\x44\x98\xda\x89\x7e\x02\x4d\x34\x24\xed\x77\xf3\x32\x98\x02\x9f\xe7\x67\xc5\xe5\xe6\x42\x7a\xc3\xa8\x26\x25\x30\xdc\xf3\x36\x51\xca\xba\xd4\xdb\x1c\xfd\x4f\x9d\x7d\xc7\xf0\x6a\x7d\x5d\x56\x84\xc6\xdb\xd5\x2e\x0a\x7d\x17\x61\xad\x0e\xd8\x7f\x43\x18\x1f\x49\x8c\x15\x23\x80\x8f\xb0\xca\x69\x75\xcf\x4d\x9f\x9a\xb6\x2a\x5d\xae\xdc\xf2\x0d\x30\x6b\x4a\xcd\x7c\x22\x90\xd2\xb9\x8b\x40\xf4\x75\x52\xf7\x61\x20\x0f\x22\x81\x10\xea\xa5\x56\x2c\x53\x64\x5c\x73\x3e\x2f\xd9\xe1\x0e\x32\xba\x19\x8c\x16\x1a\x49\x26\x48\xa4\xaf\xb2\x13\x74\x93\x10\x2d\x79\xe5\x5a\xfa\xca\x93\xc4\xe1\x7b\x2d\x97\x0e\xd7\xc2\xa4\x7b\xf1\x79\x05\xba\xc7\x92\x89\x39\x7c\xbb\xe5\x33\x0b\xd6\x60\xf7\x80\x0b\xc1\xfa\x82\x09\x19\x0c\x89\x65\x2d\x12\x38\xfc\xc2\xc4\xcd\x82\x29\x09\x97\x2e\x32\xfa\xab\x66\xbf\x82\xc8\x39\x6f\x4d\x72\x0c\x67\xfb\x32\x73\x70\x4b\xf9\x82\x93\x70\xf7\x61\x5b\x5c\x75\x07\xb9\xa6\x72\x07\x96\x44\x9c\x65\x53\xf4\xb5\x1f\x7c\xf4\x87\x45\x5b\xb5\x77\xab\x1d\x1a\xdc\x92\x85\xa9\x2d\x44\x3e\x2b\x5c\x17\x85\x32\xb3\x30\xbe\x57\xff\x79\x61\x40\x2e\x52\x02\xa8\x92\x45\xcd\x39\xa4\xef\xda\xb6\x2d\xd6\xf3\x1c\xe7\x62\x2d\x48\x8a\x02\xb3\x7c\x1d\xce\x6d\x93\x51\x8a\x61\xe9\x45\x68\x66\x97\xb6\x94\x04\x88\xd1\x36\xd4\x48\x96\x70\xe0\x2c\xd9\x98\x65\x6c\x54\xf1\xda\x99\xf2\xb6\x6e\x35\x90\x92\x0b\x51\xe6\xa5\xbc\x6b\x25\x0a\x2c\x4d\xa0\x47\x16\x5b\x1f\x59\xcc\xd6\x15\xf1\xb4\x07\x38\x80\x4a\x40\xe2\x7f\xe1\x40\xab\x0a\x0e\xd6\xe8\xbd\x2a\xf3\xa9\xb4\x3b\x9d\xd2\x9c\x4a\x5f\x68\x5e\x72\xb6\xa5\x07\x4e\x4f\x66\x31\x86\xc4\xd1\x6d\xa2\x70\x4a\xf3\x37\xde\x03\x68\x93\xc4\xc8\xa0\x17\x18\xdc\x63\xbb\x76\xde\x73\x92\x61\x41\x98\x1a\xb1\x5b\x3d\x0a\xf3\x45\x11\x89\xe1\xe2\x70\x1c\x16\x3d\x54\xac\x9d\x22\x6c\xbf\x82\x45\x6f\x0b\x84\x93\x63\xf3\x12\xa8\xa6\x2f\x98\x64\xff\x9d\x79\xc7\x60\x1e\x58\xcc\x1f\x3d\x55\x3a\x2d\xd4\x78\x2d\x40\x46\x73\x0a\x90\x03\x31\x91\xf6\x42\xa2\xca\x62\x4a\x78\xf1\x3b\x27\x0e\x7d\x19\x3e\xf3\xfc\xab\x89\x61\x3b\x43\x01\x73\x06\x3a\x39\x62\x41\x1f\x4b\xc0\x3a\x8d\xb2\xbe\xa1\x2a\x01\xfb\x4c\x63\xef\xf8\x82\x7f\x9a\x1d\xe2\x82\xce\x28\x0b\x4a\x26\xd9\xe9\xa5\x38\x03\xf3\xae\x39\x83\x7c\xea\xef\xb4\x7b\x9b\x65\x70\x04\x23\xfe\x9f\xff\xfe\xdb\x11\x6d\xf3\x7e\xc8\xb1\x5d\x81\x7d\xd8\xc9\xf5\xb6\x25\xdc\xf9\x00\x45\xa4\x05\x9d\x22\xd0\x69\x65\x29\x73\xa2\xf8\xd5\x5e\x6e\x9a\x68\xb8\x9a\x1b\x77\x6f\x99\xdc\xc1\x37\x22\xf2\xe5\x55\x04\x02\x16\x57\x04\x04\x14\x5e\xdf\x20\xe8\xd6\xd5\x88\x30\xc1\x92\xba\xfd\xca\x85\x52\x61\x50\x01\x98\xdf\x36\xc1\x89\x73\x2c\x5f\x2e\x02\xa5\xb1\xb6\x91\x31\x1a\x87\x77\xe4\xaa\x58\x14\x33\x48\x93\xd4\xa8\x77\x25\x97\x44\x98\x03\xed\x51\x9f\x2c\xf1\x84\x50\x85\x10\x8a\xb8\xc2\xa5\x46\x52\x4c\xd7\x0a\x9b\xd7\xef\x37\x03\x29\x96\x6c\xea\x78\x46\xc4\x38\xce\x4b\x31\xd2\xab\xda\xbe\xd1\x1f\x9d\xe5\x6a\xb1\xba\x7d\x99\xe0\x7a\x6d\x97\x65\xe0\x95\xfa\xfd\x96\x66\x57\x0b\x86\x41\x24\x4b\x59\x38\x6c\x81\x86\x24\x15\x68\x48\x1b\x5a\x59\xb2\x04\xc0\x45\xc3\x14\x20\xc7\x15\x0a\x83\xbd\x89\x0c\x80\x35\x8c\x1c\x4d\xf2\xc2\x72\xe2\x4b\x02\xc4\x47\x23\xf6\xd1\xd4\xd4\x00\x65\xc6\x0c\x20\x82\xbc\x16\xf2\x39\xe3\x92\x94\x12\xad\x1a\x60\xfe\x6d\xa2\xa4\x1d\x46\xb3\x4c\x5a\x7c\xb4\xbd\x48\xfa\xe6\x20\x9f\xf5\x0d\xaf\x4f\xb9\x99\x02\xb7\x92\x7a\x22\x9a\x51\x4d\x3b\xe3\xc6\x93\xf6\x72\xa5\x66\x8b\xd0\x25\x80\x7b\x52\xc9\xe2\x00\xf9\xe9\x55\x08\x22\x21\x4f\x04\xac\xc6\x30\xc6\xb0\x98\x43\xd9\x7c\xd5\xc2\x4e\x56\x1d\xa0\x22\xcb\x11\xd8\x02\x8a\xab\x23\x28\xe7\x82\x35\xd1\x62\x39\xcb\x65\xeb\x84\xac\xa6\xf8\x8b\x35\xa4\xd0\x41\x58\xd4\x62\x41\x14\x22\x9f\x15\xb1\x65\x2f\xef\x5d\xca\x5c\x3d\xca\x1e\x35\x67\xfd\xb4\x8b\x48\x2f\x5e\x80\x78\xe0\x12\xa5\x5d\x4e\x60\xec\xee\x7d\x9b\x23\x37\xc7\x2c\xb6\x89\x9f\x56\x96\xd6\x32\x05\xcc\xce\xd8\x96\x7c\x48\xbc\x4d\x5f\x0c\xd0\xc0\x4d\x9b\x06\xb6\x1c\x2e\x32\xa7\x17\x69\xc9\x1c\xa2\x08\xb8\xd0\x02\x6a\xce\x14\x4d\x34\x71\xd8\x31\x68\xad\x39\x67\x1e\x8f\x0f\x02\xb8\xdb\x20\xdf\xa8\x94\x94\xcd\xc6\x76\x25\x5d\x0e\x63\xb7\x8b\xa1\x4c\x53\x97\xa6\x29\xf3\xe3\x77\xae\xa1\xe5\xb6\x63\x43\xd6\x00\xc7\xe5\xb2\x27\x41\xb0\x66\xdc\x4d\xc6\xe2\xa8\xb9\xa4\xcb\x31\x8d\xcd\x52\x50\x53\x5d\x19\x26\xba\x8e\x79\x19\xc4\xba\x3a\x5c\x41\x71\x85\x48\x9b\x11\x69\xf2\x9c\x20\x20\x5d\xb5\xa4\x7c\xca\xd6\x54\xcf\x73\xe6\x45\x34\x5b\xdb\xc9\x27\xb4\x57\xb2\x46\xb1\xeb\xce\x46\xdd\xe3\x24\x99\xe0\xe8\xd1\x2b\x1b\x5e\xe5\xe6\xc2\x61\xe3\x6b\x01\x15\x8a\x7f\x19\xe2\xd2\x03\x8d\x40\xba\x09\x9d\x62\x06\xb0\xc6\x0e\xbb\xe8\xdc\xac\x9a\x45\x02\x33\x08\x45\x66\xf4\x26\x84\x3f\x26\x59\xc2\x17\x69\xcb\x7d\x56\xcd\x94\xdb\x26\x20\xa5\x2d\x51\x6f\xa7\x57\x59\x85\xe9\xad\x7d\x99\xd5\xd2\x6e\x76\x00\x9f\xb4\x06\x97\xfc\x94\xf0\x09\x58\x0e\xad\x96\xed\x52\x49\x82\x8c\x86\xea\x79\x5e\x37\xc1\xa5\x7a\x22\xa9\xcc\x12\xbc\x58\xd6\x83\x49\xad\x78\xd9\x7d\x33\xa9\xf8\xab\x8d\x60\xdd\x83\x92\x1b\x3f\x7f\x09\xa0\xde\x0b\x27\x09\x98\x77\x0d\xff\xaa\x18\x93\x4c\x4e\xdb\x91\xf1\xc5\x2a\x3e\x62\x0a\xcf\xdc\xe6\x5a\xe1\x92\x3f\x33\x22\xe4\x9c\x66\xa5\xa2\x80\x5b\x47\x41\x5b\x8a\xb6\xff\x31\x31\xbf\x6b\xf0\x4e\x9e\x1d\x1a\x20\x0e\x4d\x1f\x32\xc3\x51\x61\xfc\x8b\x12\x2c\x25\x9d\x2e\x02\xfc\x0c\x1f\x50\x0a\x59\x4a\x65\x6d\x39\xa8\xc3\xd5\xc4\x68\xcc\xf8\x76\x93\x40\xbe\x7d\xf2\xdc\x43\xf9\xf8\xd1\x38\x04\x2a\xd3\xf7\x49\x1d\x2c\xc5\xdd\xd4\x16\x34\xa5\x15\x70\xd5\x64\xca\x6f\x96\xf0\xbd\x14\xe3\xa6\xdd\x8c\x50\x08\x93\x76\xd8\x56\x91\xf1\xb8\x16\x21\xe6\x8b\x2a\x65\x0c\xc2\xe6\x6b\xc5\xc9\x99\x3f\x35\x71\x7a\x4c\x0c\x80\x0e\x28\x3e\x3e\x40\x72\x2b\x2c\xa9\x2e\x74\x71\x46\x12\xb2\x93\xc0\xe2\x0d\x88\xa4\xea\xb5\x0f\xc8\x63\x29\x69\x14\x58\xfa\xab\x8d\x0b\x1b\xc4\x3b\xb7\x20\xd2\x34\x0f\xfd\x27\x33\x50\x1b\xf2\xdc\xb4\x8b\x60\xff\x82\x55\xee\xaa\xbb\x34\x41\xdb\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\xfb\x48\x6a\x6f\x1c\x19\x5c\x1b\xd7\x27\xd2\x25\x8a\x61\xe5\x01\xd8\x88\x03\xd5\xf9\x74\x37\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe2\xde\xd7\xf1\x7f\x4f\x34\xb1\xb3\xbc\x86\x1d\xad\x7e\xf3\x21\x5f\xef\xd4\xde\x11\x25\xdd\x95\x50\x43\x0b\xb4\x9b\xb3\x87\x5b\xb0\x1f\xc7\xd2\x08\xae\x5f\xbc\xdc\xb2\x35\x16\x80\x1d\x99\xcd\x88\xff\x0d\x09\x54\x66\x8e\xb1\xfd\xc2\x67\xbf\x97\x70\x9f\x70\x09\x2b\xcf\xac\xd1\xdb\x73\xbd\x2a\x69\x7f\xe9\xa2\xd7\xfa\x34\x5e\x1d\x55\x41\xdd\xbd\x3c\xb8\x9e\x3c\xe8\xb0\x24\xf7\xf0\xf2\x6f\x3b\x06\xfb\x79\xff\xec\x81\x70\x58\xbb\x12\x77\x27\x22\xbe\x23\x32\xd9\x0b\x49\xb1\xb6\x15\xaf\x25\x2f\x1e\x3a\x30\x9f\x02\x1a\x67\x7f\xb7\x68\x3f\x4e\xf2\xad\x75\x03\xbd\xdc\x05\xbb\x9a\x5e\x76\x42\x1f\x80\x6b\x89\x21\xfd\x37\xb7\x85\x32\xe0\xf0\x06\x21\x63\x35\xdf\xc3\x8a\x60\x3c\x3b\xbc\x4e\x61\x78\xb5\xe5\x7c\x89\xed\xb5\xb9\x5e\x9d\x37\xf7\x25\x49\x6d\xdd\xb1\xec\x42\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x3e\x26\xb6\xdb\x2d\xda\x80\x20\xe3\xb6\x6c\x97\x87\xac\xa9\xba\xd9\xf6\xd9\xea\x2e\x95\x6d\x9c\x09\x32\xa5\x9f\x37\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\xd4\x4b\x03\xf7\x0c\xd4\x57\x0b\xe2\xf6\xec\x4a\xdb\x9a\x4a\x23\x56\x24\x00\xda\xec\xbf\x47\xb2\x40\x5c\x94\x7e\xda\x14\xeb\x70\xf7\xb5\xdd\xcc\xbe\xce\x95\xca\xe4\xc9\xf1\xf1\x8c\xaa\x79\x3e\x39\x8a\x78\x6a\xc2\xcd\xb9\x98\x99\x3f\x8e\xa9\x94\x39\x91\xc7\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\xd0\x63\xea\x7e\xa7\xf2\x96\x13\x2c\xb7\x8b\xec\x71\x99\x5a\x2f\x9c\xb1\x1b\x74\xe3\x72\x24\xf5\x37\x52\xe1\x34\x0b\xa3\x47\x4d\x75\x34\xa9\x70\x51\x93\x01\xd2\xef\xf4\x34\xd1\x1c\x67\x19\x61\xed\x66\x07\x93\x4f\xb9\x05\xeb\x71\x19\x99\x76\x84\xe4\x73\x96\x60\x56\x46\x19\x80\x02\x43\x82\x44\x84\x29\x9b\x01\x5f\xd4\x4b\x06\x6a\x34\x48\x37\x86\xff\xaf\x97\x71\x07\x73\xa4\xb2\xa8\x1c\xe6\x86\x63\xab\x78\xba\xda\x8e\x38\x58\xba\x6a\xe5\xd4\x62\xed\x88\x5b\xb5\x65\xb9\x78\x77\xf5\xfa\xd9\xeb\x57\x6e\x11\x9c\x8d\xc9\x67\xcd\xe4\xe4\xa6\xb8\x54\x0f\x92\x48\x34\xf8\xe9\x0e\xc9\x05\x53\xf8\xf3\x09\xba\xa4\x0c\x04\xd8\xef\x79\x2e\x24\x3a\xc3\x8b\x43\x3e\x3d\x4c\x39\x53\x73\x74\x09\xff\x6b\x7f\x7a\x26\xe4\x11\xfd\x4c\xb0\xb0\xfc\xc1\x56\x5e\xf3\x45\xbc\x35\x09\x89\x9c\x49\x44\x9e\xf4\x09\xfd\xc3\x7f\xa2\xd4\xb4\x7c\x82\xbe\x3d\xfe\xc3\x7f\xa2\xdf\xc1\xff\xff\xff\xd1\xef\x5a\x34\xfd\xf5\x90\xad\xa0\x3e\xef\x6d\xd9\x9d\x7b\x50\x59\xa9\x0d\x4a\x96\x9f\x0a\x5e\xec\x54\x63\xcb\x8f\x34\x7a\xe4\xd3\xe9\x58\x13\x86\xc9\x57\x1b\x63\x51\x43\x45\xde\x10\x26\x94\xda\x02\xcb\xa6\x60\x5b\x51\x2a\xc5\x76\x6a\x80\x0d\x1c\xbb\x96\x79\x51\x60\x16\x82\x88\x4a\x45\x7b\xa9\x84\xaf\x48\xac\xb9\xea\x3a\xa7\xc3\x59\xf7\x5c\x8e\xb3\xb3\xe0\x84\x40\x20\x61\xd1\x70\x1f\xf8\x17\x46\xb1\x9a\x40\x1f\xbb\x90\x8d\xc7\xa1\x16\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\xd6\x3a\x5f\x1d\x2a\x79\xc7\xc5\x56\xfa\xd6\x23\xa9\xc5\x6c\x77\x2c\x0b\xe4\x4a\xd5\x86\xe5\xeb\x21\x11\x9a\x0b\x0f\xd7\x6b\xec\x22\xb6\x78\xe0\x6a\x2b\x26\x15\x26\xb8\xac\xdb\xa1\xd7\x53\x3f\xf3\x9f\xac\x1a\x26\x44\x9a\xb9\xb7\x8b\xb2\x68\x30\x5a\x2d\x22\x69\x96\xd8\x30\xe2\x06\x4c\xbf\x55\x1b\x7a\xe7\x61\x1c\xa0\x71\x08\x7b\x84\x94\x0f\xe6\x24\x5b\x9b\x27\xdf\xbc\x9f\xb9\x88\xc8\x29\xdf\x2e\xec\x35\xa1\xac\x16\x2f\xdf\xbd\xe2\x8e\x5f\xbd\x0b\x5b\x5b\xc9\xc1\xde\xf2\xb8\x50\x16\x8c\x5b\xc0\x16\x5b\x08\xf0\x36\xcb\xb3\x01\xdc\xb6\x5d\x40\x3a\xd6\x4a\x00\x6c\xc1\xb5\x8d\xe1\xb8\x60\x78\xae\x82\x44\xa5\x70\x84\xc0\x9a\x17\x2e\x89\x5d\x83\xa0\xa2\xad\xc7\x11\x14\x43\x29\x22\x95\x2a\x45\xc7\xb1\xa9\x08\x22\x36\x84\xe4\x34\x75\x89\x0e\x90\xc0\x10\x94\xa9\xe6\xba\x3d\x49\xc4\xe1\x14\x47\x94\xcd\x0e\x02\x34\x46\x40\x46\x08\xaf\x83\x26\x22\xbd\xc7\xf2\x71\xb7\x81\x86\x5b\xd7\x69\xa4\x71\x51\x2b\xcc\xe2\xa7\x18\xc7\x06\xad\x41\xd1\x29\x2c\x1f\xdb\x00\x84\x6a\xe8\x65\x4b\x46\xe7\x97\xc2\x61\x9e\x2d\x1b\x9f\xcb\xb4\x26\xa1\x3e\x05\xa5\x09\x5c\xe5\x60\x8b\x65\xe8\x12\xdb\xb0\x07\x1b\xa9\x82\x78\x2e\x19\xbf\x9c\x73\xa1\xc6\x1b\xc2\x9f\x56\xb3\xc5\x19\x39\x4c\x00\xb7\x84\x3f\x11\xf1\x44\xc9\x73\x19\x45\x74\x1d\x5a\x34\x46\xb3\x20\xaa\x0e\x60\x26\xd3\x8c\x43\x0a\xcd\x14\xa5\x98\x2d\x0c\xa3\xd4\xcc\x05\xcb\x47\xe9\xeb\x95\x22\x99\xe2\x24\x39\x40\x82\xe4\xd2\xd4\xf1\x95\x24\x99\x1e\xba\x8a\x0f\x31\x4a\xf8\x8c\x46\x38\x41\x93\x84\x47\x8f\x72\xc4\xb4\xa0\xc0\x66\x86\x49\x65\x82\x47\x44\xca\x40\xb2\x2a\x92\xb6\x6d\x2a\x1d\x14\x2b\x55\x44\xa4\x94\x51\xa9\x68\xe4\x44\xa6\x02\x7b\xc1\x94\xcc\x8e\x30\x98\x84\x21\x31\x11\x86\xab\x25\x3d\x62\x30\x28\x73\x66\x6b\x03\xc1\x75\x6d\xa1\xe5\x5c\x90\x78\xdb\x01\xda\x01\x52\x9e\xa3\x90\xb1\x2a\x1f\xc8\x15\x47\xea\xd4\x7e\x06\xc7\x78\x19\x09\xdc\x96\x4f\x94\x27\x48\x7f\xd2\x4a\xe8\x3d\x10\x53\xee\x43\xe0\x4b\x92\x8b\x8f\x0c\xdf\x33\xe0\x2e\x18\x72\x0b\x5c\xd7\x2a\x9a\xd6\xab\x08\x22\x0f\x94\xa3\xaa\x7a\xcd\x29\x8b\x92\x3c\xf6\x05\x09\xb5\x08\xf0\xa4\x89\xc4\x2d\x8f\x5e\x7b\x2d\x28\x1c\x20\x2c\xd1\x33\x49\x12\xfd\x5f\x13\x01\x7f\xe8\xeb\x03\x68\x96\x6c\x6a\x38\x40\x27\x8e\x4b\xb7\x51\xd4\xde\x81\x30\xde\x60\x35\x37\xa9\xed\x29\x57\xa6\x16\xa4\x01\x61\x74\xf6\x2d\x83\xda\x37\x49\xf8\x04\x4e\x3a\xe0\x33\xba\xd4\xd8\x20\xad\x2e\x8f\x22\x42\x62\x12\xa3\xaf\x83\x83\xeb\x61\x17\xbe\x69\x46\x0b\x2c\xad\xc8\x1e\x60\x33\x56\x0d\x6b\xad\x08\x8d\xe5\x72\x66\x47\xe8\xa6\x82\x3f\x12\x96\x29\xc7\x55\x34\xaa\x83\xda\x16\xbe\x0d\x9e\x63\x65\x12\x2f\xb7\x43\x6b\xe2\x39\x96\xfa\xdc\x01\x9e\x63\x65\x9e\x2d\xb1\xfb\x7c\xf6\xa2\x39\xc7\x7a\x52\x17\xbc\x7b\x22\x98\xc1\xc1\x32\x77\x67\x89\x04\xdd\x81\x5c\x34\x11\xe2\x7e\x61\x55\x56\x8a\xfe\xbd\x2d\x56\x65\x65\x30\xfb\x8c\x55\x59\x19\xea\xfe\x62\x55\x36\x0c\xb4\x03\x56\xa5\x71\xee\x8f\x35\x51\x77\x63\x0a\x90\xd8\x32\xc9\xa7\x77\x90\xea\xbd\x74\x8c\xa7\x26\x70\xc0\x5c\x63\xee\x8e\xb6\xd0\xcd\x30\x5a\x9b\x03\xd9\x16\x0e\x55\x71\x42\xac\x4b\x7b\xde\xfb\x46\xa5\xd1\xd0\xd6\x33\xbb\x1f\x84\xd6\x6e\xb0\x43\x46\x38\xb3\x39\xe5\x6d\x15\x55\xf6\x27\x7b\x76\x33\x18\x50\x80\xda\x2b\xb1\xfc\x4e\x40\x59\x97\x95\xe2\x04\x73\xfe\x6c\x0b\x04\x01\x19\x1a\xa2\x6c\x25\x41\xe8\x74\x6c\x95\xb6\xb6\x95\xa3\x4c\x91\x59\x55\xa7\x2d\x0e\x0d\x65\xea\x4f\x7f\x5c\xc9\x89\x0c\x92\xa0\x53\x0f\x83\x12\x01\xde\xd9\x61\x9f\x91\x18\x45\x73\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x14\x53\xa7\x48\xe5\xd2\xb8\x96\xa8\x1c\xb1\x12\xf4\xe6\x11\xfa\x08\x75\x4f\x71\x9a\x69\xfd\xcb\xcf\x8f\x6a\x4a\x1a\xe5\xdf\x7e\xfb\x27\x82\xbe\x45\x29\xc1\xac\xa4\xc3\x82\xda\xa4\xaf\x3e\x80\xaa\x53\x73\x32\x62\x8d\x5b\x81\x86\x9f\x4d\x29\x25\x17\xef\x77\xce\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd9\x29\x7c\xd9\x18\x00\xeb\x6e\xec\x7a\x1b\x0f\xe0\x1e\x39\x94\xa4\x04\x61\xd4\xe0\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\x1e\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x0e\x80\x12\xf2\x68\x6e\x1c\xab\x5a\x67\xc1\xb6\x2e\xc3\x13\x95\xb9\x56\x68\xa1\x2d\x57\x06\x42\x2a\x6c\xa0\x97\xe6\x14\xfa\xd1\xea\x37\x81\xaf\xc2\x2c\x39\xd4\x4d\x8b\x0a\xd1\x51\x2b\x3c\xbf\x23\x3a\x6a\x89\xaa\x7a\x74\x54\x8f\x8e\x5a\x5f\x97\x7d\x44\x47\xad\xec\x79\x37\x74\xd4\xa6\x2d\xdf\x00\x1d\xb5\xd4\xcc\x17\x83\x8e\x5a\x59\xd1\x2f\x06\x1d\xb5\x32\xaf\x1e\x1d\xf5\xcb\x43\x47\xdd\x12\xff\xb3\x99\x17\x1b\x7c\x25\x45\xd9\x62\x6d\x22\xfb\x4a\xa2\xf3\x6b\x4d\x60\xd1\x63\x39\xa8\xcd\x5f\x57\xdb\x63\x8e\x36\x33\xa1\xf5\x30\x47\x1b\x55\xf5\x76\x56\xb7\x2d\xc0\x13\x28\x06\xaf\x8c\x39\x5a\x9a\x40\x1f\x5f\xb9\x7e\x7c\x65\x23\xf1\xd9\xbe\xf5\xf0\x5c\xd0\x65\xf5\x42\xee\x88\x3a\x5a\xda\x9f\x4e\x91\x98\x20\xba\xef\x80\x12\x5f\x56\x9a\xbf\x2f\x1d\xf2\x95\xb2\x7c\xb8\x8a\xd2\xe2\x1f\x6b\x09\xcf\xa1\xc5\x19\x25\x3c\xf4\xff\xf7\x94\xbb\x41\x64\x70\x65\x79\xbd\x5f\xc5\xd0\x62\x07\x52\xed\x4c\xa1\x4e\x2b\xdd\x4d\xa2\xac\x4b\x9e\x5c\xd3\xc5\xec\x06\x71\x97\x91\xa8\xc5\xc6\x4c\x53\xba\xab\x66\x57\x5d\x64\x1e\x0b\x0b\x14\xf2\x5a\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x5a\x63\x9b\x6a\x23\xdc\xc6\x55\x9a\xe5\x9d\x03\x62\x82\x55\x9d\x6d\xf6\x59\x4a\x52\x2e\x56\x05\x56\x35\x7e\x69\x2b\xba\x6c\xf2\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xdd\x46\xba\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xce\xdb\xbd\xed\x36\x5b\xcc\xcc\x35\x1d\x42\x0e\x33\x78\xb9\xc1\xcd\xbe\x54\x72\x77\x03\x7d\x37\xc6\x74\xf8\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x4e\x15\x5f\xd9\x7a\xc7\x6b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\xeb\x07\x78\xb4\xa0\xa6\xd6\x97\x07\x22\x73\x24\x11\x87\xa1\x66\x50\x1a\x4c\x7d\xbd\x4a\x54\xe2\x34\xca\x2d\x88\x24\x17\xad\x51\xa6\x5d\x0c\xda\x91\xca\x71\x02\x9a\x44\x58\xa4\xb1\xba\xa9\x93\x45\x43\xda\x63\x37\x8f\x09\x65\xea\xcf\xff\xb1\xd6\x6e\x6a\xd5\xca\xae\x1b\x14\x96\xc2\x51\x44\xa4\xb1\xb1\xdb\x28\x64\x3c\xe1\x4f\x50\x53\x6a\x9b\x5d\xd5\x47\x59\xcf\x5b\x33\x78\x0f\x45\x1c\x17\xa4\x6e\xc4\x85\xb9\xe0\xf9\x6c\xee\x6c\x48\xfa\xcc\xe8\xa9\x35\xed\xe5\x8f\x35\x1b\xf9\xda\x7b\xf9\x5d\x4e\x93\xcd\x2c\x74\x77\xa5\x6a\x5b\x9f\xce\xef\x91\x9c\xfb\xd3\x3a\x81\x66\x1b\x37\xb6\x3e\xe8\xee\x7d\xda\x6f\xbd\xbf\x06\xba\x39\x70\xf0\x9b\x53\x9e\x24\xe0\x69\x90\x24\x7d\x0a\x8b\xe4\x87\xdd\xc3\x84\xef\xe9\x7a\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x49\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x4d\x36\xb6\x9f\xea\x85\x4e\xde\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x5b\x92\x57\x0e\x1c\x5c\x31\x8f\x7d\x0d\x1e\xac\x30\x3b\x1f\xcb\x57\x5c\x33\x2e\x70\xc8\x28\x3e\x03\xbd\xc4\x23\x36\x28\xe5\x53\xb8\x82\xd0\x93\x45\x11\x90\x6d\x74\x88\x90\x99\x41\x39\x09\x6b\x58\x01\x37\x9a\xfe\x0b\x34\x1d\x03\x5e\x6b\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x10\x47\x8b\x28\xa1\x51\xa0\x33\xcf\x04\xce\xe6\x4d\x1c\xcf\xed\x7c\x8f\xba\xf3\x56\xa8\x3b\x6d\x75\x97\xd6\x89\xdb\x76\x74\xc5\x70\x4a\x7a\x34\xa0\x26\x34\xa0\x03\x8f\x77\xc1\x8a\x0a\x52\x6f\x08\xa3\x50\x3f\x77\x3d\x24\xd0\x1b\x40\x02\x6d\x72\xf8\x0a\xbc\x9f\xd2\xb1\xeb\x61\x8a\x3e\x74\x82\x29\xf2\x97\xe0\x5e\x21\xcf\xb4\x9f\xc7\x37\x46\x34\xa9\x0f\xec\x2d\x61\x89\x1a\xc4\x85\x75\xe4\xa6\x65\xb8\x44\xcb\xe8\xa2\xd3\xba\xbc\x2d\x4a\xd0\x7a\x2b\xb3\x16\x00\x50\xe3\xdd\xb5\x27\x70\x40\xed\xdb\xb0\x27\xe7\x66\x97\x59\x2d\xeb\x95\xc8\x0c\x33\x5b\xd6\x51\xb0\xd6\x4b\x72\xf1\xf4\xf0\xbe\x12\x5d\x8a\x5a\x62\x9b\x25\xbb\x0c\x9c\x0f\x9a\x08\x34\xe7\x49\xec\x40\x28\xfc\x6a\xf9\x0e\x7c\x26\x80\x5f\x20\xb7\x19\x50\xd3\x1b\xb4\xad\xa2\x20\xd8\xb2\x94\x16\xbf\x89\x30\xdc\x1d\x30\x9a\x5d\x58\x11\x3c\x27\xd9\xc4\x7e\xb0\x52\x16\x91\x65\xf3\xf7\x92\x31\x96\x56\x08\xac\xe6\xcd\xc3\x5c\x69\xf7\x5d\x31\xb8\x65\xa2\x47\x60\x1c\x14\x4d\x15\x2d\x0d\x9d\xc1\xd3\x27\xea\x0c\x11\x38\xec\x71\xa9\x97\xce\xcd\xae\x93\xa7\xae\x4a\x2c\x1b\x04\x83\xd5\x2a\xb7\x6d\x0f\x0e\x94\xe2\xcf\xe3\x0c\x0b\x9c\x24\x24\xa1\x32\x7d\xb1\x60\xe0\xd3\xb2\xbb\x56\x9f\x55\xc1\x8d\x89\x88\xe5\xe9\xc4\x90\xa2\x1b\x88\xad\x17\xa9\x38\x12\x39\x0b\xa1\xcd\x9e\x6b\x45\xf5\x73\xb8\x17\xc0\xaa\x14\xcd\xa1\x38\xe9\x14\x53\xc1\x88\x6c\x2d\x05\x49\xa2\x5c\x50\xb5\x18\xdb\xca\x9a\xdd\x0f\xdc\x9d\xfd\xf2\xd4\x7e\xb8\xdc\xc3\xed\xb2\xfa\x5d\x7f\xbe\x92\x67\x46\x04\x94\x09\x72\x05\x6f\x82\xea\xa1\x16\xb5\x81\xf8\x5a\x43\x10\xfe\x5c\xbb\xb6\xdb\x02\x87\xf1\xf3\x38\xc8\xa8\x1a\x47\x55\xe2\x58\x75\x58\x9b\x70\xa7\x96\x4d\xf2\x85\x91\x97\x5a\xbc\xc8\x2f\x50\x65\xc4\xa6\x4d\x98\xa6\xf5\x80\x03\x57\x30\xd8\x2b\x8b\x8d\x09\x52\xde\xad\x52\xd5\x32\x4e\x8b\xf5\xd3\x14\x7c\xb4\x64\xb0\x83\xe0\xab\x0e\x23\x0e\x3a\xd9\xd1\xb0\xf5\x41\x17\x22\xcf\x14\x9d\xd4\xa1\x6d\xd4\xee\xaa\x8e\x0e\x12\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x34\x62\x03\x89\x9e\x09\x62\xc4\x42\x48\x34\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x03\xdd\x30\x54\x2d\x55\x1c\x82\x3f\x31\x7a\x16\x38\xcb\x88\x18\x31\x9b\xc5\x01\x0e\x17\xce\x13\xd3\x7e\x5b\x88\xab\x5d\x03\x32\x8e\x70\x34\x7f\xa5\x3d\xc2\x90\x8c\x13\xcd\x49\xec\xf2\x85\xcb\xdb\xe3\xe6\x6d\x0c\xd6\x6b\x6c\xd6\xf9\xd4\x95\xcf\x3a\xb0\x9d\x24\x91\xe6\x28\xbe\x9a\x72\x46\x84\x1e\xb5\xa6\xe1\x27\xc2\x10\x9d\xba\x71\xd8\xd8\x1d\xf4\x0c\x9e\x29\x4d\xfa\x4f\x98\x26\x26\x01\xdf\x75\xed\x84\x40\x63\x7e\x1f\x31\xe3\xee\x66\x51\x29\x43\x95\x32\x2a\xe7\x9a\x53\xe7\xe0\x93\x04\x35\xa3\x2d\x71\x86\x3d\xad\x73\x9a\x87\xfa\xf5\xe5\x1c\xf4\x89\x0a\xce\x52\x48\x92\xb1\xb8\x4c\x6e\xf9\x24\x51\xfe\x78\x34\xa6\x38\xae\x94\x88\xe3\x58\x96\x8d\x9f\x46\xad\xa4\xbf\x96\xcc\x2e\x87\xa5\xac\xc0\x28\x80\x15\x82\x20\x4e\x57\x59\x6c\x99\xfc\xdb\xa7\x36\xd4\x53\x1b\x9a\xd7\x66\x1f\xd3\x1b\xfc\x21\x5e\x37\xc5\xa1\x6d\xfb\x77\x21\xd9\xee\x30\xd5\xe1\x8d\x73\x02\x5e\x26\x1d\xe0\x6d\xf3\x37\x5e\x22\x75\xa3\x4f\x70\x78\xc3\x04\x87\xce\x96\xda\x72\x6c\x76\xfb\xb1\x5d\x2b\x39\x60\x05\x98\x53\x53\x2f\x97\x44\x09\x1a\xc9\x5d\xf0\x07\x99\xe1\x8e\x51\x6d\xa0\x05\x66\x2b\xa4\x26\xfd\x82\x77\x42\x42\x9c\x98\xaf\xf3\x37\x11\x04\x3f\xc6\xfc\xb9\x66\xab\x93\x21\x9a\xc6\x25\xd7\x62\x8f\x20\x11\x95\xa4\x14\xc9\x42\x25\x62\x44\x5a\x63\x27\x1e\xb1\x39\x25\x02\x8b\x68\x0e\xd9\x8d\xc5\xc6\x98\x2c\x59\x03\x68\x64\x62\x19\x42\x6f\xd3\x1a\x9b\xde\x61\xdd\xab\x16\x26\x8f\x4f\x67\xf7\x5c\x8f\x24\x35\x9f\x78\x61\xc6\x4a\x19\xa1\x49\xae\xd3\xf6\x6f\x1b\x88\xef\x17\xfb\x45\x83\xf1\x7d\x30\x51\xf0\x45\xc7\x80\xfc\x82\x1a\xfa\xa0\xfc\x17\x0a\xca\x6f\x58\xe2\xf5\x02\xf3\x37\x32\xf9\xbd\x7e\xcc\xb0\xeb\xf9\x35\xe2\x86\x57\x05\x6d\xe5\x93\xf1\x8b\x1f\xbd\xc6\x39\x77\x3d\x81\x3f\x79\xa2\x30\x12\xb1\xd0\x74\x36\x21\x71\x0c\x9c\x56\x71\x5b\x29\xba\xa0\x1d\x67\x1e\xd0\x77\x2f\x96\x9a\xd8\x71\xc2\xd9\x4c\xd2\xd8\x80\xad\x64\x18\x2a\xb6\x86\xc6\x0b\x00\x17\x80\xfd\x4d\x12\x22\x9c\x57\x42\xa0\xaf\x25\x65\x16\x4d\xd1\xff\x16\x73\x22\xd9\x57\xca\x18\x0b\x30\x5b\xa0\x47\xc6\x9f\x13\x12\xcf\x60\x87\xaa\x83\x39\x44\x94\x1c\x20\xaa\xfc\x67\x02\xd0\x08\x78\xae\x46\x7a\xec\x10\x6b\x66\x34\x00\x62\xbf\x0d\x6a\xa2\xfb\x66\xbe\x39\x42\xe8\x9c\xa1\x29\x8e\xd4\x01\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\xf4\x31\xe3\x0d\x9d\x37\x9f\x0d\xc7\x1d\x34\xb9\x0e\x12\x8a\xb7\x8a\xad\x7b\xc2\xdb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xab\xad\xb3\x32\x95\x75\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x9d\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xa6\x4d\xcb\xf4\x8d\x47\x4e\x39\x33\x0e\xc2\xad\xe4\x4e\x3a\x63\x38\x59\xd3\xc6\x51\x5b\xb9\xba\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xca\x7c\x43\x79\x0f\xa3\x98\x64\x84\xc5\x84\x45\x0b\x20\x11\x06\xc8\x39\x82\xe1\x04\x61\xf8\x0e\x27\x47\xe8\xcc\xe4\xd7\x78\x09\xcf\x5e\xeb\x70\xa1\xa7\x98\xd1\xa9\xd6\x13\xc0\x08\x6b\x47\x39\x62\x66\x98\xce\x07\x12\x14\xed\xf7\x2b\xd6\xb4\x33\xfa\x06\xb9\xda\x12\x95\x98\x95\xbf\x47\xcb\x2f\x1c\xe8\x6d\xd9\xee\xe8\xe6\x5c\x0d\x02\x99\x4f\x0e\xe1\xdf\xa5\x84\x33\x07\xd4\x53\xa0\xc8\x90\x84\x80\x39\xd0\x7a\xbc\xe0\x62\x6c\x03\x96\xdb\x85\xdf\x6e\x45\x1e\x47\xd0\x47\x49\xa9\x49\x29\xa3\x69\x9e\x06\xce\x3b\x53\xb1\x20\xb2\xf6\x4b\x93\x89\x91\x69\x3d\x20\x72\xe0\xe5\x48\x5f\xae\x6c\x81\x66\xf4\x89\xb0\x11\xcb\x38\x65\xea\x08\x5d\x71\x45\x82\x12\x11\x06\x3a\x8a\x67\x8a\xa6\x06\xed\x54\x10\x7d\x0e\x0c\x28\x36\x00\x4d\xce\xb1\x3a\x40\x71\x0e\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xec\x0c\xc4\x47\x8b\x11\x33\x37\xdd\x14\xd3\x24\x17\xc4\xca\xac\xd8\xe4\xc5\x14\x43\x2e\x46\x66\x91\xd0\x82\x49\xa4\x74\x36\x57\x7a\x8b\xb4\x8c\x67\xfd\x8d\x73\xcd\x8d\xf8\x88\x4d\x08\xc2\x28\xe3\x92\x2a\xfa\xe4\xfd\x97\x74\x8a\xb0\x94\x60\x41\x39\x42\x67\x25\xfb\x3f\x95\xa0\x7a\xb7\xc5\xd5\x52\x36\xb6\xb6\xe7\xf6\x7c\x9c\xad\x37\xb2\xd4\x8b\x5d\x65\x3c\x91\x3c\xc9\x55\xe8\x82\x6d\xde\xdb\xc2\x34\xee\x80\xfb\xc1\x40\xcc\xa7\x23\xe6\xe8\x5a\x1e\xa1\x81\x44\x92\xeb\x5d\x92\x66\x2b\x23\x41\x15\x11\xd4\xa0\x38\x11\x65\x36\xc1\x9f\x53\x7f\x06\x52\x2c\x1e\xb5\x08\x15\x5a\xe0\x0d\xa6\x68\xc9\xda\x31\x31\x12\x12\xc0\x5a\x85\xdb\x01\xa6\x7f\xc4\x38\x3b\x64\x64\x86\x57\xed\xc8\x88\x95\xb6\x04\x7d\x4d\xa7\x85\x42\xda\xe6\x73\x0c\xd6\x6e\x0c\x91\x4f\x6d\xbb\x64\x3a\x6e\xdb\xa4\x69\xc2\xf1\x0a\xb7\xf1\xb4\x38\xf4\xe8\xef\x7c\x62\xc6\xa8\xf5\x7e\xae\x40\x0a\xd4\xea\xd5\x94\x0b\x32\xc7\x2c\x3e\x70\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\xac\x75\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x61\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x1b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x0d\x04\xbf\x24\x5f\x2b\xb9\x2a\x70\xfb\x2d\xda\x6a\x9a\x28\xbc\xaa\xcc\xc8\x1a\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x34\x62\xe7\xea\x2b\xa9\x45\x74\xce\x66\xfa\xa2\x89\x9f\xa8\x2c\x8a\x9c\x44\x9c\xc9\x3c\x25\xc2\x76\xa1\x6f\x64\x4d\x91\xb6\x40\x00\x76\x32\x94\x1e\x9b\xde\xfb\x27\x9c\xd0\xd8\x15\xe2\xd1\x3f\x9a\x33\xa7\x47\x29\x9d\x47\xb1\x21\x24\xcc\x6e\x6e\xac\xd7\xea\xcd\xc4\xfa\x1f\x43\xc9\x1d\xa5\x85\x90\x8f\xad\xad\xfe\xb8\x2a\xe2\xdb\x55\x5f\x22\xde\x4f\x6a\x93\x42\xcb\x05\x23\xbb\x0a\x67\xab\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x16\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbe\xb5\x67\x5b\x96\x89\x90\x11\x4e\xea\x3b\xbc\xc4\xde\x6c\xde\x5f\xae\x04\xd8\xe3\x66\xda\x5e\x9a\xf4\x1b\xf1\x24\x59\xa7\x84\x49\x65\xe6\xa7\xc5\xe7\xcb\x47\x54\xf4\xa3\x37\xc0\xed\x05\x9c\x1a\x73\x79\xe3\xc4\x9a\x52\xa4\xb2\xbb\x14\xbe\x64\xd4\xb0\x85\x65\xad\x23\xc6\xa7\x50\xe4\x26\x69\x8b\xea\xca\x04\x4f\xe9\x3a\x28\xcb\x26\xd0\xe9\xd6\xd9\xc5\x57\x58\x19\x9c\xf5\x1c\x44\x53\x43\x5e\xb6\x47\xc8\xd7\xc3\x56\xdc\x5c\x72\x86\x52\x9c\x6d\xb4\xe0\xab\xbc\x42\x03\x94\x1a\x97\x9c\x5d\x3d\xc0\x5b\x24\x50\x2f\x06\x16\xf9\x19\x2f\x8a\xd4\xe8\x36\xfc\x5c\xb6\x16\x39\x3c\xe8\xd7\xcf\xd9\x94\xaf\x71\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x5d\xce\xe3\x69\x13\x51\xaf\x7d\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x9d\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf9\x52\x5d\x96\xe8\x70\xe7\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\x69\x6e\xf5\x15\xd6\xcc\x1e\x92\x4e\x8b\xb5\x25\x76\xc3\x7a\x38\xc0\xae\x47\x8f\xfa\xdb\x7c\x42\x57\x16\x39\xe8\xbe\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x9f\x37\x18\x38\x5d\x82\x98\x0f\xa8\x32\xa1\xf2\x4e\x7a\xca\x05\x0d\x0a\x83\x3a\x19\x09\x51\x28\x50\x12\x3a\x79\x02\x85\x1e\x4c\x8b\x73\xfe\x6c\xa2\xd3\x05\xd5\x3c\xcb\x08\xab\x0a\xcc\x3d\x9a\x17\x50\x6b\x2d\x31\xc6\x26\xff\x01\x37\x31\x83\xd8\xd6\x3e\x2e\x46\xd5\xb2\xa5\xbb\x28\xf1\xd4\x3d\xff\xce\xf5\x7a\xaf\xbf\xa8\xef\x4d\xe3\x08\xef\xcb\xad\xaf\x3d\x3a\x2f\xe5\xaf\x1f\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\x67\x3f\x1c\x3f\x9c\x23\xa2\x22\x94\xd0\x47\x32\x62\x91\x7c\x3a\xd0\xe2\xf1\x3f\x72\xa2\xf4\xcf\x2d\x1e\x01\x9a\x12\x26\x81\x13\x50\x55\xc3\x1e\x6a\x5e\x48\xb7\x30\xfa\xbf\x67\xe5\xef\x97\x90\x7c\x2d\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x03\xc5\x18\x5b\xe4\xb0\xa9\x1a\xe6\x06\xe9\x42\xec\xef\x39\x5b\x53\xe8\x3a\x2d\x3e\x0a\x46\xd1\x22\xd3\xa5\x19\x06\xac\xeb\xf5\xf2\x90\xcc\x37\x8d\xad\xaf\x62\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x34\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\x9a\xb8\x84\xc0\x2c\x9a\x6f\x6b\x42\xa6\xd3\x31\x49\xd6\x91\x44\xcf\xa7\xc3\x44\x6a\xfa\x8e\x1e\x5b\x4e\xe7\x26\x35\x1b\x8b\xc9\xd8\x4a\xb4\xa6\xee\x13\x2a\x4c\xd0\x38\x31\x15\xe5\x08\x02\x1f\x65\x35\x7b\xcc\x00\x44\xe8\x5d\xb4\x92\xba\x71\x51\x9a\xb4\x0d\x1f\x92\x0d\xbd\x20\xac\x46\x4c\xe4\x0c\x8a\x4d\xf8\x88\x05\x8c\x0a\xbc\xf0\xc8\xf9\x0f\xac\x37\x67\xa6\xd9\x84\x81\xe3\x36\x2f\x6b\xfd\x8c\xe7\x12\x6c\x35\x29\x51\xfa\x82\xfa\x1a\xea\xc0\x9a\x90\xa1\x03\x94\x09\x9a\x82\xb9\x55\x7e\xd3\xb0\x75\xa7\x58\xe1\x84\xcf\x06\x42\xd1\x29\x8e\xd4\x3d\xde\x4a\x03\xc7\xb6\x99\x4d\xc3\x4f\xdd\x30\xd0\xf9\x99\x5e\xfc\x19\x61\x44\xc0\x44\xb5\x4e\xde\x7c\x84\xe1\xc9\x46\x9c\x1b\xac\x6c\xd6\x30\x2a\xbd\xc5\x02\xe7\x8a\xa7\x5a\xbf\xc5\x49\xb2\x38\x30\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x97\xbb\xc9\x2e\xee\x29\x8e\xe6\xe4\x0e\xaa\x22\x37\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\x27\xe8\x7f\x8a\x39\x9e\x0e\x4e\xbf\x1f\x8e\xcf\xce\xef\x06\xdf\x5d\x0c\xcf\x82\xf9\xd8\x27\x97\xe7\x77\x77\xf5\x5f\xbf\x3f\xbf\xaf\xff\x78\x73\x7d\xf3\x70\x31\xb8\x6f\x6a\xe5\xe2\xfa\xfa\x87\x87\x9b\xf1\xc7\xc1\xf9\xc5\xc3\xed\xb0\xe1\xd3\x87\xfb\xf6\x87\x77\x3f\x9c\xdf\xdc\x0c\xcf\xdc\xaa\xfc\x2d\x38\x5d\x60\x3d\x86\xd4\x8b\xe6\x69\x54\x0f\xe0\x21\x2a\xbf\x78\x82\x1e\xaa\xa5\x0f\x6c\x2c\xb2\xc1\xb1\x78\xc6\x52\xf3\x30\x08\x85\x1f\x31\xe4\x3e\xd7\x8b\xd2\xf6\xa9\x09\xd7\x89\xe6\x04\x25\x9c\x3f\xe6\x99\x65\x6d\x26\x3e\x8c\x71\x63\xf8\x21\x32\x68\xed\xfb\xf3\xfb\x93\x7a\x09\x06\xdf\x58\x80\x98\xe5\xce\x00\x8c\x0b\x3b\x76\x0a\xb6\x14\x07\xcd\x5f\x58\x6f\x83\x1e\xfc\xce\x2c\xeb\xc7\xb4\x86\x99\xaa\x74\x13\xc7\xb6\xe8\xaf\x9b\x58\xd0\x70\x79\x5f\x97\xad\xa6\x5f\x0e\x53\x7b\x0a\x4d\x48\x84\x73\x13\xd4\xa4\xef\x29\x21\xb8\x08\x07\x5c\xd0\xc3\xee\x1a\xb5\x74\xd4\xd8\x60\x65\xcf\xf4\xc4\xe5\x23\xcd\x32\x12\x7f\xa8\xcb\x2f\xe5\xea\xb0\xb6\x26\x39\x9f\xa2\xe0\x4c\x6a\xbd\x1e\x74\x7e\x57\x38\x65\xbe\xf0\x9e\x34\x08\xdc\x28\x42\x59\x00\xc8\x59\xdf\x09\xbe\xb0\x05\x05\xd7\x18\x56\xe8\x99\x40\x4a\x75\x6e\x2b\x47\x19\xdd\x5b\x9f\x6d\xe8\xce\xd8\xb4\x5d\x1d\xb8\x52\xaa\x75\x2b\x33\xde\x85\xc0\xad\xbf\x97\xa4\x89\x11\x6f\x91\x17\x7b\x66\x1a\x05\xee\xec\x62\xde\x60\xc4\x2d\xc1\x0d\xee\x36\x68\xb0\x90\x2f\x91\xaf\xea\x37\xd2\x8a\xcb\x42\xb3\xed\x2e\xe3\x71\x58\x20\x25\x80\xeb\xee\x03\x2b\x81\x20\xaf\x5c\xab\x7b\x1e\xe3\x85\x26\x0e\x88\x35\x96\x79\x96\x71\xa1\x50\x4b\x1b\xc6\x8d\x6f\xc6\x07\x77\x8e\x9d\x87\xe7\x71\xd0\x88\x96\x30\x64\x43\x2d\x8d\x6e\xf0\x08\x76\x5d\x0b\xc6\x11\x06\xc8\x82\x22\xe8\xeb\x1e\xa5\x25\x95\xba\x44\xa1\x4d\xc2\xef\x36\x19\x06\x99\xbe\xe0\xbb\x96\xe1\x6b\xea\xfd\xda\xb5\xd0\xb8\xe5\x09\x99\xaa\x71\xa3\xd7\x67\x89\x81\x53\xb7\xc8\xda\x10\x65\xe8\x6c\xbe\x83\x16\xbb\x6b\x09\x7f\xb4\x81\x3d\x5a\x35\x08\x2c\x04\x82\x73\x65\xe4\xd3\x42\x87\x41\x6e\x35\xc1\xbc\x60\x3b\xb5\xb9\x60\x5e\x08\xd4\x32\xbf\xf1\x87\xfa\xb4\xa9\xa3\x11\x1b\x42\x00\x45\xa1\x88\xb8\x14\x31\xd0\x02\x56\xca\xff\xa5\xa2\xa3\xaf\x1a\xad\xd9\x8e\xf0\x5a\xd0\xbd\xad\x97\x9f\x2c\x50\x51\x58\xb6\xf4\x5d\x97\xd3\x63\xac\xde\x4e\x04\x34\x13\xb6\x65\xdc\x15\xc9\xac\x65\xde\xcc\xb3\x88\xf4\x81\xf8\x30\xdd\xd5\x11\xfa\xc9\x59\x7e\x20\xf0\xb5\xa8\xc9\x6c\x63\x37\x12\xbc\x70\xa0\x90\x4d\x0b\xbb\x0b\x9c\xc5\x5d\x87\xc2\x2e\x5f\x60\x0f\xe8\xd4\xb0\xca\x25\x05\x9c\x31\x63\x91\x5d\x23\xed\xe3\xd4\x7f\x74\x47\x96\x47\x05\x7c\x84\x32\x9c\x36\xb2\x0a\x84\x0e\x96\x2c\xfe\x97\xd9\x2c\x93\x89\xea\x0a\x6b\xd9\xb2\x88\xd6\x83\xaa\xcf\x0f\x78\x00\x4d\xa2\x2a\x9a\xd2\x24\x01\x39\xe0\x08\x0d\xa0\x3c\x30\x24\x72\xea\xab\xd0\x05\x58\xd0\x19\xe3\xab\x72\xcc\x5a\x88\x29\x0a\x88\xe9\xae\x9d\x98\x24\x50\x53\x91\xc7\xbf\x1b\x8a\xda\x01\xa6\x8b\xe6\x2d\xb8\x8e\x88\xdd\x1d\xc9\x65\x0d\xe5\xfd\x2d\xa2\xa3\x6b\xc3\x0d\x3e\xfc\x57\xf3\xd0\x3f\xe5\x58\x60\xa6\x20\xe6\xd7\x8a\xee\x82\x04\xa9\x47\xe4\x33\xc4\x67\x30\x63\x08\x86\x9f\xc2\xcd\x75\x2e\x7f\x08\xf7\x42\x34\x3e\x40\xf4\x88\x1c\x41\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\x56\x8b\x65\x3c\x42\x83\x44\x72\xfb\x05\x61\x51\x02\xe5\xb8\x83\xf0\x64\x4f\xf9\xd6\xad\x34\x59\x80\x82\x02\x5b\x59\x34\xcf\xed\x83\xe0\x43\x28\x32\x06\x3e\xf1\x04\x4e\x7a\xf1\xfb\xef\x79\x66\xbc\x15\x6d\x71\x12\x2f\x58\xce\xa1\x76\x0d\xbd\xd8\x26\x99\x52\x81\xcb\x36\x08\xde\x80\x8d\x29\x62\x4c\x03\x04\x16\xf4\x35\x56\x28\x21\x58\x2a\xf4\x87\x6f\xd6\x8a\x0d\x71\x13\x2c\xb8\xab\x3d\xbe\x45\xa2\x98\x4b\x35\x08\x85\x3b\xdf\x31\xd4\x8e\xc3\x42\x21\x8c\x18\x79\x0e\x23\x4b\x39\x04\x03\xbb\x82\x70\x24\xc8\x6d\x35\xf1\x64\x26\x33\x1f\xb2\x35\x8c\xca\xd4\xc2\x47\x1c\xdc\xb1\x75\x9f\xda\x61\x35\x50\x96\x55\x9e\x6c\x88\x27\x40\x72\x15\x41\xff\x73\xac\x46\xcc\x72\x56\x17\x36\x12\xa4\x79\x0d\x92\xa4\x1c\x68\x8f\x21\x97\x84\xe9\x09\x43\x7d\xf6\x23\xbf\x40\x57\xa0\x7e\xf9\x68\xe7\x92\x9d\xae\x38\x2c\x26\x1e\xcf\xe3\x1d\x85\x6d\x37\x4a\x3b\x4d\xf6\xe5\x57\x14\x82\x1b\xba\xbf\x30\x85\xf2\x3b\x08\xc3\xa4\x69\xc8\x2b\x0e\x56\xdd\xa6\xbf\x44\x36\xde\x75\x07\xdd\x45\xe5\x66\xfb\x38\x5c\xb3\xcf\xbc\xc1\xdc\xde\xb2\xb9\x81\x6c\xb1\x8d\x02\xee\xc3\xee\x5f\xcb\xe3\x5b\x1a\xfa\x79\x0c\x49\x7f\xab\xb9\x60\x91\x44\xe7\x58\x87\x89\xbd\x8e\x83\x9c\x9e\x20\x85\x00\x82\xff\x1c\xe3\xb3\x6f\xb6\x78\x5e\xb3\xf7\x3d\xfd\x83\x62\xfe\x6e\x2a\x3e\x08\xae\x3e\xf1\x76\x61\x6f\x10\xff\x1d\x47\x10\xe9\x0f\x3d\xb9\x1c\x83\x3a\x20\x93\x83\xb1\xc6\x60\xcc\x6f\x14\x0f\x33\xc1\x23\x22\xe5\x11\x1a\xc2\x45\x63\xff\x89\xf0\xd4\x39\x24\x82\x97\x47\x4c\x6b\x26\x0e\xbf\x25\x68\xbf\x4c\xe2\x4d\x27\xc0\x80\xc1\x6d\xe5\xcb\x49\x57\xd7\x28\x69\xd3\x26\x1c\x16\x1d\xb4\x01\x65\x0d\xd0\x70\x76\x82\x62\x1e\x3d\x12\x71\x2c\x48\x4c\xe5\x09\xf8\xd6\x55\xab\x53\x2f\xd5\xda\xf6\xd6\x92\x46\x5b\xa0\xc0\x8a\xa4\xb8\x53\xd3\xbf\x0d\xb0\x76\xe1\xb5\x07\x88\x4e\x41\x9d\x70\x39\x19\x26\x08\xd9\xc1\xdd\x10\xa6\xc4\x02\xe2\xfa\xbd\x29\xab\xb2\x10\x4e\xd3\xd0\x42\x5b\x5b\x36\x91\xd8\x45\x0c\xce\x86\xd3\xbe\x9f\x13\x49\x5c\xc0\x81\x99\x94\xe2\x36\x96\xd9\xb0\x8b\x0c\xab\xb9\x84\xd4\xd5\xf2\x1a\x58\xa5\x0b\x3e\xd5\x2b\x84\x33\x88\x57\x30\x56\x8a\xe2\x23\x9f\x60\x29\x15\x4d\x92\x11\x63\x84\xc4\x12\x41\x96\xe9\x57\x8d\x19\xf2\xfa\xd3\x03\x84\xe3\x18\xfd\xef\xaf\x3f\x5e\xfc\x7c\x3f\x1c\x9f\x5f\x81\xd1\xfa\xfc\x62\xf8\xcd\x81\xff\xf1\xfa\xe1\xde\xff\x6a\x2c\x2c\x4f\x44\xa0\x14\x3f\x82\x8a\xc7\x24\xb1\xc9\x13\x64\xc4\xc2\x91\x3a\xec\x00\xfd\x44\x12\x17\xe9\x6a\xc5\x14\x0f\xa1\x68\xf7\xb0\xb5\x62\xb1\xb1\xf9\xad\xa1\xfc\xde\xfa\x4f\x96\xd3\xa0\x23\x1e\xdf\x85\x13\x03\x21\x47\x06\xcb\x20\x99\xdc\xea\xbe\x05\xc1\x11\x36\xa3\xac\x2d\x1e\x8f\xb0\xa7\x97\x14\xe2\x7f\x20\x8b\x1f\xb5\x7a\x7d\x83\xa9\xe8\x4c\x7b\xcd\x68\x40\xee\xc4\x68\x3d\x1d\xcb\xea\xa1\x92\x46\x16\x36\xd9\x36\xad\x31\x9f\x4d\x40\x70\x6f\x3e\x5d\x0b\x2f\x45\x3e\x2b\xe1\x50\x2a\x7c\x3e\x87\x83\x72\xf2\x17\x4d\x41\x83\x23\x76\x7f\x7d\x76\x7d\x82\x48\x82\x27\x1c\x42\xf9\x6d\x48\x90\x6b\xc2\x2e\x58\xc4\xd3\xa0\xa1\x12\x42\xc9\x01\xca\x0a\x84\x92\xd0\x88\x76\x64\xda\x58\x81\x54\x92\x71\x51\xc7\xf7\xd8\xad\x0a\x68\x27\x7b\xc3\x45\x97\xeb\x5f\xbf\x06\x4b\xc7\x33\xad\xc8\x55\x38\xaf\xbd\x9b\xa7\x04\x9b\x5a\xfa\xc6\x2d\x64\x6d\xf9\x36\x80\x35\x49\x4a\xf5\x14\xf5\xc1\x91\x47\xd6\x05\x5f\xbc\xc9\x19\xfa\xe1\x2f\x12\x4d\x72\x35\x62\xe5\x36\x38\x43\x83\x9f\xee\xd0\x77\x58\x45\xf3\x6f\x46\xec\x5a\xab\x99\x3f\xfc\xa5\x05\x4a\x69\x6d\x74\x42\xbd\x26\x67\x58\xe1\x0b\x8e\x63\xca\x66\x4d\xd0\x84\x45\xfd\x98\xe1\xfd\xe0\x04\x5d\x5b\x1d\xbe\xc8\x04\xf1\x29\xc1\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x65\xf8\x36\xa3\x99\xc1\x85\x35\x62\xf7\x06\x93\x51\x73\x55\xaa\x50\xc6\x6d\x0d\x23\xad\x95\x19\xb4\x4a\xec\x32\xa4\x48\xb2\x40\x7a\x75\x80\x8c\xfd\x66\x58\x79\x0c\xe4\x99\x3a\xb3\x1f\x31\x50\xd0\x7d\x6e\x4a\xc2\x23\x9c\x40\x4c\xde\x61\x60\xd3\xd3\x6a\x3b\xcf\x21\x3f\xdc\x14\x3d\x5f\x94\x43\x67\x3d\x64\x81\x17\xca\xc2\x8d\x02\x03\x00\xec\xa3\xf5\xc6\xa6\x5c\x73\x1c\x83\xc5\x06\xc6\xb7\xc4\xac\x8e\xfe\xd0\x63\xb3\x99\x65\xd1\x4f\x7d\xda\x16\xcf\x99\xc3\x22\x89\xc0\x7c\xcf\x16\x10\xbe\x0d\x45\x47\x38\x84\x7e\x14\xdc\xd9\x12\x65\x6d\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\x58\xcf\x15\xcb\x33\x1b\xd8\x68\x65\xfd\x4c\x90\x43\x9f\x01\x15\x97\xd6\x54\xdf\xb0\x47\xe8\x36\x54\xaf\x63\x1e\xe5\xa9\x43\x56\x86\xec\xa9\xa2\xac\x7c\x49\xe2\x31\x17\xfb\x2a\x8a\x07\x94\x16\x45\x20\x7d\xbc\xb3\x7e\x6c\x08\x66\x10\x7e\x5a\x97\xd4\xdb\x05\x5f\xe0\x1d\xdb\x45\xad\x99\x86\xc6\x59\xb9\xa5\x52\x6b\x5b\xe7\x25\x5e\x15\xe8\xaf\x5c\x80\xb0\x45\x3e\x67\x1c\x8c\xdc\x26\x3d\x8b\xc7\x5f\x49\x74\x7e\xa3\x25\x20\xad\xf1\xfa\x33\x98\x4b\x65\x82\xcb\x20\x5d\xc7\x7c\x6d\xd2\x05\x0e\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x9d\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x3a\xa7\xda\x62\x17\xec\x01\x6c\x5b\xfe\x4d\x50\x1e\x83\xd8\x21\x3c\xb3\x27\x5c\x86\x27\x13\x95\x8e\x66\x11\x49\x20\x89\x3a\x28\x73\x08\x2f\xec\x5a\x89\xfe\x7f\x2d\x01\x2b\x1b\xeb\xa3\xb2\x59\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xf0\x33\xd6\x9c\xfb\xc0\xc2\x68\x99\x8f\x8c\xe7\x65\x8a\x23\x83\x0a\x2a\xd1\xd7\x9f\x4f\xf4\x6f\x07\x68\x71\x02\x41\xa4\x07\xe8\xd7\x13\x8b\x96\x83\x85\x1a\xeb\x9f\xbe\x71\xb2\xb6\x6d\x02\x06\x4d\x25\xfa\xea\xf8\x09\x0b\x53\x33\xfa\xd8\x8c\xe8\x2b\xcb\x59\x7d\x5d\xbc\x50\x36\x4f\x38\x7f\xb4\x01\xb6\xb5\x0f\x8f\x1d\xf0\x1a\x90\xb7\xf7\x9b\x98\xad\xf7\x89\xf9\x0a\x1d\xc2\x0b\x04\x1d\x65\x13\x74\xf4\x77\xc9\x19\x3a\x5a\xe0\x34\xb1\xbf\xba\xa7\x36\xfe\x17\x4b\x9b\x13\x17\xfb\x20\x9f\x64\x61\x2c\xa5\xdf\x25\x7c\x02\xb3\xba\x74\x33\x35\x11\xb4\x30\xd0\xe2\xf6\x29\x2e\x2c\x3b\x11\x97\x88\x0a\xf8\x41\x29\x57\xe6\x15\xe0\x71\x4d\xb3\xfa\xec\x87\xf4\xdf\xc6\x2f\x0c\x8b\xe2\x92\xf8\x8c\x71\xd8\x47\xaf\xe9\x46\x3f\xa3\xaf\x2d\x0b\xfa\x46\xdf\x31\x36\x5c\xd9\x2c\x43\x53\x07\x0b\xdf\xc1\xcf\x41\x07\x94\x21\x93\x96\xb9\xe4\xcb\x5f\x8f\x8f\x8e\x8e\xfc\xd7\x90\xb5\xfe\xff\x22\xaa\x24\x49\xa6\xa6\x25\x77\x83\x2d\x46\xec\xd2\x15\x5e\x70\xc6\xeb\x02\xd2\x31\x13\x5c\xf1\x88\x27\xe8\xb0\x30\xe8\xc6\x3c\x92\xe8\xdf\xb5\x58\x1b\x2c\x25\xfc\xa8\xf5\xb8\x16\x18\x58\x83\xf4\xfc\x4a\x87\xca\x1a\xc4\xab\xc7\x2a\x44\x71\xf3\x8a\x2d\x96\x61\x15\x0f\xa0\x05\x4d\x39\xc7\x16\xe9\x4d\x08\xfd\x32\xf9\xac\xe0\x51\x0b\x90\x5e\x63\x28\x7b\xf3\x4d\x59\x63\xb7\x05\x9e\x9e\x21\xeb\x96\x05\xb0\x78\x57\x96\x33\x98\x79\x1e\x84\xee\x13\x7d\xb9\xb0\xb0\x14\x80\xcc\xd3\x14\x8b\xc5\x71\x71\xda\xea\xc4\x59\x20\xad\x01\x8f\x49\xdc\x02\x80\x0b\x37\xb1\x47\xcb\x46\x31\x58\xf1\xd2\xdd\x68\xfe\xec\x46\x50\xcb\x30\x40\x2c\x20\x2c\xe2\xb1\xa5\xeb\x22\xfb\xb4\x2c\xb1\xf8\x77\xea\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\xb7\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x86\x7b\xf4\xfc\xfa\xce\x7d\xd3\xfd\xd2\x85\x75\x28\x8b\xec\x38\x09\xf1\xf1\xd8\x0c\x09\xfc\x5c\x5c\xbf\x10\xdb\x61\xac\x33\xb9\xcf\xcd\x35\xff\x3e\xe5\x37\x34\xd1\xb7\x16\xd0\xf8\xd1\x88\x95\x7e\x3e\x40\x24\xa1\x29\x65\x3e\xb6\xce\x30\x77\x3e\x35\xd2\xf3\x23\x55\x7a\xcb\x64\xfc\xa8\x39\x98\xc3\x75\x0a\x54\xaa\x01\x5b\x38\xd2\xf1\x8e\x29\x6b\x81\xc8\xa5\x1e\x57\xa1\xa3\x6b\x61\x56\x37\x71\x68\x05\x52\x1a\x10\x1e\x9c\xdf\x11\xd3\xad\xb9\xb3\x54\x84\x0b\x07\xed\x05\xcd\x1d\x3a\x40\xfc\x80\x03\x40\x1f\xa5\x98\x5f\x2f\xff\x36\x08\x28\x43\x96\xa7\xdb\x26\x9b\xd8\xf0\xe1\xb7\x32\xd3\xdd\x08\xe2\x6e\x2a\x9b\xb8\x44\x58\x9e\xba\x03\xb5\x06\xc5\x0d\xad\xf8\x13\x93\x28\xc1\x06\xa9\x46\x37\x04\x91\x8f\x07\xc6\x41\x9a\x05\x7d\x99\xeb\xc5\x74\x63\x6a\xec\x24\x84\x7d\x6d\xfe\xfd\x0d\xb2\x77\xc3\xb7\x07\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\x3e\x00\x65\xb4\xd6\x1f\x96\xc0\x04\x60\xd4\x4d\x14\xa0\x99\xf0\x56\xb9\x46\x10\x05\x3b\x66\x3c\x26\xdb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x96\x4e\x4b\xa4\x5c\xd3\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x2d\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x6d\x37\x21\x6a\x40\x2b\xea\x74\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x9c\xb3\x29\x3f\xb1\x3a\xd5\x05\x65\x8f\x86\xe2\x5f\x6a\x8f\x0c\x20\x36\x89\x4b\x30\x6e\xae\x4a\x2b\xcc\xe1\x10\x51\x16\x25\x39\x5c\x7c\x52\xe1\xe8\xd1\x80\x7a\xb7\x19\x7d\xf5\x37\xe3\xd5\xc9\x94\x2d\x12\x53\x9e\x24\xb6\xdb\xe2\x02\x2d\xca\x58\x3f\x51\x8c\x30\x7a\xb8\x3d\x6f\xee\xfb\x91\xd6\x9d\x39\xcd\xb7\x67\x99\x40\xe0\x7f\x7e\xa0\x6b\xc5\x5d\x56\x60\xf1\x48\x89\xd4\xbd\x71\xa9\x0d\x74\x55\x13\xe9\x27\xac\xc8\xb6\x99\x50\x06\x03\x6c\x8d\x48\xbd\x1a\xb8\xda\x52\xeb\xf1\x96\xc8\x64\x05\xaa\x18\x84\x06\xb5\x43\xa4\x85\xc1\x5a\xf0\x70\x0d\xec\x06\x78\xbf\xdb\x7c\x2a\xef\xae\x98\xce\xf2\x61\x26\x84\xac\x81\x36\x70\xa7\x5f\xef\x38\xc8\xd2\xab\xcb\xc6\xf8\x8c\x4d\xf5\x85\x3a\xe8\x6f\x6c\x25\xbb\x75\x98\xad\x23\x47\x23\x5e\x4b\x9f\x23\xe2\x47\xe2\xc2\x70\xbc\x2c\xe6\xfa\x9d\x81\x6f\x8b\x97\x8a\x3b\x78\x0b\x6d\x03\xe1\x07\x62\xeb\x96\x61\x13\x5a\xfc\x1a\xa7\x9d\x01\xe5\x8a\x8e\xcf\xec\xc7\x97\x35\x78\x39\xcf\x8a\x2e\x21\x8b\xcf\x03\xa7\xa4\x98\xe9\x93\xed\x7a\x6d\x31\x42\x1a\x89\x70\xa3\x21\x3d\x64\x1b\x0d\xc8\xf4\xd8\xb1\xee\xa1\xed\xca\xb5\xf2\x6c\xec\xf0\x38\x31\x76\x26\x35\x07\x13\x44\x51\x2f\x48\x73\xb4\xb2\x29\xc2\xd4\x16\x4a\xf0\xff\xc7\xde\xb7\x35\xb7\x8d\x24\xe9\xbe\xcf\xaf\xa8\x88\x7d\xb0\x7d\x0e\x45\x4d\xf7\xc4\x6e\xf4\x3a\x62\x1f\x68\x59\x9e\xd6\xb4\x2d\x79\x24\xb9\xbb\xf7\x2c\x37\xe8\x22\x50\x24\x31\x02\xab\x60\x14\x20\x99\xb3\x33\xff\xfd\x44\x65\x66\x5d\x70\x25\x40\x4a\xb6\x67\xb6\x1f\x76\xa7\x2d\x02\x85\xba\x57\x56\xe6\x97\xdf\x97\xaf\xf1\x82\xa4\x45\xa1\x5f\xb4\x8c\xb0\xcf\x79\x38\x62\x84\x0f\xd0\x64\x0d\xe3\x9e\x60\x7e\xf7\xad\x34\x57\xcb\x2a\xb9\xa8\x3b\x95\x9d\xba\x71\xc0\x9c\xe7\x13\x31\x22\x95\x23\x13\x77\x6c\xd6\x4a\x37\x67\xca\x91\xda\xdc\x97\x7c\xeb\x18\x01\xac\x42\x30\xe5\x77\x61\xe5\x96\x02\x78\x71\xbb\xeb\x70\xb4\x08\x77\x58\x05\x12\xc5\xec\xaa\xc1\x5c\xce\xec\x23\x9e\xdd\xcb\x5c\xcc\x72\x34\xc0\x01\x1f\x8a\x68\x68\xb8\x5f\x71\xdf\xeb\xd4\xb8\x8e\x46\x8c\x4d\xde\xac\xeb\x88\x9b\xfb\x9d\x3b\x8d\x48\x31\xc8\x71\x78\xf6\xaa\x35\x91\x7c\xfe\x11\x1f\xbf\xb1\x4d\xac\x29\xf1\xb7\x7d\x78\xff\x5d\xca\x32\x46\x50\x41\xa1\xf8\x3f\x62\x48\xd3\x9d\x9f\xa6\x9e\x24\xae\xf6\xb1\xe6\x6a\x2d\x8e\xda\x8d\x13\xbe\x5d\xe4\xaa\x5b\xce\x6a\x40\x37\xd9\x22\x2a\xfe\x9d\x0d\xca\x5b\xec\xd8\xa7\x92\xa7\x78\xb8\x49\x9a\x8e\xb6\xda\x60\x2a\x7f\xff\x6f\x6c\x06\xa7\x0f\x7b\x07\xfb\x22\x04\xf8\xa1\xb4\x42\xb1\x64\x9b\x89\x5c\x2b\xc9\x3b\x75\xdd\xee\x7e\xd0\x0b\xd2\xa6\x59\xf0\x28\x52\x65\x53\x87\x66\x44\x4b\x5a\x4a\x0b\x1b\xc5\xd9\x5d\xb9\x14\xb9\x14\xa8\x5d\x07\xcf\x31\xfb\xdc\xa0\xea\x2a\x5e\x16\x9b\xef\x17\x51\x9a\x0c\x16\xcc\x81\xec\xa2\x99\x79\xed\x0c\xdf\xea\x6b\x40\xa5\xfc\x4a\xd5\x25\xc3\xdf\x18\xfe\x36\x65\xaf\x78\x74\x27\x64\xcc\xb2\xb4\x5c\x27\x44\x26\x00\x27\x14\x6c\x97\x81\x7b\xb6\xda\x30\xb4\x2d\xb0\x7c\x73\x0c\xcd\xe5\x96\xdf\x21\x89\x2d\x19\x91\x11\x4f\x3b\xa9\xa8\x9c\x59\xbd\x48\x9a\x73\x77\xef\x68\xb9\xf3\xb0\x59\x4c\x7d\xee\xe9\x12\x73\x2b\x1e\x36\x8a\x22\xd2\x15\xab\x7e\xc4\xc2\x75\xb3\xb5\xc1\xf9\x62\xf3\xf2\x9d\x8a\x21\x55\x06\x57\x2f\xb8\x7b\x81\x88\xb9\x94\x8c\x03\x6d\xcc\x33\xcd\xca\xcc\xda\x67\xe0\x87\x4c\x21\x2a\x8c\x43\x60\x7e\xc8\x12\x73\x4b\xdb\x88\xb9\x04\xa4\x2d\x73\xcd\x6b\x88\x5d\x31\xe1\x01\x31\x6d\x5b\xc3\x0a\x49\x13\x8e\x8b\x71\x36\x78\x9c\xf7\xcc\xd3\x81\x28\xe2\x62\x23\xe4\xe2\x00\x3a\xe1\xe1\x83\x56\x41\x0c\x93\x19\xec\xfc\xb9\xae\x0b\x4b\x99\x90\x80\x14\xb9\xf0\x43\xae\xcc\x64\x55\x33\xa3\x13\xcd\x34\x2f\x12\x6d\xf6\xb2\xd6\x1e\xf7\x54\x15\xc7\xf4\x3a\x1f\xc7\x8f\xd1\xc2\x8d\x51\xeb\x0b\x97\x95\x30\x65\x6f\xc0\x0b\x16\xdc\x0c\x94\x63\x9a\xe8\xda\xb0\x8a\x8d\xe8\xa4\x5c\x7c\x0c\x38\x8f\x6d\x41\xf0\x7c\xaf\x73\xd3\x65\xa0\x4c\xd9\xcc\x47\x1f\x90\x6b\x03\xe3\x0a\x7b\x5a\x24\x52\x2d\x0e\x99\x7c\x83\x1c\x75\x10\xa1\x87\x09\xc4\xc0\x92\xd2\xe6\xef\x9e\x41\xde\x55\xf3\x01\x92\x3c\xf9\x9d\x90\x7d\xde\x98\xe1\x35\x44\x77\x59\xaf\x4b\xc0\xf9\xe1\x14\xba\xe2\x0e\xa9\xe0\xf0\x65\xe7\xe9\x4d\x92\xd5\xa9\xe9\x72\x73\x0d\x89\xee\x28\xb5\x04\xbd\xb1\x44\x90\xf2\xb0\x51\x3a\x5c\x67\x76\xfc\xf0\x26\x9b\x97\x8e\x25\x1c\x52\x73\x5c\x07\x23\x26\x47\xaa\x90\x3f\x05\x6a\xed\x16\x29\x7a\x9a\xdd\x78\x33\xbb\x85\x42\x37\x40\x14\xcb\x16\xd5\x5c\xcd\x3f\xfd\xa0\xaf\x60\xc5\x3e\x46\xa6\x7e\xbb\x2c\xeb\xf1\x28\xf9\x03\xe3\x03\x0e\xff\xe5\x35\x5d\x79\xec\xb8\x25\x32\x15\x33\x3f\xbd\xc6\x0b\xb8\x7e\xfd\x66\xd5\x84\x5f\x07\xb5\x6d\xdf\xcc\x7e\x17\x80\x08\xd8\xb2\x4c\x50\x43\xbd\x62\x10\x2a\x6b\x71\x00\xff\x31\x1c\xff\x89\x76\xe7\x49\xfb\x1c\x7b\xaf\xe2\x63\x26\xd6\x78\x3a\xbd\xe6\xbc\x1e\x80\x31\xd6\x6d\x9a\xef\x3d\x3d\x91\xa9\x6e\x74\x68\xbc\x18\xae\x92\x0e\x70\x80\x65\xb9\xba\x01\x75\x91\x2e\xc6\x8a\x80\x78\xdf\xa6\xa0\x99\x71\x36\x9f\x71\x09\x11\x5d\x83\x42\xd1\x65\x7f\xfc\x73\xf6\xa7\x9b\xab\xcb\x93\x2d\xcf\xf5\x86\x43\x46\xb0\x2d\x6b\x62\x05\xdb\xf0\x7a\x6c\xa3\x5e\x89\x9c\xcb\x13\xb6\x56\x13\x8c\xb1\xbe\x64\x9b\xa2\xc8\xf4\xcb\xd3\xd3\x75\x52\x6c\xca\xe5\x34\x52\xdb\x53\xdf\x35\xa7\x3c\x4b\x4e\x97\xa9\x5a\x9e\xe6\x02\x50\xb6\x27\xdf\x4d\xbf\xff\x0e\x46\xe6\xf4\xfe\xbb\x53\x88\xac\x4d\xd7\xea\x5f\xde\x7e\xff\xef\x7f\xf8\x37\x53\x70\xb6\x2b\x36\x4a\xbe\xa4\x00\x6e\x6f\xd9\x27\x68\x95\x9f\xe2\x2b\xb5\xaf\xfc\xfb\xf4\xf7\x61\x35\xe8\xd1\xad\x8a\x45\xaa\x4f\xef\xbf\x5b\xd8\x81\x99\x66\xbb\xdf\x70\xa9\x5f\x0d\x97\x7a\x97\x14\xbf\xe1\x52\xbf\x2a\x2e\x75\xb8\x85\xe3\xf6\x18\x20\xfa\xf4\xfb\xa3\xf9\xbb\xdb\x23\xad\xeb\x7d\xdf\x3e\xd4\x72\x38\x84\x59\x03\x47\x1c\x11\x77\x62\xd4\x15\xbb\xd6\x5c\x77\x75\xe8\x70\xb1\x8d\x25\xdb\xef\x34\xe6\x47\x25\x49\x03\x0a\x24\x89\x80\xc8\x19\x5d\x82\x19\x4f\xda\xd0\xa6\x84\x76\x3a\xa6\xff\x9e\x92\x92\xfc\xb1\xb9\xc8\xa9\xb9\x07\xf2\x90\xa7\xf8\xb6\xc5\x66\xa9\x07\xcb\x3f\xfe\x18\xac\xdd\x03\x75\x5c\x1d\x19\x31\x4e\x1e\xa8\x8b\xad\x57\x47\x35\x36\x5c\x1f\x06\xf2\x9b\x21\xe5\x9f\x8b\xd3\x39\x55\x7c\xfa\xa0\x3d\x38\x2c\x8b\x02\x88\x84\x13\x59\x53\x56\xe6\x99\xd2\x42\x4f\xd9\x9b\x9a\xd2\xa1\x07\x2e\x5e\xbf\x39\x63\xdf\xfd\xf0\xef\x7f\x98\xcb\xe7\x2d\xe7\x36\xec\xf7\x2a\x5f\x13\x8e\x12\x4e\xeb\x2d\xd7\x85\xc8\x4f\xf3\x55\x74\x8a\xbb\xdc\xa9\x79\xff\x84\x3e\x7a\xa2\x56\x27\x8e\x92\xf8\x84\xd8\x59\xa7\xdb\x78\x1c\xc1\x40\x65\xea\xe1\x59\x43\x07\x8d\x86\x43\x09\xa9\x88\xd4\xca\x91\xcf\x63\x9e\x0b\xea\x54\xa8\x55\xcb\x7f\xbc\x4a\xd5\x52\xbf\x70\x04\x68\x5c\xdb\x6f\x78\x46\xa2\xee\xa5\xf9\x38\xec\xe4\x76\x8a\x3c\xa5\xa3\xc2\xee\x25\xe1\x75\x64\x4c\xc7\xb7\x2f\x36\x7f\xdc\x23\x1f\x03\xcf\x55\x29\x2d\xbb\xb3\x92\x42\xad\x00\xc5\x07\x96\xb0\x45\x29\x80\xaf\xd6\x9c\xb4\x9e\x7b\x21\x17\x19\x1e\x30\x10\x55\xe8\xee\xee\x23\x19\xce\xf7\xf5\xf3\x53\x30\x9c\x1f\xdb\xef\xb4\xa1\x7c\xa5\x0e\x3f\x16\x4a\x88\x4b\x69\x0c\xaa\xc2\x3c\xbf\x37\x82\xea\xf6\x01\xaf\x3e\xe4\xc9\x84\x33\x9e\x83\x91\x26\x4e\x0a\x75\x02\xa4\x35\x40\x85\x82\x9a\x03\x5d\xb0\x0a\x88\x3c\x8f\x39\x26\xcd\xf3\x03\xea\x89\x86\xf9\xe7\xa0\xa2\x64\x93\x68\xa4\xf0\x24\x48\x56\x22\xa5\xc8\x29\xa6\xb6\xf7\x44\x1d\x19\x97\x0e\x87\xb2\x1f\x91\x15\xe8\x5a\x07\x7c\xf0\x0e\x8f\xcf\x83\x4d\x60\xca\xc0\xfa\xdc\xa8\xad\x32\xe6\x8c\x2a\x75\xf0\x23\xde\x5e\xe0\x10\xee\xb4\xbd\xb6\x3c\x43\x92\xba\xaf\xd7\x1a\xb3\xb4\xcc\x4f\xe8\xd4\x0b\x1f\x1a\x25\xb1\xb1\xac\x8a\x0a\xec\xa9\xbf\x63\x83\xef\x9f\x37\x80\x7a\x40\x9d\x3a\x90\x8a\x25\x8e\xe7\xe4\xaf\xe6\x5e\x63\xa6\x94\xbb\x29\xb8\x93\x1b\x41\x3a\xc8\xc5\x18\xd2\xbd\x5a\x6b\xbe\x33\x5b\xba\xdc\x8e\x1c\x03\x07\x32\x1e\x32\x00\x5c\x22\xec\xd6\xe2\x6d\x4f\x5a\x01\xb7\x5d\xeb\xd2\x0a\xb3\xc6\x0b\xcb\x17\x3a\xae\xaa\x37\xae\x00\xa2\x06\x6d\xd6\xdb\xd3\x2d\x01\x3a\x1b\xfb\x18\x37\x04\x6b\x5b\x74\x80\x6e\xe4\xf8\xc5\x08\x02\x2b\x63\xfa\x0e\x3e\x82\x93\xb3\xd1\x83\xc1\x5a\xe8\xea\xc0\x71\x2e\xb6\x3e\x8f\x55\x1b\x9c\x1f\x19\xea\x7c\xf6\x8e\xa9\x65\xe3\xf2\xe8\x5e\xbc\xf7\x2a\xd4\xbb\x4c\x4c\xd8\xb2\x84\xdf\x2f\xaf\x6e\x43\xb4\x46\x82\xad\x3d\x89\x36\x22\xba\x03\x87\x09\x1e\x79\x4e\xb4\x91\xd8\xf0\xe6\xd2\x4b\x7f\x15\xca\x42\x0f\x76\x8e\x0d\xdd\x29\x02\xa8\x9c\xc5\x89\xce\x52\xbe\x83\x20\xaf\x44\x9c\xbe\x0f\x10\xbb\x04\x17\xb3\x15\xec\xf3\x17\x0f\x1f\x69\x33\x2a\x33\xff\xde\xd8\xbe\xe4\xf9\x32\x29\x72\x9e\xef\x98\xef\xcc\xe6\x7e\xc0\xb4\xd8\x72\x59\x24\xd1\x5c\x6e\x05\x97\x21\x2a\x8f\x82\xdc\xa6\x93\x63\x25\x88\x2f\x78\xb5\x12\x51\xe1\x09\x07\xc1\x78\x77\x3d\xb5\x6f\x0d\x8e\x6b\xbb\x5b\x79\xbd\x4d\xff\x31\x91\x98\xde\x9e\x6c\x01\xf3\x49\x73\x88\x8e\xc6\x03\x83\x37\x20\x15\x47\x47\xae\xbd\x0c\xc2\xbf\xec\x9c\x62\x4b\x51\x3c\x08\xc8\xa7\xa7\x04\xc0\x36\x1b\xff\x68\xb9\x80\xe3\xd4\x7f\xdb\x75\x93\x03\x24\x18\x2e\xb0\x10\x4c\xe6\x88\x7f\x64\x8d\xc1\xe7\x19\xa5\x24\x82\xb7\xe7\x19\xf9\xad\x9e\xc1\x31\x6d\x6e\x8f\xf9\xbd\x88\xe7\xb2\x4a\xab\x44\x36\xa3\x5f\x70\xcc\x0b\x61\x3d\xce\x6e\x63\xfb\x78\x90\x2f\xff\x1c\xa8\x24\x3c\x89\xa4\x4b\xba\xeb\x11\xe6\xc2\x46\x3f\xe5\xad\xca\x6a\x02\x86\xd6\xfd\x00\x48\x96\xd0\x56\xe8\x86\x74\xf1\x2a\x78\x0a\x37\x29\x1d\x69\x0c\x32\xca\x39\x00\x2c\xf9\x25\x1b\x9e\xce\xb6\x32\xe6\xd2\x66\x53\xaf\xca\x14\x59\x42\xbb\xa4\xc2\x88\x43\xca\x66\x7e\x7c\xbd\x0c\x20\xe7\x57\x63\x81\xb6\x98\x83\x3d\x04\x60\x64\xdc\xeb\xec\xac\x17\x52\xa3\x20\xb5\x95\x15\x02\xc7\xf3\x5a\x14\x70\x9a\xc7\x65\x8a\xc9\xc1\xe0\x31\x07\x3e\x2a\x9e\xa6\x2c\x29\xf4\x5c\x3a\xfa\x2c\x24\x43\x87\x1d\xd6\xba\xd4\xad\x22\xad\x74\xba\xb6\xa4\xdd\x0f\x76\x58\x12\x25\x45\x03\xc2\xbd\x0b\xa5\x38\xb2\x4c\x70\xcc\x65\xc3\x61\x9b\xcb\xf0\xce\x55\x1f\x04\x4a\xfc\x02\x8d\xf2\xc7\xc8\xc1\xea\x41\xe4\x83\xb0\xfb\xe8\x21\x99\xb2\x19\xb6\xce\x5c\xb8\xac\xca\x26\xd6\x96\xf2\xe7\x09\x69\x69\x6e\x35\x85\xb6\x3e\x72\x7f\x6f\x05\x39\xe7\xa8\x4c\x79\x9e\x02\x27\xfd\xaa\x4c\x59\xb2\x0a\x04\x43\x61\x0c\x90\x3c\xc9\x0c\x57\xa4\xe0\xac\xb6\x5e\x72\xcd\xb7\x22\xc8\xdb\x26\xf7\x4e\x1a\x60\x28\x90\x11\x1a\x83\xf3\xa6\xac\x17\x53\xf6\xba\xae\x30\x0f\x6b\x22\x20\x5d\x4c\x34\x6e\x7f\xae\xbe\x41\xca\x21\x2a\xd5\x27\x2b\x73\xa5\x7c\x16\xac\xba\x8e\x11\x04\xf2\xf6\x71\x00\x0d\x4b\xdd\xdf\x8f\x1a\x6e\x4d\x39\x36\xaf\xd6\x60\x1b\x6e\x41\x74\x54\xd0\x9e\x0a\x23\x2b\x19\x12\x56\x1e\x50\x51\x47\x08\xda\x52\xd9\x6d\x8f\x3e\x29\x8c\xe3\xc8\xaa\x06\x6a\x3f\xe3\x2b\x1a\xcc\x9c\x10\x8e\x33\xa4\x67\xd7\xbc\x18\x8b\xcd\x71\xc9\x38\xe3\x2b\xda\x8a\x83\x1a\x52\x4d\xd8\x3d\x46\xd6\xd3\x4b\xf0\x8f\xaf\xa8\x93\x7e\xf6\x7a\x00\x5e\x13\xbf\x92\x43\x69\x99\x0e\x5d\x0b\xf4\x5c\xd2\x61\x37\x3e\xfd\x73\xe6\xe7\x1c\x08\x1e\x31\x53\xfd\x29\xbb\x92\x02\x91\x73\x6a\x15\x1c\x2a\x54\x01\x52\x46\x02\xb2\x79\x19\x48\x50\xa7\x89\xbc\xb3\xd4\x12\x66\xc9\x4d\x18\xf7\xa5\xc3\xae\x87\xd3\x06\x77\x91\x0e\x5b\xb2\x4d\x9a\xe1\x08\xf3\x72\x58\x82\x66\xfb\x9d\x3f\x00\xa0\x8e\xdf\x01\xda\xda\x31\x7c\x58\x7a\x91\xe4\xee\x16\x57\xd1\x18\x0f\x51\xa3\x45\x52\xec\xf6\xf5\xef\xfb\x4d\x15\x85\x38\x42\xc8\xe8\xc3\xe5\xeb\xf3\x37\x17\x97\x55\xf5\xa1\x3f\x7f\x38\xff\x50\xfd\xcb\xf5\x87\xcb\xcb\x8b\xcb\x3f\x86\x7f\xba\xf9\x70\x76\x76\x7e\xfe\xba\xfa\xdc\x9b\xd9\xc5\xdb\xda\x73\xe6\x4f\xd5\x87\x66\xaf\xae\xae\x6b\x7a\x47\x56\xac\x28\xf8\xd3\xed\xc5\xbb\xf3\xd7\x8b\xab\x0f\x15\xc9\xa4\xd7\xff\x79\x39\x7b\x77\x71\xb6\x68\xa9\xcf\xf5\xf9\xd9\xd5\xcf\xe7\xd7\x7b\x14\x8f\x7c\x7b\x5b\xbb\xf4\x31\xe0\x63\x07\xeb\x5f\xcd\xd8\x2a\x4f\x84\x8c\xd3\x1d\x62\xef\xed\xcd\xb6\x06\xa6\x0d\xcf\xde\x64\x2b\x54\x79\x0c\x84\xfe\x76\x83\x0a\xf5\xc0\x82\x81\xa5\x51\xca\x2c\xd7\x77\x9d\x1c\x89\x45\xde\x8c\x0a\xf4\x66\x0a\x15\xf9\xce\xe5\xa2\xf5\x55\xc7\x33\x28\xd1\x47\x58\x26\xf2\xbe\xba\x80\x65\x94\x97\x59\x91\x2c\xbb\x93\x22\x06\x32\x0b\x8d\xbf\x7b\x23\xdf\x5f\x3b\x39\xca\x65\xfb\xc6\x58\xc9\x0d\x38\x06\x78\x0c\x25\x1c\x2a\xeb\xe6\xde\xb6\x60\xcd\xac\x5c\xa6\x49\xc4\x92\xb8\xee\x4f\xc1\x14\x36\x74\x19\xd7\x69\x41\x33\x91\x83\xa9\x6a\x6e\x00\x59\x2e\x4e\x78\x59\x6c\xac\xe2\xbc\xcb\x64\x44\x9a\x4e\x11\xe5\x02\x63\x01\x42\x83\x93\x16\xf5\xbc\x82\x2f\x41\x65\x28\x83\x3b\x06\xb2\x98\x69\x40\xd1\xde\x11\x23\xc0\x37\xb1\xf4\x11\x4e\x52\x7c\xbe\xb7\x6b\xa8\xc6\x89\xae\x8b\x39\xc3\x09\x8f\x3f\x5a\x55\x30\xd3\x6e\xb3\x53\x3b\x55\x2c\x1c\x64\x9b\xbb\xd1\xde\x8c\x7d\x73\x2c\x9c\x28\xd5\x64\x06\x2a\x9d\x7e\x3a\xcb\x05\x1c\x22\x04\x05\xb0\xfe\x0b\x80\xae\x50\xae\x07\xa4\x78\x98\xab\xda\x52\x6c\x78\xba\x42\x8b\xc3\x0c\x8d\x5f\x57\xcd\x29\x7a\xab\xee\x84\xbc\xc6\x01\xfb\x2a\xdb\xa1\xc4\x9b\x8f\xcf\xe9\x77\x1e\x21\xef\xc2\x34\x75\xb4\xb3\xca\xe6\xba\x81\x31\x55\xe0\x3d\x21\xf8\x19\x53\x3a\x3c\x63\xaf\x4d\x93\x5b\xad\x92\xcf\xa6\xc0\xb9\x14\xad\x9c\xa5\x80\x17\xb2\xec\x4a\x6e\x5f\x06\x6c\x14\x52\xd4\xdc\x09\x09\x7a\x62\x28\x37\xbc\x77\xce\x8e\xf3\x9f\x37\xc7\xa2\xc7\xa1\x0f\x3e\xbf\xa4\x22\xb3\x16\x46\x79\x6c\x3f\x15\x98\x63\x33\x65\xaf\x89\x78\xc3\xfc\xe5\xec\xed\xc5\xf9\xe5\xed\xe2\xec\xfa\xfc\xf5\xf9\xe5\xed\xc5\xec\xed\xcd\xd0\xe5\xf7\x18\x79\x51\xb5\xd5\x57\x4f\x0f\x72\x3b\xc4\x29\xad\x3c\x9f\x9e\xeb\x1a\xe5\x97\x1d\x0c\xc9\xfe\xda\x27\x71\xb6\x88\x13\x1d\x99\xe3\x6f\xb7\x10\x32\x06\xb2\xe7\x83\xa6\x6a\x7b\x51\xf5\x56\xb8\x27\x98\x7b\xc2\xee\x20\x78\xda\xdd\xdb\x19\xed\x7e\x07\xd4\x1d\xb8\x21\x73\x61\x16\x7f\x6c\xee\x07\xee\xb4\x99\xee\x57\xf8\x30\xc5\x1d\xd7\xb6\x6a\x11\xf5\x36\x61\x7d\x13\xad\x4b\x6e\xf6\x47\xfb\x18\x40\x0e\x3b\x7a\x85\x18\xf8\x42\xc6\xe9\x24\x50\x4b\x65\x89\x9e\xcb\x2d\x97\x31\x2f\x54\xbe\xeb\x68\xe2\xb0\xcd\x33\x5c\x36\xd5\x2d\x34\x3c\xb2\xa5\x10\xb1\x1d\x05\x7c\x94\xcb\xfa\x54\x42\x5e\xea\xdb\xab\x9f\xce\x2f\x6f\x16\xe7\x97\x3f\x2f\xde\x5f\x9f\xbf\xb9\xf8\xd5\x21\x21\x33\xae\xdb\xd4\x11\xb3\x5c\x98\xdd\xc5\xd2\x7c\xb4\xee\x2f\x28\x59\x68\xcb\x21\x99\xaa\x64\x35\x97\x76\x67\xc9\x7d\xf1\x9b\x5c\x95\xeb\x4d\x7b\x41\xf5\x5a\xbe\x9f\xdd\xfe\x78\x50\x35\x81\x84\x09\x75\xcd\x70\xb5\x35\x11\xa1\xc9\x8a\xf6\x3d\x84\x91\xd6\xaa\x07\x54\x62\xf0\x68\x5b\x94\xa1\x63\x47\x3b\xe8\xf6\xd2\xdc\xb4\x7a\x8d\xff\x96\xc7\xbb\x26\xd0\x6d\xb0\x6f\x56\x8e\x11\x40\x28\xa3\x3c\x66\xa3\xb4\x97\x2d\x7f\xab\x9c\x60\xdf\x9f\xa4\x62\xbd\x16\x31\x4e\xaf\x7a\xc1\xe4\x83\xa3\x2d\x30\xf2\xe7\x7a\x5b\x2f\x92\x80\xdd\x11\x07\xb3\xc3\x7b\x0d\xdf\xc0\xdf\xbb\x57\xda\xf7\x8a\x33\x2b\x92\x1d\x29\xa9\x0b\x2e\x3b\x02\xc9\xf7\x4d\x84\xe6\xa0\xad\xe8\x2a\x67\x2e\xf9\x89\x1c\x26\x36\x64\xe0\xd7\xc1\x21\x21\x34\x12\xea\x93\xe4\xf1\x08\x04\xfc\x02\x55\xef\x96\x41\x00\xdf\xe9\xb5\xdd\x11\x9f\xde\xb9\xd1\x7b\x75\x22\xe6\x29\x70\xf5\xa2\x52\x12\x81\xcf\xd1\x1b\x04\xf2\x63\x9d\xc0\xe0\x51\x03\x52\xfb\xf2\xcf\xd4\xf5\x78\x6b\xad\xba\x9a\xb9\xe5\x76\x73\x03\xe4\x8c\xb7\xba\xc7\x6e\xbf\x7f\xab\x62\x87\xfb\x92\xb3\x5c\xc5\x65\x64\xd9\x6f\xa0\x58\x8f\x70\x21\x87\x96\x3d\x60\x63\x76\x62\x86\x99\x2e\x29\x22\x3e\x01\xec\xfa\x5c\x76\x85\x93\xec\x1e\xd0\xe1\xe6\x7a\x6f\x4f\xad\x63\xc6\xbe\xa5\xf7\xbb\x97\xa0\xed\xec\x61\x39\xa4\xcc\x3e\x0e\xc6\x5e\x07\x40\x88\xc6\x65\xc9\x31\x56\x5c\x3d\x8e\xbb\xc8\x2e\xdc\xae\x3a\x0e\xc7\x34\x0c\x06\x52\x4d\x0e\xc1\x23\x72\xc3\x35\x5a\xae\x45\xb4\xa9\x56\x1c\x5a\x53\x25\x88\xab\x57\xd7\x59\x82\xc7\x79\x08\x06\x45\x8c\x26\x78\xa7\x4e\xc8\x87\x5b\x11\xfb\x72\xca\x85\xe3\x26\x7e\x68\x1c\xb9\xcb\x0b\xee\x7b\xb0\x61\xa5\xbc\x94\xd1\x86\x65\x29\xc7\xbc\xe9\x0d\xd7\x38\xa5\x2d\x6c\x82\x2f\x93\x34\x29\x80\x90\x06\xa3\x79\xb5\x1e\x36\x37\x1a\x9e\xdf\x59\x0e\x58\xee\xd9\x87\xfa\x26\xfd\x91\xf0\x54\x2f\x90\xff\x25\x01\xaa\x7e\xc9\x06\x6f\xf4\xc6\x02\xfd\xb4\x24\x70\xaa\x1f\x0e\xb3\xe3\xc1\xb4\xf4\x6d\x19\x37\xb2\x54\xe2\xfb\xfa\xeb\x95\xfe\x6e\x39\xa8\xc7\x83\x33\x88\xdc\x7c\xc4\x36\x5f\xa7\x3e\x6f\x5d\x59\xab\x54\xf1\x0e\xf9\x5d\x5b\x36\x32\x99\x77\x95\x1d\xab\x72\xd9\xc5\x9d\x8b\xb5\xea\x2f\xbd\xcf\xef\x6f\xd7\xed\x63\xf9\x05\xc3\x0d\x90\x17\xa2\x48\xc6\xb9\x36\x82\x46\xf3\x42\x9c\xc0\xeb\xed\x85\x53\x32\xdd\xe0\x36\x37\x26\x9a\xd7\xd3\x70\x0c\xbd\x00\x9b\x6b\xce\xae\x3f\x97\xdc\x6c\x0d\x57\xab\x1b\x64\x48\x39\x66\x92\x15\x49\x73\x86\xb5\xaf\xc4\xfa\x57\x6f\xab\x41\x95\x70\x0e\x0c\xce\x3f\x6d\x6b\xcd\x8d\x79\x7b\xf8\x82\xac\x6a\xd4\x67\x79\xa2\x80\x29\x84\x94\xf1\x7b\x48\x06\x5b\xbf\x7b\x44\x4f\x7e\x2a\x45\x29\xcc\xdc\x5f\x96\xf1\xba\xe9\xdb\x1c\x61\x9d\xf9\x26\x6d\xd4\x03\xdb\x96\xd1\x86\xd9\xc2\x59\x2c\x52\xbe\xab\x34\x0d\xec\xa5\x42\xa5\x40\xdb\x7b\x20\x87\x68\x54\xea\x42\x6d\x01\x56\xea\xcb\xcd\x4b\x09\x13\x9e\xf1\xa2\xc8\x93\x65\x59\xb4\x42\xd0\x2a\x9c\x62\x07\x06\xb4\x6e\xde\x9f\x9f\x5d\xbc\xb9\xa8\x45\x93\x66\x37\x3f\x85\xff\xfe\xe5\xea\xfa\xa7\x37\x6f\xaf\x7e\x09\xff\xf6\x76\xf6\xe1\xf2\xec\xc7\xc5\xfb\xb7\xb3\xcb\x4a\xcc\x69\x76\x3b\xbb\x39\xbf\xdd\x13\x56\x6a\x7e\xb5\x7b\x20\x78\x40\x79\x66\x81\xae\x96\xfb\xd9\xde\x2e\xe9\xab\x2f\xd9\xcc\x12\xc0\x55\x28\x0a\x6d\x68\x10\xb0\x04\xa8\x84\x4c\x11\xc4\xd7\xbc\xe0\xa4\x2c\x3f\x65\x33\x46\x30\x60\x84\x77\x6b\x63\x2c\x10\x3b\x96\x19\x1d\x2c\xc2\x58\x0c\x91\xbf\xb9\x79\x71\x3b\xb5\x22\x5e\xba\x54\x84\x34\xe8\x36\x97\x69\x2e\xcf\xef\x85\x2c\x4a\xe0\x68\xe6\x69\xca\xac\xa0\x3d\x3d\x10\xe4\x69\xdb\x5a\xea\x64\x9b\xa4\x3c\xf7\x3a\x64\x57\x54\x16\x18\xec\xb6\xae\x8e\x96\xa7\x99\x04\x6c\x2f\x0f\x1f\x2e\x18\xd4\xfb\xec\xed\x05\x98\x40\x51\x61\x45\x36\xec\xc7\xe7\x12\x79\xcf\xe8\x8b\x5b\x0e\x29\x07\x85\x22\x7f\x1a\x7e\x9e\x1e\xee\x9e\x88\xfa\x98\x45\x6c\x3d\xcf\x4f\x05\x6b\x72\x95\xb4\xff\x71\x2e\x8b\x7c\x37\xd8\xae\xb9\x85\x1c\x5b\x0d\xb6\x29\x21\x98\xaa\xda\x64\xe8\xee\x60\xb6\xf4\x4b\x30\x76\x2c\xbc\x8e\xbc\xf1\xce\xe9\x8e\x68\x86\x0e\xfb\x3b\x35\x87\xd0\xb7\xda\x0f\x21\x0d\x0a\xf4\xc2\x52\x95\x32\xd6\x84\xb5\xda\x26\xf2\x74\xcb\x3f\xbf\xb0\x2d\x45\x5a\x01\xa7\x10\x00\x94\x51\x22\x35\x37\x91\x9d\xd9\xe4\xfa\xbb\x6b\x2e\x7b\xfa\x6b\xbf\xb5\x68\x77\x56\xb8\xf6\xf8\x3b\x2a\xa2\xc6\xee\xc5\xae\x6d\xfc\x1a\x2a\x2f\x88\x4c\xa3\x05\x0f\x85\x64\xb9\x30\x0f\x3a\x48\x5a\x8a\x48\x43\xf7\x6f\x80\x9e\x57\x94\xe8\xda\xf7\xee\x30\xca\x7b\xd4\xb2\x69\x8d\x2f\x3f\x81\x4c\x0f\x7d\xc9\x8c\x19\x46\x9b\xad\xa3\x93\xa0\xf6\x14\x46\x33\x83\xf5\x17\xb5\x64\x2b\xc8\x3b\x21\xa5\xe9\x5c\x80\x63\x1b\x86\xc2\xf2\x4a\x03\xb1\x50\x23\x84\x6d\xa7\x40\x2a\x34\xb8\x7b\xa5\xb9\x6e\x89\x4f\x25\x45\xec\xbe\xfb\xfd\xb8\x73\xb6\xc8\x77\xcc\x6a\x18\x84\x79\x2f\x94\xf6\x45\x67\x2e\xd4\xab\x94\x49\x1b\xdb\xd8\x75\x29\xcd\x51\xfc\x18\x60\x87\xe1\xd1\xac\xda\x47\xe9\x9f\x7b\x53\x43\xac\x23\x36\xc7\xe7\x9f\x8c\x3c\xf2\xe7\x1a\x67\x24\x7d\x0e\x80\xc8\x54\x7a\x78\xa0\x2d\x79\x74\xf7\xc0\xf3\x18\x7d\x85\x80\x3e\x98\xb2\x1f\xd5\x83\xb8\x17\xf9\x84\x45\x22\x2f\x38\x11\x36\x69\x08\xbf\xc2\x82\xa2\x72\xe6\x12\x70\xf9\xc8\x7e\x25\x41\xa4\xbb\x48\xd6\x1b\x73\x9f\x0c\x82\xe7\x2a\x37\xdb\x51\x81\x5c\x7d\x99\x88\x88\x22\xa7\xa3\x03\x56\x29\xbf\x6f\x32\x50\x1d\x92\xdb\xcf\x2e\x5c\x72\xa1\x8d\x4e\x59\xae\xfe\x3e\xb8\x03\x75\x18\x6d\x9a\x48\x6a\x32\x61\x6b\x95\x72\xb9\x9e\x4e\xa7\x4c\x14\xd1\xf4\xc5\xa8\x89\x4e\x05\x86\xf1\x2e\x07\xaa\x4d\x95\xd2\x22\xdd\x39\x5a\x17\x97\xf6\x00\x38\xbb\xcf\x85\x90\x3a\x41\x97\x47\xcb\xf4\xbf\xa9\x73\x04\x7c\x59\xd7\x79\xfb\x4d\x75\x74\x52\x5d\x47\x39\x20\xfd\x33\xa2\x24\x7c\xbe\xfd\xe6\x75\x50\x92\x68\x07\xaf\xac\x92\x63\x33\x1f\x7f\x56\x5d\x42\xd6\x07\xb1\xad\xb5\x96\x44\xd4\x14\x07\x65\x8b\x75\x79\x2c\x6a\x09\x7c\x47\xe4\xee\xf5\xa4\xe1\x8d\xcc\xc0\x6b\x59\x77\x2d\xcb\xa2\x36\xdc\xa3\x97\xc5\x7e\x35\x82\xd6\x06\x8d\xcc\x70\xf4\xa9\xc8\x63\x4c\x27\x4c\x92\x4a\x77\x70\xe3\x72\xf9\x8e\xe0\x59\x8e\x03\xcf\x78\xc5\xf1\x0f\x99\x37\x3e\x72\xe0\x28\x83\x82\x40\x81\x2e\x54\xce\xd7\x82\x6d\x45\x9c\x94\xdb\xd6\xcd\xc6\x55\xf7\x18\xb4\x97\x4a\xcb\x6d\x37\x79\xdb\xb1\x06\xb4\xaf\x24\xfe\xd7\x19\x7c\x6e\xb0\x01\xed\x25\xdb\xad\x28\x0c\xd5\x17\xdd\xe0\xd4\xd7\xe6\xa4\xcc\x13\x0d\x34\x83\x87\x24\xba\xb9\x62\xb0\x68\x88\xd6\xed\x32\x74\xbf\x56\x46\xf7\xc4\x46\x77\xe8\x15\x8d\xa3\x0a\x21\xbe\xee\x43\xa1\x8e\x21\x1b\x3d\x46\x20\x39\x72\x50\x5c\x13\xcc\xc6\x80\xfc\x9b\x40\x2e\x50\x20\x45\xe2\x0b\xc5\x56\x36\x75\xea\x4e\x04\x64\x54\x31\xd0\x82\x3f\x20\xb3\xc9\x4f\x3f\x68\x1b\xb3\x27\x58\x85\xb7\x58\x0a\xff\x11\x8c\x0d\xdc\x7f\x67\xd1\x34\xd8\x42\x2c\x02\x28\xa3\x62\x2e\x8b\xd6\x02\x3c\xd8\x0c\xca\xc2\x57\x7e\xe6\x65\xda\xfe\x38\x95\x0f\x8f\xa2\xc4\xd0\xec\x97\x1b\x86\x5d\x4d\x04\xd2\x79\x5f\x45\x83\x42\xf6\xe3\x79\xa0\xbb\x16\x07\x58\x82\x95\x71\xc0\x4e\xb7\x0c\xe2\xa6\xdb\x45\x11\x6d\xbc\xe5\x51\xd5\x0a\x26\xfd\x38\x6a\xe7\xd6\x53\x62\x23\x54\x32\xc4\x9c\x25\x6b\xa9\x42\x35\x07\x25\x05\x04\x69\xcc\x06\xa4\xc2\x62\x59\x52\xec\x07\xf6\x8c\xe4\x89\xda\x37\xd5\x0a\x85\x80\x0d\x6a\x67\x25\xd6\x06\x57\x8a\x04\xd9\x65\x2c\x2a\x12\xef\x44\x24\x47\x56\xa7\x4a\xae\xe6\xeb\xcf\x65\xf5\x53\x8d\x4e\xb2\xc8\x9b\x24\x17\xc8\x70\xaa\x8d\xf5\x56\x24\xf7\x66\xa1\x36\xa7\xb5\x9b\xa0\xb0\x03\x34\xe7\xde\x5c\x62\xb5\x03\x9a\xd4\x3b\xb1\xd3\xa1\xf6\x19\xcd\x28\xd6\x35\x21\x13\xd3\x1e\x1a\xaf\xfd\x43\x01\x1d\xb7\x08\xb4\xdc\x87\x9d\x65\xf8\xd1\x77\xe6\xe5\x1e\x48\x5f\xa3\x70\x33\x07\x7d\x6e\x9a\xf7\x29\xd2\x36\xe1\xfb\x99\xc6\xd0\xa3\x76\x5a\x74\xfe\xbd\x7b\x16\x2e\xbe\xe6\x7e\x3b\x97\xc4\xa4\x1c\x1c\x72\x66\xc3\x69\x0e\x1b\x25\xcc\x22\x7f\xeb\xae\x42\xf6\x01\x64\x77\x96\xf8\xaf\xfa\x49\x1b\x77\xb4\xd2\x99\x73\x09\x9f\xc6\x94\x42\xeb\xc3\x6b\xfd\xe0\x81\x50\x30\x1a\xdc\x4e\xf8\x57\x90\xb7\x83\x4f\x12\xdf\x1b\x8a\xe8\xe1\xed\x27\x12\xa6\xfb\x66\xb2\x15\x79\x65\x71\x57\x37\xe7\x67\xd7\xe7\xb7\x5f\x0c\x1e\x66\xb1\x59\xa3\xf1\x61\xb6\x9e\xaf\xcf\xdf\xcc\x3e\xbc\xbd\x5d\xbc\xbe\xb8\x7e\x0a\x80\x18\xfd\x74\x00\x42\xec\x86\x08\xda\xcf\x94\x2c\xc4\xe7\xa3\xce\xe4\xbc\x94\x0b\x3e\x22\x53\xc1\x49\x34\xf4\x99\x3b\x58\x68\x93\x60\xde\xb1\xbf\x13\xdb\x20\x9e\x68\x8e\x4f\x7e\xe5\x9d\x86\xab\x24\x4d\x21\x71\xd3\xb9\xd7\x29\x29\xc8\x74\x2a\xec\x3f\x96\x60\x91\xf6\xd4\xb9\x5c\x56\xf8\xff\xc1\xe5\xb7\x31\x97\x60\x4c\xd9\xcc\x4c\x07\xe4\x09\x24\xc4\xf5\x71\xd0\xaf\x13\x29\x7c\x35\x50\xf0\xb6\x94\xac\x93\x38\x98\x06\xf1\x29\xf3\x72\xc9\xf0\x1a\x6a\x6b\xda\x19\x57\x99\x9f\xd6\xfc\xb4\x3f\xba\x16\xe2\x22\x4e\x24\x1a\xa6\x95\xd5\x7c\xd3\x3e\x75\x4f\xfd\x12\x80\x7e\x37\x23\xc9\x21\x06\x01\x9a\xb2\x7e\x20\x69\x20\x50\x9b\xc6\x07\x27\xee\x12\x44\xd1\xa8\x55\xad\x9f\xcd\x56\x68\xfa\x3a\x81\x48\x05\x27\x2e\x8a\x28\x2d\x75\x21\x72\x72\x9b\xcc\x7e\xb9\x99\xcb\x57\xe6\xf8\x7a\x41\xa7\x10\xe9\x97\xe0\x27\x10\xc3\xa1\x2a\xdf\xb7\x16\x4a\xb8\x83\x3d\x47\x1f\xf5\x56\x70\xa9\x51\xef\x3b\x4d\x45\xee\x67\x06\xd6\x47\x88\x98\x34\xdf\x80\x7c\xd3\xbf\x4f\x92\xcf\x0a\x56\xad\xa9\x2f\xfd\x4a\xa2\xc7\xf5\xf9\xd4\x95\x17\x0c\x00\xd1\xa7\x9c\x39\x2d\x79\x0a\x43\x67\x11\x61\x6b\x5b\x27\x51\x35\x6b\x60\xd0\x5c\xba\xc5\xe2\x7e\x9b\x4a\x8f\x38\x95\x06\x9c\xeb\xe1\x29\xc1\x36\xca\x6c\xa0\x4e\xdc\xc3\x87\x99\x1d\x2f\x41\x0a\xf8\x27\xd3\x8d\xad\xa7\x4e\x4d\xe0\xee\x88\x53\x07\x15\xed\x8e\x83\x73\xce\x5a\x08\x50\xbc\x92\x92\x8d\xed\xf4\x6a\xe7\x3d\x0d\xd1\xd8\xcc\xe2\xed\xa4\x2a\x2c\x65\x80\x83\xb8\x11\x5e\xcf\x3c\xe0\xb8\x2a\x7a\xeb\x48\xfc\x0f\xd6\x4a\x59\x1c\xa9\x3f\x75\x1b\xe2\x02\x2b\x49\x94\x58\x8b\x30\xfd\xda\xa6\x5c\x3b\xca\x86\x31\x93\xef\x70\x85\xc3\xea\x9c\x73\xf4\x7f\x07\x81\x1d\x2e\xaf\x2e\xcf\x43\xa8\xc2\xc5\xe5\xed\xf9\x1f\xcf\xaf\x2b\xe9\xb7\x6f\xaf\x66\x95\x14\xda\x9b\xdb\xeb\x5a\xe6\xec\xab\xab\xab\xb7\xe7\x0d\xcc\xc3\xf9\xed\xc5\xbb\x4a\xe1\xaf\x3f\x5c\xcf\x6e\x2f\xae\x2a\xcf\xbd\xba\xb8\x9c\x5d\xff\x67\xf8\x97\xf3\xeb\xeb\xab\xeb\xda\xf7\x3e\x9c\xf5\xa3\x27\x2a\xcd\x68\x77\xff\xf8\xe0\x6c\xc0\x84\xd8\xba\x8c\xab\x0a\x90\x47\xac\xe2\x81\x20\xac\x7d\xd3\xd1\x66\xd7\xc6\x21\x41\x3a\x2e\x0c\x53\xd5\x51\xb3\xee\xf1\x25\x2b\x2b\x5d\x97\xf1\xe3\xb6\x3d\x73\xaa\x2d\x1e\x03\x14\xd7\x6b\x00\xba\xaf\xd4\x1c\xb7\xba\x80\x14\x24\xec\xda\x0c\x22\x58\x6b\xde\x29\xd8\x22\xe3\x27\xaf\xa9\xfd\xc6\xbe\x7a\x7a\xe6\x9d\x3d\x04\x26\x8f\x45\x5e\xd0\x57\xe9\xe0\x63\x36\x37\x38\x89\xad\xa1\x60\x7f\x0c\x0e\x6e\x68\x86\x99\x39\xc1\x74\xec\xd2\x16\x6c\xcf\x71\xe8\x27\xcb\x1a\x5b\x7f\xfa\x48\xb3\xee\x35\x66\x85\x11\xf5\x06\x86\x9b\x31\xf5\xbe\xe5\xfa\x6e\x6c\xbd\xe9\x23\xcd\x7a\x83\xd9\x77\x50\xbd\xc1\xe1\x5d\xb4\xb3\x5e\x8c\xd8\xc4\xc2\x62\xaa\xd5\x73\x29\xb9\xee\x91\x40\xc2\x73\x58\x1d\xcd\x02\x78\xda\xeb\x65\xc6\x87\x07\x32\xa0\x36\x6e\xb9\xf2\x1a\x09\xf4\x0d\xfc\x0a\x2d\x5c\xe6\x82\xdf\xc5\xea\x81\xc6\xa3\x8e\x0c\x65\x83\x76\xf3\x6a\x07\x99\x3d\xdc\x1e\x11\x20\xfc\x6d\x3e\x89\x28\x35\x5f\x3c\xc0\xe4\x12\xa2\x31\x46\x1b\x2c\xd0\x9e\xac\xf3\x86\x00\x53\x8b\xf4\xa3\x33\x97\x68\xcd\xb7\xe9\x57\x9a\x51\x35\x35\xa2\x4c\x7f\x68\xaa\xb3\xa1\x31\xb8\xae\x83\x81\xa5\x5c\x86\x32\x07\x30\xdd\x32\x87\x3b\x13\x74\x48\x22\xc1\x99\x9c\x9b\x0b\x4f\x2e\xa2\x44\x8b\x40\xc3\xa7\xf5\xc4\xfe\x74\x1c\xe3\x7f\xc1\x8b\x56\xb7\xeb\x60\x7f\x38\x8f\x8a\x92\xa7\xec\x53\x29\xf2\x1d\x11\xa6\xa1\xaf\x12\xff\x12\x71\x89\x49\x13\x85\xd8\x66\x90\x84\x1b\xa2\xfd\xe7\xf2\x17\x00\x4a\xe0\x10\x3c\xd3\xec\x8f\x00\x79\xb0\x0f\xd3\x21\xbc\xe5\x05\x9c\xc5\x7f\xc6\x6f\xb8\xdf\xa6\x73\x59\xd1\xc4\x08\xde\xaa\xc8\x63\x4c\xe7\xd2\x92\xd2\xc7\x2a\xd2\x53\xb8\xf1\x4d\x55\xbe\x3e\x25\x39\x57\x33\xd9\xd5\xdd\x52\xa9\xbb\x53\x21\x4f\xc1\x27\x55\x9c\xf2\xb2\x50\xa7\x00\x97\xc2\xf1\xd7\xa7\x56\xf5\xd1\xca\x66\xea\xd3\x4d\x72\x2f\xe0\xff\x4d\x37\xc5\x36\xfd\x17\x9d\x6d\x3e\x9f\xac\xd3\xfc\xc4\xbc\x7b\x12\xbe\x7b\x62\xdf\x3d\xb1\xef\x9e\x98\xd7\xf0\xff\x65\x3b\x0c\xef\x88\xcf\xdc\x9c\x65\x93\xb9\x4c\xa4\x16\x79\x01\xd6\xcf\x43\x9e\x14\x5e\x7c\x64\xc7\x9e\xfd\xcf\xff\xb0\x69\xce\x1f\x30\x7d\xee\x35\x2f\xf8\x7b\xf4\x2f\xfe\xfd\xef\xcf\x20\xa0\x8a\xf9\x2d\x19\xcf\x3f\x95\xa2\x98\x4b\x2d\xcc\x22\x64\xff\x67\x2e\x21\x02\xbb\xdd\x2d\x0a\xf4\xbb\xa2\x0f\x32\xd6\xec\x3f\xb0\xcc\x0b\x24\x0f\x8c\xb5\x29\xa9\x03\x59\x9f\xf0\xb4\x45\x28\xb8\xc3\x45\xff\x29\x7d\x4d\xcf\x8f\x58\xd6\x9f\xd2\xea\xaa\xb6\xf2\x17\xfa\x53\x0a\x07\x68\xaa\xb8\x05\x6b\x31\x37\x79\xe1\x9e\x4c\x95\x6b\x5b\x23\x0d\x68\xc0\x93\x86\xe9\xdb\xd7\xca\x0d\x12\x18\x5b\xcf\x7d\x63\x1b\x81\x58\x81\x8f\x43\x40\xf4\x3c\x31\x2b\xe4\x06\x3d\xa1\x60\xb9\x61\xcb\xc1\x26\xa5\xd0\xb9\x2b\x0f\x1d\x17\xfa\x0f\x2f\x4f\x4f\x27\x6c\xad\xe1\x7f\x96\x9f\xe0\x7f\x00\x3d\xf4\x58\x1c\x9c\x8d\xce\x74\x40\xb8\xe6\x28\xef\x1f\x89\xc7\x40\xd1\x7d\x09\xda\xe7\xda\x34\x7d\x55\xca\x38\x15\x3e\x1b\xb0\x12\x12\x49\x95\x15\x2a\x47\xc7\x58\x5d\x60\x03\xc6\x78\x29\x22\x6e\x36\xbe\xc6\xb7\x11\x5c\xaa\x56\x85\x90\xe8\x0d\xcb\xbd\xfe\x16\x47\xcf\x15\x98\xc5\x00\x85\xe4\x05\x41\xce\x05\xfc\x11\x3e\x02\x3c\xca\x93\xfa\x4f\x6c\xa7\x4a\xa2\x04\x06\xa2\xcb\x58\x44\x29\xf0\xae\x5b\xb2\x0f\x96\x8b\xa2\xcc\x25\xe3\x2c\xe3\x32\xe6\x1a\x66\xe0\x2a\x87\x68\x67\xce\x78\xb3\xa2\x13\x84\xe3\xaa\xb2\x00\x0a\x1b\x44\x16\x84\x3d\x81\x9c\xcd\x41\x9d\x27\x41\x25\xf0\x4c\x00\xea\xd8\xc6\x8b\xd3\xb9\xb4\x0a\x51\x84\x85\x43\x4f\x59\xa4\xb2\x1d\x11\x94\xd4\x3b\x3d\xb1\x9e\x33\xea\xee\x89\xc7\x9b\xd4\x9f\x9d\xb0\xa4\x1a\x5a\x03\x7a\xe8\x22\xd0\xb8\xb5\x2a\xc1\xcf\x85\x8c\x54\x2c\x72\xfd\xc2\x2c\xc3\xc4\xdd\x3b\xd0\x7e\x48\xb4\x1f\x0c\xd8\xa5\xcc\xe1\x46\xde\x42\x53\xbc\xd3\x51\x31\xbd\x53\x21\x14\x6e\xb3\x73\xf6\x2f\x95\x6f\x1d\x05\xd3\x56\x5f\xfa\xcf\x2f\x8a\x88\x09\x71\x9d\xf6\xce\x79\xb8\x0b\x02\x97\x6c\xb8\xe3\x62\xa1\x68\xe3\x90\x71\x62\x05\x45\x93\x02\x34\xcb\x72\xa1\x8b\xb9\xa4\x13\x78\xc2\x56\x82\x1b\x3b\x6f\xc2\x22\x7d\x8f\x9b\x31\x1e\xf7\xc5\x83\xf2\x18\x1c\xab\x46\x01\x60\xd8\x4a\xe1\xde\x49\x8c\x8f\x01\xa2\x80\x47\x05\x02\x0c\x3a\xb5\xa7\xad\xa9\x02\x9d\xd5\xba\x21\x1e\xd0\x0f\x56\xdc\xa0\x2e\x24\x14\x6a\x6b\x40\x4f\xec\x30\x50\xcc\xea\xf5\xc0\x1f\xcc\xc6\x83\xad\x43\x18\x48\xb0\x39\x82\xc5\x4d\x58\x5a\x5c\x67\x3e\x86\x1b\x32\x4c\x83\x6f\xa6\x6b\x51\xf5\x74\x04\x54\xe0\x30\xbf\x85\x79\x75\xaf\xc3\x4a\x8b\xdc\x2a\x2f\x60\x5b\x91\x0f\x6e\x93\xe4\xf1\x49\xc6\xf3\x62\x67\xa7\x6f\x9a\x2c\x81\xb0\x3d\x4d\xee\x04\x9b\xe5\xb9\x7a\x78\xec\x5e\xe8\xdc\x5a\xba\x6e\xd8\xc7\x20\xd9\xc7\xde\xf2\x5b\xd9\x20\xeb\xee\x8e\xc3\x98\x27\xbb\x1c\x1f\xad\xdf\xc9\x45\x91\xef\x16\x66\x22\x6e\xb3\xce\x9d\x62\x50\xd2\xc4\x70\x23\x77\x1c\xa9\x65\xcd\x85\xd1\x49\x6a\x59\x19\xd5\x6f\x87\xd4\xb2\x85\xaf\xb2\x49\x6a\x79\x71\x79\x71\x7b\x31\x7b\x7b\xf1\xff\x6a\x25\xfe\x32\xbb\xb8\xbd\xb8\xfc\xe3\xe2\xcd\xd5\xf5\xe2\xfa\xfc\xe6\xea\xc3\xf5\xd9\x79\x3f\x4b\x4d\xb3\xf6\xde\x04\x3f\x61\xe1\x77\x5e\xb2\xdb\x00\xa8\x81\xc9\x06\x64\x7f\x93\x62\x21\xcc\x2a\xb3\x98\x13\xb9\x9e\xc0\x42\x7d\xc9\xce\xf3\xfc\x62\xcb\xd7\xe2\x7d\x99\xa6\x00\xa7\xc2\xcc\x9e\xb3\x5c\xc0\xc5\x73\xc2\xde\xab\xf8\x22\x78\x0f\xd2\x11\x5b\x9b\x01\xdf\xe7\x71\x9c\x0b\xad\xf1\xf3\x13\xfa\x7e\x00\x1e\x72\xa9\x8e\x04\x9e\xe3\xf7\x3c\x49\xcd\xfd\xed\x25\x7b\xc5\xa3\x3b\xb5\x5a\x61\xfa\xcc\xc4\x25\x4e\xb1\x4f\xa5\x2a\x38\x13\x9f\x23\x60\x66\x6a\x9f\x27\x6f\xd5\xfa\x2b\x40\x95\x07\x84\xa7\x3a\x2e\x29\xa0\x4c\xb5\x68\x3f\xce\xdb\x37\x02\x6a\xe5\x3b\x7c\xf5\x0d\xbe\xd9\xee\xa0\x2c\xd2\x47\xc8\x14\x7f\xab\xd6\xed\x3a\x21\x60\x5d\x93\xb8\x09\x05\x12\x22\xe2\x9d\x50\x6b\xa6\x13\x79\x37\x97\xbf\x6c\x84\x64\xaa\xcc\xf1\x4f\x70\xcd\x37\x66\x66\x5a\xea\x8d\x00\xe1\xd0\x09\x7b\x10\x6c\xcb\x77\x68\x36\xc3\x9d\xc0\x89\x1b\xc0\x94\x81\x53\xc4\xbc\x9d\x26\xd2\xec\x16\x59\x62\xf3\x12\xea\x43\xff\x18\x37\x2e\xcb\x4b\xc6\x8f\xa7\x0d\xed\x3b\x4f\x2b\xf8\x3c\x70\x95\x79\xdc\xa4\x05\x08\xd1\xce\x0d\xda\x89\x4a\xdd\x95\x99\x67\x30\x7c\x66\x83\x93\xd0\xdd\xf7\x2a\x89\x59\x5c\x66\x69\x12\xb9\x7d\xf7\x41\xe5\x9d\x34\xad\x98\x40\x33\xfc\xd4\xa9\xa7\x85\xf5\x35\xac\x25\x3b\x27\x40\xd2\xf5\x10\xb6\x3e\x31\x65\x2d\x4b\x64\x94\x96\xa0\x0a\x55\x6a\x91\x9f\x14\x79\xb2\x5e\x83\x01\x6e\x73\xfd\xbe\x7d\x4e\x5b\xcf\x99\x77\x7c\x5a\x5b\x98\x74\x9e\xaa\x75\x12\xf1\x34\x04\x37\x7b\x54\x84\x23\xcd\xb4\xcb\x9e\x34\x33\x21\x0f\xc2\x56\xa8\x93\x0c\x28\xcb\x05\xf0\xb6\x2e\x60\x2b\x5f\xd0\x76\x77\x4c\xbd\x57\xcc\x5c\xd0\xb1\x5e\x21\xa5\xa5\x0d\x2f\xd8\x13\xce\x7f\xdb\x0a\x27\x81\x89\x89\xa2\xca\x4c\x3d\x48\x91\x83\x05\x0b\xb0\x0f\xd3\x52\xa9\xc0\x36\x71\x62\x4a\x0e\x9f\x6c\xc5\xc4\x56\x0e\x88\x8d\x99\xb3\xeb\xe4\x5e\xc8\x2f\xcf\x41\x1c\x7c\x20\xe2\xd1\x46\x2c\xac\x5d\xfe\xd8\x5b\x96\x3b\x00\x46\x6e\x56\x56\xd5\x20\xdc\x4a\x5d\x78\x13\xae\x4e\x58\xe3\xe6\xde\x85\x81\xc4\x9e\x8c\x2c\x53\x89\x45\x2c\xa2\xbb\x2f\xbe\x35\x7b\x90\x95\xad\x08\xe3\xec\xb5\x88\xee\xd8\x87\xeb\x0b\xcc\x06\x4e\x0a\x66\xb6\x02\xbd\xf1\x2a\x2d\x9d\x77\xb7\x82\xaf\x9f\x80\xdc\x68\xa8\xcc\x8c\x67\x16\x77\xe2\x5a\xa6\x42\x04\x88\x82\x7c\x49\xb3\x49\x52\x2e\x0d\x00\xc1\x78\x61\xc5\x47\xc0\x11\xcf\xf4\x16\xb4\x46\xca\x22\x10\xe8\x4a\xf9\x52\xa4\xba\xbd\xc1\x99\x8a\x17\x36\x4e\x72\x2c\x98\xa7\x51\x96\xf5\x63\x50\xd4\xd1\xe6\x31\x70\x63\xb1\xde\xd2\x83\xec\xee\x07\x1d\xd0\x6b\xa8\x90\xee\x17\xee\xf5\x5c\x8b\x9a\x62\x7d\xb2\x22\x45\x14\x4c\xe8\x07\xed\x6f\xb3\x5f\x9a\x92\xde\xab\x98\x60\x7a\x8e\xcf\xcb\x58\x41\x82\xbc\x27\x1e\x57\x11\x56\xc1\xe9\xa3\x6b\xf0\x0d\xe8\x42\xf0\x98\xa9\x15\x79\x13\xb3\x2c\x4d\x80\xc8\x35\x46\xce\x68\x60\xcf\xd0\x55\x74\x7c\x58\x9a\xad\x6c\x40\xf2\xf1\xde\x02\xf1\x7a\xe3\x8d\x3e\xc8\x65\xda\x55\x75\x72\xd7\x6d\xaa\x63\xb5\xbf\x5c\x3e\xd2\xa1\x57\xe8\x7e\x6f\xda\x3a\x55\x4b\xe8\xa8\x6e\x50\x5c\xcf\x06\x6d\x76\xa7\x3c\x89\xc7\x1c\xef\xb6\x4f\xae\xdc\xab\x7d\x15\xbc\xb2\x9e\x0e\xf7\x25\x3b\xcc\x8c\x68\xb6\xc3\x08\x7e\x2d\x8d\x7d\xdf\x5d\x1b\x02\x84\xda\x45\x08\x9d\x35\x6e\x49\xe6\x61\x55\xb8\xed\xb8\xe3\x5a\x5d\x6d\xcb\x51\x03\xdd\x24\x46\xd9\xd3\x97\x9e\x4b\xa5\x7f\x90\x8f\x60\xb7\xc0\x95\xeb\x28\x2e\xc6\x30\x05\xdb\xa1\x43\x8c\xaf\xe9\x4f\x3f\x88\x95\xe4\x8b\x41\x23\x5a\xef\x77\xbb\x8a\x8f\xe9\xf2\xa7\x58\x51\x65\xa1\xbc\xcb\x1f\xda\x73\x01\xfc\x99\x61\x5a\x17\x6c\x1b\x17\x71\x07\x5c\xc0\xda\x60\x76\x69\x8e\x00\xa1\x8e\x82\xc1\x66\xb9\xb0\xc1\xa3\x9d\x28\x5c\x72\x7f\x6a\xb5\xa0\x20\x36\xe2\x5a\x5d\x65\x37\xb1\x04\x06\x8e\x91\x0a\x22\x19\x64\xef\x45\x6a\x9b\x29\x09\xd8\x14\x4c\x55\x9a\x4b\x2a\xdc\x2a\xfa\xba\xf0\x4a\x25\xdf\x6d\x42\x5e\x2d\xcc\x9e\x10\x5a\xa5\xf7\x14\x47\x0b\x88\xe7\x41\x0b\xcc\x54\xf0\xcc\x5c\x10\xcc\x75\x18\x02\xbc\xb4\xbd\x03\x1c\xbc\x26\x6b\x9b\x8b\x75\xa2\x0b\x11\xa6\x08\x86\xef\x3f\x9a\x02\x61\xe5\x06\xdd\xd7\xf5\x9d\x0a\x84\xfb\x4c\x61\xb3\x6a\x47\xd4\x67\x97\x89\xf8\xc2\xbd\xd7\x3f\x19\x6a\x59\xdc\x7e\x93\xa8\x9c\x02\x38\x07\xf0\x0a\xa0\x91\xef\x49\x3b\xca\x78\x37\x48\xc4\xc4\xc3\x3d\xaa\xcd\x0c\xd1\xba\xe4\x39\x97\x85\x10\x7a\x2e\x29\xfa\x88\xbc\x65\x21\x35\x47\x0d\x0d\xe7\x0c\xdc\x48\xe9\x02\x69\x80\xe0\x95\x15\x4f\xd2\x32\xef\xbc\x73\xe2\xac\x3c\x88\x7b\xa0\xaf\x97\xce\xa0\x58\xd6\x36\x68\x2e\x8b\x35\x58\x45\x8e\x3a\xa3\x1e\x3b\xac\x26\x79\x76\x34\xc1\x6e\xb9\xc3\xc7\xdb\x39\x1c\x3b\x12\x5b\x7f\xd0\x8b\x4c\x8d\xd8\xf1\x7e\xfa\x41\xbf\x57\x1d\x29\xc1\xfa\x53\xc3\x31\xd6\x13\x43\xff\xd4\x45\xa2\xcf\xf5\x1d\x84\x9f\xf6\xdd\xc7\xf7\x3b\xd9\xff\xf0\xfd\xfe\x20\x55\xe7\xde\x05\xb3\x76\xc3\x65\x9c\x9a\x7b\x2a\x2f\x6a\x27\x90\x07\xfb\x1a\xbb\xb8\xb0\x9b\x63\x77\x66\x17\x24\x4a\x2c\xa2\x46\x96\xdd\xbe\x7e\xaa\xa5\xe7\xf5\x02\xea\x6a\x5f\xa9\x26\xcd\xb5\x25\x6b\xf8\x93\x9d\xa4\x2b\xdd\x82\xed\x9e\x82\xab\x64\xfd\x0d\x5c\xb2\xde\x35\x77\xca\x88\x96\x22\x9d\x5f\x0e\xf9\x7d\xe4\x62\x84\x24\x1b\xb3\x99\x85\x3c\xbd\x73\x49\xca\xb6\x18\x79\x85\x90\x1b\x72\x51\x69\xf6\x9d\xcb\xbc\xfc\xee\x5f\x2d\x13\xd1\x8e\xad\xa0\xaf\x81\xee\x4b\x45\x51\x99\x43\x58\x94\x5c\x37\x4c\xe0\xd9\x34\x86\x4e\x7d\x86\x27\xb2\x03\xb3\xa0\xf9\xd4\x66\x3d\x38\x5f\x5d\xa5\x51\xb7\xe0\xa2\x41\x8d\x5e\x77\x16\x92\xf4\x4a\xae\x0b\xa6\x0b\x91\xb5\xee\x4a\x15\xa3\xab\x2a\x43\x7d\x84\xd9\xe5\x45\xb0\x07\xda\xba\x23\xf6\xe8\x59\x70\x9d\xfe\xd3\xcd\xd5\x25\xcb\xf8\x0e\x70\x61\x85\x22\xfd\x70\x20\x63\xac\xaf\xdf\x7d\x23\x50\x6d\x7c\x75\xb1\x61\x9f\x5a\x80\x69\xbb\xef\x96\xbe\xd8\xb4\xa1\x60\xce\xd0\x94\x34\x4b\x39\x57\xe9\x49\x96\x72\x19\x40\x7f\xf5\x94\xd5\x3e\x1f\xc6\x7a\x5d\xd4\x87\xd0\x34\x50\x01\x70\xa7\xd0\x5c\xc8\xcb\x56\x70\x68\x55\x59\xfb\xa8\xf0\x6e\xe7\x1e\xd1\x0b\x7a\x7b\x87\x74\xfa\x3c\x32\xcb\x04\x99\x05\x6c\xc8\xda\xa1\x1e\xb8\x06\x40\xe2\x88\x81\xea\x97\x01\x9f\x4b\xab\xf2\xaa\x1e\x34\x8b\x91\x7b\xa1\x4c\xf4\x06\xfc\x93\x18\x10\x00\x70\x10\xed\x2f\x88\x5c\xc8\xb9\xd4\x66\x40\xc1\xa7\x29\xee\x05\x39\x36\x2a\xc1\xb8\x8b\xd7\x6f\x5d\x7c\x1f\x07\x89\x84\xb8\x3a\xba\x3e\x30\xcc\x8e\xb9\xc0\xb4\xea\x52\xef\xe7\xb8\x7f\xc7\xb3\xbe\xac\xb1\xa3\x4b\xdc\x37\x4a\x8e\x79\xa6\x6e\x75\x82\x42\x27\x68\xf3\x54\x52\xc7\xc2\xde\xfb\x20\x8f\xdc\x7e\x5a\x49\xaf\xf7\xf3\xeb\x0f\xbe\x84\x0d\xcb\x04\x1c\xb1\xf7\x04\x24\x70\x0e\x5b\xe3\xec\x65\xb3\xca\x41\xf9\x04\xd8\xab\xd0\x93\x36\x65\x37\x42\xb0\x8f\xd0\x53\xe6\x63\x1f\x49\x59\x0b\xe0\x82\x05\x4f\x5a\x85\x4f\xe0\xe9\x0b\xb9\x52\xc7\x6d\x06\xf9\xba\x01\x47\x3b\xaa\x57\xda\xeb\x79\x2c\xe0\x0d\x52\x19\xe5\xd3\xe6\xdf\xb7\xb6\x6b\x0f\xbc\xed\xbd\xbf\x93\x53\x56\x9e\xad\xa9\x39\x9f\x61\x88\x0f\x61\x78\xaa\x4d\x12\xd3\xca\x09\xb2\x16\xdf\x49\xf5\x20\xd1\x16\xa0\x2f\xb1\xe7\x66\xfd\xc1\x01\x86\x0e\x54\x34\x0b\x4a\xdc\x0d\x5f\x00\x8d\xf2\xcc\xfd\x9b\xdd\x60\xac\x08\xeb\x0c\x3a\x21\x1a\x8c\x1f\x52\xf8\x80\xdd\xfc\xf9\x6c\xc2\x5e\x4d\xd8\xd9\x84\x4d\xa7\xd3\x17\x13\xd4\xeb\xa5\x1a\xe1\x2b\x88\x1c\x2b\xf8\xda\x94\x4d\xca\x09\xab\xe0\x03\x20\x7b\x63\x0e\x2b\xcb\x16\xc6\xfd\x53\x81\xe7\xc1\x36\x01\x73\x18\x29\xe1\x82\xe2\xea\xd1\x46\x25\xbe\x52\x00\xd1\x14\x91\xca\x2d\xc8\x53\x17\x2a\xb7\x80\xb5\x7b\x9e\xf3\x44\x42\x6a\x37\x6f\xc2\x75\xe9\xcb\x01\xb9\xb3\xf8\xcc\xb7\xd0\xfe\x44\x3a\x7e\x4b\xd3\x4d\xb7\xae\xfe\xc5\x2e\x23\x87\xf4\x43\x9e\x14\x85\x39\x9d\xf5\x5c\xde\xb0\x97\xff\xc1\x66\x59\x96\x0a\x36\x63\x7f\x63\xaf\xb8\xe4\x92\xb3\x57\xec\x6f\xec\x8c\xcb\x82\xa7\xaa\xcc\x04\x3b\x63\x7f\x33\xdd\x66\xca\xbb\x54\xe6\x38\xdc\x4d\x18\x67\xb2\x4c\xf1\xd4\x7f\x6e\xc1\x60\x2f\x5c\xbb\xb8\x1f\x9d\xa5\x28\x1e\x84\x90\x4c\xab\x2d\x1d\x85\xbf\xba\x98\x84\x4e\xe4\x3a\x15\x05\xcd\x87\x2a\x6c\x0f\x3f\x70\x02\x2d\x7d\x39\x97\xce\x97\xf7\xab\xa9\xf1\xaf\xec\x6f\xec\xb2\x4c\x53\x53\x25\xb3\xd1\x98\x89\xf4\x92\xd9\x34\x0a\x21\xa7\x0f\xc9\x5d\x92\x89\x38\xe1\x90\x48\x61\xfe\x75\x7a\x0b\xa3\xbd\x28\x3d\x67\x5e\xb8\xa6\x9d\xf6\xca\x31\x5b\xcf\x93\x24\x65\x3b\x09\x1e\x3b\xf8\x3d\x37\xbf\xea\xab\xe3\x2d\x22\xcf\x14\x4a\xeb\x81\x0c\x56\xd4\xcd\x09\xa5\x7e\x0e\xda\x02\x6a\x87\xad\x2d\xab\xe5\x28\x08\x0f\xf5\x63\x37\x59\x50\x8e\x7a\xf4\x3b\xe4\x00\x19\x9f\xa1\x5b\x6e\x43\x84\xa4\x92\xe6\x0e\xb6\xa4\xa7\xfa\x19\x14\x15\x72\xe2\x23\x3f\x57\xa5\xb3\x2a\x5d\xac\x92\x41\x1a\x63\xb5\xca\x7e\x20\xdf\x05\x26\xa8\x99\x65\x9a\xa4\xa7\x66\xa9\x9e\x5e\x2a\x69\xae\xad\x3a\x59\x23\x3d\x11\xc0\x88\x34\x10\xb2\x5a\xa3\xe0\xb6\x6a\xb2\x06\x4b\x00\xec\x03\x53\x25\x84\xb6\x15\x66\x17\x30\x43\x90\xee\xe6\xd2\xbc\x41\x27\x12\xc0\xdc\x13\xc7\x62\x8b\x5f\xb3\x6a\xe6\xf4\x2d\xda\x90\x83\xc2\x5b\x26\x58\x5f\x0e\xed\x11\x13\x8e\x52\xb6\x8e\xf0\x8a\x5f\x06\x0c\x6e\x54\x9a\xa5\xf7\xc0\xb8\xe7\x52\xa4\x4a\xae\xcd\xac\xe8\xda\x04\xd4\x96\x27\xc7\x00\x4b\xc2\x2a\x60\x61\x9d\x35\x30\x87\x25\x3d\x42\x43\x62\xce\xc9\x24\xf6\xf7\x7b\x5d\x2e\x8d\x1d\xe1\x3c\xb2\xee\x34\xa4\xc6\x75\x25\x14\x1f\x17\x5f\xfe\xa0\x45\x0e\x34\xcb\x88\x70\x70\xde\x7e\x3c\x38\x3d\xd9\x06\xb6\x68\xd8\xa2\xea\x05\xc6\xb6\xbb\x42\x28\x9a\xd0\x48\xad\x1e\x30\x1f\xbf\x26\x46\xf6\x29\xe5\xe0\x5b\xb5\xdf\xe1\x39\x53\x1a\xfd\x69\xac\xbe\xbb\xed\xbd\xc7\x80\x0f\x7e\x42\xb9\x97\x85\x5a\xd9\x4c\xca\xe1\x67\x7a\x43\x70\x67\x18\x4a\x25\x24\xd9\x0e\x85\x69\x9a\x13\xa7\x33\x1f\x5c\x2e\x28\x22\x31\xac\xb2\xf5\x0e\xbb\x92\x6f\xf0\xf5\xf7\x2a\x4d\xa2\x7e\xd0\x9b\x3d\xae\x36\xea\xa1\x05\x45\xb4\x14\x80\x02\x25\xff\x0f\x55\x0a\x2d\xf4\x42\x44\x85\x8f\xb8\x35\x1b\xf7\xbf\x1a\x68\xb3\xff\x0e\x8e\x1e\x65\xd7\x6d\x20\xfa\xe8\x62\x78\x70\xb6\x02\xc1\x26\xf0\xca\xa3\xaf\x15\x72\xe9\x20\xb6\x1d\x71\x72\x41\x57\x7a\x1e\x36\xe8\x87\x8d\x4a\xcd\x5d\x4c\xc6\x44\x56\x3a\x97\x99\xc8\x23\x05\x00\x15\xcc\x83\x57\x2c\xda\x24\x69\xec\xc5\x5b\x9e\x03\xa2\x17\x70\x77\x2f\x48\xa1\x4e\xb8\x18\xb3\x2d\xbe\xe7\xd4\xb5\xd3\xce\xaa\x54\x1f\xe7\x81\x7a\x3c\x88\x5e\xdf\xb4\xff\x85\xa0\x64\xd8\x15\x44\x2f\x54\x8b\x16\x9a\x4e\xaf\xd4\x67\x94\x87\x17\x74\xa4\x57\x56\x07\xd3\x5e\x9c\x8a\xda\xb8\xd2\x34\xab\x77\x25\x90\xce\x22\x8a\x0a\x01\x24\x5a\x40\x75\xb6\x82\xa3\x2d\xe6\x29\x20\x69\x50\xe7\xd2\xc7\x47\x9f\xe9\xd0\x2e\x6b\x1d\x67\xe4\x54\xb5\x20\xc0\x09\x7b\x56\x69\xe8\x33\x20\x25\x95\x0a\xbe\x47\x31\xac\x4a\xd7\xc0\x74\x9d\xb0\xa4\x98\xcb\x44\xe3\xcc\xcc\x45\x2a\xee\x4d\xed\x42\x67\x31\x61\x5d\xec\xdd\xd9\x36\x1b\x70\xe4\xdc\xa6\x1f\x3b\x71\x73\x58\x84\x79\x48\x6e\xc9\xc1\x31\x1d\x0b\x6d\xec\x46\x90\xe5\x10\x9f\xcd\x02\x48\x20\x16\x82\xf0\x8f\x58\x48\x5b\x3f\x40\x85\xa0\x7e\xea\x5c\x5e\xac\x20\x07\x14\x32\x4f\xe3\x18\x6f\xa1\x56\xa8\xc1\x31\x8d\x25\xe4\x1c\x56\x74\x27\xb7\x03\x41\x02\x8b\xb8\x92\xc4\xbd\xc8\x77\x05\x38\x75\xa1\x5f\xa5\xe0\xc5\x86\x25\xc5\x04\x28\xe2\xec\x4e\x39\x97\x3c\x26\x7d\x6a\x2a\xce\x74\x0d\xcc\xfb\x9e\x71\xa6\xdf\x97\xea\xbe\xcf\xb0\x3d\x16\xf5\x85\xab\x3a\x4b\xb9\x5c\xe0\x09\xf2\x15\x70\x5f\x81\xf6\x65\x57\xa8\xb3\x5c\x2e\x1c\xad\xcd\xa3\xd4\xd3\xed\xf7\xd7\x15\x45\x5a\x63\xc7\xda\x0f\x4d\x70\x32\x78\x5a\x6b\x7b\x3d\x71\x7e\x1a\x42\x17\xe4\xcc\x46\x60\x87\xef\x02\x1e\x12\xc6\x6b\x48\x04\x3b\x5b\xf7\x61\xc2\xec\x0c\xf8\x56\xf1\x49\x43\x46\xbe\x76\x86\xd4\x87\x7d\x3c\x34\xa6\x61\x21\x1e\x04\x8f\xd9\x53\xad\xa7\x85\xc8\x74\xfa\x51\x9a\x50\x19\xdb\xda\x20\xdc\x87\xc9\x13\x02\xfd\x70\xce\xcd\xd3\xae\x6d\x1a\xde\xc3\x54\x0b\xb6\xf2\x31\x7d\xd4\xb0\x4f\x0d\xf5\x94\xf8\xdc\x6b\xa8\xd7\x94\x5d\x48\x66\xcd\xbd\x09\x7b\x86\x13\x4b\x3f\x23\x17\x24\x09\xe4\x52\xec\x3c\xa6\xd5\x43\xd9\xaa\x75\x28\x06\xe6\x0c\xf8\xe5\x86\x91\xa0\x5e\x6a\xc3\x27\xed\x97\x57\x09\xe4\x2c\x1c\x92\x96\x8e\x51\xc4\x25\x16\x40\x87\x24\x5e\xbb\x77\x68\xb4\x2b\xef\xcd\xf6\x0d\xb6\xf1\x2e\xf6\xca\xbe\x68\xba\x28\x2b\xe9\x3c\xb5\xbf\x33\x95\xcf\xa5\x2d\x8d\x5c\x92\x1a\xb5\x94\xea\x45\x05\x10\x6a\xb2\xf9\x83\x99\x0a\x20\x06\x2b\x9f\x05\xaa\x6c\x9e\x7f\xb5\xbe\x0b\x00\x28\x62\x29\xbc\xb4\xf7\x94\xcd\xfc\xd7\x8c\xe1\x61\x26\xf8\x16\x8f\xf9\x3a\x47\x63\x9a\x9a\x4e\x49\x0a\x4b\x09\x19\xa4\x37\xe8\x12\x88\x4d\x57\xa5\xd9\x8c\x02\xf6\xd7\xb9\x34\x9d\xc7\x56\x09\xe0\x7e\xa9\x5f\xe6\xf2\x9d\xd2\x36\x9b\x5e\xfb\xfe\xb0\x18\x52\xea\xb6\x67\x4e\x45\x8c\xfe\xf0\x1a\x0e\x6d\xf2\xf9\xd7\x64\xe5\x21\xaf\x85\x28\x31\x76\xaa\xcc\x7d\xa3\x22\x2e\xe7\xf2\x2f\xa6\x7b\x50\xd4\xd9\x29\xa2\xab\x15\x2e\x61\x2b\xc3\xcf\x9e\x7f\xc4\x42\x9f\xff\xeb\x8b\x8f\x2f\x10\x87\x5e\x6a\x10\x6e\x9c\x54\x0f\x10\x47\x04\x5e\xa6\x29\x44\xa2\x6d\x0b\x1c\x19\x85\xff\x04\xef\x83\xe5\xd0\xa5\x6e\x21\xab\x26\xc6\x90\x85\xde\x37\x83\xbd\xf3\x79\xc6\x22\x5e\x44\x9b\x13\x6b\xcb\xd1\x36\x66\x4f\x3f\x1a\x3e\x54\x70\x33\x96\x56\x3b\x17\xb6\xb9\x70\xe6\x5b\xc7\xce\x57\x99\x2f\xa6\x09\x00\xac\xb9\xad\x0b\xc3\x38\xf2\x50\x9c\x9c\x5e\x93\xdc\xdb\x79\xee\x71\x2b\xcb\xe6\x6f\x9c\xe4\x25\x97\x7c\x2b\x62\xf6\x0c\x32\xa6\x9e\xd9\xc1\x9f\xcb\x6c\x39\x4d\x77\xab\x82\x28\x9e\x4c\xa7\x4c\x41\xc0\x68\xcf\x29\xb7\x88\x9b\xd7\xa4\x3d\x9d\xdd\x79\xd1\x6a\xb7\x75\x5c\xdf\xb8\x2f\x0d\x37\x58\xd0\xc7\xe5\x7a\xe7\xa6\x0a\x11\xaa\x32\xa9\x73\x7d\x37\x61\xcb\x9c\x4b\xd0\x9e\x88\x43\xa3\xca\xaf\x4e\xb8\x3c\x23\x7f\x92\x4d\xa1\x90\x3c\xdd\x01\x76\x7c\x32\x97\x48\x36\x05\xac\xc4\xbb\x28\x4d\x22\xb6\xce\x79\xb6\xa9\xd9\x41\xe2\x5e\xc8\xe2\x9c\xd8\x15\x2c\x48\xfd\xd8\xd0\xb2\x63\x6b\x38\x8a\x73\xef\xa2\x6a\xed\x70\x4f\x43\xe1\x3d\xac\x98\xa8\x42\x37\x6a\x0b\x6a\x75\x13\x7c\x42\x52\x68\xc0\xc7\xc5\xfe\x5c\x2e\x55\x6a\x09\xcd\x2e\x5e\x33\x95\x83\x96\x40\xa1\xe8\x4f\x49\xdc\x75\x8a\x25\x32\x16\x9f\x8f\x62\x15\xe8\x3f\x90\xac\x79\x67\x3e\x13\x50\xd6\xd7\x1b\x0b\xab\x28\x17\xe6\xb0\x28\xec\x0d\xae\xf1\x94\xae\x23\xec\x66\x69\xb1\x01\xd8\x1b\x02\xae\x7d\xa7\x6e\xf9\x8e\x45\x1b\x2e\xd7\xc1\x15\x1a\x50\x48\x22\x53\x39\x6a\xee\xdd\x03\x7d\x97\xca\x6d\xd6\x26\xe5\x22\x12\xea\xdb\x39\xbc\x11\x6c\xa9\x6c\xc2\x21\x5f\xaf\x73\xb1\x86\x44\xfa\xb9\xac\x64\x53\x03\x75\x99\xa5\xfb\xc7\xef\xf4\x25\xa3\x3e\x0e\xa3\x43\xd7\xad\xa5\xc8\x77\x2e\x95\x8f\x04\x2b\x5d\xd7\x35\xba\x75\xc2\x12\x31\x9d\xb0\xef\x3d\xc0\x54\x44\x4a\xba\x5c\xc0\x8e\x44\xb0\x9a\x6b\x7a\xcf\x5e\xd4\x42\xfd\xd0\x5e\x77\xf8\xad\x21\x7b\xd9\x3a\x69\x7a\x93\x29\x0b\x5e\x94\x23\xf6\x4a\x92\x36\x3e\x33\x2f\xdf\xe0\xbb\xbd\x18\x6c\x9e\x99\xed\xcd\xd2\xee\x98\xe7\xcd\x0e\x6f\xbe\xed\x69\x79\xdb\xfa\x7a\xaf\xa3\x33\x55\xdd\x8e\xce\xc7\x30\x29\x2d\xb7\xc2\x7e\x5f\x67\xda\xc1\x17\xd0\xd3\xa6\xb1\xae\x4c\x0b\x46\x25\x98\xb9\xae\x5f\xb7\x5a\x76\x80\x2c\x57\x71\x19\x89\xd8\xac\x5c\xb0\xdb\x11\xb9\xe1\x68\x0b\x2a\x9b\x64\xdb\x81\x50\xe1\x5e\x01\x81\xeb\x2f\x75\x37\x1e\x44\x77\xeb\xba\xff\x43\xc7\xbd\xd8\x5a\x26\x6d\x9d\x1e\xae\x4f\xec\xa7\x7c\xe4\x39\xe5\x3e\x5f\x25\xa9\x55\x79\xb2\x4e\x24\x2f\x54\xce\x9e\xbb\xe4\xc4\x17\x4e\xd9\x06\x7a\xf1\x31\xb6\x89\x4a\x17\xe1\x36\xd1\x7e\xf7\x02\x3c\xb3\x88\x17\xe3\xb8\xb3\xc6\x32\x3c\xc3\x24\x35\x4f\xe9\x82\x6f\xb3\x90\xf6\xd1\xe9\x06\x53\xcf\xa4\xd8\x09\xcc\x56\x0c\x7c\x7c\x89\xf6\x39\x58\x73\x49\x9e\x71\x1c\x37\x95\x87\xbc\xc5\x9d\x67\x73\x56\x16\x8b\x03\xa9\x4c\xf0\xe5\x71\x0e\x12\x0a\x97\xbf\xe3\x59\x3f\x39\x04\xa7\xab\x31\x26\xa1\x38\x31\x65\x6b\xa9\x54\xe7\x67\xbf\x32\xc0\x48\xb2\xca\x7a\x88\xf7\xfa\xad\x0d\x68\xf8\x7b\x4b\xe5\x22\x00\x03\x81\x2c\x79\x1a\xac\x0a\xbc\x82\xba\x6d\xcd\x9c\xe2\x96\x51\xe2\x2c\x55\x65\xcc\x68\x53\xa3\x70\x71\x3e\xc5\xd3\x11\x68\x2b\xa7\xd3\x2e\x0e\xaf\x91\x8a\xa5\x6e\xff\x81\xf7\xda\x57\x20\xfc\xd6\xb1\x03\xf7\x2e\x7d\xea\xd9\x27\x1b\x7a\xea\x69\x18\x7b\xb7\x1d\x8f\x1a\x7b\xe7\xad\x05\x0e\xad\x71\x8e\x3c\xb8\x37\x25\x71\x0a\xeb\x2d\x74\x74\xb7\xb0\x7c\x56\x02\x88\xfa\xee\xe8\xcf\xd9\x4c\xdb\xfe\x4f\x65\x3c\x17\xb2\x58\xc0\x17\xc7\x7d\x0c\x3e\xf2\x1e\x5e\xaf\x18\x4c\x83\x1c\x96\xff\x75\xab\xd0\x0f\x6d\x09\x33\xfe\x9b\xdd\x90\xef\x45\x5b\x55\x7b\x73\x3a\x3e\x4f\x00\x1b\x13\xc4\xec\xdc\xc0\x75\x0c\x17\x35\xe8\x80\xde\x0b\x1a\x54\xd9\xda\x07\x35\xc8\xd7\x1e\x42\xaa\x50\x0a\xb9\xa1\x28\xc3\xd3\x6c\xb5\xf6\x6f\x01\x89\xf6\x65\xe5\xdf\x40\x78\x68\xc6\x2f\x65\x7f\x15\xb9\xf2\x69\x0b\xe8\x54\x09\x0b\xee\xb5\xd7\x0f\xd7\xff\x44\x7b\x1c\x95\x27\x43\xe9\x35\xf8\x0b\x71\x92\xe0\xcd\x77\xb9\xb3\xd7\x91\x2e\x3a\x75\x11\x2d\x3a\x78\xf6\x07\x55\x25\xb8\x78\x86\xbc\xf9\x49\xed\x30\xb3\x0b\xf4\x14\xee\xd5\xc4\xfa\xb7\xe5\x19\xe1\xd0\x08\xf2\x5a\x0f\x32\x4c\xa1\x11\xff\xf5\xeb\x7f\x4f\xbb\x94\x9d\xa1\xea\x63\x61\x3d\xae\xf2\x6f\xf2\x44\xc8\x18\x82\x86\x3c\x6e\x4a\xc0\xc8\x8a\x17\xb9\xb2\x3d\x9b\x69\xf8\x28\xd9\x7d\xed\x47\xad\x5e\xe0\x24\xfa\x02\x91\x67\xbf\xc9\xba\xe5\x5b\x89\x4b\x75\x99\x12\x7a\x11\xef\x24\xdf\x36\xb5\xb0\x9f\xb4\x8e\xbb\x44\xa4\x31\x54\x91\xbe\xbe\x2f\x7a\x12\x8b\xe8\x6e\xac\x4d\x70\x30\x81\xb5\x88\xee\xd8\x8f\xb7\xef\xde\xa2\x5e\x61\xa2\xe7\xf2\x92\x17\xc9\xbd\xf8\x90\xa7\xce\x6d\x4d\x8c\x24\x79\x6a\xd7\x48\x95\x50\x35\x20\xef\xb0\xec\xab\xd6\x70\x08\xf9\xae\xb7\xbb\x93\x65\x19\xdd\x89\xe2\x34\xe7\x32\x56\x5b\x6c\xc6\xa9\x2e\x57\xab\xe4\xf3\xb4\xe0\x79\x07\xf9\x35\xfa\x11\xbe\xa2\x9d\xeb\x25\x4d\x0a\x6f\xf3\xa2\xa9\xfb\x00\xd9\x89\x24\x94\x5b\x31\x6e\xe1\x0a\x9c\xf3\xad\x00\xf6\x32\x56\x25\x8e\x87\x52\x30\xe1\x0f\xf4\xd5\xb4\x26\xa4\xb7\x22\xf5\xd6\x8f\x81\x71\xff\x31\xa8\x55\x55\x41\xd8\x56\xca\x6b\x96\x6d\xf9\x1d\xde\x0f\xd7\xb9\xd0\x7a\xc2\xb4\x82\x1a\xcf\xa5\xc5\x4c\xdb\xbc\x1e\xc0\x67\x00\xff\x61\xba\x63\x91\xca\x12\x90\x78\x73\xed\xda\xa8\x07\xf0\x27\x87\xe9\x6d\xa0\xca\x59\xca\x22\x49\x19\x5f\x15\xe4\x6c\x06\xb2\x67\x2b\xee\xa2\xa7\x73\x09\x21\xc3\x08\x9a\x0f\xa1\x7c\x17\x26\x70\x8d\xd0\x6c\xc5\xa3\x24\x4d\x0a\xa2\xa0\x81\x64\x18\x6e\xda\x6b\xce\x03\xd3\x97\x39\xdf\xf1\xd4\x5f\xac\x78\x5a\xfa\x8c\xbe\x13\x2d\xea\x14\x67\xbf\x0b\xff\xb7\x72\xcf\xed\x3b\x75\x8f\xb8\xf0\x1e\x73\xf8\x34\xaf\xb4\x4e\x71\xd4\x9f\xe3\x49\x6c\x71\xa2\x15\x53\xd7\x33\xcf\xba\xe3\x07\x7c\xe7\x1d\x97\xea\xa9\xd5\x89\x69\x7e\x61\x44\xef\xb5\x1b\x61\x5f\xc8\x5d\xd0\xc5\x81\x3b\xa4\xfa\xd6\xdb\xfd\x5e\xa9\xf4\x58\x8f\x37\x4f\xed\x86\xba\x00\xe9\xc4\x63\xae\x6b\x38\x01\x9c\xe3\xe8\xe2\xb5\x8b\xbd\x3a\x52\xd9\xaa\xe0\x0a\xc1\x82\xa8\x0a\xb0\x51\x40\x25\x7a\x10\xc3\x3a\x6b\x09\xbe\x8f\x44\x3e\x43\x19\x88\xda\xb1\xa6\x73\xd3\x05\x1f\xe4\xb2\x73\x5f\x47\x20\xde\xab\xd5\x70\x94\x33\x0c\x85\x0e\x6b\x9f\x72\x8e\xb1\x90\xa0\xd3\xf5\x63\xf0\x6d\xdb\x9f\x28\xaf\x6c\xce\x27\xb2\x92\xe7\x32\xb0\x88\x91\x55\xc7\x42\xcb\x5d\xaf\xb5\xf9\xcb\x2a\xd3\xf0\x68\x7f\xd9\x31\x2c\xcc\xbd\x01\x95\xd7\xa1\x9e\x12\x60\x02\x22\xb5\x5d\x26\xd2\xa6\x2a\x93\x13\x19\x4c\xf9\x99\x25\xb9\x73\x0e\x7f\x6b\x92\x23\xcb\x7e\xad\xef\x9d\x19\x11\xf2\x05\x86\x5b\xd6\xbe\xeb\x6e\x78\x7f\x7a\x5c\xc2\xe8\x0e\x94\x6a\xbd\x05\x89\x66\x3c\x7d\xe0\x3b\x0d\x9a\xa3\xc2\xec\x8a\x2b\x74\x9c\x56\xeb\x3f\x09\x8e\x77\x4b\xa0\x48\x02\xde\x25\x49\x11\x53\x5b\x12\xe4\x6f\x10\xa9\x55\x57\xf5\xbc\x38\xcf\x74\x7b\xe7\x7c\x9d\x58\x48\xde\x1b\x0b\xc1\x60\xe4\x3f\x46\xf8\xa3\xc7\xc9\x7a\xa4\xaf\x37\x38\x26\xd1\x22\x23\xb8\x08\x24\xf0\xc0\x76\x6c\xbe\x3d\x61\x5b\x9e\x48\x5a\x06\xa8\x60\x15\x8b\x65\xb9\x5e\x77\xba\x20\xbf\xfd\x58\x46\x75\x9d\xfc\xd3\xfb\x9a\x7b\x99\x9d\x1e\xc3\x1b\x7b\x61\xbf\x84\xee\x61\x73\xaf\xfa\x32\x0e\xd8\xaf\xe8\xed\x6e\x0d\x39\x35\x26\xd1\xe3\x78\xbb\x2f\x86\x78\xbb\x2d\xc6\x07\x52\xad\xe8\xba\x6a\x71\x18\xbf\xb9\xc1\xbf\x8c\x1b\x7c\xd0\xa4\x40\x7a\x8f\x45\x52\x35\xd0\x7b\x6a\x78\x20\x4b\x98\xa3\x93\x84\x5a\x91\x1a\xb8\x16\x32\xd6\x6c\xc9\xa3\x27\xa0\x0d\x83\xd3\xf1\x78\x7f\xdb\x1e\x70\xc9\x8d\xda\x0a\x06\x9f\xd2\xa8\x7d\xc0\x28\x9b\x6d\x02\xa8\x45\xd3\x40\x8f\xc8\x20\xbc\x07\x1c\xa7\x88\x0c\x89\xbd\x51\xfd\x5c\x8a\x07\x66\x4e\xab\x49\x08\xe3\x0a\x86\x07\x44\x71\x5e\x18\xeb\xb0\x82\xf9\x76\xa9\xfb\xb9\x58\xf3\x3c\x86\x4c\x03\x5a\x92\x29\x8f\xee\xcc\x7f\x43\xfd\xe8\x8b\x04\x35\xb3\xfc\xdc\x08\x7f\xf4\xa5\x25\x32\xca\x81\x94\x89\x50\x6d\xbe\x7e\xf8\xba\x66\x3c\xca\x95\x46\xa7\x8c\xd3\x92\x84\x4c\x57\x30\x60\xef\x93\xb8\xe4\x29\x7e\xb1\xd3\x93\xcd\xf5\x51\x7c\xe3\xb3\x40\xf6\x45\x7c\xce\x52\x2e\xab\x6b\x12\x9b\x0b\x5c\x35\x49\xcf\xcc\x77\x94\x6b\xc7\x54\x65\x34\x75\xe4\x45\xa0\xb8\xea\x97\x15\x5a\xc7\xb9\xe0\xf1\x2e\x24\xa6\x4a\x24\xe9\xee\xf3\x78\x9b\x48\x33\xf4\x56\xd5\xcb\xed\xaf\x96\xe0\x17\x01\x97\x20\x7e\x91\xa6\xb5\xa5\xaf\x99\x14\xc6\xa4\xe2\x79\x92\xee\xc0\x8a\xce\x72\x71\x12\x7c\x27\x58\xdf\x94\xef\x01\x54\xc5\x44\xa2\x50\x6a\xb1\x2a\x53\xb4\xb5\xe1\x36\xea\x1a\x40\xeb\xf0\xc3\xc5\xc4\x1c\xb3\x05\x51\xce\x07\x1f\x46\x21\xa7\xc7\xc0\xce\x37\x62\x60\xe3\xe2\x38\x9e\x38\x2d\x07\x88\xef\x46\x3d\xd8\x44\x9f\x07\xee\x91\x9c\x5d\x67\xca\xa3\xf9\xee\xfb\xad\x2f\x7b\xef\xb1\xab\x13\x3b\x3f\xae\x04\x6c\xe8\x37\x11\xbb\x15\x99\x48\x68\x0e\x69\x21\x7a\x7f\x68\xa9\x31\x5f\xc8\x8c\x25\xec\xda\xf6\x7a\x5f\x75\x87\x32\xd7\xba\x44\x2b\xc9\xe6\xe5\xef\x7f\xff\x07\xc1\x7e\x0f\x09\x54\x64\x85\x63\xd4\x05\xa8\xd3\xb0\x74\xd8\xa8\xdc\x07\x04\xf2\xaa\x35\x46\x84\xb5\x01\x1f\x6d\xb6\x32\x40\x07\x79\xb4\x61\xba\x5c\x22\x2e\x8e\x93\xe3\x9e\x4b\xc7\x4c\xfa\x56\x01\xc4\x0d\xcf\x33\x5b\xfb\xff\x25\x6e\x6a\x64\x07\x9f\xcb\x4c\x21\x79\x2e\x00\x0a\x97\x82\x6d\x79\x7e\x07\x62\x6f\xa4\xe8\xcd\x78\xc1\x9e\x27\x62\x5a\x75\x5a\xbf\xa8\xd4\x87\xc2\x04\x48\x8a\xc9\xf2\x52\x4a\xab\x5e\xc1\x8c\x39\xe6\x3d\xc8\x93\xb9\x5c\x96\xe1\x8d\xab\xe2\x82\xf6\x53\x0b\xdc\xd0\xb0\xd9\x2a\x60\x4a\xa0\x4a\x71\x1d\x28\x8d\xb3\x01\xbe\xe8\xb9\x7c\x22\x67\x74\x97\x9b\xeb\x3d\x59\x1e\xd6\x85\x15\xa0\xb5\xa1\xb9\xa1\xc0\x22\x0c\x07\x4e\x7b\x38\xda\xdf\x83\xca\xe2\x84\xfd\x98\xdc\x8b\x09\xbb\xc9\x78\x7e\x37\x61\xaf\x31\xa8\xf4\x27\xb5\x6c\xf3\x5c\x35\xd2\xe9\x8f\xf6\x5e\x1d\xe6\xbc\x19\x2c\xd5\xee\x6c\xde\x5f\x9a\x3a\xec\x5d\x11\xd5\x7f\x4c\x9c\x57\x07\xd3\xc1\x3f\xfb\xfd\x7b\x4f\xf0\xf3\x37\x48\xd4\x3f\xe5\x5d\xb0\x9f\xe4\xe0\x77\xe1\xff\xda\xfd\xcb\x5a\x5c\x60\x7b\xd2\x2e\xd7\x8a\x75\xfa\xb6\xd2\x3a\x93\xb8\x7e\x28\x37\xb3\x3b\x87\x2d\x05\x4a\x9e\x8d\x5d\x62\xef\x08\x28\x37\xbd\x6a\xfb\xeb\x2c\x55\xba\xcc\xfb\x17\xff\x75\xb5\xd6\xf6\xeb\x2d\x44\x87\x30\xd9\xb6\x4b\x01\x39\xdb\x43\x41\x0d\xf8\xd8\xe2\x2f\x6a\xb9\x00\x04\xcf\x71\x2b\xbc\xad\x38\x2b\x9d\xe2\xe2\x40\x54\x55\x7f\x42\xde\x64\x02\xf8\x76\xbc\x29\xea\xdd\xe0\xb5\x19\xe6\x1c\x02\x73\x69\xe9\x87\x31\x5f\x30\xcf\x05\xf0\xa4\x9a\x7b\xef\xbd\xc8\x59\xc6\x73\x17\x46\xb7\x16\x51\x70\xf3\xf1\x50\x8b\x30\xc7\x07\x52\xf5\xe8\xbe\xb5\x14\x42\xba\xde\x1e\x63\x4a\x18\xeb\xa0\xde\xfb\x84\xa1\x7a\x10\x2c\x42\x78\x7e\x87\x7a\x59\xe3\xbd\xe0\x2e\x08\x26\xf7\x5a\x14\xc1\x6e\x5e\x33\x2d\x2a\x4b\xb3\x12\x97\xf9\xa6\x70\xe4\xad\x91\xd7\x1a\x35\x51\xc5\x6d\x30\x28\x92\xf5\x18\x5e\xe2\xf7\xbc\xd8\xe0\x85\x76\xab\x0a\x92\x91\x47\x8e\x14\x9c\x2f\xe8\x6b\x5d\xa6\x6a\x09\x52\x3c\xe6\x97\xae\xbb\x61\x44\x4b\x7b\x50\xd7\x35\x07\x6c\xc8\xce\x60\x76\x13\xc8\x33\xcc\x85\x06\xba\x89\x66\x6c\x66\x28\xea\x75\xdc\xa5\xbb\x59\x5d\xb3\xe9\xbf\x6e\x5c\xb6\x9b\xfc\xe4\x66\x59\x03\x04\xf2\xfc\x80\xbc\x8c\xf3\x30\x57\xcf\x18\x07\x44\xd5\x4a\xc1\x4f\x64\x6b\xac\xb5\xd7\x2a\xbe\xce\xe5\x0c\x7f\x09\x0e\x01\xee\x75\x38\x1c\xca\x90\xc4\xfd\xdc\xfa\xc3\xe4\x3d\x36\x0b\x71\x6d\xe4\x21\x98\x78\x0f\x1e\x5c\x06\x26\x90\x2b\x27\x8b\x24\x17\x4c\x42\xec\x7d\x2e\x75\xb9\x3c\xf1\xb4\x0c\xe6\x16\x77\x0f\x54\x22\x5a\x64\x1c\xae\x32\xc0\xd6\x72\xd2\x72\x0c\xa3\x3f\xce\xf3\xe9\x5b\xfa\x32\x9e\xd2\xe6\x0f\x19\x78\x98\x17\xec\xda\xee\xca\x31\x97\x35\xb8\x45\xdb\x9c\x54\x3c\xec\xfa\xf6\x0b\x50\xfc\x80\xbc\xbe\x6b\xc4\x0e\x7c\xed\x03\x3c\x8c\x01\x0e\x3d\xba\x21\x8a\x34\x97\xff\xd7\x9e\x0d\xdd\x50\xd5\x11\x33\xdd\xf4\x8c\x39\xa2\x3a\x21\xb4\x95\xba\xd9\x2b\x64\x60\x04\x76\x57\xaa\x31\xe5\xdb\x4a\xe5\x16\xcd\x11\xf2\xdb\x2b\x4a\xc2\x84\x5f\xef\x13\x1d\x90\x1d\xc3\xd7\x6e\x84\x60\x2f\x73\xb1\x7a\xf9\x31\x17\xab\x85\x1d\xe9\x29\x34\x68\x6a\x5a\xd4\xa4\x3c\x1e\x38\x39\x74\xa6\x64\x3b\xf5\xdb\x1e\x6a\xc6\x5a\x93\xb0\x9c\xa0\x4d\xc9\x8a\x79\x19\x34\xd3\x1e\xc8\x7f\x17\x71\x9d\x8b\xb9\x51\xb3\x2f\x7e\xcc\x75\xe1\x9f\x06\x00\x8c\x3a\xe4\xc3\xfe\xf9\x8f\xb7\x4a\x9f\x0d\x39\xde\x6e\xab\x40\x11\xbb\xd9\x73\xe9\x0e\xbc\x6e\x40\xf1\x97\xc5\x3c\xc3\x00\xea\x8c\x3f\x48\x62\xf1\x18\xe5\x7a\x1a\x76\xac\xb5\x0b\x99\x9b\x63\xad\x81\xfc\xf2\xab\x4c\x5a\x4f\x5f\xe2\xb4\xb6\x26\x81\x4c\x2d\x4f\xd3\x90\x51\xde\xc7\x97\xe6\xd2\x67\x3b\x1a\xab\x35\x4d\xad\x0b\xaf\x62\x6f\x10\x67\x4b\x0c\x69\xa6\x62\x62\x29\x27\x88\xac\x8d\xa2\x40\x27\x4b\x0e\x1a\x88\x4e\x67\x65\xdf\x6a\x7e\xac\x4b\xe4\x37\x96\x6d\xbb\x27\xde\x8a\x9f\x5d\xdc\x89\xdd\xe8\xba\xb6\x47\x3a\xbc\x04\xe3\x06\x16\xb3\xdd\x65\x23\x9e\xe7\x16\x3b\x4e\x5f\x65\xe6\xae\xb4\xe2\x51\xc5\xcd\xd9\x51\xcf\x8d\x88\xee\x32\x95\xc8\xd1\x7b\x51\x50\x1f\x63\x48\x15\xe6\x3c\xf3\xa5\xb9\xdb\xe1\xa0\xc3\xb1\x62\x4f\x62\x43\x34\x80\x0a\x2c\x20\xd2\x53\x51\x71\xe6\x34\x26\xbb\xa7\xdd\x63\xfb\x2f\x84\x3f\x1b\x9e\xc0\x17\xdb\x12\x1f\xaa\x9d\x2a\xbc\xc5\xb1\x53\xe1\x41\xe4\x8d\x9c\xa2\x81\x9d\xcd\x59\x85\xc0\xad\xb5\x4b\xc1\x05\xf9\x9b\x67\xe8\x37\xcf\xd0\x3f\xb8\x67\xe8\x4b\xba\x85\x00\x11\xf2\x94\x3e\xa1\x9e\x00\xf9\x11\xcb\xd1\x7d\xf5\x58\xc1\x65\xb4\x8e\x27\x81\x30\x68\x90\x3f\xd7\x84\xb7\x5b\x7a\x85\x02\x64\x95\xa3\x3b\x21\x3b\x63\xf4\x96\x14\xa7\x53\x3d\xf6\xb1\x60\x9f\xdd\x9c\x3e\xc1\xdb\xfd\x1c\x69\x1e\xe0\x43\x94\xa9\x6d\x34\x13\x66\x9d\x80\xed\x69\x1a\x7e\x02\x50\x29\x95\x3b\x5a\x5f\x4d\xb9\x5d\x18\x8c\x44\xf2\x1d\x84\x08\xd5\x88\x70\x87\x22\xc1\xec\x87\x17\x99\x52\x69\x2b\x20\xec\x51\x3b\xb0\x91\x1e\x32\xb4\xf3\x2e\xd0\x18\xd5\x21\x4c\xca\xf6\xa2\x4f\x35\xf0\x89\x09\x98\x85\x00\x4a\x00\x30\x9b\xe2\x12\x32\xf4\x7c\x77\x4c\x7d\x5e\x0f\x77\x0e\x17\x42\x46\x2d\x45\xc4\x41\x05\xcf\x42\xd6\x22\xee\x72\x2e\x42\xaa\x9d\x46\x12\x84\x6e\x7e\xa7\x23\x6a\x09\xe5\x2e\x92\x36\xda\xff\xb1\x8b\xab\x66\x21\x58\x40\x35\xd6\xdc\x22\x49\x2c\xe9\xdc\x3e\xd1\x43\xcb\xb0\xbb\x88\x52\xae\x07\x1a\xd6\xad\xfb\xce\x05\x15\x74\x06\xe5\x0c\xdf\x48\x7f\x84\x24\x94\xed\x40\xe4\xce\x5c\xce\x9c\xe8\x9f\xc7\x7e\x39\xbc\x1a\x86\x4b\x11\xa9\xd7\x18\x1a\x64\xb2\xf3\x37\x97\x09\xd3\x65\xb4\x01\xae\xbe\xea\x3e\x15\xee\x5b\xcd\x15\x3b\x99\x4b\x73\x21\x02\x57\xcb\x96\x43\xb6\xf5\x83\x31\x56\x75\xf2\x57\xe1\xe0\x59\x44\x09\x15\x22\xb2\xf0\xe2\xa4\x64\x2b\x7a\xcd\xd2\x26\x22\xc0\xc2\x63\x4a\xca\x2c\xe6\x85\x98\xce\x3d\xda\x26\x41\x4f\xa7\x45\x79\x90\xc9\xac\xc3\x86\x85\xe8\xbd\xda\x4e\x9b\x26\x2b\x11\xed\xa2\x86\x0a\x4a\x3f\xf9\xc0\x6f\xd7\xb6\x6f\xeb\xda\x86\x1c\xa3\x98\x29\x37\xa6\x6b\xa9\xaa\xd7\xfe\xf5\xe3\x3a\x57\xb0\xa0\x26\x7a\x44\x3f\x7f\xc1\x6b\x67\x8b\x0d\x3c\xce\x9e\x1f\x7c\x0f\xea\x3f\xce\xfc\xc5\xd6\x1f\xd6\x41\x62\x7d\xc3\x2c\x0c\x83\x8b\x45\x38\x75\x8c\x41\x3b\x38\xac\xdf\xcd\x5d\xf2\x4d\x81\x93\x86\x5c\x5c\x8d\xc5\xed\xe0\x4a\x97\xd6\xd2\x96\x02\xcf\xbb\x1e\x8b\x3b\xe0\xb4\xe6\xc5\x33\xed\x7a\xbd\xba\x03\x5a\xc4\xfb\xdb\x44\x17\x3f\xd7\x14\x13\x0f\x93\x5c\x7c\x32\xd3\xd4\x56\x15\xab\x39\xd4\xa2\xba\xae\xda\x3c\x6a\x65\xe7\x1c\x5c\x9e\xac\x46\x96\xa9\xf7\x98\x7b\xd0\x47\xd7\x5f\x1f\xf1\x68\x7a\xc8\x79\x96\x89\xdc\x1e\xe4\x0d\x5b\x0b\x04\xa7\xe0\x2b\xa0\x18\xb7\x11\x28\x5b\x5b\xbb\xe5\x9a\xad\xa4\x56\x34\x3c\x06\x5d\x37\x6d\x1f\xb9\xcb\x32\x4d\x3b\x47\x6e\xbf\x8e\xcd\xe5\x87\xb7\x6f\x17\x3f\xcf\xde\x7e\x38\xb7\xcd\x6f\xd5\x85\x09\x1e\xeb\xec\x13\x57\x13\xea\x13\xaf\x3c\x67\x3e\x2b\xac\x74\xae\xf2\xad\x46\x27\x57\x99\xa6\x55\xcd\xa0\xb9\xfc\x48\xe5\x00\x4c\x1b\xf5\x10\x4d\xbf\xb1\xde\x8e\xab\x7e\x1f\x1e\xfb\x68\x0a\xff\x88\xef\x9e\x30\xdf\x88\x97\xa0\x6c\x47\x8a\x59\xed\xfd\x4a\x39\x20\x47\x2c\x07\x04\x03\x77\x2d\x87\xc7\x56\x45\x3b\x6c\x79\x7c\x90\xc0\xc7\x2c\x62\x2b\x66\xf6\x28\xab\x03\xfb\xee\x63\x35\x4e\xed\xf6\xf2\x18\xaf\x34\x50\xee\x04\xb5\xac\x40\xa1\xd7\xcb\x3d\xcd\x25\xfa\x40\x4d\x9d\x0a\xd5\x5d\x27\x76\x41\xe6\x6d\xca\xe5\xba\xe4\x6b\x63\xdd\xda\x8f\xcf\xe5\x36\x59\x6f\x90\x5d\xa2\xcc\x3c\x3e\x99\x33\x09\x24\x24\xb5\x29\x54\xc3\x27\x27\x72\x2e\xa9\x4d\x72\xed\x8b\x47\xac\xec\x9f\x6e\x5c\x73\x08\x94\x8e\x05\x91\x1c\x97\x9c\x4b\x1c\x5c\x64\xbd\xb0\x91\x10\xb8\xb1\xf0\xa2\x3e\x75\x39\xc4\x2e\x51\xb2\xda\xec\xe9\x6b\x88\xc9\xcc\xa5\x4b\x4c\x45\xcf\x11\xb5\x21\x90\x6d\xc0\x2a\xed\xdf\x4f\xec\x60\xd8\x35\x41\x75\x6b\x9f\xf5\x47\x9f\x01\x66\xc1\x2d\x46\x68\xef\x36\xb7\xb1\x81\xde\x42\x1e\x6c\x1c\x5d\x6c\x05\x90\x8d\xdc\x5e\x1b\xdb\x2e\x7c\xa6\x13\xda\xaa\xca\x65\x3a\xa2\x4a\xf8\x7c\x6f\xa5\x70\x4b\xee\xaf\xd4\x80\xeb\xf0\x75\x6d\x69\x99\x69\xda\xf7\xd9\xa5\x52\x1d\xe3\xf2\x88\x01\xc5\x4a\xa5\xe8\x85\x7d\x9d\x51\x46\xc5\x21\xf3\x65\x40\x8a\x5e\xbd\x8b\xec\xee\xd3\x57\xa1\x34\xd1\x07\x55\xc7\xdb\x4f\x83\x6b\xe4\x2c\x04\x3a\xec\x46\xed\xb0\x74\xce\x55\x36\xd8\x8e\x6d\x92\xe2\x49\x56\xc4\x36\xc1\xed\xc5\x2c\x1e\x54\x98\x35\xf3\x7f\xe2\x26\xd1\xc4\x8f\xdc\x04\x2a\x19\x95\xb9\x36\xdb\x25\xed\x77\xb4\x6b\xab\x9c\xf1\xb9\xb4\x6a\x08\x76\x3b\x9e\x59\x70\x6e\xee\xfe\x8a\x69\x8f\x19\xb2\x89\x83\xc5\x5a\x30\x25\x85\xdd\x0d\xe7\xd2\x2a\x1f\x4f\x18\x5f\x6a\x2b\x28\xcc\xe5\xce\xa9\xfc\x26\x4e\xc2\x8d\x4b\x06\xa8\xe7\xfd\x7b\x5e\xcd\x0c\xa8\x9c\xf3\xbf\x33\xff\xf7\xf7\xdf\xfd\xff\x00\x00\x00\xff\xff\xe8\x83\xf6\xda\xbc\xa7\x04\x00") func adminSwaggerJsonBytes() ([]byte, error) { return bindataRead( @@ -93,7 +93,7 @@ func adminSwaggerJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin.swagger.json", size: 304904, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} + info := bindataFileInfo{name: "admin.swagger.json", size: 305084, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/gen/pb-java/flyteidl/admin/ExecutionOuterClass.java b/gen/pb-java/flyteidl/admin/ExecutionOuterClass.java index e499bcf5c..4ceddc641 100644 --- a/gen/pb-java/flyteidl/admin/ExecutionOuterClass.java +++ b/gen/pb-java/flyteidl/admin/ExecutionOuterClass.java @@ -17201,6 +17201,41 @@ public interface ExecutionSpecOrBuilder extends */ flyteidl.admin.Common.EnvsOrBuilder getEnvsOrBuilder(); + /** + *
+     * Tags to be set for the execution.
+     * 
+ * + * repeated string tags = 24; + */ + java.util.List + getTagsList(); + /** + *
+     * Tags to be set for the execution.
+     * 
+ * + * repeated string tags = 24; + */ + int getTagsCount(); + /** + *
+     * Tags to be set for the execution.
+     * 
+ * + * repeated string tags = 24; + */ + java.lang.String getTags(int index); + /** + *
+     * Tags to be set for the execution.
+     * 
+ * + * repeated string tags = 24; + */ + com.google.protobuf.ByteString + getTagsBytes(int index); + public flyteidl.admin.ExecutionOuterClass.ExecutionSpec.NotificationOverridesCase getNotificationOverridesCase(); } /** @@ -17221,6 +17256,7 @@ private ExecutionSpec(com.google.protobuf.GeneratedMessageV3.Builder builder) super(builder); } private ExecutionSpec() { + tags_ = com.google.protobuf.LazyStringArrayList.EMPTY; } @java.lang.Override @@ -17432,6 +17468,15 @@ private ExecutionSpec( break; } + case 194: { + java.lang.String s = input.readStringRequireUtf8(); + if (!((mutable_bitField0_ & 0x00010000) != 0)) { + tags_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00010000; + } + tags_.add(s); + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -17447,6 +17492,9 @@ private ExecutionSpec( throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { + if (((mutable_bitField0_ & 0x00010000) != 0)) { + tags_ = tags_.getUnmodifiableView(); + } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } @@ -17464,6 +17512,7 @@ private ExecutionSpec( flyteidl.admin.ExecutionOuterClass.ExecutionSpec.class, flyteidl.admin.ExecutionOuterClass.ExecutionSpec.Builder.class); } + private int bitField0_; private int notificationOverridesCase_ = 0; private java.lang.Object notificationOverrides_; public enum NotificationOverridesCase @@ -17999,6 +18048,51 @@ public flyteidl.admin.Common.EnvsOrBuilder getEnvsOrBuilder() { return getEnvs(); } + public static final int TAGS_FIELD_NUMBER = 24; + private com.google.protobuf.LazyStringList tags_; + /** + *
+     * Tags to be set for the execution.
+     * 
+ * + * repeated string tags = 24; + */ + public com.google.protobuf.ProtocolStringList + getTagsList() { + return tags_; + } + /** + *
+     * Tags to be set for the execution.
+     * 
+ * + * repeated string tags = 24; + */ + public int getTagsCount() { + return tags_.size(); + } + /** + *
+     * Tags to be set for the execution.
+     * 
+ * + * repeated string tags = 24; + */ + public java.lang.String getTags(int index) { + return tags_.get(index); + } + /** + *
+     * Tags to be set for the execution.
+     * 
+ * + * repeated string tags = 24; + */ + public com.google.protobuf.ByteString + getTagsBytes(int index) { + return tags_.getByteString(index); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -18062,6 +18156,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (envs_ != null) { output.writeMessage(23, getEnvs()); } + for (int i = 0; i < tags_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 24, tags_.getRaw(i)); + } unknownFields.writeTo(output); } @@ -18136,6 +18233,14 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(23, getEnvs()); } + { + int dataSize = 0; + for (int i = 0; i < tags_.size(); i++) { + dataSize += computeStringSizeNoTag(tags_.getRaw(i)); + } + size += dataSize; + size += 2 * getTagsList().size(); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -18215,6 +18320,8 @@ public boolean equals(final java.lang.Object obj) { if (!getEnvs() .equals(other.getEnvs())) return false; } + if (!getTagsList() + .equals(other.getTagsList())) return false; if (!getNotificationOverridesCase().equals(other.getNotificationOverridesCase())) return false; switch (notificationOverridesCase_) { case 5: @@ -18292,6 +18399,10 @@ public int hashCode() { hash = (37 * hash) + ENVS_FIELD_NUMBER; hash = (53 * hash) + getEnvs().hashCode(); } + if (getTagsCount() > 0) { + hash = (37 * hash) + TAGS_FIELD_NUMBER; + hash = (53 * hash) + getTagsList().hashCode(); + } switch (notificationOverridesCase_) { case 5: hash = (37 * hash) + NOTIFICATIONS_FIELD_NUMBER; @@ -18519,6 +18630,8 @@ public Builder clear() { envs_ = null; envsBuilder_ = null; } + tags_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00010000); notificationOverridesCase_ = 0; notificationOverrides_ = null; return this; @@ -18547,6 +18660,8 @@ public flyteidl.admin.ExecutionOuterClass.ExecutionSpec build() { @java.lang.Override public flyteidl.admin.ExecutionOuterClass.ExecutionSpec buildPartial() { flyteidl.admin.ExecutionOuterClass.ExecutionSpec result = new flyteidl.admin.ExecutionOuterClass.ExecutionSpec(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; if (launchPlanBuilder_ == null) { result.launchPlan_ = launchPlan_; } else { @@ -18619,6 +18734,12 @@ public flyteidl.admin.ExecutionOuterClass.ExecutionSpec buildPartial() { } else { result.envs_ = envsBuilder_.build(); } + if (((bitField0_ & 0x00010000) != 0)) { + tags_ = tags_.getUnmodifiableView(); + bitField0_ = (bitField0_ & ~0x00010000); + } + result.tags_ = tags_; + result.bitField0_ = to_bitField0_; result.notificationOverridesCase_ = notificationOverridesCase_; onBuilt(); return result; @@ -18710,6 +18831,16 @@ public Builder mergeFrom(flyteidl.admin.ExecutionOuterClass.ExecutionSpec other) if (other.hasEnvs()) { mergeEnvs(other.getEnvs()); } + if (!other.tags_.isEmpty()) { + if (tags_.isEmpty()) { + tags_ = other.tags_; + bitField0_ = (bitField0_ & ~0x00010000); + } else { + ensureTagsIsMutable(); + tags_.addAll(other.tags_); + } + onChanged(); + } switch (other.getNotificationOverridesCase()) { case NOTIFICATIONS: { mergeNotifications(other.getNotifications()); @@ -18766,6 +18897,7 @@ public Builder clearNotificationOverrides() { return this; } + private int bitField0_; private flyteidl.core.IdentifierOuterClass.Identifier launchPlan_; private com.google.protobuf.SingleFieldBuilderV3< @@ -20958,6 +21090,136 @@ public flyteidl.admin.Common.EnvsOrBuilder getEnvsOrBuilder() { } return envsBuilder_; } + + private com.google.protobuf.LazyStringList tags_ = com.google.protobuf.LazyStringArrayList.EMPTY; + private void ensureTagsIsMutable() { + if (!((bitField0_ & 0x00010000) != 0)) { + tags_ = new com.google.protobuf.LazyStringArrayList(tags_); + bitField0_ |= 0x00010000; + } + } + /** + *
+       * Tags to be set for the execution.
+       * 
+ * + * repeated string tags = 24; + */ + public com.google.protobuf.ProtocolStringList + getTagsList() { + return tags_.getUnmodifiableView(); + } + /** + *
+       * Tags to be set for the execution.
+       * 
+ * + * repeated string tags = 24; + */ + public int getTagsCount() { + return tags_.size(); + } + /** + *
+       * Tags to be set for the execution.
+       * 
+ * + * repeated string tags = 24; + */ + public java.lang.String getTags(int index) { + return tags_.get(index); + } + /** + *
+       * Tags to be set for the execution.
+       * 
+ * + * repeated string tags = 24; + */ + public com.google.protobuf.ByteString + getTagsBytes(int index) { + return tags_.getByteString(index); + } + /** + *
+       * Tags to be set for the execution.
+       * 
+ * + * repeated string tags = 24; + */ + public Builder setTags( + int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureTagsIsMutable(); + tags_.set(index, value); + onChanged(); + return this; + } + /** + *
+       * Tags to be set for the execution.
+       * 
+ * + * repeated string tags = 24; + */ + public Builder addTags( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureTagsIsMutable(); + tags_.add(value); + onChanged(); + return this; + } + /** + *
+       * Tags to be set for the execution.
+       * 
+ * + * repeated string tags = 24; + */ + public Builder addAllTags( + java.lang.Iterable values) { + ensureTagsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, tags_); + onChanged(); + return this; + } + /** + *
+       * Tags to be set for the execution.
+       * 
+ * + * repeated string tags = 24; + */ + public Builder clearTags() { + tags_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00010000); + onChanged(); + return this; + } + /** + *
+       * Tags to be set for the execution.
+       * 
+ * + * repeated string tags = 24; + */ + public Builder addTagsBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureTagsIsMutable(); + tags_.add(value); + onChanged(); + return this; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -28240,7 +28502,7 @@ public flyteidl.admin.ExecutionOuterClass.WorkflowExecutionGetMetricsResponse ge "\022\n\n\006SYSTEM\020\002\022\014\n\010RELAUNCH\020\003\022\022\n\016CHILD_WORK" + "FLOW\020\004\022\r\n\tRECOVERED\020\005\"G\n\020NotificationLis" + "t\0223\n\rnotifications\030\001 \003(\0132\034.flyteidl.admi" + - "n.Notification\"\244\006\n\rExecutionSpec\022.\n\013laun" + + "n.Notification\"\262\006\n\rExecutionSpec\022.\n\013laun" + "ch_plan\030\001 \001(\0132\031.flyteidl.core.Identifier" + "\022-\n\006inputs\030\002 \001(\0132\031.flyteidl.core.Literal" + "MapB\002\030\001\0223\n\010metadata\030\003 \001(\0132!.flyteidl.adm" + @@ -28259,35 +28521,35 @@ public flyteidl.admin.ExecutionOuterClass.WorkflowExecutionGetMetricsResponse ge "(\0132!.flyteidl.admin.ClusterAssignment\0221\n" + "\rinterruptible\030\025 \001(\0132\032.google.protobuf.B" + "oolValue\022\027\n\017overwrite_cache\030\026 \001(\010\022\"\n\004env" + - "s\030\027 \001(\0132\024.flyteidl.admin.EnvsB\030\n\026notific" + - "ation_overridesJ\004\010\004\020\005\"b\n\031ExecutionTermin" + - "ateRequest\0226\n\002id\030\001 \001(\0132*.flyteidl.core.W" + - "orkflowExecutionIdentifier\022\r\n\005cause\030\002 \001(" + - "\t\"\034\n\032ExecutionTerminateResponse\"Y\n\037Workf" + - "lowExecutionGetDataRequest\0226\n\002id\030\001 \001(\0132*" + - ".flyteidl.core.WorkflowExecutionIdentifi" + - "er\"\336\001\n WorkflowExecutionGetDataResponse\022" + - ",\n\007outputs\030\001 \001(\0132\027.flyteidl.admin.UrlBlo" + - "bB\002\030\001\022+\n\006inputs\030\002 \001(\0132\027.flyteidl.admin.U" + - "rlBlobB\002\030\001\022.\n\013full_inputs\030\003 \001(\0132\031.flytei" + - "dl.core.LiteralMap\022/\n\014full_outputs\030\004 \001(\013" + - "2\031.flyteidl.core.LiteralMap\"\177\n\026Execution" + - "UpdateRequest\0226\n\002id\030\001 \001(\0132*.flyteidl.cor" + - "e.WorkflowExecutionIdentifier\022-\n\005state\030\002" + - " \001(\0162\036.flyteidl.admin.ExecutionState\"\220\001\n" + - "\033ExecutionStateChangeDetails\022-\n\005state\030\001 " + - "\001(\0162\036.flyteidl.admin.ExecutionState\022/\n\013o" + - "ccurred_at\030\002 \001(\0132\032.google.protobuf.Times" + - "tamp\022\021\n\tprincipal\030\003 \001(\t\"\031\n\027ExecutionUpda" + - "teResponse\"k\n\"WorkflowExecutionGetMetric" + - "sRequest\0226\n\002id\030\001 \001(\0132*.flyteidl.core.Wor" + - "kflowExecutionIdentifier\022\r\n\005depth\030\002 \001(\005\"" + - "H\n#WorkflowExecutionGetMetricsResponse\022!" + - "\n\004span\030\001 \001(\0132\023.flyteidl.core.Span*>\n\016Exe" + - "cutionState\022\024\n\020EXECUTION_ACTIVE\020\000\022\026\n\022EXE" + - "CUTION_ARCHIVED\020\001B7Z5github.com/flyteorg" + - "/flyteidl/gen/pb-go/flyteidl/adminb\006prot" + - "o3" + "s\030\027 \001(\0132\024.flyteidl.admin.Envs\022\014\n\004tags\030\030 " + + "\003(\tB\030\n\026notification_overridesJ\004\010\004\020\005\"b\n\031E" + + "xecutionTerminateRequest\0226\n\002id\030\001 \001(\0132*.f" + + "lyteidl.core.WorkflowExecutionIdentifier" + + "\022\r\n\005cause\030\002 \001(\t\"\034\n\032ExecutionTerminateRes" + + "ponse\"Y\n\037WorkflowExecutionGetDataRequest" + + "\0226\n\002id\030\001 \001(\0132*.flyteidl.core.WorkflowExe" + + "cutionIdentifier\"\336\001\n WorkflowExecutionGe" + + "tDataResponse\022,\n\007outputs\030\001 \001(\0132\027.flyteid" + + "l.admin.UrlBlobB\002\030\001\022+\n\006inputs\030\002 \001(\0132\027.fl" + + "yteidl.admin.UrlBlobB\002\030\001\022.\n\013full_inputs\030" + + "\003 \001(\0132\031.flyteidl.core.LiteralMap\022/\n\014full" + + "_outputs\030\004 \001(\0132\031.flyteidl.core.LiteralMa" + + "p\"\177\n\026ExecutionUpdateRequest\0226\n\002id\030\001 \001(\0132" + + "*.flyteidl.core.WorkflowExecutionIdentif" + + "ier\022-\n\005state\030\002 \001(\0162\036.flyteidl.admin.Exec" + + "utionState\"\220\001\n\033ExecutionStateChangeDetai" + + "ls\022-\n\005state\030\001 \001(\0162\036.flyteidl.admin.Execu" + + "tionState\022/\n\013occurred_at\030\002 \001(\0132\032.google." + + "protobuf.Timestamp\022\021\n\tprincipal\030\003 \001(\t\"\031\n" + + "\027ExecutionUpdateResponse\"k\n\"WorkflowExec" + + "utionGetMetricsRequest\0226\n\002id\030\001 \001(\0132*.fly" + + "teidl.core.WorkflowExecutionIdentifier\022\r" + + "\n\005depth\030\002 \001(\005\"H\n#WorkflowExecutionGetMet" + + "ricsResponse\022!\n\004span\030\001 \001(\0132\023.flyteidl.co" + + "re.Span*>\n\016ExecutionState\022\024\n\020EXECUTION_A" + + "CTIVE\020\000\022\026\n\022EXECUTION_ARCHIVED\020\001B7Z5githu" + + "b.com/flyteorg/flyteidl/gen/pb-go/flytei" + + "dl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { @@ -28394,7 +28656,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_admin_ExecutionSpec_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_admin_ExecutionSpec_descriptor, - new java.lang.String[] { "LaunchPlan", "Inputs", "Metadata", "Notifications", "DisableAll", "Labels", "Annotations", "SecurityContext", "AuthRole", "QualityOfService", "MaxParallelism", "RawOutputDataConfig", "ClusterAssignment", "Interruptible", "OverwriteCache", "Envs", "NotificationOverrides", }); + new java.lang.String[] { "LaunchPlan", "Inputs", "Metadata", "Notifications", "DisableAll", "Labels", "Annotations", "SecurityContext", "AuthRole", "QualityOfService", "MaxParallelism", "RawOutputDataConfig", "ClusterAssignment", "Interruptible", "OverwriteCache", "Envs", "Tags", "NotificationOverrides", }); internal_static_flyteidl_admin_ExecutionTerminateRequest_descriptor = getDescriptor().getMessageTypes().get(14); internal_static_flyteidl_admin_ExecutionTerminateRequest_fieldAccessorTable = new diff --git a/gen/pb-js/flyteidl.d.ts b/gen/pb-js/flyteidl.d.ts index 91867c694..3b08ace46 100644 --- a/gen/pb-js/flyteidl.d.ts +++ b/gen/pb-js/flyteidl.d.ts @@ -11341,6 +11341,9 @@ export namespace flyteidl { /** ExecutionSpec envs */ envs?: (flyteidl.admin.IEnvs|null); + + /** ExecutionSpec tags */ + tags?: (string[]|null); } /** Represents an ExecutionSpec. */ @@ -11400,6 +11403,9 @@ export namespace flyteidl { /** ExecutionSpec envs. */ public envs?: (flyteidl.admin.IEnvs|null); + /** ExecutionSpec tags. */ + public tags: string[]; + /** ExecutionSpec notificationOverrides. */ public notificationOverrides?: ("notifications"|"disableAll"); diff --git a/gen/pb-js/flyteidl.js b/gen/pb-js/flyteidl.js index a81c28f40..fd8a87025 100644 --- a/gen/pb-js/flyteidl.js +++ b/gen/pb-js/flyteidl.js @@ -27236,6 +27236,7 @@ * @property {google.protobuf.IBoolValue|null} [interruptible] ExecutionSpec interruptible * @property {boolean|null} [overwriteCache] ExecutionSpec overwriteCache * @property {flyteidl.admin.IEnvs|null} [envs] ExecutionSpec envs + * @property {Array.|null} [tags] ExecutionSpec tags */ /** @@ -27247,6 +27248,7 @@ * @param {flyteidl.admin.IExecutionSpec=} [properties] Properties to set */ function ExecutionSpec(properties) { + this.tags = []; if (properties) for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) if (properties[keys[i]] != null) @@ -27381,6 +27383,14 @@ */ ExecutionSpec.prototype.envs = null; + /** + * ExecutionSpec tags. + * @member {Array.} tags + * @memberof flyteidl.admin.ExecutionSpec + * @instance + */ + ExecutionSpec.prototype.tags = $util.emptyArray; + // OneOf field names bound to virtual getters and setters var $oneOfFields; @@ -27451,6 +27461,9 @@ writer.uint32(/* id 22, wireType 0 =*/176).bool(message.overwriteCache); if (message.envs != null && message.hasOwnProperty("envs")) $root.flyteidl.admin.Envs.encode(message.envs, writer.uint32(/* id 23, wireType 2 =*/186).fork()).ldelim(); + if (message.tags != null && message.tags.length) + for (var i = 0; i < message.tags.length; ++i) + writer.uint32(/* id 24, wireType 2 =*/194).string(message.tags[i]); return writer; }; @@ -27520,6 +27533,11 @@ case 23: message.envs = $root.flyteidl.admin.Envs.decode(reader, reader.uint32()); break; + case 24: + if (!(message.tags && message.tags.length)) + message.tags = []; + message.tags.push(reader.string()); + break; default: reader.skipType(tag & 7); break; @@ -27621,6 +27639,13 @@ if (error) return "envs." + error; } + if (message.tags != null && message.hasOwnProperty("tags")) { + if (!Array.isArray(message.tags)) + return "tags: array expected"; + for (var i = 0; i < message.tags.length; ++i) + if (!$util.isString(message.tags[i])) + return "tags: string[] expected"; + } return null; }; diff --git a/gen/pb_python/flyteidl/admin/execution_pb2.py b/gen/pb_python/flyteidl/admin/execution_pb2.py index 063cbc9cf..38643f04a 100644 --- a/gen/pb_python/flyteidl/admin/execution_pb2.py +++ b/gen/pb_python/flyteidl/admin/execution_pb2.py @@ -23,7 +23,7 @@ from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1e\x66lyteidl/admin/execution.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/cluster_assignment.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1b\x66lyteidl/core/metrics.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\xc4\x01\n\x16\x45xecutionCreateRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12\x31\n\x04spec\x18\x04 \x01(\x0b\x32\x1d.flyteidl.admin.ExecutionSpecR\x04spec\x12\x31\n\x06inputs\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x06inputs\"\x99\x01\n\x18\x45xecutionRelaunchRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12\'\n\x0foverwrite_cache\x18\x04 \x01(\x08R\x0eoverwriteCacheJ\x04\x08\x02\x10\x03\"\xa8\x01\n\x17\x45xecutionRecoverRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12=\n\x08metadata\x18\x03 \x01(\x0b\x32!.flyteidl.admin.ExecutionMetadataR\x08metadata\"U\n\x17\x45xecutionCreateResponse\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\"Y\n\x1bWorkflowExecutionGetRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\"\xb6\x01\n\tExecution\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x31\n\x04spec\x18\x02 \x01(\x0b\x32\x1d.flyteidl.admin.ExecutionSpecR\x04spec\x12:\n\x07\x63losure\x18\x03 \x01(\x0b\x32 .flyteidl.admin.ExecutionClosureR\x07\x63losure\"`\n\rExecutionList\x12\x39\n\nexecutions\x18\x01 \x03(\x0b\x32\x19.flyteidl.admin.ExecutionR\nexecutions\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"e\n\x0eLiteralMapBlob\x12\x37\n\x06values\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\x06values\x12\x12\n\x03uri\x18\x02 \x01(\tH\x00R\x03uriB\x06\n\x04\x64\x61ta\"C\n\rAbortMetadata\x12\x14\n\x05\x63\x61use\x18\x01 \x01(\tR\x05\x63\x61use\x12\x1c\n\tprincipal\x18\x02 \x01(\tR\tprincipal\"\x98\x07\n\x10\x45xecutionClosure\x12>\n\x07outputs\x18\x01 \x01(\x0b\x32\x1e.flyteidl.admin.LiteralMapBlobB\x02\x18\x01H\x00R\x07outputs\x12\x35\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12%\n\x0b\x61\x62ort_cause\x18\n \x01(\tB\x02\x18\x01H\x00R\nabortCause\x12\x46\n\x0e\x61\x62ort_metadata\x18\x0c \x01(\x0b\x32\x1d.flyteidl.admin.AbortMetadataH\x00R\rabortMetadata\x12@\n\x0boutput_data\x18\r \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\noutputData\x12\x46\n\x0f\x63omputed_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01R\x0e\x63omputedInputs\x12<\n\x05phase\x18\x04 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x05phase\x12\x39\n\nstarted_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12\x35\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x42\n\rnotifications\x18\t \x03(\x0b\x32\x1c.flyteidl.admin.NotificationR\rnotifications\x12:\n\x0bworkflow_id\x18\x0b \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\nworkflowId\x12]\n\x14state_change_details\x18\x0e \x01(\x0b\x32+.flyteidl.admin.ExecutionStateChangeDetailsR\x12stateChangeDetailsB\x0f\n\routput_result\"[\n\x0eSystemMetadata\x12+\n\x11\x65xecution_cluster\x18\x01 \x01(\tR\x10\x65xecutionCluster\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\"\xba\x04\n\x11\x45xecutionMetadata\x12\x43\n\x04mode\x18\x01 \x01(\x0e\x32/.flyteidl.admin.ExecutionMetadata.ExecutionModeR\x04mode\x12\x1c\n\tprincipal\x18\x02 \x01(\tR\tprincipal\x12\x18\n\x07nesting\x18\x03 \x01(\rR\x07nesting\x12=\n\x0cscheduled_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0bscheduledAt\x12Z\n\x15parent_node_execution\x18\x05 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x13parentNodeExecution\x12[\n\x13reference_execution\x18\x10 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x12referenceExecution\x12G\n\x0fsystem_metadata\x18\x11 \x01(\x0b\x32\x1e.flyteidl.admin.SystemMetadataR\x0esystemMetadata\"g\n\rExecutionMode\x12\n\n\x06MANUAL\x10\x00\x12\r\n\tSCHEDULED\x10\x01\x12\n\n\x06SYSTEM\x10\x02\x12\x0c\n\x08RELAUNCH\x10\x03\x12\x12\n\x0e\x43HILD_WORKFLOW\x10\x04\x12\r\n\tRECOVERED\x10\x05\"V\n\x10NotificationList\x12\x42\n\rnotifications\x18\x01 \x03(\x0b\x32\x1c.flyteidl.admin.NotificationR\rnotifications\"\xfc\x07\n\rExecutionSpec\x12:\n\x0blaunch_plan\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\nlaunchPlan\x12\x35\n\x06inputs\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01R\x06inputs\x12=\n\x08metadata\x18\x03 \x01(\x0b\x32!.flyteidl.admin.ExecutionMetadataR\x08metadata\x12H\n\rnotifications\x18\x05 \x01(\x0b\x32 .flyteidl.admin.NotificationListH\x00R\rnotifications\x12!\n\x0b\x64isable_all\x18\x06 \x01(\x08H\x00R\ndisableAll\x12.\n\x06labels\x18\x07 \x01(\x0b\x32\x16.flyteidl.admin.LabelsR\x06labels\x12=\n\x0b\x61nnotations\x18\x08 \x01(\x0b\x32\x1b.flyteidl.admin.AnnotationsR\x0b\x61nnotations\x12I\n\x10security_context\x18\n \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12\x39\n\tauth_role\x18\x10 \x01(\x0b\x32\x18.flyteidl.admin.AuthRoleB\x02\x18\x01R\x08\x61uthRole\x12M\n\x12quality_of_service\x18\x11 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceR\x10qualityOfService\x12\'\n\x0fmax_parallelism\x18\x12 \x01(\x05R\x0emaxParallelism\x12X\n\x16raw_output_data_config\x18\x13 \x01(\x0b\x32#.flyteidl.admin.RawOutputDataConfigR\x13rawOutputDataConfig\x12P\n\x12\x63luster_assignment\x18\x14 \x01(\x0b\x32!.flyteidl.admin.ClusterAssignmentR\x11\x63lusterAssignment\x12@\n\rinterruptible\x18\x15 \x01(\x0b\x32\x1a.google.protobuf.BoolValueR\rinterruptible\x12\'\n\x0foverwrite_cache\x18\x16 \x01(\x08R\x0eoverwriteCache\x12(\n\x04\x65nvs\x18\x17 \x01(\x0b\x32\x14.flyteidl.admin.EnvsR\x04\x65nvsB\x18\n\x16notification_overridesJ\x04\x08\x04\x10\x05\"m\n\x19\x45xecutionTerminateRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x14\n\x05\x63\x61use\x18\x02 \x01(\tR\x05\x63\x61use\"\x1c\n\x1a\x45xecutionTerminateResponse\"]\n\x1fWorkflowExecutionGetDataRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\"\x88\x02\n WorkflowExecutionGetDataResponse\x12\x35\n\x07outputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x07outputs\x12\x33\n\x06inputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x06inputs\x12:\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\nfullInputs\x12<\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x0b\x66ullOutputs\"\x8a\x01\n\x16\x45xecutionUpdateRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x34\n\x05state\x18\x02 \x01(\x0e\x32\x1e.flyteidl.admin.ExecutionStateR\x05state\"\xae\x01\n\x1b\x45xecutionStateChangeDetails\x12\x34\n\x05state\x18\x01 \x01(\x0e\x32\x1e.flyteidl.admin.ExecutionStateR\x05state\x12;\n\x0boccurred_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1c\n\tprincipal\x18\x03 \x01(\tR\tprincipal\"\x19\n\x17\x45xecutionUpdateResponse\"v\n\"WorkflowExecutionGetMetricsRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x14\n\x05\x64\x65pth\x18\x02 \x01(\x05R\x05\x64\x65pth\"N\n#WorkflowExecutionGetMetricsResponse\x12\'\n\x04span\x18\x01 \x01(\x0b\x32\x13.flyteidl.core.SpanR\x04span*>\n\x0e\x45xecutionState\x12\x14\n\x10\x45XECUTION_ACTIVE\x10\x00\x12\x16\n\x12\x45XECUTION_ARCHIVED\x10\x01\x42\xb4\x01\n\x12\x63om.flyteidl.adminB\x0e\x45xecutionProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1e\x66lyteidl/admin/execution.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/cluster_assignment.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1b\x66lyteidl/core/metrics.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\xc4\x01\n\x16\x45xecutionCreateRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12\x31\n\x04spec\x18\x04 \x01(\x0b\x32\x1d.flyteidl.admin.ExecutionSpecR\x04spec\x12\x31\n\x06inputs\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x06inputs\"\x99\x01\n\x18\x45xecutionRelaunchRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12\'\n\x0foverwrite_cache\x18\x04 \x01(\x08R\x0eoverwriteCacheJ\x04\x08\x02\x10\x03\"\xa8\x01\n\x17\x45xecutionRecoverRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12=\n\x08metadata\x18\x03 \x01(\x0b\x32!.flyteidl.admin.ExecutionMetadataR\x08metadata\"U\n\x17\x45xecutionCreateResponse\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\"Y\n\x1bWorkflowExecutionGetRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\"\xb6\x01\n\tExecution\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x31\n\x04spec\x18\x02 \x01(\x0b\x32\x1d.flyteidl.admin.ExecutionSpecR\x04spec\x12:\n\x07\x63losure\x18\x03 \x01(\x0b\x32 .flyteidl.admin.ExecutionClosureR\x07\x63losure\"`\n\rExecutionList\x12\x39\n\nexecutions\x18\x01 \x03(\x0b\x32\x19.flyteidl.admin.ExecutionR\nexecutions\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"e\n\x0eLiteralMapBlob\x12\x37\n\x06values\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\x06values\x12\x12\n\x03uri\x18\x02 \x01(\tH\x00R\x03uriB\x06\n\x04\x64\x61ta\"C\n\rAbortMetadata\x12\x14\n\x05\x63\x61use\x18\x01 \x01(\tR\x05\x63\x61use\x12\x1c\n\tprincipal\x18\x02 \x01(\tR\tprincipal\"\x98\x07\n\x10\x45xecutionClosure\x12>\n\x07outputs\x18\x01 \x01(\x0b\x32\x1e.flyteidl.admin.LiteralMapBlobB\x02\x18\x01H\x00R\x07outputs\x12\x35\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12%\n\x0b\x61\x62ort_cause\x18\n \x01(\tB\x02\x18\x01H\x00R\nabortCause\x12\x46\n\x0e\x61\x62ort_metadata\x18\x0c \x01(\x0b\x32\x1d.flyteidl.admin.AbortMetadataH\x00R\rabortMetadata\x12@\n\x0boutput_data\x18\r \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\noutputData\x12\x46\n\x0f\x63omputed_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01R\x0e\x63omputedInputs\x12<\n\x05phase\x18\x04 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x05phase\x12\x39\n\nstarted_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12\x35\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x42\n\rnotifications\x18\t \x03(\x0b\x32\x1c.flyteidl.admin.NotificationR\rnotifications\x12:\n\x0bworkflow_id\x18\x0b \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\nworkflowId\x12]\n\x14state_change_details\x18\x0e \x01(\x0b\x32+.flyteidl.admin.ExecutionStateChangeDetailsR\x12stateChangeDetailsB\x0f\n\routput_result\"[\n\x0eSystemMetadata\x12+\n\x11\x65xecution_cluster\x18\x01 \x01(\tR\x10\x65xecutionCluster\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\"\xba\x04\n\x11\x45xecutionMetadata\x12\x43\n\x04mode\x18\x01 \x01(\x0e\x32/.flyteidl.admin.ExecutionMetadata.ExecutionModeR\x04mode\x12\x1c\n\tprincipal\x18\x02 \x01(\tR\tprincipal\x12\x18\n\x07nesting\x18\x03 \x01(\rR\x07nesting\x12=\n\x0cscheduled_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0bscheduledAt\x12Z\n\x15parent_node_execution\x18\x05 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x13parentNodeExecution\x12[\n\x13reference_execution\x18\x10 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x12referenceExecution\x12G\n\x0fsystem_metadata\x18\x11 \x01(\x0b\x32\x1e.flyteidl.admin.SystemMetadataR\x0esystemMetadata\"g\n\rExecutionMode\x12\n\n\x06MANUAL\x10\x00\x12\r\n\tSCHEDULED\x10\x01\x12\n\n\x06SYSTEM\x10\x02\x12\x0c\n\x08RELAUNCH\x10\x03\x12\x12\n\x0e\x43HILD_WORKFLOW\x10\x04\x12\r\n\tRECOVERED\x10\x05\"V\n\x10NotificationList\x12\x42\n\rnotifications\x18\x01 \x03(\x0b\x32\x1c.flyteidl.admin.NotificationR\rnotifications\"\x90\x08\n\rExecutionSpec\x12:\n\x0blaunch_plan\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\nlaunchPlan\x12\x35\n\x06inputs\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01R\x06inputs\x12=\n\x08metadata\x18\x03 \x01(\x0b\x32!.flyteidl.admin.ExecutionMetadataR\x08metadata\x12H\n\rnotifications\x18\x05 \x01(\x0b\x32 .flyteidl.admin.NotificationListH\x00R\rnotifications\x12!\n\x0b\x64isable_all\x18\x06 \x01(\x08H\x00R\ndisableAll\x12.\n\x06labels\x18\x07 \x01(\x0b\x32\x16.flyteidl.admin.LabelsR\x06labels\x12=\n\x0b\x61nnotations\x18\x08 \x01(\x0b\x32\x1b.flyteidl.admin.AnnotationsR\x0b\x61nnotations\x12I\n\x10security_context\x18\n \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12\x39\n\tauth_role\x18\x10 \x01(\x0b\x32\x18.flyteidl.admin.AuthRoleB\x02\x18\x01R\x08\x61uthRole\x12M\n\x12quality_of_service\x18\x11 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceR\x10qualityOfService\x12\'\n\x0fmax_parallelism\x18\x12 \x01(\x05R\x0emaxParallelism\x12X\n\x16raw_output_data_config\x18\x13 \x01(\x0b\x32#.flyteidl.admin.RawOutputDataConfigR\x13rawOutputDataConfig\x12P\n\x12\x63luster_assignment\x18\x14 \x01(\x0b\x32!.flyteidl.admin.ClusterAssignmentR\x11\x63lusterAssignment\x12@\n\rinterruptible\x18\x15 \x01(\x0b\x32\x1a.google.protobuf.BoolValueR\rinterruptible\x12\'\n\x0foverwrite_cache\x18\x16 \x01(\x08R\x0eoverwriteCache\x12(\n\x04\x65nvs\x18\x17 \x01(\x0b\x32\x14.flyteidl.admin.EnvsR\x04\x65nvs\x12\x12\n\x04tags\x18\x18 \x03(\tR\x04tagsB\x18\n\x16notification_overridesJ\x04\x08\x04\x10\x05\"m\n\x19\x45xecutionTerminateRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x14\n\x05\x63\x61use\x18\x02 \x01(\tR\x05\x63\x61use\"\x1c\n\x1a\x45xecutionTerminateResponse\"]\n\x1fWorkflowExecutionGetDataRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\"\x88\x02\n WorkflowExecutionGetDataResponse\x12\x35\n\x07outputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x07outputs\x12\x33\n\x06inputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x06inputs\x12:\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\nfullInputs\x12<\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x0b\x66ullOutputs\"\x8a\x01\n\x16\x45xecutionUpdateRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x34\n\x05state\x18\x02 \x01(\x0e\x32\x1e.flyteidl.admin.ExecutionStateR\x05state\"\xae\x01\n\x1b\x45xecutionStateChangeDetails\x12\x34\n\x05state\x18\x01 \x01(\x0e\x32\x1e.flyteidl.admin.ExecutionStateR\x05state\x12;\n\x0boccurred_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1c\n\tprincipal\x18\x03 \x01(\tR\tprincipal\"\x19\n\x17\x45xecutionUpdateResponse\"v\n\"WorkflowExecutionGetMetricsRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x14\n\x05\x64\x65pth\x18\x02 \x01(\x05R\x05\x64\x65pth\"N\n#WorkflowExecutionGetMetricsResponse\x12\'\n\x04span\x18\x01 \x01(\x0b\x32\x13.flyteidl.core.SpanR\x04span*>\n\x0e\x45xecutionState\x12\x14\n\x10\x45XECUTION_ACTIVE\x10\x00\x12\x16\n\x12\x45XECUTION_ARCHIVED\x10\x01\x42\xb4\x01\n\x12\x63om.flyteidl.adminB\x0e\x45xecutionProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -50,8 +50,8 @@ _WORKFLOWEXECUTIONGETDATARESPONSE.fields_by_name['outputs']._serialized_options = b'\030\001' _WORKFLOWEXECUTIONGETDATARESPONSE.fields_by_name['inputs']._options = None _WORKFLOWEXECUTIONGETDATARESPONSE.fields_by_name['inputs']._serialized_options = b'\030\001' - _globals['_EXECUTIONSTATE']._serialized_start=5276 - _globals['_EXECUTIONSTATE']._serialized_end=5338 + _globals['_EXECUTIONSTATE']._serialized_start=5296 + _globals['_EXECUTIONSTATE']._serialized_end=5358 _globals['_EXECUTIONCREATEREQUEST']._serialized_start=370 _globals['_EXECUTIONCREATEREQUEST']._serialized_end=566 _globals['_EXECUTIONRELAUNCHREQUEST']._serialized_start=569 @@ -81,23 +81,23 @@ _globals['_NOTIFICATIONLIST']._serialized_start=3117 _globals['_NOTIFICATIONLIST']._serialized_end=3203 _globals['_EXECUTIONSPEC']._serialized_start=3206 - _globals['_EXECUTIONSPEC']._serialized_end=4226 - _globals['_EXECUTIONTERMINATEREQUEST']._serialized_start=4228 - _globals['_EXECUTIONTERMINATEREQUEST']._serialized_end=4337 - _globals['_EXECUTIONTERMINATERESPONSE']._serialized_start=4339 - _globals['_EXECUTIONTERMINATERESPONSE']._serialized_end=4367 - _globals['_WORKFLOWEXECUTIONGETDATAREQUEST']._serialized_start=4369 - _globals['_WORKFLOWEXECUTIONGETDATAREQUEST']._serialized_end=4462 - _globals['_WORKFLOWEXECUTIONGETDATARESPONSE']._serialized_start=4465 - _globals['_WORKFLOWEXECUTIONGETDATARESPONSE']._serialized_end=4729 - _globals['_EXECUTIONUPDATEREQUEST']._serialized_start=4732 - _globals['_EXECUTIONUPDATEREQUEST']._serialized_end=4870 - _globals['_EXECUTIONSTATECHANGEDETAILS']._serialized_start=4873 - _globals['_EXECUTIONSTATECHANGEDETAILS']._serialized_end=5047 - _globals['_EXECUTIONUPDATERESPONSE']._serialized_start=5049 - _globals['_EXECUTIONUPDATERESPONSE']._serialized_end=5074 - _globals['_WORKFLOWEXECUTIONGETMETRICSREQUEST']._serialized_start=5076 - _globals['_WORKFLOWEXECUTIONGETMETRICSREQUEST']._serialized_end=5194 - _globals['_WORKFLOWEXECUTIONGETMETRICSRESPONSE']._serialized_start=5196 - _globals['_WORKFLOWEXECUTIONGETMETRICSRESPONSE']._serialized_end=5274 + _globals['_EXECUTIONSPEC']._serialized_end=4246 + _globals['_EXECUTIONTERMINATEREQUEST']._serialized_start=4248 + _globals['_EXECUTIONTERMINATEREQUEST']._serialized_end=4357 + _globals['_EXECUTIONTERMINATERESPONSE']._serialized_start=4359 + _globals['_EXECUTIONTERMINATERESPONSE']._serialized_end=4387 + _globals['_WORKFLOWEXECUTIONGETDATAREQUEST']._serialized_start=4389 + _globals['_WORKFLOWEXECUTIONGETDATAREQUEST']._serialized_end=4482 + _globals['_WORKFLOWEXECUTIONGETDATARESPONSE']._serialized_start=4485 + _globals['_WORKFLOWEXECUTIONGETDATARESPONSE']._serialized_end=4749 + _globals['_EXECUTIONUPDATEREQUEST']._serialized_start=4752 + _globals['_EXECUTIONUPDATEREQUEST']._serialized_end=4890 + _globals['_EXECUTIONSTATECHANGEDETAILS']._serialized_start=4893 + _globals['_EXECUTIONSTATECHANGEDETAILS']._serialized_end=5067 + _globals['_EXECUTIONUPDATERESPONSE']._serialized_start=5069 + _globals['_EXECUTIONUPDATERESPONSE']._serialized_end=5094 + _globals['_WORKFLOWEXECUTIONGETMETRICSREQUEST']._serialized_start=5096 + _globals['_WORKFLOWEXECUTIONGETMETRICSREQUEST']._serialized_end=5214 + _globals['_WORKFLOWEXECUTIONGETMETRICSRESPONSE']._serialized_start=5216 + _globals['_WORKFLOWEXECUTIONGETMETRICSRESPONSE']._serialized_end=5294 # @@protoc_insertion_point(module_scope) diff --git a/gen/pb_python/flyteidl/admin/execution_pb2.pyi b/gen/pb_python/flyteidl/admin/execution_pb2.pyi index d894af7b2..f29b3b747 100644 --- a/gen/pb_python/flyteidl/admin/execution_pb2.pyi +++ b/gen/pb_python/flyteidl/admin/execution_pb2.pyi @@ -182,7 +182,7 @@ class NotificationList(_message.Message): def __init__(self, notifications: _Optional[_Iterable[_Union[_common_pb2.Notification, _Mapping]]] = ...) -> None: ... class ExecutionSpec(_message.Message): - __slots__ = ["launch_plan", "inputs", "metadata", "notifications", "disable_all", "labels", "annotations", "security_context", "auth_role", "quality_of_service", "max_parallelism", "raw_output_data_config", "cluster_assignment", "interruptible", "overwrite_cache", "envs"] + __slots__ = ["launch_plan", "inputs", "metadata", "notifications", "disable_all", "labels", "annotations", "security_context", "auth_role", "quality_of_service", "max_parallelism", "raw_output_data_config", "cluster_assignment", "interruptible", "overwrite_cache", "envs", "tags"] LAUNCH_PLAN_FIELD_NUMBER: _ClassVar[int] INPUTS_FIELD_NUMBER: _ClassVar[int] METADATA_FIELD_NUMBER: _ClassVar[int] @@ -199,6 +199,7 @@ class ExecutionSpec(_message.Message): INTERRUPTIBLE_FIELD_NUMBER: _ClassVar[int] OVERWRITE_CACHE_FIELD_NUMBER: _ClassVar[int] ENVS_FIELD_NUMBER: _ClassVar[int] + TAGS_FIELD_NUMBER: _ClassVar[int] launch_plan: _identifier_pb2.Identifier inputs: _literals_pb2.LiteralMap metadata: ExecutionMetadata @@ -215,7 +216,8 @@ class ExecutionSpec(_message.Message): interruptible: _wrappers_pb2.BoolValue overwrite_cache: bool envs: _common_pb2.Envs - def __init__(self, launch_plan: _Optional[_Union[_identifier_pb2.Identifier, _Mapping]] = ..., inputs: _Optional[_Union[_literals_pb2.LiteralMap, _Mapping]] = ..., metadata: _Optional[_Union[ExecutionMetadata, _Mapping]] = ..., notifications: _Optional[_Union[NotificationList, _Mapping]] = ..., disable_all: bool = ..., labels: _Optional[_Union[_common_pb2.Labels, _Mapping]] = ..., annotations: _Optional[_Union[_common_pb2.Annotations, _Mapping]] = ..., security_context: _Optional[_Union[_security_pb2.SecurityContext, _Mapping]] = ..., auth_role: _Optional[_Union[_common_pb2.AuthRole, _Mapping]] = ..., quality_of_service: _Optional[_Union[_execution_pb2.QualityOfService, _Mapping]] = ..., max_parallelism: _Optional[int] = ..., raw_output_data_config: _Optional[_Union[_common_pb2.RawOutputDataConfig, _Mapping]] = ..., cluster_assignment: _Optional[_Union[_cluster_assignment_pb2.ClusterAssignment, _Mapping]] = ..., interruptible: _Optional[_Union[_wrappers_pb2.BoolValue, _Mapping]] = ..., overwrite_cache: bool = ..., envs: _Optional[_Union[_common_pb2.Envs, _Mapping]] = ...) -> None: ... + tags: _containers.RepeatedScalarFieldContainer[str] + def __init__(self, launch_plan: _Optional[_Union[_identifier_pb2.Identifier, _Mapping]] = ..., inputs: _Optional[_Union[_literals_pb2.LiteralMap, _Mapping]] = ..., metadata: _Optional[_Union[ExecutionMetadata, _Mapping]] = ..., notifications: _Optional[_Union[NotificationList, _Mapping]] = ..., disable_all: bool = ..., labels: _Optional[_Union[_common_pb2.Labels, _Mapping]] = ..., annotations: _Optional[_Union[_common_pb2.Annotations, _Mapping]] = ..., security_context: _Optional[_Union[_security_pb2.SecurityContext, _Mapping]] = ..., auth_role: _Optional[_Union[_common_pb2.AuthRole, _Mapping]] = ..., quality_of_service: _Optional[_Union[_execution_pb2.QualityOfService, _Mapping]] = ..., max_parallelism: _Optional[int] = ..., raw_output_data_config: _Optional[_Union[_common_pb2.RawOutputDataConfig, _Mapping]] = ..., cluster_assignment: _Optional[_Union[_cluster_assignment_pb2.ClusterAssignment, _Mapping]] = ..., interruptible: _Optional[_Union[_wrappers_pb2.BoolValue, _Mapping]] = ..., overwrite_cache: bool = ..., envs: _Optional[_Union[_common_pb2.Envs, _Mapping]] = ..., tags: _Optional[_Iterable[str]] = ...) -> None: ... class ExecutionTerminateRequest(_message.Message): __slots__ = ["id", "cause"] diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_execution_spec.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_execution_spec.py index 861bb4c19..5f1e5407a 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_execution_spec.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_execution_spec.py @@ -59,7 +59,8 @@ class AdminExecutionSpec(object): 'cluster_assignment': 'AdminClusterAssignment', 'interruptible': 'bool', 'overwrite_cache': 'bool', - 'envs': 'AdminEnvs' + 'envs': 'AdminEnvs', + 'tags': 'list[str]' } attribute_map = { @@ -78,10 +79,11 @@ class AdminExecutionSpec(object): 'cluster_assignment': 'cluster_assignment', 'interruptible': 'interruptible', 'overwrite_cache': 'overwrite_cache', - 'envs': 'envs' + 'envs': 'envs', + 'tags': 'tags' } - def __init__(self, launch_plan=None, inputs=None, metadata=None, notifications=None, disable_all=None, labels=None, annotations=None, security_context=None, auth_role=None, quality_of_service=None, max_parallelism=None, raw_output_data_config=None, cluster_assignment=None, interruptible=None, overwrite_cache=None, envs=None): # noqa: E501 + def __init__(self, launch_plan=None, inputs=None, metadata=None, notifications=None, disable_all=None, labels=None, annotations=None, security_context=None, auth_role=None, quality_of_service=None, max_parallelism=None, raw_output_data_config=None, cluster_assignment=None, interruptible=None, overwrite_cache=None, envs=None, tags=None): # noqa: E501 """AdminExecutionSpec - a model defined in Swagger""" # noqa: E501 self._launch_plan = None @@ -100,6 +102,7 @@ def __init__(self, launch_plan=None, inputs=None, metadata=None, notifications=N self._interruptible = None self._overwrite_cache = None self._envs = None + self._tags = None self.discriminator = None if launch_plan is not None: @@ -134,6 +137,8 @@ def __init__(self, launch_plan=None, inputs=None, metadata=None, notifications=N self.overwrite_cache = overwrite_cache if envs is not None: self.envs = envs + if tags is not None: + self.tags = tags @property def launch_plan(self): @@ -495,6 +500,29 @@ def envs(self, envs): self._envs = envs + @property + def tags(self): + """Gets the tags of this AdminExecutionSpec. # noqa: E501 + + Tags to be set for the execution. # noqa: E501 + + :return: The tags of this AdminExecutionSpec. # noqa: E501 + :rtype: list[str] + """ + return self._tags + + @tags.setter + def tags(self, tags): + """Sets the tags of this AdminExecutionSpec. + + Tags to be set for the execution. # noqa: E501 + + :param tags: The tags of this AdminExecutionSpec. # noqa: E501 + :type: list[str] + """ + + self._tags = tags + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/gen/pb_rust/flyteidl.admin.rs b/gen/pb_rust/flyteidl.admin.rs index 2bf1d220b..a6acaa927 100644 --- a/gen/pb_rust/flyteidl.admin.rs +++ b/gen/pb_rust/flyteidl.admin.rs @@ -1138,6 +1138,9 @@ pub struct ExecutionSpec { /// Environment variables to be set for the execution. #[prost(message, optional, tag="23")] pub envs: ::core::option::Option, + /// Tags to be set for the execution. + #[prost(string, repeated, tag="24")] + pub tags: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, #[prost(oneof="execution_spec::NotificationOverrides", tags="5, 6")] pub notification_overrides: ::core::option::Option, } diff --git a/protos/flyteidl/admin/execution.proto b/protos/flyteidl/admin/execution.proto index 6f17bffd6..55933d470 100644 --- a/protos/flyteidl/admin/execution.proto +++ b/protos/flyteidl/admin/execution.proto @@ -316,6 +316,8 @@ message ExecutionSpec { // Environment variables to be set for the execution. Envs envs = 23; + // Tags to be set for the execution. + repeated string tags = 24; } // Request to terminate an in-progress execution. This action is irreversible. From 0dabef70811b92d63ac4abaff44eb0c96162b3c7 Mon Sep 17 00:00:00 2001 From: Katrina Rogan Date: Wed, 9 Aug 2023 09:02:18 -0700 Subject: [PATCH 2/8] Correct comment for array job max parallelism (#431) Signed-off-by: Katrina Rogan --- gen/pb-go/flyteidl/plugins/array_job.pb.go | 2 +- gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java | 10 +++++----- gen/pb_rust/flyteidl.plugins.rs | 2 +- protos/flyteidl/plugins/array_job.proto | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gen/pb-go/flyteidl/plugins/array_job.pb.go b/gen/pb-go/flyteidl/plugins/array_job.pb.go index 9c24351dc..11fbcb54f 100644 --- a/gen/pb-go/flyteidl/plugins/array_job.pb.go +++ b/gen/pb-go/flyteidl/plugins/array_job.pb.go @@ -23,7 +23,7 @@ const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package // Describes a job that can process independent pieces of data concurrently. Multiple copies of the runnable component // will be executed concurrently. type ArrayJob struct { - // Defines the minimum number of instances to bring up concurrently at any given point. Note that this is an + // Defines the maximum number of instances to bring up concurrently at any given point. Note that this is an // optimistic restriction and that, due to network partitioning or other failures, the actual number of currently // running instances might be more. This has to be a positive number if assigned. Default value is size. Parallelism int64 `protobuf:"varint,1,opt,name=parallelism,proto3" json:"parallelism,omitempty"` diff --git a/gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java b/gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java index be40c26ae..fa8dfcc55 100644 --- a/gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java +++ b/gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java @@ -20,7 +20,7 @@ public interface ArrayJobOrBuilder extends /** *
-     * Defines the minimum number of instances to bring up concurrently at any given point. Note that this is an
+     * Defines the maximum number of instances to bring up concurrently at any given point. Note that this is an
      * optimistic restriction and that, due to network partitioning or other failures, the actual number of currently
      * running instances might be more. This has to be a positive number if assigned. Default value is size.
      * 
@@ -201,7 +201,7 @@ public int getNumber() { private long parallelism_; /** *
-     * Defines the minimum number of instances to bring up concurrently at any given point. Note that this is an
+     * Defines the maximum number of instances to bring up concurrently at any given point. Note that this is an
      * optimistic restriction and that, due to network partitioning or other failures, the actual number of currently
      * running instances might be more. This has to be a positive number if assigned. Default value is size.
      * 
@@ -672,7 +672,7 @@ public Builder clearSuccessCriteria() { private long parallelism_ ; /** *
-       * Defines the minimum number of instances to bring up concurrently at any given point. Note that this is an
+       * Defines the maximum number of instances to bring up concurrently at any given point. Note that this is an
        * optimistic restriction and that, due to network partitioning or other failures, the actual number of currently
        * running instances might be more. This has to be a positive number if assigned. Default value is size.
        * 
@@ -684,7 +684,7 @@ public long getParallelism() { } /** *
-       * Defines the minimum number of instances to bring up concurrently at any given point. Note that this is an
+       * Defines the maximum number of instances to bring up concurrently at any given point. Note that this is an
        * optimistic restriction and that, due to network partitioning or other failures, the actual number of currently
        * running instances might be more. This has to be a positive number if assigned. Default value is size.
        * 
@@ -699,7 +699,7 @@ public Builder setParallelism(long value) { } /** *
-       * Defines the minimum number of instances to bring up concurrently at any given point. Note that this is an
+       * Defines the maximum number of instances to bring up concurrently at any given point. Note that this is an
        * optimistic restriction and that, due to network partitioning or other failures, the actual number of currently
        * running instances might be more. This has to be a positive number if assigned. Default value is size.
        * 
diff --git a/gen/pb_rust/flyteidl.plugins.rs b/gen/pb_rust/flyteidl.plugins.rs index 2bc8b08c2..5c7873b5d 100644 --- a/gen/pb_rust/flyteidl.plugins.rs +++ b/gen/pb_rust/flyteidl.plugins.rs @@ -4,7 +4,7 @@ #[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ArrayJob { - /// Defines the minimum number of instances to bring up concurrently at any given point. Note that this is an + /// Defines the maximum number of instances to bring up concurrently at any given point. Note that this is an /// optimistic restriction and that, due to network partitioning or other failures, the actual number of currently /// running instances might be more. This has to be a positive number if assigned. Default value is size. #[prost(int64, tag="1")] diff --git a/protos/flyteidl/plugins/array_job.proto b/protos/flyteidl/plugins/array_job.proto index 90442efd7..b46fee110 100644 --- a/protos/flyteidl/plugins/array_job.proto +++ b/protos/flyteidl/plugins/array_job.proto @@ -7,7 +7,7 @@ option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"; // Describes a job that can process independent pieces of data concurrently. Multiple copies of the runnable component // will be executed concurrently. message ArrayJob { - // Defines the minimum number of instances to bring up concurrently at any given point. Note that this is an + // Defines the maximum number of instances to bring up concurrently at any given point. Note that this is an // optimistic restriction and that, due to network partitioning or other failures, the actual number of currently // running instances might be more. This has to be a positive number if assigned. Default value is size. int64 parallelism = 1; From 5198c9b05bd9bb24ffd00311c6147386468a6ed8 Mon Sep 17 00:00:00 2001 From: Kevin Su Date: Mon, 14 Aug 2023 15:19:01 -0700 Subject: [PATCH 3/8] Add the scalar to the operand (#427) Signed-off-by: Kevin Su --- gen/pb-cpp/flyteidl/core/condition.pb.cc | 143 +- gen/pb-cpp/flyteidl/core/condition.pb.h | 65 +- gen/pb-go/flyteidl/core/condition.pb.go | 78 +- .../flyteidl/core/condition.pb.validate.go | 12 + gen/pb-go/flyteidl/service/admin.swagger.json | 4 + .../service/flyteadmin/api/swagger.yaml | 44989 +++++++++++++++- .../service/flyteadmin/model_core_operand.go | 1 + gen/pb-go/flyteidl/service/openapi.go | 4 +- gen/pb-java/flyteidl/core/Condition.java | 370 +- gen/pb-js/flyteidl.d.ts | 8 +- gen/pb-js/flyteidl.js | 28 +- gen/pb_python/flyteidl/core/condition_pb2.py | 20 +- gen/pb_python/flyteidl/core/condition_pb2.pyi | 6 +- .../flyteadmin/models/core_operand.py | 33 +- gen/pb_rust/flyteidl.core.rs | 5 +- protos/flyteidl/core/condition.proto | 4 +- 16 files changed, 45533 insertions(+), 237 deletions(-) diff --git a/gen/pb-cpp/flyteidl/core/condition.pb.cc b/gen/pb-cpp/flyteidl/core/condition.pb.cc index c78159b00..11d6e5c61 100644 --- a/gen/pb-cpp/flyteidl/core/condition.pb.cc +++ b/gen/pb-cpp/flyteidl/core/condition.pb.cc @@ -18,8 +18,9 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fcondition_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_BooleanExpression_flyteidl_2fcore_2fcondition_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fcondition_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_ComparisonExpression_flyteidl_2fcore_2fcondition_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fcondition_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_Operand_flyteidl_2fcore_2fcondition_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fcondition_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_Operand_flyteidl_2fcore_2fcondition_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_Primitive_flyteidl_2fcore_2fliterals_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::protobuf::internal::SCCInfo<9> scc_info_Literal_flyteidl_2fcore_2fliterals_2eproto; namespace flyteidl { namespace core { class ComparisonExpressionDefaultTypeInternal { @@ -31,6 +32,7 @@ class OperandDefaultTypeInternal { ::google::protobuf::internal::ExplicitlyConstructed _instance; const ::flyteidl::core::Primitive* primitive_; ::google::protobuf::internal::ArenaStringPtr var_; + const ::flyteidl::core::Scalar* scalar_; } _Operand_default_instance_; class BooleanExpressionDefaultTypeInternal { public: @@ -70,9 +72,10 @@ static void InitDefaultsOperand_flyteidl_2fcore_2fcondition_2eproto() { ::flyteidl::core::Operand::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<1> scc_info_Operand_flyteidl_2fcore_2fcondition_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsOperand_flyteidl_2fcore_2fcondition_2eproto}, { - &scc_info_Primitive_flyteidl_2fcore_2fliterals_2eproto.base,}}; +::google::protobuf::internal::SCCInfo<2> scc_info_Operand_flyteidl_2fcore_2fcondition_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsOperand_flyteidl_2fcore_2fcondition_2eproto}, { + &scc_info_Primitive_flyteidl_2fcore_2fliterals_2eproto.base, + &scc_info_Literal_flyteidl_2fcore_2fliterals_2eproto.base,}}; static void InitDefaultsBooleanExpression_flyteidl_2fcore_2fcondition_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -121,6 +124,7 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fcore_2fcondition_2eproto ~0u, // no _weak_field_map_ offsetof(::flyteidl::core::OperandDefaultTypeInternal, primitive_), offsetof(::flyteidl::core::OperandDefaultTypeInternal, var_), + offsetof(::flyteidl::core::OperandDefaultTypeInternal, scalar_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::Operand, val_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::core::BooleanExpression, _internal_metadata_), @@ -142,8 +146,8 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fcore_2fcondition_2eproto static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { { 0, -1, sizeof(::flyteidl::core::ComparisonExpression)}, { 8, -1, sizeof(::flyteidl::core::Operand)}, - { 16, -1, sizeof(::flyteidl::core::BooleanExpression)}, - { 24, -1, sizeof(::flyteidl::core::ConjunctionExpression)}, + { 17, -1, sizeof(::flyteidl::core::BooleanExpression)}, + { 25, -1, sizeof(::flyteidl::core::ConjunctionExpression)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { @@ -167,26 +171,27 @@ const char descriptor_table_protodef_flyteidl_2fcore_2fcondition_2eproto[] = "rator\022*\n\nleft_value\030\002 \001(\0132\026.flyteidl.cor" "e.Operand\022+\n\013right_value\030\003 \001(\0132\026.flyteid" "l.core.Operand\"=\n\010Operator\022\006\n\002EQ\020\000\022\007\n\003NE" - "Q\020\001\022\006\n\002GT\020\002\022\007\n\003GTE\020\003\022\006\n\002LT\020\004\022\007\n\003LTE\020\005\"N\n" - "\007Operand\022-\n\tprimitive\030\001 \001(\0132\030.flyteidl.c" - "ore.PrimitiveH\000\022\r\n\003var\030\002 \001(\tH\000B\005\n\003val\"\223\001" - "\n\021BooleanExpression\022;\n\013conjunction\030\001 \001(\013" - "2$.flyteidl.core.ConjunctionExpressionH\000" - "\0229\n\ncomparison\030\002 \001(\0132#.flyteidl.core.Com" - "parisonExpressionH\000B\006\n\004expr\"\372\001\n\025Conjunct" - "ionExpression\022F\n\010operator\030\001 \001(\01624.flytei" - "dl.core.ConjunctionExpression.LogicalOpe" - "rator\0229\n\017left_expression\030\002 \001(\0132 .flyteid" - "l.core.BooleanExpression\022:\n\020right_expres" - "sion\030\003 \001(\0132 .flyteidl.core.BooleanExpres" - "sion\"\"\n\017LogicalOperator\022\007\n\003AND\020\000\022\006\n\002OR\020\001" - "B6Z4github.com/flyteorg/flyteidl/gen/pb-" - "go/flyteidl/coreb\006proto3" + "Q\020\001\022\006\n\002GT\020\002\022\007\n\003GTE\020\003\022\006\n\002LT\020\004\022\007\n\003LTE\020\005\"{\n" + "\007Operand\0221\n\tprimitive\030\001 \001(\0132\030.flyteidl.c" + "ore.PrimitiveB\002\030\001H\000\022\r\n\003var\030\002 \001(\tH\000\022\'\n\006sc" + "alar\030\003 \001(\0132\025.flyteidl.core.ScalarH\000B\005\n\003v" + "al\"\223\001\n\021BooleanExpression\022;\n\013conjunction\030" + "\001 \001(\0132$.flyteidl.core.ConjunctionExpress" + "ionH\000\0229\n\ncomparison\030\002 \001(\0132#.flyteidl.cor" + "e.ComparisonExpressionH\000B\006\n\004expr\"\372\001\n\025Con" + "junctionExpression\022F\n\010operator\030\001 \001(\01624.f" + "lyteidl.core.ConjunctionExpression.Logic" + "alOperator\0229\n\017left_expression\030\002 \001(\0132 .fl" + "yteidl.core.BooleanExpression\022:\n\020right_e" + "xpression\030\003 \001(\0132 .flyteidl.core.BooleanE" + "xpression\"\"\n\017LogicalOperator\022\007\n\003AND\020\000\022\006\n" + "\002OR\020\001B6Z4github.com/flyteorg/flyteidl/ge" + "n/pb-go/flyteidl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2fcondition_2eproto = { false, InitDefaults_flyteidl_2fcore_2fcondition_2eproto, descriptor_table_protodef_flyteidl_2fcore_2fcondition_2eproto, - "flyteidl/core/condition.proto", &assign_descriptors_table_flyteidl_2fcore_2fcondition_2eproto, 864, + "flyteidl/core/condition.proto", &assign_descriptors_table_flyteidl_2fcore_2fcondition_2eproto, 909, }; void AddDescriptors_flyteidl_2fcore_2fcondition_2eproto() { @@ -661,16 +666,23 @@ void Operand::InitAsDefaultInstance() { ::flyteidl::core::Primitive::internal_default_instance()); ::flyteidl::core::_Operand_default_instance_.var_.UnsafeSetDefault( &::google::protobuf::internal::GetEmptyStringAlreadyInited()); + ::flyteidl::core::_Operand_default_instance_.scalar_ = const_cast< ::flyteidl::core::Scalar*>( + ::flyteidl::core::Scalar::internal_default_instance()); } class Operand::HasBitSetters { public: static const ::flyteidl::core::Primitive& primitive(const Operand* msg); + static const ::flyteidl::core::Scalar& scalar(const Operand* msg); }; const ::flyteidl::core::Primitive& Operand::HasBitSetters::primitive(const Operand* msg) { return *msg->val_.primitive_; } +const ::flyteidl::core::Scalar& +Operand::HasBitSetters::scalar(const Operand* msg) { + return *msg->val_.scalar_; +} void Operand::set_allocated_primitive(::flyteidl::core::Primitive* primitive) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_val(); @@ -691,9 +703,30 @@ void Operand::clear_primitive() { clear_has_val(); } } +void Operand::set_allocated_scalar(::flyteidl::core::Scalar* scalar) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + clear_val(); + if (scalar) { + ::google::protobuf::Arena* submessage_arena = nullptr; + if (message_arena != submessage_arena) { + scalar = ::google::protobuf::internal::GetOwnedMessage( + message_arena, scalar, submessage_arena); + } + set_has_scalar(); + val_.scalar_ = scalar; + } + // @@protoc_insertion_point(field_set_allocated:flyteidl.core.Operand.scalar) +} +void Operand::clear_scalar() { + if (has_scalar()) { + delete val_.scalar_; + clear_has_val(); + } +} #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int Operand::kPrimitiveFieldNumber; const int Operand::kVarFieldNumber; +const int Operand::kScalarFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 Operand::Operand() @@ -715,6 +748,10 @@ Operand::Operand(const Operand& from) set_var(from.var()); break; } + case kScalar: { + mutable_scalar()->::flyteidl::core::Scalar::MergeFrom(from.scalar()); + break; + } case VAL_NOT_SET: { break; } @@ -759,6 +796,10 @@ void Operand::clear_val() { val_.var_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); break; } + case kScalar: { + delete val_.scalar_; + break; + } case VAL_NOT_SET: { break; } @@ -790,7 +831,7 @@ const char* Operand::_InternalParse(const char* begin, const char* end, void* ob ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { - // .flyteidl.core.Primitive primitive = 1; + // .flyteidl.core.Primitive primitive = 1 [deprecated = true]; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); @@ -819,6 +860,19 @@ const char* Operand::_InternalParse(const char* begin, const char* end, void* ob ptr += size; break; } + // .flyteidl.core.Scalar scalar = 3; + case 3: { + if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + parser_till_end = ::flyteidl::core::Scalar::_InternalParse; + object = msg->mutable_scalar(); + if (size > end - ptr) goto len_delim_till_end; + ptr += size; + GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( + {parser_till_end, object}, ptr - size, ptr)); + break; + } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -853,7 +907,7 @@ bool Operand::MergePartialFromCodedStream( tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // .flyteidl.core.Primitive primitive = 1; + // .flyteidl.core.Primitive primitive = 1 [deprecated = true]; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( @@ -879,6 +933,17 @@ bool Operand::MergePartialFromCodedStream( break; } + // .flyteidl.core.Scalar scalar = 3; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_scalar())); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -906,7 +971,7 @@ void Operand::SerializeWithCachedSizes( ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // .flyteidl.core.Primitive primitive = 1; + // .flyteidl.core.Primitive primitive = 1 [deprecated = true]; if (has_primitive()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::primitive(this), output); @@ -922,6 +987,12 @@ void Operand::SerializeWithCachedSizes( 2, this->var(), output); } + // .flyteidl.core.Scalar scalar = 3; + if (has_scalar()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 3, HasBitSetters::scalar(this), output); + } + if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -935,7 +1006,7 @@ ::google::protobuf::uint8* Operand::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // .flyteidl.core.Primitive primitive = 1; + // .flyteidl.core.Primitive primitive = 1 [deprecated = true]; if (has_primitive()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( @@ -953,6 +1024,13 @@ ::google::protobuf::uint8* Operand::InternalSerializeWithCachedSizesToArray( 2, this->var(), target); } + // .flyteidl.core.Scalar scalar = 3; + if (has_scalar()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 3, HasBitSetters::scalar(this), target); + } + if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -975,7 +1053,7 @@ size_t Operand::ByteSizeLong() const { (void) cached_has_bits; switch (val_case()) { - // .flyteidl.core.Primitive primitive = 1; + // .flyteidl.core.Primitive primitive = 1 [deprecated = true]; case kPrimitive: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( @@ -989,6 +1067,13 @@ size_t Operand::ByteSizeLong() const { this->var()); break; } + // .flyteidl.core.Scalar scalar = 3; + case kScalar: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *val_.scalar_); + break; + } case VAL_NOT_SET: { break; } @@ -1029,6 +1114,10 @@ void Operand::MergeFrom(const Operand& from) { set_var(from.var()); break; } + case kScalar: { + mutable_scalar()->::flyteidl::core::Scalar::MergeFrom(from.scalar()); + break; + } case VAL_NOT_SET: { break; } diff --git a/gen/pb-cpp/flyteidl/core/condition.pb.h b/gen/pb-cpp/flyteidl/core/condition.pb.h index 82cd58470..d90d75750 100644 --- a/gen/pb-cpp/flyteidl/core/condition.pb.h +++ b/gen/pb-cpp/flyteidl/core/condition.pb.h @@ -326,6 +326,7 @@ class Operand final : enum ValCase { kPrimitive = 1, kVar = 2, + kScalar = 3, VAL_NOT_SET = 0, }; @@ -392,14 +393,14 @@ class Operand final : // accessors ------------------------------------------------------- - // .flyteidl.core.Primitive primitive = 1; - bool has_primitive() const; - void clear_primitive(); - static const int kPrimitiveFieldNumber = 1; - const ::flyteidl::core::Primitive& primitive() const; - ::flyteidl::core::Primitive* release_primitive(); - ::flyteidl::core::Primitive* mutable_primitive(); - void set_allocated_primitive(::flyteidl::core::Primitive* primitive); + // .flyteidl.core.Primitive primitive = 1 [deprecated = true]; + PROTOBUF_DEPRECATED bool has_primitive() const; + PROTOBUF_DEPRECATED void clear_primitive(); + PROTOBUF_DEPRECATED static const int kPrimitiveFieldNumber = 1; + PROTOBUF_DEPRECATED const ::flyteidl::core::Primitive& primitive() const; + PROTOBUF_DEPRECATED ::flyteidl::core::Primitive* release_primitive(); + PROTOBUF_DEPRECATED ::flyteidl::core::Primitive* mutable_primitive(); + PROTOBUF_DEPRECATED void set_allocated_primitive(::flyteidl::core::Primitive* primitive); // string var = 2; private: @@ -418,6 +419,15 @@ class Operand final : ::std::string* release_var(); void set_allocated_var(::std::string* var); + // .flyteidl.core.Scalar scalar = 3; + bool has_scalar() const; + void clear_scalar(); + static const int kScalarFieldNumber = 3; + const ::flyteidl::core::Scalar& scalar() const; + ::flyteidl::core::Scalar* release_scalar(); + ::flyteidl::core::Scalar* mutable_scalar(); + void set_allocated_scalar(::flyteidl::core::Scalar* scalar); + void clear_val(); ValCase val_case() const; // @@protoc_insertion_point(class_scope:flyteidl.core.Operand) @@ -425,6 +435,7 @@ class Operand final : class HasBitSetters; void set_has_primitive(); void set_has_var(); + void set_has_scalar(); inline bool has_val() const; inline void clear_has_val(); @@ -434,6 +445,7 @@ class Operand final : ValUnion() {} ::flyteidl::core::Primitive* primitive_; ::google::protobuf::internal::ArenaStringPtr var_; + ::flyteidl::core::Scalar* scalar_; } val_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::uint32 _oneof_case_[1]; @@ -872,7 +884,7 @@ inline void ComparisonExpression::set_allocated_right_value(::flyteidl::core::Op // Operand -// .flyteidl.core.Primitive primitive = 1; +// .flyteidl.core.Primitive primitive = 1 [deprecated = true]; inline bool Operand::has_primitive() const { return val_case() == kPrimitive; } @@ -999,6 +1011,41 @@ inline void Operand::set_allocated_var(::std::string* var) { // @@protoc_insertion_point(field_set_allocated:flyteidl.core.Operand.var) } +// .flyteidl.core.Scalar scalar = 3; +inline bool Operand::has_scalar() const { + return val_case() == kScalar; +} +inline void Operand::set_has_scalar() { + _oneof_case_[0] = kScalar; +} +inline ::flyteidl::core::Scalar* Operand::release_scalar() { + // @@protoc_insertion_point(field_release:flyteidl.core.Operand.scalar) + if (has_scalar()) { + clear_has_val(); + ::flyteidl::core::Scalar* temp = val_.scalar_; + val_.scalar_ = nullptr; + return temp; + } else { + return nullptr; + } +} +inline const ::flyteidl::core::Scalar& Operand::scalar() const { + // @@protoc_insertion_point(field_get:flyteidl.core.Operand.scalar) + return has_scalar() + ? *val_.scalar_ + : *reinterpret_cast< ::flyteidl::core::Scalar*>(&::flyteidl::core::_Scalar_default_instance_); +} +inline ::flyteidl::core::Scalar* Operand::mutable_scalar() { + if (!has_scalar()) { + clear_val(); + set_has_scalar(); + val_.scalar_ = CreateMaybeMessage< ::flyteidl::core::Scalar >( + GetArenaNoVirtual()); + } + // @@protoc_insertion_point(field_mutable:flyteidl.core.Operand.scalar) + return val_.scalar_; +} + inline bool Operand::has_val() const { return val_case() != VAL_NOT_SET; } diff --git a/gen/pb-go/flyteidl/core/condition.pb.go b/gen/pb-go/flyteidl/core/condition.pb.go index 141dc2641..6bf74ba3a 100644 --- a/gen/pb-go/flyteidl/core/condition.pb.go +++ b/gen/pb-go/flyteidl/core/condition.pb.go @@ -150,6 +150,7 @@ type Operand struct { // Types that are valid to be assigned to Val: // *Operand_Primitive // *Operand_Var + // *Operand_Scalar Val isOperand_Val `protobuf_oneof:"val"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -193,10 +194,16 @@ type Operand_Var struct { Var string `protobuf:"bytes,2,opt,name=var,proto3,oneof"` } +type Operand_Scalar struct { + Scalar *Scalar `protobuf:"bytes,3,opt,name=scalar,proto3,oneof"` +} + func (*Operand_Primitive) isOperand_Val() {} func (*Operand_Var) isOperand_Val() {} +func (*Operand_Scalar) isOperand_Val() {} + func (m *Operand) GetVal() isOperand_Val { if m != nil { return m.Val @@ -204,6 +211,7 @@ func (m *Operand) GetVal() isOperand_Val { return nil } +// Deprecated: Do not use. func (m *Operand) GetPrimitive() *Primitive { if x, ok := m.GetVal().(*Operand_Primitive); ok { return x.Primitive @@ -218,11 +226,19 @@ func (m *Operand) GetVar() string { return "" } +func (m *Operand) GetScalar() *Scalar { + if x, ok := m.GetVal().(*Operand_Scalar); ok { + return x.Scalar + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*Operand) XXX_OneofWrappers() []interface{} { return []interface{}{ (*Operand_Primitive)(nil), (*Operand_Var)(nil), + (*Operand_Scalar)(nil), } } @@ -376,34 +392,36 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/condition.proto", fileDescriptor_df35c44899db166a) } var fileDescriptor_df35c44899db166a = []byte{ - // 463 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x4d, 0x6f, 0xd3, 0x40, - 0x10, 0x86, 0xfd, 0xd1, 0xa6, 0xcd, 0x44, 0x34, 0xcb, 0x0a, 0x50, 0x84, 0x40, 0x8a, 0x0c, 0x87, - 0x1e, 0xc0, 0x96, 0x42, 0xf9, 0xb8, 0x70, 0x20, 0x60, 0xd5, 0x88, 0xa8, 0x1f, 0x56, 0xc4, 0x81, - 0x03, 0xc8, 0x71, 0xb6, 0xee, 0xa2, 0x8d, 0xc7, 0xda, 0x6c, 0xa2, 0xf2, 0x2b, 0xf8, 0x15, 0xdc, - 0xf8, 0x91, 0x68, 0x37, 0x8e, 0x93, 0x38, 0x11, 0xca, 0xd1, 0xb3, 0xef, 0x33, 0xfb, 0x7a, 0xf6, - 0x1d, 0x78, 0x7a, 0x23, 0x7e, 0x29, 0xc6, 0xc7, 0x22, 0x48, 0x51, 0xb2, 0x20, 0xc5, 0x7c, 0xcc, - 0x15, 0xc7, 0xdc, 0x2f, 0x24, 0x2a, 0xa4, 0xf7, 0x96, 0xc7, 0xbe, 0x3e, 0x7e, 0xfc, 0x64, 0x53, - 0x2d, 0xb8, 0x62, 0x32, 0x11, 0xd3, 0x85, 0xd8, 0xfb, 0xed, 0xc0, 0x83, 0x8f, 0x38, 0x29, 0x12, - 0xc9, 0xa7, 0x98, 0x87, 0x77, 0x85, 0x64, 0xd3, 0x29, 0xc7, 0x9c, 0x46, 0x70, 0x8c, 0x05, 0x93, - 0x89, 0x42, 0xd9, 0xb1, 0xbb, 0xf6, 0xe9, 0x49, 0xef, 0x85, 0xbf, 0xd1, 0xd8, 0xdf, 0x85, 0xf9, - 0x97, 0x25, 0x13, 0x57, 0x34, 0x7d, 0x0d, 0x20, 0xd8, 0x8d, 0xfa, 0x31, 0x4f, 0xc4, 0x8c, 0x75, - 0x9c, 0xae, 0x7d, 0xda, 0xea, 0x3d, 0xaa, 0xf5, 0x32, 0x58, 0x3e, 0x8e, 0x9b, 0x5a, 0xf9, 0x55, - 0x0b, 0xe9, 0x5b, 0x68, 0x49, 0x9e, 0xdd, 0x2e, 0x39, 0xf7, 0xbf, 0x1c, 0x18, 0xa9, 0x01, 0xbd, - 0xf7, 0x70, 0xbc, 0x74, 0x41, 0x1b, 0xe0, 0x84, 0xd7, 0xc4, 0xa2, 0x47, 0xe0, 0x5e, 0x84, 0xd7, - 0xc4, 0xd6, 0x85, 0xf3, 0x21, 0x71, 0x74, 0xe1, 0x7c, 0x18, 0x12, 0x57, 0x17, 0x06, 0x43, 0x72, - 0xa0, 0x0b, 0x83, 0x61, 0x48, 0x0e, 0xbd, 0xef, 0x70, 0x54, 0x76, 0xa5, 0xef, 0xa0, 0x59, 0x48, - 0x3e, 0xe1, 0x8a, 0xcf, 0x99, 0x19, 0x42, 0xab, 0xd7, 0xa9, 0x19, 0xb8, 0x5a, 0x9e, 0x47, 0x56, - 0xbc, 0x12, 0x53, 0x0a, 0xee, 0x3c, 0x91, 0xe6, 0x67, 0x9b, 0x91, 0x15, 0xeb, 0x8f, 0xfe, 0xa1, - 0xae, 0x09, 0xef, 0xaf, 0x0d, 0xf7, 0xfb, 0x88, 0x82, 0x25, 0x9b, 0xe3, 0x6e, 0xa5, 0x98, 0xff, - 0x9c, 0xe5, 0xa9, 0x7e, 0xc9, 0xf2, 0xb2, 0xe7, 0x5b, 0x13, 0xaf, 0x14, 0x2b, 0x34, 0xb2, 0xe2, - 0x75, 0x94, 0x86, 0x00, 0x69, 0xf5, 0x32, 0xe5, 0xb8, 0x9f, 0xed, 0xf1, 0x74, 0x91, 0x15, 0xaf, - 0x81, 0xfd, 0x06, 0x1c, 0xb0, 0xbb, 0x42, 0x7a, 0x7f, 0x1c, 0x78, 0xb8, 0xf3, 0x5e, 0x7a, 0xb5, - 0x95, 0x90, 0xb3, 0x7d, 0xfc, 0xfa, 0x03, 0xcc, 0x78, 0x9a, 0x88, 0x1d, 0x49, 0xf9, 0x0c, 0x6d, - 0x93, 0x14, 0x56, 0x89, 0x4b, 0xff, 0xdd, 0x5a, 0xe3, 0xad, 0xf9, 0xc5, 0x27, 0x1a, 0x5c, 0x33, - 0xf7, 0x05, 0xc8, 0x22, 0x3d, 0x6b, 0xbd, 0xdc, 0x3d, 0x7b, 0xb5, 0x0d, 0xb9, 0x2a, 0x78, 0x1e, - 0xb4, 0x6b, 0xa6, 0x75, 0x5c, 0x3e, 0x5c, 0x7c, 0x22, 0x96, 0xce, 0xcf, 0x65, 0x4c, 0xec, 0xfe, - 0x9b, 0x6f, 0x67, 0x19, 0x57, 0xb7, 0xb3, 0x91, 0x9f, 0xe2, 0x24, 0x30, 0x57, 0xa0, 0xcc, 0x82, - 0x6a, 0xf9, 0x32, 0x96, 0x07, 0xc5, 0xe8, 0x65, 0x86, 0xc1, 0xc6, 0x3e, 0x8e, 0x1a, 0x66, 0x0f, - 0x5f, 0xfd, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xb8, 0x12, 0xe1, 0x54, 0xd5, 0x03, 0x00, 0x00, + // 486 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x4f, 0x6f, 0xd3, 0x30, + 0x18, 0xc6, 0xf3, 0x67, 0xeb, 0xd6, 0xb7, 0x62, 0x35, 0x16, 0x43, 0x15, 0x02, 0xa9, 0x0a, 0x1c, + 0x76, 0x80, 0x44, 0x2a, 0x03, 0x2e, 0x70, 0x20, 0x10, 0x2d, 0x88, 0x6a, 0x7f, 0x4c, 0xc5, 0x81, + 0x0b, 0x72, 0x53, 0x2f, 0x33, 0x72, 0xe3, 0xc8, 0x49, 0xab, 0xf1, 0x29, 0x38, 0xf0, 0x19, 0xb8, + 0xf1, 0x21, 0x91, 0xbd, 0x34, 0x6d, 0xd3, 0x0a, 0xf5, 0x98, 0xf7, 0x7d, 0x7e, 0x4f, 0x1e, 0xfb, + 0x7d, 0x0d, 0x4f, 0xae, 0xc5, 0xcf, 0x92, 0xf1, 0x89, 0x08, 0x12, 0xa9, 0x58, 0x90, 0xc8, 0x6c, + 0xc2, 0x4b, 0x2e, 0x33, 0x3f, 0x57, 0xb2, 0x94, 0xf8, 0xde, 0xa2, 0xed, 0xeb, 0xf6, 0xa3, 0xc7, + 0xeb, 0x6a, 0xc1, 0x4b, 0xa6, 0xa8, 0x28, 0xee, 0xc4, 0xde, 0x2f, 0x07, 0x1e, 0x7c, 0x90, 0xd3, + 0x9c, 0x2a, 0x5e, 0xc8, 0x2c, 0xba, 0xcd, 0x15, 0x2b, 0x0a, 0x2e, 0x33, 0x1c, 0xc3, 0xa1, 0xcc, + 0x99, 0xa2, 0xa5, 0x54, 0x3d, 0xbb, 0x6f, 0x9f, 0x1c, 0x0d, 0x9e, 0xfb, 0x6b, 0xc6, 0xfe, 0x36, + 0xcc, 0xbf, 0xa8, 0x18, 0x52, 0xd3, 0xf8, 0x15, 0x80, 0x60, 0xd7, 0xe5, 0xf7, 0x39, 0x15, 0x33, + 0xd6, 0x73, 0xfa, 0xf6, 0x49, 0x67, 0xf0, 0xb0, 0xe1, 0x65, 0xb0, 0x6c, 0x42, 0xda, 0x5a, 0xf9, + 0x55, 0x0b, 0xf1, 0x1b, 0xe8, 0x28, 0x9e, 0xde, 0x2c, 0x38, 0xf7, 0xbf, 0x1c, 0x18, 0xa9, 0x01, + 0xbd, 0x77, 0x70, 0xb8, 0x48, 0x81, 0x5b, 0xe0, 0x44, 0x57, 0xc8, 0xc2, 0x07, 0xe0, 0x9e, 0x47, + 0x57, 0xc8, 0xd6, 0x85, 0xb3, 0x11, 0x72, 0x74, 0xe1, 0x6c, 0x14, 0x21, 0x57, 0x17, 0x86, 0x23, + 0xb4, 0xa7, 0x0b, 0xc3, 0x51, 0x84, 0xf6, 0xbd, 0xdf, 0x36, 0x1c, 0x54, 0xb6, 0xf8, 0x2d, 0xb4, + 0x73, 0xc5, 0xa7, 0xbc, 0xe4, 0x73, 0x66, 0x6e, 0xa1, 0x33, 0xe8, 0x35, 0x12, 0x5c, 0x2e, 0xfa, + 0xa1, 0xd3, 0xb3, 0x63, 0x8b, 0x2c, 0x01, 0x8c, 0xc1, 0x9d, 0x53, 0x65, 0x4e, 0xdc, 0x8e, 0x2d, + 0xa2, 0x3f, 0x70, 0x00, 0xad, 0x22, 0xa1, 0x82, 0xaa, 0xea, 0x40, 0xc7, 0x0d, 0xbb, 0x2f, 0xa6, + 0x19, 0x5b, 0xa4, 0x92, 0x85, 0xfb, 0xda, 0x44, 0x78, 0x7f, 0x6d, 0xb8, 0x1f, 0x4a, 0x29, 0x18, + 0x5d, 0x1f, 0x52, 0x27, 0x91, 0xd9, 0x8f, 0x59, 0x96, 0xe8, 0xf9, 0x57, 0x09, 0x9f, 0x6d, 0xcc, + 0xa9, 0x56, 0x2c, 0xd1, 0xd8, 0x22, 0xab, 0x28, 0x8e, 0x00, 0x92, 0x7a, 0x9e, 0xd5, 0x90, 0x9e, + 0xee, 0x30, 0xf0, 0xd8, 0x22, 0x2b, 0x60, 0xd8, 0x82, 0x3d, 0x76, 0x9b, 0x2b, 0xef, 0x8f, 0x03, + 0xc7, 0x5b, 0xff, 0x8b, 0x2f, 0x37, 0xf6, 0xea, 0x74, 0x97, 0xbc, 0xfe, 0x50, 0xa6, 0x3c, 0xa1, + 0x62, 0xcb, 0x7e, 0x7d, 0x82, 0xae, 0xd9, 0x2f, 0x56, 0x8b, 0xab, 0xfc, 0xfd, 0x86, 0xf1, 0xc6, + 0xfd, 0x91, 0x23, 0x0d, 0xae, 0x84, 0xfb, 0x0c, 0xe8, 0x6e, 0xe7, 0x56, 0xbc, 0xdc, 0x1d, 0xbd, + 0xba, 0x86, 0x5c, 0x16, 0x3c, 0x0f, 0xba, 0x8d, 0xd0, 0x7a, 0xc9, 0xde, 0x9f, 0x7f, 0x44, 0x96, + 0xde, 0xba, 0x0b, 0x82, 0xec, 0xf0, 0xf5, 0xb7, 0xd3, 0x94, 0x97, 0x37, 0xb3, 0xb1, 0x9f, 0xc8, + 0x69, 0x60, 0x7e, 0x21, 0x55, 0x1a, 0xd4, 0x4f, 0x36, 0x65, 0x59, 0x90, 0x8f, 0x5f, 0xa4, 0x32, + 0x58, 0x7b, 0xc5, 0xe3, 0x96, 0x79, 0xbd, 0x2f, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0xb6, 0xe4, + 0xe7, 0xb1, 0x0b, 0x04, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/condition.pb.validate.go b/gen/pb-go/flyteidl/core/condition.pb.validate.go index 78df0959b..0eb34fb8a 100644 --- a/gen/pb-go/flyteidl/core/condition.pb.validate.go +++ b/gen/pb-go/flyteidl/core/condition.pb.validate.go @@ -149,6 +149,18 @@ func (m *Operand) Validate() error { case *Operand_Var: // no validation rules for Var + case *Operand_Scalar: + + if v, ok := interface{}(m.GetScalar()).(interface{ Validate() error }); ok { + if err := v.Validate(); err != nil { + return OperandValidationError{ + field: "Scalar", + reason: "embedded message failed validation", + cause: err, + } + } + } + } return nil diff --git a/gen/pb-go/flyteidl/service/admin.swagger.json b/gen/pb-go/flyteidl/service/admin.swagger.json index 93c5148f9..cafd3d923 100644 --- a/gen/pb-go/flyteidl/service/admin.swagger.json +++ b/gen/pb-go/flyteidl/service/admin.swagger.json @@ -6455,6 +6455,10 @@ "var": { "type": "string", "title": "Or one of this node's input variables" + }, + "scalar": { + "$ref": "#/definitions/coreScalar", + "title": "Replace the primitive field" } }, "description": "Defines an operand to a comparison expression." diff --git a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml index 94d28f629..62e03103e 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml +++ b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml @@ -8125,6 +8125,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -8134,6 +8236,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -8148,6 +8352,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -8157,6 +8463,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -8175,6 +8583,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -8184,6 +8694,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -8643,6 +9255,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -8652,6 +9366,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -8666,6 +9482,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -8675,6 +9593,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -8693,6 +9713,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -8702,6 +9824,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -9160,6 +10384,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -9169,6 +10495,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -9183,6 +10611,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -9192,6 +10722,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -9210,6 +10842,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -9219,6 +10953,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -10148,6 +11984,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -10157,6 +12095,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -10171,6 +12211,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -10180,6 +12322,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -10198,6 +12442,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -10207,6 +12553,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -10666,6 +13114,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -10675,6 +13225,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -10689,6 +13341,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -10698,6 +13452,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -10716,6 +13572,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -10725,6 +13683,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -11183,6 +14243,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -11192,6 +14354,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -11206,6 +14470,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -11215,6 +14581,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -11233,6 +14701,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -11242,6 +14812,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -12699,6 +16371,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -12708,6 +16482,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -12722,6 +16598,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -12731,6 +16709,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -12749,6 +16829,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -12758,6 +16940,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -13217,6 +17501,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -13226,6 +17612,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -13240,6 +17728,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -13249,6 +17839,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -13267,6 +17959,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -13276,6 +18070,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -13734,6 +18630,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -13743,6 +18741,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -13757,6 +18857,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -13766,6 +18968,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -13784,6 +19088,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -13793,6 +19199,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -17388,6 +22896,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -17397,6 +23007,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -17411,6 +23123,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -17420,6 +23234,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -17438,6 +23354,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -17447,6 +23465,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -17906,6 +24026,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -17915,6 +24137,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -17929,6 +24253,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -17938,6 +24364,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -17956,6 +24484,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -17965,6 +24595,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -18423,6 +25155,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -18432,6 +25266,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -18446,6 +25382,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -18455,6 +25493,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -18473,6 +25613,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -18482,6 +25724,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -19411,6 +26755,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -19420,6 +26866,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -19434,6 +26982,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -19443,6 +27093,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -19461,6 +27213,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -19470,6 +27324,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -19929,6 +27885,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -19938,6 +27996,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -19952,6 +28112,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -19961,6 +28223,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -19979,6 +28343,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -19988,6 +28454,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -20446,6 +29014,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -20455,6 +29125,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -20469,6 +29241,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -20478,6 +29352,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -20496,6 +29472,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -20505,6 +29583,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -21962,6 +31142,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -21971,6 +31253,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -21985,6 +31369,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -21994,6 +31480,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -22012,6 +31600,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -22021,6 +31711,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -22480,6 +32272,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -22489,6 +32383,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -22503,6 +32499,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -22512,6 +32610,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -22530,6 +32730,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -22539,6 +32841,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -22997,6 +33401,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -23006,6 +33512,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -23020,6 +33628,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -23029,6 +33739,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -23047,6 +33859,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -23056,6 +33970,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -24270,6 +35286,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -24279,6 +35397,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -24293,6 +35513,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -24302,6 +35624,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -24320,6 +35744,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -24329,6 +35855,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -24788,6 +36416,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -24797,6 +36527,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -24811,6 +36643,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -24820,6 +36754,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -24838,6 +36874,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -24847,6 +36985,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -25305,6 +37545,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -25314,6 +37656,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -25328,6 +37772,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -25337,6 +37883,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -25355,6 +38003,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -25364,6 +38114,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -26293,6 +39145,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -26302,6 +39256,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -26316,6 +39372,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -26325,6 +39483,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -26343,6 +39603,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -26352,6 +39714,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -26811,6 +40275,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -26820,6 +40386,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -26834,6 +40502,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -26843,6 +40613,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -26861,6 +40733,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -26870,6 +40844,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -27328,6 +41404,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -27337,6 +41515,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -27351,6 +41631,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -27360,6 +41742,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -27378,6 +41862,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -27387,6 +41973,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -28844,6 +43532,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -28853,6 +43643,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -28867,6 +43759,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -28876,6 +43870,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -28894,6 +43990,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -28903,6 +44101,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -29362,6 +44662,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -29371,6 +44773,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -29385,6 +44889,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -29394,6 +45000,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -29412,6 +45120,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -29421,6 +45231,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -29879,6 +45791,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -29888,6 +45902,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -29902,6 +46018,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -29911,6 +46129,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -29929,6 +46249,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -29938,6 +46360,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -31099,6 +47623,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -31108,6 +47734,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -31122,6 +47850,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -31131,6 +47961,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -31149,6 +48081,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -31158,6 +48192,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -31617,6 +48753,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -31626,6 +48864,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -31640,6 +48980,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -31649,6 +49091,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -31667,6 +49211,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -31676,6 +49322,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -32134,6 +49882,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -32143,6 +49993,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -32157,6 +50109,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -32166,6 +50220,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -32184,6 +50340,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -32193,6 +50451,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -33122,6 +51482,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -33131,6 +51593,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -33145,6 +51709,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -33154,6 +51820,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -33172,6 +51940,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -33181,6 +52051,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -33640,6 +52612,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -33649,6 +52723,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -33663,6 +52839,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -33672,6 +52950,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -33690,6 +53070,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -33699,6 +53181,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -34157,6 +53741,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -34166,6 +53852,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -34180,6 +53968,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -34189,6 +54079,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -34207,6 +54199,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -34216,6 +54310,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -35673,6 +55869,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -35682,6 +55980,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -35696,6 +56096,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -35705,6 +56207,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -35723,6 +56327,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -35732,6 +56438,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -36191,6 +56999,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -36200,6 +57110,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -36214,6 +57226,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -36223,6 +57337,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -36241,6 +57457,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -36250,6 +57568,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -36708,6 +58128,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -36717,6 +58239,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -36731,6 +58355,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -36740,6 +58466,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -36758,6 +58586,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -36767,6 +58697,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -37707,6 +59739,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -37716,6 +59850,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -37730,6 +59966,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -37739,6 +60077,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -37757,6 +60197,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -37766,6 +60308,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -38225,6 +60869,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -38234,6 +60980,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -38248,6 +61096,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -38257,6 +61207,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -38275,6 +61327,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -38284,6 +61438,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -38742,6 +61998,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -38751,6 +62109,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -38765,6 +62225,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -38774,6 +62336,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -38792,6 +62456,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -38801,6 +62567,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -39730,6 +63598,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -39739,6 +63709,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -39753,6 +63825,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -39762,6 +63936,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -39780,6 +64056,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -39789,6 +64167,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -40248,6 +64728,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -40257,6 +64839,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -40271,6 +64955,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -40280,6 +65066,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -40298,6 +65186,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -40307,6 +65297,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -40765,6 +65857,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -40774,6 +65968,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -40788,6 +66084,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -40797,6 +66195,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -40815,6 +66315,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -40824,6 +66426,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -42281,6 +67985,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -42290,6 +68096,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -42304,6 +68212,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -42313,6 +68323,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -42331,6 +68443,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -42340,6 +68554,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -42799,6 +69115,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -42808,6 +69226,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -42822,6 +69342,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -42831,6 +69453,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -42849,6 +69573,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -42858,6 +69684,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -43316,6 +70244,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -43325,6 +70355,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -43339,6 +70471,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -43348,6 +70582,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -43366,6 +70702,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -43375,6 +70813,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -44491,6 +72031,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -44500,6 +72142,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -44526,6 +72270,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -44535,6 +72381,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -44549,62 +72497,470 @@ definitions: operator: {} comparison: left_value: - primitive: - duration: "duration" - datetime: "2000-01-23T04:56:07.000+00:00" - string_value: "string_value" - boolean: true - float_value: 1.4658129805029452 - integer: "integer" - var: "var" - right_value: - primitive: - duration: "duration" - datetime: "2000-01-23T04:56:07.000+00:00" - string_value: "string_value" - boolean: true - float_value: 1.4658129805029452 - integer: "integer" - var: "var" - operator: {} - error: - message: "message" - failed_node_id: "failed_node_id" - case: - condition: - conjunction: - operator: {} - comparison: - left_value: - primitive: - duration: "duration" - datetime: "2000-01-23T04:56:07.000+00:00" - string_value: "string_value" - boolean: true - float_value: 1.4658129805029452 - integer: "integer" - var: "var" - right_value: - primitive: - duration: "duration" - datetime: "2000-01-23T04:56:07.000+00:00" - string_value: "string_value" - boolean: true - float_value: 1.4658129805029452 - integer: "integer" - var: "var" - operator: {} - coreCatalogArtifactTag: - type: "object" - properties: - artifact_id: - type: "string" - title: "Artifact ID is generated name" - name: - type: "string" - title: "Flyte computes the tag automatically, as the hash of the values" - example: - name: "name" + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + var: "var" + right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + var: "var" + operator: {} + error: + message: "message" + failed_node_id: "failed_node_id" + case: + condition: + conjunction: + operator: {} + comparison: + left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + var: "var" + right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + var: "var" + operator: {} + coreCatalogArtifactTag: + type: "object" + properties: + artifact_id: + type: "string" + title: "Artifact ID is generated name" + name: + type: "string" + title: "Flyte computes the tag automatically, as the hash of the values" + example: + name: "name" artifact_id: "artifact_id" coreCatalogCacheStatus: type: "string" @@ -44680,54 +73036,258 @@ definitions: \ boolean result." example: left_value: - primitive: - duration: "duration" - datetime: "2000-01-23T04:56:07.000+00:00" - string_value: "string_value" - boolean: true - float_value: 1.4658129805029452 - integer: "integer" - var: "var" - right_value: - primitive: - duration: "duration" - datetime: "2000-01-23T04:56:07.000+00:00" - string_value: "string_value" - boolean: true - float_value: 1.4658129805029452 - integer: "integer" - var: "var" - operator: {} - coreCompiledTask: - type: "object" - properties: - template: - title: "Completely contained TaskTemplate" - $ref: "#/definitions/coreTaskTemplate" - title: "Output of the Compilation step. This object represent one Task. We store\ - \ more metadata at this layer" - example: - template: - container: - args: - - "args" - - "args" - image: "image" - resources: - requests: - - name: {} - value: "value" - - name: {} - value: "value" - limits: - - name: {} - value: "value" - - name: {} - value: "value" - data_config: - io_strategy: - upload_mode: {} - download_mode: {} + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + var: "var" + right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + var: "var" + operator: {} + coreCompiledTask: + type: "object" + properties: + template: + title: "Completely contained TaskTemplate" + $ref: "#/definitions/coreTaskTemplate" + title: "Output of the Compilation step. This object represent one Task. We store\ + \ more metadata at this layer" + example: + template: + container: + args: + - "args" + - "args" + image: "image" + resources: + requests: + - name: {} + value: "value" + - name: {} + value: "value" + limits: + - name: {} + value: "value" + - name: {} + value: "value" + data_config: + io_strategy: + upload_mode: {} + download_mode: {} format: {} output_path: "output_path" enabled: true @@ -45332,6 +73892,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -45341,6 +74003,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -45355,6 +74119,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -45364,6 +74230,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -45382,6 +74350,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -45391,6 +74461,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -45850,6 +75022,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -45859,6 +75133,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -45873,6 +75249,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -45882,6 +75360,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -45900,6 +75480,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -45909,6 +75591,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -46367,6 +76151,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -46376,6 +76262,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -46390,6 +76378,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -46399,6 +76489,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -46417,6 +76609,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -46426,6 +76720,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -47382,6 +77778,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -47391,6 +77889,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -47405,6 +78005,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -47414,6 +78116,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -47432,6 +78236,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -47441,6 +78347,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -47900,6 +78908,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -47909,6 +79019,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -47923,6 +79135,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -47932,6 +79246,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -47950,6 +79366,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -47959,6 +79477,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -48417,6 +80037,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -48426,6 +80148,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -48440,6 +80264,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -48449,6 +80375,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -48467,6 +80495,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -48476,6 +80606,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -49405,6 +81637,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -49414,6 +81748,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -49428,6 +81864,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -49437,6 +81975,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -49455,6 +82095,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -49464,6 +82206,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -49923,6 +82767,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -49932,6 +82878,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -49946,6 +82994,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -49955,6 +83105,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -49973,6 +83225,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -49982,6 +83336,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -50440,6 +83896,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -50449,6 +84007,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -50463,6 +84123,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -50472,6 +84234,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -50490,6 +84354,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -50499,6 +84465,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -51956,6 +86024,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -51965,6 +86135,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -51979,6 +86251,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -51988,6 +86362,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -52006,6 +86482,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -52015,6 +86593,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -52474,6 +87154,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -52483,6 +87265,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -52497,6 +87381,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -52506,6 +87492,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -52524,6 +87612,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -52533,6 +87723,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -52991,6 +88283,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -53000,6 +88394,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -53014,6 +88510,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -53023,6 +88621,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -53041,6 +88741,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -53050,6 +88852,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54034,6 +89938,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54043,6 +90049,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54079,6 +90187,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54088,6 +90298,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54102,6 +90414,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54111,6 +90525,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54129,6 +90645,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54138,6 +90756,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54536,6 +91256,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54545,6 +91367,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54559,6 +91483,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54568,6 +91594,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54586,6 +91714,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -54595,6 +91825,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -55175,8 +92507,113 @@ definitions: var: type: "string" title: "Or one of this node's input variables" + scalar: + title: "Replace the primitive field" + $ref: "#/definitions/coreScalar" description: "Defines an operand to a comparison expression." example: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -57594,6 +95031,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -57603,6 +95142,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -57617,6 +95258,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -57626,6 +95369,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -57644,6 +95489,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -57653,6 +95600,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -58112,6 +96161,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -58121,6 +96272,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -58135,6 +96388,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -58144,6 +96499,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -58162,6 +96619,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -58171,6 +96730,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -58629,6 +97290,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -58638,6 +97401,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -58652,6 +97517,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -58661,6 +97628,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -58679,6 +97748,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -58688,6 +97859,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -59897,6 +99170,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -59906,6 +99281,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -59920,6 +99397,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -59929,6 +99508,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -59947,6 +99628,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -59956,6 +99739,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -60415,6 +100300,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -60424,6 +100411,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -60438,6 +100527,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -60447,6 +100638,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -60465,6 +100758,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -60474,6 +100869,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -60932,6 +101429,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -60941,6 +101540,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -60955,6 +101656,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -60964,6 +101767,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -60982,6 +101887,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -60991,6 +101998,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -61920,6 +103029,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -61929,6 +103140,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -61943,6 +103256,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -61952,6 +103367,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -61970,6 +103487,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -61979,6 +103598,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -62438,6 +104159,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -62447,6 +104270,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -62461,6 +104386,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -62470,6 +104497,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -62488,6 +104617,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -62497,6 +104728,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -62955,6 +105288,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -62964,6 +105399,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -62978,6 +105515,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -62987,6 +105626,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -63005,6 +105746,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -63014,6 +105857,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -64471,6 +107416,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -64480,6 +107527,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -64494,6 +107643,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -64503,6 +107754,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -64521,6 +107874,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -64530,6 +107985,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -64989,6 +108546,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -64998,6 +108657,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -65012,6 +108773,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -65021,6 +108884,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -65039,6 +109004,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -65048,6 +109115,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -65506,6 +109675,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -65515,6 +109786,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -65529,6 +109902,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -65538,6 +110013,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -65556,6 +110133,108 @@ definitions: operator: {} comparison: left_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" @@ -65565,6 +110244,108 @@ definitions: integer: "integer" var: "var" right_value: + scalar: + schema: + type: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + uri: "uri" + blob: + metadata: + type: + dimensionality: {} + format: "format" + uri: "uri" + none_type: {} + primitive: + duration: "duration" + datetime: "2000-01-23T04:56:07.000+00:00" + string_value: "string_value" + boolean: true + float_value: 1.4658129805029452 + integer: "integer" + binary: + tag: "tag" + value: "value" + structured_dataset: + metadata: + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + uri: "uri" + union: + type: + schema: + columns: + - name: "name" + type: {} + - name: "name" + type: {} + annotation: + annotations: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + structured_dataset_type: + external_schema_type: "external_schema_type" + columns: + - name: "name" + - name: "name" + format: "format" + external_schema_bytes: "external_schema_bytes" + metadata: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true + blob: + dimensionality: {} + format: "format" + enum_type: + values: + - "values" + - "values" + union_type: + variants: + - null + - null + simple: {} + structure: + tag: "tag" + error: + message: "message" + failed_node_id: "failed_node_id" + generic: + fields: + key: + list_value: + values: + - null + - null + number_value: 6.027456183070403 + string_value: "string_value" + null_value: {} + bool_value: true primitive: duration: "duration" datetime: "2000-01-23T04:56:07.000+00:00" diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_core_operand.go b/gen/pb-go/flyteidl/service/flyteadmin/model_core_operand.go index 578ca555d..07f2887e7 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/model_core_operand.go +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_core_operand.go @@ -13,4 +13,5 @@ package flyteadmin type CoreOperand struct { Primitive *CorePrimitive `json:"primitive,omitempty"` Var_ string `json:"var,omitempty"` + Scalar *CoreScalar `json:"scalar,omitempty"` } diff --git a/gen/pb-go/flyteidl/service/openapi.go b/gen/pb-go/flyteidl/service/openapi.go index f8c612a29..f6745a0f1 100644 --- a/gen/pb-go/flyteidl/service/openapi.go +++ b/gen/pb-go/flyteidl/service/openapi.go @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x5d\x23\xbd\xdf\xde\x6c\xdc\x71\xcc\xab\xb4\xf3\x41\x25\x4c\x1f\xca\x4d\xa7\xa0\x40\xca\xa2\xaa\xa6\xb3\xf5\x79\xf5\xbd\x24\xe6\x00\x32\x36\x7c\x1c\x73\x22\x03\x23\x3e\xf2\xb6\xb8\x84\x4e\x89\x96\x3e\x46\x4c\x93\x71\xe8\x70\x30\x00\xdb\x0e\x6f\x5b\x77\x1a\x09\x2e\xa5\x8d\xbc\x37\xed\x2c\xcf\x9f\xda\xa2\x96\x9f\x41\x09\x3f\xbf\xbe\x1a\xd7\xab\xfa\x05\xcf\x5c\x7d\x3f\xfb\xb0\x31\xc9\xbe\xb5\xa9\x95\xd5\xfc\x8a\xb5\x58\xa3\x9e\xdf\xf1\xe9\xc5\xb9\x2f\x62\x55\xe9\xba\x5e\xd0\x2f\x44\x56\x6f\x2f\xe9\x57\x9f\x71\x50\xdc\xaf\xd2\xc4\x92\xf2\x7e\xab\x37\xab\x1c\xef\xbb\x0d\x6c\x5e\x65\xeb\x57\xf2\x87\x32\xcd\xac\x0a\x4b\xdf\xd1\x36\xb5\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x76\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\xb5\xad\x58\xcf\xe3\x75\x6f\x61\xd2\x77\x11\xc6\xfc\x7a\x39\xcc\xc9\xa2\x88\xda\x93\x56\x76\x73\x25\xb8\x5b\xec\xfe\x13\xe2\x21\xe1\x5b\x37\x74\xdb\x24\x45\x0f\x1d\x25\x08\x96\x36\x1c\x03\x72\xf9\x2a\x79\x3e\x6b\x98\x87\xfd\x98\x4d\x36\xf0\xa1\x2f\xc2\x10\x5c\x35\xb6\xae\x58\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\x63\x7e\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\x01\x07\xa6\x67\x30\x8f\x49\x9a\x6a\x05\x1e\x54\x13\xc6\x0f\x79\xe6\x74\x96\xd2\x5b\x50\x41\x83\x4e\xf5\x8d\x15\x84\x2b\xe8\x2f\xd8\x21\xf9\x4c\xa5\xd2\x72\x45\x43\xac\xa6\x6b\x04\x24\x1e\xa8\xab\x35\x27\xf6\x86\x1b\x7d\x18\x7c\x77\x7d\x7b\x3f\x3c\x1b\x7d\x28\xa2\xf3\x5d\xfa\x99\x47\x84\x72\x00\xff\x9c\x8d\x98\x0f\xa8\xf5\x00\xc8\xb0\x97\x08\xc7\x71\x81\x6c\x60\x95\x48\x23\xb3\x2d\xe5\xc8\xc1\xa9\x58\x19\x4a\xbb\xa4\x99\x07\xc8\x41\xda\xd7\x93\xb5\xc4\x75\x56\x3a\x39\x26\x93\x6a\x49\xca\xcb\x8e\x2e\x9b\x10\xbb\x55\x19\x5d\x9b\x28\x07\x2e\xc8\xc8\xb3\xd3\x95\xe0\x76\x3e\xc6\xe6\x12\x5e\x8f\xdb\xb9\x0d\xd9\x60\x53\x3f\xd2\xcf\x24\xbe\x6d\x91\xaa\x76\x92\xd1\xd2\x29\x12\xb0\x71\x17\x72\x46\xd7\xd1\xf8\xfd\x54\x1e\xf4\x77\xdd\xd9\xd2\x75\x01\xc9\x56\xc0\xab\x02\xb6\xaa\x42\x18\x45\x44\x28\x4c\x19\x9a\xc2\xc1\x66\xd1\x02\x01\x60\x07\x01\x1f\xf6\x1f\x51\x4a\x19\x20\x07\x2c\x5b\xda\x87\xf2\x3c\xd6\x10\x5a\x2f\xcf\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\x83\x9f\x97\xca\xaa\x95\x16\x96\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xc6\x89\x26\x0b\x45\x1e\x6e\x2f\xb6\x92\xef\x9a\x9d\x65\xad\x18\xe1\xa1\x74\xd5\x8c\x88\xd0\xe5\xd3\x98\x44\xab\x50\x4c\xbb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x32\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\x76\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x8d\x93\x66\x87\xb2\x24\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\x47\xa6\x42\xfc\x40\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x11\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\x06\x37\xe7\x0d\x6b\x7d\x51\x75\x21\x7d\x59\xe5\x6c\x12\xef\xcd\xda\x35\x48\x52\x90\x9e\xb8\x17\xa8\x48\x76\xa6\xdb\xc1\x20\x19\xa7\xff\x4d\x39\x92\x60\x1f\xd0\x7a\x9b\x54\x86\x52\xda\xf1\x0a\x60\xde\xf5\x32\xf1\x8a\x65\x58\x13\xf4\x28\x1c\x90\x4d\x03\x09\x81\x7e\xea\x31\xc6\x07\x21\xf0\x0f\x37\x05\x73\x6d\x6c\xc1\xce\xc0\x90\x8a\xd9\x74\x41\x43\xfa\xd1\x50\xb4\x07\xcb\x00\xf8\x0f\x57\x90\xd1\xc5\x06\xdb\xdc\xf5\x70\xba\x21\xb5\xad\x07\xa0\x54\x8c\xcf\x99\xbf\x2d\x16\x35\xce\xb0\xb5\x3b\x80\x12\xe5\x2a\x25\x34\x15\xd6\x3b\x1a\xb1\x20\x60\x45\x1a\xb5\x47\x9f\x11\x57\x9c\x04\x2a\xde\x32\x00\xb6\x86\x24\x1d\x2f\xfc\x94\x76\xa0\x9a\x22\xaf\xe6\xe5\xf2\x22\xb5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\xa0\x33\xad\xab\x38\x04\xc7\x6a\xa5\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xcd\xaa\xfe\x39\x23\xd1\x26\x10\x32\x37\x58\xe0\x94\x28\x22\x96\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x2a\x48\x18\x3f\x8b\xb5\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x35\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x6d\xe7\xf4\x3a\x50\x28\xf7\x35\x50\x91\x52\xb8\xd0\x9e\x60\xa0\xac\x1e\x65\x1b\xf8\xc9\x2a\x5e\xba\x13\xde\xed\x32\x1c\x5c\x0a\x6d\xe5\x50\x95\x72\x27\x80\x4a\x40\xa5\x32\x38\x20\xcd\x00\x26\x20\xb4\x34\x45\x48\x06\x6e\x3f\x0b\x6f\x57\x18\x74\xad\x64\x55\x2d\x2e\x55\x59\xae\x15\x3c\x6e\x57\xe0\x0e\xbd\x44\xb3\x6b\x89\x66\x15\x29\x97\xa2\x6b\x35\x75\x12\x51\xc1\x99\xb1\x45\x9f\x2d\x40\x40\x79\x82\x90\x7b\x64\xaf\x48\x5b\x39\x16\xae\x7e\xca\xfc\xbf\xca\x1c\xdc\x11\x75\x48\xaa\x4d\x49\x95\x47\x81\x0b\x0a\x3c\x50\x49\x28\x0d\xd8\xb8\x1a\x18\xad\x09\x83\x34\x56\xfe\xf3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x07\xf0\x16\xc0\x20\xc8\x7c\x92\x52\x85\x70\x30\xc3\x92\x49\xf2\xc0\x9e\x67\xfd\x01\xcc\xb8\x31\xcf\xbe\x09\xa2\x67\xc5\xa1\xd9\xc0\xbe\x56\x34\xb2\x6d\x2a\x7d\x10\xd3\xfc\xb2\xc9\xf4\x81\xc6\x13\x6a\x98\x8d\x67\xae\xcf\xa6\x47\xcd\xd6\x06\x0b\x1a\x0a\xc8\xae\x54\xaa\xca\xdd\x62\x0d\x3d\x2b\x32\xe9\x8b\x8d\xe8\x94\x4a\x5f\xbc\xbe\x8b\x5c\xfa\xb6\x32\x65\xcb\x72\x2b\xdd\x27\x2d\xf6\x6f\x97\xb3\xab\xb8\x0b\x9c\x0f\x25\xa5\x9b\x56\x49\x69\xdf\x50\xcd\x8a\x84\x80\xcd\xc3\xcb\xd7\x51\x07\x8b\xfc\xac\x90\x8a\x82\x74\xcb\x32\x26\x0c\xa9\x72\x7e\xc6\x15\xe4\xd4\x44\x50\xc2\xbd\x96\xe7\x39\x62\xcd\x12\xc8\x72\x9e\xb8\x6d\x8a\xc6\x4e\xd1\xcf\x82\xf3\xe7\x66\x61\x2d\x5a\x3f\xf9\x20\x37\xa3\x2c\xdb\x62\xec\x55\x11\xb3\x70\xf1\xb5\x05\x27\x69\xc1\x63\x93\x84\xe3\x86\x53\xd9\x3c\xf4\x5a\x02\xc5\xca\x73\x61\x2f\xdd\x1d\xaa\x76\x35\xee\xdc\x39\xdf\xc4\xcb\xc8\x96\x1b\xbb\x80\x69\xa7\xc6\x57\x3c\xb5\x9b\x14\x99\x05\x50\xd1\x9d\x41\xa1\x56\xd1\x09\x74\xe3\x07\xe0\xdd\xb5\x43\xc7\x26\xd2\xc5\x03\x74\x57\xb6\xa4\x34\x61\x5b\xbc\xff\x05\x26\xbd\x6e\x61\xe0\xc0\xdb\x28\x6c\xb4\x2f\x0d\xed\x06\x50\x11\xd8\x06\x49\x56\xf8\xb0\x17\xed\x72\x16\x13\xc1\x08\x56\xf3\xd7\xcb\xb1\x38\xdd\xd6\x38\x1d\x8c\xef\x65\xf3\x2d\x4e\x77\x52\x15\x3e\x1c\x6e\xb9\x42\xfa\xca\x71\xea\xd7\xbb\xd8\x89\x6c\xe8\x81\xaf\x11\x5c\x53\x1c\x1b\x8c\x86\x01\x04\xcd\x3a\x54\xba\x55\x1a\x46\xb3\x32\xf7\x32\x09\x29\x0d\x56\x9f\x5a\x2a\x8a\x3e\xec\x61\x65\xe5\x15\x4b\xf2\x45\x64\x7e\xbc\x7c\x32\xc2\xb2\x1a\xce\x79\x90\x9f\x00\x85\xb4\x15\xa6\xcc\x72\xaf\x65\x29\x09\x5a\xa2\x4c\x71\x53\x16\xc2\xde\xe7\xb7\x7c\xf1\xe9\x2d\x7d\xb2\x43\x9f\xec\xd0\xb0\x47\x7d\xb2\x03\x42\xfb\x96\xec\xb0\x4a\x01\x5d\x66\xfe\xf4\x1e\x39\xa8\xb5\x59\x2a\x70\x63\xf6\x77\x85\x16\xb9\x79\x40\xbf\xb3\x20\x86\xd1\x50\xf6\x17\xfb\x43\x63\x40\x54\xed\xb3\xea\x6c\x43\x6b\x26\x5b\x54\x9d\x02\x58\xc4\x89\x45\xa1\xb3\xe1\xca\x65\xeb\xd3\x32\x43\xe9\x88\x7d\xcf\x9f\xc9\x13\x11\x07\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xe8\x18\x38\x08\x25\x40\x73\x13\x05\x81\xd1\x15\x4e\x49\x6c\xea\x1d\x06\x41\x8d\xd6\x5c\x6b\x1d\xad\x4d\x60\xab\x80\x1b\x6a\xb6\xc1\x45\x4d\x8c\x98\x09\x34\x34\xc1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x37\xf0\xef\x8e\xd0\xbd\xbe\x9f\xa8\x2c\x8f\x37\xc0\x5e\x6b\x1b\xdb\x88\xcd\x04\xcf\x33\x6f\x41\xe3\x13\x53\xf8\xd6\xc4\x3e\xd5\xdd\xc0\x30\x18\xe7\x03\x8e\x70\xac\x35\xf1\xe5\x84\xf3\x26\x31\xa8\x1b\x01\x18\x85\x04\xa4\x8f\xa1\x0f\xac\xb3\x81\xee\xc6\x7b\x1b\xc0\xb6\x2c\x83\x61\x7f\x21\xd7\xf2\x19\x91\x60\x13\xf2\x36\xf7\x52\x16\x79\x19\xa9\xa0\x71\x9c\xcb\x2c\xa2\xde\x6b\xe1\x2c\xfb\xcd\x20\x08\x45\xe7\x36\xe2\xcb\xa4\xa8\xda\x7b\xe2\xc5\x6c\xa5\x9d\x63\x67\xdb\xf8\xc5\x4d\x2e\x32\x0e\x92\x58\xb2\x70\xa0\x0d\x16\xe7\x2d\xe3\x59\x6e\xa2\xda\x68\x18\xe4\xd4\x48\xd9\x54\xaa\x4b\xac\xa2\xb9\xe6\xdc\x05\xde\xd9\x8e\xa2\xfd\x0a\xae\xfc\xb2\xf6\xd3\x86\x19\x9c\x86\xbd\xb7\x38\x14\x3a\xd8\xd3\xcd\xbd\xef\x82\xeb\x9d\x24\x91\xea\xfe\x8c\xd3\xcd\x96\xb3\x0e\xac\xa2\xee\x13\xfb\x44\x4f\x74\x15\x15\xad\x1a\x7f\x37\xda\x2a\xd7\xdb\xda\x79\x1c\xe1\x16\x00\x32\x67\x16\xae\xab\x78\xd1\xd6\x67\x6d\x71\xfe\x0b\xba\x59\x0e\x90\xc5\xc8\x7f\xd2\xe2\x88\xb7\xb7\xa6\x38\xd3\x4a\x84\xe2\xfa\x96\x14\x33\x23\xc7\x9a\x28\x59\x84\x51\x2e\xa8\x3b\xfb\x95\x8c\xf0\x76\xea\x00\xfb\xe4\x71\x58\x4f\x29\xc2\x41\xa9\x39\xe3\xee\xc7\x91\xca\xb1\x0f\x4b\x04\x9a\x70\x25\xd0\x4d\xf6\xbb\x73\xab\x0b\x27\xde\x35\xec\xe9\x4a\xc2\xde\x62\x97\x71\x13\xba\x61\xa7\x93\x46\xd9\x2c\x80\x46\x6c\xb6\x11\x77\xa9\x7c\xd0\xf8\x65\xb7\xea\x0d\x8d\x9f\x3a\xd9\x67\x93\x6f\x97\x40\x37\x6d\x1c\x99\x5d\x8a\x72\xb7\x61\xb0\x56\x7a\x0a\x41\x2b\xad\xfd\x0e\xb0\x67\x29\xb8\xe9\xb1\x95\xa6\xfe\xcb\xff\x65\x2a\x65\x99\xa5\xf9\x2f\xc4\xc5\x88\x99\xdf\x0f\x7c\x95\x0a\xfd\x42\x01\xff\x8a\x53\x52\x00\x64\x8a\x32\x94\x1e\x00\x8a\x58\x28\x34\x03\xf5\xeb\x41\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xe8\x01\xcf\xcc\x52\xcc\xf0\x0c\x80\x85\x0f\x20\x2e\x0e\xc4\xd5\x42\x15\x31\x24\x6d\xaa\x1d\x02\xb7\xd2\xcc\xd2\x66\xdb\x16\x55\x7f\xa1\x4f\x23\xca\x5a\x5c\xd3\x22\xb8\xa2\x99\xfa\x6f\x6d\xff\x9b\x49\xec\xf7\x83\xbb\x1f\xc6\xb7\xc3\xbb\xeb\x87\xdb\xd3\x92\xd8\x7e\x7a\xf1\x70\x77\x3f\xbc\x6d\x7c\x56\x64\xaa\xfe\xf5\x61\xf8\xd0\xf2\xc8\x35\x70\x31\xf8\x6e\x58\x2a\xa1\xfd\xd7\x87\xc1\xc5\xf9\xfd\xcf\xe3\xeb\x8f\xe3\xbb\xe1\xed\x8f\xe7\xa7\xc3\xf1\xdd\xcd\xf0\xf4\xfc\xe3\xf9\xe9\x40\x7f\x19\xbe\x7b\x73\xf1\xf0\xe9\xfc\x6a\xec\x82\x8e\xc3\x47\x3f\x5d\xdf\xfe\xf0\xf1\xe2\xfa\xa7\x71\xd0\xe5\xf5\xd5\xc7\xf3\x4f\x4d\xb3\x18\xdc\xdd\x9d\x7f\xba\xba\x1c\x5e\x2d\x2f\xd5\xdd\xbc\x1a\xad\x55\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xae\x8b\x1b\x43\x8f\x87\x07\xee\x2f\x53\x58\xfb\x50\xb3\x40\xe7\x15\x2b\xb8\xc7\x88\x79\xb7\xa5\xbf\x54\x15\x9e\x49\x97\x78\x5c\x1a\xed\x09\x1a\xc0\x59\x01\x85\xa1\xd4\x29\xe4\x35\xf8\x91\x3a\x47\x37\xd0\x61\x42\x53\x0a\x3e\x6f\x74\x88\xaa\x1b\x5e\x6e\xd0\xce\x09\x86\x60\xbd\x76\xf1\xb2\xd3\x20\xab\x39\xcd\x40\x29\x27\xc8\x71\x68\x62\xcc\x09\x06\x79\x76\xc1\x70\x4a\xa3\x6a\x02\x06\x80\xaf\xa2\x02\x68\xa4\xda\x62\x89\xc0\xca\x2d\xcf\x09\xfa\xe1\x2f\xc5\xa0\xc0\x83\x61\x35\xef\xbc\x56\x4f\xcf\x3e\x10\xb9\x59\xd5\x55\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\xeb\x76\x83\xbb\x29\x67\x01\xd8\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd0\x1d\x00\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xc5\xf7\x09\x99\xe3\x27\xca\x5d\xf1\x0a\x53\xe3\x03\xd6\xd1\x8a\x56\xe8\x10\xb5\x1e\x94\x13\x34\x88\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xb0\x3c\xec\x10\x1f\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xbb\x87\x72\xa9\xb3\xc3\xf2\xdd\xbb\xc5\xf5\xaf\x57\x70\xec\x48\x79\xbc\x91\x30\x70\x8f\xe5\xa3\x63\xcd\xab\x04\x02\x07\xaa\xb3\x5d\x8f\x16\x5d\xa7\x6b\xa7\x7e\x65\xc7\x70\xd0\x36\xeb\xb3\x15\x13\x7a\x45\x97\x6e\xc6\x49\xa5\x70\x57\xe7\xfe\x4a\x85\xbf\x1a\x3b\xdb\xa9\xb7\xa7\x59\x1a\x83\x23\x39\xf6\xf4\xbf\xc6\x3c\x6e\xe0\xd3\x6b\xff\xe5\x52\x91\x6d\x1c\xac\xdb\xba\x3e\xa0\x5a\x8a\xae\xf5\x03\x2d\xa5\xc3\x1d\x81\x3b\x75\x17\x06\xa1\xec\x02\x8d\xc0\xdd\x87\x29\xb3\xc5\x78\x88\xf7\x47\xb9\xf2\xd3\xfa\x1c\xfb\x02\x71\x78\xc2\x9f\x4a\xca\x65\x4a\xa4\xc4\x2d\x70\x25\x81\x49\x6c\x1b\xc6\xe0\x4f\xa8\xfd\xb0\x23\x3d\xb9\x33\x79\xaf\xbf\x5a\x66\xf4\xb9\x0d\x35\x63\x37\x51\x2d\xb0\xc6\x2e\xce\x16\x5d\x9b\x6c\x3b\xcd\x5f\x0e\x8a\x50\x1a\x2e\x82\x08\xa3\x36\xf7\x4f\x47\xb3\x5a\x75\xc1\x1a\x6b\x2c\x85\x2e\xbc\xf5\x23\x70\x82\xd6\x37\xc6\xc3\xb6\x7e\x15\x5c\x5e\x9f\x35\xa8\xae\xe4\xef\x0c\xeb\x4f\x47\x3c\x4d\x8d\x5c\x50\xb2\xa5\x1e\x20\x6c\x92\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\x71\x30\x62\xcf\xc1\x86\x94\xc2\x80\x07\x61\x4b\x80\x25\xfa\x59\x1f\x37\xfa\x54\x0a\xae\x06\x91\x91\x42\xa4\x6f\x40\x08\xc6\x21\x58\x14\x8f\x5a\x41\xe0\xc1\x7e\x6d\x41\xea\x1b\x54\x0a\xac\xac\x6f\x5b\xbd\x40\x3f\xb7\xa0\x4c\xdf\x16\x9a\x72\xd7\x21\x04\x95\x02\x9b\x46\xb0\x83\x42\x81\xaf\x0a\xee\xed\x93\x35\x4d\x6e\x6f\x3a\xb1\x08\x15\x7a\xba\x6e\xb5\x7f\xef\x66\xf4\x7b\xe3\x77\xc8\x5b\x20\x4d\x82\xd6\x3c\xbe\x37\x3a\xd4\x32\xab\x4b\xb5\xb7\x81\x18\x12\x1d\x1a\xcc\xc0\xaf\x20\xce\x72\x70\x73\xfe\xd5\x01\xfa\x2a\xcc\x35\xfb\x6a\xa3\x03\x68\xc7\x6d\x8b\x05\x82\x36\x55\x4a\x38\x28\x1f\x3b\xd8\xab\xca\x49\xb4\x7b\x66\x0f\x22\x6a\x3b\x87\xfa\xcb\xd2\x37\xe0\x9c\x86\xe2\x77\xc6\x7f\xeb\xc3\x9d\xad\x0b\xc8\xc8\xb8\x54\x36\xac\x5d\x3c\x62\x93\x45\xd5\xc9\x73\xe0\xbd\x3c\x9d\x4f\xe9\xd6\x05\xdd\x74\x7b\xf5\xe4\xe4\x1d\x87\xe1\x2e\xbf\x0f\x56\xa4\x3b\x0f\x4c\xc4\x35\x9f\x06\x5c\xac\x2d\x4a\xa1\x8f\x5f\x6f\x9a\x55\xc9\x5e\xe6\x16\xb3\x71\x53\x56\xc9\x3f\xef\x8d\xdc\x3a\x04\x7d\x0f\x9a\x56\xc4\xc6\xfb\xb7\x08\xd7\x3d\x95\xbd\x2c\x95\xed\x22\xdf\xa1\x3c\xb8\xf5\x2f\xd0\x53\x23\xc7\x05\xcd\x38\x83\xab\x56\x26\x3c\x83\x2f\x55\xfd\x5b\x5d\x2e\x77\x4d\x9f\x6f\xb0\x26\xab\x9d\xbe\x77\x26\x70\xc0\xb8\x5d\xeb\x63\xad\x0e\x75\xa0\x6c\x09\x22\x4e\x4d\x6e\xa3\xa2\x29\x39\x40\x9c\x25\x8b\x20\xd8\xc1\x9e\x57\x20\x37\x13\xa3\x34\x27\x54\xb8\x4e\x2c\xc2\xe0\x5a\xc9\xf0\x6b\x4a\xe3\x6d\x34\xb2\x45\xa4\xc9\xd5\xe0\x72\x78\x36\x1e\x5e\xdd\x9f\xdf\xff\xdc\x80\x1e\x59\x7e\xec\x00\x24\x83\x17\xee\x7e\xbe\xbb\x1f\x5e\x8e\x3f\x0d\xaf\x86\xb7\x83\xfb\x15\xe0\x92\xcb\x3a\x6b\x03\x2e\xcc\x65\x93\xfa\xb6\x0e\x78\xa1\x33\xf3\x36\xf4\x5e\x87\x98\x0c\x3a\xa1\xa4\x05\x66\xd2\x24\xfe\xb3\x98\x08\x14\x93\x27\x92\xf0\xac\x30\xab\x36\x2e\x58\x80\x3f\xd9\xd0\xfe\x32\x0c\x4a\x68\xb3\xba\xc6\x27\xc8\x54\x7a\x0b\x8a\xdd\xfa\x06\x41\xe4\xc3\x82\xb0\xaf\x14\x22\x9f\xb3\x84\x46\x54\x05\x89\x81\x5c\x58\xf7\x8a\x71\x1f\x42\x74\xea\x0a\xe2\xda\x59\x34\xca\xce\x75\xfe\xd0\x93\x5e\xd7\xf6\xfd\x89\xf2\x78\x68\x2b\xcb\x07\xed\x40\xb1\x6f\x71\x1a\xd7\xe0\xda\x36\x18\xdd\x4b\x98\x07\xea\x19\x3a\x36\xb9\xaf\x05\xca\xad\x79\x90\xab\x6f\xc3\x65\x71\x32\xa5\x73\xbd\x3c\x50\xa6\x1b\xa5\xbe\x71\xb8\x4b\xa9\xac\xe6\x0e\x70\x37\x6c\xec\xfa\x9a\x01\x0b\xb5\x6a\x31\xcc\xc4\x9c\x62\x24\x48\xca\x95\x56\xc0\x4c\x44\xc0\x81\x16\xaa\x28\x4e\xe8\xaf\x80\x50\x25\xc8\x51\x10\x41\xe1\x70\xbd\x0a\xf7\x81\x45\x8f\x38\x1a\xb1\xb3\xe1\xcd\xed\xf0\x54\x33\xa4\x23\xf4\x20\x01\x7c\xaa\x34\xf5\x33\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xb6\x60\x30\x22\x04\x17\xdd\xf9\x83\xef\x6f\x08\xdf\x35\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb5\x26\x72\x90\x33\xb0\xf3\x94\xac\x5b\xfc\x5c\x5a\x91\x10\x7c\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x7c\x67\xf7\xf9\x95\xfa\xbc\x81\x6f\x97\xcd\xf3\x1e\x42\xec\xa4\x2a\xb0\x40\x0d\x5c\xa8\xaf\x79\x53\x99\x67\xab\xa8\x28\xde\x02\xa8\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x38\x6c\x68\x69\xab\x07\xcd\xac\x7b\x54\xf5\x9a\xe1\x94\xe7\x0c\x94\x06\x08\x63\x6d\x18\x8c\xcc\x08\x53\x2b\x06\xf3\x56\x30\x2c\x95\xa1\xee\x2f\x12\x4b\xc3\x40\xdb\xc0\x58\x9a\xfc\x49\x50\x78\x79\xbd\x6b\xd9\x05\xe5\x95\x9c\x4a\xfa\x50\xf9\xfb\xb9\x59\xcb\xc6\xf2\x71\xeb\xee\xee\xb1\x7c\x5c\xdd\x55\x4c\xa2\xc7\x75\x2f\x9b\x6a\x66\x66\x62\xeb\x56\xd7\x8c\x7d\x0b\xfd\xd4\x16\x66\x81\x72\xe5\xd1\x23\xfa\xfe\xfe\xf2\x02\x4d\xa9\x96\x7b\xf5\xb5\x72\x85\xb5\x8c\xfd\x20\x12\x67\x17\xb6\xb6\xd5\x5c\x24\xfe\xee\x85\x8d\x77\xa2\x54\x20\x25\xe8\x1b\x0d\xcf\x88\x33\xf6\x0a\x8b\xb5\x57\x29\xcc\x22\x30\x8b\x79\x6a\xe6\x71\x2c\xf3\xe9\x94\x7e\x3e\x52\x58\x7c\xd3\xb2\x1e\x26\xaa\x62\xfc\x77\x3e\x19\xeb\x11\x6d\x79\x11\x37\x35\x87\x6c\x39\x65\xbf\x6c\x76\x66\x67\xe6\xdd\xff\xcb\x27\x90\xeb\x9e\x09\x0e\xf8\x7f\xe0\x9d\xb3\x91\x0a\xf6\x15\x47\x49\x47\xc8\x25\x50\x95\x20\x4e\x22\x2e\x04\xb1\x29\xf2\xa6\xb2\x68\x86\x85\xa2\x60\xad\x75\x10\x29\x25\x6c\xfc\x62\x8b\xc2\x82\xdf\x73\x5c\xe0\x50\x4f\x08\x01\x07\x4f\x46\x93\xf5\x94\xde\xd3\x92\x6f\xb2\x72\x02\x6d\xe4\xa9\x45\xcd\x04\x83\xcc\x4a\x11\x6b\xf8\x44\x98\xda\x89\x7e\x02\x4d\x34\x24\xed\x77\xf3\x32\x98\x02\x9f\xe7\x67\xc5\xe5\xe6\x42\x7a\xc3\xa8\x26\x25\x30\xdc\xf3\x36\x51\xca\xba\xd4\xdb\x1c\xfd\x4f\x9d\x7d\xc7\xf0\x6a\x7d\x5d\x56\x84\xc6\xdb\xd5\x2e\x0a\x7d\x17\x61\xad\x0e\xd8\x7f\x43\x18\x1f\x49\x8c\x15\x23\x80\x8f\xb0\xca\x69\x75\xcf\x4d\x9f\x9a\xb6\x2a\x5d\xae\xdc\xf2\x0d\x30\x6b\x4a\xcd\x7c\x22\x90\xd2\xb9\x8b\x40\xf4\x75\x52\xf7\x61\x20\x0f\x22\x81\x10\xea\xa5\x56\x2c\x53\x64\x5c\x73\x3e\x2f\xd9\xe1\x0e\x32\xba\x19\x8c\x16\x1a\x49\x26\x48\xa4\xaf\xb2\x13\x74\x93\x10\x2d\x79\xe5\x5a\xfa\xca\x93\xc4\xe1\x7b\x2d\x97\x0e\xd7\xc2\xa4\x7b\xf1\x79\x05\xba\xc7\x92\x89\x39\x7c\xbb\xe5\x33\x0b\xd6\x60\xf7\x80\x0b\xc1\xfa\x82\x09\x19\x0c\x89\x65\x2d\x12\x38\xfc\xc2\xc4\xcd\x82\x29\x09\x97\x2e\x32\xfa\xab\x66\xbf\x82\xc8\x39\x6f\x4d\x72\x0c\x67\xfb\x32\x73\x70\x4b\xf9\x82\x93\x70\xf7\x61\x5b\x5c\x75\x07\xb9\xa6\x72\x07\x96\x44\x9c\x65\x53\xf4\xb5\x1f\x7c\xf4\x87\x45\x5b\xb5\x77\xab\x1d\x1a\xdc\x92\x85\xa9\x2d\x44\x3e\x2b\x5c\x17\x85\x32\xb3\x30\xbe\x57\xff\x79\x61\x40\x2e\x52\x02\xa8\x92\x45\xcd\x39\xa4\xef\xda\xb6\x2d\xd6\xf3\x1c\xe7\x62\x2d\x48\x8a\x02\xb3\x7c\x1d\xce\x6d\x93\x51\x8a\x61\xe9\x45\x68\x66\x97\xb6\x94\x04\x88\xd1\x36\xd4\x48\x96\x70\xe0\x2c\xd9\x98\x65\x6c\x54\xf1\xda\x99\xf2\xb6\x6e\x35\x90\x92\x0b\x51\xe6\xa5\xbc\x6b\x25\x0a\x2c\x4d\xa0\x47\x16\x5b\x1f\x59\xcc\xd6\x15\xf1\xb4\x07\x38\x80\x4a\x40\xe2\x7f\xe1\x40\xab\x0a\x0e\xd6\xe8\xbd\x2a\xf3\xa9\xb4\x3b\x9d\xd2\x9c\x4a\x5f\x68\x5e\x72\xb6\xa5\x07\x4e\x4f\x66\x31\x86\xc4\xd1\x6d\xa2\x70\x4a\xf3\x37\xde\x03\x68\x93\xc4\xc8\xa0\x17\x18\xdc\x63\xbb\x76\xde\x73\x92\x61\x41\x98\x1a\xb1\x5b\x3d\x0a\xf3\x45\x11\x89\xe1\xe2\x70\x1c\x16\x3d\x54\xac\x9d\x22\x6c\xbf\x82\x45\x6f\x0b\x84\x93\x63\xf3\x12\xa8\xa6\x2f\x98\x64\xff\x9d\x79\xc7\x60\x1e\x58\xcc\x1f\x3d\x55\x3a\x2d\xd4\x78\x2d\x40\x46\x73\x0a\x90\x03\x31\x91\xf6\x42\xa2\xca\x62\x4a\x78\xf1\x3b\x27\x0e\x7d\x19\x3e\xf3\xfc\xab\x89\x61\x3b\x43\x01\x73\x06\x3a\x39\x62\x41\x1f\x4b\xc0\x3a\x8d\xb2\xbe\xa1\x2a\x01\xfb\x4c\x63\xef\xf8\x82\x7f\x9a\x1d\xe2\x82\xce\x28\x0b\x4a\x26\xd9\xe9\xa5\x38\x03\xf3\xae\x39\x83\x7c\xea\xef\xb4\x7b\x9b\x65\x70\x04\x23\xfe\x9f\xff\xfe\xdb\x11\x6d\xf3\x7e\xc8\xb1\x5d\x81\x7d\xd8\xc9\xf5\xb6\x25\xdc\xf9\x00\x45\xa4\x05\x9d\x22\xd0\x69\x65\x29\x73\xa2\xf8\xd5\x5e\x6e\x9a\x68\xb8\x9a\x1b\x77\x6f\x99\xdc\xc1\x37\x22\xf2\xe5\x55\x04\x02\x16\x57\x04\x04\x14\x5e\xdf\x20\xe8\xd6\xd5\x88\x30\xc1\x92\xba\xfd\xca\x85\x52\x61\x50\x01\x98\xdf\x36\xc1\x89\x73\x2c\x5f\x2e\x02\xa5\xb1\xb6\x91\x31\x1a\x87\x77\xe4\xaa\x58\x14\x33\x48\x93\xd4\xa8\x77\x25\x97\x44\x98\x03\xed\x51\x9f\x2c\xf1\x84\x50\x85\x10\x8a\xb8\xc2\xa5\x46\x52\x4c\xd7\x0a\x9b\xd7\xef\x37\x03\x29\x96\x6c\xea\x78\x46\xc4\x38\xce\x4b\x31\xd2\xab\xda\xbe\xd1\x1f\x9d\xe5\x6a\xb1\xba\x7d\x99\xe0\x7a\x6d\x97\x65\xe0\x95\xfa\xfd\x96\x66\x57\x0b\x86\x41\x24\x4b\x59\x38\x6c\x81\x86\x24\x15\x68\x48\x1b\x5a\x59\xb2\x04\xc0\x45\xc3\x14\x20\xc7\x15\x0a\x83\xbd\x89\x0c\x80\x35\x8c\x1c\x4d\xf2\xc2\x72\xe2\x4b\x02\xc4\x47\x23\xf6\xd1\xd4\xd4\x00\x65\xc6\x0c\x20\x82\xbc\x16\xf2\x39\xe3\x92\x94\x12\xad\x1a\x60\xfe\x6d\xa2\xa4\x1d\x46\xb3\x4c\x5a\x7c\xb4\xbd\x48\xfa\xe6\x20\x9f\xf5\x0d\xaf\x4f\xb9\x99\x02\xb7\x92\x7a\x22\x9a\x51\x4d\x3b\xe3\xc6\x93\xf6\x72\xa5\x66\x8b\xd0\x25\x80\x7b\x52\xc9\xe2\x00\xf9\xe9\x55\x08\x22\x21\x4f\x04\xac\xc6\x30\xc6\xb0\x98\x43\xd9\x7c\xd5\xc2\x4e\x56\x1d\xa0\x22\xcb\x11\xd8\x02\x8a\xab\x23\x28\xe7\x82\x35\xd1\x62\x39\xcb\x65\xeb\x84\xac\xa6\xf8\x8b\x35\xa4\xd0\x41\x58\xd4\x62\x41\x14\x22\x9f\x15\xb1\x65\x2f\xef\x5d\xca\x5c\x3d\xca\x1e\x35\x67\xfd\xb4\x8b\x48\x2f\x5e\x80\x78\xe0\x12\xa5\x5d\x4e\x60\xec\xee\x7d\x9b\x23\x37\xc7\x2c\xb6\x89\x9f\x56\x96\xd6\x32\x05\xcc\xce\xd8\x96\x7c\x48\xbc\x4d\x5f\x0c\xd0\xc0\x4d\x9b\x06\xb6\x1c\x2e\x32\xa7\x17\x69\xc9\x1c\xa2\x08\xb8\xd0\x02\x6a\xce\x14\x4d\x34\x71\xd8\x31\x68\xad\x39\x67\x1e\x8f\x0f\x02\xb8\xdb\x20\xdf\xa8\x94\x94\xcd\xc6\x76\x25\x5d\x0e\x63\xb7\x8b\xa1\x4c\x53\x97\xa6\x29\xf3\xe3\x77\xae\xa1\xe5\xb6\x63\x43\xd6\x00\xc7\xe5\xb2\x27\x41\xb0\x66\xdc\x4d\xc6\xe2\xa8\xb9\xa4\xcb\x31\x8d\xcd\x52\x50\x53\x5d\x19\x26\xba\x8e\x79\x19\xc4\xba\x3a\x5c\x41\x71\x85\x48\x9b\x11\x69\xf2\x9c\x20\x20\x5d\xb5\xa4\x7c\xca\xd6\x54\xcf\x73\xe6\x45\x34\x5b\xdb\xc9\x27\xb4\x57\xb2\x46\xb1\xeb\xce\x46\xdd\xe3\x24\x99\xe0\xe8\xd1\x2b\x1b\x5e\xe5\xe6\xc2\x61\xe3\x6b\x01\x15\x8a\x7f\x19\xe2\xd2\x03\x8d\x40\xba\x09\x9d\x62\x06\xb0\xc6\x0e\xbb\xe8\xdc\xac\x9a\x45\x02\x33\x08\x45\x66\xf4\x26\x84\x3f\x26\x59\xc2\x17\x69\xcb\x7d\x56\xcd\x94\xdb\x26\x20\xa5\x2d\x51\x6f\xa7\x57\x59\x85\xe9\xad\x7d\x99\xd5\xd2\x6e\x76\x00\x9f\xb4\x06\x97\xfc\x94\xf0\x09\x58\x0e\xad\x96\xed\x52\x49\x82\x8c\x86\xea\x79\x5e\x37\xc1\xa5\x7a\x22\xa9\xcc\x12\xbc\x58\xd6\x83\x49\xad\x78\xd9\x7d\x33\xa9\xf8\xab\x8d\x60\xdd\x83\x92\x1b\x3f\x7f\x09\xa0\xde\x0b\x27\x09\x98\x77\x0d\xff\xaa\x18\x93\x4c\x4e\xdb\x91\xf1\xc5\x2a\x3e\x62\x0a\xcf\xdc\xe6\x5a\xe1\x92\x3f\x33\x22\xe4\x9c\x66\xa5\xa2\x80\x5b\x47\x41\x5b\x8a\xb6\xff\x31\x31\xbf\x6b\xf0\x4e\x9e\x1d\x1a\x20\x0e\x4d\x1f\x32\xc3\x51\x61\xfc\x8b\x12\x2c\x25\x9d\x2e\x02\xfc\x0c\x1f\x50\x0a\x59\x4a\x65\x6d\x39\xa8\xc3\xd5\xc4\x68\xcc\xf8\x76\x93\x40\xbe\x7d\xf2\xdc\x43\xf9\xf8\xd1\x38\x04\x2a\xd3\xf7\x49\x1d\x2c\xc5\xdd\xd4\x16\x34\xa5\x15\x70\xd5\x64\xca\x6f\x96\xf0\xbd\x14\xe3\xa6\xdd\x8c\x50\x08\x93\x76\xd8\x56\x91\xf1\xb8\x16\x21\xe6\x8b\x2a\x65\x0c\xc2\xe6\x6b\xc5\xc9\x99\x3f\x35\x71\x7a\x4c\x0c\x80\x0e\x28\x3e\x3e\x40\x72\x2b\x2c\xa9\x2e\x74\x71\x46\x12\xb2\x93\xc0\xe2\x0d\x88\xa4\xea\xb5\x0f\xc8\x63\x29\x69\x14\x58\xfa\xab\x8d\x0b\x1b\xc4\x3b\xb7\x20\xd2\x34\x0f\xfd\x27\x33\x50\x1b\xf2\xdc\xb4\x8b\x60\xff\x82\x55\xee\xaa\xbb\x34\x41\xdb\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\xfb\x48\x6a\x6f\x1c\x19\x5c\x1b\xd7\x27\xd2\x25\x8a\x61\xe5\x01\xd8\x88\x03\xd5\xf9\x74\x37\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe2\xde\xd7\xf1\x7f\x4f\x34\xb1\xb3\xbc\x86\x1d\xad\x7e\xf3\x21\x5f\xef\xd4\xde\x11\x25\xdd\x95\x50\x43\x0b\xb4\x9b\xb3\x87\x5b\xb0\x1f\xc7\xd2\x08\xae\x5f\xbc\xdc\xb2\x35\x16\x80\x1d\x99\xcd\x88\xff\x0d\x09\x54\x66\x8e\xb1\xfd\xc2\x67\xbf\x97\x70\x9f\x70\x09\x2b\xcf\xac\xd1\xdb\x73\xbd\x2a\x69\x7f\xe9\xa2\xd7\xfa\x34\x5e\x1d\x55\x41\xdd\xbd\x3c\xb8\x9e\x3c\xe8\xb0\x24\xf7\xf0\xf2\x6f\x3b\x06\xfb\x79\xff\xec\x81\x70\x58\xbb\x12\x77\x27\x22\xbe\x23\x32\xd9\x0b\x49\xb1\xb6\x15\xaf\x25\x2f\x1e\x3a\x30\x9f\x02\x1a\x67\x7f\xb7\x68\x3f\x4e\xf2\xad\x75\x03\xbd\xdc\x05\xbb\x9a\x5e\x76\x42\x1f\x80\x6b\x89\x21\xfd\x37\xb7\x85\x32\xe0\xf0\x06\x21\x63\x35\xdf\xc3\x8a\x60\x3c\x3b\xbc\x4e\x61\x78\xb5\xe5\x7c\x89\xed\xb5\xb9\x5e\x9d\x37\xf7\x25\x49\x6d\xdd\xb1\xec\x42\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x3e\x26\xb6\xdb\x2d\xda\x80\x20\xe3\xb6\x6c\x97\x87\xac\xa9\xba\xd9\xf6\xd9\xea\x2e\x95\x6d\x9c\x09\x32\xa5\x9f\x37\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\xd4\x4b\x03\xf7\x0c\xd4\x57\x0b\xe2\xf6\xec\x4a\xdb\x9a\x4a\x23\x56\x24\x00\xda\xec\xbf\x47\xb2\x40\x5c\x94\x7e\xda\x14\xeb\x70\xf7\xb5\xdd\xcc\xbe\xce\x95\xca\xe4\xc9\xf1\xf1\x8c\xaa\x79\x3e\x39\x8a\x78\x6a\xc2\xcd\xb9\x98\x99\x3f\x8e\xa9\x94\x39\x91\xc7\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\xd0\x63\xea\x7e\xa7\xf2\x96\x13\x2c\xb7\x8b\xec\x71\x99\x5a\x2f\x9c\xb1\x1b\x74\xe3\x72\x24\xf5\x37\x52\xe1\x34\x0b\xa3\x47\x4d\x75\x34\xa9\x70\x51\x93\x01\xd2\xef\xf4\x34\xd1\x1c\x67\x19\x61\xed\x66\x07\x93\x4f\xb9\x05\xeb\x71\x19\x99\x76\x84\xe4\x73\x96\x60\x56\x46\x19\x80\x02\x43\x82\x44\x84\x29\x9b\x01\x5f\xd4\x4b\x06\x6a\x34\x48\x37\x86\xff\xaf\x97\x71\x07\x73\xa4\xb2\xa8\x1c\xe6\x86\x63\xab\x78\xba\xda\x8e\x38\x58\xba\x6a\xe5\xd4\x62\xed\x88\x5b\xb5\x65\xb9\x78\x77\xf5\xfa\xd9\xeb\x57\x6e\x11\x9c\x8d\xc9\x67\xcd\xe4\xe4\xa6\xb8\x54\x0f\x92\x48\x34\xf8\xe9\x0e\xc9\x05\x53\xf8\xf3\x09\xba\xa4\x0c\x04\xd8\xef\x79\x2e\x24\x3a\xc3\x8b\x43\x3e\x3d\x4c\x39\x53\x73\x74\x09\xff\x6b\x7f\x7a\x26\xe4\x11\xfd\x4c\xb0\xb0\xfc\xc1\x56\x5e\xf3\x45\xbc\x35\x09\x89\x9c\x49\x44\x9e\xf4\x09\xfd\xc3\x7f\xa2\xd4\xb4\x7c\x82\xbe\x3d\xfe\xc3\x7f\xa2\xdf\xc1\xff\xff\xff\xd1\xef\x5a\x34\xfd\xf5\x90\xad\xa0\x3e\xef\x6d\xd9\x9d\x7b\x50\x59\xa9\x0d\x4a\x96\x9f\x0a\x5e\xec\x54\x63\xcb\x8f\x34\x7a\xe4\xd3\xe9\x58\x13\x86\xc9\x57\x1b\x63\x51\x43\x45\xde\x10\x26\x94\xda\x02\xcb\xa6\x60\x5b\x51\x2a\xc5\x76\x6a\x80\x0d\x1c\xbb\x96\x79\x51\x60\x16\x82\x88\x4a\x45\x7b\xa9\x84\xaf\x48\xac\xb9\xea\x3a\xa7\xc3\x59\xf7\x5c\x8e\xb3\xb3\xe0\x84\x40\x20\x61\xd1\x70\x1f\xf8\x17\x46\xb1\x9a\x40\x1f\xbb\x90\x8d\xc7\xa1\x16\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\xd6\x3a\x5f\x1d\x2a\x79\xc7\xc5\x56\xfa\xd6\x23\xa9\xc5\x6c\x77\x2c\x0b\xe4\x4a\xd5\x86\xe5\xeb\x21\x11\x9a\x0b\x0f\xd7\x6b\xec\x22\xb6\x78\xe0\x6a\x2b\x26\x15\x26\xb8\xac\xdb\xa1\xd7\x53\x3f\xf3\x9f\xac\x1a\x26\x44\x9a\xb9\xb7\x8b\xb2\x68\x30\x5a\x2d\x22\x69\x96\xd8\x30\xe2\x06\x4c\xbf\x55\x1b\x7a\xe7\x61\x1c\xa0\x71\x08\x7b\x84\x94\x0f\xe6\x24\x5b\x9b\x27\xdf\xbc\x9f\xb9\x88\xc8\x29\xdf\x2e\xec\x35\xa1\xac\x16\x2f\xdf\xbd\xe2\x8e\x5f\xbd\x0b\x5b\x5b\xc9\xc1\xde\xf2\xb8\x50\x16\x8c\x5b\xc0\x16\x5b\x08\xf0\x36\xcb\xb3\x01\xdc\xb6\x5d\x40\x3a\xd6\x4a\x00\x6c\xc1\xb5\x8d\xe1\xb8\x60\x78\xae\x82\x44\xa5\x70\x84\xc0\x9a\x17\x2e\x89\x5d\x83\xa0\xa2\xad\xc7\x11\x14\x43\x29\x22\x95\x2a\x45\xc7\xb1\xa9\x08\x22\x36\x84\xe4\x34\x75\x89\x0e\x90\xc0\x10\x94\xa9\xe6\xba\x3d\x49\xc4\xe1\x14\x47\x94\xcd\x0e\x02\x34\x46\x40\x46\x08\xaf\x83\x26\x22\xbd\xc7\xf2\x71\xb7\x81\x86\x5b\xd7\x69\xa4\x71\x51\x2b\xcc\xe2\xa7\x18\xc7\x06\xad\x41\xd1\x29\x2c\x1f\xdb\x00\x84\x6a\xe8\x65\x4b\x46\xe7\x97\xc2\x61\x9e\x2d\x1b\x9f\xcb\xb4\x26\xa1\x3e\x05\xa5\x09\x5c\xe5\x60\x8b\x65\xe8\x12\xdb\xb0\x07\x1b\xa9\x82\x78\x2e\x19\xbf\x9c\x73\xa1\xc6\x1b\xc2\x9f\x56\xb3\xc5\x19\x39\x4c\x00\xb7\x84\x3f\x11\xf1\x44\xc9\x73\x19\x45\x74\x1d\x5a\x34\x46\xb3\x20\xaa\x0e\x60\x26\xd3\x8c\x43\x0a\xcd\x14\xa5\x98\x2d\x0c\xa3\xd4\xcc\x05\xcb\x47\xe9\xeb\x95\x22\x99\xe2\x24\x39\x40\x82\xe4\xd2\xd4\xf1\x95\x24\x99\x1e\xba\x8a\x0f\x31\x4a\xf8\x8c\x46\x38\x41\x93\x84\x47\x8f\x72\xc4\xb4\xa0\xc0\x66\x86\x49\x65\x82\x47\x44\xca\x40\xb2\x2a\x92\xb6\x6d\x2a\x1d\x14\x2b\x55\x44\xa4\x94\x51\xa9\x68\xe4\x44\xa6\x02\x7b\xc1\x94\xcc\x8e\x30\x98\x84\x21\x31\x11\x86\xab\x25\x3d\x62\x30\x28\x73\x66\x6b\x03\xc1\x75\x6d\xa1\xe5\x5c\x90\x78\xdb\x01\xda\x01\x52\x9e\xa3\x90\xb1\x2a\x1f\xc8\x15\x47\xea\xd4\x7e\x06\xc7\x78\x19\x09\xdc\x96\x4f\x94\x27\x48\x7f\xd2\x4a\xe8\x3d\x10\x53\xee\x43\xe0\x4b\x92\x8b\x8f\x0c\xdf\x33\xe0\x2e\x18\x72\x0b\x5c\xd7\x2a\x9a\xd6\xab\x08\x22\x0f\x94\xa3\xaa\x7a\xcd\x29\x8b\x92\x3c\xf6\x05\x09\xb5\x08\xf0\xa4\x89\xc4\x2d\x8f\x5e\x7b\x2d\x28\x1c\x20\x2c\xd1\x33\x49\x12\xfd\x5f\x13\x01\x7f\xe8\xeb\x03\x68\x96\x6c\x6a\x38\x40\x27\x8e\x4b\xb7\x51\xd4\xde\x81\x30\xde\x60\x35\x37\xa9\xed\x29\x57\xa6\x16\xa4\x01\x61\x74\xf6\x2d\x83\xda\x37\x49\xf8\x04\x4e\x3a\xe0\x33\xba\xd4\xd8\x20\xad\x2e\x8f\x22\x42\x62\x12\xa3\xaf\x83\x83\xeb\x61\x17\xbe\x69\x46\x0b\x2c\xad\xc8\x1e\x60\x33\x56\x0d\x6b\xad\x08\x8d\xe5\x72\x66\x47\xe8\xa6\x82\x3f\x12\x96\x29\xc7\x55\x34\xaa\x83\xda\x16\xbe\x0d\x9e\x63\x65\x12\x2f\xb7\x43\x6b\xe2\x39\x96\xfa\xdc\x01\x9e\x63\x65\x9e\x2d\xb1\xfb\x7c\xf6\xa2\x39\xc7\x7a\x52\x17\xbc\x7b\x22\x98\xc1\xc1\x32\x77\x67\x89\x04\xdd\x81\x5c\x34\x11\xe2\x7e\x61\x55\x56\x8a\xfe\xbd\x2d\x56\x65\x65\x30\xfb\x8c\x55\x59\x19\xea\xfe\x62\x55\x36\x0c\xb4\x03\x56\xa5\x71\xee\x8f\x35\x51\x77\x63\x0a\x90\xd8\x32\xc9\xa7\x77\x90\xea\xbd\x74\x8c\xa7\x26\x70\xc0\x5c\x63\xee\x8e\xb6\xd0\xcd\x30\x5a\x9b\x03\xd9\x16\x0e\x55\x71\x42\xac\x4b\x7b\xde\xfb\x46\xa5\xd1\xd0\xd6\x33\xbb\x1f\x84\xd6\x6e\xb0\x43\x46\x38\xb3\x39\xe5\x6d\x15\x55\xf6\x27\x7b\x76\x33\x18\x50\x80\xda\x2b\xb1\xfc\x4e\x40\x59\x97\x95\xe2\x04\x73\xfe\x6c\x0b\x04\x01\x19\x1a\xa2\x6c\x25\x41\xe8\x74\x6c\x95\xb6\xb6\x95\xa3\x4c\x91\x59\x55\xa7\x2d\x0e\x0d\x65\xea\x4f\x7f\x5c\xc9\x89\x0c\x92\xa0\x53\x0f\x83\x12\x01\xde\xd9\x61\x9f\x91\x18\x45\x73\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x14\x53\xa7\x48\xe5\xd2\xb8\x96\xa8\x1c\xb1\x12\xf4\xe6\x11\xfa\x08\x75\x4f\x71\x9a\x69\xfd\xcb\xcf\x8f\x6a\x4a\x1a\xe5\xdf\x7e\xfb\x27\x82\xbe\x45\x29\xc1\xac\xa4\xc3\x82\xda\xa4\xaf\x3e\x80\xaa\x53\x73\x32\x62\x8d\x5b\x81\x86\x9f\x4d\x29\x25\x17\xef\x77\xce\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd9\x29\x7c\xd9\x18\x00\xeb\x6e\xec\x7a\x1b\x0f\xe0\x1e\x39\x94\xa4\x04\x61\xd4\xe0\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\x1e\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x0e\x80\x12\xf2\x68\x6e\x1c\xab\x5a\x67\xc1\xb6\x2e\xc3\x13\x95\xb9\x56\x68\xa1\x2d\x57\x06\x42\x2a\x6c\xa0\x97\xe6\x14\xfa\xd1\xea\x37\x81\xaf\xc2\x2c\x39\xd4\x4d\x8b\x0a\xd1\x51\x2b\x3c\xbf\x23\x3a\x6a\x89\xaa\x7a\x74\x54\x8f\x8e\x5a\x5f\x97\x7d\x44\x47\xad\xec\x79\x37\x74\xd4\xa6\x2d\xdf\x00\x1d\xb5\xd4\xcc\x17\x83\x8e\x5a\x59\xd1\x2f\x06\x1d\xb5\x32\xaf\x1e\x1d\xf5\xcb\x43\x47\xdd\x12\xff\xb3\x99\x17\x1b\x7c\x25\x45\xd9\x62\x6d\x22\xfb\x4a\xa2\xf3\x6b\x4d\x60\xd1\x63\x39\xa8\xcd\x5f\x57\xdb\x63\x8e\x36\x33\xa1\xf5\x30\x47\x1b\x55\xf5\x76\x56\xb7\x2d\xc0\x13\x28\x06\xaf\x8c\x39\x5a\x9a\x40\x1f\x5f\xb9\x7e\x7c\x65\x23\xf1\xd9\xbe\xf5\xf0\x5c\xd0\x65\xf5\x42\xee\x88\x3a\x5a\xda\x9f\x4e\x91\x98\x20\xba\xef\x80\x12\x5f\x56\x9a\xbf\x2f\x1d\xf2\x95\xb2\x7c\xb8\x8a\xd2\xe2\x1f\x6b\x09\xcf\xa1\xc5\x19\x25\x3c\xf4\xff\xf7\x94\xbb\x41\x64\x70\x65\x79\xbd\x5f\xc5\xd0\x62\x07\x52\xed\x4c\xa1\x4e\x2b\xdd\x4d\xa2\xac\x4b\x9e\x5c\xd3\xc5\xec\x06\x71\x97\x91\xa8\xc5\xc6\x4c\x53\xba\xab\x66\x57\x5d\x64\x1e\x0b\x0b\x14\xf2\x5a\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x5a\x63\x9b\x6a\x23\xdc\xc6\x55\x9a\xe5\x9d\x03\x62\x82\x55\x9d\x6d\xf6\x59\x4a\x52\x2e\x56\x05\x56\x35\x7e\x69\x2b\xba\x6c\xf2\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xdd\x46\xba\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xce\xdb\xbd\xed\x36\x5b\xcc\xcc\x35\x1d\x42\x0e\x33\x78\xb9\xc1\xcd\xbe\x54\x72\x77\x03\x7d\x37\xc6\x74\xf8\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x4e\x15\x5f\xd9\x7a\xc7\x6b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\xeb\x07\x78\xb4\xa0\xa6\xd6\x97\x07\x22\x73\x24\x11\x87\xa1\x66\x50\x1a\x4c\x7d\xbd\x4a\x54\xe2\x34\xca\x2d\x88\x24\x17\xad\x51\xa6\x5d\x0c\xda\x91\xca\x71\x02\x9a\x44\x58\xa4\xb1\xba\xa9\x93\x45\x43\xda\x63\x37\x8f\x09\x65\xea\xcf\xff\xb1\xd6\x6e\x6a\xd5\xca\xae\x1b\x14\x96\xc2\x51\x44\xa4\xb1\xb1\xdb\x28\x64\x3c\xe1\x4f\x50\x53\x6a\x9b\x5d\xd5\x47\x59\xcf\x5b\x33\x78\x0f\x45\x1c\x17\xa4\x6e\xc4\x85\xb9\xe0\xf9\x6c\xee\x6c\x48\xfa\xcc\xe8\xa9\x35\xed\xe5\x8f\x35\x1b\xf9\xda\x7b\xf9\x5d\x4e\x93\xcd\x2c\x74\x77\xa5\x6a\x5b\x9f\xce\xef\x91\x9c\xfb\xd3\x3a\x81\x66\x1b\x37\xb6\x3e\xe8\xee\x7d\xda\x6f\xbd\xbf\x06\xba\x39\x70\xf0\x9b\x53\x9e\x24\xe0\x69\x90\x24\x7d\x0a\x8b\xe4\x87\xdd\xc3\x84\xef\xe9\x7a\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x49\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x4d\x36\xb6\x9f\xea\x85\x4e\xde\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x5b\x92\x57\x0e\x1c\x5c\x31\x8f\x7d\x0d\x1e\xac\x30\x3b\x1f\xcb\x57\x5c\x33\x2e\x70\xc8\x28\x3e\x03\xbd\xc4\x23\x36\x28\xe5\x53\xb8\x82\xd0\x93\x45\x11\x90\x6d\x74\x88\x90\x99\x41\x39\x09\x6b\x58\x01\x37\x9a\xfe\x0b\x34\x1d\x03\x5e\x6b\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x10\x47\x8b\x28\xa1\x51\xa0\x33\xcf\x04\xce\xe6\x4d\x1c\xcf\xed\x7c\x8f\xba\xf3\x56\xa8\x3b\x6d\x75\x97\xd6\x89\xdb\x76\x74\xc5\x70\x4a\x7a\x34\xa0\x26\x34\xa0\x03\x8f\x77\xc1\x8a\x0a\x52\x6f\x08\xa3\x50\x3f\x77\x3d\x24\xd0\x1b\x40\x02\x6d\x72\xf8\x0a\xbc\x9f\xd2\xb1\xeb\x61\x8a\x3e\x74\x82\x29\xf2\x97\xe0\x5e\x21\xcf\xb4\x9f\xc7\x37\x46\x34\xa9\x0f\xec\x2d\x61\x89\x1a\xc4\x85\x75\xe4\xa6\x65\xb8\x44\xcb\xe8\xa2\xd3\xba\xbc\x2d\x4a\xd0\x7a\x2b\xb3\x16\x00\x50\xe3\xdd\xb5\x27\x70\x40\xed\xdb\xb0\x27\xe7\x66\x97\x59\x2d\xeb\x95\xc8\x0c\x33\x5b\xd6\x51\xb0\xd6\x4b\x72\xf1\xf4\xf0\xbe\x12\x5d\x8a\x5a\x62\x9b\x25\xbb\x0c\x9c\x0f\x9a\x08\x34\xe7\x49\xec\x40\x28\xfc\x6a\xf9\x0e\x7c\x26\x80\x5f\x20\xb7\x19\x50\xd3\x1b\xb4\xad\xa2\x20\xd8\xb2\x94\x16\xbf\x89\x30\xdc\x1d\x30\x9a\x5d\x58\x11\x3c\x27\xd9\xc4\x7e\xb0\x52\x16\x91\x65\xf3\xf7\x92\x31\x96\x56\x08\xac\xe6\xcd\xc3\x5c\x69\xf7\x5d\x31\xb8\x65\xa2\x47\x60\x1c\x14\x4d\x15\x2d\x0d\x9d\xc1\xd3\x27\xea\x0c\x11\x38\xec\x71\xa9\x97\xce\xcd\xae\x93\xa7\xae\x4a\x2c\x1b\x04\x83\xd5\x2a\xb7\x6d\x0f\x0e\x94\xe2\xcf\xe3\x0c\x0b\x9c\x24\x24\xa1\x32\x7d\xb1\x60\xe0\xd3\xb2\xbb\x56\x9f\x55\xc1\x8d\x89\x88\xe5\xe9\xc4\x90\xa2\x1b\x88\xad\x17\xa9\x38\x12\x39\x0b\xa1\xcd\x9e\x6b\x45\xf5\x73\xb8\x17\xc0\xaa\x14\xcd\xa1\x38\xe9\x14\x53\xc1\x88\x6c\x2d\x05\x49\xa2\x5c\x50\xb5\x18\xdb\xca\x9a\xdd\x0f\xdc\x9d\xfd\xf2\xd4\x7e\xb8\xdc\xc3\xed\xb2\xfa\x5d\x7f\xbe\x92\x67\x46\x04\x94\x09\x72\x05\x6f\x82\xea\xa1\x16\xb5\x81\xf8\x5a\x43\x10\xfe\x5c\xbb\xb6\xdb\x02\x87\xf1\xf3\x38\xc8\xa8\x1a\x47\x55\xe2\x58\x75\x58\x9b\x70\xa7\x96\x4d\xf2\x85\x91\x97\x5a\xbc\xc8\x2f\x50\x65\xc4\xa6\x4d\x98\xa6\xf5\x80\x03\x57\x30\xd8\x2b\x8b\x8d\x09\x52\xde\xad\x52\xd5\x32\x4e\x8b\xf5\xd3\x14\x7c\xb4\x64\xb0\x83\xe0\xab\x0e\x23\x0e\x3a\xd9\xd1\xb0\xf5\x41\x17\x22\xcf\x14\x9d\xd4\xa1\x6d\xd4\xee\xaa\x8e\x0e\x12\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x34\x62\x03\x89\x9e\x09\x62\xc4\x42\x48\x34\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x03\xdd\x30\x54\x2d\x55\x1c\x82\x3f\x31\x7a\x16\x38\xcb\x88\x18\x31\x9b\xc5\x01\x0e\x17\xce\x13\xd3\x7e\x5b\x88\xab\x5d\x03\x32\x8e\x70\x34\x7f\xa5\x3d\xc2\x90\x8c\x13\xcd\x49\xec\xf2\x85\xcb\xdb\xe3\xe6\x6d\x0c\xd6\x6b\x6c\xd6\xf9\xd4\x95\xcf\x3a\xb0\x9d\x24\x91\xe6\x28\xbe\x9a\x72\x46\x84\x1e\xb5\xa6\xe1\x27\xc2\x10\x9d\xba\x71\xd8\xd8\x1d\xf4\x0c\x9e\x29\x4d\xfa\x4f\x98\x26\x26\x01\xdf\x75\xed\x84\x40\x63\x7e\x1f\x31\xe3\xee\x66\x51\x29\x43\x95\x32\x2a\xe7\x9a\x53\xe7\xe0\x93\x04\x35\xa3\x2d\x71\x86\x3d\xad\x73\x9a\x87\xfa\xf5\xe5\x1c\xf4\x89\x0a\xce\x52\x48\x92\xb1\xb8\x4c\x6e\xf9\x24\x51\xfe\x78\x34\xa6\x38\xae\x94\x88\xe3\x58\x96\x8d\x9f\x46\xad\xa4\xbf\x96\xcc\x2e\x87\xa5\xac\xc0\x28\x80\x15\x82\x20\x4e\x57\x59\x6c\x99\xfc\xdb\xa7\x36\xd4\x53\x1b\x9a\xd7\x66\x1f\xd3\x1b\xfc\x21\x5e\x37\xc5\xa1\x6d\xfb\x77\x21\xd9\xee\x30\xd5\xe1\x8d\x73\x02\x5e\x26\x1d\xe0\x6d\xf3\x37\x5e\x22\x75\xa3\x4f\x70\x78\xc3\x04\x87\xce\x96\xda\x72\x6c\x76\xfb\xb1\x5d\x2b\x39\x60\x05\x98\x53\x53\x2f\x97\x44\x09\x1a\xc9\x5d\xf0\x07\x99\xe1\x8e\x51\x6d\xa0\x05\x66\x2b\xa4\x26\xfd\x82\x77\x42\x42\x9c\x98\xaf\xf3\x37\x11\x04\x3f\xc6\xfc\xb9\x66\xab\x93\x21\x9a\xc6\x25\xd7\x62\x8f\x20\x11\x95\xa4\x14\xc9\x42\x25\x62\x44\x5a\x63\x27\x1e\xb1\x39\x25\x02\x8b\x68\x0e\xd9\x8d\xc5\xc6\x98\x2c\x59\x03\x68\x64\x62\x19\x42\x6f\xd3\x1a\x9b\xde\x61\xdd\xab\x16\x26\x8f\x4f\x67\xf7\x5c\x8f\x24\x35\x9f\x78\x61\xc6\x4a\x19\xa1\x49\xae\xd3\xf6\x6f\x1b\x88\xef\x17\xfb\x45\x83\xf1\x7d\x30\x51\xf0\x45\xc7\x80\xfc\x82\x1a\xfa\xa0\xfc\x17\x0a\xca\x6f\x58\xe2\xf5\x02\xf3\x37\x32\xf9\xbd\x7e\xcc\xb0\xeb\xf9\x35\xe2\x86\x57\x05\x6d\xe5\x93\xf1\x8b\x1f\xbd\xc6\x39\x77\x3d\x81\x3f\x79\xa2\x30\x12\xb1\xd0\x74\x36\x21\x71\x0c\x9c\x56\x71\x5b\x29\xba\xa0\x1d\x67\x1e\xd0\x77\x2f\x96\x9a\xd8\x71\xc2\xd9\x4c\xd2\xd8\x80\xad\x64\x18\x2a\xb6\x86\xc6\x0b\x00\x17\x80\xfd\x4d\x12\x22\x9c\x57\x42\xa0\xaf\x25\x65\x16\x4d\xd1\xff\x16\x73\x22\xd9\x57\xca\x18\x0b\x30\x5b\xa0\x47\xc6\x9f\x13\x12\xcf\x60\x87\xaa\x83\x39\x44\x94\x1c\x20\xaa\xfc\x67\x02\xd0\x08\x78\xae\x46\x7a\xec\x10\x6b\x66\x34\x00\x62\xbf\x0d\x6a\xa2\xfb\x66\xbe\x39\x42\xe8\x9c\xa1\x29\x8e\xd4\x01\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\xf4\x31\xe3\x0d\x9d\x37\x9f\x0d\xc7\x1d\x34\xb9\x0e\x12\x8a\xb7\x8a\xad\x7b\xc2\xdb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xab\xad\xb3\x32\x95\x75\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x9d\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xa6\x4d\xcb\xf4\x8d\x47\x4e\x39\x33\x0e\xc2\xad\xe4\x4e\x3a\x63\x38\x59\xd3\xc6\x51\x5b\xb9\xba\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xca\x7c\x43\x79\x0f\xa3\x98\x64\x84\xc5\x84\x45\x0b\x20\x11\x06\xc8\x39\x82\xe1\x04\x61\xf8\x0e\x27\x47\xe8\xcc\xe4\xd7\x78\x09\xcf\x5e\xeb\x70\xa1\xa7\x98\xd1\xa9\xd6\x13\xc0\x08\x6b\x47\x39\x62\x66\x98\xce\x07\x12\x14\xed\xf7\x2b\xd6\xb4\x33\xfa\x06\xb9\xda\x12\x95\x98\x95\xbf\x47\xcb\x2f\x1c\xe8\x6d\xd9\xee\xe8\xe6\x5c\x0d\x02\x99\x4f\x0e\xe1\xdf\xa5\x84\x33\x07\xd4\x53\xa0\xc8\x90\x84\x80\x39\xd0\x7a\xbc\xe0\x62\x6c\x03\x96\xdb\x85\xdf\x6e\x45\x1e\x47\xd0\x47\x49\xa9\x49\x29\xa3\x69\x9e\x06\xce\x3b\x53\xb1\x20\xb2\xf6\x4b\x93\x89\x91\x69\x3d\x20\x72\xe0\xe5\x48\x5f\xae\x6c\x81\x66\xf4\x89\xb0\x11\xcb\x38\x65\xea\x08\x5d\x71\x45\x82\x12\x11\x06\x3a\x8a\x67\x8a\xa6\x06\xed\x54\x10\x7d\x0e\x0c\x28\x36\x00\x4d\xce\xb1\x3a\x40\x71\x0e\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xec\x0c\xc4\x47\x8b\x11\x33\x37\xdd\x14\xd3\x24\x17\xc4\xca\xac\xd8\xe4\xc5\x14\x43\x2e\x46\x66\x91\xd0\x82\x49\xa4\x74\x36\x57\x7a\x8b\xb4\x8c\x67\xfd\x8d\x73\xcd\x8d\xf8\x88\x4d\x08\xc2\x28\xe3\x92\x2a\xfa\xe4\xfd\x97\x74\x8a\xb0\x94\x60\x41\x39\x42\x67\x25\xfb\x3f\x95\xa0\x7a\xb7\xc5\xd5\x52\x36\xb6\xb6\xe7\xf6\x7c\x9c\xad\x37\xb2\xd4\x8b\x5d\x65\x3c\x91\x3c\xc9\x55\xe8\x82\x6d\xde\xdb\xc2\x34\xee\x80\xfb\xc1\x40\xcc\xa7\x23\xe6\xe8\x5a\x1e\xa1\x81\x44\x92\xeb\x5d\x92\x66\x2b\x23\x41\x15\x11\xd4\xa0\x38\x11\x65\x36\xc1\x9f\x53\x7f\x06\x52\x2c\x1e\xb5\x08\x15\x5a\xe0\x0d\xa6\x68\xc9\xda\x31\x31\x12\x12\xc0\x5a\x85\xdb\x01\xa6\x7f\xc4\x38\x3b\x64\x64\x86\x57\xed\xc8\x88\x95\xb6\x04\x7d\x4d\xa7\x85\x42\xda\xe6\x73\x0c\xd6\x6e\x0c\x91\x4f\x6d\xbb\x64\x3a\x6e\xdb\xa4\x69\xc2\xf1\x0a\xb7\xf1\xb4\x38\xf4\xe8\xef\x7c\x62\xc6\xa8\xf5\x7e\xae\x40\x0a\xd4\xea\xd5\x94\x0b\x32\xc7\x2c\x3e\x70\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\xac\x75\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x61\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x1b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x0d\x04\xbf\x24\x5f\x2b\xb9\x2a\x70\xfb\x2d\xda\x6a\x9a\x28\xbc\xaa\xcc\xc8\x1a\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x34\x62\xe7\xea\x2b\xa9\x45\x74\xce\x66\xfa\xa2\x89\x9f\xa8\x2c\x8a\x9c\x44\x9c\xc9\x3c\x25\xc2\x76\xa1\x6f\x64\x4d\x91\xb6\x40\x00\x76\x32\x94\x1e\x9b\xde\xfb\x27\x9c\xd0\xd8\x15\xe2\xd1\x3f\x9a\x33\xa7\x47\x29\x9d\x47\xb1\x21\x24\xcc\x6e\x6e\xac\xd7\xea\xcd\xc4\xfa\x1f\x43\xc9\x1d\xa5\x85\x90\x8f\xad\xad\xfe\xb8\x2a\xe2\xdb\x55\x5f\x22\xde\x4f\x6a\x93\x42\xcb\x05\x23\xbb\x0a\x67\xab\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x16\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbe\xb5\x67\x5b\x96\x89\x90\x11\x4e\xea\x3b\xbc\xc4\xde\x6c\xde\x5f\xae\x04\xd8\xe3\x66\xda\x5e\x9a\xf4\x1b\xf1\x24\x59\xa7\x84\x49\x65\xe6\xa7\xc5\xe7\xcb\x47\x54\xf4\xa3\x37\xc0\xed\x05\x9c\x1a\x73\x79\xe3\xc4\x9a\x52\xa4\xb2\xbb\x14\xbe\x64\xd4\xb0\x85\x65\xad\x23\xc6\xa7\x50\xe4\x26\x69\x8b\xea\xca\x04\x4f\xe9\x3a\x28\xcb\x26\xd0\xe9\xd6\xd9\xc5\x57\x58\x19\x9c\xf5\x1c\x44\x53\x43\x5e\xb6\x47\xc8\xd7\xc3\x56\xdc\x5c\x72\x86\x52\x9c\x6d\xb4\xe0\xab\xbc\x42\x03\x94\x1a\x97\x9c\x5d\x3d\xc0\x5b\x24\x50\x2f\x06\x16\xf9\x19\x2f\x8a\xd4\xe8\x36\xfc\x5c\xb6\x16\x39\x3c\xe8\xd7\xcf\xd9\x94\xaf\x71\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x5d\xce\xe3\x69\x13\x51\xaf\x7d\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x9d\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf9\x52\x5d\x96\xe8\x70\xe7\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\x69\x6e\xf5\x15\xd6\xcc\x1e\x92\x4e\x8b\xb5\x25\x76\xc3\x7a\x38\xc0\xae\x47\x8f\xfa\xdb\x7c\x42\x57\x16\x39\xe8\xbe\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x9f\x37\x18\x38\x5d\x82\x98\x0f\xa8\x32\xa1\xf2\x4e\x7a\xca\x05\x0d\x0a\x83\x3a\x19\x09\x51\x28\x50\x12\x3a\x79\x02\x85\x1e\x4c\x8b\x73\xfe\x6c\xa2\xd3\x05\xd5\x3c\xcb\x08\xab\x0a\xcc\x3d\x9a\x17\x50\x6b\x2d\x31\xc6\x26\xff\x01\x37\x31\x83\xd8\xd6\x3e\x2e\x46\xd5\xb2\xa5\xbb\x28\xf1\xd4\x3d\xff\xce\xf5\x7a\xaf\xbf\xa8\xef\x4d\xe3\x08\xef\xcb\xad\xaf\x3d\x3a\x2f\xe5\xaf\x1f\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\x67\x3f\x1c\x3f\x9c\x23\xa2\x22\x94\xd0\x47\x32\x62\x91\x7c\x3a\xd0\xe2\xf1\x3f\x72\xa2\xf4\xcf\x2d\x1e\x01\x9a\x12\x26\x81\x13\x50\x55\xc3\x1e\x6a\x5e\x48\xb7\x30\xfa\xbf\x67\xe5\xef\x97\x90\x7c\x2d\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x03\xc5\x18\x5b\xe4\xb0\xa9\x1a\xe6\x06\xe9\x42\xec\xef\x39\x5b\x53\xe8\x3a\x2d\x3e\x0a\x46\xd1\x22\xd3\xa5\x19\x06\xac\xeb\xf5\xf2\x90\xcc\x37\x8d\xad\xaf\x62\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x34\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\x9a\xb8\x84\xc0\x2c\x9a\x6f\x6b\x42\xa6\xd3\x31\x49\xd6\x91\x44\xcf\xa7\xc3\x44\x6a\xfa\x8e\x1e\x5b\x4e\xe7\x26\x35\x1b\x8b\xc9\xd8\x4a\xb4\xa6\xee\x13\x2a\x4c\xd0\x38\x31\x15\xe5\x08\x02\x1f\x65\x35\x7b\xcc\x00\x44\xe8\x5d\xb4\x92\xba\x71\x51\x9a\xb4\x0d\x1f\x92\x0d\xbd\x20\xac\x46\x4c\xe4\x0c\x8a\x4d\xf8\x88\x05\x8c\x0a\xbc\xf0\xc8\xf9\x0f\xac\x37\x67\xa6\xd9\x84\x81\xe3\x36\x2f\x6b\xfd\x8c\xe7\x12\x6c\x35\x29\x51\xfa\x82\xfa\x1a\xea\xc0\x9a\x90\xa1\x03\x94\x09\x9a\x82\xb9\x55\x7e\xd3\xb0\x75\xa7\x58\xe1\x84\xcf\x06\x42\xd1\x29\x8e\xd4\x3d\xde\x4a\x03\xc7\xb6\x99\x4d\xc3\x4f\xdd\x30\xd0\xf9\x99\x5e\xfc\x19\x61\x44\xc0\x44\xb5\x4e\xde\x7c\x84\xe1\xc9\x46\x9c\x1b\xac\x6c\xd6\x30\x2a\xbd\xc5\x02\xe7\x8a\xa7\x5a\xbf\xc5\x49\xb2\x38\x30\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x97\xbb\xc9\x2e\xee\x29\x8e\xe6\xe4\x0e\xaa\x22\x37\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\x27\xe8\x7f\x8a\x39\x9e\x0e\x4e\xbf\x1f\x8e\xcf\xce\xef\x06\xdf\x5d\x0c\xcf\x82\xf9\xd8\x27\x97\xe7\x77\x77\xf5\x5f\xbf\x3f\xbf\xaf\xff\x78\x73\x7d\xf3\x70\x31\xb8\x6f\x6a\xe5\xe2\xfa\xfa\x87\x87\x9b\xf1\xc7\xc1\xf9\xc5\xc3\xed\xb0\xe1\xd3\x87\xfb\xf6\x87\x77\x3f\x9c\xdf\xdc\x0c\xcf\xdc\xaa\xfc\x2d\x38\x5d\x60\x3d\x86\xd4\x8b\xe6\x69\x54\x0f\xe0\x21\x2a\xbf\x78\x82\x1e\xaa\xa5\x0f\x6c\x2c\xb2\xc1\xb1\x78\xc6\x52\xf3\x30\x08\x85\x1f\x31\xe4\x3e\xd7\x8b\xd2\xf6\xa9\x09\xd7\x89\xe6\x04\x25\x9c\x3f\xe6\x99\x65\x6d\x26\x3e\x8c\x71\x63\xf8\x21\x32\x68\xed\xfb\xf3\xfb\x93\x7a\x09\x06\xdf\x58\x80\x98\xe5\xce\x00\x8c\x0b\x3b\x76\x0a\xb6\x14\x07\xcd\x5f\x58\x6f\x83\x1e\xfc\xce\x2c\xeb\xc7\xb4\x86\x99\xaa\x74\x13\xc7\xb6\xe8\xaf\x9b\x58\xd0\x70\x79\x5f\x97\xad\xa6\x5f\x0e\x53\x7b\x0a\x4d\x48\x84\x73\x13\xd4\xa4\xef\x29\x21\xb8\x08\x07\x5c\xd0\xc3\xee\x1a\xb5\x74\xd4\xd8\x60\x65\xcf\xf4\xc4\xe5\x23\xcd\x32\x12\x7f\xa8\xcb\x2f\xe5\xea\xb0\xb6\x26\x39\x9f\xa2\xe0\x4c\x6a\xbd\x1e\x74\x7e\x57\x38\x65\xbe\xf0\x9e\x34\x08\xdc\x28\x42\x59\x00\xc8\x59\xdf\x09\xbe\xb0\x05\x05\xd7\x18\x56\xe8\x99\x40\x4a\x75\x6e\x2b\x47\x19\xdd\x5b\x9f\x6d\xe8\xce\xd8\xb4\x5d\x1d\xb8\x52\xaa\x75\x2b\x33\xde\x85\xc0\xad\xbf\x97\xa4\x89\x11\x6f\x91\x17\x7b\x66\x1a\x05\xee\xec\x62\xde\x60\xc4\x2d\xc1\x0d\xee\x36\x68\xb0\x90\x2f\x91\xaf\xea\x37\xd2\x8a\xcb\x42\xb3\xed\x2e\xe3\x71\x58\x20\x25\x80\xeb\xee\x03\x2b\x81\x20\xaf\x5c\xab\x7b\x1e\xe3\x85\x26\x0e\x88\x35\x96\x79\x96\x71\xa1\x50\x4b\x1b\xc6\x8d\x6f\xc6\x07\x77\x8e\x9d\x87\xe7\x71\xd0\x88\x96\x30\x64\x43\x2d\x8d\x6e\xf0\x08\x76\x5d\x0b\xc6\x11\x06\xc8\x82\x22\xe8\xeb\x1e\xa5\x25\x95\xba\x44\xa1\x4d\xc2\xef\x36\x19\x06\x99\xbe\xe0\xbb\x96\xe1\x6b\xea\xfd\xda\xb5\xd0\xb8\xe5\x09\x99\xaa\x71\xa3\xd7\x67\x89\x81\x53\xb7\xc8\xda\x10\x65\xe8\x6c\xbe\x83\x16\xbb\x6b\x09\x7f\xb4\x81\x3d\x5a\x35\x08\x2c\x04\x82\x73\x65\xe4\xd3\x42\x87\x41\x6e\x35\xc1\xbc\x60\x3b\xb5\xb9\x60\x5e\x08\xd4\x32\xbf\xf1\x87\xfa\xb4\xa9\xa3\x11\x1b\x42\x00\x45\xa1\x88\xb8\x14\x31\xd0\x02\x56\xca\xff\xa5\xa2\xa3\xaf\x1a\xad\xd9\x8e\xf0\x5a\xd0\xbd\xad\x97\x9f\x2c\x50\x51\x58\xb6\xf4\x5d\x97\xd3\x63\xac\xde\x4e\x04\x34\x13\xb6\x65\xdc\x15\xc9\xac\x65\xde\xcc\xb3\x88\xf4\x81\xf8\x30\xdd\xd5\x11\xfa\xc9\x59\x7e\x20\xf0\xb5\xa8\xc9\x6c\x63\x37\x12\xbc\x70\xa0\x90\x4d\x0b\xbb\x0b\x9c\xc5\x5d\x87\xc2\x2e\x5f\x60\x0f\xe8\xd4\xb0\xca\x25\x05\x9c\x31\x63\x91\x5d\x23\xed\xe3\xd4\x7f\x74\x47\x96\x47\x05\x7c\x84\x32\x9c\x36\xb2\x0a\x84\x0e\x96\x2c\xfe\x97\xd9\x2c\x93\x89\xea\x0a\x6b\xd9\xb2\x88\xd6\x83\xaa\xcf\x0f\x78\x00\x4d\xa2\x2a\x9a\xd2\x24\x01\x39\xe0\x08\x0d\xa0\x3c\x30\x24\x72\xea\xab\xd0\x05\x58\xd0\x19\xe3\xab\x72\xcc\x5a\x88\x29\x0a\x88\xe9\xae\x9d\x98\x24\x50\x53\x91\xc7\xbf\x1b\x8a\xda\x01\xa6\x8b\xe6\x2d\xb8\x8e\x88\xdd\x1d\xc9\x65\x0d\xe5\xfd\x2d\xa2\xa3\x6b\xc3\x0d\x3e\xfc\x57\xf3\xd0\x3f\xe5\x58\x60\xa6\x20\xe6\xd7\x8a\xee\x82\x04\xa9\x47\xe4\x33\xc4\x67\x30\x63\x08\x86\x9f\xc2\xcd\x75\x2e\x7f\x08\xf7\x42\x34\x3e\x40\xf4\x88\x1c\x41\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\x56\x8b\x65\x3c\x42\x83\x44\x72\xfb\x05\x61\x51\x02\xe5\xb8\x83\xf0\x64\x4f\xf9\xd6\xad\x34\x59\x80\x82\x02\x5b\x59\x34\xcf\xed\x83\xe0\x43\x28\x32\x06\x3e\xf1\x04\x4e\x7a\xf1\xfb\xef\x79\x66\xbc\x15\x6d\x71\x12\x2f\x58\xce\xa1\x76\x0d\xbd\xd8\x26\x99\x52\x81\xcb\x36\x08\xde\x80\x8d\x29\x62\x4c\x03\x04\x16\xf4\x35\x56\x28\x21\x58\x2a\xf4\x87\x6f\xd6\x8a\x0d\x71\x13\x2c\xb8\xab\x3d\xbe\x45\xa2\x98\x4b\x35\x08\x85\x3b\xdf\x31\xd4\x8e\xc3\x42\x21\x8c\x18\x79\x0e\x23\x4b\x39\x04\x03\xbb\x82\x70\x24\xc8\x6d\x35\xf1\x64\x26\x33\x1f\xb2\x35\x8c\xca\xd4\xc2\x47\x1c\xdc\xb1\x75\x9f\xda\x61\x35\x50\x96\x55\x9e\x6c\x88\x27\x40\x72\x15\x41\xff\x73\xac\x46\xcc\x72\x56\x17\x36\x12\xa4\x79\x0d\x92\xa4\x1c\x68\x8f\x21\x97\x84\xe9\x09\x43\x7d\xf6\x23\xbf\x40\x57\xa0\x7e\xf9\x68\xe7\x92\x9d\xae\x38\x2c\x26\x1e\xcf\xe3\x1d\x85\x6d\x37\x4a\x3b\x4d\xf6\xe5\x57\x14\x82\x1b\xba\xbf\x30\x85\xf2\x3b\x08\xc3\xa4\x69\xc8\x2b\x0e\x56\xdd\xa6\xbf\x44\x36\xde\x75\x07\xdd\x45\xe5\x66\xfb\x38\x5c\xb3\xcf\xbc\xc1\xdc\xde\xb2\xb9\x81\x6c\xb1\x8d\x02\xee\xc3\xee\x5f\xcb\xe3\x5b\x1a\xfa\x79\x0c\x49\x7f\xab\xb9\x60\x91\x44\xe7\x58\x87\x89\xbd\x8e\x83\x9c\x9e\x20\x85\x00\x82\xff\x1c\xe3\xb3\x6f\xb6\x78\x5e\xb3\xf7\x3d\xfd\x83\x62\xfe\x6e\x2a\x3e\x08\xae\x3e\xf1\x76\x61\x6f\x10\xff\x1d\x47\x10\xe9\x0f\x3d\xb9\x1c\x83\x3a\x20\x93\x83\xb1\xc6\x60\xcc\x6f\x14\x0f\x33\xc1\x23\x22\xe5\x11\x1a\xc2\x45\x63\xff\x89\xf0\xd4\x39\x24\x82\x97\x47\x4c\x6b\x26\x0e\xbf\x25\x68\xbf\x4c\xe2\x4d\x27\xc0\x80\xc1\x6d\xe5\xcb\x49\x57\xd7\x28\x69\xd3\x26\x1c\x16\x1d\xb4\x01\x65\x0d\xd0\x70\x76\x82\x62\x1e\x3d\x12\x71\x2c\x48\x4c\xe5\x09\xf8\xd6\x55\xab\x53\x2f\xd5\xda\xf6\xd6\x92\x46\x5b\xa0\xc0\x8a\xa4\xb8\x53\xd3\xbf\x0d\xb0\x76\xe1\xb5\x07\x88\x4e\x41\x9d\x70\x39\x19\x26\x08\xd9\xc1\xdd\x10\xa6\xc4\x02\xe2\xfa\xbd\x29\xab\xb2\x10\x4e\xd3\xd0\x42\x5b\x5b\x36\x91\xd8\x45\x0c\xce\x86\xd3\xbe\x9f\x13\x49\x5c\xc0\x81\x99\x94\xe2\x36\x96\xd9\xb0\x8b\x0c\xab\xb9\x84\xd4\xd5\xf2\x1a\x58\xa5\x0b\x3e\xd5\x2b\x84\x33\x88\x57\x30\x56\x8a\xe2\x23\x9f\x60\x29\x15\x4d\x92\x11\x63\x84\xc4\x12\x41\x96\xe9\x57\x8d\x19\xf2\xfa\xd3\x03\x84\xe3\x18\xfd\xef\xaf\x3f\x5e\xfc\x7c\x3f\x1c\x9f\x5f\x81\xd1\xfa\xfc\x62\xf8\xcd\x81\xff\xf1\xfa\xe1\xde\xff\x6a\x2c\x2c\x4f\x44\xa0\x14\x3f\x82\x8a\xc7\x24\xb1\xc9\x13\x64\xc4\xc2\x91\x3a\xec\x00\xfd\x44\x12\x17\xe9\x6a\xc5\x14\x0f\xa1\x68\xf7\xb0\xb5\x62\xb1\xb1\xf9\xad\xa1\xfc\xde\xfa\x4f\x96\xd3\xa0\x23\x1e\xdf\x85\x13\x03\x21\x47\x06\xcb\x20\x99\xdc\xea\xbe\x05\xc1\x11\x36\xa3\xac\x2d\x1e\x8f\xb0\xa7\x97\x14\xe2\x7f\x20\x8b\x1f\xb5\x7a\x7d\x83\xa9\xe8\x4c\x7b\xcd\x68\x40\xee\xc4\x68\x3d\x1d\xcb\xea\xa1\x92\x46\x16\x36\xd9\x36\xad\x31\x9f\x4d\x40\x70\x6f\x3e\x5d\x0b\x2f\x45\x3e\x2b\xe1\x50\x2a\x7c\x3e\x87\x83\x72\xf2\x17\x4d\x41\x83\x23\x76\x7f\x7d\x76\x7d\x82\x48\x82\x27\x1c\x42\xf9\x6d\x48\x90\x6b\xc2\x2e\x58\xc4\xd3\xa0\xa1\x12\x42\xc9\x01\xca\x0a\x84\x92\xd0\x88\x76\x64\xda\x58\x81\x54\x92\x71\x51\xc7\xf7\xd8\xad\x0a\x68\x27\x7b\xc3\x45\x97\xeb\x5f\xbf\x06\x4b\xc7\x33\xad\xc8\x55\x38\xaf\xbd\x9b\xa7\x04\x9b\x5a\xfa\xc6\x2d\x64\x6d\xf9\x36\x80\x35\x49\x4a\xf5\x14\xf5\xc1\x91\x47\xd6\x05\x5f\xbc\xc9\x19\xfa\xe1\x2f\x12\x4d\x72\x35\x62\xe5\x36\x38\x43\x83\x9f\xee\xd0\x77\x58\x45\xf3\x6f\x46\xec\x5a\xab\x99\x3f\xfc\xa5\x05\x4a\x69\x6d\x74\x42\xbd\x26\x67\x58\xe1\x0b\x8e\x63\xca\x66\x4d\xd0\x84\x45\xfd\x98\xe1\xfd\xe0\x04\x5d\x5b\x1d\xbe\xc8\x04\xf1\x29\xc1\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x65\xf8\x36\xa3\x99\xc1\x85\x35\x62\xf7\x06\x93\x51\x73\x55\xaa\x50\xc6\x6d\x0d\x23\xad\x95\x19\xb4\x4a\xec\x32\xa4\x48\xb2\x40\x7a\x75\x80\x8c\xfd\x66\x58\x79\x0c\xe4\x99\x3a\xb3\x1f\x31\x50\xd0\x7d\x6e\x4a\xc2\x23\x9c\x40\x4c\xde\x61\x60\xd3\xd3\x6a\x3b\xcf\x21\x3f\xdc\x14\x3d\x5f\x94\x43\x67\x3d\x64\x81\x17\xca\xc2\x8d\x02\x03\x00\xec\xa3\xf5\xc6\xa6\x5c\x73\x1c\x83\xc5\x06\xc6\xb7\xc4\xac\x8e\xfe\xd0\x63\xb3\x99\x65\xd1\x4f\x7d\xda\x16\xcf\x99\xc3\x22\x89\xc0\x7c\xcf\x16\x10\xbe\x0d\x45\x47\x38\x84\x7e\x14\xdc\xd9\x12\x65\x6d\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\x58\xcf\x15\xcb\x33\x1b\xd8\x68\x65\xfd\x4c\x90\x43\x9f\x01\x15\x97\xd6\x54\xdf\xb0\x47\xe8\x36\x54\xaf\x63\x1e\xe5\xa9\x43\x56\x86\xec\xa9\xa2\xac\x7c\x49\xe2\x31\x17\xfb\x2a\x8a\x07\x94\x16\x45\x20\x7d\xbc\xb3\x7e\x6c\x08\x66\x10\x7e\x5a\x97\xd4\xdb\x05\x5f\xe0\x1d\xdb\x45\xad\x99\x86\xc6\x59\xb9\xa5\x52\x6b\x5b\xe7\x25\x5e\x15\xe8\xaf\x5c\x80\xb0\x45\x3e\x67\x1c\x8c\xdc\x26\x3d\x8b\xc7\x5f\x49\x74\x7e\xa3\x25\x20\xad\xf1\xfa\x33\x98\x4b\x65\x82\xcb\x20\x5d\xc7\x7c\x6d\xd2\x05\x0e\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x9d\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x3a\xa7\xda\x62\x17\xec\x01\x6c\x5b\xfe\x4d\x50\x1e\x83\xd8\x21\x3c\xb3\x27\x5c\x86\x27\x13\x95\x8e\x66\x11\x49\x20\x89\x3a\x28\x73\x08\x2f\xec\x5a\x89\xfe\x7f\x2d\x01\x2b\x1b\xeb\xa3\xb2\x59\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xf0\x33\xd6\x9c\xfb\xc0\xc2\x68\x99\x8f\x8c\xe7\x65\x8a\x23\x83\x0a\x2a\xd1\xd7\x9f\x4f\xf4\x6f\x07\x68\x71\x02\x41\xa4\x07\xe8\xd7\x13\x8b\x96\x83\x85\x1a\xeb\x9f\xbe\x71\xb2\xb6\x6d\x02\x06\x4d\x25\xfa\xea\xf8\x09\x0b\x53\x33\xfa\xd8\x8c\xe8\x2b\xcb\x59\x7d\x5d\xbc\x50\x36\x4f\x38\x7f\xb4\x01\xb6\xb5\x0f\x8f\x1d\xf0\x1a\x90\xb7\xf7\x9b\x98\xad\xf7\x89\xf9\x0a\x1d\xc2\x0b\x04\x1d\x65\x13\x74\xf4\x77\xc9\x19\x3a\x5a\xe0\x34\xb1\xbf\xba\xa7\x36\xfe\x17\x4b\x9b\x13\x17\xfb\x20\x9f\x64\x61\x2c\xa5\xdf\x25\x7c\x02\xb3\xba\x74\x33\x35\x11\xb4\x30\xd0\xe2\xf6\x29\x2e\x2c\x3b\x11\x97\x88\x0a\xf8\x41\x29\x57\xe6\x15\xe0\x71\x4d\xb3\xfa\xec\x87\xf4\xdf\xc6\x2f\x0c\x8b\xe2\x92\xf8\x8c\x71\xd8\x47\xaf\xe9\x46\x3f\xa3\xaf\x2d\x0b\xfa\x46\xdf\x31\x36\x5c\xd9\x2c\x43\x53\x07\x0b\xdf\xc1\xcf\x41\x07\x94\x21\x93\x96\xb9\xe4\xcb\x5f\x8f\x8f\x8e\x8e\xfc\xd7\x90\xb5\xfe\xff\x22\xaa\x24\x49\xa6\xa6\x25\x77\x83\x2d\x46\xec\xd2\x15\x5e\x70\xc6\xeb\x02\xd2\x31\x13\x5c\xf1\x88\x27\xe8\xb0\x30\xe8\xc6\x3c\x92\xe8\xdf\xb5\x58\x1b\x2c\x25\xfc\xa8\xf5\xb8\x16\x18\x58\x83\xf4\xfc\x4a\x87\xca\x1a\xc4\xab\xc7\x2a\x44\x71\xf3\x8a\x2d\x96\x61\x15\x0f\xa0\x05\x4d\x39\xc7\x16\xe9\x4d\x08\xfd\x32\xf9\xac\xe0\x51\x0b\x90\x5e\x63\x28\x7b\xf3\x4d\x59\x63\xb7\x05\x9e\x9e\x21\xeb\x96\x05\xb0\x78\x57\x96\x33\x98\x79\x1e\x84\xee\x13\x7d\xb9\xb0\xb0\x14\x80\xcc\xd3\x14\x8b\xc5\x71\x71\xda\xea\xc4\x59\x20\xad\x01\x8f\x49\xdc\x02\x80\x0b\x37\xb1\x47\xcb\x46\x31\x58\xf1\xd2\xdd\x68\xfe\xec\x46\x50\xcb\x30\x40\x2c\x20\x2c\xe2\xb1\xa5\xeb\x22\xfb\xb4\x2c\xb1\xf8\x77\xea\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\xb7\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x86\x7b\xf4\xfc\xfa\xce\x7d\xd3\xfd\xd2\x85\x75\x28\x8b\xec\x38\x09\xf1\xf1\xd8\x0c\x09\xfc\x5c\x5c\xbf\x10\xdb\x61\xac\x33\xb9\xcf\xcd\x35\xff\x3e\xe5\x37\x34\xd1\xb7\x16\xd0\xf8\xd1\x88\x95\x7e\x3e\x40\x24\xa1\x29\x65\x3e\xb6\xce\x30\x77\x3e\x35\xd2\xf3\x23\x55\x7a\xcb\x64\xfc\xa8\x39\x98\xc3\x75\x0a\x54\xaa\x01\x5b\x38\xd2\xf1\x8e\x29\x6b\x81\xc8\xa5\x1e\x57\xa1\xa3\x6b\x61\x56\x37\x71\x68\x05\x52\x1a\x10\x1e\x9c\xdf\x11\xd3\xad\xb9\xb3\x54\x84\x0b\x07\xed\x05\xcd\x1d\x3a\x40\xfc\x80\x03\x40\x1f\xa5\x98\x5f\x2f\xff\x36\x08\x28\x43\x96\xa7\xdb\x26\x9b\xd8\xf0\xe1\xb7\x32\xd3\xdd\x08\xe2\x6e\x2a\x9b\xb8\x44\x58\x9e\xba\x03\xb5\x06\xc5\x0d\xad\xf8\x13\x93\x28\xc1\x06\xa9\x46\x37\x04\x91\x8f\x07\xc6\x41\x9a\x05\x7d\x99\xeb\xc5\x74\x63\x6a\xec\x24\x84\x7d\x6d\xfe\xfd\x0d\xb2\x77\xc3\xb7\x07\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\x3e\x00\x65\xb4\xd6\x1f\x96\xc0\x04\x60\xd4\x4d\x14\xa0\x99\xf0\x56\xb9\x46\x10\x05\x3b\x66\x3c\x26\xdb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x96\x4e\x4b\xa4\x5c\xd3\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x2d\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x6d\x37\x21\x6a\x40\x2b\xea\x74\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x9c\xb3\x29\x3f\xb1\x3a\xd5\x05\x65\x8f\x86\xe2\x5f\x6a\x8f\x0c\x20\x36\x89\x4b\x30\x6e\xae\x4a\x2b\xcc\xe1\x10\x51\x16\x25\x39\x5c\x7c\x52\xe1\xe8\xd1\x80\x7a\xb7\x19\x7d\xf5\x37\xe3\xd5\xc9\x94\x2d\x12\x53\x9e\x24\xb6\xdb\xe2\x02\x2d\xca\x58\x3f\x51\x8c\x30\x7a\xb8\x3d\x6f\xee\xfb\x91\xd6\x9d\x39\xcd\xb7\x67\x99\x40\xe0\x7f\x7e\xa0\x6b\xc5\x5d\x56\x60\xf1\x48\x89\xd4\xbd\x71\xa9\x0d\x74\x55\x13\xe9\x27\xac\xc8\xb6\x99\x50\x06\x03\x6c\x8d\x48\xbd\x1a\xb8\xda\x52\xeb\xf1\x96\xc8\x64\x05\xaa\x18\x84\x06\xb5\x43\xa4\x85\xc1\x5a\xf0\x70\x0d\xec\x06\x78\xbf\xdb\x7c\x2a\xef\xae\x98\xce\xf2\x61\x26\x84\xac\x81\x36\x70\xa7\x5f\xef\x38\xc8\xd2\xab\xcb\xc6\xf8\x8c\x4d\xf5\x85\x3a\xe8\x6f\x6c\x25\xbb\x75\x98\xad\x23\x47\x23\x5e\x4b\x9f\x23\xe2\x47\xe2\xc2\x70\xbc\x2c\xe6\xfa\x9d\x81\x6f\x8b\x97\x8a\x3b\x78\x0b\x6d\x03\xe1\x07\x62\xeb\x96\x61\x13\x5a\xfc\x1a\xa7\x9d\x01\xe5\x8a\x8e\xcf\xec\xc7\x97\x35\x78\x39\xcf\x8a\x2e\x21\x8b\xcf\x03\xa7\xa4\x98\xe9\x93\xed\x7a\x6d\x31\x42\x1a\x89\x70\xa3\x21\x3d\x64\x1b\x0d\xc8\xf4\xd8\xb1\xee\xa1\xed\xca\xb5\xf2\x6c\xec\xf0\x38\x31\x76\x26\x35\x07\x13\x44\x51\x2f\x48\x73\xb4\xb2\x29\xc2\xd4\x16\x4a\xf0\xff\xc7\xde\xb7\x35\xb7\x8d\x24\xe9\xbe\xcf\xaf\xa8\x88\x7d\xb0\x7d\x0e\x45\x4d\xf7\xc4\x6e\xf4\x3a\x62\x1f\x68\x59\x9e\xd6\xb4\x2d\x79\x24\xb9\xbb\xf7\x2c\x37\xe8\x22\x50\x24\x31\x02\xab\x60\x14\x20\x99\xb3\x33\xff\xfd\x44\x65\x66\x5d\x70\x25\x40\x4a\xb6\x67\xb6\x1f\x76\xa7\x2d\x02\x85\xba\x57\x56\xe6\x97\xdf\x97\xaf\xf1\x82\xa4\x45\xa1\x5f\xb4\x8c\xb0\xcf\x79\x38\x62\x84\x0f\xd0\x64\x0d\xe3\x9e\x60\x7e\xf7\xad\x34\x57\xcb\x2a\xb9\xa8\x3b\x95\x9d\xba\x71\xc0\x9c\xe7\x13\x31\x22\x95\x23\x13\x77\x6c\xd6\x4a\x37\x67\xca\x91\xda\xdc\x97\x7c\xeb\x18\x01\xac\x42\x30\xe5\x77\x61\xe5\x96\x02\x78\x71\xbb\xeb\x70\xb4\x08\x77\x58\x05\x12\xc5\xec\xaa\xc1\x5c\xce\xec\x23\x9e\xdd\xcb\x5c\xcc\x72\x34\xc0\x01\x1f\x8a\x68\x68\xb8\x5f\x71\xdf\xeb\xd4\xb8\x8e\x46\x8c\x4d\xde\xac\xeb\x88\x9b\xfb\x9d\x3b\x8d\x48\x31\xc8\x71\x78\xf6\xaa\x35\x91\x7c\xfe\x11\x1f\xbf\xb1\x4d\xac\x29\xf1\xb7\x7d\x78\xff\x5d\xca\x32\x46\x50\x41\xa1\xf8\x3f\x62\x48\xd3\x9d\x9f\xa6\x9e\x24\xae\xf6\xb1\xe6\x6a\x2d\x8e\xda\x8d\x13\xbe\x5d\xe4\xaa\x5b\xce\x6a\x40\x37\xd9\x22\x2a\xfe\x9d\x0d\xca\x5b\xec\xd8\xa7\x92\xa7\x78\xb8\x49\x9a\x8e\xb6\xda\x60\x2a\x7f\xff\x6f\x6c\x06\xa7\x0f\x7b\x07\xfb\x22\x04\xf8\xa1\xb4\x42\xb1\x64\x9b\x89\x5c\x2b\xc9\x3b\x75\xdd\xee\x7e\xd0\x0b\xd2\xa6\x59\xf0\x28\x52\x65\x53\x87\x66\x44\x4b\x5a\x4a\x0b\x1b\xc5\xd9\x5d\xb9\x14\xb9\x14\xa8\x5d\x07\xcf\x31\xfb\xdc\xa0\xea\x2a\x5e\x16\x9b\xef\x17\x51\x9a\x0c\x16\xcc\x81\xec\xa2\x99\x79\xed\x0c\xdf\xea\x6b\x40\xa5\xfc\x4a\xd5\x25\xc3\xdf\x18\xfe\x36\x65\xaf\x78\x74\x27\x64\xcc\xb2\xb4\x5c\x27\x44\x26\x00\x27\x14\x6c\x97\x81\x7b\xb6\xda\x30\xb4\x2d\xb0\x7c\x73\x0c\xcd\xe5\x96\xdf\x21\x89\x2d\x19\x91\x11\x4f\x3b\xa9\xa8\x9c\x59\xbd\x48\x9a\x73\x77\xef\x68\xb9\xf3\xb0\x59\x4c\x7d\xee\xe9\x12\x73\x2b\x1e\x36\x8a\x22\xd2\x15\xab\x7e\xc4\xc2\x75\xb3\xb5\xc1\xf9\x62\xf3\xf2\x9d\x8a\x21\x55\x06\x57\x2f\xb8\x7b\x81\x88\xb9\x94\x8c\x03\x6d\xcc\x33\xcd\xca\xcc\xda\x67\xe0\x87\x4c\x21\x2a\x8c\x43\x60\x7e\xc8\x12\x73\x4b\xdb\x88\xb9\x04\xa4\x2d\x73\xcd\x6b\x88\x5d\x31\xe1\x01\x31\x6d\x5b\xc3\x0a\x49\x13\x8e\x8b\x71\x36\x78\x9c\xf7\xcc\xd3\x81\x28\xe2\x62\x23\xe4\xe2\x00\x3a\xe1\xe1\x83\x56\x41\x0c\x93\x19\xec\xfc\xb9\xae\x0b\x4b\x99\x90\x80\x14\xb9\xf0\x43\xae\xcc\x64\x55\x33\xa3\x13\xcd\x34\x2f\x12\x6d\xf6\xb2\xd6\x1e\xf7\x54\x15\xc7\xf4\x3a\x1f\xc7\x8f\xd1\xc2\x8d\x51\xeb\x0b\x97\x95\x30\x65\x6f\xc0\x0b\x16\xdc\x0c\x94\x63\x9a\xe8\xda\xb0\x8a\x8d\xe8\xa4\x5c\x7c\x0c\x38\x8f\x6d\x41\xf0\x7c\xaf\x73\xd3\x65\xa0\x4c\xd9\xcc\x47\x1f\x90\x6b\x03\xe3\x0a\x7b\x5a\x24\x52\x2d\x0e\x99\x7c\x83\x1c\x75\x10\xa1\x87\x09\xc4\xc0\x92\xd2\xe6\xef\x9e\x41\xde\x55\xf3\x01\x92\x3c\xf9\x9d\x90\x7d\xde\x98\xe1\x35\x44\x77\x59\xaf\x4b\xc0\xf9\xe1\x14\xba\xe2\x0e\xa9\xe0\xf0\x65\xe7\xe9\x4d\x92\xd5\xa9\xe9\x72\x73\x0d\x89\xee\x28\xb5\x04\xbd\xb1\x44\x90\xf2\xb0\x51\x3a\x5c\x67\x76\xfc\xf0\x26\x9b\x97\x8e\x25\x1c\x52\x73\x5c\x07\x23\x26\x47\xaa\x90\x3f\x05\x6a\xed\x16\x29\x7a\x9a\xdd\x78\x33\xbb\x85\x42\x37\x40\x14\xcb\x16\xd5\x5c\xcd\x3f\xfd\xa0\xaf\x60\xc5\x3e\x46\xa6\x7e\xbb\x2c\xeb\xf1\x28\xf9\x03\xe3\x03\x0e\xff\xe5\x35\x5d\x79\xec\xb8\x25\x32\x15\x33\x3f\xbd\xc6\x0b\xb8\x7e\xfd\x66\xd5\x84\x5f\x07\xb5\x6d\xdf\xcc\x7e\x17\x80\x08\xd8\xb2\x4c\x50\x43\xbd\x62\x10\x2a\x6b\x71\x00\xff\x31\x1c\xff\x89\x76\xe7\x49\xfb\x1c\x7b\xaf\xe2\x63\x26\xd6\x78\x3a\xbd\xe6\xbc\x1e\x80\x31\xd6\x6d\x9a\xef\x3d\x3d\x91\xa9\x6e\x74\x68\xbc\x18\xae\x92\x0e\x70\x80\x65\xb9\xba\x01\x75\x91\x2e\xc6\x8a\x80\x78\xdf\xa6\xa0\x99\x71\x36\x9f\x71\x09\x11\x5d\x83\x42\xd1\x65\x7f\xfc\x73\xf6\xa7\x9b\xab\xcb\x93\x2d\xcf\xf5\x86\x43\x46\xb0\x2d\x6b\x62\x05\xdb\xf0\x7a\x6c\xa3\x5e\x89\x9c\xcb\x13\xb6\x56\x13\x8c\xb1\xbe\x64\x9b\xa2\xc8\xf4\xcb\xd3\xd3\x75\x52\x6c\xca\xe5\x34\x52\xdb\x53\xdf\x35\xa7\x3c\x4b\x4e\x97\xa9\x5a\x9e\xe6\x02\x50\xb6\x27\xdf\x4d\xbf\xff\x0e\x46\xe6\xf4\xfe\xbb\x53\x88\xac\x4d\xd7\xea\x5f\xde\x7e\xff\xef\x7f\xf8\x37\x53\x70\xb6\x2b\x36\x4a\xbe\xa4\x00\x6e\x6f\xd9\x27\x68\x95\x9f\xe2\x2b\xb5\xaf\xfc\xfb\xf4\xf7\x61\x35\xe8\xd1\xad\x8a\x45\xaa\x4f\xef\xbf\x5b\xd8\x81\x99\x66\xbb\xdf\x70\xa9\x5f\x0d\x97\x7a\x97\x14\xbf\xe1\x52\xbf\x2a\x2e\x75\xb8\x85\xe3\xf6\x18\x20\xfa\xf4\xfb\xa3\xf9\xbb\xdb\x23\xad\xeb\x7d\xdf\x3e\xd4\x72\x38\x84\x59\x03\x47\x1c\x11\x77\x62\xd4\x15\xbb\xd6\x5c\x77\x75\xe8\x70\xb1\x8d\x25\xdb\xef\x34\xe6\x47\x25\x49\x03\x0a\x24\x89\x80\xc8\x19\x5d\x82\x19\x4f\xda\xd0\xa6\x84\x76\x3a\xa6\xff\x9e\x92\x92\xfc\xb1\xb9\xc8\xa9\xb9\x07\xf2\x90\xa7\xf8\xb6\xc5\x66\xa9\x07\xcb\x3f\xfe\x18\xac\xdd\x03\x75\x5c\x1d\x19\x31\x4e\x1e\xa8\x8b\xad\x57\x47\x35\x36\x5c\x1f\x06\xf2\x9b\x21\xe5\x9f\x8b\xd3\x39\x55\x7c\xfa\xa0\x3d\x38\x2c\x8b\x02\x88\x84\x13\x59\x53\x56\xe6\x99\xd2\x42\x4f\xd9\x9b\x9a\xd2\xa1\x07\x2e\x5e\xbf\x39\x63\xdf\xfd\xf0\xef\x7f\x98\xcb\xe7\x2d\xe7\x36\xec\xf7\x2a\x5f\x13\x8e\x12\x4e\xeb\x2d\xd7\x85\xc8\x4f\xf3\x55\x74\x8a\xbb\xdc\xa9\x79\xff\x84\x3e\x7a\xa2\x56\x27\x8e\x92\xf8\x84\xd8\x59\xa7\xdb\x78\x1c\xc1\x40\x65\xea\xe1\x59\x43\x07\x8d\x86\x43\x09\xa9\x88\xd4\xca\x91\xcf\x63\x9e\x0b\xea\x54\xa8\x55\xcb\x7f\xbc\x4a\xd5\x52\xbf\x70\x04\x68\x5c\xdb\x6f\x78\x46\xa2\xee\xa5\xf9\x38\xec\xe4\x76\x8a\x3c\xa5\xa3\xc2\xee\x25\xe1\x75\x64\x4c\xc7\xb7\x2f\x36\x7f\xdc\x23\x1f\x03\xcf\x55\x29\x2d\xbb\xb3\x92\x42\xad\x00\xc5\x07\x96\xb0\x45\x29\x80\xaf\xd6\x9c\xb4\x9e\x7b\x21\x17\x19\x1e\x30\x10\x55\xe8\xee\xee\x23\x19\xce\xf7\xf5\xf3\x53\x30\x9c\x1f\xdb\xef\xb4\xa1\x7c\xa5\x0e\x3f\x16\x4a\x88\x4b\x69\x0c\xaa\xc2\x3c\xbf\x37\x82\xea\xf6\x01\xaf\x3e\xe4\xc9\x84\x33\x9e\x83\x91\x26\x4e\x0a\x75\x02\xa4\x35\x40\x85\x82\x9a\x03\x5d\xb0\x0a\x88\x3c\x8f\x39\x26\xcd\xf3\x03\xea\x89\x86\xf9\xe7\xa0\xa2\x64\x93\x68\xa4\xf0\x24\x48\x56\x22\xa5\xc8\x29\xa6\xb6\xf7\x44\x1d\x19\x97\x0e\x87\xb2\x1f\x91\x15\xe8\x5a\x07\x7c\xf0\x0e\x8f\xcf\x83\x4d\x60\xca\xc0\xfa\xdc\xa8\xad\x32\xe6\x8c\x2a\x75\xf0\x23\xde\x5e\xe0\x10\xee\xb4\xbd\xb6\x3c\x43\x92\xba\xaf\xd7\x1a\xb3\xb4\xcc\x4f\xe8\xd4\x0b\x1f\x1a\x25\xb1\xb1\xac\x8a\x0a\xec\xa9\xbf\x63\x83\xef\x9f\x37\x80\x7a\x40\x9d\x3a\x90\x8a\x25\x8e\xe7\xe4\xaf\xe6\x5e\x63\xa6\x94\xbb\x29\xb8\x93\x1b\x41\x3a\xc8\xc5\x18\xd2\xbd\x5a\x6b\xbe\x33\x5b\xba\xdc\x8e\x1c\x03\x07\x32\x1e\x32\x00\x5c\x22\xec\xd6\xe2\x6d\x4f\x5a\x01\xb7\x5d\xeb\xd2\x0a\xb3\xc6\x0b\xcb\x17\x3a\xae\xaa\x37\xae\x00\xa2\x06\x6d\xd6\xdb\xd3\x2d\x01\x3a\x1b\xfb\x18\x37\x04\x6b\x5b\x74\x80\x6e\xe4\xf8\xc5\x08\x02\x2b\x63\xfa\x0e\x3e\x82\x93\xb3\xd1\x83\xc1\x5a\xe8\xea\xc0\x71\x2e\xb6\x3e\x8f\x55\x1b\x9c\x1f\x19\xea\x7c\xf6\x8e\xa9\x65\xe3\xf2\xe8\x5e\xbc\xf7\x2a\xd4\xbb\x4c\x4c\xd8\xb2\x84\xdf\x2f\xaf\x6e\x43\xb4\x46\x82\xad\x3d\x89\x36\x22\xba\x03\x87\x09\x1e\x79\x4e\xb4\x91\xd8\xf0\xe6\xd2\x4b\x7f\x15\xca\x42\x0f\x76\x8e\x0d\xdd\x29\x02\xa8\x9c\xc5\x89\xce\x52\xbe\x83\x20\xaf\x44\x9c\xbe\x0f\x10\xbb\x04\x17\xb3\x15\xec\xf3\x17\x0f\x1f\x69\x33\x2a\x33\xff\xde\xd8\xbe\xe4\xf9\x32\x29\x72\x9e\xef\x98\xef\xcc\xe6\x7e\xc0\xb4\xd8\x72\x59\x24\xd1\x5c\x6e\x05\x97\x21\x2a\x8f\x82\xdc\xa6\x93\x63\x25\x88\x2f\x78\xb5\x12\x51\xe1\x09\x07\xc1\x78\x77\x3d\xb5\x6f\x0d\x8e\x6b\xbb\x5b\x79\xbd\x4d\xff\x31\x91\x98\xde\x9e\x6c\x01\xf3\x49\x73\x88\x8e\xc6\x03\x83\x37\x20\x15\x47\x47\xae\xbd\x0c\xc2\xbf\xec\x9c\x62\x4b\x51\x3c\x08\xc8\xa7\xa7\x04\xc0\x36\x1b\xff\x68\xb9\x80\xe3\xd4\x7f\xdb\x75\x93\x03\x24\x18\x2e\xb0\x10\x4c\xe6\x88\x7f\x64\x8d\xc1\xe7\x19\xa5\x24\x82\xb7\xe7\x19\xf9\xad\x9e\xc1\x31\x6d\x6e\x8f\xf9\xbd\x88\xe7\xb2\x4a\xab\x44\x36\xa3\x5f\x70\xcc\x0b\x61\x3d\xce\x6e\x63\xfb\x78\x90\x2f\xff\x1c\xa8\x24\x3c\x89\xa4\x4b\xba\xeb\x11\xe6\xc2\x46\x3f\xe5\xad\xca\x6a\x02\x86\xd6\xfd\x00\x48\x96\xd0\x56\xe8\x86\x74\xf1\x2a\x78\x0a\x37\x29\x1d\x69\x0c\x32\xca\x39\x00\x2c\xf9\x25\x1b\x9e\xce\xb6\x32\xe6\xd2\x66\x53\xaf\xca\x14\x59\x42\xbb\xa4\xc2\x88\x43\xca\x66\x7e\x7c\xbd\x0c\x20\xe7\x57\x63\x81\xb6\x98\x83\x3d\x04\x60\x64\xdc\xeb\xec\xac\x17\x52\xa3\x20\xb5\x95\x15\x02\xc7\xf3\x5a\x14\x70\x9a\xc7\x65\x8a\xc9\xc1\xe0\x31\x07\x3e\x2a\x9e\xa6\x2c\x29\xf4\x5c\x3a\xfa\x2c\x24\x43\x87\x1d\xd6\xba\xd4\xad\x22\xad\x74\xba\xb6\xa4\xdd\x0f\x76\x58\x12\x25\x45\x03\xc2\xbd\x0b\xa5\x38\xb2\x4c\x70\xcc\x65\xc3\x61\x9b\xcb\xf0\xce\x55\x1f\x04\x4a\xfc\x02\x8d\xf2\xc7\xc8\xc1\xea\x41\xe4\x83\xb0\xfb\xe8\x21\x99\xb2\x19\xb6\xce\x5c\xb8\xac\xca\x26\xd6\x96\xf2\xe7\x09\x69\x69\x6e\x35\x85\xb6\x3e\x72\x7f\x6f\x05\x39\xe7\xa8\x4c\x79\x9e\x02\x27\xfd\xaa\x4c\x59\xb2\x0a\x04\x43\x61\x0c\x90\x3c\xc9\x0c\x57\xa4\xe0\xac\xb6\x5e\x72\xcd\xb7\x22\xc8\xdb\x26\xf7\x4e\x1a\x60\x28\x90\x11\x1a\x83\xf3\xa6\xac\x17\x53\xf6\xba\xae\x30\x0f\x6b\x22\x20\x5d\x4c\x34\x6e\x7f\xae\xbe\x41\xca\x21\x2a\xd5\x27\x2b\x73\xa5\x7c\x16\xac\xba\x8e\x11\x04\xf2\xf6\x71\x00\x0d\x4b\xdd\xdf\x8f\x1a\x6e\x4d\x39\x36\xaf\xd6\x60\x1b\x6e\x41\x74\x54\xd0\x9e\x0a\x23\x2b\x19\x12\x56\x1e\x50\x51\x47\x08\xda\x52\xd9\x6d\x8f\x3e\x29\x8c\xe3\xc8\xaa\x06\x6a\x3f\xe3\x2b\x1a\xcc\x9c\x10\x8e\x33\xa4\x67\xd7\xbc\x18\x8b\xcd\x71\xc9\x38\xe3\x2b\xda\x8a\x83\x1a\x52\x4d\xd8\x3d\x46\xd6\xd3\x4b\xf0\x8f\xaf\xa8\x93\x7e\xf6\x7a\x00\x5e\x13\xbf\x92\x43\x69\x99\x0e\x5d\x0b\xf4\x5c\xd2\x61\x37\x3e\xfd\x73\xe6\xe7\x1c\x08\x1e\x31\x53\xfd\x29\xbb\x92\x02\x91\x73\x6a\x15\x1c\x2a\x54\x01\x52\x46\x02\xb2\x79\x19\x48\x50\xa7\x89\xbc\xb3\xd4\x12\x66\xc9\x4d\x18\xf7\xa5\xc3\xae\x87\xd3\x06\x77\x91\x0e\x5b\xb2\x4d\x9a\xe1\x08\xf3\x72\x58\x82\x66\xfb\x9d\x3f\x00\xa0\x8e\xdf\x01\xda\xda\x31\x7c\x58\x7a\x91\xe4\xee\x16\x57\xd1\x18\x0f\x51\xa3\x45\x52\xec\xf6\xf5\xef\xfb\x4d\x15\x85\x38\x42\xc8\xe8\xc3\xe5\xeb\xf3\x37\x17\x97\x55\xf5\xa1\x3f\x7f\x38\xff\x50\xfd\xcb\xf5\x87\xcb\xcb\x8b\xcb\x3f\x86\x7f\xba\xf9\x70\x76\x76\x7e\xfe\xba\xfa\xdc\x9b\xd9\xc5\xdb\xda\x73\xe6\x4f\xd5\x87\x66\xaf\xae\xae\x6b\x7a\x47\x56\xac\x28\xf8\xd3\xed\xc5\xbb\xf3\xd7\x8b\xab\x0f\x15\xc9\xa4\xd7\xff\x79\x39\x7b\x77\x71\xb6\x68\xa9\xcf\xf5\xf9\xd9\xd5\xcf\xe7\xd7\x7b\x14\x8f\x7c\x7b\x5b\xbb\xf4\x31\xe0\x63\x07\xeb\x5f\xcd\xd8\x2a\x4f\x84\x8c\xd3\x1d\x62\xef\xed\xcd\xb6\x06\xa6\x0d\xcf\xde\x64\x2b\x54\x79\x0c\x84\xfe\x76\x83\x0a\xf5\xc0\x82\x81\xa5\x51\xca\x2c\xd7\x77\x9d\x1c\x89\x45\xde\x8c\x0a\xf4\x66\x0a\x15\xf9\xce\xe5\xa2\xf5\x55\xc7\x33\x28\xd1\x47\x58\x26\xf2\xbe\xba\x80\x65\x94\x97\x59\x91\x2c\xbb\x93\x22\x06\x32\x0b\x8d\xbf\x7b\x23\xdf\x5f\x3b\x39\xca\x65\xfb\xc6\x58\xc9\x0d\x38\x06\x78\x0c\x25\x1c\x2a\xeb\xe6\xde\xb6\x60\xcd\xac\x5c\xa6\x49\xc4\x92\xb8\xee\x4f\xc1\x14\x36\x74\x19\xd7\x69\x41\x33\x91\x83\xa9\x6a\x6e\x00\x59\x2e\x4e\x78\x59\x6c\xac\xe2\xbc\xcb\x64\x44\x9a\x4e\x11\xe5\x02\x63\x01\x42\x83\x93\x16\xf5\xbc\x82\x2f\x41\x65\x28\x83\x3b\x06\xb2\x98\x69\x40\xd1\xde\x11\x23\xc0\x37\xb1\xf4\x11\x4e\x52\x7c\xbe\xb7\x6b\xa8\xc6\x89\xae\x8b\x39\xc3\x09\x8f\x3f\x5a\x55\x30\xd3\x6e\xb3\x53\x3b\x55\x2c\x1c\x64\x9b\xbb\xd1\xde\x8c\x7d\x73\x2c\x9c\x28\xd5\x64\x06\x2a\x9d\x7e\x3a\xcb\x05\x1c\x22\x04\x05\xb0\xfe\x0b\x80\xae\x50\xae\x07\xa4\x78\x98\xab\xda\x52\x6c\x78\xba\x42\x8b\xc3\x0c\x8d\x5f\x57\xcd\x29\x7a\xab\xee\x84\xbc\xc6\x01\xfb\x2a\xdb\xa1\xc4\x9b\x8f\xcf\xe9\x77\x1e\x21\xef\xc2\x34\x75\xb4\xb3\xca\xe6\xba\x81\x31\x55\xe0\x3d\x21\xf8\x19\x53\x3a\x3c\x63\xaf\x4d\x93\x5b\xad\x92\xcf\xa6\xc0\xb9\x14\xad\x9c\xa5\x80\x17\xb2\xec\x4a\x6e\x5f\x06\x6c\x14\x52\xd4\xdc\x09\x09\x7a\x62\x28\x37\xbc\x77\xce\x8e\xf3\x9f\x37\xc7\xa2\xc7\xa1\x0f\x3e\xbf\xa4\x22\xb3\x16\x46\x79\x6c\x3f\x15\x98\x63\x33\x65\xaf\x89\x78\xc3\xfc\xe5\xec\xed\xc5\xf9\xe5\xed\xe2\xec\xfa\xfc\xf5\xf9\xe5\xed\xc5\xec\xed\xcd\xd0\xe5\xf7\x18\x79\x51\xb5\xd5\x57\x4f\x0f\x72\x3b\xc4\x29\xad\x3c\x9f\x9e\xeb\x1a\xe5\x97\x1d\x0c\xc9\xfe\xda\x27\x71\xb6\x88\x13\x1d\x99\xe3\x6f\xb7\x10\x32\x06\xb2\xe7\x83\xa6\x6a\x7b\x51\xf5\x56\xb8\x27\x98\x7b\xc2\xee\x20\x78\xda\xdd\xdb\x19\xed\x7e\x07\xd4\x1d\xb8\x21\x73\x61\x16\x7f\x6c\xee\x07\xee\xb4\x99\xee\x57\xf8\x30\xc5\x1d\xd7\xb6\x6a\x11\xf5\x36\x61\x7d\x13\xad\x4b\x6e\xf6\x47\xfb\x18\x40\x0e\x3b\x7a\x85\x18\xf8\x42\xc6\xe9\x24\x50\x4b\x65\x89\x9e\xcb\x2d\x97\x31\x2f\x54\xbe\xeb\x68\xe2\xb0\xcd\x33\x5c\x36\xd5\x2d\x34\x3c\xb2\xa5\x10\xb1\x1d\x05\x7c\x94\xcb\xfa\x54\x42\x5e\xea\xdb\xab\x9f\xce\x2f\x6f\x16\xe7\x97\x3f\x2f\xde\x5f\x9f\xbf\xb9\xf8\xd5\x21\x21\x33\xae\xdb\xd4\x11\xb3\x5c\x98\xdd\xc5\xd2\x7c\xb4\xee\x2f\x28\x59\x68\xcb\x21\x99\xaa\x64\x35\x97\x76\x67\xc9\x7d\xf1\x9b\x5c\x95\xeb\x4d\x7b\x41\xf5\x5a\xbe\x9f\xdd\xfe\x78\x50\x35\x81\x84\x09\x75\xcd\x70\xb5\x35\x11\xa1\xc9\x8a\xf6\x3d\x84\x91\xd6\xaa\x07\x54\x62\xf0\x68\x5b\x94\xa1\x63\x47\x3b\xe8\xf6\xd2\xdc\xb4\x7a\x8d\xff\x96\xc7\xbb\x26\xd0\x6d\xb0\x6f\x56\x8e\x11\x40\x28\xa3\x3c\x66\xa3\xb4\x97\x2d\x7f\xab\x9c\x60\xdf\x9f\xa4\x62\xbd\x16\x31\x4e\xaf\x7a\xc1\xe4\x83\xa3\x2d\x30\xf2\xe7\x7a\x5b\x2f\x92\x80\xdd\x11\x07\xb3\xc3\x7b\x0d\xdf\xc0\xdf\xbb\x57\xda\xf7\x8a\x33\x2b\x92\x1d\x29\xa9\x0b\x2e\x3b\x02\xc9\xf7\x4d\x84\xe6\xa0\xad\xe8\x2a\x67\x2e\xf9\x89\x1c\x26\x36\x64\xe0\xd7\xc1\x21\x21\x34\x12\xea\x93\xe4\xf1\x08\x04\xfc\x02\x55\xef\x96\x41\x00\xdf\xe9\xb5\xdd\x11\x9f\xde\xb9\xd1\x7b\x75\x22\xe6\x29\x70\xf5\xa2\x52\x12\x81\xcf\xd1\x1b\x04\xf2\x63\x9d\xc0\xe0\x51\x03\x52\xfb\xf2\xcf\xd4\xf5\x78\x6b\xad\xba\x9a\xb9\xe5\x76\x73\x03\xe4\x8c\xb7\xba\xc7\x6e\xbf\x7f\xab\x62\x87\xfb\x92\xb3\x5c\xc5\x65\x64\xd9\x6f\xa0\x58\x8f\x70\x21\x87\x96\x3d\x60\x63\x76\x62\x86\x99\x2e\x29\x22\x3e\x01\xec\xfa\x5c\x76\x85\x93\xec\x1e\xd0\xe1\xe6\x7a\x6f\x4f\xad\x63\xc6\xbe\xa5\xf7\xbb\x97\xa0\xed\xec\x61\x39\xa4\xcc\x3e\x0e\xc6\x5e\x07\x40\x88\xc6\x65\xc9\x31\x56\x5c\x3d\x8e\xbb\xc8\x2e\xdc\xae\x3a\x0e\xc7\x34\x0c\x06\x52\x4d\x0e\xc1\x23\x72\xc3\x35\x5a\xae\x45\xb4\xa9\x56\x1c\x5a\x53\x25\x88\xab\x57\xd7\x59\x82\xc7\x79\x08\x06\x45\x8c\x26\x78\xa7\x4e\xc8\x87\x5b\x11\xfb\x72\xca\x85\xe3\x26\x7e\x68\x1c\xb9\xcb\x0b\xee\x7b\xb0\x61\xa5\xbc\x94\xd1\x86\x65\x29\xc7\xbc\xe9\x0d\xd7\x38\xa5\x2d\x6c\x82\x2f\x93\x34\x29\x80\x90\x06\xa3\x79\xb5\x1e\x36\x37\x1a\x9e\xdf\x59\x0e\x58\xee\xd9\x87\xfa\x26\xfd\x91\xf0\x54\x2f\x90\xff\x25\x01\xaa\x7e\xc9\x06\x6f\xf4\xc6\x02\xfd\xb4\x24\x70\xaa\x1f\x0e\xb3\xe3\xc1\xb4\xf4\x6d\x19\x37\xb2\x54\xe2\xfb\xfa\xeb\x95\xfe\x6e\x39\xa8\xc7\x83\x33\x88\xdc\x7c\xc4\x36\x5f\xa7\x3e\x6f\x5d\x59\xab\x54\xf1\x0e\xf9\x5d\x5b\x36\x32\x99\x77\x95\x1d\xab\x72\xd9\xc5\x9d\x8b\xb5\xea\x2f\xbd\xcf\xef\x6f\xd7\xed\x63\xf9\x05\xc3\x0d\x90\x17\xa2\x48\xc6\xb9\x36\x82\x46\xf3\x42\x9c\xc0\xeb\xed\x85\x53\x32\xdd\xe0\x36\x37\x26\x9a\xd7\xd3\x70\x0c\xbd\x00\x9b\x6b\xce\xae\x3f\x97\xdc\x6c\x0d\x57\xab\x1b\x64\x48\x39\x66\x92\x15\x49\x73\x86\xb5\xaf\xc4\xfa\x57\x6f\xab\x41\x95\x70\x0e\x0c\xce\x3f\x6d\x6b\xcd\x8d\x79\x7b\xf8\x82\xac\x6a\xd4\x67\x79\xa2\x80\x29\x84\x94\xf1\x7b\x48\x06\x5b\xbf\x7b\x44\x4f\x7e\x2a\x45\x29\xcc\xdc\x5f\x96\xf1\xba\xe9\xdb\x1c\x61\x9d\xf9\x26\x6d\xd4\x03\xdb\x96\xd1\x86\xd9\xc2\x59\x2c\x52\xbe\xab\x34\x0d\xec\xa5\x42\xa5\x40\xdb\x7b\x20\x87\x68\x54\xea\x42\x6d\x01\x56\xea\xcb\xcd\x4b\x09\x13\x9e\xf1\xa2\xc8\x93\x65\x59\xb4\x42\xd0\x2a\x9c\x62\x07\x06\xb4\x6e\xde\x9f\x9f\x5d\xbc\xb9\xa8\x45\x93\x66\x37\x3f\x85\xff\xfe\xe5\xea\xfa\xa7\x37\x6f\xaf\x7e\x09\xff\xf6\x76\xf6\xe1\xf2\xec\xc7\xc5\xfb\xb7\xb3\xcb\x4a\xcc\x69\x76\x3b\xbb\x39\xbf\xdd\x13\x56\x6a\x7e\xb5\x7b\x20\x78\x40\x79\x66\x81\xae\x96\xfb\xd9\xde\x2e\xe9\xab\x2f\xd9\xcc\x12\xc0\x55\x28\x0a\x6d\x68\x10\xb0\x04\xa8\x84\x4c\x11\xc4\xd7\xbc\xe0\xa4\x2c\x3f\x65\x33\x46\x30\x60\x84\x77\x6b\x63\x2c\x10\x3b\x96\x19\x1d\x2c\xc2\x58\x0c\x91\xbf\xb9\x79\x71\x3b\xb5\x22\x5e\xba\x54\x84\x34\xe8\x36\x97\x69\x2e\xcf\xef\x85\x2c\x4a\xe0\x68\xe6\x69\xca\xac\xa0\x3d\x3d\x10\xe4\x69\xdb\x5a\xea\x64\x9b\xa4\x3c\xf7\x3a\x64\x57\x54\x16\x18\xec\xb6\xae\x8e\x96\xa7\x99\x04\x6c\x2f\x0f\x1f\x2e\x18\xd4\xfb\xec\xed\x05\x98\x40\x51\x61\x45\x36\xec\xc7\xe7\x12\x79\xcf\xe8\x8b\x5b\x0e\x29\x07\x85\x22\x7f\x1a\x7e\x9e\x1e\xee\x9e\x88\xfa\x98\x45\x6c\x3d\xcf\x4f\x05\x6b\x72\x95\xb4\xff\x71\x2e\x8b\x7c\x37\xd8\xae\xb9\x85\x1c\x5b\x0d\xb6\x29\x21\x98\xaa\xda\x64\xe8\xee\x60\xb6\xf4\x4b\x30\x76\x2c\xbc\x8e\xbc\xf1\xce\xe9\x8e\x68\x86\x0e\xfb\x3b\x35\x87\xd0\xb7\xda\x0f\x21\x0d\x0a\xf4\xc2\x52\x95\x32\xd6\x84\xb5\xda\x26\xf2\x74\xcb\x3f\xbf\xb0\x2d\x45\x5a\x01\xa7\x10\x00\x94\x51\x22\x35\x37\x91\x9d\xd9\xe4\xfa\xbb\x6b\x2e\x7b\xfa\x6b\xbf\xb5\x68\x77\x56\xb8\xf6\xf8\x3b\x2a\xa2\xc6\xee\xc5\xae\x6d\xfc\x1a\x2a\x2f\x88\x4c\xa3\x05\x0f\x85\x64\xb9\x30\x0f\x3a\x48\x5a\x8a\x48\x43\xf7\x6f\x80\x9e\x57\x94\xe8\xda\xf7\xee\x30\xca\x7b\xd4\xb2\x69\x8d\x2f\x3f\x81\x4c\x0f\x7d\xc9\x8c\x19\x46\x9b\xad\xa3\x93\xa0\xf6\x14\x46\x33\x83\xf5\x17\xb5\x64\x2b\xc8\x3b\x21\xa5\xe9\x5c\x80\x63\x1b\x86\xc2\xf2\x4a\x03\xb1\x50\x23\x84\x6d\xa7\x40\x2a\x34\xb8\x7b\xa5\xb9\x6e\x89\x4f\x25\x45\xec\xbe\xfb\xfd\xb8\x73\xb6\xc8\x77\xcc\x6a\x18\x84\x79\x2f\x94\xf6\x45\x67\x2e\xd4\xab\x94\x49\x1b\xdb\xd8\x75\x29\xcd\x51\xfc\x18\x60\x87\xe1\xd1\xac\xda\x47\xe9\x9f\x7b\x53\x43\xac\x23\x36\xc7\xe7\x9f\x8c\x3c\xf2\xe7\x1a\x67\x24\x7d\x0e\x80\xc8\x54\x7a\x78\xa0\x2d\x79\x74\xf7\xc0\xf3\x18\x7d\x85\x80\x3e\x98\xb2\x1f\xd5\x83\xb8\x17\xf9\x84\x45\x22\x2f\x38\x11\x36\x69\x08\xbf\xc2\x82\xa2\x72\xe6\x12\x70\xf9\xc8\x7e\x25\x41\xa4\xbb\x48\xd6\x1b\x73\x9f\x0c\x82\xe7\x2a\x37\xdb\x51\x81\x5c\x7d\x99\x88\x88\x22\xa7\xa3\x03\x56\x29\xbf\x6f\x32\x50\x1d\x92\xdb\xcf\x2e\x5c\x72\xa1\x8d\x4e\x59\xae\xfe\x3e\xb8\x03\x75\x18\x6d\x9a\x48\x6a\x32\x61\x6b\x95\x72\xb9\x9e\x4e\xa7\x4c\x14\xd1\xf4\xc5\xa8\x89\x4e\x05\x86\xf1\x2e\x07\xaa\x4d\x95\xd2\x22\xdd\x39\x5a\x17\x97\xf6\x00\x38\xbb\xcf\x85\x90\x3a\x41\x97\x47\xcb\xf4\xbf\xa9\x73\x04\x7c\x59\xd7\x79\xfb\x4d\x75\x74\x52\x5d\x47\x39\x20\xfd\x33\xa2\x24\x7c\xbe\xfd\xe6\x75\x50\x92\x68\x07\xaf\xac\x92\x63\x33\x1f\x7f\x56\x5d\x42\xd6\x07\xb1\xad\xb5\x96\x44\xd4\x14\x07\x65\x8b\x75\x79\x2c\x6a\x09\x7c\x47\xe4\xee\xf5\xa4\xe1\x8d\xcc\xc0\x6b\x59\x77\x2d\xcb\xa2\x36\xdc\xa3\x97\xc5\x7e\x35\x82\xd6\x06\x8d\xcc\x70\xf4\xa9\xc8\x63\x4c\x27\x4c\x92\x4a\x77\x70\xe3\x72\xf9\x8e\xe0\x59\x8e\x03\xcf\x78\xc5\xf1\x0f\x99\x37\x3e\x72\xe0\x28\x83\x82\x40\x81\x2e\x54\xce\xd7\x82\x6d\x45\x9c\x94\xdb\xd6\xcd\xc6\x55\xf7\x18\xb4\x97\x4a\xcb\x6d\x37\x79\xdb\xb1\x06\xb4\xaf\x24\xfe\xd7\x19\x7c\x6e\xb0\x01\xed\x25\xdb\xad\x28\x0c\xd5\x17\xdd\xe0\xd4\xd7\xe6\xa4\xcc\x13\x0d\x34\x83\x87\x24\xba\xb9\x62\xb0\x68\x88\xd6\xed\x32\x74\xbf\x56\x46\xf7\xc4\x46\x77\xe8\x15\x8d\xa3\x0a\x21\xbe\xee\x43\xa1\x8e\x21\x1b\x3d\x46\x20\x39\x72\x50\x5c\x13\xcc\xc6\x80\xfc\x9b\x40\x2e\x50\x20\x45\xe2\x0b\xc5\x56\x36\x75\xea\x4e\x04\x64\x54\x31\xd0\x82\x3f\x20\xb3\xc9\x4f\x3f\x68\x1b\xb3\x27\x58\x85\xb7\x58\x0a\xff\x11\x8c\x0d\xdc\x7f\x67\xd1\x34\xd8\x42\x2c\x02\x28\xa3\x62\x2e\x8b\xd6\x02\x3c\xd8\x0c\xca\xc2\x57\x7e\xe6\x65\xda\xfe\x38\x95\x0f\x8f\xa2\xc4\xd0\xec\x97\x1b\x86\x5d\x4d\x04\xd2\x79\x5f\x45\x83\x42\xf6\xe3\x79\xa0\xbb\x16\x07\x58\x82\x95\x71\xc0\x4e\xb7\x0c\xe2\xa6\xdb\x45\x11\x6d\xbc\xe5\x51\xd5\x0a\x26\xfd\x38\x6a\xe7\xd6\x53\x62\x23\x54\x32\xc4\x9c\x25\x6b\xa9\x42\x35\x07\x25\x05\x04\x69\xcc\x06\xa4\xc2\x62\x59\x52\xec\x07\xf6\x8c\xe4\x89\xda\x37\xd5\x0a\x85\x80\x0d\x6a\x67\x25\xd6\x06\x57\x8a\x04\xd9\x65\x2c\x2a\x12\xef\x44\x24\x47\x56\xa7\x4a\xae\xe6\xeb\xcf\x65\xf5\x53\x8d\x4e\xb2\xc8\x9b\x24\x17\xc8\x70\xaa\x8d\xf5\x56\x24\xf7\x66\xa1\x36\xa7\xb5\x9b\xa0\xb0\x03\x34\xe7\xde\x5c\x62\xb5\x03\x9a\xd4\x3b\xb1\xd3\xa1\xf6\x19\xcd\x28\xd6\x35\x21\x13\xd3\x1e\x1a\xaf\xfd\x43\x01\x1d\xb7\x08\xb4\xdc\x87\x9d\x65\xf8\xd1\x77\xe6\xe5\x1e\x48\x5f\xa3\x70\x33\x07\x7d\x6e\x9a\xf7\x29\xd2\x36\xe1\xfb\x99\xc6\xd0\xa3\x76\x5a\x74\xfe\xbd\x7b\x16\x2e\xbe\xe6\x7e\x3b\x97\xc4\xa4\x1c\x1c\x72\x66\xc3\x69\x0e\x1b\x25\xcc\x22\x7f\xeb\xae\x42\xf6\x01\x64\x77\x96\xf8\xaf\xfa\x49\x1b\x77\xb4\xd2\x99\x73\x09\x9f\xc6\x94\x42\xeb\xc3\x6b\xfd\xe0\x81\x50\x30\x1a\xdc\x4e\xf8\x57\x90\xb7\x83\x4f\x12\xdf\x1b\x8a\xe8\xe1\xed\x27\x12\xa6\xfb\x66\xb2\x15\x79\x65\x71\x57\x37\xe7\x67\xd7\xe7\xb7\x5f\x0c\x1e\x66\xb1\x59\xa3\xf1\x61\xb6\x9e\xaf\xcf\xdf\xcc\x3e\xbc\xbd\x5d\xbc\xbe\xb8\x7e\x0a\x80\x18\xfd\x74\x00\x42\xec\x86\x08\xda\xcf\x94\x2c\xc4\xe7\xa3\xce\xe4\xbc\x94\x0b\x3e\x22\x53\xc1\x49\x34\xf4\x99\x3b\x58\x68\x93\x60\xde\xb1\xbf\x13\xdb\x20\x9e\x68\x8e\x4f\x7e\xe5\x9d\x86\xab\x24\x4d\x21\x71\xd3\xb9\xd7\x29\x29\xc8\x74\x2a\xec\x3f\x96\x60\x91\xf6\xd4\xb9\x5c\x56\xf8\xff\xc1\xe5\xb7\x31\x97\x60\x4c\xd9\xcc\x4c\x07\xe4\x09\x24\xc4\xf5\x71\xd0\xaf\x13\x29\x7c\x35\x50\xf0\xb6\x94\xac\x93\x38\x98\x06\xf1\x29\xf3\x72\xc9\xf0\x1a\x6a\x6b\xda\x19\x57\x99\x9f\xd6\xfc\xb4\x3f\xba\x16\xe2\x22\x4e\x24\x1a\xa6\x95\xd5\x7c\xd3\x3e\x75\x4f\xfd\x12\x80\x7e\x37\x23\xc9\x21\x06\x01\x9a\xb2\x7e\x20\x69\x20\x50\x9b\xc6\x07\x27\xee\x12\x44\xd1\xa8\x55\xad\x9f\xcd\x56\x68\xfa\x3a\x81\x48\x05\x27\x2e\x8a\x28\x2d\x75\x21\x72\x72\x9b\xcc\x7e\xb9\x99\xcb\x57\xe6\xf8\x7a\x41\xa7\x10\xe9\x97\xe0\x27\x10\xc3\xa1\x2a\xdf\xb7\x16\x4a\xb8\x83\x3d\x47\x1f\xf5\x56\x70\xa9\x51\xef\x3b\x4d\x45\xee\x67\x06\xd6\x47\x88\x98\x34\xdf\x80\x7c\xd3\xbf\x4f\x92\xcf\x0a\x56\xad\xa9\x2f\xfd\x4a\xa2\xc7\xf5\xf9\xd4\x95\x17\x0c\x00\xd1\xa7\x9c\x39\x2d\x79\x0a\x43\x67\x11\x61\x6b\x5b\x27\x51\x35\x6b\x60\xd0\x5c\xba\xc5\xe2\x7e\x9b\x4a\x8f\x38\x95\x06\x9c\xeb\xe1\x29\xc1\x36\xca\x6c\xa0\x4e\xdc\xc3\x87\x99\x1d\x2f\x41\x0a\xf8\x27\xd3\x8d\xad\xa7\x4e\x4d\xe0\xee\x88\x53\x07\x15\xed\x8e\x83\x73\xce\x5a\x08\x50\xbc\x92\x92\x8d\xed\xf4\x6a\xe7\x3d\x0d\xd1\xd8\xcc\xe2\xed\xa4\x2a\x2c\x65\x80\x83\xb8\x11\x5e\xcf\x3c\xe0\xb8\x2a\x7a\xeb\x48\xfc\x0f\xd6\x4a\x59\x1c\xa9\x3f\x75\x1b\xe2\x02\x2b\x49\x94\x58\x8b\x30\xfd\xda\xa6\x5c\x3b\xca\x86\x31\x93\xef\x70\x85\xc3\xea\x9c\x73\xf4\x7f\x07\x81\x1d\x2e\xaf\x2e\xcf\x43\xa8\xc2\xc5\xe5\xed\xf9\x1f\xcf\xaf\x2b\xe9\xb7\x6f\xaf\x66\x95\x14\xda\x9b\xdb\xeb\x5a\xe6\xec\xab\xab\xab\xb7\xe7\x0d\xcc\xc3\xf9\xed\xc5\xbb\x4a\xe1\xaf\x3f\x5c\xcf\x6e\x2f\xae\x2a\xcf\xbd\xba\xb8\x9c\x5d\xff\x67\xf8\x97\xf3\xeb\xeb\xab\xeb\xda\xf7\x3e\x9c\xf5\xa3\x27\x2a\xcd\x68\x77\xff\xf8\xe0\x6c\xc0\x84\xd8\xba\x8c\xab\x0a\x90\x47\xac\xe2\x81\x20\xac\x7d\xd3\xd1\x66\xd7\xc6\x21\x41\x3a\x2e\x0c\x53\xd5\x51\xb3\xee\xf1\x25\x2b\x2b\x5d\x97\xf1\xe3\xb6\x3d\x73\xaa\x2d\x1e\x03\x14\xd7\x6b\x00\xba\xaf\xd4\x1c\xb7\xba\x80\x14\x24\xec\xda\x0c\x22\x58\x6b\xde\x29\xd8\x22\xe3\x27\xaf\xa9\xfd\xc6\xbe\x7a\x7a\xe6\x9d\x3d\x04\x26\x8f\x45\x5e\xd0\x57\xe9\xe0\x63\x36\x37\x38\x89\xad\xa1\x60\x7f\x0c\x0e\x6e\x68\x86\x99\x39\xc1\x74\xec\xd2\x16\x6c\xcf\x71\xe8\x27\xcb\x1a\x5b\x7f\xfa\x48\xb3\xee\x35\x66\x85\x11\xf5\x06\x86\x9b\x31\xf5\xbe\xe5\xfa\x6e\x6c\xbd\xe9\x23\xcd\x7a\x83\xd9\x77\x50\xbd\xc1\xe1\x5d\xb4\xb3\x5e\x8c\xd8\xc4\xc2\x62\xaa\xd5\x73\x29\xb9\xee\x91\x40\xc2\x73\x58\x1d\xcd\x02\x78\xda\xeb\x65\xc6\x87\x07\x32\xa0\x36\x6e\xb9\xf2\x1a\x09\xf4\x0d\xfc\x0a\x2d\x5c\xe6\x82\xdf\xc5\xea\x81\xc6\xa3\x8e\x0c\x65\x83\x76\xf3\x6a\x07\x99\x3d\xdc\x1e\x11\x20\xfc\x6d\x3e\x89\x28\x35\x5f\x3c\xc0\xe4\x12\xa2\x31\x46\x1b\x2c\xd0\x9e\xac\xf3\x86\x00\x53\x8b\xf4\xa3\x33\x97\x68\xcd\xb7\xe9\x57\x9a\x51\x35\x35\xa2\x4c\x7f\x68\xaa\xb3\xa1\x31\xb8\xae\x83\x81\xa5\x5c\x86\x32\x07\x30\xdd\x32\x87\x3b\x13\x74\x48\x22\xc1\x99\x9c\x9b\x0b\x4f\x2e\xa2\x44\x8b\x40\xc3\xa7\xf5\xc4\xfe\x74\x1c\xe3\x7f\xc1\x8b\x56\xb7\xeb\x60\x7f\x38\x8f\x8a\x92\xa7\xec\x53\x29\xf2\x1d\x11\xa6\xa1\xaf\x12\xff\x12\x71\x89\x49\x13\x85\xd8\x66\x90\x84\x1b\xa2\xfd\xe7\xf2\x17\x00\x4a\xe0\x10\x3c\xd3\xec\x8f\x00\x79\xb0\x0f\xd3\x21\xbc\xe5\x05\x9c\xc5\x7f\xc6\x6f\xb8\xdf\xa6\x73\x59\xd1\xc4\x08\xde\xaa\xc8\x63\x4c\xe7\xd2\x92\xd2\xc7\x2a\xd2\x53\xb8\xf1\x4d\x55\xbe\x3e\x25\x39\x57\x33\xd9\xd5\xdd\x52\xa9\xbb\x53\x21\x4f\xc1\x27\x55\x9c\xf2\xb2\x50\xa7\x00\x97\xc2\xf1\xd7\xa7\x56\xf5\xd1\xca\x66\xea\xd3\x4d\x72\x2f\xe0\xff\x4d\x37\xc5\x36\xfd\x17\x9d\x6d\x3e\x9f\xac\xd3\xfc\xc4\xbc\x7b\x12\xbe\x7b\x62\xdf\x3d\xb1\xef\x9e\x98\xd7\xf0\xff\x65\x3b\x0c\xef\x88\xcf\xdc\x9c\x65\x93\xb9\x4c\xa4\x16\x79\x01\xd6\xcf\x43\x9e\x14\x5e\x7c\x64\xc7\x9e\xfd\xcf\xff\xb0\x69\xce\x1f\x30\x7d\xee\x35\x2f\xf8\x7b\xf4\x2f\xfe\xfd\xef\xcf\x20\xa0\x8a\xf9\x2d\x19\xcf\x3f\x95\xa2\x98\x4b\x2d\xcc\x22\x64\xff\x67\x2e\x21\x02\xbb\xdd\x2d\x0a\xf4\xbb\xa2\x0f\x32\xd6\xec\x3f\xb0\xcc\x0b\x24\x0f\x8c\xb5\x29\xa9\x03\x59\x9f\xf0\xb4\x45\x28\xb8\xc3\x45\xff\x29\x7d\x4d\xcf\x8f\x58\xd6\x9f\xd2\xea\xaa\xb6\xf2\x17\xfa\x53\x0a\x07\x68\xaa\xb8\x05\x6b\x31\x37\x79\xe1\x9e\x4c\x95\x6b\x5b\x23\x0d\x68\xc0\x93\x86\xe9\xdb\xd7\xca\x0d\x12\x18\x5b\xcf\x7d\x63\x1b\x81\x58\x81\x8f\x43\x40\xf4\x3c\x31\x2b\xe4\x06\x3d\xa1\x60\xb9\x61\xcb\xc1\x26\xa5\xd0\xb9\x2b\x0f\x1d\x17\xfa\x0f\x2f\x4f\x4f\x27\x6c\xad\xe1\x7f\x96\x9f\xe0\x7f\x00\x3d\xf4\x58\x1c\x9c\x8d\xce\x74\x40\xb8\xe6\x28\xef\x1f\x89\xc7\x40\xd1\x7d\x09\xda\xe7\xda\x34\x7d\x55\xca\x38\x15\x3e\x1b\xb0\x12\x12\x49\x95\x15\x2a\x47\xc7\x58\x5d\x60\x03\xc6\x78\x29\x22\x6e\x36\xbe\xc6\xb7\x11\x5c\xaa\x56\x85\x90\xe8\x0d\xcb\xbd\xfe\x16\x47\xcf\x15\x98\xc5\x00\x85\xe4\x05\x41\xce\x05\xfc\x11\x3e\x02\x3c\xca\x93\xfa\x4f\x6c\xa7\x4a\xa2\x04\x06\xa2\xcb\x58\x44\x29\xf0\xae\x5b\xb2\x0f\x96\x8b\xa2\xcc\x25\xe3\x2c\xe3\x32\xe6\x1a\x66\xe0\x2a\x87\x68\x67\xce\x78\xb3\xa2\x13\x84\xe3\xaa\xb2\x00\x0a\x1b\x44\x16\x84\x3d\x81\x9c\xcd\x41\x9d\x27\x41\x25\xf0\x4c\x00\xea\xd8\xc6\x8b\xd3\xb9\xb4\x0a\x51\x84\x85\x43\x4f\x59\xa4\xb2\x1d\x11\x94\xd4\x3b\x3d\xb1\x9e\x33\xea\xee\x89\xc7\x9b\xd4\x9f\x9d\xb0\xa4\x1a\x5a\x03\x7a\xe8\x22\xd0\xb8\xb5\x2a\xc1\xcf\x85\x8c\x54\x2c\x72\xfd\xc2\x2c\xc3\xc4\xdd\x3b\xd0\x7e\x48\xb4\x1f\x0c\xd8\xa5\xcc\xe1\x46\xde\x42\x53\xbc\xd3\x51\x31\xbd\x53\x21\x14\x6e\xb3\x73\xf6\x2f\x95\x6f\x1d\x05\xd3\x56\x5f\xfa\xcf\x2f\x8a\x88\x09\x71\x9d\xf6\xce\x79\xb8\x0b\x02\x97\x6c\xb8\xe3\x62\xa1\x68\xe3\x90\x71\x62\x05\x45\x93\x02\x34\xcb\x72\xa1\x8b\xb9\xa4\x13\x78\xc2\x56\x82\x1b\x3b\x6f\xc2\x22\x7d\x8f\x9b\x31\x1e\xf7\xc5\x83\xf2\x18\x1c\xab\x46\x01\x60\xd8\x4a\xe1\xde\x49\x8c\x8f\x01\xa2\x80\x47\x05\x02\x0c\x3a\xb5\xa7\xad\xa9\x02\x9d\xd5\xba\x21\x1e\xd0\x0f\x56\xdc\xa0\x2e\x24\x14\x6a\x6b\x40\x4f\xec\x30\x50\xcc\xea\xf5\xc0\x1f\xcc\xc6\x83\xad\x43\x18\x48\xb0\x39\x82\xc5\x4d\x58\x5a\x5c\x67\x3e\x86\x1b\x32\x4c\x83\x6f\xa6\x6b\x51\xf5\x74\x04\x54\xe0\x30\xbf\x85\x79\x75\xaf\xc3\x4a\x8b\xdc\x2a\x2f\x60\x5b\x91\x0f\x6e\x93\xe4\xf1\x49\xc6\xf3\x62\x67\xa7\x6f\x9a\x2c\x81\xb0\x3d\x4d\xee\x04\x9b\xe5\xb9\x7a\x78\xec\x5e\xe8\xdc\x5a\xba\x6e\xd8\xc7\x20\xd9\xc7\xde\xf2\x5b\xd9\x20\xeb\xee\x8e\xc3\x98\x27\xbb\x1c\x1f\xad\xdf\xc9\x45\x91\xef\x16\x66\x22\x6e\xb3\xce\x9d\x62\x50\xd2\xc4\x70\x23\x77\x1c\xa9\x65\xcd\x85\xd1\x49\x6a\x59\x19\xd5\x6f\x87\xd4\xb2\x85\xaf\xb2\x49\x6a\x79\x71\x79\x71\x7b\x31\x7b\x7b\xf1\xff\x6a\x25\xfe\x32\xbb\xb8\xbd\xb8\xfc\xe3\xe2\xcd\xd5\xf5\xe2\xfa\xfc\xe6\xea\xc3\xf5\xd9\x79\x3f\x4b\x4d\xb3\xf6\xde\x04\x3f\x61\xe1\x77\x5e\xb2\xdb\x00\xa8\x81\xc9\x06\x64\x7f\x93\x62\x21\xcc\x2a\xb3\x98\x13\xb9\x9e\xc0\x42\x7d\xc9\xce\xf3\xfc\x62\xcb\xd7\xe2\x7d\x99\xa6\x00\xa7\xc2\xcc\x9e\xb3\x5c\xc0\xc5\x73\xc2\xde\xab\xf8\x22\x78\x0f\xd2\x11\x5b\x9b\x01\xdf\xe7\x71\x9c\x0b\xad\xf1\xf3\x13\xfa\x7e\x00\x1e\x72\xa9\x8e\x04\x9e\xe3\xf7\x3c\x49\xcd\xfd\xed\x25\x7b\xc5\xa3\x3b\xb5\x5a\x61\xfa\xcc\xc4\x25\x4e\xb1\x4f\xa5\x2a\x38\x13\x9f\x23\x60\x66\x6a\x9f\x27\x6f\xd5\xfa\x2b\x40\x95\x07\x84\xa7\x3a\x2e\x29\xa0\x4c\xb5\x68\x3f\xce\xdb\x37\x02\x6a\xe5\x3b\x7c\xf5\x0d\xbe\xd9\xee\xa0\x2c\xd2\x47\xc8\x14\x7f\xab\xd6\xed\x3a\x21\x60\x5d\x93\xb8\x09\x05\x12\x22\xe2\x9d\x50\x6b\xa6\x13\x79\x37\x97\xbf\x6c\x84\x64\xaa\xcc\xf1\x4f\x70\xcd\x37\x66\x66\x5a\xea\x8d\x00\xe1\xd0\x09\x7b\x10\x6c\xcb\x77\x68\x36\xc3\x9d\xc0\x89\x1b\xc0\x94\x81\x53\xc4\xbc\x9d\x26\xd2\xec\x16\x59\x62\xf3\x12\xea\x43\xff\x18\x37\x2e\xcb\x4b\xc6\x8f\xa7\x0d\xed\x3b\x4f\x2b\xf8\x3c\x70\x95\x79\xdc\xa4\x05\x08\xd1\xce\x0d\xda\x89\x4a\xdd\x95\x99\x67\x30\x7c\x66\x83\x93\xd0\xdd\xf7\x2a\x89\x59\x5c\x66\x69\x12\xb9\x7d\xf7\x41\xe5\x9d\x34\xad\x98\x40\x33\xfc\xd4\xa9\xa7\x85\xf5\x35\xac\x25\x3b\x27\x40\xd2\xf5\x10\xb6\x3e\x31\x65\x2d\x4b\x64\x94\x96\xa0\x0a\x55\x6a\x91\x9f\x14\x79\xb2\x5e\x83\x01\x6e\x73\xfd\xbe\x7d\x4e\x5b\xcf\x99\x77\x7c\x5a\x5b\x98\x74\x9e\xaa\x75\x12\xf1\x34\x04\x37\x7b\x54\x84\x23\xcd\xb4\xcb\x9e\x34\x33\x21\x0f\xc2\x56\xa8\x93\x0c\x28\xcb\x05\xf0\xb6\x2e\x60\x2b\x5f\xd0\x76\x77\x4c\xbd\x57\xcc\x5c\xd0\xb1\x5e\x21\xa5\xa5\x0d\x2f\xd8\x13\xce\x7f\xdb\x0a\x27\x81\x89\x89\xa2\xca\x4c\x3d\x48\x91\x83\x05\x0b\xb0\x0f\xd3\x52\xa9\xc0\x36\x71\x62\x4a\x0e\x9f\x6c\xc5\xc4\x56\x0e\x88\x8d\x99\xb3\xeb\xe4\x5e\xc8\x2f\xcf\x41\x1c\x7c\x20\xe2\xd1\x46\x2c\xac\x5d\xfe\xd8\x5b\x96\x3b\x00\x46\x6e\x56\x56\xd5\x20\xdc\x4a\x5d\x78\x13\xae\x4e\x58\xe3\xe6\xde\x85\x81\xc4\x9e\x8c\x2c\x53\x89\x45\x2c\xa2\xbb\x2f\xbe\x35\x7b\x90\x95\xad\x08\xe3\xec\xb5\x88\xee\xd8\x87\xeb\x0b\xcc\x06\x4e\x0a\x66\xb6\x02\xbd\xf1\x2a\x2d\x9d\x77\xb7\x82\xaf\x9f\x80\xdc\x68\xa8\xcc\x8c\x67\x16\x77\xe2\x5a\xa6\x42\x04\x88\x82\x7c\x49\xb3\x49\x52\x2e\x0d\x00\xc1\x78\x61\xc5\x47\xc0\x11\xcf\xf4\x16\xb4\x46\xca\x22\x10\xe8\x4a\xf9\x52\xa4\xba\xbd\xc1\x99\x8a\x17\x36\x4e\x72\x2c\x98\xa7\x51\x96\xf5\x63\x50\xd4\xd1\xe6\x31\x70\x63\xb1\xde\xd2\x83\xec\xee\x07\x1d\xd0\x6b\xa8\x90\xee\x17\xee\xf5\x5c\x8b\x9a\x62\x7d\xb2\x22\x45\x14\x4c\xe8\x07\xed\x6f\xb3\x5f\x9a\x92\xde\xab\x98\x60\x7a\x8e\xcf\xcb\x58\x41\x82\xbc\x27\x1e\x57\x11\x56\xc1\xe9\xa3\x6b\xf0\x0d\xe8\x42\xf0\x98\xa9\x15\x79\x13\xb3\x2c\x4d\x80\xc8\x35\x46\xce\x68\x60\xcf\xd0\x55\x74\x7c\x58\x9a\xad\x6c\x40\xf2\xf1\xde\x02\xf1\x7a\xe3\x8d\x3e\xc8\x65\xda\x55\x75\x72\xd7\x6d\xaa\x63\xb5\xbf\x5c\x3e\xd2\xa1\x57\xe8\x7e\x6f\xda\x3a\x55\x4b\xe8\xa8\x6e\x50\x5c\xcf\x06\x6d\x76\xa7\x3c\x89\xc7\x1c\xef\xb6\x4f\xae\xdc\xab\x7d\x15\xbc\xb2\x9e\x0e\xf7\x25\x3b\xcc\x8c\x68\xb6\xc3\x08\x7e\x2d\x8d\x7d\xdf\x5d\x1b\x02\x84\xda\x45\x08\x9d\x35\x6e\x49\xe6\x61\x55\xb8\xed\xb8\xe3\x5a\x5d\x6d\xcb\x51\x03\xdd\x24\x46\xd9\xd3\x97\x9e\x4b\xa5\x7f\x90\x8f\x60\xb7\xc0\x95\xeb\x28\x2e\xc6\x30\x05\xdb\xa1\x43\x8c\xaf\xe9\x4f\x3f\x88\x95\xe4\x8b\x41\x23\x5a\xef\x77\xbb\x8a\x8f\xe9\xf2\xa7\x58\x51\x65\xa1\xbc\xcb\x1f\xda\x73\x01\xfc\x99\x61\x5a\x17\x6c\x1b\x17\x71\x07\x5c\xc0\xda\x60\x76\x69\x8e\x00\xa1\x8e\x82\xc1\x66\xb9\xb0\xc1\xa3\x9d\x28\x5c\x72\x7f\x6a\xb5\xa0\x20\x36\xe2\x5a\x5d\x65\x37\xb1\x04\x06\x8e\x91\x0a\x22\x19\x64\xef\x45\x6a\x9b\x29\x09\xd8\x14\x4c\x55\x9a\x4b\x2a\xdc\x2a\xfa\xba\xf0\x4a\x25\xdf\x6d\x42\x5e\x2d\xcc\x9e\x10\x5a\xa5\xf7\x14\x47\x0b\x88\xe7\x41\x0b\xcc\x54\xf0\xcc\x5c\x10\xcc\x75\x18\x02\xbc\xb4\xbd\x03\x1c\xbc\x26\x6b\x9b\x8b\x75\xa2\x0b\x11\xa6\x08\x86\xef\x3f\x9a\x02\x61\xe5\x06\xdd\xd7\xf5\x9d\x0a\x84\xfb\x4c\x61\xb3\x6a\x47\xd4\x67\x97\x89\xf8\xc2\xbd\xd7\x3f\x19\x6a\x59\xdc\x7e\x93\xa8\x9c\x02\x38\x07\xf0\x0a\xa0\x91\xef\x49\x3b\xca\x78\x37\x48\xc4\xc4\xc3\x3d\xaa\xcd\x0c\xd1\xba\xe4\x39\x97\x85\x10\x7a\x2e\x29\xfa\x88\xbc\x65\x21\x35\x47\x0d\x0d\xe7\x0c\xdc\x48\xe9\x02\x69\x80\xe0\x95\x15\x4f\xd2\x32\xef\xbc\x73\xe2\xac\x3c\x88\x7b\xa0\xaf\x97\xce\xa0\x58\xd6\x36\x68\x2e\x8b\x35\x58\x45\x8e\x3a\xa3\x1e\x3b\xac\x26\x79\x76\x34\xc1\x6e\xb9\xc3\xc7\xdb\x39\x1c\x3b\x12\x5b\x7f\xd0\x8b\x4c\x8d\xd8\xf1\x7e\xfa\x41\xbf\x57\x1d\x29\xc1\xfa\x53\xc3\x31\xd6\x13\x43\xff\xd4\x45\xa2\xcf\xf5\x1d\x84\x9f\xf6\xdd\xc7\xf7\x3b\xd9\xff\xf0\xfd\xfe\x20\x55\xe7\xde\x05\xb3\x76\xc3\x65\x9c\x9a\x7b\x2a\x2f\x6a\x27\x90\x07\xfb\x1a\xbb\xb8\xb0\x9b\x63\x77\x66\x17\x24\x4a\x2c\xa2\x46\x96\xdd\xbe\x7e\xaa\xa5\xe7\xf5\x02\xea\x6a\x5f\xa9\x26\xcd\xb5\x25\x6b\xf8\x93\x9d\xa4\x2b\xdd\x82\xed\x9e\x82\xab\x64\xfd\x0d\x5c\xb2\xde\x35\x77\xca\x88\x96\x22\x9d\x5f\x0e\xf9\x7d\xe4\x62\x84\x24\x1b\xb3\x99\x85\x3c\xbd\x73\x49\xca\xb6\x18\x79\x85\x90\x1b\x72\x51\x69\xf6\x9d\xcb\xbc\xfc\xee\x5f\x2d\x13\xd1\x8e\xad\xa0\xaf\x81\xee\x4b\x45\x51\x99\x43\x58\x94\x5c\x37\x4c\xe0\xd9\x34\x86\x4e\x7d\x86\x27\xb2\x03\xb3\xa0\xf9\xd4\x66\x3d\x38\x5f\x5d\xa5\x51\xb7\xe0\xa2\x41\x8d\x5e\x77\x16\x92\xf4\x4a\xae\x0b\xa6\x0b\x91\xb5\xee\x4a\x15\xa3\xab\x2a\x43\x7d\x84\xd9\xe5\x45\xb0\x07\xda\xba\x23\xf6\xe8\x59\x70\x9d\xfe\xd3\xcd\xd5\x25\xcb\xf8\x0e\x70\x61\x85\x22\xfd\x70\x20\x63\xac\xaf\xdf\x7d\x23\x50\x6d\x7c\x75\xb1\x61\x9f\x5a\x80\x69\xbb\xef\x96\xbe\xd8\xb4\xa1\x60\xce\xd0\x94\x34\x4b\x39\x57\xe9\x49\x96\x72\x19\x40\x7f\xf5\x94\xd5\x3e\x1f\xc6\x7a\x5d\xd4\x87\xd0\x34\x50\x01\x70\xa7\xd0\x5c\xc8\xcb\x56\x70\x68\x55\x59\xfb\xa8\xf0\x6e\xe7\x1e\xd1\x0b\x7a\x7b\x87\x74\xfa\x3c\x32\xcb\x04\x99\x05\x6c\xc8\xda\xa1\x1e\xb8\x06\x40\xe2\x88\x81\xea\x97\x01\x9f\x4b\xab\xf2\xaa\x1e\x34\x8b\x91\x7b\xa1\x4c\xf4\x06\xfc\x93\x18\x10\x00\x70\x10\xed\x2f\x88\x5c\xc8\xb9\xd4\x66\x40\xc1\xa7\x29\xee\x05\x39\x36\x2a\xc1\xb8\x8b\xd7\x6f\x5d\x7c\x1f\x07\x89\x84\xb8\x3a\xba\x3e\x30\xcc\x8e\xb9\xc0\xb4\xea\x52\xef\xe7\xb8\x7f\xc7\xb3\xbe\xac\xb1\xa3\x4b\xdc\x37\x4a\x8e\x79\xa6\x6e\x75\x82\x42\x27\x68\xf3\x54\x52\xc7\xc2\xde\xfb\x20\x8f\xdc\x7e\x5a\x49\xaf\xf7\xf3\xeb\x0f\xbe\x84\x0d\xcb\x04\x1c\xb1\xf7\x04\x24\x70\x0e\x5b\xe3\xec\x65\xb3\xca\x41\xf9\x04\xd8\xab\xd0\x93\x36\x65\x37\x42\xb0\x8f\xd0\x53\xe6\x63\x1f\x49\x59\x0b\xe0\x82\x05\x4f\x5a\x85\x4f\xe0\xe9\x0b\xb9\x52\xc7\x6d\x06\xf9\xba\x01\x47\x3b\xaa\x57\xda\xeb\x79\x2c\xe0\x0d\x52\x19\xe5\xd3\xe6\xdf\xb7\xb6\x6b\x0f\xbc\xed\xbd\xbf\x93\x53\x56\x9e\xad\xa9\x39\x9f\x61\x88\x0f\x61\x78\xaa\x4d\x12\xd3\xca\x09\xb2\x16\xdf\x49\xf5\x20\xd1\x16\xa0\x2f\xb1\xe7\x66\xfd\xc1\x01\x86\x0e\x54\x34\x0b\x4a\xdc\x0d\x5f\x00\x8d\xf2\xcc\xfd\x9b\xdd\x60\xac\x08\xeb\x0c\x3a\x21\x1a\x8c\x1f\x52\xf8\x80\xdd\xfc\xf9\x6c\xc2\x5e\x4d\xd8\xd9\x84\x4d\xa7\xd3\x17\x13\xd4\xeb\xa5\x1a\xe1\x2b\x88\x1c\x2b\xf8\xda\x94\x4d\xca\x09\xab\xe0\x03\x20\x7b\x63\x0e\x2b\xcb\x16\xc6\xfd\x53\x81\xe7\xc1\x36\x01\x73\x18\x29\xe1\x82\xe2\xea\xd1\x46\x25\xbe\x52\x00\xd1\x14\x91\xca\x2d\xc8\x53\x17\x2a\xb7\x80\xb5\x7b\x9e\xf3\x44\x42\x6a\x37\x6f\xc2\x75\xe9\xcb\x01\xb9\xb3\xf8\xcc\xb7\xd0\xfe\x44\x3a\x7e\x4b\xd3\x4d\xb7\xae\xfe\xc5\x2e\x23\x87\xf4\x43\x9e\x14\x85\x39\x9d\xf5\x5c\xde\xb0\x97\xff\xc1\x66\x59\x96\x0a\x36\x63\x7f\x63\xaf\xb8\xe4\x92\xb3\x57\xec\x6f\xec\x8c\xcb\x82\xa7\xaa\xcc\x04\x3b\x63\x7f\x33\xdd\x66\xca\xbb\x54\xe6\x38\xdc\x4d\x18\x67\xb2\x4c\xf1\xd4\x7f\x6e\xc1\x60\x2f\x5c\xbb\xb8\x1f\x9d\xa5\x28\x1e\x84\x90\x4c\xab\x2d\x1d\x85\xbf\xba\x98\x84\x4e\xe4\x3a\x15\x05\xcd\x87\x2a\x6c\x0f\x3f\x70\x02\x2d\x7d\x39\x97\xce\x97\xf7\xab\xa9\xf1\xaf\xec\x6f\xec\xb2\x4c\x53\x53\x25\xb3\xd1\x98\x89\xf4\x92\xd9\x34\x0a\x21\xa7\x0f\xc9\x5d\x92\x89\x38\xe1\x90\x48\x61\xfe\x75\x7a\x0b\xa3\xbd\x28\x3d\x67\x5e\xb8\xa6\x9d\xf6\xca\x31\x5b\xcf\x93\x24\x65\x3b\x09\x1e\x3b\xf8\x3d\x37\xbf\xea\xab\xe3\x2d\x22\xcf\x14\x4a\xeb\x81\x0c\x56\xd4\xcd\x09\xa5\x7e\x0e\xda\x02\x6a\x87\xad\x2d\xab\xe5\x28\x08\x0f\xf5\x63\x37\x59\x50\x8e\x7a\xf4\x3b\xe4\x00\x19\x9f\xa1\x5b\x6e\x43\x84\xa4\x92\xe6\x0e\xb6\xa4\xa7\xfa\x19\x14\x15\x72\xe2\x23\x3f\x57\xa5\xb3\x2a\x5d\xac\x92\x41\x1a\x63\xb5\xca\x7e\x20\xdf\x05\x26\xa8\x99\x65\x9a\xa4\xa7\x66\xa9\x9e\x5e\x2a\x69\xae\xad\x3a\x59\x23\x3d\x11\xc0\x88\x34\x10\xb2\x5a\xa3\xe0\xb6\x6a\xb2\x06\x4b\x00\xec\x03\x53\x25\x84\xb6\x15\x66\x17\x30\x43\x90\xee\xe6\xd2\xbc\x41\x27\x12\xc0\xdc\x13\xc7\x62\x8b\x5f\xb3\x6a\xe6\xf4\x2d\xda\x90\x83\xc2\x5b\x26\x58\x5f\x0e\xed\x11\x13\x8e\x52\xb6\x8e\xf0\x8a\x5f\x06\x0c\x6e\x54\x9a\xa5\xf7\xc0\xb8\xe7\x52\xa4\x4a\xae\xcd\xac\xe8\xda\x04\xd4\x96\x27\xc7\x00\x4b\xc2\x2a\x60\x61\x9d\x35\x30\x87\x25\x3d\x42\x43\x62\xce\xc9\x24\xf6\xf7\x7b\x5d\x2e\x8d\x1d\xe1\x3c\xb2\xee\x34\xa4\xc6\x75\x25\x14\x1f\x17\x5f\xfe\xa0\x45\x0e\x34\xcb\x88\x70\x70\xde\x7e\x3c\x38\x3d\xd9\x06\xb6\x68\xd8\xa2\xea\x05\xc6\xb6\xbb\x42\x28\x9a\xd0\x48\xad\x1e\x30\x1f\xbf\x26\x46\xf6\x29\xe5\xe0\x5b\xb5\xdf\xe1\x39\x53\x1a\xfd\x69\xac\xbe\xbb\xed\xbd\xc7\x80\x0f\x7e\x42\xb9\x97\x85\x5a\xd9\x4c\xca\xe1\x67\x7a\x43\x70\x67\x18\x4a\x25\x24\xd9\x0e\x85\x69\x9a\x13\xa7\x33\x1f\x5c\x2e\x28\x22\x31\xac\xb2\xf5\x0e\xbb\x92\x6f\xf0\xf5\xf7\x2a\x4d\xa2\x7e\xd0\x9b\x3d\xae\x36\xea\xa1\x05\x45\xb4\x14\x80\x02\x25\xff\x0f\x55\x0a\x2d\xf4\x42\x44\x85\x8f\xb8\x35\x1b\xf7\xbf\x1a\x68\xb3\xff\x0e\x8e\x1e\x65\xd7\x6d\x20\xfa\xe8\x62\x78\x70\xb6\x02\xc1\x26\xf0\xca\xa3\xaf\x15\x72\xe9\x20\xb6\x1d\x71\x72\x41\x57\x7a\x1e\x36\xe8\x87\x8d\x4a\xcd\x5d\x4c\xc6\x44\x56\x3a\x97\x99\xc8\x23\x05\x00\x15\xcc\x83\x57\x2c\xda\x24\x69\xec\xc5\x5b\x9e\x03\xa2\x17\x70\x77\x2f\x48\xa1\x4e\xb8\x18\xb3\x2d\xbe\xe7\xd4\xb5\xd3\xce\xaa\x54\x1f\xe7\x81\x7a\x3c\x88\x5e\xdf\xb4\xff\x85\xa0\x64\xd8\x15\x44\x2f\x54\x8b\x16\x9a\x4e\xaf\xd4\x67\x94\x87\x17\x74\xa4\x57\x56\x07\xd3\x5e\x9c\x8a\xda\xb8\xd2\x34\xab\x77\x25\x90\xce\x22\x8a\x0a\x01\x24\x5a\x40\x75\xb6\x82\xa3\x2d\xe6\x29\x20\x69\x50\xe7\xd2\xc7\x47\x9f\xe9\xd0\x2e\x6b\x1d\x67\xe4\x54\xb5\x20\xc0\x09\x7b\x56\x69\xe8\x33\x20\x25\x95\x0a\xbe\x47\x31\xac\x4a\xd7\xc0\x74\x9d\xb0\xa4\x98\xcb\x44\xe3\xcc\xcc\x45\x2a\xee\x4d\xed\x42\x67\x31\x61\x5d\xec\xdd\xd9\x36\x1b\x70\xe4\xdc\xa6\x1f\x3b\x71\x73\x58\x84\x79\x48\x6e\xc9\xc1\x31\x1d\x0b\x6d\xec\x46\x90\xe5\x10\x9f\xcd\x02\x48\x20\x16\x82\xf0\x8f\x58\x48\x5b\x3f\x40\x85\xa0\x7e\xea\x5c\x5e\xac\x20\x07\x14\x32\x4f\xe3\x18\x6f\xa1\x56\xa8\xc1\x31\x8d\x25\xe4\x1c\x56\x74\x27\xb7\x03\x41\x02\x8b\xb8\x92\xc4\xbd\xc8\x77\x05\x38\x75\xa1\x5f\xa5\xe0\xc5\x86\x25\xc5\x04\x28\xe2\xec\x4e\x39\x97\x3c\x26\x7d\x6a\x2a\xce\x74\x0d\xcc\xfb\x9e\x71\xa6\xdf\x97\xea\xbe\xcf\xb0\x3d\x16\xf5\x85\xab\x3a\x4b\xb9\x5c\xe0\x09\xf2\x15\x70\x5f\x81\xf6\x65\x57\xa8\xb3\x5c\x2e\x1c\xad\xcd\xa3\xd4\xd3\xed\xf7\xd7\x15\x45\x5a\x63\xc7\xda\x0f\x4d\x70\x32\x78\x5a\x6b\x7b\x3d\x71\x7e\x1a\x42\x17\xe4\xcc\x46\x60\x87\xef\x02\x1e\x12\xc6\x6b\x48\x04\x3b\x5b\xf7\x61\xc2\xec\x0c\xf8\x56\xf1\x49\x43\x46\xbe\x76\x86\xd4\x87\x7d\x3c\x34\xa6\x61\x21\x1e\x04\x8f\xd9\x53\xad\xa7\x85\xc8\x74\xfa\x51\x9a\x50\x19\xdb\xda\x20\xdc\x87\xc9\x13\x02\xfd\x70\xce\xcd\xd3\xae\x6d\x1a\xde\xc3\x54\x0b\xb6\xf2\x31\x7d\xd4\xb0\x4f\x0d\xf5\x94\xf8\xdc\x6b\xa8\xd7\x94\x5d\x48\x66\xcd\xbd\x09\x7b\x86\x13\x4b\x3f\x23\x17\x24\x09\xe4\x52\xec\x3c\xa6\xd5\x43\xd9\xaa\x75\x28\x06\xe6\x0c\xf8\xe5\x86\x91\xa0\x5e\x6a\xc3\x27\xed\x97\x57\x09\xe4\x2c\x1c\x92\x96\x8e\x51\xc4\x25\x16\x40\x87\x24\x5e\xbb\x77\x68\xb4\x2b\xef\xcd\xf6\x0d\xb6\xf1\x2e\xf6\xca\xbe\x68\xba\x28\x2b\xe9\x3c\xb5\xbf\x33\x95\xcf\xa5\x2d\x8d\x5c\x92\x1a\xb5\x94\xea\x45\x05\x10\x6a\xb2\xf9\x83\x99\x0a\x20\x06\x2b\x9f\x05\xaa\x6c\x9e\x7f\xb5\xbe\x0b\x00\x28\x62\x29\xbc\xb4\xf7\x94\xcd\xfc\xd7\x8c\xe1\x61\x26\xf8\x16\x8f\xf9\x3a\x47\x63\x9a\x9a\x4e\x49\x0a\x4b\x09\x19\xa4\x37\xe8\x12\x88\x4d\x57\xa5\xd9\x8c\x02\xf6\xd7\xb9\x34\x9d\xc7\x56\x09\xe0\x7e\xa9\x5f\xe6\xf2\x9d\xd2\x36\x9b\x5e\xfb\xfe\xb0\x18\x52\xea\xb6\x67\x4e\x45\x8c\xfe\xf0\x1a\x0e\x6d\xf2\xf9\xd7\x64\xe5\x21\xaf\x85\x28\x31\x76\xaa\xcc\x7d\xa3\x22\x2e\xe7\xf2\x2f\xa6\x7b\x50\xd4\xd9\x29\xa2\xab\x15\x2e\x61\x2b\xc3\xcf\x9e\x7f\xc4\x42\x9f\xff\xeb\x8b\x8f\x2f\x10\x87\x5e\x6a\x10\x6e\x9c\x54\x0f\x10\x47\x04\x5e\xa6\x29\x44\xa2\x6d\x0b\x1c\x19\x85\xff\x04\xef\x83\xe5\xd0\xa5\x6e\x21\xab\x26\xc6\x90\x85\xde\x37\x83\xbd\xf3\x79\xc6\x22\x5e\x44\x9b\x13\x6b\xcb\xd1\x36\x66\x4f\x3f\x1a\x3e\x54\x70\x33\x96\x56\x3b\x17\xb6\xb9\x70\xe6\x5b\xc7\xce\x57\x99\x2f\xa6\x09\x00\xac\xb9\xad\x0b\xc3\x38\xf2\x50\x9c\x9c\x5e\x93\xdc\xdb\x79\xee\x71\x2b\xcb\xe6\x6f\x9c\xe4\x25\x97\x7c\x2b\x62\xf6\x0c\x32\xa6\x9e\xd9\xc1\x9f\xcb\x6c\x39\x4d\x77\xab\x82\x28\x9e\x4c\xa7\x4c\x41\xc0\x68\xcf\x29\xb7\x88\x9b\xd7\xa4\x3d\x9d\xdd\x79\xd1\x6a\xb7\x75\x5c\xdf\xb8\x2f\x0d\x37\x58\xd0\xc7\xe5\x7a\xe7\xa6\x0a\x11\xaa\x32\xa9\x73\x7d\x37\x61\xcb\x9c\x4b\xd0\x9e\x88\x43\xa3\xca\xaf\x4e\xb8\x3c\x23\x7f\x92\x4d\xa1\x90\x3c\xdd\x01\x76\x7c\x32\x97\x48\x36\x05\xac\xc4\xbb\x28\x4d\x22\xb6\xce\x79\xb6\xa9\xd9\x41\xe2\x5e\xc8\xe2\x9c\xd8\x15\x2c\x48\xfd\xd8\xd0\xb2\x63\x6b\x38\x8a\x73\xef\xa2\x6a\xed\x70\x4f\x43\xe1\x3d\xac\x98\xa8\x42\x37\x6a\x0b\x6a\x75\x13\x7c\x42\x52\x68\xc0\xc7\xc5\xfe\x5c\x2e\x55\x6a\x09\xcd\x2e\x5e\x33\x95\x83\x96\x40\xa1\xe8\x4f\x49\xdc\x75\x8a\x25\x32\x16\x9f\x8f\x62\x15\xe8\x3f\x90\xac\x79\x67\x3e\x13\x50\xd6\xd7\x1b\x0b\xab\x28\x17\xe6\xb0\x28\xec\x0d\xae\xf1\x94\xae\x23\xec\x66\x69\xb1\x01\xd8\x1b\x02\xae\x7d\xa7\x6e\xf9\x8e\x45\x1b\x2e\xd7\xc1\x15\x1a\x50\x48\x22\x53\x39\x6a\xee\xdd\x03\x7d\x97\xca\x6d\xd6\x26\xe5\x22\x12\xea\xdb\x39\xbc\x11\x6c\xa9\x6c\xc2\x21\x5f\xaf\x73\xb1\x86\x44\xfa\xb9\xac\x64\x53\x03\x75\x99\xa5\xfb\xc7\xef\xf4\x25\xa3\x3e\x0e\xa3\x43\xd7\xad\xa5\xc8\x77\x2e\x95\x8f\x04\x2b\x5d\xd7\x35\xba\x75\xc2\x12\x31\x9d\xb0\xef\x3d\xc0\x54\x44\x4a\xba\x5c\xc0\x8e\x44\xb0\x9a\x6b\x7a\xcf\x5e\xd4\x42\xfd\xd0\x5e\x77\xf8\xad\x21\x7b\xd9\x3a\x69\x7a\x93\x29\x0b\x5e\x94\x23\xf6\x4a\x92\x36\x3e\x33\x2f\xdf\xe0\xbb\xbd\x18\x6c\x9e\x99\xed\xcd\xd2\xee\x98\xe7\xcd\x0e\x6f\xbe\xed\x69\x79\xdb\xfa\x7a\xaf\xa3\x33\x55\xdd\x8e\xce\xc7\x30\x29\x2d\xb7\xc2\x7e\x5f\x67\xda\xc1\x17\xd0\xd3\xa6\xb1\xae\x4c\x0b\x46\x25\x98\xb9\xae\x5f\xb7\x5a\x76\x80\x2c\x57\x71\x19\x89\xd8\xac\x5c\xb0\xdb\x11\xb9\xe1\x68\x0b\x2a\x9b\x64\xdb\x81\x50\xe1\x5e\x01\x81\xeb\x2f\x75\x37\x1e\x44\x77\xeb\xba\xff\x43\xc7\xbd\xd8\x5a\x26\x6d\x9d\x1e\xae\x4f\xec\xa7\x7c\xe4\x39\xe5\x3e\x5f\x25\xa9\x55\x79\xb2\x4e\x24\x2f\x54\xce\x9e\xbb\xe4\xc4\x17\x4e\xd9\x06\x7a\xf1\x31\xb6\x89\x4a\x17\xe1\x36\xd1\x7e\xf7\x02\x3c\xb3\x88\x17\xe3\xb8\xb3\xc6\x32\x3c\xc3\x24\x35\x4f\xe9\x82\x6f\xb3\x90\xf6\xd1\xe9\x06\x53\xcf\xa4\xd8\x09\xcc\x56\x0c\x7c\x7c\x89\xf6\x39\x58\x73\x49\x9e\x71\x1c\x37\x95\x87\xbc\xc5\x9d\x67\x73\x56\x16\x8b\x03\xa9\x4c\xf0\xe5\x71\x0e\x12\x0a\x97\xbf\xe3\x59\x3f\x39\x04\xa7\xab\x31\x26\xa1\x38\x31\x65\x6b\xa9\x54\xe7\x67\xbf\x32\xc0\x48\xb2\xca\x7a\x88\xf7\xfa\xad\x0d\x68\xf8\x7b\x4b\xe5\x22\x00\x03\x81\x2c\x79\x1a\xac\x0a\xbc\x82\xba\x6d\xcd\x9c\xe2\x96\x51\xe2\x2c\x55\x65\xcc\x68\x53\xa3\x70\x71\x3e\xc5\xd3\x11\x68\x2b\xa7\xd3\x2e\x0e\xaf\x91\x8a\xa5\x6e\xff\x81\xf7\xda\x57\x20\xfc\xd6\xb1\x03\xf7\x2e\x7d\xea\xd9\x27\x1b\x7a\xea\x69\x18\x7b\xb7\x1d\x8f\x1a\x7b\xe7\xad\x05\x0e\xad\x71\x8e\x3c\xb8\x37\x25\x71\x0a\xeb\x2d\x74\x74\xb7\xb0\x7c\x56\x02\x88\xfa\xee\xe8\xcf\xd9\x4c\xdb\xfe\x4f\x65\x3c\x17\xb2\x58\xc0\x17\xc7\x7d\x0c\x3e\xf2\x1e\x5e\xaf\x18\x4c\x83\x1c\x96\xff\x75\xab\xd0\x0f\x6d\x09\x33\xfe\x9b\xdd\x90\xef\x45\x5b\x55\x7b\x73\x3a\x3e\x4f\x00\x1b\x13\xc4\xec\xdc\xc0\x75\x0c\x17\x35\xe8\x80\xde\x0b\x1a\x54\xd9\xda\x07\x35\xc8\xd7\x1e\x42\xaa\x50\x0a\xb9\xa1\x28\xc3\xd3\x6c\xb5\xf6\x6f\x01\x89\xf6\x65\xe5\xdf\x40\x78\x68\xc6\x2f\x65\x7f\x15\xb9\xf2\x69\x0b\xe8\x54\x09\x0b\xee\xb5\xd7\x0f\xd7\xff\x44\x7b\x1c\x95\x27\x43\xe9\x35\xf8\x0b\x71\x92\xe0\xcd\x77\xb9\xb3\xd7\x91\x2e\x3a\x75\x11\x2d\x3a\x78\xf6\x07\x55\x25\xb8\x78\x86\xbc\xf9\x49\xed\x30\xb3\x0b\xf4\x14\xee\xd5\xc4\xfa\xb7\xe5\x19\xe1\xd0\x08\xf2\x5a\x0f\x32\x4c\xa1\x11\xff\xf5\xeb\x7f\x4f\xbb\x94\x9d\xa1\xea\x63\x61\x3d\xae\xf2\x6f\xf2\x44\xc8\x18\x82\x86\x3c\x6e\x4a\xc0\xc8\x8a\x17\xb9\xb2\x3d\x9b\x69\xf8\x28\xd9\x7d\xed\x47\xad\x5e\xe0\x24\xfa\x02\x91\x67\xbf\xc9\xba\xe5\x5b\x89\x4b\x75\x99\x12\x7a\x11\xef\x24\xdf\x36\xb5\xb0\x9f\xb4\x8e\xbb\x44\xa4\x31\x54\x91\xbe\xbe\x2f\x7a\x12\x8b\xe8\x6e\xac\x4d\x70\x30\x81\xb5\x88\xee\xd8\x8f\xb7\xef\xde\xa2\x5e\x61\xa2\xe7\xf2\x92\x17\xc9\xbd\xf8\x90\xa7\xce\x6d\x4d\x8c\x24\x79\x6a\xd7\x48\x95\x50\x35\x20\xef\xb0\xec\xab\xd6\x70\x08\xf9\xae\xb7\xbb\x93\x65\x19\xdd\x89\xe2\x34\xe7\x32\x56\x5b\x6c\xc6\xa9\x2e\x57\xab\xe4\xf3\xb4\xe0\x79\x07\xf9\x35\xfa\x11\xbe\xa2\x9d\xeb\x25\x4d\x0a\x6f\xf3\xa2\xa9\xfb\x00\xd9\x89\x24\x94\x5b\x31\x6e\xe1\x0a\x9c\xf3\xad\x00\xf6\x32\x56\x25\x8e\x87\x52\x30\xe1\x0f\xf4\xd5\xb4\x26\xa4\xb7\x22\xf5\xd6\x8f\x81\x71\xff\x31\xa8\x55\x55\x41\xd8\x56\xca\x6b\x96\x6d\xf9\x1d\xde\x0f\xd7\xb9\xd0\x7a\xc2\xb4\x82\x1a\xcf\xa5\xc5\x4c\xdb\xbc\x1e\xc0\x67\x00\xff\x61\xba\x63\x91\xca\x12\x90\x78\x73\xed\xda\xa8\x07\xf0\x27\x87\xe9\x6d\xa0\xca\x59\xca\x22\x49\x19\x5f\x15\xe4\x6c\x06\xb2\x67\x2b\xee\xa2\xa7\x73\x09\x21\xc3\x08\x9a\x0f\xa1\x7c\x17\x26\x70\x8d\xd0\x6c\xc5\xa3\x24\x4d\x0a\xa2\xa0\x81\x64\x18\x6e\xda\x6b\xce\x03\xd3\x97\x39\xdf\xf1\xd4\x5f\xac\x78\x5a\xfa\x8c\xbe\x13\x2d\xea\x14\x67\xbf\x0b\xff\xb7\x72\xcf\xed\x3b\x75\x8f\xb8\xf0\x1e\x73\xf8\x34\xaf\xb4\x4e\x71\xd4\x9f\xe3\x49\x6c\x71\xa2\x15\x53\xd7\x33\xcf\xba\xe3\x07\x7c\xe7\x1d\x97\xea\xa9\xd5\x89\x69\x7e\x61\x44\xef\xb5\x1b\x61\x5f\xc8\x5d\xd0\xc5\x81\x3b\xa4\xfa\xd6\xdb\xfd\x5e\xa9\xf4\x58\x8f\x37\x4f\xed\x86\xba\x00\xe9\xc4\x63\xae\x6b\x38\x01\x9c\xe3\xe8\xe2\xb5\x8b\xbd\x3a\x52\xd9\xaa\xe0\x0a\xc1\x82\xa8\x0a\xb0\x51\x40\x25\x7a\x10\xc3\x3a\x6b\x09\xbe\x8f\x44\x3e\x43\x19\x88\xda\xb1\xa6\x73\xd3\x05\x1f\xe4\xb2\x73\x5f\x47\x20\xde\xab\xd5\x70\x94\x33\x0c\x85\x0e\x6b\x9f\x72\x8e\xb1\x90\xa0\xd3\xf5\x63\xf0\x6d\xdb\x9f\x28\xaf\x6c\xce\x27\xb2\x92\xe7\x32\xb0\x88\x91\x55\xc7\x42\xcb\x5d\xaf\xb5\xf9\xcb\x2a\xd3\xf0\x68\x7f\xd9\x31\x2c\xcc\xbd\x01\x95\xd7\xa1\x9e\x12\x60\x02\x22\xb5\x5d\x26\xd2\xa6\x2a\x93\x13\x19\x4c\xf9\x99\x25\xb9\x73\x0e\x7f\x6b\x92\x23\xcb\x7e\xad\xef\x9d\x19\x11\xf2\x05\x86\x5b\xd6\xbe\xeb\x6e\x78\x7f\x7a\x5c\xc2\xe8\x0e\x94\x6a\xbd\x05\x89\x66\x3c\x7d\xe0\x3b\x0d\x9a\xa3\xc2\xec\x8a\x2b\x74\x9c\x56\xeb\x3f\x09\x8e\x77\x4b\xa0\x48\x02\xde\x25\x49\x11\x53\x5b\x12\xe4\x6f\x10\xa9\x55\x57\xf5\xbc\x38\xcf\x74\x7b\xe7\x7c\x9d\x58\x48\xde\x1b\x0b\xc1\x60\xe4\x3f\x46\xf8\xa3\xc7\xc9\x7a\xa4\xaf\x37\x38\x26\xd1\x22\x23\xb8\x08\x24\xf0\xc0\x76\x6c\xbe\x3d\x61\x5b\x9e\x48\x5a\x06\xa8\x60\x15\x8b\x65\xb9\x5e\x77\xba\x20\xbf\xfd\x58\x46\x75\x9d\xfc\xd3\xfb\x9a\x7b\x99\x9d\x1e\xc3\x1b\x7b\x61\xbf\x84\xee\x61\x73\xaf\xfa\x32\x0e\xd8\xaf\xe8\xed\x6e\x0d\x39\x35\x26\xd1\xe3\x78\xbb\x2f\x86\x78\xbb\x2d\xc6\x07\x52\xad\xe8\xba\x6a\x71\x18\xbf\xb9\xc1\xbf\x8c\x1b\x7c\xd0\xa4\x40\x7a\x8f\x45\x52\x35\xd0\x7b\x6a\x78\x20\x4b\x98\xa3\x93\x84\x5a\x91\x1a\xb8\x16\x32\xd6\x6c\xc9\xa3\x27\xa0\x0d\x83\xd3\xf1\x78\x7f\xdb\x1e\x70\xc9\x8d\xda\x0a\x06\x9f\xd2\xa8\x7d\xc0\x28\x9b\x6d\x02\xa8\x45\xd3\x40\x8f\xc8\x20\xbc\x07\x1c\xa7\x88\x0c\x89\xbd\x51\xfd\x5c\x8a\x07\x66\x4e\xab\x49\x08\xe3\x0a\x86\x07\x44\x71\x5e\x18\xeb\xb0\x82\xf9\x76\xa9\xfb\xb9\x58\xf3\x3c\x86\x4c\x03\x5a\x92\x29\x8f\xee\xcc\x7f\x43\xfd\xe8\x8b\x04\x35\xb3\xfc\xdc\x08\x7f\xf4\xa5\x25\x32\xca\x81\x94\x89\x50\x6d\xbe\x7e\xf8\xba\x66\x3c\xca\x95\x46\xa7\x8c\xd3\x92\x84\x4c\x57\x30\x60\xef\x93\xb8\xe4\x29\x7e\xb1\xd3\x93\xcd\xf5\x51\x7c\xe3\xb3\x40\xf6\x45\x7c\xce\x52\x2e\xab\x6b\x12\x9b\x0b\x5c\x35\x49\xcf\xcc\x77\x94\x6b\xc7\x54\x65\x34\x75\xe4\x45\xa0\xb8\xea\x97\x15\x5a\xc7\xb9\xe0\xf1\x2e\x24\xa6\x4a\x24\xe9\xee\xf3\x78\x9b\x48\x33\xf4\x56\xd5\xcb\xed\xaf\x96\xe0\x17\x01\x97\x20\x7e\x91\xa6\xb5\xa5\xaf\x99\x14\xc6\xa4\xe2\x79\x92\xee\xc0\x8a\xce\x72\x71\x12\x7c\x27\x58\xdf\x94\xef\x01\x54\xc5\x44\xa2\x50\x6a\xb1\x2a\x53\xb4\xb5\xe1\x36\xea\x1a\x40\xeb\xf0\xc3\xc5\xc4\x1c\xb3\x05\x51\xce\x07\x1f\x46\x21\xa7\xc7\xc0\xce\x37\x62\x60\xe3\xe2\x38\x9e\x38\x2d\x07\x88\xef\x46\x3d\xd8\x44\x9f\x07\xee\x91\x9c\x5d\x67\xca\xa3\xf9\xee\xfb\xad\x2f\x7b\xef\xb1\xab\x13\x3b\x3f\xae\x04\x6c\xe8\x37\x11\xbb\x15\x99\x48\x68\x0e\x69\x21\x7a\x7f\x68\xa9\x31\x5f\xc8\x8c\x25\xec\xda\xf6\x7a\x5f\x75\x87\x32\xd7\xba\x44\x2b\xc9\xe6\xe5\xef\x7f\xff\x07\xc1\x7e\x0f\x09\x54\x64\x85\x63\xd4\x05\xa8\xd3\xb0\x74\xd8\xa8\xdc\x07\x04\xf2\xaa\x35\x46\x84\xb5\x01\x1f\x6d\xb6\x32\x40\x07\x79\xb4\x61\xba\x5c\x22\x2e\x8e\x93\xe3\x9e\x4b\xc7\x4c\xfa\x56\x01\xc4\x0d\xcf\x33\x5b\xfb\xff\x25\x6e\x6a\x64\x07\x9f\xcb\x4c\x21\x79\x2e\x00\x0a\x97\x82\x6d\x79\x7e\x07\x62\x6f\xa4\xe8\xcd\x78\xc1\x9e\x27\x62\x5a\x75\x5a\xbf\xa8\xd4\x87\xc2\x04\x48\x8a\xc9\xf2\x52\x4a\xab\x5e\xc1\x8c\x39\xe6\x3d\xc8\x93\xb9\x5c\x96\xe1\x8d\xab\xe2\x82\xf6\x53\x0b\xdc\xd0\xb0\xd9\x2a\x60\x4a\xa0\x4a\x71\x1d\x28\x8d\xb3\x01\xbe\xe8\xb9\x7c\x22\x67\x74\x97\x9b\xeb\x3d\x59\x1e\xd6\x85\x15\xa0\xb5\xa1\xb9\xa1\xc0\x22\x0c\x07\x4e\x7b\x38\xda\xdf\x83\xca\xe2\x84\xfd\x98\xdc\x8b\x09\xbb\xc9\x78\x7e\x37\x61\xaf\x31\xa8\xf4\x27\xb5\x6c\xf3\x5c\x35\xd2\xe9\x8f\xf6\x5e\x1d\xe6\xbc\x19\x2c\xd5\xee\x6c\xde\x5f\x9a\x3a\xec\x5d\x11\xd5\x7f\x4c\x9c\x57\x07\xd3\xc1\x3f\xfb\xfd\x7b\x4f\xf0\xf3\x37\x48\xd4\x3f\xe5\x5d\xb0\x9f\xe4\xe0\x77\xe1\xff\xda\xfd\xcb\x5a\x5c\x60\x7b\xd2\x2e\xd7\x8a\x75\xfa\xb6\xd2\x3a\x93\xb8\x7e\x28\x37\xb3\x3b\x87\x2d\x05\x4a\x9e\x8d\x5d\x62\xef\x08\x28\x37\xbd\x6a\xfb\xeb\x2c\x55\xba\xcc\xfb\x17\xff\x75\xb5\xd6\xf6\xeb\x2d\x44\x87\x30\xd9\xb6\x4b\x01\x39\xdb\x43\x41\x0d\xf8\xd8\xe2\x2f\x6a\xb9\x00\x04\xcf\x71\x2b\xbc\xad\x38\x2b\x9d\xe2\xe2\x40\x54\x55\x7f\x42\xde\x64\x02\xf8\x76\xbc\x29\xea\xdd\xe0\xb5\x19\xe6\x1c\x02\x73\x69\xe9\x87\x31\x5f\x30\xcf\x05\xf0\xa4\x9a\x7b\xef\xbd\xc8\x59\xc6\x73\x17\x46\xb7\x16\x51\x70\xf3\xf1\x50\x8b\x30\xc7\x07\x52\xf5\xe8\xbe\xb5\x14\x42\xba\xde\x1e\x63\x4a\x18\xeb\xa0\xde\xfb\x84\xa1\x7a\x10\x2c\x42\x78\x7e\x87\x7a\x59\xe3\xbd\xe0\x2e\x08\x26\xf7\x5a\x14\xc1\x6e\x5e\x33\x2d\x2a\x4b\xb3\x12\x97\xf9\xa6\x70\xe4\xad\x91\xd7\x1a\x35\x51\xc5\x6d\x30\x28\x92\xf5\x18\x5e\xe2\xf7\xbc\xd8\xe0\x85\x76\xab\x0a\x92\x91\x47\x8e\x14\x9c\x2f\xe8\x6b\x5d\xa6\x6a\x09\x52\x3c\xe6\x97\xae\xbb\x61\x44\x4b\x7b\x50\xd7\x35\x07\x6c\xc8\xce\x60\x76\x13\xc8\x33\xcc\x85\x06\xba\x89\x66\x6c\x66\x28\xea\x75\xdc\xa5\xbb\x59\x5d\xb3\xe9\xbf\x6e\x5c\xb6\x9b\xfc\xe4\x66\x59\x03\x04\xf2\xfc\x80\xbc\x8c\xf3\x30\x57\xcf\x18\x07\x44\xd5\x4a\xc1\x4f\x64\x6b\xac\xb5\xd7\x2a\xbe\xce\xe5\x0c\x7f\x09\x0e\x01\xee\x75\x38\x1c\xca\x90\xc4\xfd\xdc\xfa\xc3\xe4\x3d\x36\x0b\x71\x6d\xe4\x21\x98\x78\x0f\x1e\x5c\x06\x26\x90\x2b\x27\x8b\x24\x17\x4c\x42\xec\x7d\x2e\x75\xb9\x3c\xf1\xb4\x0c\xe6\x16\x77\x0f\x54\x22\x5a\x64\x1c\xae\x32\xc0\xd6\x72\xd2\x72\x0c\xa3\x3f\xce\xf3\xe9\x5b\xfa\x32\x9e\xd2\xe6\x0f\x19\x78\x98\x17\xec\xda\xee\xca\x31\x97\x35\xb8\x45\xdb\x9c\x54\x3c\xec\xfa\xf6\x0b\x50\xfc\x80\xbc\xbe\x6b\xc4\x0e\x7c\xed\x03\x3c\x8c\x01\x0e\x3d\xba\x21\x8a\x34\x97\xff\xd7\x9e\x0d\xdd\x50\xd5\x11\x33\xdd\xf4\x8c\x39\xa2\x3a\x21\xb4\x95\xba\xd9\x2b\x64\x60\x04\x76\x57\xaa\x31\xe5\xdb\x4a\xe5\x16\xcd\x11\xf2\xdb\x2b\x4a\xc2\x84\x5f\xef\x13\x1d\x90\x1d\xc3\xd7\x6e\x84\x60\x2f\x73\xb1\x7a\xf9\x31\x17\xab\x85\x1d\xe9\x29\x34\x68\x6a\x5a\xd4\xa4\x3c\x1e\x38\x39\x74\xa6\x64\x3b\xf5\xdb\x1e\x6a\xc6\x5a\x93\xb0\x9c\xa0\x4d\xc9\x8a\x79\x19\x34\xd3\x1e\xc8\x7f\x17\x71\x9d\x8b\xb9\x51\xb3\x2f\x7e\xcc\x75\xe1\x9f\x06\x00\x8c\x3a\xe4\xc3\xfe\xf9\x8f\xb7\x4a\x9f\x0d\x39\xde\x6e\xab\x40\x11\xbb\xd9\x73\xe9\x0e\xbc\x6e\x40\xf1\x97\xc5\x3c\xc3\x00\xea\x8c\x3f\x48\x62\xf1\x18\xe5\x7a\x1a\x76\xac\xb5\x0b\x99\x9b\x63\xad\x81\xfc\xf2\xab\x4c\x5a\x4f\x5f\xe2\xb4\xb6\x26\x81\x4c\x2d\x4f\xd3\x90\x51\xde\xc7\x97\xe6\xd2\x67\x3b\x1a\xab\x35\x4d\xad\x0b\xaf\x62\x6f\x10\x67\x4b\x0c\x69\xa6\x62\x62\x29\x27\x88\xac\x8d\xa2\x40\x27\x4b\x0e\x1a\x88\x4e\x67\x65\xdf\x6a\x7e\xac\x4b\xe4\x37\x96\x6d\xbb\x27\xde\x8a\x9f\x5d\xdc\x89\xdd\xe8\xba\xb6\x47\x3a\xbc\x04\xe3\x06\x16\xb3\xdd\x65\x23\x9e\xe7\x16\x3b\x4e\x5f\x65\xe6\xae\xb4\xe2\x51\xc5\xcd\xd9\x51\xcf\x8d\x88\xee\x32\x95\xc8\xd1\x7b\x51\x50\x1f\x63\x48\x15\xe6\x3c\xf3\xa5\xb9\xdb\xe1\xa0\xc3\xb1\x62\x4f\x62\x43\x34\x80\x0a\x2c\x20\xd2\x53\x51\x71\xe6\x34\x26\xbb\xa7\xdd\x63\xfb\x2f\x84\x3f\x1b\x9e\xc0\x17\xdb\x12\x1f\xaa\x9d\x2a\xbc\xc5\xb1\x53\xe1\x41\xe4\x8d\x9c\xa2\x81\x9d\xcd\x59\x85\xc0\xad\xb5\x4b\xc1\x05\xf9\x9b\x67\xe8\x37\xcf\xd0\x3f\xb8\x67\xe8\x4b\xba\x85\x00\x11\xf2\x94\x3e\xa1\x9e\x00\xf9\x11\xcb\xd1\x7d\xf5\x58\xc1\x65\xb4\x8e\x27\x81\x30\x68\x90\x3f\xd7\x84\xb7\x5b\x7a\x85\x02\x64\x95\xa3\x3b\x21\x3b\x63\xf4\x96\x14\xa7\x53\x3d\xf6\xb1\x60\x9f\xdd\x9c\x3e\xc1\xdb\xfd\x1c\x69\x1e\xe0\x43\x94\xa9\x6d\x34\x13\x66\x9d\x80\xed\x69\x1a\x7e\x02\x50\x29\x95\x3b\x5a\x5f\x4d\xb9\x5d\x18\x8c\x44\xf2\x1d\x84\x08\xd5\x88\x70\x87\x22\xc1\xec\x87\x17\x99\x52\x69\x2b\x20\xec\x51\x3b\xb0\x91\x1e\x32\xb4\xf3\x2e\xd0\x18\xd5\x21\x4c\xca\xf6\xa2\x4f\x35\xf0\x89\x09\x98\x85\x00\x4a\x00\x30\x9b\xe2\x12\x32\xf4\x7c\x77\x4c\x7d\x5e\x0f\x77\x0e\x17\x42\x46\x2d\x45\xc4\x41\x05\xcf\x42\xd6\x22\xee\x72\x2e\x42\xaa\x9d\x46\x12\x84\x6e\x7e\xa7\x23\x6a\x09\xe5\x2e\x92\x36\xda\xff\xb1\x8b\xab\x66\x21\x58\x40\x35\xd6\xdc\x22\x49\x2c\xe9\xdc\x3e\xd1\x43\xcb\xb0\xbb\x88\x52\xae\x07\x1a\xd6\xad\xfb\xce\x05\x15\x74\x06\xe5\x0c\xdf\x48\x7f\x84\x24\x94\xed\x40\xe4\xce\x5c\xce\x9c\xe8\x9f\xc7\x7e\x39\xbc\x1a\x86\x4b\x11\xa9\xd7\x18\x1a\x64\xb2\xf3\x37\x97\x09\xd3\x65\xb4\x01\xae\xbe\xea\x3e\x15\xee\x5b\xcd\x15\x3b\x99\x4b\x73\x21\x02\x57\xcb\x96\x43\xb6\xf5\x83\x31\x56\x75\xf2\x57\xe1\xe0\x59\x44\x09\x15\x22\xb2\xf0\xe2\xa4\x64\x2b\x7a\xcd\xd2\x26\x22\xc0\xc2\x63\x4a\xca\x2c\xe6\x85\x98\xce\x3d\xda\x26\x41\x4f\xa7\x45\x79\x90\xc9\xac\xc3\x86\x85\xe8\xbd\xda\x4e\x9b\x26\x2b\x11\xed\xa2\x86\x0a\x4a\x3f\xf9\xc0\x6f\xd7\xb6\x6f\xeb\xda\x86\x1c\xa3\x98\x29\x37\xa6\x6b\xa9\xaa\xd7\xfe\xf5\xe3\x3a\x57\xb0\xa0\x26\x7a\x44\x3f\x7f\xc1\x6b\x67\x8b\x0d\x3c\xce\x9e\x1f\x7c\x0f\xea\x3f\xce\xfc\xc5\xd6\x1f\xd6\x41\x62\x7d\xc3\x2c\x0c\x83\x8b\x45\x38\x75\x8c\x41\x3b\x38\xac\xdf\xcd\x5d\xf2\x4d\x81\x93\x86\x5c\x5c\x8d\xc5\xed\xe0\x4a\x97\xd6\xd2\x96\x02\xcf\xbb\x1e\x8b\x3b\xe0\xb4\xe6\xc5\x33\xed\x7a\xbd\xba\x03\x5a\xc4\xfb\xdb\x44\x17\x3f\xd7\x14\x13\x0f\x93\x5c\x7c\x32\xd3\xd4\x56\x15\xab\x39\xd4\xa2\xba\xae\xda\x3c\x6a\x65\xe7\x1c\x5c\x9e\xac\x46\x96\xa9\xf7\x98\x7b\xd0\x47\xd7\x5f\x1f\xf1\x68\x7a\xc8\x79\x96\x89\xdc\x1e\xe4\x0d\x5b\x0b\x04\xa7\xe0\x2b\xa0\x18\xb7\x11\x28\x5b\x5b\xbb\xe5\x9a\xad\xa4\x56\x34\x3c\x06\x5d\x37\x6d\x1f\xb9\xcb\x32\x4d\x3b\x47\x6e\xbf\x8e\xcd\xe5\x87\xb7\x6f\x17\x3f\xcf\xde\x7e\x38\xb7\xcd\x6f\xd5\x85\x09\x1e\xeb\xec\x13\x57\x13\xea\x13\xaf\x3c\x67\x3e\x2b\xac\x74\xae\xf2\xad\x46\x27\x57\x99\xa6\x55\xcd\xa0\xb9\xfc\x48\xe5\x00\x4c\x1b\xf5\x10\x4d\xbf\xb1\xde\x8e\xab\x7e\x1f\x1e\xfb\x68\x0a\xff\x88\xef\x9e\x30\xdf\x88\x97\xa0\x6c\x47\x8a\x59\xed\xfd\x4a\x39\x20\x47\x2c\x07\x04\x03\x77\x2d\x87\xc7\x56\x45\x3b\x6c\x79\x7c\x90\xc0\xc7\x2c\x62\x2b\x66\xf6\x28\xab\x03\xfb\xee\x63\x35\x4e\xed\xf6\xf2\x18\xaf\x34\x50\xee\x04\xb5\xac\x40\xa1\xd7\xcb\x3d\xcd\x25\xfa\x40\x4d\x9d\x0a\xd5\x5d\x27\x76\x41\xe6\x6d\xca\xe5\xba\xe4\x6b\x63\xdd\xda\x8f\xcf\xe5\x36\x59\x6f\x90\x5d\xa2\xcc\x3c\x3e\x99\x33\x09\x24\x24\xb5\x29\x54\xc3\x27\x27\x72\x2e\xa9\x4d\x72\xed\x8b\x47\xac\xec\x9f\x6e\x5c\x73\x08\x94\x8e\x05\x91\x1c\x97\x9c\x4b\x1c\x5c\x64\xbd\xb0\x91\x10\xb8\xb1\xf0\xa2\x3e\x75\x39\xc4\x2e\x51\xb2\xda\xec\xe9\x6b\x88\xc9\xcc\xa5\x4b\x4c\x45\xcf\x11\xb5\x21\x90\x6d\xc0\x2a\xed\xdf\x4f\xec\x60\xd8\x35\x41\x75\x6b\x9f\xf5\x47\x9f\x01\x66\xc1\x2d\x46\x68\xef\x36\xb7\xb1\x81\xde\x42\x1e\x6c\x1c\x5d\x6c\x05\x90\x8d\xdc\x5e\x1b\xdb\x2e\x7c\xa6\x13\xda\xaa\xca\x65\x3a\xa2\x4a\xf8\x7c\x6f\xa5\x70\x4b\xee\xaf\xd4\x80\xeb\xf0\x75\x6d\x69\x99\x69\xda\xf7\xd9\xa5\x52\x1d\xe3\xf2\x88\x01\xc5\x4a\xa5\xe8\x85\x7d\x9d\x51\x46\xc5\x21\xf3\x65\x40\x8a\x5e\xbd\x8b\xec\xee\xd3\x57\xa1\x34\xd1\x07\x55\xc7\xdb\x4f\x83\x6b\xe4\x2c\x04\x3a\xec\x46\xed\xb0\x74\xce\x55\x36\xd8\x8e\x6d\x92\xe2\x49\x56\xc4\x36\xc1\xed\xc5\x2c\x1e\x54\x98\x35\xf3\x7f\xe2\x26\xd1\xc4\x8f\xdc\x04\x2a\x19\x95\xb9\x36\xdb\x25\xed\x77\xb4\x6b\xab\x9c\xf1\xb9\xb4\x6a\x08\x76\x3b\x9e\x59\x70\x6e\xee\xfe\x8a\x69\x8f\x19\xb2\x89\x83\xc5\x5a\x30\x25\x85\xdd\x0d\xe7\xd2\x2a\x1f\x4f\x18\x5f\x6a\x2b\x28\xcc\xe5\xce\xa9\xfc\x26\x4e\xc2\x8d\x4b\x06\xa8\xe7\xfd\x7b\x5e\xcd\x0c\xa8\x9c\xf3\xbf\x33\xff\xf7\xf7\xdf\xfd\xff\x00\x00\x00\xff\xff\xe8\x83\xf6\xda\xbc\xa7\x04\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x5d\x23\xbd\xdf\xde\x6c\xdc\x71\xcc\xab\xb4\xf3\x41\x25\x4c\x1f\xca\x4d\xa7\xa0\x40\xca\xa2\xaa\xa6\xb3\xf5\x79\xf5\xbd\x24\xe6\x00\x32\x36\x7c\x1c\x73\x22\x03\x23\x3e\xf2\xb6\xb8\x84\x4e\x89\x96\x3e\x46\x4c\x93\x71\xe8\x70\x30\x00\xdb\x0e\x6f\x5b\x77\x1a\x09\x2e\xa5\x8d\xbc\x37\xed\x2c\xcf\x9f\xda\xa2\x96\x9f\x41\x09\x3f\xbf\xbe\x1a\xd7\xab\xfa\x05\xcf\x5c\x7d\x3f\xfb\xb0\x31\xc9\xbe\xb5\xa9\x95\xd5\xfc\x8a\xb5\x58\xa3\x9e\xdf\xf1\xe9\xc5\xb9\x2f\x62\x55\xe9\xba\x5e\xd0\x2f\x44\x56\x6f\x2f\xe9\x57\x9f\x71\x50\xdc\xaf\xd2\xc4\x92\xf2\x7e\xab\x37\xab\x1c\xef\xbb\x0d\x6c\x5e\x65\xeb\x57\xf2\x87\x32\xcd\xac\x0a\x4b\xdf\xd1\x36\xb5\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x76\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\xb5\xad\x58\xcf\xe3\x75\x6f\x61\xd2\x77\x11\xc6\xfc\x7a\x39\xcc\xc9\xa2\x88\xda\x93\x56\x76\x73\x25\xb8\x5b\xec\xfe\x13\xe2\x21\xe1\x5b\x37\x74\xdb\x24\x45\x0f\x1d\x25\x08\x96\x36\x1c\x03\x72\xf9\x2a\x79\x3e\x6b\x98\x87\xfd\x98\x4d\x36\xf0\xa1\x2f\xc2\x10\x5c\x35\xb6\xae\x58\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\x63\x7e\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\x01\x07\xa6\x67\x30\x8f\x49\x9a\x6a\x05\x1e\x54\x13\xc6\x0f\x79\xe6\x74\x96\xd2\x5b\x50\x41\x83\x4e\xf5\x8d\x15\x84\x2b\xe8\x2f\xd8\x21\xf9\x4c\xa5\xd2\x72\x45\x43\xac\xa6\x6b\x04\x24\x1e\xa8\xab\x35\x27\xf6\x86\x1b\x7d\x18\x7c\x77\x7d\x7b\x3f\x3c\x1b\x7d\x28\xa2\xf3\x5d\xfa\x99\x47\x84\x72\x00\xff\x9c\x8d\x98\x0f\xa8\xf5\x00\xc8\xb0\x97\x08\xc7\x71\x81\x6c\x60\x95\x48\x23\xb3\x2d\xe5\xc8\xc1\xa9\x58\x19\x4a\xbb\xa4\x99\x07\xc8\x41\xda\xd7\x93\xb5\xc4\x75\x56\x3a\x39\x26\x93\x6a\x49\xca\xcb\x8e\x2e\x9b\x10\xbb\x55\x19\x5d\x9b\x28\x07\x2e\xc8\xc8\xb3\xd3\x95\xe0\x76\x3e\xc6\xe6\x12\x5e\x8f\xdb\xb9\x0d\xd9\x60\x53\x3f\xd2\xcf\x24\xbe\x6d\x91\xaa\x76\x92\xd1\xd2\x29\x12\xb0\x71\x17\x72\x46\xd7\xd1\xf8\xfd\x54\x1e\xf4\x77\xdd\xd9\xd2\x75\x01\xc9\x56\xc0\xab\x02\xb6\xaa\x42\x18\x45\x44\x28\x4c\x19\x9a\xc2\xc1\x66\xd1\x02\x01\x60\x07\x01\x1f\xf6\x1f\x51\x4a\x19\x20\x07\x2c\x5b\xda\x87\xf2\x3c\xd6\x10\x5a\x2f\xcf\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\x83\x9f\x97\xca\xaa\x95\x16\x96\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xc6\x89\x26\x0b\x45\x1e\x6e\x2f\xb6\x92\xef\x9a\x9d\x65\xad\x18\xe1\xa1\x74\xd5\x8c\x88\xd0\xe5\xd3\x98\x44\xab\x50\x4c\xbb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x32\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\x76\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x8d\x93\x66\x87\xb2\x24\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\x47\xa6\x42\xfc\x40\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x11\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\x06\x37\xe7\x0d\x6b\x7d\x51\x75\x21\x7d\x59\xe5\x6c\x12\xef\xcd\xda\x35\x48\x52\x90\x9e\xb8\x17\xa8\x48\x76\xa6\xdb\xc1\x20\x19\xa7\xff\x4d\x39\x92\x60\x1f\xd0\x7a\x9b\x54\x86\x52\xda\xf1\x0a\x60\xde\xf5\x32\xf1\x8a\x65\x58\x13\xf4\x28\x1c\x90\x4d\x03\x09\x81\x7e\xea\x31\xc6\x07\x21\xf0\x0f\x37\x05\x73\x6d\x6c\xc1\xce\xc0\x90\x8a\xd9\x74\x41\x43\xfa\xd1\x50\xb4\x07\xcb\x00\xf8\x0f\x57\x90\xd1\xc5\x06\xdb\xdc\xf5\x70\xba\x21\xb5\xad\x07\xa0\x54\x8c\xcf\x99\xbf\x2d\x16\x35\xce\xb0\xb5\x3b\x80\x12\xe5\x2a\x25\x34\x15\xd6\x3b\x1a\xb1\x20\x60\x45\x1a\xb5\x47\x9f\x11\x57\x9c\x04\x2a\xde\x32\x00\xb6\x86\x24\x1d\x2f\xfc\x94\x76\xa0\x9a\x22\xaf\xe6\xe5\xf2\x22\xb5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\xa0\x33\xad\xab\x38\x04\xc7\x6a\xa5\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xcd\xaa\xfe\x39\x23\xd1\x26\x10\x32\x37\x58\xe0\x94\x28\x22\x96\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x2a\x48\x18\x3f\x8b\xb5\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x35\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x6d\xe7\xf4\x3a\x50\x28\xf7\x35\x50\x91\x52\xb8\xd0\x9e\x60\xa0\xac\x1e\x65\x1b\xf8\xc9\x2a\x5e\xba\x13\xde\xed\x32\x1c\x5c\x0a\x6d\xe5\x50\x95\x72\x27\x80\x4a\x40\xa5\x32\x38\x20\xcd\x00\x26\x20\xb4\x34\x45\x48\x06\x6e\x3f\x0b\x6f\x57\x18\x74\xad\x64\x55\x2d\x2e\x55\x59\xae\x15\x3c\x6e\x57\xe0\x0e\xbd\x44\xb3\x6b\x89\x66\x15\x29\x97\xa2\x6b\x35\x75\x12\x51\xc1\x99\xb1\x45\x9f\x2d\x40\x40\x79\x82\x90\x7b\x64\xaf\x48\x5b\x39\x16\xae\x7e\xca\xfc\xbf\xca\x1c\xdc\x11\x75\x48\xaa\x4d\x49\x95\x47\x81\x0b\x0a\x3c\x50\x49\x28\x0d\xd8\xb8\x1a\x18\xad\x09\x83\x34\x56\xfe\xf3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x07\xf0\x16\xc0\x20\xc8\x7c\x92\x52\x85\x70\x30\xc3\x92\x49\xf2\xc0\x9e\x67\xfd\x01\xcc\xb8\x31\xcf\xbe\x09\xa2\x67\xc5\xa1\xd9\xc0\xbe\x56\x34\xb2\x6d\x2a\x7d\x10\xd3\xfc\xb2\xc9\xf4\x81\xc6\x13\x6a\x98\x8d\x67\xae\xcf\xa6\x47\xcd\xd6\x06\x0b\x1a\x0a\xc8\xae\x54\xaa\xca\xdd\x62\x0d\x3d\x2b\x32\xe9\x8b\x8d\xe8\x94\x4a\x5f\xbc\xbe\x8b\x5c\xfa\xb6\x32\x65\xcb\x72\x2b\xdd\x27\x2d\xf6\x6f\x97\xb3\xab\xb8\x0b\x9c\x0f\x25\xa5\x9b\x56\x49\x69\xdf\x50\xcd\x8a\x84\x80\xcd\xc3\xcb\xd7\x51\x07\x8b\xfc\xac\x90\x8a\x82\x74\xcb\x32\x26\x0c\xa9\x72\x7e\xc6\x15\xe4\xd4\x44\x50\xc2\xbd\x96\xe7\x39\x62\xcd\x12\xc8\x72\x9e\xb8\x6d\x8a\xc6\x4e\xd1\xcf\x82\xf3\xe7\x66\x61\x2d\x5a\x3f\xf9\x20\x37\xa3\x2c\xdb\x62\xec\x55\x11\xb3\x70\xf1\xb5\x05\x27\x69\xc1\x63\x93\x84\xe3\x86\x53\xd9\x3c\xf4\x5a\x02\xc5\xca\x73\x61\x2f\xdd\x1d\xaa\x76\x35\xee\xdc\x39\xdf\xc4\xcb\xc8\x96\x1b\xbb\x80\x69\xa7\xc6\x57\x3c\xb5\x9b\x14\x99\x05\x50\xd1\x9d\x41\xa1\x56\xd1\x09\x74\xe3\x07\xe0\xdd\xb5\x43\xc7\x26\xd2\xc5\x03\x74\x57\xb6\xa4\x34\x61\x5b\xbc\xff\x05\x26\xbd\x6e\x61\xe0\xc0\xdb\x28\x6c\xb4\x2f\x0d\xed\x06\x50\x11\xd8\x06\x49\x56\xf8\xb0\x17\xed\x72\x16\x13\xc1\x08\x56\xf3\xd7\xcb\xb1\x38\xdd\xd6\x38\x1d\x8c\xef\x65\xf3\x2d\x4e\x77\x52\x15\x3e\x1c\x6e\xb9\x42\xfa\xca\x71\xea\xd7\xbb\xd8\x89\x6c\xe8\x81\xaf\x11\x5c\x53\x1c\x1b\x8c\x86\x01\x04\xcd\x3a\x54\xba\x55\x1a\x46\xb3\x32\xf7\x32\x09\x29\x0d\x56\x9f\x5a\x2a\x8a\x3e\xec\x61\x65\xe5\x15\x4b\xf2\x45\x64\x7e\xbc\x7c\x32\xc2\xb2\x1a\xce\x79\x90\x9f\x00\x85\xb4\x15\xa6\xcc\x72\xaf\x65\x29\x09\x5a\xa2\x4c\x71\x53\x16\xc2\xde\xe7\xb7\x7c\xf1\xe9\x2d\x7d\xb2\x43\x9f\xec\xd0\xb0\x47\x7d\xb2\x03\x42\xfb\x96\xec\xb0\x4a\x01\x5d\x66\xfe\xf4\x1e\x39\xa8\xb5\x59\x2a\x70\x63\xf6\x77\x85\x16\xb9\x79\x40\xbf\xb3\x20\x86\xd1\x50\xf6\x17\xfb\x43\x63\x40\x54\xed\xb3\xea\x6c\x43\x6b\x26\x5b\x54\x9d\x02\x58\xc4\x89\x45\xa1\xb3\xe1\xca\x65\xeb\xd3\x32\x43\xe9\x88\x7d\xcf\x9f\xc9\x13\x11\x07\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xe8\x18\x38\x08\x25\x40\x73\x13\x05\x81\xd1\x15\x4e\x49\x6c\xea\x1d\x06\x41\x8d\xd6\x5c\x6b\x1d\xad\x4d\x60\xab\x80\x1b\x6a\xb6\xc1\x45\x4d\x8c\x98\x09\x34\x34\xc1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x37\xf0\xef\x8e\xd0\xbd\xbe\x9f\xa8\x2c\x8f\x37\xc0\x5e\x6b\x1b\xdb\x88\xcd\x04\xcf\x33\x6f\x41\xe3\x13\x53\xf8\xd6\xc4\x3e\xd5\xdd\xc0\x30\x18\xe7\x03\x8e\x70\xac\x35\xf1\xe5\x84\xf3\x26\x31\xa8\x1b\x01\x18\x85\x04\xa4\x8f\xa1\x0f\xac\xb3\x81\xee\xc6\x7b\x1b\xc0\xb6\x2c\x83\x61\x7f\x21\xd7\xf2\x19\x91\x60\x13\xf2\x36\xf7\x52\x16\x79\x19\xa9\xa0\x71\x9c\xcb\x2c\xa2\xde\x6b\xe1\x2c\xfb\xcd\x20\x08\x45\xe7\x36\xe2\xcb\xa4\xa8\xda\x7b\xe2\xc5\x6c\xa5\x9d\x63\x67\xdb\xf8\xc5\x4d\x2e\x32\x0e\x92\x58\xb2\x70\xa0\x0d\x16\xe7\x2d\xe3\x59\x6e\xa2\xda\x68\x18\xe4\xd4\x48\xd9\x54\xaa\x4b\xac\xa2\xb9\xe6\xdc\x05\xde\xd9\x8e\xa2\xfd\x0a\xae\xfc\xb2\xf6\xd3\x86\x19\x9c\x86\xbd\xb7\x38\x14\x3a\xd8\xd3\xcd\xbd\xef\x82\xeb\x9d\x24\x91\xea\xfe\x8c\xd3\xcd\x96\xb3\x0e\xac\xa2\xee\x13\xfb\x44\x4f\x74\x15\x15\xad\x1a\x7f\x37\xda\x2a\xd7\xdb\xda\x79\x1c\xe1\x16\x00\x32\x67\x16\xae\xab\x78\xd1\xd6\x67\x6d\x71\xfe\x0b\xba\x59\x0e\x90\xc5\xc8\x7f\xd2\xe2\x88\xb7\xb7\xa6\x38\xd3\x4a\x84\xe2\xfa\x96\x14\x33\x23\xc7\x9a\x28\x59\x84\x51\x2e\xa8\x3b\xfb\x95\x8c\xf0\x76\xea\x00\xfb\xe4\x71\x58\x4f\x29\xc2\x41\xa9\x39\xe3\xee\xc7\x91\xca\xb1\x0f\x4b\x04\x9a\x70\x25\xd0\x4d\xf6\xbb\x73\xab\x0b\x27\xde\x35\xec\xe9\x4a\xc2\xde\x62\x97\x71\x13\xba\x61\xa7\x93\x46\xd9\x2c\x80\x46\x6c\xb6\x11\x77\xa9\x7c\xd0\xf8\x65\xb7\xea\x0d\x8d\x9f\x3a\xd9\x67\x93\x6f\x97\x40\x37\x6d\x1c\x99\x5d\x8a\x72\xb7\x61\xb0\x56\x7a\x0a\x41\x2b\xad\xfd\x0e\xb0\x67\x29\xb8\xe9\xb1\x95\xa6\xfe\xcb\xff\x65\x2a\x65\x99\xa5\xf9\x2f\xc4\xc5\x88\x99\xdf\x0f\x7c\x95\x0a\xfd\x42\x01\xff\x8a\x53\x52\x00\x64\x8a\x32\x94\x1e\x00\x8a\x58\x28\x34\x03\xf5\xeb\x41\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xe8\x01\xcf\xcc\x52\xcc\xf0\x0c\x80\x85\x0f\x20\x2e\x0e\xc4\xd5\x42\x15\x31\x24\x6d\xaa\x1d\x02\xb7\xd2\xcc\xd2\x66\xdb\x16\x55\x7f\xa1\x4f\x23\xca\x5a\x5c\xd3\x22\xb8\xa2\x99\xfa\x6f\x6d\xff\x9b\x49\xec\xf7\x83\xbb\x1f\xc6\xb7\xc3\xbb\xeb\x87\xdb\xd3\x92\xd8\x7e\x7a\xf1\x70\x77\x3f\xbc\x6d\x7c\x56\x64\xaa\xfe\xf5\x61\xf8\xd0\xf2\xc8\x35\x70\x31\xf8\x6e\x58\x2a\xa1\xfd\xd7\x87\xc1\xc5\xf9\xfd\xcf\xe3\xeb\x8f\xe3\xbb\xe1\xed\x8f\xe7\xa7\xc3\xf1\xdd\xcd\xf0\xf4\xfc\xe3\xf9\xe9\x40\x7f\x19\xbe\x7b\x73\xf1\xf0\xe9\xfc\x6a\xec\x82\x8e\xc3\x47\x3f\x5d\xdf\xfe\xf0\xf1\xe2\xfa\xa7\x71\xd0\xe5\xf5\xd5\xc7\xf3\x4f\x4d\xb3\x18\xdc\xdd\x9d\x7f\xba\xba\x1c\x5e\x2d\x2f\xd5\xdd\xbc\x1a\xad\x55\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xae\x8b\x1b\x43\x8f\x87\x07\xee\x2f\x53\x58\xfb\x50\xb3\x40\xe7\x15\x2b\xb8\xc7\x88\x79\xb7\xa5\xbf\x54\x15\x9e\x49\x97\x78\x5c\x1a\xed\x09\x1a\xc0\x59\x01\x85\xa1\xd4\x29\xe4\x35\xf8\x91\x3a\x47\x37\xd0\x61\x42\x53\x0a\x3e\x6f\x74\x88\xaa\x1b\x5e\x6e\xd0\xce\x09\x86\x60\xbd\x76\xf1\xb2\xd3\x20\xab\x39\xcd\x40\x29\x27\xc8\x71\x68\x62\xcc\x09\x06\x79\x76\xc1\x70\x4a\xa3\x6a\x02\x06\x80\xaf\xa2\x02\x68\xa4\xda\x62\x89\xc0\xca\x2d\xcf\x09\xfa\xe1\x2f\xc5\xa0\xc0\x83\x61\x35\xef\xbc\x56\x4f\xcf\x3e\x10\xb9\x59\xd5\x55\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\xeb\x76\x83\xbb\x29\x67\x01\xd8\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd0\x1d\x00\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xc5\xf7\x09\x99\xe3\x27\xca\x5d\xf1\x0a\x53\xe3\x03\xd6\xd1\x8a\x56\xe8\x10\xb5\x1e\x94\x13\x34\x88\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xb0\x3c\xec\x10\x1f\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xbb\x87\x72\xa9\xb3\xc3\xf2\xdd\xbb\xc5\xf5\xaf\x57\x70\xec\x48\x79\xbc\x91\x30\x70\x8f\xe5\xa3\x63\xcd\xab\x04\x02\x07\xaa\xb3\x5d\x8f\x16\x5d\xa7\x6b\xa7\x7e\x65\xc7\x70\xd0\x36\xeb\xb3\x15\x13\x7a\x45\x97\x6e\xc6\x49\xa5\x70\x57\xe7\xfe\x4a\x85\xbf\x1a\x3b\xdb\xa9\xb7\xa7\x59\x1a\x83\x23\x39\xf6\xf4\xbf\xc6\x3c\x6e\xe0\xd3\x6b\xff\xe5\x52\x91\x6d\x1c\xac\xdb\xba\x3e\xa0\x5a\x8a\xae\xf5\x03\x2d\xa5\xc3\x1d\x81\x3b\x75\x17\x06\xa1\xec\x02\x8d\xc0\xdd\x87\x29\xb3\xc5\x78\x88\xf7\x47\xb9\xf2\xd3\xfa\x1c\xfb\x02\x71\x78\xc2\x9f\x4a\xca\x65\x4a\xa4\xc4\x2d\x70\x25\x81\x49\x6c\x1b\xc6\xe0\x4f\xa8\xfd\xb0\x23\x3d\xb9\x33\x79\xaf\xbf\x5a\x66\xf4\xb9\x0d\x35\x63\x37\x51\x2d\xb0\xc6\x2e\xce\x16\x5d\x9b\x6c\x3b\xcd\x5f\x0e\x8a\x50\x1a\x2e\x82\x08\xa3\x36\xf7\x4f\x47\xb3\x5a\x75\xc1\x1a\x6b\x2c\x85\x2e\xbc\xf5\x23\x70\x82\xd6\x37\xc6\xc3\xb6\x7e\x15\x5c\x5e\x9f\x35\xa8\xae\xe4\xef\x0c\xeb\x4f\x47\x3c\x4d\x8d\x5c\x50\xb2\xa5\x1e\x20\x6c\x92\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\x71\x30\x62\xcf\xc1\x86\x94\xc2\x80\x07\x61\x4b\x80\x25\xfa\x59\x1f\x37\xfa\x54\x0a\xae\x06\x91\x91\x42\xa4\x6f\x40\x08\xc6\x21\x58\x14\x8f\x5a\x41\xe0\xc1\x7e\x6d\x41\xea\x1b\x54\x0a\xac\xac\x6f\x5b\xbd\x40\x3f\xb7\xa0\x4c\xdf\x16\x9a\x72\xd7\x21\x04\x95\x02\x9b\x46\xb0\x83\x42\x81\xaf\x0a\xee\xed\x93\x35\x4d\x6e\x6f\x3a\xb1\x08\x15\x7a\xba\x6e\xb5\x7f\xef\x66\xf4\x7b\xe3\x77\xc8\x5b\x20\x4d\x82\xd6\x3c\xbe\x37\x3a\xd4\x32\xab\x4b\xb5\xb7\x81\x18\x12\x1d\x1a\xcc\xc0\xaf\x20\xce\x72\x70\x73\xfe\xd5\x01\xfa\x2a\xcc\x35\xfb\x6a\xa3\x03\x68\xc7\x6d\x8b\x05\x82\x36\x55\x4a\x38\x28\x1f\x3b\xd8\xab\xca\x49\xb4\x7b\x66\x0f\x22\x6a\x3b\x87\xfa\xcb\xd2\x37\xe0\x9c\x86\xe2\x77\xc6\x7f\xeb\xc3\x9d\xad\x0b\xc8\xc8\xb8\x54\x36\xac\x5d\x3c\x62\x93\x45\xd5\xc9\x73\xe0\xbd\x3c\x9d\x4f\xe9\xd6\x05\xdd\x74\x7b\xf5\xe4\xe4\x1d\x87\xe1\x2e\xbf\x0f\x56\xa4\x3b\x0f\x4c\xc4\x35\x9f\x06\x5c\xac\x2d\x4a\xa1\x8f\x5f\x6f\x9a\x55\xc9\x5e\xe6\x16\xb3\x71\x53\x56\xc9\x3f\xef\x8d\xdc\x3a\x04\x7d\x0f\x9a\x56\xc4\xc6\xfb\xb7\x08\xd7\x3d\x95\xbd\x2c\x95\xed\x22\xdf\xa1\x3c\xb8\xf5\x2f\xd0\x53\x23\xc7\x05\xcd\x38\x83\xab\x56\x26\x3c\x83\x2f\x55\xfd\x5b\x5d\x2e\x77\x4d\x9f\x6f\xb0\x26\xab\x9d\xbe\x77\x26\x70\xc0\xb8\x5d\xeb\x63\xad\x0e\x75\xa0\x6c\x09\x22\x4e\x4d\x6e\xa3\xa2\x29\x39\x40\x9c\x25\x8b\x20\xd8\xc1\x9e\x57\x20\x37\x13\xa3\x34\x27\x54\xb8\x4e\x2c\xc2\xe0\x5a\xc9\xf0\x6b\x4a\xe3\x6d\x34\xb2\x45\xa4\xc9\xd5\xe0\x72\x78\x36\x1e\x5e\xdd\x9f\xdf\xff\xdc\x80\x1e\x59\x7e\xec\x00\x24\x83\x17\xee\x7e\xbe\xbb\x1f\x5e\x8e\x3f\x0d\xaf\x86\xb7\x83\xfb\x15\xe0\x92\xcb\x3a\x6b\x03\x2e\xcc\x65\x93\xfa\xb6\x0e\x78\xa1\x33\xf3\x36\xf4\x5e\x87\x98\x0c\x3a\xa1\xa4\x05\x66\xd2\x24\xfe\xb3\x98\x08\x14\x93\x27\x92\xf0\xac\x30\xab\x36\x2e\x58\x80\x3f\xd9\xd0\xfe\x32\x0c\x4a\x68\xb3\xba\xc6\x27\xc8\x54\x7a\x0b\x8a\xdd\xfa\x06\x41\xe4\xc3\x82\xb0\xaf\x14\x22\x9f\xb3\x84\x46\x54\x05\x89\x81\x5c\x58\xf7\x8a\x71\x1f\x42\x74\xea\x0a\xe2\xda\x59\x34\xca\xce\x75\xfe\xd0\x93\x5e\xd7\xf6\xfd\x89\xf2\x78\x68\x2b\xcb\x07\xed\x40\xb1\x6f\x71\x1a\xd7\xe0\xda\x36\x18\xdd\x4b\x98\x07\xea\x19\x3a\x36\xb9\xaf\x05\xca\xad\x79\x90\xab\x6f\xc3\x65\x71\x32\xa5\x73\xbd\x3c\x50\xa6\x1b\xa5\xbe\x71\xb8\x4b\xa9\xac\xe6\x0e\x70\x37\x6c\xec\xfa\x9a\x01\x0b\xb5\x6a\x31\xcc\xc4\x9c\x62\x24\x48\xca\x95\x56\xc0\x4c\x44\xc0\x81\x16\xaa\x28\x4e\xe8\xaf\x80\x50\x25\xc8\x51\x10\x41\xe1\x70\xbd\x0a\xf7\x81\x45\x8f\x38\x1a\xb1\xb3\xe1\xcd\xed\xf0\x54\x33\xa4\x23\xf4\x20\x01\x7c\xaa\x34\xf5\x33\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xb6\x60\x30\x22\x04\x17\xdd\xf9\x83\xef\x6f\x08\xdf\x35\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb5\x26\x72\x90\x33\xb0\xf3\x94\xac\x5b\xfc\x5c\x5a\x91\x10\x7c\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x7c\x67\xf7\xf9\x95\xfa\xbc\x81\x6f\x97\xcd\xf3\x1e\x42\xec\xa4\x2a\xb0\x40\x0d\x5c\xa8\xaf\x79\x53\x99\x67\xab\xa8\x28\xde\x02\xa8\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x38\x6c\x68\x69\xab\x07\xcd\xac\x7b\x54\xf5\x9a\xe1\x94\xe7\x0c\x94\x06\x08\x63\x6d\x18\x8c\xcc\x08\x53\x2b\x06\xf3\x56\x30\x2c\x95\xa1\xee\x2f\x12\x4b\xc3\x40\xdb\xc0\x58\x9a\xfc\x49\x50\x78\x79\xbd\x6b\xd9\x05\xe5\x95\x9c\x4a\xfa\x50\xf9\xfb\xb9\x59\xcb\xc6\xf2\x71\xeb\xee\xee\xb1\x7c\x5c\xdd\x55\x4c\xa2\xc7\x75\x2f\x9b\x6a\x66\x66\x62\xeb\x56\xd7\x8c\x7d\x0b\xfd\xd4\x16\x66\x81\x72\xe5\xd1\x23\xfa\xfe\xfe\xf2\x02\x4d\xa9\x96\x7b\xf5\xb5\x72\x85\xb5\x8c\xfd\x20\x12\x67\x17\xb6\xb6\xd5\x5c\x24\xfe\xee\x85\x8d\x77\xa2\x54\x20\x25\xe8\x1b\x0d\xcf\x88\x33\xf6\x0a\x8b\xb5\x57\x29\xcc\x22\x30\x8b\x79\x6a\xe6\x71\x2c\xf3\xe9\x94\x7e\x3e\x52\x58\x7c\xd3\xb2\x1e\x26\xaa\x62\xfc\x77\x3e\x19\xeb\x11\x6d\x79\x11\x37\x35\x87\x6c\x39\x65\xbf\x6c\x76\x66\x67\xe6\xdd\xff\xcb\x27\x90\xeb\x9e\x09\x0e\xf8\x7f\xe0\x9d\xb3\x91\x0a\xf6\x15\x47\x49\x47\xc8\x25\x50\x95\x20\x4e\x22\x2e\x04\xb1\x29\xf2\xa6\xb2\x68\x86\x85\xa2\x60\xad\x75\x10\x29\x25\x6c\xfc\x62\x8b\xc2\x82\xdf\x73\x5c\xe0\x50\x4f\x08\x01\x07\x4f\x46\x93\xf5\x94\xde\xd3\x92\x6f\xb2\x72\x02\x6d\xe4\xa9\x45\xcd\x04\x83\xcc\x4a\x11\x6b\xf8\x44\x98\xda\x89\x7e\x02\x4d\x34\x24\xed\x77\xf3\x32\x98\x02\x9f\xe7\x67\xc5\xe5\xe6\x42\x7a\xc3\xa8\x26\x25\x30\xdc\xf3\x36\x51\xca\xba\xd4\xdb\x1c\xfd\x4f\x9d\x7d\xc7\xf0\x6a\x7d\x5d\x56\x84\xc6\xdb\xd5\x2e\x0a\x7d\x17\x61\xad\x0e\xd8\x7f\x43\x18\x1f\x49\x8c\x15\x23\x80\x8f\xb0\xca\x69\x75\xcf\x4d\x9f\x9a\xb6\x2a\x5d\xae\xdc\xf2\x0d\x30\x6b\x4a\xcd\x7c\x22\x90\xd2\xb9\x8b\x40\xf4\x75\x52\xf7\x61\x20\x0f\x22\x81\x10\xea\xa5\x56\x2c\x53\x64\x5c\x73\x3e\x2f\xd9\xe1\x0e\x32\xba\x19\x8c\x16\x1a\x49\x26\x48\xa4\xaf\xb2\x13\x74\x93\x10\x2d\x79\xe5\x5a\xfa\xca\x93\xc4\xe1\x7b\x2d\x97\x0e\xd7\xc2\xa4\x7b\xf1\x79\x05\xba\xc7\x92\x89\x39\x7c\xbb\xe5\x33\x0b\xd6\x60\xf7\x80\x0b\xc1\xfa\x82\x09\x19\x0c\x89\x65\x2d\x12\x38\xfc\xc2\xc4\xcd\x82\x29\x09\x97\x2e\x32\xfa\xab\x66\xbf\x82\xc8\x39\x6f\x4d\x72\x0c\x67\xfb\x32\x73\x70\x4b\xf9\x82\x93\x70\xf7\x61\x5b\x5c\x75\x07\xb9\xa6\x72\x07\x96\x44\x9c\x65\x53\xf4\xb5\x1f\x7c\xf4\x87\x45\x5b\xb5\x77\xab\x1d\x1a\xdc\x92\x85\xa9\x2d\x44\x3e\x2b\x5c\x17\x85\x32\xb3\x30\xbe\x57\xff\x79\x61\x40\x2e\x52\x02\xa8\x92\x45\xcd\x39\xa4\xef\xda\xb6\x2d\xd6\xf3\x1c\xe7\x62\x2d\x48\x8a\x02\xb3\x7c\x1d\xce\x6d\x93\x51\x8a\x61\xe9\x45\x68\x66\x97\xb6\x94\x04\x88\xd1\x36\xd4\x48\x96\x70\xe0\x2c\xd9\x98\x65\x6c\x54\xf1\xda\x99\xf2\xb6\x6e\x35\x90\x92\x0b\x51\xe6\xa5\xbc\x6b\x25\x0a\x2c\x4d\xa0\x47\x16\x5b\x1f\x59\xcc\xd6\x15\xf1\xb4\x07\x38\x80\x4a\x40\xe2\x7f\xe1\x40\xab\x0a\x0e\xd6\xe8\xbd\x2a\xf3\xa9\xb4\x3b\x9d\xd2\x9c\x4a\x5f\x68\x5e\x72\xb6\xa5\x07\x4e\x4f\x66\x31\x86\xc4\xd1\x6d\xa2\x70\x4a\xf3\x37\xde\x03\x68\x93\xc4\xc8\xa0\x17\x18\xdc\x63\xbb\x76\xde\x73\x92\x61\x41\x98\x1a\xb1\x5b\x3d\x0a\xf3\x45\x11\x89\xe1\xe2\x70\x1c\x16\x3d\x54\xac\x9d\x22\x6c\xbf\x82\x45\x6f\x0b\x84\x93\x63\xf3\x12\xa8\xa6\x2f\x98\x64\xff\x9d\x79\xc7\x60\x1e\x58\xcc\x1f\x3d\x55\x3a\x2d\xd4\x78\x2d\x40\x46\x73\x0a\x90\x03\x31\x91\xf6\x42\xa2\xca\x62\x4a\x78\xf1\x3b\x27\x0e\x7d\x19\x3e\xf3\xfc\xab\x89\x61\x3b\x43\x01\x73\x06\x3a\x39\x62\x41\x1f\x4b\xc0\x3a\x8d\xb2\xbe\xa1\x2a\x01\xfb\x4c\x63\xef\xf8\x82\x7f\x9a\x1d\xe2\x82\xce\x28\x0b\x4a\x26\xd9\xe9\xa5\x38\x03\xf3\xae\x39\x83\x7c\xea\xef\xb4\x7b\x9b\x65\x70\x04\x23\xfe\x9f\xff\xfe\xdb\x11\x6d\xf3\x7e\xc8\xb1\x5d\x81\x7d\xd8\xc9\xf5\xb6\x25\xdc\xf9\x00\x45\xa4\x05\x9d\x22\xd0\x69\x65\x29\x73\xa2\xf8\xd5\x5e\x6e\x9a\x68\xb8\x9a\x1b\x77\x6f\x99\xdc\xc1\x37\x22\xf2\xe5\x55\x04\x02\x16\x57\x04\x04\x14\x5e\xdf\x20\xe8\xd6\xd5\x88\x30\xc1\x92\xba\xfd\xca\x85\x52\x61\x50\x01\x98\xdf\x36\xc1\x89\x73\x2c\x5f\x2e\x02\xa5\xb1\xb6\x91\x31\x1a\x87\x77\xe4\xaa\x58\x14\x33\x48\x93\xd4\xa8\x77\x25\x97\x44\x98\x03\xed\x51\x9f\x2c\xf1\x84\x50\x85\x10\x8a\xb8\xc2\xa5\x46\x52\x4c\xd7\x0a\x9b\xd7\xef\x37\x03\x29\x96\x6c\xea\x78\x46\xc4\x38\xce\x4b\x31\xd2\xab\xda\xbe\xd1\x1f\x9d\xe5\x6a\xb1\xba\x7d\x99\xe0\x7a\x6d\x97\x65\xe0\x95\xfa\xfd\x96\x66\x57\x0b\x86\x41\x24\x4b\x59\x38\x6c\x81\x86\x24\x15\x68\x48\x1b\x5a\x59\xb2\x04\xc0\x45\xc3\x14\x20\xc7\x15\x0a\x83\xbd\x89\x0c\x80\x35\x8c\x1c\x4d\xf2\xc2\x72\xe2\x4b\x02\xc4\x47\x23\xf6\xd1\xd4\xd4\x00\x65\xc6\x0c\x20\x82\xbc\x16\xf2\x39\xe3\x92\x94\x12\xad\x1a\x60\xfe\x6d\xa2\xa4\x1d\x46\xb3\x4c\x5a\x7c\xb4\xbd\x48\xfa\xe6\x20\x9f\xf5\x0d\xaf\x4f\xb9\x99\x02\xb7\x92\x7a\x22\x9a\x51\x4d\x3b\xe3\xc6\x93\xf6\x72\xa5\x66\x8b\xd0\x25\x80\x7b\x52\xc9\xe2\x00\xf9\xe9\x55\x08\x22\x21\x4f\x04\xac\xc6\x30\xc6\xb0\x98\x43\xd9\x7c\xd5\xc2\x4e\x56\x1d\xa0\x22\xcb\x11\xd8\x02\x8a\xab\x23\x28\xe7\x82\x35\xd1\x62\x39\xcb\x65\xeb\x84\xac\xa6\xf8\x8b\x35\xa4\xd0\x41\x58\xd4\x62\x41\x14\x22\x9f\x15\xb1\x65\x2f\xef\x5d\xca\x5c\x3d\xca\x1e\x35\x67\xfd\xb4\x8b\x48\x2f\x5e\x80\x78\xe0\x12\xa5\x5d\x4e\x60\xec\xee\x7d\x9b\x23\x37\xc7\x2c\xb6\x89\x9f\x56\x96\xd6\x32\x05\xcc\xce\xd8\x96\x7c\x48\xbc\x4d\x5f\x0c\xd0\xc0\x4d\x9b\x06\xb6\x1c\x2e\x32\xa7\x17\x69\xc9\x1c\xa2\x08\xb8\xd0\x02\x6a\xce\x14\x4d\x34\x71\xd8\x31\x68\xad\x39\x67\x1e\x8f\x0f\x02\xb8\xdb\x20\xdf\xa8\x94\x94\xcd\xc6\x76\x25\x5d\x0e\x63\xb7\x8b\xa1\x4c\x53\x97\xa6\x29\xf3\xe3\x77\xae\xa1\xe5\xb6\x63\x43\xd6\x00\xc7\xe5\xb2\x27\x41\xb0\x66\xdc\x4d\xc6\xe2\xa8\xb9\xa4\xcb\x31\x8d\xcd\x52\x50\x53\x5d\x19\x26\xba\x8e\x79\x19\xc4\xba\x3a\x5c\x41\x71\x85\x48\x9b\x11\x69\xf2\x9c\x20\x20\x5d\xb5\xa4\x7c\xca\xd6\x54\xcf\x73\xe6\x45\x34\x5b\xdb\xc9\x27\xb4\x57\xb2\x46\xb1\xeb\xce\x46\xdd\xe3\x24\x99\xe0\xe8\xd1\x2b\x1b\x5e\xe5\xe6\xc2\x61\xe3\x6b\x01\x15\x8a\x7f\x19\xe2\xd2\x03\x8d\x40\xba\x09\x9d\x62\x06\xb0\xc6\x0e\xbb\xe8\xdc\xac\x9a\x45\x02\x33\x08\x45\x66\xf4\x26\x84\x3f\x26\x59\xc2\x17\x69\xcb\x7d\x56\xcd\x94\xdb\x26\x20\xa5\x2d\x51\x6f\xa7\x57\x59\x85\xe9\xad\x7d\x99\xd5\xd2\x6e\x76\x00\x9f\xb4\x06\x97\xfc\x94\xf0\x09\x58\x0e\xad\x96\xed\x52\x49\x82\x8c\x86\xea\x79\x5e\x37\xc1\xa5\x7a\x22\xa9\xcc\x12\xbc\x58\xd6\x83\x49\xad\x78\xd9\x7d\x33\xa9\xf8\xab\x8d\x60\xdd\x83\x92\x1b\x3f\x7f\x09\xa0\xde\x0b\x27\x09\x98\x77\x0d\xff\xaa\x18\x93\x4c\x4e\xdb\x91\xf1\xc5\x2a\x3e\x62\x0a\xcf\xdc\xe6\x5a\xe1\x92\x3f\x33\x22\xe4\x9c\x66\xa5\xa2\x80\x5b\x47\x41\x5b\x8a\xb6\xff\x31\x31\xbf\x6b\xf0\x4e\x9e\x1d\x1a\x20\x0e\x4d\x1f\x32\xc3\x51\x61\xfc\x8b\x12\x2c\x25\x9d\x2e\x02\xfc\x0c\x1f\x50\x0a\x59\x4a\x65\x6d\x39\xa8\xc3\xd5\xc4\x68\xcc\xf8\x76\x93\x40\xbe\x7d\xf2\xdc\x43\xf9\xf8\xd1\x38\x04\x2a\xd3\xf7\x49\x1d\x2c\xc5\xdd\xd4\x16\x34\xa5\x15\x70\xd5\x64\xca\x6f\x96\xf0\xbd\x14\xe3\xa6\xdd\x8c\x50\x08\x93\x76\xd8\x56\x91\xf1\xb8\x16\x21\xe6\x8b\x2a\x65\x0c\xc2\xe6\x6b\xc5\xc9\x99\x3f\x35\x71\x7a\x4c\x0c\x80\x0e\x28\x3e\x3e\x40\x72\x2b\x2c\xa9\x2e\x74\x71\x46\x12\xb2\x93\xc0\xe2\x0d\x88\xa4\xea\xb5\x0f\xc8\x63\x29\x69\x14\x58\xfa\xab\x8d\x0b\x1b\xc4\x3b\xb7\x20\xd2\x34\x0f\xfd\x27\x33\x50\x1b\xf2\xdc\xb4\x8b\x60\xff\x82\x55\xee\xaa\xbb\x34\x41\xdb\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\xfb\x48\x6a\x6f\x1c\x19\x5c\x1b\xd7\x27\xd2\x25\x8a\x61\xe5\x01\xd8\x88\x03\xd5\xf9\x74\x37\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe2\xde\xd7\xf1\x7f\x4f\x34\xb1\xb3\xbc\x86\x1d\xad\x7e\xf3\x21\x5f\xef\xd4\xde\x11\x25\xdd\x95\x50\x43\x0b\xb4\x9b\xb3\x87\x5b\xb0\x1f\xc7\xd2\x08\xae\x5f\xbc\xdc\xb2\x35\x16\x80\x1d\x99\xcd\x88\xff\x0d\x09\x54\x66\x8e\xb1\xfd\xc2\x67\xbf\x97\x70\x9f\x70\x09\x2b\xcf\xac\xd1\xdb\x73\xbd\x2a\x69\x7f\xe9\xa2\xd7\xfa\x34\x5e\x1d\x55\x41\xdd\xbd\x3c\xb8\x9e\x3c\xe8\xb0\x24\xf7\xf0\xf2\x6f\x3b\x06\xfb\x79\xff\xec\x81\x70\x58\xbb\x12\x77\x27\x22\xbe\x23\x32\xd9\x0b\x49\xb1\xb6\x15\xaf\x25\x2f\x1e\x3a\x30\x9f\x02\x1a\x67\x7f\xb7\x68\x3f\x4e\xf2\xad\x75\x03\xbd\xdc\x05\xbb\x9a\x5e\x76\x42\x1f\x80\x6b\x89\x21\xfd\x37\xb7\x85\x32\xe0\xf0\x06\x21\x63\x35\xdf\xc3\x8a\x60\x3c\x3b\xbc\x4e\x61\x78\xb5\xe5\x7c\x89\xed\xb5\xb9\x5e\x9d\x37\xf7\x25\x49\x6d\xdd\xb1\xec\x42\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x3e\x26\xb6\xdb\x2d\xda\x80\x20\xe3\xb6\x6c\x97\x87\xac\xa9\xba\xd9\xf6\xd9\xea\x2e\x95\x6d\x9c\x09\x32\xa5\x9f\x37\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\xd4\x4b\x03\xf7\x0c\xd4\x57\x0b\xe2\xf6\xec\x4a\xdb\x9a\x4a\x23\x56\x24\x00\xda\xec\xbf\x47\xb2\x40\x5c\x94\x7e\xda\x14\xeb\x70\xf7\xb5\xdd\xcc\xbe\xce\x95\xca\xe4\xc9\xf1\xf1\x8c\xaa\x79\x3e\x39\x8a\x78\x6a\xc2\xcd\xb9\x98\x99\x3f\x8e\xa9\x94\x39\x91\xc7\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\xd0\x63\xea\x7e\xa7\xf2\x96\x13\x2c\xb7\x8b\xec\x71\x99\x5a\x2f\x9c\xb1\x1b\x74\xe3\x72\x24\xf5\x37\x52\xe1\x34\x0b\xa3\x47\x4d\x75\x34\xa9\x70\x51\x93\x01\xd2\xef\xf4\x34\xd1\x1c\x67\x19\x61\xed\x66\x07\x93\x4f\xb9\x05\xeb\x71\x19\x99\x76\x84\xe4\x73\x96\x60\x56\x46\x19\x80\x02\x43\x82\x44\x84\x29\x9b\x01\x5f\xd4\x4b\x06\x6a\x34\x48\x37\x86\xff\xaf\x97\x71\x07\x73\xa4\xb2\xa8\x1c\xe6\x86\x63\xab\x78\xba\xda\x8e\x38\x58\xba\x6a\xe5\xd4\x62\xed\x88\x5b\xb5\x65\xb9\x78\x77\xf5\xfa\xd9\xeb\x57\x6e\x11\x9c\x8d\xc9\x67\xcd\xe4\xe4\xa6\xb8\x54\x0f\x92\x48\x34\xf8\xe9\x0e\xc9\x05\x53\xf8\xf3\x09\xba\xa4\x0c\x04\xd8\xef\x79\x2e\x24\x3a\xc3\x8b\x43\x3e\x3d\x4c\x39\x53\x73\x74\x09\xff\x6b\x7f\x7a\x26\xe4\x11\xfd\x4c\xb0\xb0\xfc\xc1\x56\x5e\xf3\x45\xbc\x35\x09\x89\x9c\x49\x44\x9e\xf4\x09\xfd\xc3\x7f\xa2\xd4\xb4\x7c\x82\xbe\x3d\xfe\xc3\x7f\xa2\xdf\xc1\xff\xff\xff\xd1\xef\x5a\x34\xfd\xf5\x90\xad\xa0\x3e\xef\x6d\xd9\x9d\x7b\x50\x59\xa9\x0d\x4a\x96\x9f\x0a\x5e\xec\x54\x63\xcb\x8f\x34\x7a\xe4\xd3\xe9\x58\x13\x86\xc9\x57\x1b\x63\x51\x43\x45\xde\x10\x26\x94\xda\x02\xcb\xa6\x60\x5b\x51\x2a\xc5\x76\x6a\x80\x0d\x1c\xbb\x96\x79\x51\x60\x16\x82\x88\x4a\x45\x7b\xa9\x84\xaf\x48\xac\xb9\xea\x3a\xa7\xc3\x59\xf7\x5c\x8e\xb3\xb3\xe0\x84\x40\x20\x61\xd1\x70\x1f\xf8\x17\x46\xb1\x9a\x40\x1f\xbb\x90\x8d\xc7\xa1\x16\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\xd6\x3a\x5f\x1d\x2a\x79\xc7\xc5\x56\xfa\xd6\x23\xa9\xc5\x6c\x77\x2c\x0b\xe4\x4a\xd5\x86\xe5\xeb\x21\x11\x9a\x0b\x0f\xd7\x6b\xec\x22\xb6\x78\xe0\x6a\x2b\x26\x15\x26\xb8\xac\xdb\xa1\xd7\x53\x3f\xf3\x9f\xac\x1a\x26\x44\x9a\xb9\xb7\x8b\xb2\x68\x30\x5a\x2d\x22\x69\x96\xd8\x30\xe2\x06\x4c\xbf\x55\x1b\x7a\xe7\x61\x1c\xa0\x71\x08\x7b\x84\x94\x0f\xe6\x24\x5b\x9b\x27\xdf\xbc\x9f\xb9\x88\xc8\x29\xdf\x2e\xec\x35\xa1\xac\x16\x2f\xdf\xbd\xe2\x8e\x5f\xbd\x0b\x5b\x5b\xc9\xc1\xde\xf2\xb8\x50\x16\x8c\x5b\xc0\x16\x5b\x08\xf0\x36\xcb\xb3\x01\xdc\xb6\x5d\x40\x3a\xd6\x4a\x00\x6c\xc1\xb5\x8d\xe1\xb8\x60\x78\xae\x82\x44\xa5\x70\x84\xc0\x9a\x17\x2e\x89\x5d\x83\xa0\xa2\xad\xc7\x11\x14\x43\x29\x22\x95\x2a\x45\xc7\xb1\xa9\x08\x22\x36\x84\xe4\x34\x75\x89\x0e\x90\xc0\x10\x94\xa9\xe6\xba\x3d\x49\xc4\xe1\x14\x47\x94\xcd\x0e\x02\x34\x46\x40\x46\x08\xaf\x83\x26\x22\xbd\xc7\xf2\x71\xb7\x81\x86\x5b\xd7\x69\xa4\x71\x51\x2b\xcc\xe2\xa7\x18\xc7\x06\xad\x41\xd1\x29\x2c\x1f\xdb\x00\x84\x6a\xe8\x65\x4b\x46\xe7\x97\xc2\x61\x9e\x2d\x1b\x9f\xcb\xb4\x26\xa1\x3e\x05\xa5\x09\x5c\xe5\x60\x8b\x65\xe8\x12\xdb\xb0\x07\x1b\xa9\x82\x78\x2e\x19\xbf\x9c\x73\xa1\xc6\x1b\xc2\x9f\x56\xb3\xc5\x19\x39\x4c\x00\xb7\x84\x3f\x11\xf1\x44\xc9\x73\x19\x45\x74\x1d\x5a\x34\x46\xb3\x20\xaa\x0e\x60\x26\xd3\x8c\x43\x0a\xcd\x14\xa5\x98\x2d\x0c\xa3\xd4\xcc\x05\xcb\x47\xe9\xeb\x95\x22\x99\xe2\x24\x39\x40\x82\xe4\xd2\xd4\xf1\x95\x24\x99\x1e\xba\x8a\x0f\x31\x4a\xf8\x8c\x46\x38\x41\x93\x84\x47\x8f\x72\xc4\xb4\xa0\xc0\x66\x86\x49\x65\x82\x47\x44\xca\x40\xb2\x2a\x92\xb6\x6d\x2a\x1d\x14\x2b\x55\x44\xa4\x94\x51\xa9\x68\xe4\x44\xa6\x02\x7b\xc1\x94\xcc\x8e\x30\x98\x84\x21\x31\x11\x86\xab\x25\x3d\x62\x30\x28\x73\x66\x6b\x03\xc1\x75\x6d\xa1\xe5\x5c\x90\x78\xdb\x01\xda\x01\x52\x9e\xa3\x90\xb1\x2a\x1f\xc8\x15\x47\xea\xd4\x7e\x06\xc7\x78\x19\x09\xdc\x96\x4f\x94\x27\x48\x7f\xd2\x4a\xe8\x3d\x10\x53\xee\x43\xe0\x4b\x92\x8b\x8f\x0c\xdf\x33\xe0\x2e\x18\x72\x0b\x5c\xd7\x2a\x9a\xd6\xab\x08\x22\x0f\x94\xa3\xaa\x7a\xcd\x29\x8b\x92\x3c\xf6\x05\x09\xb5\x08\xf0\xa4\x89\xc4\x2d\x8f\x5e\x7b\x2d\x28\x1c\x20\x2c\xd1\x33\x49\x12\xfd\x5f\x13\x01\x7f\xe8\xeb\x03\x68\x96\x6c\x6a\x38\x40\x27\x8e\x4b\xb7\x51\xd4\xde\x81\x30\xde\x60\x35\x37\xa9\xed\x29\x57\xa6\x16\xa4\x01\x61\x74\xf6\x2d\x83\xda\x37\x49\xf8\x04\x4e\x3a\xe0\x33\xba\xd4\xd8\x20\xad\x2e\x8f\x22\x42\x62\x12\xa3\xaf\x83\x83\xeb\x61\x17\xbe\x69\x46\x0b\x2c\xad\xc8\x1e\x60\x33\x56\x0d\x6b\xad\x08\x8d\xe5\x72\x66\x47\xe8\xa6\x82\x3f\x12\x96\x29\xc7\x55\x34\xaa\x83\xda\x16\xbe\x0d\x9e\x63\x65\x12\x2f\xb7\x43\x6b\xe2\x39\x96\xfa\xdc\x01\x9e\x63\x65\x9e\x2d\xb1\xfb\x7c\xf6\xa2\x39\xc7\x7a\x52\x17\xbc\x7b\x22\x98\xc1\xc1\x32\x77\x67\x89\x04\xdd\x81\x5c\x34\x11\xe2\x7e\x61\x55\x56\x8a\xfe\xbd\x2d\x56\x65\x65\x30\xfb\x8c\x55\x59\x19\xea\xfe\x62\x55\x36\x0c\xb4\x03\x56\xa5\x71\xee\x8f\x35\x51\x77\x63\x0a\x90\xd8\x32\xc9\xa7\x77\x90\xea\xbd\x74\x8c\xa7\x26\x70\xc0\x5c\x63\xee\x8e\xb6\xd0\xcd\x30\x5a\x9b\x03\xd9\x16\x0e\x55\x71\x42\xac\x4b\x7b\xde\xfb\x46\xa5\xd1\xd0\xd6\x33\xbb\x1f\x84\xd6\x6e\xb0\x43\x46\x38\xb3\x39\xe5\x6d\x15\x55\xf6\x27\x7b\x76\x33\x18\x50\x80\xda\x2b\xb1\xfc\x4e\x40\x59\x97\x95\xe2\x04\x73\xfe\x6c\x0b\x04\x01\x19\x1a\xa2\x6c\x25\x41\xe8\x74\x6c\x95\xb6\xb6\x95\xa3\x4c\x91\x59\x55\xa7\x2d\x0e\x0d\x65\xea\x4f\x7f\x5c\xc9\x89\x0c\x92\xa0\x53\x0f\x83\x12\x01\xde\xd9\x61\x9f\x91\x18\x45\x73\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x14\x53\xa7\x48\xe5\xd2\xb8\x96\xa8\x1c\xb1\x12\xf4\xe6\x11\xfa\x08\x75\x4f\x71\x9a\x69\xfd\xcb\xcf\x8f\x6a\x4a\x1a\xe5\xdf\x7e\xfb\x27\x82\xbe\x45\x29\xc1\xac\xa4\xc3\x82\xda\xa4\xaf\x3e\x80\xaa\x53\x73\x32\x62\x8d\x5b\x81\x86\x9f\x4d\x29\x25\x17\xef\x77\xce\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd9\x29\x7c\xd9\x18\x00\xeb\x6e\xec\x7a\x1b\x0f\xe0\x1e\x39\x94\xa4\x04\x61\xd4\xe0\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\x1e\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x0e\x80\x12\xf2\x68\x6e\x1c\xab\x5a\x67\xc1\xb6\x2e\xc3\x13\x95\xb9\x56\x68\xa1\x2d\x57\x06\x42\x2a\x6c\xa0\x97\xe6\x14\xfa\xd1\xea\x37\x81\xaf\xc2\x2c\x39\xd4\x4d\x8b\x0a\xd1\x51\x2b\x3c\xbf\x23\x3a\x6a\x89\xaa\x7a\x74\x54\x8f\x8e\x5a\x5f\x97\x7d\x44\x47\xad\xec\x79\x37\x74\xd4\xa6\x2d\xdf\x00\x1d\xb5\xd4\xcc\x17\x83\x8e\x5a\x59\xd1\x2f\x06\x1d\xb5\x32\xaf\x1e\x1d\xf5\xcb\x43\x47\xdd\x12\xff\xb3\x99\x17\x1b\x7c\x25\x45\xd9\x62\x6d\x22\xfb\x4a\xa2\xf3\x6b\x4d\x60\xd1\x63\x39\xa8\xcd\x5f\x57\xdb\x63\x8e\x36\x33\xa1\xf5\x30\x47\x1b\x55\xf5\x76\x56\xb7\x2d\xc0\x13\x28\x06\xaf\x8c\x39\x5a\x9a\x40\x1f\x5f\xb9\x7e\x7c\x65\x23\xf1\xd9\xbe\xf5\xf0\x5c\xd0\x65\xf5\x42\xee\x88\x3a\x5a\xda\x9f\x4e\x91\x98\x20\xba\xef\x80\x12\x5f\x56\x9a\xbf\x2f\x1d\xf2\x95\xb2\x7c\xb8\x8a\xd2\xe2\x1f\x6b\x09\xcf\xa1\xc5\x19\x25\x3c\xf4\xff\xf7\x94\xbb\x41\x64\x70\x65\x79\xbd\x5f\xc5\xd0\x62\x07\x52\xed\x4c\xa1\x4e\x2b\xdd\x4d\xa2\xac\x4b\x9e\x5c\xd3\xc5\xec\x06\x71\x97\x91\xa8\xc5\xc6\x4c\x53\xba\xab\x66\x57\x5d\x64\x1e\x0b\x0b\x14\xf2\x5a\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x5a\x63\x9b\x6a\x23\xdc\xc6\x55\x9a\xe5\x9d\x03\x62\x82\x55\x9d\x6d\xf6\x59\x4a\x52\x2e\x56\x05\x56\x35\x7e\x69\x2b\xba\x6c\xf2\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xdd\x46\xba\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xce\xdb\xbd\xed\x36\x5b\xcc\xcc\x35\x1d\x42\x0e\x33\x78\xb9\xc1\xcd\xbe\x54\x72\x77\x03\x7d\x37\xc6\x74\xf8\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x4e\x15\x5f\xd9\x7a\xc7\x6b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\xeb\x07\x78\xb4\xa0\xa6\xd6\x97\x07\x22\x73\x24\x11\x87\xa1\x66\x50\x1a\x4c\x7d\xbd\x4a\x54\xe2\x34\xca\x2d\x88\x24\x17\xad\x51\xa6\x5d\x0c\xda\x91\xca\x71\x02\x9a\x44\x58\xa4\xb1\xba\xa9\x93\x45\x43\xda\x63\x37\x8f\x09\x65\xea\xcf\xff\xb1\xd6\x6e\x6a\xd5\xca\xae\x1b\x14\x96\xc2\x51\x44\xa4\xb1\xb1\xdb\x28\x64\x3c\xe1\x4f\x50\x53\x6a\x9b\x5d\xd5\x47\x59\xcf\x5b\x33\x78\x0f\x45\x1c\x17\xa4\x6e\xc4\x85\xb9\xe0\xf9\x6c\xee\x6c\x48\xfa\xcc\xe8\xa9\x35\xed\xe5\x8f\x35\x1b\xf9\xda\x7b\xf9\x5d\x4e\x93\xcd\x2c\x74\x77\xa5\x6a\x5b\x9f\xce\xef\x91\x9c\xfb\xd3\x3a\x81\x66\x1b\x37\xb6\x3e\xe8\xee\x7d\xda\x6f\xbd\xbf\x06\xba\x39\x70\xf0\x9b\x53\x9e\x24\xe0\x69\x90\x24\x7d\x0a\x8b\xe4\x87\xdd\xc3\x84\xef\xe9\x7a\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x49\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x4d\x36\xb6\x9f\xea\x85\x4e\xde\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x5b\x92\x57\x0e\x1c\x5c\x31\x8f\x7d\x0d\x1e\xac\x30\x3b\x1f\xcb\x57\x5c\x33\x2e\x70\xc8\x28\x3e\x03\xbd\xc4\x23\x36\x28\xe5\x53\xb8\x82\xd0\x93\x45\x11\x90\x6d\x74\x88\x90\x99\x41\x39\x09\x6b\x58\x01\x37\x9a\xfe\x0b\x34\x1d\x03\x5e\x6b\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x10\x47\x8b\x28\xa1\x51\xa0\x33\xcf\x04\xce\xe6\x4d\x1c\xcf\xed\x7c\x8f\xba\xf3\x56\xa8\x3b\x6d\x75\x97\xd6\x89\xdb\x76\x74\xc5\x70\x4a\x7a\x34\xa0\x26\x34\xa0\x03\x8f\x77\xc1\x8a\x0a\x52\x6f\x08\xa3\x50\x3f\x77\x3d\x24\xd0\x1b\x40\x02\x6d\x72\xf8\x0a\xbc\x9f\xd2\xb1\xeb\x61\x8a\x3e\x74\x82\x29\xf2\x97\xe0\x5e\x21\xcf\xb4\x9f\xc7\x37\x46\x34\xa9\x0f\xec\x2d\x61\x89\x1a\xc4\x85\x75\xe4\xa6\x65\xb8\x44\xcb\xe8\xa2\xd3\xba\xbc\x2d\x4a\xd0\x7a\x2b\xb3\x16\x00\x50\xe3\xdd\xb5\x27\x70\x40\xed\xdb\xb0\x27\xe7\x66\x97\x59\x2d\xeb\x95\xc8\x0c\x33\x5b\xd6\x51\xb0\xd6\x4b\x72\xf1\xf4\xf0\xbe\x12\x5d\x8a\x5a\x62\x9b\x25\xbb\x0c\x9c\x0f\x9a\x08\x34\xe7\x49\xec\x40\x28\xfc\x6a\xf9\x0e\x7c\x26\x80\x5f\x20\xb7\x19\x50\xd3\x1b\xb4\xad\xa2\x20\xd8\xb2\x94\x16\xbf\x89\x30\xdc\x1d\x30\x9a\x5d\x58\x11\x3c\x27\xd9\xc4\x7e\xb0\x52\x16\x91\x65\xf3\xf7\x92\x31\x96\x56\x08\xac\xe6\xcd\xc3\x5c\x69\xf7\x5d\x31\xb8\x65\xa2\x47\x60\x1c\x14\x4d\x15\x2d\x0d\x9d\xc1\xd3\x27\xea\x0c\x11\x38\xec\x71\xa9\x97\xce\xcd\xae\x93\xa7\xae\x4a\x2c\x1b\x04\x83\xd5\x2a\xb7\x6d\x0f\x0e\x94\xe2\xcf\xe3\x0c\x0b\x9c\x24\x24\xa1\x32\x7d\xb1\x60\xe0\xd3\xb2\xbb\x56\x9f\x55\xc1\x8d\x89\x88\xe5\xe9\xc4\x90\xa2\x1b\x88\xad\x17\xa9\x38\x12\x39\x0b\xa1\xcd\x9e\x6b\x45\xf5\x73\xb8\x17\xc0\xaa\x14\xcd\xa1\x38\xe9\x14\x53\xc1\x88\x6c\x2d\x05\x49\xa2\x5c\x50\xb5\x18\xdb\xca\x9a\xdd\x0f\xdc\x9d\xfd\xf2\xd4\x7e\xb8\xdc\xc3\xed\xb2\xfa\x5d\x7f\xbe\x92\x67\x46\x04\x94\x09\x72\x05\x6f\x82\xea\xa1\x16\xb5\x81\xf8\x5a\x43\x10\xfe\x5c\xbb\xb6\xdb\x02\x87\xf1\xf3\x38\xc8\xa8\x1a\x47\x55\xe2\x58\x75\x58\x9b\x70\xa7\x96\x4d\xf2\x85\x91\x97\x5a\xbc\xc8\x2f\x50\x65\xc4\xa6\x4d\x98\xa6\xf5\x80\x03\x57\x30\xd8\x2b\x8b\x8d\x09\x52\xde\xad\x52\xd5\x32\x4e\x8b\xf5\xd3\x14\x7c\xb4\x64\xb0\x83\xe0\xab\x0e\x23\x0e\x3a\xd9\xd1\xb0\xf5\x41\x17\x22\xcf\x14\x9d\xd4\xa1\x6d\xd4\xee\xaa\x8e\x0e\x12\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x34\x62\x03\x89\x9e\x09\x62\xc4\x42\x48\x34\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x03\xdd\x30\x54\x2d\x55\x1c\x82\x3f\x31\x7a\x16\x38\xcb\x88\x18\x31\x9b\xc5\x01\x0e\x17\xce\x13\xd3\x7e\x5b\x88\xab\x5d\x03\x32\x8e\x70\x34\x7f\xa5\x3d\xc2\x90\x8c\x13\xcd\x49\xec\xf2\x85\xcb\xdb\xe3\xe6\x6d\x0c\xd6\x6b\x6c\xd6\xf9\xd4\x95\xcf\x3a\xb0\x9d\x24\x91\xe6\x28\xbe\x9a\x72\x46\x84\x1e\xb5\xa6\xe1\x27\xc2\x10\x9d\xba\x71\xd8\xd8\x1d\xf4\x0c\x9e\x29\x4d\xfa\x4f\x98\x26\x26\x01\xdf\x75\xed\x84\x40\x63\x7e\x1f\x31\xe3\xee\x66\x51\x29\x43\x95\x32\x2a\xe7\x9a\x53\xe7\xe0\x93\x04\x35\xa3\x2d\x71\x86\x3d\xad\x73\x9a\x87\xfa\xf5\xe5\x1c\xf4\x89\x0a\xce\x52\x48\x92\xb1\xb8\x4c\x6e\xf9\x24\x51\xfe\x78\x34\xa6\x38\xae\x94\x88\xe3\x58\x96\x8d\x9f\x46\xad\xa4\xbf\x96\xcc\x2e\x87\xa5\xac\xc0\x28\x80\x15\x82\x20\x4e\x57\x59\x6c\x99\xfc\xdb\xa7\x36\xd4\x53\x1b\x9a\xd7\x66\x1f\xd3\x1b\xfc\x21\x5e\x37\xc5\xa1\x6d\xfb\x77\x21\xd9\xee\x30\xd5\xe1\x8d\x73\x02\x5e\x26\x1d\xe0\x6d\xf3\x37\x5e\x22\x75\xa3\x4f\x70\x78\xc3\x04\x87\xce\x96\xda\x72\x6c\x76\xfb\xb1\x5d\x2b\x39\x60\x05\x98\x53\x53\x2f\x97\x44\x09\x1a\xc9\x5d\xf0\x07\x99\xe1\x8e\x51\x6d\xa0\x05\x66\x2b\xa4\x26\xfd\x82\x77\x42\x42\x9c\x98\xaf\xf3\x37\x11\x04\x3f\xc6\xfc\xb9\x66\xab\x93\x21\x9a\xc6\x25\xd7\x62\x8f\x20\x11\x95\xa4\x14\xc9\x42\x25\x62\x44\x5a\x63\x27\x1e\xb1\x39\x25\x02\x8b\x68\x0e\xd9\x8d\xc5\xc6\x98\x2c\x59\x03\x68\x64\x62\x19\x42\x6f\xd3\x1a\x9b\xde\x61\xdd\xab\x16\x26\x8f\x4f\x67\xf7\x5c\x8f\x24\x35\x9f\x78\x61\xc6\x4a\x19\xa1\x49\xae\xd3\xf6\x6f\x1b\x88\xef\x17\xfb\x45\x83\xf1\x7d\x30\x51\xf0\x45\xc7\x80\xfc\x82\x1a\xfa\xa0\xfc\x17\x0a\xca\x6f\x58\xe2\xf5\x02\xf3\x37\x32\xf9\xbd\x7e\xcc\xb0\xeb\xf9\x35\xe2\x86\x57\x05\x6d\xe5\x93\xf1\x8b\x1f\xbd\xc6\x39\x77\x3d\x81\x3f\x79\xa2\x30\x12\xb1\xd0\x74\x36\x21\x71\x0c\x9c\x56\x71\x5b\x29\xba\xa0\x1d\x67\x1e\xd0\x77\x2f\x96\x9a\xd8\x71\xc2\xd9\x4c\xd2\xd8\x80\xad\x64\x18\x2a\xb6\x86\xc6\x0b\x00\x17\x80\xfd\x4d\x12\x22\x9c\x57\x42\xa0\xaf\x25\x65\x16\x4d\xd1\xff\x16\x73\x22\xd9\x57\xca\x18\x0b\x30\x5b\xa0\x47\xc6\x9f\x13\x12\xcf\x60\x87\xaa\x83\x39\x44\x94\x1c\x20\xaa\xfc\x67\x02\xd0\x08\x78\xae\x46\x7a\xec\x10\x6b\x66\x34\x00\x62\xbf\x0d\x6a\xa2\xfb\x66\xbe\x39\x42\xe8\x9c\xa1\x29\x8e\xd4\x01\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\xf4\x31\xe3\x0d\x9d\x37\x9f\x0d\xc7\x1d\x34\xb9\x0e\x12\x8a\xb7\x8a\xad\x7b\xc2\xdb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xab\xad\xb3\x32\x95\x75\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x9d\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xa6\x4d\xcb\xf4\x8d\x47\x4e\x39\x33\x0e\xc2\xad\xe4\x4e\x3a\x63\x38\x59\xd3\xc6\x51\x5b\xb9\xba\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xca\x7c\x43\x79\x0f\xa3\x98\x64\x84\xc5\x84\x45\x0b\x20\x11\x06\xc8\x39\x82\xe1\x04\x61\xf8\x0e\x27\x47\xe8\xcc\xe4\xd7\x78\x09\xcf\x5e\xeb\x70\xa1\xa7\x98\xd1\xa9\xd6\x13\xc0\x08\x6b\x47\x39\x62\x66\x98\xce\x07\x12\x14\xed\xf7\x2b\xd6\xb4\x33\xfa\x06\xb9\xda\x12\x95\x98\x95\xbf\x47\xcb\x2f\x1c\xe8\x6d\xd9\xee\xe8\xe6\x5c\x0d\x02\x99\x4f\x0e\xe1\xdf\xa5\x84\x33\x07\xd4\x53\xa0\xc8\x90\x84\x80\x39\xd0\x7a\xbc\xe0\x62\x6c\x03\x96\xdb\x85\xdf\x6e\x45\x1e\x47\xd0\x47\x49\xa9\x49\x29\xa3\x69\x9e\x06\xce\x3b\x53\xb1\x20\xb2\xf6\x4b\x93\x89\x91\x69\x3d\x20\x72\xe0\xe5\x48\x5f\xae\x6c\x81\x66\xf4\x89\xb0\x11\xcb\x38\x65\xea\x08\x5d\x71\x45\x82\x12\x11\x06\x3a\x8a\x67\x8a\xa6\x06\xed\x54\x10\x7d\x0e\x0c\x28\x36\x00\x4d\xce\xb1\x3a\x40\x71\x0e\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xec\x0c\xc4\x47\x8b\x11\x33\x37\xdd\x14\xd3\x24\x17\xc4\xca\xac\xd8\xe4\xc5\x14\x43\x2e\x46\x66\x91\xd0\x82\x49\xa4\x74\x36\x57\x7a\x8b\xb4\x8c\x67\xfd\x8d\x73\xcd\x8d\xf8\x88\x4d\x08\xc2\x28\xe3\x92\x2a\xfa\xe4\xfd\x97\x74\x8a\xb0\x94\x60\x41\x39\x42\x67\x25\xfb\x3f\x95\xa0\x7a\xb7\xc5\xd5\x52\x36\xb6\xb6\xe7\xf6\x7c\x9c\xad\x37\xb2\xd4\x8b\x5d\x65\x3c\x91\x3c\xc9\x55\xe8\x82\x6d\xde\xdb\xc2\x34\xee\x80\xfb\xc1\x40\xcc\xa7\x23\xe6\xe8\x5a\x1e\xa1\x81\x44\x92\xeb\x5d\x92\x66\x2b\x23\x41\x15\x11\xd4\xa0\x38\x11\x65\x36\xc1\x9f\x53\x7f\x06\x52\x2c\x1e\xb5\x08\x15\x5a\xe0\x0d\xa6\x68\xc9\xda\x31\x31\x12\x12\xc0\x5a\x85\xdb\x01\xa6\x7f\xc4\x38\x3b\x64\x64\x86\x57\xed\xc8\x88\x95\xb6\x04\x7d\x4d\xa7\x85\x42\xda\xe6\x73\x0c\xd6\x6e\x0c\x91\x4f\x6d\xbb\x64\x3a\x6e\xdb\xa4\x69\xc2\xf1\x0a\xb7\xf1\xb4\x38\xf4\xe8\xef\x7c\x62\xc6\xa8\xf5\x7e\xae\x40\x0a\xd4\xea\xd5\x94\x0b\x32\xc7\x2c\x3e\x70\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\xac\x75\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x61\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x1b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x0d\x04\xbf\x24\x5f\x2b\xb9\x2a\x70\xfb\x2d\xda\x6a\x9a\x28\xbc\xaa\xcc\xc8\x1a\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x34\x62\xe7\xea\x2b\xa9\x45\x74\xce\x66\xfa\xa2\x89\x9f\xa8\x2c\x8a\x9c\x44\x9c\xc9\x3c\x25\xc2\x76\xa1\x6f\x64\x4d\x91\xb6\x40\x00\x76\x32\x94\x1e\x9b\xde\xfb\x27\x9c\xd0\xd8\x15\xe2\xd1\x3f\x9a\x33\xa7\x47\x29\x9d\x47\xb1\x21\x24\xcc\x6e\x6e\xac\xd7\xea\xcd\xc4\xfa\x1f\x43\xc9\x1d\xa5\x85\x90\x8f\xad\xad\xfe\xb8\x2a\xe2\xdb\x55\x5f\x22\xde\x4f\x6a\x93\x42\xcb\x05\x23\xbb\x0a\x67\xab\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x16\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbe\xb5\x67\x5b\x96\x89\x90\x11\x4e\xea\x3b\xbc\xc4\xde\x6c\xde\x5f\xae\x04\xd8\xe3\x66\xda\x5e\x9a\xf4\x1b\xf1\x24\x59\xa7\x84\x49\x65\xe6\xa7\xc5\xe7\xcb\x47\x54\xf4\xa3\x37\xc0\xed\x05\x9c\x1a\x73\x79\xe3\xc4\x9a\x52\xa4\xb2\xbb\x14\xbe\x64\xd4\xb0\x85\x65\xad\x23\xc6\xa7\x50\xe4\x26\x69\x8b\xea\xca\x04\x4f\xe9\x3a\x28\xcb\x26\xd0\xe9\xd6\xd9\xc5\x57\x58\x19\x9c\xf5\x1c\x44\x53\x43\x5e\xb6\x47\xc8\xd7\xc3\x56\xdc\x5c\x72\x86\x52\x9c\x6d\xb4\xe0\xab\xbc\x42\x03\x94\x1a\x97\x9c\x5d\x3d\xc0\x5b\x24\x50\x2f\x06\x16\xf9\x19\x2f\x8a\xd4\xe8\x36\xfc\x5c\xb6\x16\x39\x3c\xe8\xd7\xcf\xd9\x94\xaf\x71\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x5d\xce\xe3\x69\x13\x51\xaf\x7d\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x9d\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf9\x52\x5d\x96\xe8\x70\xe7\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\x69\x6e\xf5\x15\xd6\xcc\x1e\x92\x4e\x8b\xb5\x25\x76\xc3\x7a\x38\xc0\xae\x47\x8f\xfa\xdb\x7c\x42\x57\x16\x39\xe8\xbe\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x9f\x37\x18\x38\x5d\x82\x98\x0f\xa8\x32\xa1\xf2\x4e\x7a\xca\x05\x0d\x0a\x83\x3a\x19\x09\x51\x28\x50\x12\x3a\x79\x02\x85\x1e\x4c\x8b\x73\xfe\x6c\xa2\xd3\x05\xd5\x3c\xcb\x08\xab\x0a\xcc\x3d\x9a\x17\x50\x6b\x2d\x31\xc6\x26\xff\x01\x37\x31\x83\xd8\xd6\x3e\x2e\x46\xd5\xb2\xa5\xbb\x28\xf1\xd4\x3d\xff\xce\xf5\x7a\xaf\xbf\xa8\xef\x4d\xe3\x08\xef\xcb\xad\xaf\x3d\x3a\x2f\xe5\xaf\x1f\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\x67\x3f\x1c\x3f\x9c\x23\xa2\x22\x94\xd0\x47\x32\x62\x91\x7c\x3a\xd0\xe2\xf1\x3f\x72\xa2\xf4\xcf\x2d\x1e\x01\x9a\x12\x26\x81\x13\x50\x55\xc3\x1e\x6a\x5e\x48\xb7\x30\xfa\xbf\x67\xe5\xef\x97\x90\x7c\x2d\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x03\xc5\x18\x5b\xe4\xb0\xa9\x1a\xe6\x06\xe9\x42\xec\xef\x39\x5b\x53\xe8\x3a\x2d\x3e\x0a\x46\xd1\x22\xd3\xa5\x19\x06\xac\xeb\xf5\xf2\x90\xcc\x37\x8d\xad\xaf\x62\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x34\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\x9a\xb8\x84\xc0\x2c\x9a\x6f\x6b\x42\xa6\xd3\x31\x49\xd6\x91\x44\xcf\xa7\xc3\x44\x6a\xfa\x8e\x1e\x5b\x4e\xe7\x26\x35\x1b\x8b\xc9\xd8\x4a\xb4\xa6\xee\x13\x2a\x4c\xd0\x38\x31\x15\xe5\x08\x02\x1f\x65\x35\x7b\xcc\x00\x44\xe8\x5d\xb4\x92\xba\x71\x51\x9a\xb4\x0d\x1f\x92\x0d\xbd\x20\xac\x46\x4c\xe4\x0c\x8a\x4d\xf8\x88\x05\x8c\x0a\xbc\xf0\xc8\xf9\x0f\xac\x37\x67\xa6\xd9\x84\x81\xe3\x36\x2f\x6b\xfd\x8c\xe7\x12\x6c\x35\x29\x51\xfa\x82\xfa\x1a\xea\xc0\x9a\x90\xa1\x03\x94\x09\x9a\x82\xb9\x55\x7e\xd3\xb0\x75\xa7\x58\xe1\x84\xcf\x06\x42\xd1\x29\x8e\xd4\x3d\xde\x4a\x03\xc7\xb6\x99\x4d\xc3\x4f\xdd\x30\xd0\xf9\x99\x5e\xfc\x19\x61\x44\xc0\x44\xb5\x4e\xde\x7c\x84\xe1\xc9\x46\x9c\x1b\xac\x6c\xd6\x30\x2a\xbd\xc5\x02\xe7\x8a\xa7\x5a\xbf\xc5\x49\xb2\x38\x30\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x97\xbb\xc9\x2e\xee\x29\x8e\xe6\xe4\x0e\xaa\x22\x37\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\x27\xe8\x7f\x8a\x39\x9e\x0e\x4e\xbf\x1f\x8e\xcf\xce\xef\x06\xdf\x5d\x0c\xcf\x82\xf9\xd8\x27\x97\xe7\x77\x77\xf5\x5f\xbf\x3f\xbf\xaf\xff\x78\x73\x7d\xf3\x70\x31\xb8\x6f\x6a\xe5\xe2\xfa\xfa\x87\x87\x9b\xf1\xc7\xc1\xf9\xc5\xc3\xed\xb0\xe1\xd3\x87\xfb\xf6\x87\x77\x3f\x9c\xdf\xdc\x0c\xcf\xdc\xaa\xfc\x2d\x38\x5d\x60\x3d\x86\xd4\x8b\xe6\x69\x54\x0f\xe0\x21\x2a\xbf\x78\x82\x1e\xaa\xa5\x0f\x6c\x2c\xb2\xc1\xb1\x78\xc6\x52\xf3\x30\x08\x85\x1f\x31\xe4\x3e\xd7\x8b\xd2\xf6\xa9\x09\xd7\x89\xe6\x04\x25\x9c\x3f\xe6\x99\x65\x6d\x26\x3e\x8c\x71\x63\xf8\x21\x32\x68\xed\xfb\xf3\xfb\x93\x7a\x09\x06\xdf\x58\x80\x98\xe5\xce\x00\x8c\x0b\x3b\x76\x0a\xb6\x14\x07\xcd\x5f\x58\x6f\x83\x1e\xfc\xce\x2c\xeb\xc7\xb4\x86\x99\xaa\x74\x13\xc7\xb6\xe8\xaf\x9b\x58\xd0\x70\x79\x5f\x97\xad\xa6\x5f\x0e\x53\x7b\x0a\x4d\x48\x84\x73\x13\xd4\xa4\xef\x29\x21\xb8\x08\x07\x5c\xd0\xc3\xee\x1a\xb5\x74\xd4\xd8\x60\x65\xcf\xf4\xc4\xe5\x23\xcd\x32\x12\x7f\xa8\xcb\x2f\xe5\xea\xb0\xb6\x26\x39\x9f\xa2\xe0\x4c\x6a\xbd\x1e\x74\x7e\x57\x38\x65\xbe\xf0\x9e\x34\x08\xdc\x28\x42\x59\x00\xc8\x59\xdf\x09\xbe\xb0\x05\x05\xd7\x18\x56\xe8\x99\x40\x4a\x75\x6e\x2b\x47\x19\xdd\x5b\x9f\x6d\xe8\xce\xd8\xb4\x5d\x1d\xb8\x52\xaa\x75\x2b\x33\xde\x85\xc0\xad\xbf\x97\xa4\x89\x11\x6f\x91\x17\x7b\x66\x1a\x05\xee\xec\x62\xde\x60\xc4\x2d\xc1\x0d\xee\x36\x68\xb0\x90\x2f\x91\xaf\xea\x37\xd2\x8a\xcb\x42\xb3\xed\x2e\xe3\x71\x58\x20\x25\x80\xeb\xee\x03\x2b\x81\x20\xaf\x5c\xab\x7b\x1e\xe3\x85\x26\x0e\x88\x35\x96\x79\x96\x71\xa1\x50\x4b\x1b\xc6\x8d\x6f\xc6\x07\x77\x8e\x9d\x87\xe7\x71\xd0\x88\x96\x30\x64\x43\x2d\x8d\x6e\xf0\x08\x76\x5d\x0b\xc6\x11\x06\xc8\x82\x22\xe8\xeb\x1e\xa5\x25\x95\xba\x44\xa1\x4d\xc2\xef\x36\x19\x06\x99\xbe\xe0\xbb\x96\xe1\x6b\xea\xfd\xda\xb5\xd0\xb8\xe5\x09\x99\xaa\x71\xa3\xd7\x67\x89\x81\x53\xb7\xc8\xda\x10\x65\xe8\x6c\xbe\x83\x16\xbb\x6b\x09\x7f\xb4\x81\x3d\x5a\x35\x08\x2c\x04\x82\x73\x65\xe4\xd3\x42\x87\x41\x6e\x35\xc1\xbc\x60\x3b\xb5\xb9\x60\x5e\x08\xd4\x32\xbf\xf1\x87\xfa\xb4\xa9\xa3\x11\x1b\x42\x00\x45\xa1\x88\xb8\x14\x31\xd0\x02\x56\xca\xff\xa5\xa2\xa3\xaf\x1a\xad\xd9\x8e\xf0\x5a\xd0\xbd\xad\x97\x9f\x2c\x50\x51\x58\xb6\xf4\x5d\x97\xd3\x63\xac\xde\x4e\x04\x34\x13\xb6\x65\xdc\x15\xc9\xac\x65\xde\xcc\xb3\x88\xf4\x81\xf8\x30\xdd\xd5\x11\xfa\xc9\x59\x7e\x20\xf0\xb5\xa8\xc9\x6c\x63\x37\x12\xbc\x70\xa0\x90\x4d\x0b\xbb\x0b\x9c\xc5\x5d\x87\xc2\x2e\x5f\x60\x0f\xe8\xd4\xb0\xca\x25\x05\x9c\x31\x63\x91\x5d\x23\xed\xe3\xd4\x7f\x74\x47\x96\x47\x05\x7c\x84\x32\x9c\x36\xb2\x0a\x84\x0e\x96\x2c\xfe\x97\xd9\x2c\x93\x89\xea\x0a\x6b\xd9\xb2\x88\xd6\x83\xaa\xcf\x0f\x78\x00\x4d\xa2\x2a\x9a\xd2\x24\x01\x39\xe0\x08\x0d\xa0\x3c\x30\x24\x72\xea\xab\xd0\x05\x58\xd0\x19\xe3\xab\x72\xcc\x5a\x88\x29\x0a\x88\xe9\xae\x9d\x98\x24\x50\x53\x91\xc7\xbf\x1b\x8a\xda\x01\xa6\x8b\xe6\x2d\xb8\x8e\x88\xdd\x1d\xc9\x65\x0d\xe5\xfd\x2d\xa2\xa3\x6b\xc3\x0d\x3e\xfc\x57\xf3\xd0\x3f\xe5\x58\x60\xa6\x20\xe6\xd7\x8a\xee\x82\x04\xa9\x47\xe4\x33\xc4\x67\x30\x63\x08\x86\x9f\xc2\xcd\x75\x2e\x7f\x08\xf7\x42\x34\x3e\x40\xf4\x88\x1c\x41\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\x56\x8b\x65\x3c\x42\x83\x44\x72\xfb\x05\x61\x51\x02\xe5\xb8\x83\xf0\x64\x4f\xf9\xd6\xad\x34\x59\x80\x82\x02\x5b\x59\x34\xcf\xed\x83\xe0\x43\x28\x32\x06\x3e\xf1\x04\x4e\x7a\xf1\xfb\xef\x79\x66\xbc\x15\x6d\x71\x12\x2f\x58\xce\xa1\x76\x0d\xbd\xd8\x26\x99\x52\x81\xcb\x36\x08\xde\x80\x8d\x29\x62\x4c\x03\x04\x16\xf4\x35\x56\x28\x21\x58\x2a\xf4\x87\x6f\xd6\x8a\x0d\x71\x13\x2c\xb8\xab\x3d\xbe\x45\xa2\x98\x4b\x35\x08\x85\x3b\xdf\x31\xd4\x8e\xc3\x42\x21\x8c\x18\x79\x0e\x23\x4b\x39\x04\x03\xbb\x82\x70\x24\xc8\x6d\x35\xf1\x64\x26\x33\x1f\xb2\x35\x8c\xca\xd4\xc2\x47\x1c\xdc\xb1\x75\x9f\xda\x61\x35\x50\x96\x55\x9e\x6c\x88\x27\x40\x72\x15\x41\xff\x73\xac\x46\xcc\x72\x56\x17\x36\x12\xa4\x79\x0d\x92\xa4\x1c\x68\x8f\x21\x97\x84\xe9\x09\x43\x7d\xf6\x23\xbf\x40\x57\xa0\x7e\xf9\x68\xe7\x92\x9d\xae\x38\x2c\x26\x1e\xcf\xe3\x1d\x85\x6d\x37\x4a\x3b\x4d\xf6\xe5\x57\x14\x82\x1b\xba\xbf\x30\x85\xf2\x3b\x08\xc3\xa4\x69\xc8\x2b\x0e\x56\xdd\xa6\xbf\x44\x36\xde\x75\x07\xdd\x45\xe5\x66\xfb\x38\x5c\xb3\xcf\xbc\xc1\xdc\xde\xb2\xb9\x81\x6c\xb1\x8d\x02\xee\xc3\xee\x5f\xcb\xe3\x5b\x1a\xfa\x79\x0c\x49\x7f\xab\xb9\x60\x91\x44\xe7\x58\x87\x89\xbd\x8e\x83\x9c\x9e\x20\x85\x00\x82\xff\x1c\xe3\xb3\x6f\xb6\x78\x5e\xb3\xf7\x3d\xfd\x83\x62\xfe\x6e\x2a\x3e\x08\xae\x3e\xf1\x76\x61\x6f\x10\xff\x1d\x47\x10\xe9\x0f\x3d\xb9\x1c\x83\x3a\x20\x93\x83\xb1\xc6\x60\xcc\x6f\x14\x0f\x33\xc1\x23\x22\xe5\x11\x1a\xc2\x45\x63\xff\x89\xf0\xd4\x39\x24\x82\x97\x47\x4c\x6b\x26\x0e\xbf\x25\x68\xbf\x4c\xe2\x4d\x27\xc0\x80\xc1\x6d\xe5\xcb\x49\x57\xd7\x28\x69\xd3\x26\x1c\x16\x1d\xb4\x01\x65\x0d\xd0\x70\x76\x82\x62\x1e\x3d\x12\x71\x2c\x48\x4c\xe5\x09\xf8\xd6\x55\xab\x53\x2f\xd5\xda\xf6\xd6\x92\x46\x5b\xa0\xc0\x8a\xa4\xb8\x53\xd3\xbf\x0d\xb0\x76\xe1\xb5\x07\x88\x4e\x41\x9d\x70\x39\x19\x26\x08\xd9\xc1\xdd\x10\xa6\xc4\x02\xe2\xfa\xbd\x29\xab\xb2\x10\x4e\xd3\xd0\x42\x5b\x5b\x36\x91\xd8\x45\x0c\xce\x86\xd3\xbe\x9f\x13\x49\x5c\xc0\x81\x99\x94\xe2\x36\x96\xd9\xb0\x8b\x0c\xab\xb9\x84\xd4\xd5\xf2\x1a\x58\xa5\x0b\x3e\xd5\x2b\x84\x33\x88\x57\x30\x56\x8a\xe2\x23\x9f\x60\x29\x15\x4d\x92\x11\x63\x84\xc4\x12\x41\x96\xe9\x57\x8d\x19\xf2\xfa\xd3\x03\x84\xe3\x18\xfd\xef\xaf\x3f\x5e\xfc\x7c\x3f\x1c\x9f\x5f\x81\xd1\xfa\xfc\x62\xf8\xcd\x81\xff\xf1\xfa\xe1\xde\xff\x6a\x2c\x2c\x4f\x44\xa0\x14\x3f\x82\x8a\xc7\x24\xb1\xc9\x13\x64\xc4\xc2\x91\x3a\xec\x00\xfd\x44\x12\x17\xe9\x6a\xc5\x14\x0f\xa1\x68\xf7\xb0\xb5\x62\xb1\xb1\xf9\xad\xa1\xfc\xde\xfa\x4f\x96\xd3\xa0\x23\x1e\xdf\x85\x13\x03\x21\x47\x06\xcb\x20\x99\xdc\xea\xbe\x05\xc1\x11\x36\xa3\xac\x2d\x1e\x8f\xb0\xa7\x97\x14\xe2\x7f\x20\x8b\x1f\xb5\x7a\x7d\x83\xa9\xe8\x4c\x7b\xcd\x68\x40\xee\xc4\x68\x3d\x1d\xcb\xea\xa1\x92\x46\x16\x36\xd9\x36\xad\x31\x9f\x4d\x40\x70\x6f\x3e\x5d\x0b\x2f\x45\x3e\x2b\xe1\x50\x2a\x7c\x3e\x87\x83\x72\xf2\x17\x4d\x41\x83\x23\x76\x7f\x7d\x76\x7d\x82\x48\x82\x27\x1c\x42\xf9\x6d\x48\x90\x6b\xc2\x2e\x58\xc4\xd3\xa0\xa1\x12\x42\xc9\x01\xca\x0a\x84\x92\xd0\x88\x76\x64\xda\x58\x81\x54\x92\x71\x51\xc7\xf7\xd8\xad\x0a\x68\x27\x7b\xc3\x45\x97\xeb\x5f\xbf\x06\x4b\xc7\x33\xad\xc8\x55\x38\xaf\xbd\x9b\xa7\x04\x9b\x5a\xfa\xc6\x2d\x64\x6d\xf9\x36\x80\x35\x49\x4a\xf5\x14\xf5\xc1\x91\x47\xd6\x05\x5f\xbc\xc9\x19\xfa\xe1\x2f\x12\x4d\x72\x35\x62\xe5\x36\x38\x43\x83\x9f\xee\xd0\x77\x58\x45\xf3\x6f\x46\xec\x5a\xab\x99\x3f\xfc\xa5\x05\x4a\x69\x6d\x74\x42\xbd\x26\x67\x58\xe1\x0b\x8e\x63\xca\x66\x4d\xd0\x84\x45\xfd\x98\xe1\xfd\xe0\x04\x5d\x5b\x1d\xbe\xc8\x04\xf1\x29\xc1\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x65\xf8\x36\xa3\x99\xc1\x85\x35\x62\xf7\x06\x93\x51\x73\x55\xaa\x50\xc6\x6d\x0d\x23\xad\x95\x19\xb4\x4a\xec\x32\xa4\x48\xb2\x40\x7a\x75\x80\x8c\xfd\x66\x58\x79\x0c\xe4\x99\x3a\xb3\x1f\x31\x50\xd0\x7d\x6e\x4a\xc2\x23\x9c\x40\x4c\xde\x61\x60\xd3\xd3\x6a\x3b\xcf\x21\x3f\xdc\x14\x3d\x5f\x94\x43\x67\x3d\x64\x81\x17\xca\xc2\x8d\x02\x03\x00\xec\xa3\xf5\xc6\xa6\x5c\x73\x1c\x83\xc5\x06\xc6\xb7\xc4\xac\x8e\xfe\xd0\x63\xb3\x99\x65\xd1\x4f\x7d\xda\x16\xcf\x99\xc3\x22\x89\xc0\x7c\xcf\x16\x10\xbe\x0d\x45\x47\x38\x84\x7e\x14\xdc\xd9\x12\x65\x6d\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\x58\xcf\x15\xcb\x33\x1b\xd8\x68\x65\xfd\x4c\x90\x43\x9f\x01\x15\x97\xd6\x54\xdf\xb0\x47\xe8\x36\x54\xaf\x63\x1e\xe5\xa9\x43\x56\x86\xec\xa9\xa2\xac\x7c\x49\xe2\x31\x17\xfb\x2a\x8a\x07\x94\x16\x45\x20\x7d\xbc\xb3\x7e\x6c\x08\x66\x10\x7e\x5a\x97\xd4\xdb\x05\x5f\xe0\x1d\xdb\x45\xad\x99\x86\xc6\x59\xb9\xa5\x52\x6b\x5b\xe7\x25\x5e\x15\xe8\xaf\x5c\x80\xb0\x45\x3e\x67\x1c\x8c\xdc\x26\x3d\x8b\xc7\x5f\x49\x74\x7e\xa3\x25\x20\xad\xf1\xfa\x33\x98\x4b\x65\x82\xcb\x20\x5d\xc7\x7c\x6d\xd2\x05\x0e\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x9d\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x3a\xa7\xda\x62\x17\xec\x01\x6c\x5b\xfe\x4d\x50\x1e\x83\xd8\x21\x3c\xb3\x27\x5c\x86\x27\x13\x95\x8e\x66\x11\x49\x20\x89\x3a\x28\x73\x08\x2f\xec\x5a\x89\xfe\x7f\x2d\x01\x2b\x1b\xeb\xa3\xb2\x59\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xf0\x33\xd6\x9c\xfb\xc0\xc2\x68\x99\x8f\x8c\xe7\x65\x8a\x23\x83\x0a\x2a\xd1\xd7\x9f\x4f\xf4\x6f\x07\x68\x71\x02\x41\xa4\x07\xe8\xd7\x13\x8b\x96\x83\x85\x1a\xeb\x9f\xbe\x71\xb2\xb6\x6d\x02\x06\x4d\x25\xfa\xea\xf8\x09\x0b\x53\x33\xfa\xd8\x8c\xe8\x2b\xcb\x59\x7d\x5d\xbc\x50\x36\x4f\x38\x7f\xb4\x01\xb6\xb5\x0f\x8f\x1d\xf0\x1a\x90\xb7\xf7\x9b\x98\xad\xf7\x89\xf9\x0a\x1d\xc2\x0b\x04\x1d\x65\x13\x74\xf4\x77\xc9\x19\x3a\x5a\xe0\x34\xb1\xbf\xba\xa7\x36\xfe\x17\x4b\x9b\x13\x17\xfb\x20\x9f\x64\x61\x2c\xa5\xdf\x25\x7c\x02\xb3\xba\x74\x33\x35\x11\xb4\x30\xd0\xe2\xf6\x29\x2e\x2c\x3b\x11\x97\x88\x0a\xf8\x41\x29\x57\xe6\x15\xe0\x71\x4d\xb3\xfa\xec\x87\xf4\xdf\xc6\x2f\x0c\x8b\xe2\x92\xf8\x8c\x71\xd8\x47\xaf\xe9\x46\x3f\xa3\xaf\x2d\x0b\xfa\x46\xdf\x31\x36\x5c\xd9\x2c\x43\x53\x07\x0b\xdf\xc1\xcf\x41\x07\x94\x21\x93\x96\xb9\xe4\xcb\x5f\x8f\x8f\x8e\x8e\xfc\xd7\x90\xb5\xfe\xff\x22\xaa\x24\x49\xa6\xa6\x25\x77\x83\x2d\x46\xec\xd2\x15\x5e\x70\xc6\xeb\x02\xd2\x31\x13\x5c\xf1\x88\x27\xe8\xb0\x30\xe8\xc6\x3c\x92\xe8\xdf\xb5\x58\x1b\x2c\x25\xfc\xa8\xf5\xb8\x16\x18\x58\x83\xf4\xfc\x4a\x87\xca\x1a\xc4\xab\xc7\x2a\x44\x71\xf3\x8a\x2d\x96\x61\x15\x0f\xa0\x05\x4d\x39\xc7\x16\xe9\x4d\x08\xfd\x32\xf9\xac\xe0\x51\x0b\x90\x5e\x63\x28\x7b\xf3\x4d\x59\x63\xb7\x05\x9e\x9e\x21\xeb\x96\x05\xb0\x78\x57\x96\x33\x98\x79\x1e\x84\xee\x13\x7d\xb9\xb0\xb0\x14\x80\xcc\xd3\x14\x8b\xc5\x71\x71\xda\xea\xc4\x59\x20\xad\x01\x8f\x49\xdc\x02\x80\x0b\x37\xb1\x47\xcb\x46\x31\x58\xf1\xd2\xdd\x68\xfe\xec\x46\x50\xcb\x30\x40\x2c\x20\x2c\xe2\xb1\xa5\xeb\x22\xfb\xb4\x2c\xb1\xf8\x77\xea\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\xb7\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x86\x7b\xf4\xfc\xfa\xce\x7d\xd3\xfd\xd2\x85\x75\x28\x8b\xec\x38\x09\xf1\xf1\xd8\x0c\x09\xfc\x5c\x5c\xbf\x10\xdb\x61\xac\x33\xb9\xcf\xcd\x35\xff\x3e\xe5\x37\x34\xd1\xb7\x16\xd0\xf8\xd1\x88\x95\x7e\x3e\x40\x24\xa1\x29\x65\x3e\xb6\xce\x30\x77\x3e\x35\xd2\xf3\x23\x55\x7a\xcb\x64\xfc\xa8\x39\x98\xc3\x75\x0a\x54\xaa\x01\x5b\x38\xd2\xf1\x8e\x29\x6b\x81\xc8\xa5\x1e\x57\xa1\xa3\x6b\x61\x56\x37\x71\x68\x05\x52\x1a\x10\x1e\x9c\xdf\x11\xd3\xad\xb9\xb3\x54\x84\x0b\x07\xed\x05\xcd\x1d\x3a\x40\xfc\x80\x03\x40\x1f\xa5\x98\x5f\x2f\xff\x36\x08\x28\x43\x96\xa7\xdb\x26\x9b\xd8\xf0\xe1\xb7\x32\xd3\xdd\x08\xe2\x6e\x2a\x9b\xb8\x44\x58\x9e\xba\x03\xb5\x06\xc5\x0d\xad\xf8\x13\x93\x28\xc1\x06\xa9\x46\x37\x04\x91\x8f\x07\xc6\x41\x9a\x05\x7d\x99\xeb\xc5\x74\x63\x6a\xec\x24\x84\x7d\x6d\xfe\xfd\x0d\xb2\x77\xc3\xb7\x07\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\x3e\x00\x65\xb4\xd6\x1f\x96\xc0\x04\x60\xd4\x4d\x14\xa0\x99\xf0\x56\xb9\x46\x10\x05\x3b\x66\x3c\x26\xdb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x96\x4e\x4b\xa4\x5c\xd3\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x2d\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x6d\x37\x21\x6a\x40\x2b\xea\x74\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x9c\xb3\x29\x3f\xb1\x3a\xd5\x05\x65\x8f\x86\xe2\x5f\x6a\x8f\x0c\x20\x36\x89\x4b\x30\x6e\xae\x4a\x2b\xcc\xe1\x10\x51\x16\x25\x39\x5c\x7c\x52\xe1\xe8\xd1\x80\x7a\xb7\x19\x7d\xf5\x37\xe3\xd5\xc9\x94\x2d\x12\x53\x9e\x24\xb6\xdb\xe2\x02\x2d\xca\x58\x3f\x51\x8c\x30\x7a\xb8\x3d\x6f\xee\xfb\x91\xd6\x9d\x39\xcd\xb7\x67\x99\x40\xe0\x7f\x7e\xa0\x6b\xc5\x5d\x56\x60\xf1\x48\x89\xd4\xbd\x71\xa9\x0d\x74\x55\x13\xe9\x27\xac\xc8\xb6\x99\x50\x06\x03\x6c\x8d\x48\xbd\x1a\xb8\xda\x52\xeb\xf1\x96\xc8\x64\x05\xaa\x18\x84\x06\xb5\x43\xa4\x85\xc1\x5a\xf0\x70\x0d\xec\x06\x78\xbf\xdb\x7c\x2a\xef\xae\x98\xce\xf2\x61\x26\x84\xac\x81\x36\x70\xa7\x5f\xef\x38\xc8\xd2\xab\xcb\xc6\xf8\x8c\x4d\xf5\x85\x3a\xe8\x6f\x6c\x25\xbb\x75\x98\xad\x23\x47\x23\x5e\x4b\x9f\x23\xe2\x47\xe2\xc2\x70\xbc\x2c\xe6\xfa\x9d\x81\x6f\x8b\x97\x8a\x3b\x78\x0b\x6d\x03\xe1\x07\x62\xeb\x96\x61\x13\x5a\xfc\x1a\xa7\x9d\x01\xe5\x8a\x8e\xcf\xec\xc7\x97\x35\x78\x39\xcf\x8a\x2e\x21\x8b\xcf\x03\xa7\xa4\x98\xe9\x93\xed\x7a\x6d\x31\x42\x1a\x89\x70\xa3\x21\x3d\x64\x1b\x0d\xc8\xf4\xd8\xb1\xee\xa1\xed\xca\xb5\xf2\x6c\xec\xf0\x38\x31\x76\x26\x35\x07\x13\x44\x51\x2f\x48\x73\xb4\xb2\x29\xc2\xd4\x16\x4a\xf0\xff\xc7\xde\xb7\x35\xb7\x8d\x24\xe9\xbe\xcf\xaf\xa8\x88\x7d\xb0\x7d\x0e\x45\x4d\xf7\xc4\x6e\xf4\x3a\x62\x1f\x68\x59\x9e\xd6\xb4\x2d\x79\x24\xb9\xbb\xf7\x2c\x37\xe8\x22\x50\x24\x31\x02\xab\x60\x14\x20\x99\xb3\x33\xff\xfd\x44\x65\x66\x5d\x70\x25\x40\x4a\xb6\x67\xb6\x1f\x76\xa7\x2d\x02\x85\xba\x57\x56\xe6\x97\xdf\x97\xaf\xf1\x82\xa4\x45\xa1\x5f\xb4\x8c\xb0\xcf\x79\x38\x62\x84\x0f\xd0\x64\x0d\xe3\x9e\x60\x7e\xf7\xad\x34\x57\xcb\x2a\xb9\xa8\x3b\x95\x9d\xba\x71\xc0\x9c\xe7\x13\x31\x22\x95\x23\x13\x77\x6c\xd6\x4a\x37\x67\xca\x91\xda\xdc\x97\x7c\xeb\x18\x01\xac\x42\x30\xe5\x77\x61\xe5\x96\x02\x78\x71\xbb\xeb\x70\xb4\x08\x77\x58\x05\x12\xc5\xec\xaa\xc1\x5c\xce\xec\x23\x9e\xdd\xcb\x5c\xcc\x72\x34\xc0\x01\x1f\x8a\x68\x68\xb8\x5f\x71\xdf\xeb\xd4\xb8\x8e\x46\x8c\x4d\xde\xac\xeb\x88\x9b\xfb\x9d\x3b\x8d\x48\x31\xc8\x71\x78\xf6\xaa\x35\x91\x7c\xfe\x11\x1f\xbf\xb1\x4d\xac\x29\xf1\xb7\x7d\x78\xff\x5d\xca\x32\x46\x50\x41\xa1\xf8\x3f\x62\x48\xd3\x9d\x9f\xa6\x9e\x24\xae\xf6\xb1\xe6\x6a\x2d\x8e\xda\x8d\x13\xbe\x5d\xe4\xaa\x5b\xce\x6a\x40\x37\xd9\x22\x2a\xfe\x9d\x0d\xca\x5b\xec\xd8\xa7\x92\xa7\x78\xb8\x49\x9a\x8e\xb6\xda\x60\x2a\x7f\xff\x6f\x6c\x06\xa7\x0f\x7b\x07\xfb\x22\x04\xf8\xa1\xb4\x42\xb1\x64\x9b\x89\x5c\x2b\xc9\x3b\x75\xdd\xee\x7e\xd0\x0b\xd2\xa6\x59\xf0\x28\x52\x65\x53\x87\x66\x44\x4b\x5a\x4a\x0b\x1b\xc5\xd9\x5d\xb9\x14\xb9\x14\xa8\x5d\x07\xcf\x31\xfb\xdc\xa0\xea\x2a\x5e\x16\x9b\xef\x17\x51\x9a\x0c\x16\xcc\x81\xec\xa2\x99\x79\xed\x0c\xdf\xea\x6b\x40\xa5\xfc\x4a\xd5\x25\xc3\xdf\x18\xfe\x36\x65\xaf\x78\x74\x27\x64\xcc\xb2\xb4\x5c\x27\x44\x26\x00\x27\x14\x6c\x97\x81\x7b\xb6\xda\x30\xb4\x2d\xb0\x7c\x73\x0c\xcd\xe5\x96\xdf\x21\x89\x2d\x19\x91\x11\x4f\x3b\xa9\xa8\x9c\x59\xbd\x48\x9a\x73\x77\xef\x68\xb9\xf3\xb0\x59\x4c\x7d\xee\xe9\x12\x73\x2b\x1e\x36\x8a\x22\xd2\x15\xab\x7e\xc4\xc2\x75\xb3\xb5\xc1\xf9\x62\xf3\xf2\x9d\x8a\x21\x55\x06\x57\x2f\xb8\x7b\x81\x88\xb9\x94\x8c\x03\x6d\xcc\x33\xcd\xca\xcc\xda\x67\xe0\x87\x4c\x21\x2a\x8c\x43\x60\x7e\xc8\x12\x73\x4b\xdb\x88\xb9\x04\xa4\x2d\x73\xcd\x6b\x88\x5d\x31\xe1\x01\x31\x6d\x5b\xc3\x0a\x49\x13\x8e\x8b\x71\x36\x78\x9c\xf7\xcc\xd3\x81\x28\xe2\x62\x23\xe4\xe2\x00\x3a\xe1\xe1\x83\x56\x41\x0c\x93\x19\xec\xfc\xb9\xae\x0b\x4b\x99\x90\x80\x14\xb9\xf0\x43\xae\xcc\x64\x55\x33\xa3\x13\xcd\x34\x2f\x12\x6d\xf6\xb2\xd6\x1e\xf7\x54\x15\xc7\xf4\x3a\x1f\xc7\x8f\xd1\xc2\x8d\x51\xeb\x0b\x97\x95\x30\x65\x6f\xc0\x0b\x16\xdc\x0c\x94\x63\x9a\xe8\xda\xb0\x8a\x8d\xe8\xa4\x5c\x7c\x0c\x38\x8f\x6d\x41\xf0\x7c\xaf\x73\xd3\x65\xa0\x4c\xd9\xcc\x47\x1f\x90\x6b\x03\xe3\x0a\x7b\x5a\x24\x52\x2d\x0e\x99\x7c\x83\x1c\x75\x10\xa1\x87\x09\xc4\xc0\x92\xd2\xe6\xef\x9e\x41\xde\x55\xf3\x01\x92\x3c\xf9\x9d\x90\x7d\xde\x98\xe1\x35\x44\x77\x59\xaf\x4b\xc0\xf9\xe1\x14\xba\xe2\x0e\xa9\xe0\xf0\x65\xe7\xe9\x4d\x92\xd5\xa9\xe9\x72\x73\x0d\x89\xee\x28\xb5\x04\xbd\xb1\x44\x90\xf2\xb0\x51\x3a\x5c\x67\x76\xfc\xf0\x26\x9b\x97\x8e\x25\x1c\x52\x73\x5c\x07\x23\x26\x47\xaa\x90\x3f\x05\x6a\xed\x16\x29\x7a\x9a\xdd\x78\x33\xbb\x85\x42\x37\x40\x14\xcb\x16\xd5\x5c\xcd\x3f\xfd\xa0\xaf\x60\xc5\x3e\x46\xa6\x7e\xbb\x2c\xeb\xf1\x28\xf9\x03\xe3\x03\x0e\xff\xe5\x35\x5d\x79\xec\xb8\x25\x32\x15\x33\x3f\xbd\xc6\x0b\xb8\x7e\xfd\x66\xd5\x84\x5f\x07\xb5\x6d\xdf\xcc\x7e\x17\x80\x08\xd8\xb2\x4c\x50\x43\xbd\x62\x10\x2a\x6b\x71\x00\xff\x31\x1c\xff\x89\x76\xe7\x49\xfb\x1c\x7b\xaf\xe2\x63\x26\xd6\x78\x3a\xbd\xe6\xbc\x1e\x80\x31\xd6\x6d\x9a\xef\x3d\x3d\x91\xa9\x6e\x74\x68\xbc\x18\xae\x92\x0e\x70\x80\x65\xb9\xba\x01\x75\x91\x2e\xc6\x8a\x80\x78\xdf\xa6\xa0\x99\x71\x36\x9f\x71\x09\x11\x5d\x83\x42\xd1\x65\x7f\xfc\x73\xf6\xa7\x9b\xab\xcb\x93\x2d\xcf\xf5\x86\x43\x46\xb0\x2d\x6b\x62\x05\xdb\xf0\x7a\x6c\xa3\x5e\x89\x9c\xcb\x13\xb6\x56\x13\x8c\xb1\xbe\x64\x9b\xa2\xc8\xf4\xcb\xd3\xd3\x75\x52\x6c\xca\xe5\x34\x52\xdb\x53\xdf\x35\xa7\x3c\x4b\x4e\x97\xa9\x5a\x9e\xe6\x02\x50\xb6\x27\xdf\x4d\xbf\xff\x0e\x46\xe6\xf4\xfe\xbb\x53\x88\xac\x4d\xd7\xea\x5f\xde\x7e\xff\xef\x7f\xf8\x37\x53\x70\xb6\x2b\x36\x4a\xbe\xa4\x00\x6e\x6f\xd9\x27\x68\x95\x9f\xe2\x2b\xb5\xaf\xfc\xfb\xf4\xf7\x61\x35\xe8\xd1\xad\x8a\x45\xaa\x4f\xef\xbf\x5b\xd8\x81\x99\x66\xbb\xdf\x70\xa9\x5f\x0d\x97\x7a\x97\x14\xbf\xe1\x52\xbf\x2a\x2e\x75\xb8\x85\xe3\xf6\x18\x20\xfa\xf4\xfb\xa3\xf9\xbb\xdb\x23\xad\xeb\x7d\xdf\x3e\xd4\x72\x38\x84\x59\x03\x47\x1c\x11\x77\x62\xd4\x15\xbb\xd6\x5c\x77\x75\xe8\x70\xb1\x8d\x25\xdb\xef\x34\xe6\x47\x25\x49\x03\x0a\x24\x89\x80\xc8\x19\x5d\x82\x19\x4f\xda\xd0\xa6\x84\x76\x3a\xa6\xff\x9e\x92\x92\xfc\xb1\xb9\xc8\xa9\xb9\x07\xf2\x90\xa7\xf8\xb6\xc5\x66\xa9\x07\xcb\x3f\xfe\x18\xac\xdd\x03\x75\x5c\x1d\x19\x31\x4e\x1e\xa8\x8b\xad\x57\x47\x35\x36\x5c\x1f\x06\xf2\x9b\x21\xe5\x9f\x8b\xd3\x39\x55\x7c\xfa\xa0\x3d\x38\x2c\x8b\x02\x88\x84\x13\x59\x53\x56\xe6\x99\xd2\x42\x4f\xd9\x9b\x9a\xd2\xa1\x07\x2e\x5e\xbf\x39\x63\xdf\xfd\xf0\xef\x7f\x98\xcb\xe7\x2d\xe7\x36\xec\xf7\x2a\x5f\x13\x8e\x12\x4e\xeb\x2d\xd7\x85\xc8\x4f\xf3\x55\x74\x8a\xbb\xdc\xa9\x79\xff\x84\x3e\x7a\xa2\x56\x27\x8e\x92\xf8\x84\xd8\x59\xa7\xdb\x78\x1c\xc1\x40\x65\xea\xe1\x59\x43\x07\x8d\x86\x43\x09\xa9\x88\xd4\xca\x91\xcf\x63\x9e\x0b\xea\x54\xa8\x55\xcb\x7f\xbc\x4a\xd5\x52\xbf\x70\x04\x68\x5c\xdb\x6f\x78\x46\xa2\xee\xa5\xf9\x38\xec\xe4\x76\x8a\x3c\xa5\xa3\xc2\xee\x25\xe1\x75\x64\x4c\xc7\xb7\x2f\x36\x7f\xdc\x23\x1f\x03\xcf\x55\x29\x2d\xbb\xb3\x92\x42\xad\x00\xc5\x07\x96\xb0\x45\x29\x80\xaf\xd6\x9c\xb4\x9e\x7b\x21\x17\x19\x1e\x30\x10\x55\xe8\xee\xee\x23\x19\xce\xf7\xf5\xf3\x53\x30\x9c\x1f\xdb\xef\xb4\xa1\x7c\xa5\x0e\x3f\x16\x4a\x88\x4b\x69\x0c\xaa\xc2\x3c\xbf\x37\x82\xea\xf6\x01\xaf\x3e\xe4\xc9\x84\x33\x9e\x83\x91\x26\x4e\x0a\x75\x02\xa4\x35\x40\x85\x82\x9a\x03\x5d\xb0\x0a\x88\x3c\x8f\x39\x26\xcd\xf3\x03\xea\x89\x86\xf9\xe7\xa0\xa2\x64\x93\x68\xa4\xf0\x24\x48\x56\x22\xa5\xc8\x29\xa6\xb6\xf7\x44\x1d\x19\x97\x0e\x87\xb2\x1f\x91\x15\xe8\x5a\x07\x7c\xf0\x0e\x8f\xcf\x83\x4d\x60\xca\xc0\xfa\xdc\xa8\xad\x32\xe6\x8c\x2a\x75\xf0\x23\xde\x5e\xe0\x10\xee\xb4\xbd\xb6\x3c\x43\x92\xba\xaf\xd7\x1a\xb3\xb4\xcc\x4f\xe8\xd4\x0b\x1f\x1a\x25\xb1\xb1\xac\x8a\x0a\xec\xa9\xbf\x63\x83\xef\x9f\x37\x80\x7a\x40\x9d\x3a\x90\x8a\x25\x8e\xe7\xe4\xaf\xe6\x5e\x63\xa6\x94\xbb\x29\xb8\x93\x1b\x41\x3a\xc8\xc5\x18\xd2\xbd\x5a\x6b\xbe\x33\x5b\xba\xdc\x8e\x1c\x03\x07\x32\x1e\x32\x00\x5c\x22\xec\xd6\xe2\x6d\x4f\x5a\x01\xb7\x5d\xeb\xd2\x0a\xb3\xc6\x0b\xcb\x17\x3a\xae\xaa\x37\xae\x00\xa2\x06\x6d\xd6\xdb\xd3\x2d\x01\x3a\x1b\xfb\x18\x37\x04\x6b\x5b\x74\x80\x6e\xe4\xf8\xc5\x08\x02\x2b\x63\xfa\x0e\x3e\x82\x93\xb3\xd1\x83\xc1\x5a\xe8\xea\xc0\x71\x2e\xb6\x3e\x8f\x55\x1b\x9c\x1f\x19\xea\x7c\xf6\x8e\xa9\x65\xe3\xf2\xe8\x5e\xbc\xf7\x2a\xd4\xbb\x4c\x4c\xd8\xb2\x84\xdf\x2f\xaf\x6e\x43\xb4\x46\x82\xad\x3d\x89\x36\x22\xba\x03\x87\x09\x1e\x79\x4e\xb4\x91\xd8\xf0\xe6\xd2\x4b\x7f\x15\xca\x42\x0f\x76\x8e\x0d\xdd\x29\x02\xa8\x9c\xc5\x89\xce\x52\xbe\x83\x20\xaf\x44\x9c\xbe\x0f\x10\xbb\x04\x17\xb3\x15\xec\xf3\x17\x0f\x1f\x69\x33\x2a\x33\xff\xde\xd8\xbe\xe4\xf9\x32\x29\x72\x9e\xef\x98\xef\xcc\xe6\x7e\xc0\xb4\xd8\x72\x59\x24\xd1\x5c\x6e\x05\x97\x21\x2a\x8f\x82\xdc\xa6\x93\x63\x25\x88\x2f\x78\xb5\x12\x51\xe1\x09\x07\xc1\x78\x77\x3d\xb5\x6f\x0d\x8e\x6b\xbb\x5b\x79\xbd\x4d\xff\x31\x91\x98\xde\x9e\x6c\x01\xf3\x49\x73\x88\x8e\xc6\x03\x83\x37\x20\x15\x47\x47\xae\xbd\x0c\xc2\xbf\xec\x9c\x62\x4b\x51\x3c\x08\xc8\xa7\xa7\x04\xc0\x36\x1b\xff\x68\xb9\x80\xe3\xd4\x7f\xdb\x75\x93\x03\x24\x18\x2e\xb0\x10\x4c\xe6\x88\x7f\x64\x8d\xc1\xe7\x19\xa5\x24\x82\xb7\xe7\x19\xf9\xad\x9e\xc1\x31\x6d\x6e\x8f\xf9\xbd\x88\xe7\xb2\x4a\xab\x44\x36\xa3\x5f\x70\xcc\x0b\x61\x3d\xce\x6e\x63\xfb\x78\x90\x2f\xff\x1c\xa8\x24\x3c\x89\xa4\x4b\xba\xeb\x11\xe6\xc2\x46\x3f\xe5\xad\xca\x6a\x02\x86\xd6\xfd\x00\x48\x96\xd0\x56\xe8\x86\x74\xf1\x2a\x78\x0a\x37\x29\x1d\x69\x0c\x32\xca\x39\x00\x2c\xf9\x25\x1b\x9e\xce\xb6\x32\xe6\xd2\x66\x53\xaf\xca\x14\x59\x42\xbb\xa4\xc2\x88\x43\xca\x66\x7e\x7c\xbd\x0c\x20\xe7\x57\x63\x81\xb6\x98\x83\x3d\x04\x60\x64\xdc\xeb\xec\xac\x17\x52\xa3\x20\xb5\x95\x15\x02\xc7\xf3\x5a\x14\x70\x9a\xc7\x65\x8a\xc9\xc1\xe0\x31\x07\x3e\x2a\x9e\xa6\x2c\x29\xf4\x5c\x3a\xfa\x2c\x24\x43\x87\x1d\xd6\xba\xd4\xad\x22\xad\x74\xba\xb6\xa4\xdd\x0f\x76\x58\x12\x25\x45\x03\xc2\xbd\x0b\xa5\x38\xb2\x4c\x70\xcc\x65\xc3\x61\x9b\xcb\xf0\xce\x55\x1f\x04\x4a\xfc\x02\x8d\xf2\xc7\xc8\xc1\xea\x41\xe4\x83\xb0\xfb\xe8\x21\x99\xb2\x19\xb6\xce\x5c\xb8\xac\xca\x26\xd6\x96\xf2\xe7\x09\x69\x69\x6e\x35\x85\xb6\x3e\x72\x7f\x6f\x05\x39\xe7\xa8\x4c\x79\x9e\x02\x27\xfd\xaa\x4c\x59\xb2\x0a\x04\x43\x61\x0c\x90\x3c\xc9\x0c\x57\xa4\xe0\xac\xb6\x5e\x72\xcd\xb7\x22\xc8\xdb\x26\xf7\x4e\x1a\x60\x28\x90\x11\x1a\x83\xf3\xa6\xac\x17\x53\xf6\xba\xae\x30\x0f\x6b\x22\x20\x5d\x4c\x34\x6e\x7f\xae\xbe\x41\xca\x21\x2a\xd5\x27\x2b\x73\xa5\x7c\x16\xac\xba\x8e\x11\x04\xf2\xf6\x71\x00\x0d\x4b\xdd\xdf\x8f\x1a\x6e\x4d\x39\x36\xaf\xd6\x60\x1b\x6e\x41\x74\x54\xd0\x9e\x0a\x23\x2b\x19\x12\x56\x1e\x50\x51\x47\x08\xda\x52\xd9\x6d\x8f\x3e\x29\x8c\xe3\xc8\xaa\x06\x6a\x3f\xe3\x2b\x1a\xcc\x9c\x10\x8e\x33\xa4\x67\xd7\xbc\x18\x8b\xcd\x71\xc9\x38\xe3\x2b\xda\x8a\x83\x1a\x52\x4d\xd8\x3d\x46\xd6\xd3\x4b\xf0\x8f\xaf\xa8\x93\x7e\xf6\x7a\x00\x5e\x13\xbf\x92\x43\x69\x99\x0e\x5d\x0b\xf4\x5c\xd2\x61\x37\x3e\xfd\x73\xe6\xe7\x1c\x08\x1e\x31\x53\xfd\x29\xbb\x92\x02\x91\x73\x6a\x15\x1c\x2a\x54\x01\x52\x46\x02\xb2\x79\x19\x48\x50\xa7\x89\xbc\xb3\xd4\x12\x66\xc9\x4d\x18\xf7\xa5\xc3\xae\x87\xd3\x06\x77\x91\x0e\x5b\xb2\x4d\x9a\xe1\x08\xf3\x72\x58\x82\x66\xfb\x9d\x3f\x00\xa0\x8e\xdf\x01\xda\xda\x31\x7c\x58\x7a\x91\xe4\xee\x16\x57\xd1\x18\x0f\x51\xa3\x45\x52\xec\xf6\xf5\xef\xfb\x4d\x15\x85\x38\x42\xc8\xe8\xc3\xe5\xeb\xf3\x37\x17\x97\x55\xf5\xa1\x3f\x7f\x38\xff\x50\xfd\xcb\xf5\x87\xcb\xcb\x8b\xcb\x3f\x86\x7f\xba\xf9\x70\x76\x76\x7e\xfe\xba\xfa\xdc\x9b\xd9\xc5\xdb\xda\x73\xe6\x4f\xd5\x87\x66\xaf\xae\xae\x6b\x7a\x47\x56\xac\x28\xf8\xd3\xed\xc5\xbb\xf3\xd7\x8b\xab\x0f\x15\xc9\xa4\xd7\xff\x79\x39\x7b\x77\x71\xb6\x68\xa9\xcf\xf5\xf9\xd9\xd5\xcf\xe7\xd7\x7b\x14\x8f\x7c\x7b\x5b\xbb\xf4\x31\xe0\x63\x07\xeb\x5f\xcd\xd8\x2a\x4f\x84\x8c\xd3\x1d\x62\xef\xed\xcd\xb6\x06\xa6\x0d\xcf\xde\x64\x2b\x54\x79\x0c\x84\xfe\x76\x83\x0a\xf5\xc0\x82\x81\xa5\x51\xca\x2c\xd7\x77\x9d\x1c\x89\x45\xde\x8c\x0a\xf4\x66\x0a\x15\xf9\xce\xe5\xa2\xf5\x55\xc7\x33\x28\xd1\x47\x58\x26\xf2\xbe\xba\x80\x65\x94\x97\x59\x91\x2c\xbb\x93\x22\x06\x32\x0b\x8d\xbf\x7b\x23\xdf\x5f\x3b\x39\xca\x65\xfb\xc6\x58\xc9\x0d\x38\x06\x78\x0c\x25\x1c\x2a\xeb\xe6\xde\xb6\x60\xcd\xac\x5c\xa6\x49\xc4\x92\xb8\xee\x4f\xc1\x14\x36\x74\x19\xd7\x69\x41\x33\x91\x83\xa9\x6a\x6e\x00\x59\x2e\x4e\x78\x59\x6c\xac\xe2\xbc\xcb\x64\x44\x9a\x4e\x11\xe5\x02\x63\x01\x42\x83\x93\x16\xf5\xbc\x82\x2f\x41\x65\x28\x83\x3b\x06\xb2\x98\x69\x40\xd1\xde\x11\x23\xc0\x37\xb1\xf4\x11\x4e\x52\x7c\xbe\xb7\x6b\xa8\xc6\x89\xae\x8b\x39\xc3\x09\x8f\x3f\x5a\x55\x30\xd3\x6e\xb3\x53\x3b\x55\x2c\x1c\x64\x9b\xbb\xd1\xde\x8c\x7d\x73\x2c\x9c\x28\xd5\x64\x06\x2a\x9d\x7e\x3a\xcb\x05\x1c\x22\x04\x05\xb0\xfe\x0b\x80\xae\x50\xae\x07\xa4\x78\x98\xab\xda\x52\x6c\x78\xba\x42\x8b\xc3\x0c\x8d\x5f\x57\xcd\x29\x7a\xab\xee\x84\xbc\xc6\x01\xfb\x2a\xdb\xa1\xc4\x9b\x8f\xcf\xe9\x77\x1e\x21\xef\xc2\x34\x75\xb4\xb3\xca\xe6\xba\x81\x31\x55\xe0\x3d\x21\xf8\x19\x53\x3a\x3c\x63\xaf\x4d\x93\x5b\xad\x92\xcf\xa6\xc0\xb9\x14\xad\x9c\xa5\x80\x17\xb2\xec\x4a\x6e\x5f\x06\x6c\x14\x52\xd4\xdc\x09\x09\x7a\x62\x28\x37\xbc\x77\xce\x8e\xf3\x9f\x37\xc7\xa2\xc7\xa1\x0f\x3e\xbf\xa4\x22\xb3\x16\x46\x79\x6c\x3f\x15\x98\x63\x33\x65\xaf\x89\x78\xc3\xfc\xe5\xec\xed\xc5\xf9\xe5\xed\xe2\xec\xfa\xfc\xf5\xf9\xe5\xed\xc5\xec\xed\xcd\xd0\xe5\xf7\x18\x79\x51\xb5\xd5\x57\x4f\x0f\x72\x3b\xc4\x29\xad\x3c\x9f\x9e\xeb\x1a\xe5\x97\x1d\x0c\xc9\xfe\xda\x27\x71\xb6\x88\x13\x1d\x99\xe3\x6f\xb7\x10\x32\x06\xb2\xe7\x83\xa6\x6a\x7b\x51\xf5\x56\xb8\x27\x98\x7b\xc2\xee\x20\x78\xda\xdd\xdb\x19\xed\x7e\x07\xd4\x1d\xb8\x21\x73\x61\x16\x7f\x6c\xee\x07\xee\xb4\x99\xee\x57\xf8\x30\xc5\x1d\xd7\xb6\x6a\x11\xf5\x36\x61\x7d\x13\xad\x4b\x6e\xf6\x47\xfb\x18\x40\x0e\x3b\x7a\x85\x18\xf8\x42\xc6\xe9\x24\x50\x4b\x65\x89\x9e\xcb\x2d\x97\x31\x2f\x54\xbe\xeb\x68\xe2\xb0\xcd\x33\x5c\x36\xd5\x2d\x34\x3c\xb2\xa5\x10\xb1\x1d\x05\x7c\x94\xcb\xfa\x54\x42\x5e\xea\xdb\xab\x9f\xce\x2f\x6f\x16\xe7\x97\x3f\x2f\xde\x5f\x9f\xbf\xb9\xf8\xd5\x21\x21\x33\xae\xdb\xd4\x11\xb3\x5c\x98\xdd\xc5\xd2\x7c\xb4\xee\x2f\x28\x59\x68\xcb\x21\x99\xaa\x64\x35\x97\x76\x67\xc9\x7d\xf1\x9b\x5c\x95\xeb\x4d\x7b\x41\xf5\x5a\xbe\x9f\xdd\xfe\x78\x50\x35\x81\x84\x09\x75\xcd\x70\xb5\x35\x11\xa1\xc9\x8a\xf6\x3d\x84\x91\xd6\xaa\x07\x54\x62\xf0\x68\x5b\x94\xa1\x63\x47\x3b\xe8\xf6\xd2\xdc\xb4\x7a\x8d\xff\x96\xc7\xbb\x26\xd0\x6d\xb0\x6f\x56\x8e\x11\x40\x28\xa3\x3c\x66\xa3\xb4\x97\x2d\x7f\xab\x9c\x60\xdf\x9f\xa4\x62\xbd\x16\x31\x4e\xaf\x7a\xc1\xe4\x83\xa3\x2d\x30\xf2\xe7\x7a\x5b\x2f\x92\x80\xdd\x11\x07\xb3\xc3\x7b\x0d\xdf\xc0\xdf\xbb\x57\xda\xf7\x8a\x33\x2b\x92\x1d\x29\xa9\x0b\x2e\x3b\x02\xc9\xf7\x4d\x84\xe6\xa0\xad\xe8\x2a\x67\x2e\xf9\x89\x1c\x26\x36\x64\xe0\xd7\x41\x17\xe0\xe5\x78\x5c\xa8\xab\xc7\xb5\xc8\x52\x1e\x09\x97\xc3\x80\x0c\x78\x70\xaf\x3f\x24\x80\x47\x32\x81\x92\xfc\x2d\x81\x7c\x60\xa0\x29\xde\x32\x05\xc0\x73\x7b\x6d\xf7\xe3\xa7\x77\xad\xf4\x5e\xdc\x88\xf7\x0a\x1c\xcd\xa8\xd3\x44\xd0\x77\xf4\x45\x81\xf8\x59\x27\x2c\x79\xd4\x74\xa8\x7d\xf9\x67\x1a\x78\xbc\x33\x57\x1d\xdd\xdc\x32\xcb\xb9\xe9\xe1\x4c\xc7\xba\xbf\x70\xdf\x68\xcd\xaa\xb7\x00\x5f\x72\x96\xab\xb8\x8c\x2c\xf7\x0e\x14\xeb\xf1\x35\xe4\x4e\xb3\xc7\x7b\xcc\x4e\xcc\x30\xd3\x15\x49\xc4\x27\x80\x9c\x9f\xcb\xae\x60\x96\xdd\x81\x3a\x9c\x6c\xef\xed\x99\x79\xcc\xd8\xb7\xf4\x7e\xf7\xb2\xb0\x9d\x3d\x2c\x83\x95\xd9\xc7\xc1\xd4\xec\x80\x27\xd1\xb8\x2c\x39\x46\xaa\xab\xc6\x40\x17\xd5\x86\xdb\xd3\xc7\xa1\xa8\x86\x81\x50\xaa\xa9\x29\x78\x40\x6f\xb8\x46\xbb\xb9\x88\x36\xd5\x8a\x43\x6b\xaa\xf4\x74\xf5\xea\x3a\x3b\xf4\x38\xff\xc4\xa0\x78\xd5\x04\x6f\xf4\x09\x79\x90\x2b\x52\x63\x4e\x37\x71\xdc\xc4\x0f\x4d\x33\x77\x75\xc2\x5d\x17\x36\xac\x94\x97\x32\xda\xb0\x2c\xe5\x98\xb5\xbd\xe1\x1a\xa7\xb4\x05\x6d\xf0\x65\x92\x26\x05\xd0\xe1\x60\x2c\xb1\xd6\xc3\xe6\x3e\xc5\xf3\x3b\xcb\x40\xcb\x3d\xf7\x51\xdf\xa4\x3f\x12\x1c\xeb\xe5\xf9\xbf\x24\x3c\xd6\x2f\xd9\xe0\x8d\xde\x48\xa4\x9f\x96\x04\x8d\xf5\xc3\x61\x76\x3c\x98\x96\xbe\x2d\xe3\x46\x96\x4a\x7c\x5f\x7f\xbd\xd2\xdf\x2d\x66\xc2\x78\x68\x08\x51\xab\x8f\xd8\xe6\xeb\xc4\xeb\xad\x2b\x6b\x95\x2a\xde\x21\xfe\x6b\xcb\x46\x1e\xf5\xae\xb2\x63\x55\x2e\xbb\x98\x7b\xb1\x56\xfd\xa5\xf7\x45\x1d\xec\xba\x7d\x2c\xaf\x64\xb8\x01\xf2\x42\x14\xc9\x38\xc7\x4a\xd0\x68\x5e\x88\x13\x78\xbd\xbd\x70\x4a\xe5\x1b\xdc\xe6\xc6\x44\xf3\x6a\x1e\xce\x3a\x02\xd0\x5e\x73\x76\xfd\xb9\xe4\x66\x6b\xb8\x5a\xdd\x20\x3f\xcb\x31\x93\xac\x48\x9a\x33\xac\x7d\x25\xd6\xbf\x7a\x5b\x0d\xe9\x84\x73\x60\x70\xf6\x6b\x5b\x6b\x6e\xcc\xdb\xc3\x17\x64\x55\x21\x3f\xcb\x13\x05\x3c\x25\xa4\xcb\xdf\x43\x71\xd8\xfa\xdd\x23\x7a\xf2\x53\x29\x4a\x61\xe6\xfe\xb2\x8c\xd7\x4d\xcf\xea\x08\xeb\xcc\x37\x69\xa3\x1e\xd8\xb6\x8c\x36\xcc\x16\xce\x62\x91\xf2\x5d\xa5\x69\x60\x2f\x15\x2a\x05\xd2\xe0\x03\x19\x4c\xa3\x52\x17\x6a\x0b\xa0\x56\x5f\x6e\x5e\x4a\x98\xf0\x8c\x17\x45\x9e\x2c\xcb\xa2\x15\x00\x57\x61\x34\x3b\x30\x9c\x76\xf3\xfe\xfc\xec\xe2\xcd\x45\x2d\x96\x35\xbb\xf9\x29\xfc\xf7\x2f\x57\xd7\x3f\xbd\x79\x7b\xf5\x4b\xf8\xb7\xb7\xb3\x0f\x97\x67\x3f\x2e\xde\xbf\x9d\x5d\x56\x22\x5e\xb3\xdb\xd9\xcd\xf9\xed\x9e\xa0\x56\xf3\xab\xdd\x03\xc1\x03\xc2\x35\x0b\xb3\xb5\xcc\xd3\xf6\x6e\x4b\x5f\x7d\xc9\x66\x96\x7e\xae\x42\x90\x68\x03\x93\x80\x64\x40\x1d\x66\x8a\x5f\xbe\xe6\x05\x27\x5d\xfb\x29\x9b\x31\x02\x21\x23\xb8\x5c\x1b\x63\x81\xb8\xb9\xcc\xe8\x60\x11\xc6\x62\x88\xfc\xbd\xd1\x4b\xeb\xa9\x15\xb1\xe2\xa5\x22\x24\x61\xb7\x99\x54\x73\x79\x7e\x2f\x64\x51\x02\x43\x34\x4f\x53\x66\xe5\xf4\xe9\x81\x20\x4b\xdc\xd6\x52\x27\xdb\x24\xe5\xb9\x57\x41\xbb\xa2\xb2\xc0\x60\xb7\x75\x75\xa4\x40\xcd\x14\x64\x7b\x79\xf8\x70\xc1\xa0\xde\x67\x6f\x2f\xc0\x04\x8a\x0a\x2b\xf1\x61\x3f\x3e\x97\xc8\xba\x46\x5f\xdc\x72\x48\x78\x28\x14\x79\xf3\xf0\xf3\xf4\x70\xf7\x44\xd4\xc7\x2c\x62\xeb\xf7\x7e\x2a\x50\x95\xab\xa4\xfd\x8f\x73\x59\xe4\xbb\xc1\x76\xcd\x2d\x64\xf8\x6a\xb0\x4d\x09\x3f\x55\x55\x46\x43\x67\x0b\xb3\xa5\x5f\x82\xb1\x63\xc1\x7d\x14\x0b\x70\x2e\x7f\xc4\x52\x74\xd8\xdf\xa9\x39\x84\xbe\xd5\x7e\x08\x49\x58\xa0\x17\x96\xaa\x94\xb1\x26\xa4\xd7\x36\x91\xa7\x5b\xfe\xf9\x85\x6d\x29\x92\x1a\x38\x7d\x02\x20\xac\x12\xa9\xb9\x89\xec\xcc\x26\xd7\xdf\x5d\x73\xd9\xd3\x5f\xfb\xad\x45\xbb\xb3\xc2\xb5\xc7\xdf\x51\x11\xb3\x76\x2f\x76\x6d\xe3\xd7\xd0\x98\x41\x5c\x1c\x2d\x78\x28\x24\xcb\x85\x79\xd0\x01\xe2\x52\xc4\x39\xba\x7f\x03\xf0\xbd\xa2\x83\xd7\xbe\x77\x87\x31\xe6\xa3\x96\x4d\x6b\x74\xfb\x09\x44\x82\xe8\x4b\x66\xcc\x30\xd6\x6d\xdd\xac\x04\xf4\xa7\x20\x9e\x19\xac\xbf\xa8\x25\x5b\x41\xd6\x0b\xe9\x5c\xe7\x02\xdc\xea\x30\x14\x96\xd5\x1a\x68\x8d\x1a\x01\x74\x3b\x05\x52\xa1\xc1\xd9\x2c\xcd\x75\x4b\x7c\x2a\x29\x5e\xf8\xdd\xef\xc7\x9d\xb3\x45\xbe\x63\x56\x41\x21\xcc\xba\xa1\xa4\x33\x3a\x73\xa1\x5e\xa5\x4c\xda\xb8\xce\xae\x4b\x69\x8e\xe2\xc7\x80\x5a\x0c\x8f\xa5\xd5\x3e\x4a\xff\xdc\x9b\x98\x62\xdd\xc0\x39\x3e\xff\x64\xd4\x95\x3f\xd7\x18\x2b\xe9\x73\x00\x83\xa6\xd2\xc3\x03\x6d\xc9\xa3\xbb\x07\x9e\xc7\xe8\x2b\x04\xec\xc3\x94\xfd\xa8\x1e\xc4\xbd\xc8\x27\x2c\x12\x79\xc1\x89\x2e\x4a\x43\xf0\x17\x16\x14\x95\x33\x97\x90\x15\x80\xdc\x5b\x12\x24\xc2\x8b\x64\xbd\x31\xf7\xc9\x20\x74\xaf\x72\xb3\x1d\x15\xc8\x14\x98\x89\x88\x08\x7a\x3a\x3a\x60\x95\xf2\xfb\x26\xff\xd5\x21\xcc\x02\xec\xc2\xa5\x36\xda\xd8\x98\x55\x0a\xe8\x03\x5b\x50\x87\xd1\xa6\x89\x94\x2a\x13\xb6\x56\x29\x97\xeb\xe9\x74\xca\x44\x11\x4d\x5f\x8c\x9a\xe8\x54\x60\x18\x6d\x73\x90\xde\x54\x29\x2d\xd2\x9d\x23\x95\x71\x49\x17\x80\xf2\xfb\x5c\x08\xa9\x13\x74\x79\xb4\x4c\xff\x9b\xba\x27\xfa\xcb\x3a\xee\xdb\x6f\xaa\xa3\x53\xfa\x3a\xca\x01\xe1\xa1\x11\x25\xe1\xf3\xed\x37\xaf\x83\x52\x54\x3b\x58\x6d\x95\x1c\x9b\x77\xf9\xb3\xea\x92\xd1\x3e\x88\xeb\xad\xb5\x24\x22\xc6\x38\x28\x57\xad\xcb\x63\x51\x4b\x1f\x3c\x22\x73\xb0\x27\x09\x70\x64\xfe\x5f\xcb\xba\x6b\x59\x16\xb5\xe1\x1e\xbd\x2c\xf6\x6b\x21\xb4\x36\x68\x64\x7e\xa5\x4f\x84\x1e\x63\x3a\x61\x8a\x56\xba\x83\x1b\x97\xcb\xb6\x04\xcf\x72\x1c\x78\xc6\x2b\x8e\x7f\xc8\xfb\xf1\x91\x03\x47\x58\x14\x04\x0a\x74\xa1\x72\xbe\x16\x6c\x2b\xe2\xa4\xdc\xb6\x6e\x36\xae\xba\xc7\x60\xcd\x54\x5a\x6e\xbb\xa9\xe3\x8e\x35\xa0\x7d\x25\xf1\xbf\xce\xe0\x73\x83\x0d\x68\x2f\x18\x6f\x25\x69\xa8\xbe\xe8\x06\xa7\xbe\x36\x27\x65\x9e\x68\x20\x39\x3c\x24\xcd\xce\x15\x83\x45\x43\xb4\x6e\x97\xa1\xfb\xb5\x32\xba\x27\x36\xba\x43\xaf\x68\x1c\x55\x08\xf1\x75\x1f\x0a\x75\x04\xdb\xe8\x31\x02\xc1\x93\x83\xa2\xaa\x60\x36\x06\xd4\xe3\x04\xb1\x81\x02\x09\x07\x50\x28\xb6\xb2\x89\x5b\x77\x22\xa0\xc2\x8a\x81\x94\xfc\x01\x79\x55\x7e\xfa\x41\x5b\xc4\x00\x81\x3a\xbc\xc5\x52\xf8\x8f\x60\x6c\xe0\xfe\x3b\x8b\xe5\xc1\x16\x62\x11\x40\x58\x15\x73\x59\xb4\x16\xe0\xa1\x6e\x50\x16\xbe\xf2\x33\x2f\xd3\xf6\xc7\xa9\x7c\x78\x14\x05\x8e\x66\xbf\xdc\x30\xec\x6a\xa2\xaf\xce\xfb\x2a\x1a\x14\xb2\x1f\x4d\x04\xdd\xb5\x38\xc0\x12\xac\x8c\x03\x76\xba\xe5\x2f\x37\xdd\x2e\x8a\x68\xe3\x2d\x8f\xaa\x52\x31\xa9\xd7\x51\x3b\xb7\x9e\x90\x1b\x81\x9a\x21\xe2\x2d\x59\x4b\x15\x6a\x49\x28\x29\x20\x48\x63\x36\x20\x15\x16\xcb\x92\x62\x3f\xac\x68\x24\x4b\xd5\xbe\xa9\x56\x28\x84\x8b\x50\x3b\x2b\xb1\x36\xb8\x52\x24\xc8\x6d\x63\x31\x99\x78\x27\x22\x31\xb4\x3a\x51\x73\x95\x2d\x60\x2e\xab\x9f\x6a\x74\x92\xc5\xfd\x24\xb9\x40\x7e\x55\x6d\xac\xb7\x22\xb9\x37\x0b\xb5\x39\xad\xdd\x04\x85\x1d\xa0\x39\xf7\xe6\x12\xab\x1d\x90\xb4\xde\x89\x9d\x0e\x95\xd7\x68\x46\xb1\xae\x09\x99\x98\xf6\xd0\x78\xed\x1f\x0a\xe8\xb8\x45\xa0\x24\x3f\xec\x2c\xc3\x8f\xbe\x33\x2f\xf7\x00\x0a\x1b\x85\x9b\x39\xe8\x33\xe3\xbc\x4f\x91\xb6\x09\xdf\xcf\x34\x86\x1e\x33\x04\x88\xb0\x10\xf3\x15\xa6\x39\xc0\xc5\xd7\xdc\x6f\xe7\x92\x78\x9c\x83\x43\xce\x6c\x38\xcd\x61\xa3\x74\x5d\x64\x8f\xdd\x55\xa8\x46\x80\x6a\xcf\xd2\x0e\x56\x3f\x69\xe3\x8e\x56\xb8\x73\x2e\xe1\xd3\x98\xd0\x68\x7d\x78\xad\x1f\x3c\x10\x88\x46\x83\xdb\x09\x3e\x0b\xb2\x86\xf0\x49\x62\x9b\x43\x09\x3f\xbc\xfd\x44\xc2\x74\xdf\x4c\xb6\xe2\xbe\x2c\xea\xeb\xe6\xfc\xec\xfa\xfc\xf6\x8b\x81\xd3\x2c\x32\x6c\x34\x3a\xcd\xd6\xf3\xf5\xf9\x9b\xd9\x87\xb7\xb7\x8b\xd7\x17\xd7\x4f\x01\x4f\xa3\x9f\x0e\xc0\xa7\xdd\x10\x3d\xfc\x99\x92\x85\xf8\x7c\xd4\x99\x9c\x97\x72\xc1\x47\xe4\x49\x38\x81\x88\x3e\x73\x07\x0b\x6d\xd2\xdb\x3b\xee\x79\xe2\x3a\xc4\x13\xcd\xb1\xd9\xaf\xbc\xd3\x70\x95\xa4\x29\xa4\x8d\x3a\xf7\x3a\xa5\x24\x99\x4e\x85\xfd\xc7\xd2\x3b\xd2\x9e\x3a\x97\xcb\x8a\xfa\x00\xb8\xfc\x36\xe6\x12\x8c\x09\xa3\x99\xe9\x80\x3c\x81\x74\xbc\x3e\x06\xfc\x75\x22\x85\xaf\x06\xca\xed\x96\x92\x75\xd2\x16\xd3\x20\x3e\x65\x56\x30\x19\x5e\x43\x6d\x4d\x3b\xe3\x2a\xf3\xd3\x9a\x9f\xf6\x47\xd7\x42\x5c\xc4\x89\x44\xc3\xb4\xb2\x9a\x6f\xda\xa7\xee\xa9\x5f\x02\xd0\xef\x66\x24\x39\xc4\x20\x40\xd1\xd6\x0f\x24\x0d\x04\x2a\xe3\xf8\xe0\xc4\x5d\x82\x28\x1a\xb5\xaa\xf5\xb3\xd9\x0a\x4d\x5f\x27\x10\xa9\xe0\xc4\x84\x11\xa5\xa5\x2e\x44\x4e\x6e\x93\xd9\x2f\x37\x73\xf9\xca\x1c\x5f\x2f\xe8\x14\x22\xf5\x14\xfc\x04\x62\x38\x54\xe5\xfb\xd6\x42\x09\x77\xb0\xe7\xe8\xa3\xde\x0a\x2e\x35\xaa\x8d\xa7\xa9\xc8\xfd\xcc\xc0\xfa\x08\x11\x93\xe2\x1c\x50\x7f\xfa\xf7\x49\x70\x5a\xc1\xaa\x35\xf5\xa5\x5f\x49\x72\xb9\x3e\x9f\xba\xb2\x92\x01\x9e\xfa\x94\x33\xa7\x25\x4b\x62\xe8\x2c\x22\x64\x6f\xeb\x24\xaa\xe6\x2c\x0c\x9a\x4b\xb7\x58\xdc\x6f\x53\xe9\x11\xa7\xd2\x80\x73\x3d\x3c\x25\xd8\x46\x99\x0d\xd4\x49\x8b\xf8\x30\xb3\x63\x45\x48\x01\xff\x64\xba\xb1\xf5\xd4\xa9\xc9\xeb\x1d\x71\xea\xa0\x9e\xde\x71\x70\xce\x59\x0b\xfd\x8a\xd7\x71\xb2\xb1\x9d\x5e\xe5\xbe\xa7\xa1\x39\x9b\x59\xbc\x9d\x54\x85\x25\x2c\x70\x10\x37\xc2\xeb\x99\x07\x1c\x53\x46\x6f\x1d\x89\x7d\xc2\x5a\x29\x8b\x23\xd5\xaf\x6e\x43\x5c\x60\x25\x85\x13\x6b\x11\x26\x7f\xdb\x84\x6f\x47\x18\x31\x66\xf2\x1d\xae\xaf\x58\x9d\x73\x8e\x7c\xf0\x20\xb0\xc3\xe5\xd5\xe5\x79\x08\x55\xb8\xb8\xbc\x3d\xff\xe3\xf9\x75\x25\xf9\xf7\xed\xd5\xac\x92\xc0\x7b\x73\x7b\x5d\xcb\xdb\x7d\x75\x75\xf5\xf6\xbc\x81\x79\x38\xbf\xbd\x78\x57\x29\xfc\xf5\x87\xeb\xd9\xed\xc5\x55\xe5\xb9\x57\x17\x97\xb3\xeb\xff\x0c\xff\x72\x7e\x7d\x7d\x75\x5d\xfb\xde\x87\xb3\x7e\xf4\x44\xa5\x19\xed\xee\x1f\x1f\x9c\x0d\x78\x18\x5b\x97\x71\x55\x7f\xf2\x88\x55\x3c\x10\x84\xb5\x6f\x3a\xda\xdc\xde\x38\xa4\x67\xc7\x85\x61\xaa\x3a\x6a\xd6\x3d\xbe\x60\x66\xa5\xeb\x32\x7e\xdc\xb6\x67\x4e\xb5\xc5\x63\x80\xe2\x7a\x0d\x40\xf7\x95\x9a\xe3\x56\x17\x90\x00\x85\x5d\x9b\x41\x04\x6b\xcd\x3b\xe5\x62\x64\xfc\xe4\x35\xb5\xdf\xd8\x57\x4f\xcf\xfb\xb3\x87\x3e\xe5\xb1\xa8\x13\xfa\x2a\x1d\x7c\xcc\x66\x26\x27\xb1\x35\x14\xec\x8f\xc1\xc1\x0d\xcd\x30\x33\x27\x98\x8e\x5d\xca\x86\xed\x39\x0e\xfd\x54\x5d\x63\xeb\x4f\x1f\x69\xd6\xbd\xc6\xeb\x30\xa2\xde\xc0\xaf\x33\xa6\xde\xb7\x5c\xdf\x8d\xad\x37\x7d\xa4\x59\x6f\x30\xfb\x0e\xaa\x37\x38\xbc\x8b\x76\xce\x8d\x11\x9b\x58\x58\x4c\xb5\x7a\x2e\x21\xd8\x3d\x12\x08\x88\x0e\xab\xa3\x59\x00\x4f\x7b\xbd\xcc\xf8\xf0\x40\x06\xd4\xc6\x2d\x57\x5e\xa3\xa0\xbe\x81\x5f\xa1\x85\xcb\x5c\xf0\xbb\x58\x3d\xd0\x78\xd4\x91\xa1\x6c\xd0\x6e\x5e\xed\x20\xb3\x87\xdb\x23\x02\x64\xc7\xcd\x27\x11\xa5\xe6\x8b\x07\x98\x5c\x42\x24\xca\x68\x83\x05\xca\x97\x75\xd6\x12\xe0\x89\x91\x7e\x74\xe6\x12\xad\xf9\x36\xf5\x4c\x33\xaa\xa6\x46\xc4\x33\x00\x4d\x75\x36\x34\x06\xd7\x75\x30\xb0\x94\xcb\x50\xe6\x00\xa6\x5b\xe6\x70\x67\x82\x0e\x49\x24\x38\x93\x73\x73\xe1\xc9\x45\x94\x68\x11\x28\x08\xb5\x9e\xd8\x9f\x8e\xd3\x1b\x28\x78\xd1\xea\x76\x1d\xec\x0f\xe7\x51\x51\xf2\x94\x7d\x2a\x45\xbe\x23\xba\x36\xf4\x55\xe2\x5f\x22\x2e\x31\x69\xa2\x10\xdb\x0c\x52\x80\x43\xb4\xff\x5c\xfe\x02\x40\x09\x1c\x82\x67\x9a\xfd\x11\x20\x0f\xf6\x61\x3a\x84\xb7\xbc\x80\xb3\xf8\xcf\xf8\x0d\xf7\xdb\x74\x2e\x2b\x8a\x1c\xc1\x5b\x15\x71\x8e\xe9\x5c\x5a\x4a\xfc\x58\x45\x7a\x0a\x37\xbe\xa9\xca\xd7\xa7\x24\x26\x6b\x26\xbb\xba\x5b\x2a\x75\x77\x2a\xe4\x29\xf8\xa4\x8a\x53\x5e\x16\xea\x14\xe0\x52\x38\xfe\xfa\xd4\x6a\x4e\x5a\xd1\x4e\x7d\xba\x49\xee\x05\xfc\xbf\xe9\xa6\xd8\xa6\xff\xa2\xb3\xcd\xe7\x93\x75\x9a\x9f\x98\x77\x4f\xc2\x77\x4f\xec\xbb\x27\xf6\xdd\x13\xf3\x1a\xfe\xbf\x6c\x87\xe1\x1d\xf1\x99\x9b\xb3\x6c\x32\x97\x89\xd4\x22\x2f\xc0\xfa\x79\xc8\x93\xc2\x4b\x9f\xec\xd8\xb3\xff\xf9\x1f\x36\xcd\xf9\x03\xa6\xcf\xbd\xe6\x05\x7f\x8f\xfe\xc5\xbf\xff\xfd\x19\x04\x54\x31\xbf\x25\xe3\xf9\xa7\x52\x14\x73\xa9\x85\x59\x84\xec\xff\xcc\x25\x44\x60\xb7\xbb\x45\x81\x7e\x57\xf4\x41\xc6\x9a\xfd\x07\x96\x79\x81\xd4\x85\xb1\x36\x25\x75\x20\xeb\x13\x9e\xb6\xc8\x14\x77\xb8\xe8\x3f\xa5\xaf\xe9\xf9\x11\xcb\xfa\x53\x5a\x5d\xd5\x56\x7c\x43\x7f\x4a\xe1\x00\x4d\x15\xb7\x60\x2d\xe6\x26\x2f\xdc\x93\xa9\x72\x6d\x6b\xa4\x01\x0d\x78\xd2\x30\x7d\xfb\x5a\xb9\x41\xfa\x64\xeb\xb9\x6f\x6c\x23\x10\x2b\xf0\x71\x08\x88\x9e\x27\x66\x85\xdc\xa0\x27\x14\x2c\x37\x6c\x39\xd8\xa4\x14\x3a\x77\xe5\xa1\xe3\x42\xff\xe1\xe5\xe9\xe9\x84\xad\x35\xfc\xcf\xf2\x13\xfc\x0f\xa0\x87\x1e\x8b\x01\xb4\xd1\x99\x0e\x08\xd7\x1c\xe5\xfd\x23\xf1\x18\x28\xba\x2f\x41\x3a\x5d\x9b\xa6\xaf\x4a\x19\xa7\xc2\x67\x03\x56\x42\x22\xa9\xb2\x32\xe9\xe8\x18\xab\xcb\x7b\xc0\x18\x2f\x45\xc4\xcd\xc6\xd7\xf8\x36\x82\x4b\xd5\xaa\x10\x12\xbd\x61\xb9\x57\xff\xe2\xe8\xb9\x02\xb3\x18\xa0\x90\xbc\x20\xc8\xb9\x80\x3f\xc2\x47\x80\xc5\x79\x52\xff\x89\xed\x54\x49\x84\xc4\x40\xb3\x19\x8b\x28\x05\xd6\x77\x4b\x35\xc2\x72\x51\x94\xb9\x64\x9c\x65\x5c\xc6\x5c\xc3\x0c\x5c\xe5\x10\xed\xcc\x19\x6f\x56\x74\x82\x70\x5c\x55\x16\x40\xa0\x83\xc8\x82\xb0\x27\x90\x31\x3a\xa8\xf3\x24\xa8\x04\x9e\x09\x40\x5c\xdb\x78\x71\x3a\x97\x56\x9f\x8a\xb0\x70\xe8\x29\x8b\x54\xb6\x23\x7a\x94\x7a\xa7\x27\xd6\x73\x46\xdd\x3d\xf1\x78\x93\xfa\xb3\x13\x96\x54\x43\x6b\x40\x4e\x5d\x04\x0a\xbb\x56\xa3\xf8\xb9\x90\x91\x8a\x45\xae\x5f\x98\x65\x98\xb8\x7b\x07\xda\x0f\x89\xf6\x83\x01\xbb\x94\x39\xdc\xc8\x5b\x68\x8a\x77\x2a\x2e\xa6\x77\x2a\x74\xc6\x6d\x76\xce\xfe\xa5\xf2\xad\xa3\x60\xda\xea\x4b\xff\xf9\x45\x11\x31\x21\xae\xd3\xde\x39\x0f\x77\x41\xe0\x92\x0d\x77\x5c\x2c\x14\x6d\x1c\x32\x4e\xac\x9c\x69\x52\x80\x62\x5a\x2e\x74\x31\x97\x74\x02\x4f\xd8\x4a\x70\x63\xe7\x4d\x58\xa4\xef\x71\x33\xc6\xe3\xbe\x78\x50\x1e\x83\x63\xb5\x30\x00\x0c\x5b\x29\xdc\x3b\x89\xf1\x31\x40\x14\xf0\xa8\x40\x80\x41\xa7\xf2\xb5\x35\x55\xa0\xb3\x5a\x37\xc4\x03\xfa\xc1\x4a\x2b\xd4\x65\x8c\x42\x65\x0f\xe8\x89\x1d\x06\x8a\x59\xbd\x1e\xf8\x83\xd9\x78\xb0\x75\x08\x03\x09\x36\x47\xb0\xb8\x09\x4b\x8b\xeb\xcc\xc7\x70\x43\x7e\x6b\xf0\xcd\x74\x2d\xaa\x9e\x8e\x80\x0a\x1c\xe6\xb7\x30\xaf\xee\x75\x58\x69\x91\x5b\xdd\x07\x6c\x2b\xb2\xd1\x6d\x92\x3c\x3e\xc9\x78\x5e\xec\xec\xf4\x4d\x93\x25\xd0\xc5\xa7\xc9\x9d\x60\xb3\x3c\x57\x0f\x8f\xdd\x0b\x9d\x5b\x4b\xd7\x0d\xfb\x18\x24\xfb\xd8\x5b\x7e\x2b\x17\x65\xdd\xdd\x71\x18\xef\x65\x97\xe3\xa3\xf5\x3b\xb9\x28\xf2\xdd\xc2\x4c\xc4\x6d\xd6\xb9\x53\x0c\x4a\x9a\x18\x6e\xe4\x8e\xa3\xd4\xac\xb9\x30\x3a\x29\x35\x2b\xa3\xfa\xed\x50\x6a\xb6\xb0\x65\x36\x29\x35\x2f\x2e\x2f\x6e\x2f\x66\x6f\x2f\xfe\x5f\xad\xc4\x5f\x66\x17\xb7\x17\x97\x7f\x5c\xbc\xb9\xba\x5e\x5c\x9f\xdf\x5c\x7d\xb8\x3e\x3b\xef\xe7\xc8\x69\xd6\xde\x9b\xe0\x27\x2c\xfc\xce\x4b\x76\x1b\x00\x35\x30\xd9\x80\xec\x6f\xd2\x4b\x84\x59\x65\x16\x73\x22\xd7\x13\x58\xa8\x2f\xd9\x79\x9e\x5f\x6c\xf9\x5a\xbc\x2f\xd3\x14\xe0\x54\x98\xd9\x73\x96\x0b\xb8\x78\x4e\xd8\x7b\x15\x5f\x04\xef\x41\x3a\x62\x6b\x33\xe0\xfb\x3c\x8e\x73\xa1\x35\x7e\x7e\x42\xdf\x0f\xc0\x43\x2e\xd5\x91\xc0\x73\xfc\x9e\x27\xa9\xb9\xbf\xbd\x64\xaf\x78\x74\xa7\x56\x2b\x4c\x9f\x99\xb8\xc4\x29\xf6\xa9\x54\x05\x67\xe2\x73\x04\xbc\x50\xed\xf3\xe4\xad\x5a\x7f\x05\xa8\xf2\x80\xf0\x54\xc7\x25\x05\x74\xb1\x16\xed\xc7\x79\xfb\x46\x40\xad\x7c\x87\xaf\xbe\xc1\x37\xdb\x1d\x94\x45\xfa\x08\x99\xe2\x6f\xd5\xba\x5d\xa5\x04\xac\x6b\x92\x56\xa1\x40\x42\x44\xbc\x13\x6a\xcd\x74\x22\xef\xe6\xf2\x97\x8d\x90\x4c\x95\x39\xfe\x09\xae\xf9\xc6\xcc\x4c\x4b\xbd\x11\x20\x5b\x3a\x61\x0f\x82\x6d\xf9\x0e\xcd\x66\xb8\x13\x38\x69\x05\x98\x32\x70\x8a\x98\xb7\xd3\x44\x9a\xdd\x22\x4b\x6c\x5e\x42\x7d\xe8\x1f\xe3\xc6\x65\x59\xd1\xf8\xf1\xa4\xa5\x7d\xe7\x69\x05\x9f\x07\xae\x32\x8f\x9b\xb4\x00\x21\xda\xb9\x41\xb9\x51\xa9\xbb\x32\xf3\xfc\x89\xcf\x6c\x70\x12\xba\xfb\x5e\x25\x31\x8b\xcb\x2c\x4d\x22\xb7\xef\x3e\xa8\xbc\x93\x24\x16\x13\x68\x86\x9f\x3a\xf5\xb4\xb0\xbe\x86\xb5\x64\xe7\x04\x48\xba\x1e\xba\xd8\x27\x26\xcc\x65\x89\x8c\xd2\x12\x34\xa9\x4a\x2d\xf2\x93\x22\x4f\xd6\x6b\x30\xc0\x6d\xae\xdf\xb7\xcf\xa8\xeb\x19\xfb\x8e\x4f\x6b\x0b\x93\xce\x53\xb5\x4e\x22\x9e\x86\xe0\x66\x8f\x8a\x70\x94\x9d\x76\xd9\x93\x62\x27\xe4\x41\xd8\x0a\x75\x92\x01\x65\xb9\x00\xd6\xd8\x05\x6c\xe5\x0b\xda\xee\x8e\xa9\xf7\x8a\x99\x0b\x3a\xd6\x2b\x24\xd4\xb4\xe1\x05\x7b\xc2\xf9\x6f\x5b\xd9\x26\x30\x31\x51\xd2\x99\xa9\x07\x29\x72\xb0\x60\x01\xf6\x61\x5a\x2a\x15\xd8\x26\x4e\xca\xc9\xe1\x93\xad\x94\xd9\xca\x01\xb1\x31\x73\x76\x9d\xdc\x0b\xf9\xe5\x19\x90\x83\x0f\x44\x3c\xda\x88\x85\xb5\xcb\x1f\x7b\xcb\x72\x07\xc0\xc8\xcd\xca\x6a\x2a\x84\x5b\xa9\x0b\x6f\xc2\xd5\x09\x6b\xdc\xdc\xbb\x30\x90\xd8\x93\x91\x65\x2a\xb1\x88\x45\x74\xf7\xc5\xb7\x66\x0f\xb2\xb2\x15\x61\x9c\xbd\x16\xd1\x1d\xfb\x70\x7d\x81\xd9\xc0\x49\xc1\xcc\x56\xa0\x37\x5e\x23\xa6\xf3\xee\x56\xf0\xf5\x13\x90\x1b\x0d\x15\xb9\xf1\xbc\xe6\x4e\xda\xcb\x54\x88\x00\x51\x90\x2f\x69\x36\x49\xca\xa5\x01\x20\x18\x2f\xac\xf4\x09\x38\xe2\x99\xde\x82\xd2\x49\x59\x04\xf2\x60\x29\x5f\x8a\xb4\x83\xe5\x2f\x53\xf1\xc2\xc6\x49\x8e\x05\xf3\x34\xca\xb2\x7e\x0c\x8a\x3a\xda\x3c\x06\x6e\x2c\xd6\x5b\x7a\x90\xdd\xfd\xa0\x03\x7a\x0d\x15\x92\x0d\xc3\xbd\x9e\x6b\x51\xd3\xcb\x4f\x56\xa4\xc7\x82\x09\xfd\xa0\x3c\x6e\xf6\x4b\x53\xd2\x7b\x15\x13\x4c\xcf\xf1\x79\x19\x2b\x48\x90\xf7\xc4\xe3\x2a\xc2\x2a\x38\x75\x76\x0d\xbe\x01\x5d\x08\x1e\x33\xb5\x22\x6f\x62\x96\xa5\x09\xd0\xc8\xc6\xc8\x58\x0d\xec\x19\xba\x8a\x8e\x0f\x4b\xb3\x95\x0d\x48\x3e\xde\x5b\x20\x5e\x6f\xbc\xd1\x07\xb9\x4c\xbb\xaa\x4e\xee\xba\x4d\x75\xac\xf2\x98\xcb\x47\x3a\xf4\x0a\xdd\xef\x4d\x5b\xa7\x6a\x09\x1d\xd5\x0d\x8a\xeb\xd9\xa0\xcd\xee\x94\x27\xf1\x98\xe3\xdd\xf6\xc9\x95\x7b\xb5\xaf\x82\x57\xd6\xd3\xe1\xbe\x64\x87\x99\x11\xc9\x77\x18\xc1\xaf\xa5\xb1\xef\xbb\x6b\x43\x80\x50\xbb\x08\xa1\xb3\xc6\x0b\xa2\xb8\x87\x55\xe1\xb6\xe3\x8e\x6b\x75\xb5\x2d\x47\x0d\x74\x93\x18\x65\x4f\x5f\x7a\x2e\x95\xfe\x41\x3e\x82\xdd\x02\x57\xae\xa3\xb8\x18\xc3\x53\x6c\x87\x0e\x31\xbe\xa6\x3f\xfd\x20\x56\x92\x2f\x06\x8d\x68\xbd\xdf\xed\x2a\x3e\xa6\xcb\x9f\x62\x45\x95\x85\xf2\x2e\x7f\x68\xcf\x05\xf0\x67\x86\x69\x5d\xb0\x6d\x5c\xc4\x1d\x70\x01\x6b\x83\xd9\xa5\x39\x02\x84\x3a\x0a\x06\x9b\xe5\xc2\x06\x8f\x76\xa2\x70\xc9\xfd\xa9\x55\xa2\x82\xd8\x88\x6b\x75\x95\xdd\xc4\x12\x18\x38\x46\x2a\x88\x64\x90\xbd\x17\xa9\x6d\xa6\x24\x60\x53\x30\x55\x69\x2e\xa9\x70\xab\x27\xec\xc2\x2b\x95\x7c\xb7\x09\x79\xb5\x30\x7b\x42\x68\x95\xde\x53\x1c\x2d\xa0\xbd\x07\x25\x32\x53\xc1\x33\x73\x41\x30\xd7\x61\x08\xf0\xd2\xf6\x0e\x70\xf0\x9a\xa8\x6e\x2e\xd6\x89\x2e\x44\x98\x22\x18\xbe\xff\x68\xfa\x87\x95\x1b\x74\x5f\xd7\x77\xea\x1f\xee\x33\x85\xcd\xaa\x1d\x51\x9f\x5d\x26\xe2\x0b\xf7\x5e\xff\x64\xa8\x65\x71\xfb\x4d\xa2\x72\x0a\xe0\x1c\xc0\x2b\x80\x46\xbe\x27\xed\x08\xeb\xdd\x20\x11\x13\x0f\xf7\xa8\x36\x33\x44\xeb\x92\xe7\x5c\x16\x42\xe8\xb9\xa4\xe8\x23\xf2\x96\x85\xd4\x1c\x35\x34\x9c\x33\x70\x23\xa5\x0b\xa4\x01\x82\x57\x56\x3c\x49\xcb\xbc\xf3\xce\x89\xb3\xf2\x20\xee\x81\xbe\x5e\x3a\x83\x62\x59\xdb\xa0\xb9\x2c\xd6\x60\x15\x39\xea\x8c\x7a\xec\xb0\x9a\xe4\xd9\xd1\x04\xbb\xe5\x0e\x1f\x6f\xe7\x70\xec\x48\x6c\xfd\x41\x2f\x32\x35\x62\xc7\xfb\xe9\x07\xfd\x5e\x75\xa4\x04\xeb\x4f\x0d\xc7\x58\x4f\x0c\xfd\x53\x17\x85\x3f\xd7\x77\x10\x7e\xda\x77\x1f\xdf\xef\x64\xff\xc3\xf7\xfb\x83\x54\x9d\x7b\x17\xcc\xda\x0d\x97\x71\x6a\xee\xa9\xbc\xa8\x9d\x40\x1e\xec\x6b\xec\xe2\xc2\x6e\x8e\xdd\x99\x5d\x90\x28\xb1\x88\x1a\x59\x76\xfb\xfa\xa9\x96\x9e\xd7\x0b\xa8\xab\x7d\xa5\x9a\x34\xd7\x96\xac\xe1\x4f\x76\x12\xce\x74\x0b\xb6\x7b\x0a\xae\x92\xf5\x37\x70\xc9\x7a\xd7\xdc\x29\x23\x5a\x8a\x74\x7e\x39\xe4\xf7\x91\x8b\x11\x92\x6c\xcc\x66\x16\xf2\xf4\xce\x25\xe9\xea\x62\xe4\x15\x42\x6e\xc8\x45\xa5\xd9\x77\x2e\xf3\xf2\xbb\x7f\xb5\x4c\x44\x3b\xb6\x82\xbe\x06\xba\x2f\x15\x45\x65\x0e\x61\x51\x72\xdd\x30\x81\x67\x93\x1e\x45\xb2\x01\x27\xb2\x03\xb3\xa0\xf9\xd4\x66\x3d\x38\x5f\x5d\xa5\x51\xb7\xe0\xa2\x41\x85\x60\x77\x16\x92\xf0\x4b\xae\x0b\xa6\x0b\x91\xb5\xee\x4a\x15\xa3\xab\x2a\x82\x7d\x84\xd9\xe5\x25\xb8\x07\xda\xba\x23\xf6\xe8\x59\x70\x9d\xfe\xd3\xcd\xd5\x25\xcb\xf8\x0e\x70\x61\x85\x22\xf5\x72\x20\x63\xac\xaf\xdf\x7d\x23\x50\x6d\x7c\x75\xb1\x61\x9f\x5a\x80\x69\xbb\xef\x96\xbe\xd8\xb4\xa1\x60\xce\xd0\x94\x34\x4b\x39\x57\xe9\x49\x96\x72\x19\x40\x7f\xf5\x94\xd5\x3e\x1f\xc6\x7a\x5d\xd4\x87\xd0\x34\x50\x01\x70\xa7\xd0\x5c\xc8\xcb\x56\x70\x68\x55\xd7\xfb\xa8\xf0\x6e\xe7\x1e\xd1\x0b\x7a\x7b\x87\x74\xfa\x3c\x32\xcb\x04\x99\x05\x6c\xc8\xda\xa1\x1e\xb8\x06\x40\xe2\x88\x81\xea\x17\x21\x9f\x4b\xab\x31\xab\x1e\x34\x8b\x91\x7b\xa1\x4c\xf4\x06\xfc\x93\x18\x10\x00\x70\x10\xed\x2f\x88\x5c\xc8\xb9\xd4\x66\x40\xc1\xa7\x29\xee\x05\x39\x36\x2a\xc1\xb8\x8b\xd7\x6f\x5d\x7c\x1f\x07\x89\x64\xc0\x3a\xba\x3e\x30\xcc\x8e\xb9\xc0\xb4\xaa\x62\xef\xe7\xb8\x7f\xc7\xb3\xbe\xac\xb1\xa3\x4b\xdc\x37\x4a\x8e\x79\xa6\x6e\x75\x82\x3e\x28\x28\x03\x55\x52\xc7\xc2\xde\xfb\x20\x8f\xdc\x7e\x5a\x49\xaf\xf7\xf3\xeb\x0f\xbe\x84\x0d\xcb\x04\x1c\xb1\xf7\x04\x24\x70\x0e\x5b\xe3\xec\x65\xb3\xca\x41\x77\x05\xd8\xab\xd0\x93\x36\x65\x37\x42\xb0\x8f\xd0\x53\xe6\x63\x1f\x49\xd7\x0b\xe0\x82\x05\x4f\x5a\x65\x57\xe0\xe9\x0b\xb9\x52\xc7\x6d\x06\xf9\xba\x01\x47\x3b\xaa\x57\xda\xeb\x79\x2c\xe0\x0d\x52\x19\xe5\xd3\xe6\xdf\xb7\xb6\x6b\x0f\xbc\xed\xbd\xbf\x93\x53\x56\x9e\xad\xa9\x39\x9f\x61\x88\x0f\x61\x78\xaa\x4d\x12\xd3\xca\x09\xb2\x16\xdf\x49\xf5\x20\xd1\x16\xa0\x2f\xb1\xe7\x66\xfd\xc1\x01\x86\x0e\x54\x34\x0b\x4a\xdc\x0d\x5f\x00\x8d\xf2\xcc\xfd\x9b\xdd\x60\xac\x08\xeb\x0c\x3a\x21\x1a\x8c\x1f\x52\xf8\x80\xdd\xfc\xf9\x6c\xc2\x5e\x4d\xd8\xd9\x84\x4d\xa7\xd3\x17\x13\x54\x0b\xa6\x1a\xe1\x2b\x88\x1c\x2b\xf8\xda\x94\x4d\xca\x09\xab\xe0\x03\x20\xba\x63\x0e\x2b\xcb\x16\xc6\xfd\x53\x81\xe7\xc1\x36\x01\x73\x18\x29\xe1\x82\xe2\xea\xd1\x46\x25\xbe\x52\x00\xd1\x14\x91\xca\x2d\xc8\x53\x17\x2a\xb7\x80\xb5\x7b\x9e\xf3\x44\x42\x6a\x37\x6f\xc2\x75\xe9\xcb\x01\xb9\xb3\xf8\xcc\xb7\xd0\xfe\x44\x3a\x7e\x4b\xd3\x4d\xb7\xae\xfe\xc5\x2e\x23\x87\xf4\x43\x9e\x14\x85\x39\x9d\xf5\x5c\xde\xb0\x97\xff\xc1\x66\x59\x96\x0a\x36\x63\x7f\x63\xaf\xb8\xe4\x92\xb3\x57\xec\x6f\xec\x8c\xcb\x82\xa7\xaa\xcc\x04\x3b\x63\x7f\x33\xdd\x66\xca\xbb\x54\xe6\x38\xdc\x4d\x18\x67\xb2\x4c\xf1\xd4\x7f\x6e\xc1\x60\x2f\x5c\xbb\xb8\x1f\x9d\xa5\x28\x1e\x84\x90\x4c\xab\x2d\x1d\x85\xbf\xba\x98\x84\x4e\xe4\x3a\x15\x05\xcd\x87\x2a\x6c\x0f\x3f\x70\x02\x2d\x7d\x39\x97\xce\x97\xf7\xab\xa9\xf1\xaf\xec\x6f\xec\xb2\x4c\x53\x53\x25\xb3\xd1\x98\x89\xf4\x92\xd9\x34\x0a\x21\xa7\x0f\xc9\x5d\x92\x89\x38\xe1\x90\x48\x61\xfe\x75\x7a\x0b\xa3\xbd\x28\x3d\x67\x5e\xb8\xa6\x9d\xf6\xca\x31\x5b\xcf\x93\x24\x65\x3b\x09\x1e\x3b\xf8\x3d\x37\xbf\xea\xab\xe3\x2d\x22\xcf\x14\x4a\xeb\x81\x0c\x56\xd4\xcd\x09\xa5\x7e\x0e\xda\x02\x6a\x87\xad\x2d\xab\xe5\x28\x08\x0f\xf5\x63\x37\x59\xd0\xad\x7a\xf4\x3b\xe4\x00\x19\x9f\xa1\x5b\x6e\x43\x84\xa4\x92\xe6\x0e\xb6\xa4\xa7\xfa\x19\x14\x15\x72\xe2\x23\x3f\x57\x85\xbb\x2a\x5d\xac\x92\x41\x0a\x67\xb5\xca\x7e\x20\xdf\x05\x26\xa8\x99\x65\x9a\xa4\xa7\x66\xa9\x9e\x5e\x2a\x69\xae\xad\x3a\x59\x23\x3d\x11\xc0\x88\x50\x1a\xcc\x1a\x05\xb7\x55\x93\x35\x58\x02\x60\x1f\x98\x2a\x21\xb4\xad\x30\xbb\x80\x19\x82\x74\x37\x97\xe6\x0d\x3a\x91\x00\xe6\x9e\x38\x16\x5b\xfc\x9a\xd5\x52\xa7\x6f\xd1\x86\x1c\x14\xde\x32\xc1\xfa\x72\x68\x8f\x98\x70\x94\xb2\x75\x84\x57\xfc\x32\x60\x70\xa3\xd2\x2c\xbd\x07\xc6\x3d\x97\x22\x55\x72\x6d\x66\x45\xd7\x26\xa0\xb6\x3c\x39\x06\x58\x12\x56\x01\x0b\xeb\xac\x81\x39\x2c\xe9\x11\x1a\x12\x73\x4e\x26\xb1\xbf\xdf\xeb\x72\x69\xec\x08\xe7\x91\x75\xa7\x21\x35\xae\x2b\xa1\xf8\xb8\xf8\xf2\x07\x2d\x72\xa0\x59\x46\x84\x83\xf3\xf6\xe3\xc1\xe9\xc9\x36\xb0\x45\xc3\x16\x55\x2f\x30\xb6\xdd\x15\x42\xd1\x84\x46\x6a\xf5\x80\xf9\xf8\x35\x31\xb2\x4f\x29\x46\xdf\xaa\x3c\x0f\xcf\x99\xd2\xe8\x4f\x63\xd5\xe5\x6d\xef\x3d\x06\x7c\xf0\x13\xca\xbd\x2c\xd4\xca\x66\x52\x0e\x3f\xd3\x1b\x82\x3b\xc3\x50\x2a\x21\xc9\x76\x28\x4c\xd3\x9c\x38\x9d\xf9\xe0\x72\x41\x11\x89\x61\x95\xad\x77\xd8\x95\x7c\x83\xaf\xbf\x57\x69\x12\xf5\x83\xde\xec\x71\xb5\x51\x0f\x2d\x28\xa2\xa5\x00\x14\x28\xf9\x7f\xa8\x52\x68\xa1\x17\x22\x2a\x7c\xc4\xad\xd9\xb8\xff\xd5\x40\x9b\xfd\x77\x70\xf4\x28\xbb\x6e\x03\xd1\x47\x17\xc3\x83\xb3\x15\x08\x36\x81\x57\x1e\x7d\xad\x90\x4b\x07\xb1\xed\x88\x93\x0b\xba\xd2\xf3\xb0\x41\x3f\x6c\x54\x6a\xee\x62\x32\x26\xb2\xd2\xb9\xcc\x44\x1e\x29\x00\xa8\x60\x1e\xbc\x62\xd1\x26\x49\x63\x2f\xde\xf2\x1c\x10\xbd\x80\xbb\x7b\x41\x0a\x75\xc2\xc5\x98\x6d\xf1\x3d\xa7\xae\x9d\x76\x56\x23\xfb\x38\x0f\xd4\xe3\x41\xf4\xfa\xa6\xfd\x2f\x04\x25\xc3\xae\x20\x7a\xa1\x5a\xb4\xd0\x74\x7a\xa5\x3e\xa3\x3c\xbc\xa0\x62\xbd\xb2\x3a\x98\xf6\xe2\x54\xd4\xc6\x95\xa6\x59\xbd\x2b\x81\x74\x16\x51\x54\x08\x20\xd1\x02\xaa\xb3\x15\x1c\x6d\x31\x4f\x01\x49\x83\x3a\x97\x3e\x3e\xfa\x4c\x87\x76\x59\xeb\x38\x23\xa7\xaa\x05\x01\x4e\xd8\xb3\x4a\x43\x9f\x01\x29\xa9\x54\xf0\x3d\x8a\x61\x55\xba\x06\xa6\xeb\x84\x25\xc5\x5c\x26\x1a\x67\x66\x2e\x52\x71\x6f\x6a\x17\x3a\x8b\x09\xeb\x62\xef\xce\xb6\xd9\x80\x23\xe7\x36\xfd\xd8\x49\xab\xc3\x22\xcc\x43\x72\x4b\x0e\x8e\xe9\x58\x68\x63\x37\x82\x2c\x87\xf8\x6c\x16\x40\x02\xb1\x10\x84\x7f\xc4\x42\xda\xfa\x01\x2a\x04\xf5\x53\xe7\xf2\x62\x05\x39\xa0\x90\x79\x1a\xc7\x78\x0b\xb5\x42\x0d\x8e\x69\x2c\x21\xe7\xb0\xa2\x3b\xb9\x1d\x08\x12\x58\xc4\x95\x24\xee\x45\xbe\x2b\xc0\xa9\x0b\xfd\x2a\x05\x2f\x36\x2c\x29\x26\x40\x11\x67\x77\xca\xb9\xe4\x31\xa9\x63\x53\x71\xa6\x6b\x60\xde\xf7\x8c\x33\xfd\xbe\x54\xf7\x7d\x86\xed\xb1\xa8\x2f\x5c\xd5\x59\xca\xe5\x02\x4f\x90\xaf\x80\xfb\x0a\xb4\x2f\xbb\x42\x9d\xe5\x72\xe1\x68\x6d\x1e\xa5\x9e\x81\x0e\x71\xa8\x48\x6b\xec\x58\xfb\xa1\x09\x4e\x06\x4f\x6b\x6d\xaf\x27\xce\x4f\x43\xe8\x82\x9c\xd9\x08\xec\xf0\x5d\xc0\x43\xc2\x78\x0d\x89\x60\x67\xeb\x3e\x4c\x98\x9d\x01\xdf\x2a\x3e\x69\xc8\xc8\xd7\xce\x90\xfa\xb0\x8f\x87\xc6\x34\x2c\xc4\x83\xe0\x31\x7b\xaa\xf5\xb4\x10\x99\x4e\x3f\x4a\x13\x2a\x63\x5b\x1b\x84\xfb\x30\x79\x42\xa0\x1f\xce\xb9\x79\xda\xb5\x4d\xc3\x7b\x98\x6a\xc1\x56\x3e\xa6\x8f\x1a\xf6\xa9\xa1\x9e\x12\x9f\x7b\x0d\xf5\x9a\xb2\x0b\xc9\xac\xb9\x37\x61\xcf\x70\x62\xe9\x67\xe4\x82\x24\x81\x5c\x8a\x9d\xc7\xb4\x7a\x28\x5b\xb5\x0e\xc5\xc0\x9c\x01\xbf\xdc\x30\x12\xd4\x4b\x6d\xf8\xa4\xfd\xf2\x2a\x81\x9c\x85\x43\xd2\xd2\x31\x8a\xb8\xc4\x02\xe8\x90\xc4\x6b\xf7\x0e\x8d\x76\xe5\xbd\xd9\xbe\xc1\x36\xde\xc5\x5e\xd9\x17\x4d\x17\x65\x25\x9d\xa7\xf6\x77\xa6\xf2\xb9\xb4\xa5\x91\x4b\x52\xa3\x96\x52\xbd\xa8\x00\x42\x4d\x36\x7f\x30\x53\x01\xc4\x60\xe5\xb3\x40\x95\xcd\xf3\xaf\xd6\x77\x01\x00\x45\x2c\x85\x97\xf6\x9e\xb2\x99\xff\x9a\x31\x3c\xcc\x04\xdf\xe2\x31\x5f\xe7\x68\x4c\x53\xd3\x29\x49\x61\x29\x21\x83\xf4\x06\x5d\x02\xb1\xe9\xaa\x34\x9b\x51\xc0\xfe\x3a\x97\xa6\xf3\xd8\x2a\x01\xdc\x2f\xf5\xcb\x5c\xbe\x53\xda\x66\xd3\x6b\xdf\x1f\x16\x43\x4a\xdd\xf6\xcc\xa9\x88\xd1\x1f\x5e\xc3\xa1\x4d\x3e\xff\x9a\xac\x3c\xe4\xb5\x10\x25\xc6\x4e\x95\xb9\x6f\x54\xc4\xe5\x5c\xfe\xc5\x74\x0f\x8a\x3a\x3b\x45\x74\xb5\xc2\x25\x0c\x23\x08\xc1\x92\x8f\x58\xe8\xf3\x7f\x7d\xf1\xf1\x05\xe2\xd0\x4b\x0d\xc2\x8d\x93\xea\x01\xe2\x88\xc0\xcb\x34\x85\x48\xb4\x6d\x81\x23\xa3\xf0\x9f\xe0\x7d\xb0\x1c\xba\xd4\x2d\x64\xd5\xc4\x18\xb2\xd0\xfb\x66\xb0\x77\x3e\xcf\x58\xc4\x8b\x68\x73\x62\x6d\x39\xda\xc6\xec\xe9\x47\xc3\x87\x0a\x6e\xc6\xd2\x6a\xe7\xc2\x36\x17\xce\x7c\xeb\xd8\xf9\x2a\xf3\xc5\x34\x01\x80\x35\xb7\x75\x61\x18\x47\x1e\x8a\x93\xd3\x6b\x92\x7b\x3b\xcf\x3d\x6e\x65\xd9\xfc\x8d\x93\xbc\xe4\x92\x6f\x45\xcc\x9e\x41\xc6\xd4\x33\x3b\xf8\x73\x99\x2d\xa7\xe9\x6e\x55\x10\xc5\x93\xe9\x94\x29\x08\x18\xed\x39\xe5\x16\x71\xf3\x9a\xb4\xa7\xb3\x3b\x2f\x5a\xed\xb6\x8e\xeb\x1b\xf7\xa5\xe1\x06\x0b\xfa\xb8\x5c\xef\xdc\x54\x21\x42\x55\x26\x75\xae\xef\x26\x6c\x99\x73\x09\xda\x13\x71\x68\x54\xf9\xd5\x09\x97\x67\xe4\x4f\xb2\x29\x14\x92\xa7\x3b\xc0\x8e\x4f\xe6\x12\xc9\xa6\x80\x95\x78\x17\xa5\x49\xc4\xd6\x39\xcf\x36\x35\x3b\x48\xdc\x0b\x59\x9c\x13\xbb\x82\x05\xa9\x1f\x1b\x5a\x76\x6c\x0d\x47\x71\xee\x5d\x54\xad\x1d\xee\x69\x28\xbc\x87\x15\x13\x55\xe8\x46\x6d\x41\xad\x6e\x82\x4f\x48\x0a\x0d\xf8\xb8\xd8\x9f\xcb\xa5\x4a\x2d\xa1\xd9\xc5\x6b\xa6\x72\xd0\x12\x28\x14\xfd\x29\x89\xbb\x4e\xb1\x44\xc6\xe2\xf3\x51\xac\x02\xfd\x07\x92\x35\xef\xcc\x67\x02\xca\xfa\x7a\x63\x61\x15\xe5\xc2\x1c\x16\x85\xbd\xc1\x35\x9e\xd2\x75\x84\xdd\x2c\x2d\x36\x00\x7b\x43\xc0\xb5\xef\xd4\x2d\xdf\xb1\x68\xc3\xe5\x3a\xb8\x42\x03\x0a\x49\x64\x2a\x47\xcd\xbd\x7b\xa0\xef\x52\xb9\xcd\xda\xa4\x5c\x44\x42\x7d\x3b\x87\x37\x82\x2d\x95\x4d\x38\xe4\xeb\x75\x2e\xd6\x90\x48\x3f\x97\x95\x6c\x6a\xa0\x2e\xb3\x74\xff\xf8\x9d\xbe\x64\xd4\xc7\x61\x74\xe8\xba\xb5\x14\xf9\xce\xa5\xf2\x91\x60\xa5\xeb\xba\x46\xb7\x4e\x58\x22\xa6\x13\xf6\xbd\x07\x98\x8a\x48\x49\x97\x0b\xd8\x91\x08\x56\x73\x4d\xef\xd9\x8b\x5a\xa8\x1f\xda\xeb\x0e\xbf\x35\x64\x2f\x5b\x27\x4d\x6f\x32\x65\xc1\x8b\x72\xc4\x5e\x49\xd2\xc6\x67\xe6\xe5\x1b\x7c\xb7\x17\x83\xcd\x33\xb3\xbd\x59\xda\x1d\xf3\xbc\xd9\xe1\xcd\xb7\x3d\x2d\x6f\x5b\x5f\xef\x75\x74\xa6\xaa\xdb\xd1\xf9\x18\x26\xa5\xe5\x56\xd8\xef\xeb\x4c\x3b\xf8\x02\x7a\xda\x34\xd6\x95\x69\xc1\xa8\x04\x33\xd7\xf5\xeb\x56\xcb\x0e\x90\xe5\x2a\x2e\x23\x11\x9b\x95\x0b\x76\x3b\x22\x37\x1c\x6d\x41\x65\x93\x6c\x3b\x10\x2a\xdc\x2b\x20\x70\xfd\xa5\xee\xc6\x83\xe8\x6e\x5d\xf7\x7f\xe8\xb8\x17\x5b\xcb\xa4\xad\xd3\xc3\xf5\x89\xfd\x94\x8f\x3c\xa7\xdc\xe7\xab\x24\xb5\x2a\x4f\xd6\x89\xe4\x85\xca\xd9\x73\x97\x9c\xf8\xc2\x29\xdb\x40\x2f\x3e\xc6\x36\x51\xe9\x22\xdc\x26\xda\xef\x5e\x80\x67\x16\xf1\x62\x1c\x77\xd6\x58\x86\x67\x98\xa4\xe6\x29\x5d\xf0\x6d\x16\xd2\x3e\x3a\xdd\x60\xea\x99\x14\x3b\x81\xd9\x8a\x81\x8f\x2f\xd1\x3e\x07\x6b\x2e\xc9\x33\x8e\xe3\xa6\xf2\x90\xb7\xb8\xf3\x6c\xce\xca\x62\x71\x20\x95\x09\xbe\x3c\xce\x41\x42\xe1\xf2\x77\x3c\xeb\x27\x87\xe0\x74\x35\xc6\x24\x14\x27\xa6\x6c\x2d\x95\xea\xfc\xec\x57\x06\x18\x49\x56\x59\x0f\xf1\x5e\xbf\xb5\x01\x0d\x7f\x6f\xa9\x5c\x04\x60\x20\x90\x25\x4f\x83\x55\x81\x57\x50\xb7\xad\x99\x53\xdc\x32\x4a\x9c\xa5\xaa\x8c\x19\x6d\x6a\x14\x2e\xce\xa7\x78\x3a\x02\x6d\xe5\x74\xda\xc5\xe1\x35\x52\xb1\xd4\xed\x3f\xf0\x5e\xfb\x0a\x84\xdf\x3a\x76\xe0\xde\xa5\x4f\x3d\xfb\x64\x43\x4f\x3d\x0d\x63\xef\xb6\xe3\x51\x63\xef\xbc\xb5\xc0\xa1\x35\xce\x91\x07\xf7\xa6\x24\x4e\x61\xbd\x85\x8e\xee\x16\x96\xcf\x4a\x00\x51\xdf\x1d\xfd\x39\x9b\x69\xdb\xff\xa9\x8c\xe7\x42\x16\x0b\xf8\xe2\xb8\x8f\xc1\x47\xde\xc3\xeb\x15\x83\x69\x90\xc3\xf2\xbf\x6e\x15\xfa\xa1\x2d\x61\xc6\x7f\xb3\x1b\xf2\xbd\x68\xab\x6a\x6f\x4e\xc7\xe7\x09\x60\x63\x82\x98\x9d\x1b\xb8\x8e\xe1\xa2\x06\x1d\xd0\x7b\x41\x83\x2a\x5b\xfb\xa0\x06\xf9\xda\x43\x48\x15\x4a\x21\x37\x14\x65\x78\x9a\xad\xd6\xfe\x2d\x20\xd1\xbe\xac\xfc\x1b\x08\x0f\xcd\xf8\xa5\xec\xaf\x22\x57\x3e\x6d\x01\x9d\x2a\x61\xc1\xbd\xf6\xfa\xe1\xfa\x9f\x68\x8f\xa3\xf2\x64\x28\xbd\x06\x7f\x21\x4e\x12\xbc\xf9\x2e\x77\xf6\x3a\xd2\x45\xa7\x2e\xa2\x45\x07\xcf\xfe\xa0\xaa\x04\x17\xcf\x90\x37\x3f\xa9\x1d\x66\x76\x81\x9e\xc2\xbd\x9a\x58\xff\xb6\x3c\x23\x1c\x1a\x41\x5e\xeb\x41\x86\x29\x34\xe2\xbf\x7e\xfd\xef\x69\x97\xb2\x33\x54\x7d\x2c\xac\xc7\x55\xfe\x4d\x9e\x08\x19\x43\xd0\x90\xc7\x4d\x09\x18\x59\xf1\x22\x57\xb6\x67\x33\x0d\x1f\x25\xbb\xaf\xfd\xa8\xd5\x0b\x9c\x44\x5f\x20\xf2\xec\x37\x59\xb7\x7c\x2b\x71\xa9\x2e\x53\x42\x2f\xe2\x9d\xe4\xdb\xa6\x16\xf6\x93\xd6\x71\x97\x88\x34\x86\x2a\xd2\xd7\xf7\x45\x4f\x62\x11\xdd\x8d\xb5\x09\x0e\x26\xb0\x16\xd1\x1d\xfb\xf1\xf6\xdd\x5b\xd4\x2b\x4c\xf4\x5c\x5e\xf2\x22\xb9\x17\x1f\xf2\xd4\xb9\xad\x89\x91\x24\x4f\xed\x1a\xa9\x12\xaa\x06\xe4\x1d\x96\x7d\xd5\x1a\x0e\x21\xdf\xf5\x76\x77\xb2\x2c\xa3\x3b\x51\x9c\xe6\x5c\xc6\x6a\x8b\xcd\x38\xd5\xe5\x6a\x95\x7c\x9e\x16\x3c\xef\x20\xbf\x46\x3f\xc2\x57\xb4\x73\xbd\xa4\x49\xe1\x6d\x5e\x34\x75\x1f\x20\x3b\x91\x84\x72\x2b\xc6\x2d\x5c\x81\x73\xbe\x15\xc0\x5e\xc6\xaa\xc4\xf1\x50\x0a\x26\xfc\x81\xbe\x9a\xd6\x84\xf4\x56\xa4\xde\xfa\x31\x30\xee\x3f\x06\xb5\xaa\x2a\x08\xdb\x4a\x79\xcd\xb2\x2d\xbf\xc3\xfb\xe1\x3a\x17\x5a\x4f\x98\x56\x50\xe3\xb9\xb4\x98\x69\x9b\xd7\x03\xf8\x0c\xe0\x3f\x4c\x77\x2c\x52\x59\x02\x12\x6f\xae\x5d\x1b\xf5\x00\xfe\xe4\x30\xbd\x0d\x54\x39\x4b\x59\x24\x29\xe3\xab\x82\x9c\xcd\x40\xf6\x6c\xc5\x5d\xf4\x74\x2e\x21\x64\x18\x41\xf3\x21\x94\xef\xc2\x04\xae\x11\x9a\xad\x78\x94\xa4\x49\x41\x14\x34\x90\x0c\xc3\x4d\x7b\xcd\x79\x60\xfa\x32\xe7\x3b\x9e\xfa\x8b\x15\x4f\x4b\x9f\xd1\x77\xa2\x45\x9d\xe2\xec\x77\xe1\xff\x56\xee\xb9\x7d\xa7\xee\x11\x17\xde\x63\x0e\x9f\xe6\x95\xd6\x29\x8e\xfa\x73\x3c\x89\x2d\x4e\xb4\x62\xea\x7a\xe6\x59\x77\xfc\x80\xef\xbc\xe3\x52\x3d\xb5\x3a\x31\xcd\x2f\x8c\xe8\xbd\x76\x23\xec\x0b\xb9\x0b\xba\x38\x70\x87\x54\xdf\x7a\xbb\xdf\x2b\x95\x1e\xeb\xf1\xe6\xa9\xdd\x50\x17\x20\x9d\x78\xcc\x75\x0d\x27\x80\x73\x1c\x5d\xbc\x76\xb1\x57\x47\x2a\x5b\x15\x5c\x21\x58\x10\x55\x01\x36\x0a\xa8\x44\x0f\x62\x58\x67\x2d\xc1\xf7\x91\xc8\x67\x28\x03\x51\x3b\xd6\x74\x6e\xba\xe0\x83\x5c\x76\xee\xeb\x08\xc4\x7b\xb5\x1a\x8e\x72\x86\xa1\xd0\x61\xed\x53\xce\x31\x16\x12\x74\xba\x7e\x0c\xbe\x6d\xfb\x13\xe5\x95\xcd\xf9\x44\x56\xf2\x5c\x06\x16\x31\xb2\xea\x58\x68\xb9\xeb\xb5\x36\x7f\x59\x65\x1a\x1e\xed\x2f\x3b\x86\x85\xb9\x37\xa0\xf2\x3a\xd4\x53\x02\x4c\x40\xa4\xb6\xcb\x44\xda\x54\x65\x72\x22\x83\x29\x3f\xb3\x24\x77\xce\xe1\x6f\x4d\x72\x64\xd9\xaf\xf5\xbd\x33\x23\x42\xbe\xc0\x70\xcb\xda\x77\xdd\x0d\xef\x4f\x8f\x4b\x18\xdd\x81\x52\xad\xb7\x20\xd1\x8c\xa7\x0f\x7c\xa7\x41\x73\x54\x98\x5d\x71\x85\x8e\xd3\x6a\xfd\x27\xc1\xf1\x6e\x09\x14\x49\xc0\xbb\x24\x29\x62\x6a\x4b\x82\xfc\x0d\x22\xb5\xea\xaa\x9e\x17\xe7\x99\x6e\xef\x9c\xaf\x13\x0b\xc9\x7b\x63\x21\x18\x8c\xfc\xc7\x08\x7f\xf4\x38\x59\x8f\xf4\xf5\x06\xc7\x24\x5a\x64\x04\x17\x81\x04\x1e\xd8\x8e\xcd\xb7\x27\x6c\xcb\x13\x49\xcb\x00\x15\xac\x62\xb1\x2c\xd7\xeb\x4e\x17\xe4\xb7\x1f\xcb\xa8\xae\x93\x7f\x7a\x5f\x73\x2f\xb3\xd3\x63\x78\x63\x2f\xec\x97\xd0\x3d\x6c\xee\x55\x5f\xc6\x01\xfb\x15\xbd\xdd\xad\x21\xa7\xc6\x24\x7a\x1c\x6f\xf7\xc5\x10\x6f\xb7\xc5\xf8\x40\xaa\x15\x5d\x57\x2d\x0e\xe3\x37\x37\xf8\x97\x71\x83\x0f\x9a\x14\x48\xef\xb1\x48\xaa\x06\x7a\x4f\x0d\x0f\x64\x09\x73\x74\x92\x50\x2b\x52\x03\xd7\x42\xc6\x9a\x2d\x79\xf4\x04\xb4\x61\x70\x3a\x1e\xef\x6f\xdb\x03\x2e\xb9\x51\x5b\xc1\xe0\x53\x1a\xb5\x0f\x18\x65\xb3\x4d\x00\xb5\x68\x1a\xe8\x11\x19\x84\xf7\x80\xe3\x14\x91\x21\xb1\x37\xaa\x9f\x4b\xf1\xc0\xcc\x69\x35\x09\x61\x5c\xc1\xf0\x80\x28\xce\x0b\x63\x1d\x56\x30\xdf\x2e\x75\x3f\x17\x6b\x9e\xc7\x90\x69\x40\x4b\x32\xe5\xd1\x9d\xf9\x6f\xa8\x1f\x7d\x91\xa0\x66\x96\x9f\x1b\xe1\x8f\xbe\xb4\x44\x46\x39\x90\x32\x11\xaa\xcd\xd7\x0f\x5f\xd7\x8c\x47\xb9\xd2\xe8\x94\x71\x5a\x92\x90\xe9\x0a\x06\xec\x7d\x12\x97\x3c\xc5\x2f\x76\x7a\xb2\xb9\x3e\x8a\x6f\x7c\x16\xc8\xbe\x88\xcf\x59\xca\x65\x75\x4d\x62\x73\x81\xab\x26\xe9\x99\xf9\x8e\x72\xed\x98\xaa\x8c\xa6\x8e\xbc\x08\x14\x57\xfd\xb2\x42\xeb\x38\x17\x3c\xde\x85\xc4\x54\x89\x24\xdd\x7d\x1e\x6f\x13\x69\x86\xde\xaa\x7a\xb9\xfd\xd5\x12\xfc\x22\xe0\x12\xc4\x2f\xd2\xb4\xb6\xf4\x35\x93\xc2\x98\x54\x3c\x4f\xd2\x1d\x58\xd1\x59\x2e\x4e\x82\xef\x04\xeb\x9b\xf2\x3d\x80\xaa\x98\x48\x14\x4a\x2d\x56\x65\x8a\xb6\x36\xdc\x46\x5d\x03\x68\x1d\x7e\xb8\x98\x98\x63\xb6\x20\xca\xf9\xe0\xc3\x28\xe4\xf4\x18\xd8\xf9\x46\x0c\x6c\x5c\x1c\xc7\x13\xa7\xe5\x00\xf1\xdd\xa8\x07\x9b\xe8\xf3\xc0\x3d\x92\xb3\xeb\x4c\x79\x34\xdf\x7d\xbf\xf5\x65\xef\x3d\x76\x75\x62\xe7\xc7\x95\x80\x0d\xfd\x26\x62\xb7\x22\x13\x09\xcd\x21\x2d\x44\xef\x0f\x2d\x35\xe6\x0b\x99\xb1\x84\x5d\xdb\x5e\xef\xab\xee\x50\xe6\x5a\x97\x68\x25\xd9\xbc\xfc\xfd\xef\xff\x20\xd8\xef\x21\x81\x8a\xac\x70\x8c\xba\x00\x75\x1a\x96\x0e\x1b\x95\xfb\x80\x40\x5e\xb5\xc6\x88\xb0\x36\xe0\xa3\xcd\x56\x06\xe8\x20\x8f\x36\x4c\x97\x4b\xc4\xc5\x71\x72\xdc\x73\xe9\x98\x49\xdf\x2a\x80\xb8\xe1\x79\x66\x6b\xff\xbf\xc4\x4d\x8d\xec\xe0\x73\x99\x29\x24\xcf\x05\x40\xe1\x52\xb0\x2d\xcf\xef\x40\xec\x8d\x14\xbd\x19\x2f\xd8\xf3\x44\x4c\xab\x4e\xeb\x17\x95\xfa\x50\x98\x00\x49\x31\x59\x5e\x4a\x69\xd5\x2b\x98\x31\xc7\xbc\x07\x79\x32\x97\xcb\x32\xbc\x71\x55\x5c\xd0\x7e\x6a\x81\x1b\x1a\x36\x5b\x05\x4c\x09\x54\x29\xae\x03\xa5\x71\x36\xc0\x17\x3d\x97\x4f\xe4\x8c\xee\x72\x73\xbd\x27\xcb\xc3\xba\xb0\x02\xb4\x36\x34\x37\x14\x58\x84\xe1\xc0\x69\x0f\x47\xfb\x7b\x50\x59\x9c\xb0\x1f\x93\x7b\x31\x61\x37\x19\xcf\xef\x26\xec\x35\x06\x95\xfe\xa4\x96\x6d\x9e\xab\x46\x3a\xfd\xd1\xde\xab\xc3\x9c\x37\x83\xa5\xda\x9d\xcd\xfb\x4b\x53\x87\xbd\x2b\xa2\xfa\x8f\x89\xf3\xea\x60\x3a\xf8\x67\xbf\x7f\xef\x09\x7e\xfe\x06\x89\xfa\xa7\xbc\x0b\xf6\x93\x1c\xfc\x2e\xfc\x5f\xbb\x7f\x59\x8b\x0b\x6c\x4f\xda\xe5\x5a\xb1\x4e\xdf\x56\x5a\x67\x12\xd7\x0f\xe5\x66\x76\xe7\xb0\xa5\x40\xc9\xb3\xb1\x4b\xec\x1d\x01\xe5\xa6\x57\x6d\x7f\x9d\xa5\x4a\x97\x79\xff\xe2\xbf\xae\xd6\xda\x7e\xbd\x85\xe8\x10\x26\xdb\x76\x29\x20\x67\x7b\x28\xa8\x01\x1f\x5b\xfc\x45\x2d\x17\x80\xe0\x39\x6e\x85\xb7\x15\x67\xa5\x53\x5c\x1c\x88\xaa\xea\x4f\xc8\x9b\x4c\x00\xdf\x8e\x37\x45\xbd\x1b\xbc\x36\xc3\x9c\x43\x60\x2e\x2d\xfd\x30\xe6\x0b\xe6\xb9\x00\x9e\x54\x73\xef\xbd\x17\x39\xcb\x78\xee\xc2\xe8\xd6\x22\x0a\x6e\x3e\x1e\x6a\x11\xe6\xf8\x40\xaa\x1e\xdd\xb7\x96\x42\x48\xd7\xdb\x63\x4c\x09\x63\x1d\xd4\x7b\x9f\x30\x54\x0f\x82\x45\x08\xcf\xef\x50\x2f\x6b\xbc\x17\xdc\x05\xc1\xe4\x5e\x8b\x22\xd8\xcd\x6b\xa6\x45\x65\x69\x56\xe2\x32\xdf\x14\x8e\xbc\x35\xf2\x5a\xa3\x26\xaa\xb8\x0d\x06\x45\xb2\x1e\xc3\x4b\xfc\x9e\x17\x1b\xbc\xd0\x6e\x55\x41\x32\xf2\xc8\x91\x82\xf3\x05\x7d\xad\xcb\x54\x2d\x41\x8a\xc7\xfc\xd2\x75\x37\x8c\x68\x69\x0f\xea\xba\xe6\x80\x0d\xd9\x19\xcc\x6e\x02\x79\x86\xb9\xd0\x40\x37\xd1\x8c\xcd\x0c\x45\xbd\x8e\xbb\x74\x37\xab\x6b\x36\xfd\xd7\x8d\xcb\x76\x93\x9f\xdc\x2c\x6b\x80\x40\x9e\x1f\x90\x97\x71\x1e\xe6\xea\x19\xe3\x80\xa8\x5a\x29\xf8\x89\x6c\x8d\xb5\xf6\x5a\xc5\xd7\xb9\x9c\xe1\x2f\xc1\x21\xc0\xbd\x0e\x87\x43\x19\x92\xb8\x9f\x5b\x7f\x98\xbc\xc7\x66\x21\xae\x8d\x3c\x04\x13\xef\xc1\x83\xcb\xc0\x04\x72\xe5\x64\x91\xe4\x82\x49\x88\xbd\xcf\xa5\x2e\x97\x27\x9e\x96\xc1\xdc\xe2\xee\x81\x4a\x44\x8b\x8c\xc3\x55\x06\xd8\x5a\x4e\x5a\x8e\x61\xf4\xc7\x79\x3e\x7d\x4b\x5f\xc6\x53\xda\xfc\x21\x03\x0f\xf3\x82\x5d\xdb\x5d\x39\xe6\xb2\x06\xb7\x68\x9b\x93\x8a\x87\x5d\xdf\x7e\x01\x8a\x1f\x90\xd7\x77\x8d\xd8\x81\xaf\x7d\x80\x87\x31\xc0\xa1\x47\x37\x44\x91\xe6\xf2\xff\xda\xb3\xa1\x1b\xaa\x3a\x62\xa6\x9b\x9e\x31\x47\x54\x27\x84\xb6\x52\x37\x7b\x85\x0c\x8c\xc0\xee\x4a\x35\xa6\x7c\x5b\xa9\xdc\xa2\x39\x42\x7e\x7b\x45\x49\x98\xf0\xeb\x7d\xa2\x03\xb2\x63\xf8\xda\x8d\x10\xec\x65\x2e\x56\x2f\x3f\xe6\x62\xb5\xb0\x23\x3d\x85\x06\x4d\x4d\x8b\x9a\x94\xc7\x03\x27\x87\xce\x94\x6c\xa7\x7e\xdb\x43\xcd\x58\x6b\x12\x96\x13\xb4\x29\x59\x31\x2f\x83\x66\xda\x03\xf9\xef\x22\xae\x73\x31\x37\x6a\xf6\xc5\x8f\xb9\x2e\xfc\xd3\x00\x80\x51\x87\x7c\xd8\x3f\xff\xf1\x56\xe9\xb3\x21\xc7\xdb\x6d\x15\x28\x62\x37\x7b\x2e\xdd\x81\xd7\x0d\x28\xfe\xb2\x98\x67\x18\x40\x9d\xf1\x07\x49\x2c\x1e\xa3\x5c\x4f\xc3\x8e\xb5\x76\x21\x73\x73\xac\x35\x90\x5f\x7e\x95\x49\xeb\xe9\x4b\x9c\xd6\xd6\x24\x90\xa9\xe5\x69\x1a\x32\xca\xfb\xf8\xd2\x5c\xfa\x6c\x47\x63\xb5\xa6\xa9\x75\xe1\x55\xec\x0d\xe2\x6c\x89\x21\xcd\x54\x4c\x2c\xe5\x04\x91\xb5\x51\x14\xe8\x64\xc9\x41\x03\xd1\xe9\xac\xec\x5b\xcd\x8f\x75\x89\xfc\xc6\xb2\x6d\xf7\xc4\x5b\xf1\xb3\x8b\x3b\xb1\x1b\x5d\xd7\xf6\x48\x87\x97\x60\xdc\xc0\x62\xb6\xbb\x6c\xc4\xf3\xdc\x62\xc7\xe9\xab\xcc\xdc\x95\x56\x3c\xaa\xb8\x39\x3b\xea\xb9\x11\xd1\x5d\xa6\x12\x39\x7a\x2f\x0a\xea\x63\x0c\xa9\xc2\x9c\x67\xbe\x34\x77\x3b\x1c\x74\x38\x56\xec\x49\x6c\x88\x06\x50\x81\x05\x44\x7a\x2a\x2a\xce\x9c\xc6\x64\xf7\xb4\x7b\x6c\xff\x85\xf0\x67\xc3\x13\xf8\x62\x5b\xe2\x43\xb5\x53\x85\xb7\x38\x76\x2a\x3c\x88\xbc\x91\x53\x34\xb0\xb3\x39\xab\x10\xb8\xb5\x76\x29\xb8\x20\x7f\xf3\x0c\xfd\xe6\x19\xfa\x07\xf7\x0c\x7d\x49\xb7\x10\x20\x42\x9e\xd2\x27\xd4\x13\x20\x3f\x62\x39\xba\xaf\x1e\x2b\xb8\x8c\xd6\xf1\x24\x10\x06\x0d\xf2\xe7\x9a\xf0\x76\x4b\xaf\x50\x80\xac\x72\x74\x27\x64\x67\x8c\xde\x92\xe2\x74\xaa\xc7\x3e\x16\xec\xb3\x9b\xd3\x27\x78\xbb\x9f\x23\xcd\x03\x7c\x88\x32\xb5\x8d\x66\xc2\xac\x13\xb0\x3d\x4d\xc3\x4f\x00\x2a\xa5\x72\x47\xeb\xab\x29\xb7\x0b\x83\x91\x48\xbe\x83\x10\xa1\x1a\x11\xee\x50\x24\x98\xfd\xf0\x22\x53\x2a\x6d\x05\x84\x3d\x6a\x07\x36\xd2\x43\x86\x76\xde\x05\x1a\xa3\x3a\x84\x49\xd9\x5e\xf4\xa9\x06\x3e\x31\x01\xb3\x10\x40\x09\x00\x66\x53\x5c\x42\x86\x9e\xef\x8e\xa9\xcf\xeb\xe1\xce\xe1\x42\xc8\xa8\xa5\x88\x38\xa8\xe0\x59\xc8\x5a\xc4\x5d\xce\x45\x48\xb5\xd3\x48\x82\xd0\xcd\xef\x74\x44\x2d\xa1\xdc\x45\xd2\x46\xfb\x3f\x76\x71\xd5\x2c\x04\x0b\xa8\xc6\x9a\x5b\x24\x89\x25\x9d\xdb\x27\x7a\x68\x19\x76\x17\x51\xca\xf5\x40\xc3\xba\x75\xdf\xb9\xa0\x82\xce\xa0\x9c\xe1\x1b\xe9\x8f\x90\x84\xb2\x1d\x88\xdc\x99\xcb\x99\x13\xfd\xf3\xd8\x2f\x87\x57\xc3\x70\x29\x22\xf5\x1a\x43\x83\x4c\x76\xfe\xe6\x32\x61\xba\x8c\x36\xc0\xd5\x57\xdd\xa7\xc2\x7d\xab\xb9\x62\x27\x73\x69\x2e\x44\xe0\x6a\xd9\x72\xc8\xb6\x7e\x30\xc6\xaa\x4e\xfe\x2a\x1c\x3c\x8b\x28\xa1\x42\x44\x16\x5e\x9c\x94\x6c\x45\xaf\x59\xda\x44\x04\x58\x78\x4c\x49\x99\xc5\xbc\x10\xd3\xb9\x47\xdb\x24\xe8\xe9\xb4\x28\x0f\x32\x99\x75\xd8\xb0\x10\xbd\x57\xdb\x69\xd3\x64\x25\xa2\x5d\xd4\x50\x41\xe9\x27\x1f\xf8\xed\xda\xf6\x6d\x5d\xdb\x90\x63\x14\x33\xe5\xc6\x74\x2d\x55\xf5\xda\xbf\x7e\x5c\xe7\x0a\x16\xd4\x44\x8f\xe8\xe7\x2f\x78\xed\x6c\xb1\x81\xc7\xd9\xf3\x83\xef\x41\xfd\xc7\x99\xbf\xd8\xfa\xc3\x3a\x48\xac\x6f\x98\x85\x61\x70\xb1\x08\xa7\x8e\x31\x68\x07\x87\xf5\xbb\xb9\x4b\xbe\x29\x70\xd2\x90\x8b\xab\xb1\xb8\x1d\x5c\xe9\xd2\x5a\xda\x52\xe0\x79\xd7\x63\x71\x07\x9c\xd6\xbc\x78\xa6\x5d\xaf\x57\x77\x40\x8b\x78\x7f\x9b\xe8\xe2\xe7\x9a\x62\xe2\x61\x92\x8b\x4f\x66\x9a\xda\xaa\x62\x35\x87\x5a\x54\xd7\x55\x9b\x47\xad\xec\x9c\x83\xcb\x93\xd5\xc8\x32\xf5\x1e\x73\x0f\xfa\xe8\xfa\xeb\x23\x1e\x4d\x0f\x39\xcf\x32\x91\xdb\x83\xbc\x61\x6b\x81\xe0\x14\x7c\x05\x14\xe3\x36\x02\x65\x6b\x6b\xb7\x5c\xb3\x95\xd4\x8a\x86\xc7\xa0\xeb\xa6\xed\x23\x77\x59\xa6\x69\xe7\xc8\xed\xd7\xb1\xb9\xfc\xf0\xf6\xed\xe2\xe7\xd9\xdb\x0f\xe7\xb6\xf9\xad\xba\x30\xc1\x63\x9d\x7d\xe2\x6a\x42\x7d\xe2\x95\xe7\xcc\x67\x85\x95\xce\x55\xbe\xd5\xe8\xe4\x2a\xd3\xb4\xaa\x19\x34\x97\x1f\xa9\x1c\x80\x69\xa3\x1e\xa2\xe9\x37\xd6\xdb\x71\xd5\xef\xc3\x63\x1f\x4d\xe1\x1f\xf1\xdd\x13\xe6\x1b\xf1\x12\x94\xed\x48\x31\xab\xbd\x5f\x29\x07\xe4\x88\xe5\x80\x60\xe0\xae\xe5\xf0\xd8\xaa\x68\x87\x2d\x8f\x0f\x12\xf8\x98\x45\x6c\xc5\xcc\x1e\x65\x75\x60\xdf\x7d\xac\xc6\xa9\xdd\x5e\x1e\xe3\x95\x06\xca\x9d\xa0\x96\x15\x28\xf4\x7a\xb9\xa7\xb9\x44\x1f\xa8\xa9\x53\xa1\xba\xeb\xc4\x2e\xc8\xbc\x4d\xb9\x5c\x97\x7c\x6d\xac\x5b\xfb\xf1\xb9\xdc\x26\xeb\x0d\xb2\x4b\x94\x99\xc7\x27\x73\x26\x81\x84\xa4\x36\x85\x6a\xf8\xe4\x44\xce\x25\xb5\x49\xae\x7d\xf1\x88\x95\xfd\xd3\x8d\x6b\x0e\x81\xd2\xb1\x20\x92\xe3\x92\x73\x89\x83\x8b\xac\x17\x36\x12\x02\x37\x16\x5e\xd4\xa7\x2e\x87\xd8\x25\x4a\x56\x9b\x3d\x7d\x0d\x31\x99\xb9\x74\x89\xa9\xe8\x39\xa2\x36\x04\xb2\x0d\x58\xa5\xfd\xfb\x89\x1d\x0c\xbb\x26\xa8\x6e\xed\xb3\xfe\xe8\x33\xc0\x2c\xb8\xc5\x08\xed\xdd\xe6\x36\x36\xd0\x5b\xc8\x83\x8d\xa3\x8b\xad\x00\xb2\x91\xdb\x6b\x63\xdb\x85\xcf\x74\x42\x5b\x55\xb9\x4c\x47\x54\x09\x9f\xef\xad\x14\x6e\xc9\xfd\x95\x1a\x70\x1d\xbe\xae\x2d\x2d\x33\x4d\xfb\x3e\xbb\x54\xaa\x63\x5c\x1e\x31\xa0\x58\xa9\x14\xbd\xb0\xaf\x33\xca\xa8\x38\x64\xbe\x0c\x48\xd1\xab\x77\x91\xdd\x7d\xfa\x2a\x94\x26\xfa\xa0\xea\x78\xfb\x69\x70\x8d\x9c\x85\x40\x87\xdd\xa8\x1d\x96\xce\xb9\xca\x06\xdb\xb1\x4d\x52\x3c\xc9\x8a\xd8\x26\xb8\xbd\x98\xc5\x83\x0a\xb3\x66\xfe\x4f\xdc\x24\x9a\xf8\x91\x9b\x40\x25\xa3\x32\xd7\x66\xbb\xa4\xfd\x8e\x76\x6d\x95\x33\x3e\x97\x56\x0d\xc1\x6e\xc7\x33\x0b\xce\xcd\xdd\x5f\x31\xed\x31\x43\x36\x71\xb0\x58\x0b\xa6\xa4\xb0\xbb\xe1\x5c\x5a\xe5\xe3\x09\xe3\x4b\x6d\x05\x85\xb9\xdc\x39\x95\xdf\xc4\x49\xb8\x71\xc9\x00\xf5\xbc\x7f\xcf\xab\x99\x01\x95\x73\xfe\x77\xe6\xff\xfe\xfe\xbb\xff\x1f\x00\x00\xff\xff\xfc\xb0\x82\x8f\x3a\xa8\x04\x00") func adminSwaggerJsonBytes() ([]byte, error) { return bindataRead( @@ -93,7 +93,7 @@ func adminSwaggerJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin.swagger.json", size: 305084, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} + info := bindataFileInfo{name: "admin.swagger.json", size: 305210, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/gen/pb-java/flyteidl/core/Condition.java b/gen/pb-java/flyteidl/core/Condition.java index e81d1ec36..ec3247ff3 100644 --- a/gen/pb-java/flyteidl/core/Condition.java +++ b/gen/pb-java/flyteidl/core/Condition.java @@ -1081,25 +1081,25 @@ public interface OperandOrBuilder extends * Can be a constant * * - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - boolean hasPrimitive(); + @java.lang.Deprecated boolean hasPrimitive(); /** *
      * Can be a constant
      * 
* - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - flyteidl.core.Literals.Primitive getPrimitive(); + @java.lang.Deprecated flyteidl.core.Literals.Primitive getPrimitive(); /** *
      * Can be a constant
      * 
* - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - flyteidl.core.Literals.PrimitiveOrBuilder getPrimitiveOrBuilder(); + @java.lang.Deprecated flyteidl.core.Literals.PrimitiveOrBuilder getPrimitiveOrBuilder(); /** *
@@ -1119,6 +1119,31 @@ public interface OperandOrBuilder extends
     com.google.protobuf.ByteString
         getVarBytes();
 
+    /**
+     * 
+     * Replace the primitive field
+     * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + boolean hasScalar(); + /** + *
+     * Replace the primitive field
+     * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + flyteidl.core.Literals.Scalar getScalar(); + /** + *
+     * Replace the primitive field
+     * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + flyteidl.core.Literals.ScalarOrBuilder getScalarOrBuilder(); + public flyteidl.core.Condition.Operand.ValCase getValCase(); } /** @@ -1184,6 +1209,20 @@ private Operand( val_ = s; break; } + case 26: { + flyteidl.core.Literals.Scalar.Builder subBuilder = null; + if (valCase_ == 3) { + subBuilder = ((flyteidl.core.Literals.Scalar) val_).toBuilder(); + } + val_ = + input.readMessage(flyteidl.core.Literals.Scalar.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((flyteidl.core.Literals.Scalar) val_); + val_ = subBuilder.buildPartial(); + } + valCase_ = 3; + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -1220,8 +1259,9 @@ private Operand( private java.lang.Object val_; public enum ValCase implements com.google.protobuf.Internal.EnumLite { - PRIMITIVE(1), + @java.lang.Deprecated PRIMITIVE(1), VAR(2), + SCALAR(3), VAL_NOT_SET(0); private final int value; private ValCase(int value) { @@ -1239,6 +1279,7 @@ public static ValCase forNumber(int value) { switch (value) { case 1: return PRIMITIVE; case 2: return VAR; + case 3: return SCALAR; case 0: return VAL_NOT_SET; default: return null; } @@ -1260,9 +1301,9 @@ public int getNumber() { * Can be a constant *
* - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - public boolean hasPrimitive() { + @java.lang.Deprecated public boolean hasPrimitive() { return valCase_ == 1; } /** @@ -1270,9 +1311,9 @@ public boolean hasPrimitive() { * Can be a constant * * - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - public flyteidl.core.Literals.Primitive getPrimitive() { + @java.lang.Deprecated public flyteidl.core.Literals.Primitive getPrimitive() { if (valCase_ == 1) { return (flyteidl.core.Literals.Primitive) val_; } @@ -1283,9 +1324,9 @@ public flyteidl.core.Literals.Primitive getPrimitive() { * Can be a constant * * - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - public flyteidl.core.Literals.PrimitiveOrBuilder getPrimitiveOrBuilder() { + @java.lang.Deprecated public flyteidl.core.Literals.PrimitiveOrBuilder getPrimitiveOrBuilder() { if (valCase_ == 1) { return (flyteidl.core.Literals.Primitive) val_; } @@ -1343,6 +1384,44 @@ public java.lang.String getVar() { } } + public static final int SCALAR_FIELD_NUMBER = 3; + /** + *
+     * Replace the primitive field
+     * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + public boolean hasScalar() { + return valCase_ == 3; + } + /** + *
+     * Replace the primitive field
+     * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + public flyteidl.core.Literals.Scalar getScalar() { + if (valCase_ == 3) { + return (flyteidl.core.Literals.Scalar) val_; + } + return flyteidl.core.Literals.Scalar.getDefaultInstance(); + } + /** + *
+     * Replace the primitive field
+     * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + public flyteidl.core.Literals.ScalarOrBuilder getScalarOrBuilder() { + if (valCase_ == 3) { + return (flyteidl.core.Literals.Scalar) val_; + } + return flyteidl.core.Literals.Scalar.getDefaultInstance(); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -1363,6 +1442,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (valCase_ == 2) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, val_); } + if (valCase_ == 3) { + output.writeMessage(3, (flyteidl.core.Literals.Scalar) val_); + } unknownFields.writeTo(output); } @@ -1379,6 +1461,10 @@ public int getSerializedSize() { if (valCase_ == 2) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, val_); } + if (valCase_ == 3) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, (flyteidl.core.Literals.Scalar) val_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -1404,6 +1490,10 @@ public boolean equals(final java.lang.Object obj) { if (!getVar() .equals(other.getVar())) return false; break; + case 3: + if (!getScalar() + .equals(other.getScalar())) return false; + break; case 0: default: } @@ -1427,6 +1517,10 @@ public int hashCode() { hash = (37 * hash) + VAR_FIELD_NUMBER; hash = (53 * hash) + getVar().hashCode(); break; + case 3: + hash = (37 * hash) + SCALAR_FIELD_NUMBER; + hash = (53 * hash) + getScalar().hashCode(); + break; case 0: default: } @@ -1605,6 +1699,13 @@ public flyteidl.core.Condition.Operand buildPartial() { if (valCase_ == 2) { result.val_ = val_; } + if (valCase_ == 3) { + if (scalarBuilder_ == null) { + result.val_ = val_; + } else { + result.val_ = scalarBuilder_.build(); + } + } result.valCase_ = valCase_; onBuilt(); return result; @@ -1665,6 +1766,10 @@ public Builder mergeFrom(flyteidl.core.Condition.Operand other) { onChanged(); break; } + case SCALAR: { + mergeScalar(other.getScalar()); + break; + } case VAL_NOT_SET: { break; } @@ -1720,9 +1825,9 @@ public Builder clearVal() { * Can be a constant * * - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - public boolean hasPrimitive() { + @java.lang.Deprecated public boolean hasPrimitive() { return valCase_ == 1; } /** @@ -1730,9 +1835,9 @@ public boolean hasPrimitive() { * Can be a constant * * - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - public flyteidl.core.Literals.Primitive getPrimitive() { + @java.lang.Deprecated public flyteidl.core.Literals.Primitive getPrimitive() { if (primitiveBuilder_ == null) { if (valCase_ == 1) { return (flyteidl.core.Literals.Primitive) val_; @@ -1750,9 +1855,9 @@ public flyteidl.core.Literals.Primitive getPrimitive() { * Can be a constant * * - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - public Builder setPrimitive(flyteidl.core.Literals.Primitive value) { + @java.lang.Deprecated public Builder setPrimitive(flyteidl.core.Literals.Primitive value) { if (primitiveBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -1770,9 +1875,9 @@ public Builder setPrimitive(flyteidl.core.Literals.Primitive value) { * Can be a constant * * - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - public Builder setPrimitive( + @java.lang.Deprecated public Builder setPrimitive( flyteidl.core.Literals.Primitive.Builder builderForValue) { if (primitiveBuilder_ == null) { val_ = builderForValue.build(); @@ -1788,9 +1893,9 @@ public Builder setPrimitive( * Can be a constant * * - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - public Builder mergePrimitive(flyteidl.core.Literals.Primitive value) { + @java.lang.Deprecated public Builder mergePrimitive(flyteidl.core.Literals.Primitive value) { if (primitiveBuilder_ == null) { if (valCase_ == 1 && val_ != flyteidl.core.Literals.Primitive.getDefaultInstance()) { @@ -1814,9 +1919,9 @@ public Builder mergePrimitive(flyteidl.core.Literals.Primitive value) { * Can be a constant * * - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - public Builder clearPrimitive() { + @java.lang.Deprecated public Builder clearPrimitive() { if (primitiveBuilder_ == null) { if (valCase_ == 1) { valCase_ = 0; @@ -1837,9 +1942,9 @@ public Builder clearPrimitive() { * Can be a constant * * - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - public flyteidl.core.Literals.Primitive.Builder getPrimitiveBuilder() { + @java.lang.Deprecated public flyteidl.core.Literals.Primitive.Builder getPrimitiveBuilder() { return getPrimitiveFieldBuilder().getBuilder(); } /** @@ -1847,9 +1952,9 @@ public flyteidl.core.Literals.Primitive.Builder getPrimitiveBuilder() { * Can be a constant * * - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ - public flyteidl.core.Literals.PrimitiveOrBuilder getPrimitiveOrBuilder() { + @java.lang.Deprecated public flyteidl.core.Literals.PrimitiveOrBuilder getPrimitiveOrBuilder() { if ((valCase_ == 1) && (primitiveBuilder_ != null)) { return primitiveBuilder_.getMessageOrBuilder(); } else { @@ -1864,7 +1969,7 @@ public flyteidl.core.Literals.PrimitiveOrBuilder getPrimitiveOrBuilder() { * Can be a constant * * - * .flyteidl.core.Primitive primitive = 1; + * .flyteidl.core.Primitive primitive = 1 [deprecated = true]; */ private com.google.protobuf.SingleFieldBuilderV3< flyteidl.core.Literals.Primitive, flyteidl.core.Literals.Primitive.Builder, flyteidl.core.Literals.PrimitiveOrBuilder> @@ -1984,6 +2089,178 @@ public Builder setVarBytes( onChanged(); return this; } + + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Literals.Scalar, flyteidl.core.Literals.Scalar.Builder, flyteidl.core.Literals.ScalarOrBuilder> scalarBuilder_; + /** + *
+       * Replace the primitive field
+       * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + public boolean hasScalar() { + return valCase_ == 3; + } + /** + *
+       * Replace the primitive field
+       * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + public flyteidl.core.Literals.Scalar getScalar() { + if (scalarBuilder_ == null) { + if (valCase_ == 3) { + return (flyteidl.core.Literals.Scalar) val_; + } + return flyteidl.core.Literals.Scalar.getDefaultInstance(); + } else { + if (valCase_ == 3) { + return scalarBuilder_.getMessage(); + } + return flyteidl.core.Literals.Scalar.getDefaultInstance(); + } + } + /** + *
+       * Replace the primitive field
+       * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + public Builder setScalar(flyteidl.core.Literals.Scalar value) { + if (scalarBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + val_ = value; + onChanged(); + } else { + scalarBuilder_.setMessage(value); + } + valCase_ = 3; + return this; + } + /** + *
+       * Replace the primitive field
+       * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + public Builder setScalar( + flyteidl.core.Literals.Scalar.Builder builderForValue) { + if (scalarBuilder_ == null) { + val_ = builderForValue.build(); + onChanged(); + } else { + scalarBuilder_.setMessage(builderForValue.build()); + } + valCase_ = 3; + return this; + } + /** + *
+       * Replace the primitive field
+       * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + public Builder mergeScalar(flyteidl.core.Literals.Scalar value) { + if (scalarBuilder_ == null) { + if (valCase_ == 3 && + val_ != flyteidl.core.Literals.Scalar.getDefaultInstance()) { + val_ = flyteidl.core.Literals.Scalar.newBuilder((flyteidl.core.Literals.Scalar) val_) + .mergeFrom(value).buildPartial(); + } else { + val_ = value; + } + onChanged(); + } else { + if (valCase_ == 3) { + scalarBuilder_.mergeFrom(value); + } + scalarBuilder_.setMessage(value); + } + valCase_ = 3; + return this; + } + /** + *
+       * Replace the primitive field
+       * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + public Builder clearScalar() { + if (scalarBuilder_ == null) { + if (valCase_ == 3) { + valCase_ = 0; + val_ = null; + onChanged(); + } + } else { + if (valCase_ == 3) { + valCase_ = 0; + val_ = null; + } + scalarBuilder_.clear(); + } + return this; + } + /** + *
+       * Replace the primitive field
+       * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + public flyteidl.core.Literals.Scalar.Builder getScalarBuilder() { + return getScalarFieldBuilder().getBuilder(); + } + /** + *
+       * Replace the primitive field
+       * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + public flyteidl.core.Literals.ScalarOrBuilder getScalarOrBuilder() { + if ((valCase_ == 3) && (scalarBuilder_ != null)) { + return scalarBuilder_.getMessageOrBuilder(); + } else { + if (valCase_ == 3) { + return (flyteidl.core.Literals.Scalar) val_; + } + return flyteidl.core.Literals.Scalar.getDefaultInstance(); + } + } + /** + *
+       * Replace the primitive field
+       * 
+ * + * .flyteidl.core.Scalar scalar = 3; + */ + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Literals.Scalar, flyteidl.core.Literals.Scalar.Builder, flyteidl.core.Literals.ScalarOrBuilder> + getScalarFieldBuilder() { + if (scalarBuilder_ == null) { + if (!(valCase_ == 3)) { + val_ = flyteidl.core.Literals.Scalar.getDefaultInstance(); + } + scalarBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Literals.Scalar, flyteidl.core.Literals.Scalar.Builder, flyteidl.core.Literals.ScalarOrBuilder>( + (flyteidl.core.Literals.Scalar) val_, + getParentForChildren(), + isClean()); + val_ = null; + } + valCase_ = 3; + onChanged();; + return scalarBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -4010,21 +4287,22 @@ public flyteidl.core.Condition.ConjunctionExpression getDefaultInstanceForType() "rator\022*\n\nleft_value\030\002 \001(\0132\026.flyteidl.cor" + "e.Operand\022+\n\013right_value\030\003 \001(\0132\026.flyteid" + "l.core.Operand\"=\n\010Operator\022\006\n\002EQ\020\000\022\007\n\003NE" + - "Q\020\001\022\006\n\002GT\020\002\022\007\n\003GTE\020\003\022\006\n\002LT\020\004\022\007\n\003LTE\020\005\"N\n" + - "\007Operand\022-\n\tprimitive\030\001 \001(\0132\030.flyteidl.c" + - "ore.PrimitiveH\000\022\r\n\003var\030\002 \001(\tH\000B\005\n\003val\"\223\001" + - "\n\021BooleanExpression\022;\n\013conjunction\030\001 \001(\013" + - "2$.flyteidl.core.ConjunctionExpressionH\000" + - "\0229\n\ncomparison\030\002 \001(\0132#.flyteidl.core.Com" + - "parisonExpressionH\000B\006\n\004expr\"\372\001\n\025Conjunct" + - "ionExpression\022F\n\010operator\030\001 \001(\01624.flytei" + - "dl.core.ConjunctionExpression.LogicalOpe" + - "rator\0229\n\017left_expression\030\002 \001(\0132 .flyteid" + - "l.core.BooleanExpression\022:\n\020right_expres" + - "sion\030\003 \001(\0132 .flyteidl.core.BooleanExpres" + - "sion\"\"\n\017LogicalOperator\022\007\n\003AND\020\000\022\006\n\002OR\020\001" + - "B6Z4github.com/flyteorg/flyteidl/gen/pb-" + - "go/flyteidl/coreb\006proto3" + "Q\020\001\022\006\n\002GT\020\002\022\007\n\003GTE\020\003\022\006\n\002LT\020\004\022\007\n\003LTE\020\005\"{\n" + + "\007Operand\0221\n\tprimitive\030\001 \001(\0132\030.flyteidl.c" + + "ore.PrimitiveB\002\030\001H\000\022\r\n\003var\030\002 \001(\tH\000\022\'\n\006sc" + + "alar\030\003 \001(\0132\025.flyteidl.core.ScalarH\000B\005\n\003v" + + "al\"\223\001\n\021BooleanExpression\022;\n\013conjunction\030" + + "\001 \001(\0132$.flyteidl.core.ConjunctionExpress" + + "ionH\000\0229\n\ncomparison\030\002 \001(\0132#.flyteidl.cor" + + "e.ComparisonExpressionH\000B\006\n\004expr\"\372\001\n\025Con" + + "junctionExpression\022F\n\010operator\030\001 \001(\01624.f" + + "lyteidl.core.ConjunctionExpression.Logic" + + "alOperator\0229\n\017left_expression\030\002 \001(\0132 .fl" + + "yteidl.core.BooleanExpression\022:\n\020right_e" + + "xpression\030\003 \001(\0132 .flyteidl.core.BooleanE" + + "xpression\"\"\n\017LogicalOperator\022\007\n\003AND\020\000\022\006\n" + + "\002OR\020\001B6Z4github.com/flyteorg/flyteidl/ge" + + "n/pb-go/flyteidl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { @@ -4050,7 +4328,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_core_Operand_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_Operand_descriptor, - new java.lang.String[] { "Primitive", "Var", "Val", }); + new java.lang.String[] { "Primitive", "Var", "Scalar", "Val", }); internal_static_flyteidl_core_BooleanExpression_descriptor = getDescriptor().getMessageTypes().get(2); internal_static_flyteidl_core_BooleanExpression_fieldAccessorTable = new diff --git a/gen/pb-js/flyteidl.d.ts b/gen/pb-js/flyteidl.d.ts index 3b08ace46..7744acd5d 100644 --- a/gen/pb-js/flyteidl.d.ts +++ b/gen/pb-js/flyteidl.d.ts @@ -2018,6 +2018,9 @@ export namespace flyteidl { /** Operand var */ "var"?: (string|null); + + /** Operand scalar */ + scalar?: (flyteidl.core.IScalar|null); } /** Represents an Operand. */ @@ -2035,8 +2038,11 @@ export namespace flyteidl { /** Operand var. */ public var: string; + /** Operand scalar. */ + public scalar?: (flyteidl.core.IScalar|null); + /** Operand val. */ - public val?: ("primitive"|"var"); + public val?: ("primitive"|"var"|"scalar"); /** * Creates a new Operand instance using the specified properties. diff --git a/gen/pb-js/flyteidl.js b/gen/pb-js/flyteidl.js index fd8a87025..6a2ae8c72 100644 --- a/gen/pb-js/flyteidl.js +++ b/gen/pb-js/flyteidl.js @@ -4862,6 +4862,7 @@ * @interface IOperand * @property {flyteidl.core.IPrimitive|null} [primitive] Operand primitive * @property {string|null} ["var"] Operand var + * @property {flyteidl.core.IScalar|null} [scalar] Operand scalar */ /** @@ -4895,17 +4896,25 @@ */ Operand.prototype["var"] = ""; + /** + * Operand scalar. + * @member {flyteidl.core.IScalar|null|undefined} scalar + * @memberof flyteidl.core.Operand + * @instance + */ + Operand.prototype.scalar = null; + // OneOf field names bound to virtual getters and setters var $oneOfFields; /** * Operand val. - * @member {"primitive"|"var"|undefined} val + * @member {"primitive"|"var"|"scalar"|undefined} val * @memberof flyteidl.core.Operand * @instance */ Object.defineProperty(Operand.prototype, "val", { - get: $util.oneOfGetter($oneOfFields = ["primitive", "var"]), + get: $util.oneOfGetter($oneOfFields = ["primitive", "var", "scalar"]), set: $util.oneOfSetter($oneOfFields) }); @@ -4937,6 +4946,8 @@ $root.flyteidl.core.Primitive.encode(message.primitive, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); if (message["var"] != null && message.hasOwnProperty("var")) writer.uint32(/* id 2, wireType 2 =*/18).string(message["var"]); + if (message.scalar != null && message.hasOwnProperty("scalar")) + $root.flyteidl.core.Scalar.encode(message.scalar, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); return writer; }; @@ -4964,6 +4975,9 @@ case 2: message["var"] = reader.string(); break; + case 3: + message.scalar = $root.flyteidl.core.Scalar.decode(reader, reader.uint32()); + break; default: reader.skipType(tag & 7); break; @@ -4999,6 +5013,16 @@ if (!$util.isString(message["var"])) return "var: string expected"; } + if (message.scalar != null && message.hasOwnProperty("scalar")) { + if (properties.val === 1) + return "val: multiple values"; + properties.val = 1; + { + var error = $root.flyteidl.core.Scalar.verify(message.scalar); + if (error) + return "scalar." + error; + } + } return null; }; diff --git a/gen/pb_python/flyteidl/core/condition_pb2.py b/gen/pb_python/flyteidl/core/condition_pb2.py index 2dbfc4a0c..71bdaec35 100644 --- a/gen/pb_python/flyteidl/core/condition_pb2.py +++ b/gen/pb_python/flyteidl/core/condition_pb2.py @@ -14,7 +14,7 @@ from flyteidl.core import literals_pb2 as flyteidl_dot_core_dot_literals__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/core/condition.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/literals.proto\"\x8f\x02\n\x14\x43omparisonExpression\x12H\n\x08operator\x18\x01 \x01(\x0e\x32,.flyteidl.core.ComparisonExpression.OperatorR\x08operator\x12\x35\n\nleft_value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.OperandR\tleftValue\x12\x37\n\x0bright_value\x18\x03 \x01(\x0b\x32\x16.flyteidl.core.OperandR\nrightValue\"=\n\x08Operator\x12\x06\n\x02\x45Q\x10\x00\x12\x07\n\x03NEQ\x10\x01\x12\x06\n\x02GT\x10\x02\x12\x07\n\x03GTE\x10\x03\x12\x06\n\x02LT\x10\x04\x12\x07\n\x03LTE\x10\x05\"^\n\x07Operand\x12\x38\n\tprimitive\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.PrimitiveH\x00R\tprimitive\x12\x12\n\x03var\x18\x02 \x01(\tH\x00R\x03varB\x05\n\x03val\"\xac\x01\n\x11\x42ooleanExpression\x12H\n\x0b\x63onjunction\x18\x01 \x01(\x0b\x32$.flyteidl.core.ConjunctionExpressionH\x00R\x0b\x63onjunction\x12\x45\n\ncomparison\x18\x02 \x01(\x0b\x32#.flyteidl.core.ComparisonExpressionH\x00R\ncomparisonB\x06\n\x04\x65xpr\"\xa5\x02\n\x15\x43onjunctionExpression\x12P\n\x08operator\x18\x01 \x01(\x0e\x32\x34.flyteidl.core.ConjunctionExpression.LogicalOperatorR\x08operator\x12I\n\x0fleft_expression\x18\x02 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\x0eleftExpression\x12K\n\x10right_expression\x18\x03 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\x0frightExpression\"\"\n\x0fLogicalOperator\x12\x07\n\x03\x41ND\x10\x00\x12\x06\n\x02OR\x10\x01\x42\xae\x01\n\x11\x63om.flyteidl.coreB\x0e\x43onditionProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/core/condition.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/literals.proto\"\x8f\x02\n\x14\x43omparisonExpression\x12H\n\x08operator\x18\x01 \x01(\x0e\x32,.flyteidl.core.ComparisonExpression.OperatorR\x08operator\x12\x35\n\nleft_value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.OperandR\tleftValue\x12\x37\n\x0bright_value\x18\x03 \x01(\x0b\x32\x16.flyteidl.core.OperandR\nrightValue\"=\n\x08Operator\x12\x06\n\x02\x45Q\x10\x00\x12\x07\n\x03NEQ\x10\x01\x12\x06\n\x02GT\x10\x02\x12\x07\n\x03GTE\x10\x03\x12\x06\n\x02LT\x10\x04\x12\x07\n\x03LTE\x10\x05\"\x93\x01\n\x07Operand\x12<\n\tprimitive\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.PrimitiveB\x02\x18\x01H\x00R\tprimitive\x12\x12\n\x03var\x18\x02 \x01(\tH\x00R\x03var\x12/\n\x06scalar\x18\x03 \x01(\x0b\x32\x15.flyteidl.core.ScalarH\x00R\x06scalarB\x05\n\x03val\"\xac\x01\n\x11\x42ooleanExpression\x12H\n\x0b\x63onjunction\x18\x01 \x01(\x0b\x32$.flyteidl.core.ConjunctionExpressionH\x00R\x0b\x63onjunction\x12\x45\n\ncomparison\x18\x02 \x01(\x0b\x32#.flyteidl.core.ComparisonExpressionH\x00R\ncomparisonB\x06\n\x04\x65xpr\"\xa5\x02\n\x15\x43onjunctionExpression\x12P\n\x08operator\x18\x01 \x01(\x0e\x32\x34.flyteidl.core.ConjunctionExpression.LogicalOperatorR\x08operator\x12I\n\x0fleft_expression\x18\x02 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\x0eleftExpression\x12K\n\x10right_expression\x18\x03 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\x0frightExpression\"\"\n\x0fLogicalOperator\x12\x07\n\x03\x41ND\x10\x00\x12\x06\n\x02OR\x10\x01\x42\xae\x01\n\x11\x63om.flyteidl.coreB\x0e\x43onditionProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -23,16 +23,18 @@ DESCRIPTOR._options = None DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\016ConditionProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core' + _OPERAND.fields_by_name['primitive']._options = None + _OPERAND.fields_by_name['primitive']._serialized_options = b'\030\001' _globals['_COMPARISONEXPRESSION']._serialized_start=79 _globals['_COMPARISONEXPRESSION']._serialized_end=350 _globals['_COMPARISONEXPRESSION_OPERATOR']._serialized_start=289 _globals['_COMPARISONEXPRESSION_OPERATOR']._serialized_end=350 - _globals['_OPERAND']._serialized_start=352 - _globals['_OPERAND']._serialized_end=446 - _globals['_BOOLEANEXPRESSION']._serialized_start=449 - _globals['_BOOLEANEXPRESSION']._serialized_end=621 - _globals['_CONJUNCTIONEXPRESSION']._serialized_start=624 - _globals['_CONJUNCTIONEXPRESSION']._serialized_end=917 - _globals['_CONJUNCTIONEXPRESSION_LOGICALOPERATOR']._serialized_start=883 - _globals['_CONJUNCTIONEXPRESSION_LOGICALOPERATOR']._serialized_end=917 + _globals['_OPERAND']._serialized_start=353 + _globals['_OPERAND']._serialized_end=500 + _globals['_BOOLEANEXPRESSION']._serialized_start=503 + _globals['_BOOLEANEXPRESSION']._serialized_end=675 + _globals['_CONJUNCTIONEXPRESSION']._serialized_start=678 + _globals['_CONJUNCTIONEXPRESSION']._serialized_end=971 + _globals['_CONJUNCTIONEXPRESSION_LOGICALOPERATOR']._serialized_start=937 + _globals['_CONJUNCTIONEXPRESSION_LOGICALOPERATOR']._serialized_end=971 # @@protoc_insertion_point(module_scope) diff --git a/gen/pb_python/flyteidl/core/condition_pb2.pyi b/gen/pb_python/flyteidl/core/condition_pb2.pyi index 05b9c13fe..4f4de63ad 100644 --- a/gen/pb_python/flyteidl/core/condition_pb2.pyi +++ b/gen/pb_python/flyteidl/core/condition_pb2.pyi @@ -31,12 +31,14 @@ class ComparisonExpression(_message.Message): def __init__(self, operator: _Optional[_Union[ComparisonExpression.Operator, str]] = ..., left_value: _Optional[_Union[Operand, _Mapping]] = ..., right_value: _Optional[_Union[Operand, _Mapping]] = ...) -> None: ... class Operand(_message.Message): - __slots__ = ["primitive", "var"] + __slots__ = ["primitive", "var", "scalar"] PRIMITIVE_FIELD_NUMBER: _ClassVar[int] VAR_FIELD_NUMBER: _ClassVar[int] + SCALAR_FIELD_NUMBER: _ClassVar[int] primitive: _literals_pb2.Primitive var: str - def __init__(self, primitive: _Optional[_Union[_literals_pb2.Primitive, _Mapping]] = ..., var: _Optional[str] = ...) -> None: ... + scalar: _literals_pb2.Scalar + def __init__(self, primitive: _Optional[_Union[_literals_pb2.Primitive, _Mapping]] = ..., var: _Optional[str] = ..., scalar: _Optional[_Union[_literals_pb2.Scalar, _Mapping]] = ...) -> None: ... class BooleanExpression(_message.Message): __slots__ = ["conjunction", "comparison"] diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_operand.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_operand.py index fad1d9ea4..cf2e4a246 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_operand.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_operand.py @@ -17,6 +17,7 @@ import six from flyteadmin.models.core_primitive import CorePrimitive # noqa: F401,E501 +from flyteadmin.models.core_scalar import CoreScalar # noqa: F401,E501 class CoreOperand(object): @@ -34,25 +35,30 @@ class CoreOperand(object): """ swagger_types = { 'primitive': 'CorePrimitive', - 'var': 'str' + 'var': 'str', + 'scalar': 'CoreScalar' } attribute_map = { 'primitive': 'primitive', - 'var': 'var' + 'var': 'var', + 'scalar': 'scalar' } - def __init__(self, primitive=None, var=None): # noqa: E501 + def __init__(self, primitive=None, var=None, scalar=None): # noqa: E501 """CoreOperand - a model defined in Swagger""" # noqa: E501 self._primitive = None self._var = None + self._scalar = None self.discriminator = None if primitive is not None: self.primitive = primitive if var is not None: self.var = var + if scalar is not None: + self.scalar = scalar @property def primitive(self): @@ -96,6 +102,27 @@ def var(self, var): self._var = var + @property + def scalar(self): + """Gets the scalar of this CoreOperand. # noqa: E501 + + + :return: The scalar of this CoreOperand. # noqa: E501 + :rtype: CoreScalar + """ + return self._scalar + + @scalar.setter + def scalar(self, scalar): + """Sets the scalar of this CoreOperand. + + + :param scalar: The scalar of this CoreOperand. # noqa: E501 + :type: CoreScalar + """ + + self._scalar = scalar + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/gen/pb_rust/flyteidl.core.rs b/gen/pb_rust/flyteidl.core.rs index 9efcebdd8..ae1ce0882 100644 --- a/gen/pb_rust/flyteidl.core.rs +++ b/gen/pb_rust/flyteidl.core.rs @@ -1859,7 +1859,7 @@ pub mod comparison_expression { #[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Operand { - #[prost(oneof="operand::Val", tags="1, 2")] + #[prost(oneof="operand::Val", tags="1, 2, 3")] pub val: ::core::option::Option, } /// Nested message and enum types in `Operand`. @@ -1873,6 +1873,9 @@ pub mod operand { /// Or one of this node's input variables #[prost(string, tag="2")] Var(::prost::alloc::string::String), + /// Replace the primitive field + #[prost(message, tag="3")] + Scalar(super::Scalar), } } /// Defines a boolean expression tree. It can be a simple or a conjunction expression. diff --git a/protos/flyteidl/core/condition.proto b/protos/flyteidl/core/condition.proto index 9dc4fe8da..247618713 100644 --- a/protos/flyteidl/core/condition.proto +++ b/protos/flyteidl/core/condition.proto @@ -30,9 +30,11 @@ message ComparisonExpression { message Operand { oneof val { // Can be a constant - core.Primitive primitive = 1; + core.Primitive primitive = 1 [deprecated = true]; // Or one of this node's input variables string var = 2; + // Replace the primitive field + core.Scalar scalar = 3; } } From 7f62a157921db31d5f7a2285b4e9a42b4a01eaa4 Mon Sep 17 00:00:00 2001 From: Dan Rammer Date: Wed, 23 Aug 2023 10:49:38 -0500 Subject: [PATCH 4/8] Updating boilerplate to lock golangci-lint version (#435) Signed-off-by: Daniel Rammer --- boilerplate/flyte/golang_support_tools/go.mod | 274 +++-- boilerplate/flyte/golang_support_tools/go.sum | 1005 ++++++++--------- .../golang_test_targets/download_tooling.sh | 2 +- 3 files changed, 636 insertions(+), 645 deletions(-) diff --git a/boilerplate/flyte/golang_support_tools/go.mod b/boilerplate/flyte/golang_support_tools/go.mod index d60582796..2cfeb8aa3 100644 --- a/boilerplate/flyte/golang_support_tools/go.mod +++ b/boilerplate/flyte/golang_support_tools/go.mod @@ -6,14 +6,22 @@ require ( github.com/EngHabu/mockery v0.0.0-20220405200825-3f76291311cf github.com/alvaroloes/enumer v1.1.2 github.com/flyteorg/flytestdlib v0.4.16 - github.com/golangci/golangci-lint v1.38.0 + github.com/golangci/golangci-lint v1.53.3 github.com/pseudomuto/protoc-gen-doc v1.4.1 ) require ( - 4d63.com/gochecknoglobals v0.0.0-20201008074935-acfc0b28355a // indirect - cloud.google.com/go v0.75.0 // indirect - cloud.google.com/go/storage v1.12.0 // indirect + 4d63.com/gocheckcompilerdirectives v1.2.1 // indirect + 4d63.com/gochecknoglobals v0.2.1 // indirect + cloud.google.com/go v0.110.2 // indirect + cloud.google.com/go/compute v1.19.3 // indirect + cloud.google.com/go/compute/metadata v0.2.3 // indirect + cloud.google.com/go/iam v1.1.2 // indirect + cloud.google.com/go/storage v1.29.0 // indirect + github.com/4meepo/tagalign v1.2.2 // indirect + github.com/Abirdcfly/dupword v0.0.11 // indirect + github.com/Antonboom/errname v0.1.10 // indirect + github.com/Antonboom/nilnil v0.1.5 // indirect github.com/Azure/azure-sdk-for-go v62.3.0+incompatible // indirect github.com/Azure/azure-sdk-for-go/sdk/azcore v0.21.1 // indirect github.com/Azure/azure-sdk-for-go/sdk/internal v0.8.3 // indirect @@ -24,170 +32,216 @@ require ( github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect github.com/Azure/go-autorest/logger v0.2.0 // indirect github.com/Azure/go-autorest/tracing v0.6.0 // indirect - github.com/BurntSushi/toml v0.3.1 // indirect + github.com/BurntSushi/toml v1.3.2 // indirect github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 // indirect + github.com/GaijinEntertainment/go-exhaustruct/v2 v2.3.0 // indirect github.com/Masterminds/semver v1.5.0 // indirect github.com/Masterminds/sprig v2.15.0+incompatible // indirect - github.com/OpenPeeDeeP/depguard v1.0.1 // indirect + github.com/OpenPeeDeeP/depguard/v2 v2.1.0 // indirect + github.com/alexkohler/nakedret/v2 v2.0.2 // indirect github.com/alexkohler/prealloc v1.0.0 // indirect + github.com/alingse/asasalint v0.0.11 // indirect github.com/aokoli/goutils v1.0.1 // indirect - github.com/ashanbrown/forbidigo v1.1.0 // indirect - github.com/ashanbrown/makezero v0.0.0-20201205152432-7b7cdbb3025a // indirect + github.com/ashanbrown/forbidigo v1.5.3 // indirect + github.com/ashanbrown/makezero v1.1.1 // indirect github.com/aws/aws-sdk-go v1.37.1 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/bkielbasa/cyclop v1.2.0 // indirect - github.com/bombsimon/wsl/v3 v3.2.0 // indirect + github.com/bkielbasa/cyclop v1.2.1 // indirect + github.com/blizzy78/varnamelen v0.8.0 // indirect + github.com/bombsimon/wsl/v3 v3.4.0 // indirect + github.com/breml/bidichk v0.2.4 // indirect + github.com/breml/errchkjson v0.3.1 // indirect + github.com/butuzov/ireturn v0.2.0 // indirect + github.com/butuzov/mirror v1.1.0 // indirect github.com/cespare/xxhash v1.1.0 // indirect - github.com/cespare/xxhash/v2 v2.1.1 // indirect - github.com/charithe/durationcheck v0.0.6 // indirect + github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/charithe/durationcheck v0.0.10 // indirect + github.com/chavacava/garif v0.0.0-20230227094218-b8c73b2037b8 // indirect github.com/coocood/freecache v1.1.1 // indirect - github.com/daixiang0/gci v0.2.8 // indirect + github.com/curioswitch/go-reassign v0.2.0 // indirect + github.com/daixiang0/gci v0.10.1 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/denis-tingajkin/go-header v0.4.2 // indirect - github.com/envoyproxy/protoc-gen-validate v0.3.0-java // indirect + github.com/denis-tingaikin/go-header v0.4.3 // indirect + github.com/envoyproxy/protoc-gen-validate v0.10.0 // indirect github.com/ernesto-jimenez/gogen v0.0.0-20180125220232-d7d4131e6607 // indirect - github.com/esimonov/ifshort v1.0.1 // indirect - github.com/fatih/color v1.10.0 // indirect + github.com/esimonov/ifshort v1.0.4 // indirect + github.com/ettle/strcase v0.1.1 // indirect + github.com/fatih/color v1.15.0 // indirect github.com/fatih/structtag v1.2.0 // indirect + github.com/firefart/nonamedreturns v1.0.4 // indirect github.com/flyteorg/stow v0.3.1 // indirect github.com/form3tech-oss/jwt-go v3.2.2+incompatible // indirect - github.com/fsnotify/fsnotify v1.4.9 // indirect - github.com/fzipp/gocyclo v0.3.1 // indirect + github.com/fsnotify/fsnotify v1.5.4 // indirect + github.com/fzipp/gocyclo v0.6.0 // indirect github.com/ghodss/yaml v1.0.0 // indirect - github.com/go-critic/go-critic v0.5.4 // indirect - github.com/go-logr/logr v0.4.0 // indirect - github.com/go-toolsmith/astcast v1.0.0 // indirect - github.com/go-toolsmith/astcopy v1.0.0 // indirect - github.com/go-toolsmith/astequal v1.0.0 // indirect - github.com/go-toolsmith/astfmt v1.0.0 // indirect - github.com/go-toolsmith/astp v1.0.0 // indirect - github.com/go-toolsmith/strparse v1.0.0 // indirect - github.com/go-toolsmith/typep v1.0.2 // indirect - github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b // indirect + github.com/go-critic/go-critic v0.8.1 // indirect + github.com/go-logr/logr v1.2.4 // indirect + github.com/go-toolsmith/astcast v1.1.0 // indirect + github.com/go-toolsmith/astcopy v1.1.0 // indirect + github.com/go-toolsmith/astequal v1.1.0 // indirect + github.com/go-toolsmith/astfmt v1.1.0 // indirect + github.com/go-toolsmith/astp v1.1.0 // indirect + github.com/go-toolsmith/strparse v1.1.0 // indirect + github.com/go-toolsmith/typep v1.1.0 // indirect + github.com/go-xmlfmt/xmlfmt v1.1.2 // indirect github.com/gobwas/glob v0.2.3 // indirect - github.com/gofrs/flock v0.8.0 // indirect + github.com/gofrs/flock v0.8.1 // indirect github.com/gofrs/uuid v4.2.0+incompatible // indirect github.com/gogo/protobuf v1.3.2 // indirect - github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect - github.com/golang/protobuf v1.4.3 // indirect + github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect + github.com/golang/protobuf v1.5.3 // indirect github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2 // indirect github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a // indirect - github.com/golangci/go-misc v0.0.0-20180628070357-927a3d87b613 // indirect - github.com/golangci/gofmt v0.0.0-20190930125516-244bba706f1a // indirect + github.com/golangci/go-misc v0.0.0-20220329215616-d24fe342adfe // indirect + github.com/golangci/gofmt v0.0.0-20220901101216-f2edd75033f2 // indirect github.com/golangci/lint-1 v0.0.0-20191013205115-297bf364a8e0 // indirect github.com/golangci/maligned v0.0.0-20180506175553-b1d89398deca // indirect - github.com/golangci/misspell v0.3.5 // indirect - github.com/golangci/revgrep v0.0.0-20210208091834-cd28932614b5 // indirect + github.com/golangci/misspell v0.4.0 // indirect + github.com/golangci/revgrep v0.0.0-20220804021717-745bb2f7c2e6 // indirect github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4 // indirect - github.com/google/go-cmp v0.5.4 // indirect - github.com/google/uuid v1.1.2 // indirect - github.com/googleapis/gax-go/v2 v2.0.5 // indirect - github.com/gordonklaus/ineffassign v0.0.0-20210225214923-2e10b2664254 // indirect - github.com/gostaticanalysis/analysisutil v0.4.1 // indirect - github.com/gostaticanalysis/comment v1.4.1 // indirect - github.com/gostaticanalysis/forcetypeassert v0.0.0-20200621232751-01d4955beaa5 // indirect + github.com/google/go-cmp v0.5.9 // indirect + github.com/google/s2a-go v0.1.4 // indirect + github.com/google/uuid v1.3.0 // indirect + github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect + github.com/googleapis/gax-go/v2 v2.11.0 // indirect + github.com/gordonklaus/ineffassign v0.0.0-20230610083614-0e73809eb601 // indirect + github.com/gostaticanalysis/analysisutil v0.7.1 // indirect + github.com/gostaticanalysis/comment v1.4.2 // indirect + github.com/gostaticanalysis/forcetypeassert v0.1.0 // indirect github.com/gostaticanalysis/nilerr v0.1.1 // indirect + github.com/hashicorp/errwrap v1.0.0 // indirect + github.com/hashicorp/go-multierror v1.1.1 // indirect + github.com/hashicorp/go-version v1.6.0 // indirect github.com/hashicorp/hcl v1.0.0 // indirect + github.com/hexops/gotextdiff v1.0.3 // indirect github.com/huandu/xstrings v1.0.0 // indirect github.com/imdario/mergo v0.3.5 // indirect - github.com/inconshreveable/mousetrap v1.0.0 // indirect - github.com/jgautheron/goconst v1.4.0 // indirect - github.com/jingyugao/rowserrcheck v0.0.0-20210130005344-c6a0c12dd98d // indirect + github.com/inconshreveable/mousetrap v1.1.0 // indirect + github.com/jgautheron/goconst v1.5.1 // indirect + github.com/jingyugao/rowserrcheck v1.1.1 // indirect github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect github.com/jmespath/go-jmespath v0.4.0 // indirect - github.com/jstemmer/go-junit-report v0.9.1 // indirect - github.com/julz/importas v0.0.0-20210226073942-60b4fa260dd0 // indirect - github.com/kisielk/errcheck v1.6.0 // indirect + github.com/julz/importas v0.1.0 // indirect + github.com/kisielk/errcheck v1.6.3 // indirect github.com/kisielk/gotool v1.0.0 // indirect - github.com/kulti/thelper v0.4.0 // indirect - github.com/kunwardeep/paralleltest v1.0.2 // indirect - github.com/kyoh86/exportloopref v0.1.8 // indirect - github.com/magefile/mage v1.10.0 // indirect - github.com/magiconair/properties v1.8.4 // indirect - github.com/maratori/testpackage v1.0.1 // indirect - github.com/matoous/godox v0.0.0-20210227103229-6504466cf951 // indirect - github.com/mattn/go-colorable v0.1.8 // indirect - github.com/mattn/go-isatty v0.0.12 // indirect - github.com/mattn/go-runewidth v0.0.7 // indirect + github.com/kkHAIKE/contextcheck v1.1.4 // indirect + github.com/kulti/thelper v0.6.3 // indirect + github.com/kunwardeep/paralleltest v1.0.7 // indirect + github.com/kyoh86/exportloopref v0.1.11 // indirect + github.com/ldez/gomoddirectives v0.2.3 // indirect + github.com/ldez/tagliatelle v0.5.0 // indirect + github.com/leonklingele/grouper v1.1.1 // indirect + github.com/lufeee/execinquery v1.2.1 // indirect + github.com/magiconair/properties v1.8.6 // indirect + github.com/maratori/testableexamples v1.0.0 // indirect + github.com/maratori/testpackage v1.1.1 // indirect + github.com/matoous/godox v0.0.0-20230222163458-006bad1f9d26 // indirect + github.com/mattn/go-colorable v0.1.13 // indirect + github.com/mattn/go-isatty v0.0.17 // indirect + github.com/mattn/go-runewidth v0.0.9 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect github.com/mbilski/exhaustivestruct v1.2.0 // indirect - github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81 // indirect - github.com/mgechev/revive v1.0.3 // indirect + github.com/mgechev/revive v1.3.2 // indirect github.com/mitchellh/go-homedir v1.1.0 // indirect - github.com/mitchellh/mapstructure v1.4.1 // indirect - github.com/moricho/tparallel v0.2.1 // indirect + github.com/mitchellh/mapstructure v1.5.0 // indirect + github.com/moricho/tparallel v0.3.1 // indirect github.com/mwitkow/go-proto-validators v0.0.0-20180403085117-0950a7990007 // indirect - github.com/nakabonne/nestif v0.3.0 // indirect - github.com/nbutton23/zxcvbn-go v0.0.0-20201221231540-e56b841a3c88 // indirect + github.com/nakabonne/nestif v0.3.1 // indirect + github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354 // indirect github.com/ncw/swift v1.0.53 // indirect - github.com/nishanths/exhaustive v0.1.0 // indirect - github.com/nishanths/predeclared v0.2.1 // indirect - github.com/olekukonko/tablewriter v0.0.4 // indirect + github.com/nishanths/exhaustive v0.11.0 // indirect + github.com/nishanths/predeclared v0.2.2 // indirect + github.com/nunnatsa/ginkgolinter v0.12.1 // indirect + github.com/olekukonko/tablewriter v0.0.5 // indirect github.com/pascaldekloe/name v0.0.0-20180628100202-0fd16699aae1 // indirect - github.com/pelletier/go-toml v1.8.1 // indirect - github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d // indirect + github.com/pelletier/go-toml v1.9.5 // indirect + github.com/pelletier/go-toml/v2 v2.0.5 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/polyfloyd/go-errorlint v0.0.0-20201127212506-19bd8db6546f // indirect - github.com/prometheus/client_golang v1.9.0 // indirect + github.com/polyfloyd/go-errorlint v1.4.2 // indirect + github.com/prometheus/client_golang v1.12.1 // indirect github.com/prometheus/client_model v0.2.0 // indirect - github.com/prometheus/common v0.15.0 // indirect - github.com/prometheus/procfs v0.3.0 // indirect + github.com/prometheus/common v0.32.1 // indirect + github.com/prometheus/procfs v0.7.3 // indirect github.com/pseudomuto/protokit v0.2.0 // indirect - github.com/quasilyte/go-ruleguard v0.3.0 // indirect - github.com/quasilyte/regex/syntax v0.0.0-20200407221936-30656e2c4a95 // indirect - github.com/ryancurrah/gomodguard v1.2.0 // indirect - github.com/ryanrolds/sqlclosecheck v0.3.0 // indirect - github.com/sanposhiho/wastedassign v0.1.3 // indirect - github.com/securego/gosec/v2 v2.6.1 // indirect + github.com/quasilyte/go-ruleguard v0.3.19 // indirect + github.com/quasilyte/gogrep v0.5.0 // indirect + github.com/quasilyte/regex/syntax v0.0.0-20210819130434-b3f0c404a727 // indirect + github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567 // indirect + github.com/ryancurrah/gomodguard v1.3.0 // indirect + github.com/ryanrolds/sqlclosecheck v0.4.0 // indirect + github.com/sanposhiho/wastedassign/v2 v2.0.7 // indirect + github.com/sashamelentyev/interfacebloat v1.1.0 // indirect + github.com/sashamelentyev/usestdlibvars v1.23.0 // indirect + github.com/securego/gosec/v2 v2.16.0 // indirect github.com/shazow/go-diff v0.0.0-20160112020656-b6b7b6733b8c // indirect - github.com/sirupsen/logrus v1.8.0 // indirect - github.com/sonatard/noctx v0.0.1 // indirect - github.com/sourcegraph/go-diff v0.6.1 // indirect - github.com/spf13/afero v1.5.1 // indirect - github.com/spf13/cast v1.3.1 // indirect - github.com/spf13/cobra v1.1.3 // indirect + github.com/sirupsen/logrus v1.9.3 // indirect + github.com/sivchari/containedctx v1.0.3 // indirect + github.com/sivchari/nosnakecase v1.7.0 // indirect + github.com/sivchari/tenv v1.7.1 // indirect + github.com/sonatard/noctx v0.0.2 // indirect + github.com/sourcegraph/go-diff v0.7.0 // indirect + github.com/spf13/afero v1.8.2 // indirect + github.com/spf13/cast v1.5.0 // indirect + github.com/spf13/cobra v1.7.0 // indirect github.com/spf13/jwalterweatherman v1.1.0 // indirect github.com/spf13/pflag v1.0.5 // indirect - github.com/spf13/viper v1.7.1 // indirect - github.com/ssgreg/nlreturn/v2 v2.1.0 // indirect - github.com/stretchr/objx v0.3.0 // indirect - github.com/stretchr/testify v1.7.1 // indirect - github.com/subosito/gotenv v1.2.0 // indirect - github.com/tdakkota/asciicheck v0.0.0-20200416200610-e657995f937b // indirect - github.com/tetafro/godot v1.4.4 // indirect - github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94 // indirect - github.com/tomarrell/wrapcheck v0.0.0-20201130113247-1683564d9756 // indirect - github.com/tommy-muehle/go-mnd/v2 v2.3.1 // indirect + github.com/spf13/viper v1.12.0 // indirect + github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect + github.com/stbenjam/no-sprintf-host-port v0.1.1 // indirect + github.com/stretchr/objx v0.5.0 // indirect + github.com/stretchr/testify v1.8.4 // indirect + github.com/subosito/gotenv v1.4.1 // indirect + github.com/t-yuki/gocover-cobertura v0.0.0-20180217150009-aaee18c8195c // indirect + github.com/tdakkota/asciicheck v0.2.0 // indirect + github.com/tetafro/godot v1.4.11 // indirect + github.com/timakin/bodyclose v0.0.0-20230421092635-574207250966 // indirect + github.com/timonwong/loggercheck v0.9.4 // indirect + github.com/tomarrell/wrapcheck/v2 v2.8.1 // indirect + github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect github.com/ultraware/funlen v0.0.3 // indirect - github.com/ultraware/whitespace v0.0.4 // indirect - github.com/uudashr/gocognit v1.0.1 // indirect - go.opencensus.io v0.22.6 // indirect + github.com/ultraware/whitespace v0.0.5 // indirect + github.com/uudashr/gocognit v1.0.6 // indirect + github.com/xen0n/gosmopolitan v1.2.1 // indirect + github.com/yagipy/maintidx v1.0.0 // indirect + github.com/yeya24/promlinter v0.2.0 // indirect + github.com/ykadowak/zerologlint v0.1.2 // indirect + gitlab.com/bosi/decorder v0.2.3 // indirect + go.opencensus.io v0.24.0 // indirect + go.tmz.dev/musttag v0.7.0 // indirect + go.uber.org/atomic v1.7.0 // indirect + go.uber.org/multierr v1.6.0 // indirect + go.uber.org/zap v1.24.0 // indirect golang.org/x/crypto v0.11.0 // indirect - golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect + golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea // indirect + golang.org/x/exp/typeparams v0.0.0-20230224173230-c95f2b4c22f2 // indirect golang.org/x/mod v0.12.0 // indirect golang.org/x/net v0.12.0 // indirect - golang.org/x/oauth2 v0.0.0-20210126194326-f9ce19ea3013 // indirect + golang.org/x/oauth2 v0.8.0 // indirect + golang.org/x/sync v0.3.0 // indirect golang.org/x/sys v0.10.0 // indirect golang.org/x/text v0.11.0 // indirect golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect golang.org/x/tools v0.11.1 // indirect - google.golang.org/api v0.38.0 // indirect + golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect + google.golang.org/api v0.126.0 // indirect google.golang.org/appengine v1.6.7 // indirect - google.golang.org/genproto v0.0.0-20210126160654-44e461bb6506 // indirect - google.golang.org/grpc v1.35.0 // indirect - google.golang.org/protobuf v1.25.0 // indirect - gopkg.in/ini.v1 v1.62.0 // indirect + google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect + google.golang.org/grpc v1.55.0 // indirect + google.golang.org/protobuf v1.30.0 // indirect + gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect - gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect - honnef.co/go/tools v0.1.2 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect + honnef.co/go/tools v0.4.3 // indirect k8s.io/apimachinery v0.20.2 // indirect k8s.io/client-go v0.0.0-20210217172142-7279fc64d847 // indirect k8s.io/klog/v2 v2.5.0 // indirect - mvdan.cc/gofumpt v0.1.0 // indirect + mvdan.cc/gofumpt v0.5.0 // indirect mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed // indirect mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b // indirect - mvdan.cc/unparam v0.0.0-20210104141923-aac4ce9116a7 // indirect + mvdan.cc/unparam v0.0.0-20221223090309-7455f1af531d // indirect ) replace github.com/pseudomuto/protoc-gen-doc => github.com/flyteorg/protoc-gen-doc v1.4.2 diff --git a/boilerplate/flyte/golang_support_tools/go.sum b/boilerplate/flyte/golang_support_tools/go.sum index c9b663bf4..4cc434803 100644 --- a/boilerplate/flyte/golang_support_tools/go.sum +++ b/boilerplate/flyte/golang_support_tools/go.sum @@ -1,10 +1,13 @@ -4d63.com/gochecknoglobals v0.0.0-20201008074935-acfc0b28355a h1:wFEQiK85fRsEVF0CRrPAos5LoAryUsIX1kPW/WrIqFw= -4d63.com/gochecknoglobals v0.0.0-20201008074935-acfc0b28355a/go.mod h1:wfdC5ZjKSPr7CybKEcgJhUOgeAQW1+7WcyK8OvUilfo= +4d63.com/gocheckcompilerdirectives v1.2.1 h1:AHcMYuw56NPjq/2y615IGg2kYkBdTvOaojYCBcRE7MA= +4d63.com/gocheckcompilerdirectives v1.2.1/go.mod h1:yjDJSxmDTtIHHCqX0ufRYZDL6vQtMG7tJdKVeWwsqvs= +4d63.com/gochecknoglobals v0.2.1 h1:1eiorGsgHOFOuoOiJDy2psSrQbRdIHrlge0IJIkUgDc= +4d63.com/gochecknoglobals v0.2.1/go.mod h1:KRE8wtJB3CXCsb1xy421JfTHIIbmT3U5ruxw2Qu8fSU= cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= +cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= @@ -15,20 +18,25 @@ cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKV cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= -cloud.google.com/go v0.66.0/go.mod h1:dgqGAjKCDxyhGTtC9dAREQGUJpkceNm1yt590Qno0Ko= cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= -cloud.google.com/go v0.75.0 h1:XgtDnVJRCPEUG21gjFiRPz4zI1Mjg16R+NYQjfmU4XY= cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= +cloud.google.com/go v0.110.2 h1:sdFPBr6xG9/wkBbfhmUz/JmZC7X6LavQgcrVINrKiVA= +cloud.google.com/go v0.110.2/go.mod h1:k04UEeEtb6ZBRTv3dZz4CeJC3jKGxyhl0sAiVVquxiw= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= +cloud.google.com/go/compute v1.19.3 h1:DcTwsFgGev/wV5+q8o2fzgcHOaac+DKGC91ZlvpsQds= +cloud.google.com/go/compute v1.19.3/go.mod h1:qxvISKp/gYnXkSAD1ppcSOveRAmzxicEv/JlizULFrI= +cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY= +cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk= +cloud.google.com/go/iam v1.1.2 h1:gacbrBdWcoVmGLozRuStX45YKvJtzIjJdAolzUs1sm4= +cloud.google.com/go/iam v1.1.2/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= @@ -38,9 +46,18 @@ cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0Zeo cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -cloud.google.com/go/storage v1.12.0 h1:4y3gHptW1EHVtcPAVE0eBBlFuGqEejTTG3KdIE0lUX4= -cloud.google.com/go/storage v1.12.0/go.mod h1:fFLk2dp2oAhDz8QFKwqrjdJvxSp/W2g7nillojlL5Ho= +cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= +cloud.google.com/go/storage v1.29.0 h1:6weCgzRvMg7lzuUurI4697AqIRPU1SvzHhynwpW31jI= +cloud.google.com/go/storage v1.29.0/go.mod h1:4puEjyTKnku6gfKoTfNOU/W+a9JyuVNxjpS5GBrB8h4= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= +github.com/4meepo/tagalign v1.2.2 h1:kQeUTkFTaBRtd/7jm8OKJl9iHk0gAO+TDFPHGSna0aw= +github.com/4meepo/tagalign v1.2.2/go.mod h1:Q9c1rYMZJc9dPRkbQPpcBNCLEmY2njbAsXhQOZFE2dE= +github.com/Abirdcfly/dupword v0.0.11 h1:z6v8rMETchZXUIuHxYNmlUAuKuB21PeaSymTed16wgU= +github.com/Abirdcfly/dupword v0.0.11/go.mod h1:wH8mVGuf3CP5fsBTkfWwwwKTjDnVVCxtU8d8rgeVYXA= +github.com/Antonboom/errname v0.1.10 h1:RZ7cYo/GuZqjr1nuJLNe8ZH+a+Jd9DaZzttWzak9Bls= +github.com/Antonboom/errname v0.1.10/go.mod h1:xLeiCIrvVNpUtsN0wxAh05bNIZpqE22/qDMnTBTttiA= +github.com/Antonboom/nilnil v0.1.5 h1:X2JAdEVcbPaOom2TUa1FxZ3uyuUlex0XMLGYMemu6l0= +github.com/Antonboom/nilnil v0.1.5/go.mod h1:I24toVuBKhfP5teihGWctrRiPbRKHwZIFOvc6v3HZXk= github.com/Azure/azure-sdk-for-go v62.3.0+incompatible h1:Ctfsn9UoA/BB4HMYQlbPPgNXdX0tZ4tmb85+KFb2+RE= github.com/Azure/azure-sdk-for-go v62.3.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= github.com/Azure/azure-sdk-for-go/sdk/azcore v0.21.1 h1:qoVeMsc9/fh/yhxVaA0obYjVH/oI/ihrOoMwsLS9KSA= @@ -66,14 +83,16 @@ github.com/Azure/go-autorest/logger v0.2.0 h1:e4RVHVZKC5p6UANLJHkM4OfR1UKZPj8Wt8 github.com/Azure/go-autorest/logger v0.2.0/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8= github.com/Azure/go-autorest/tracing v0.6.0 h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUMfuitfgcfuo= github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU= -github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8= +github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 h1:sHglBQTwgx+rWPdisA5ynNEsoARbiCBOyGcJM4/OzsM= github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24/go.mod h1:4UJr5HIiMZrwgkSPdsjy2uOQExX/WEILpIrO9UPGuXs= github.com/EngHabu/mockery v0.0.0-20220405200825-3f76291311cf h1:M7A2Tn3R8rVgsoJHHKkmkpiNOItys4GxJj6JytRjdDg= github.com/EngHabu/mockery v0.0.0-20220405200825-3f76291311cf/go.mod h1:Kya4Y46gyq/3TEyAzeNe5UkCk+W9apy5KbuX+5KnZ6M= -github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= +github.com/GaijinEntertainment/go-exhaustruct/v2 v2.3.0 h1:+r1rSv4gvYn0wmRjC8X7IAzX8QezqtFV9m0MUHFJgts= +github.com/GaijinEntertainment/go-exhaustruct/v2 v2.3.0/go.mod h1:b3g59n2Y+T5xmcxJL+UEG2f8cQploZm1mR/v6BW0mU0= github.com/Masterminds/semver v1.4.2/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y= github.com/Masterminds/semver v1.5.0 h1:H65muMkzWKEuNDnfl9d70GUjFniHKHRbFPGBuZ3QEww= github.com/Masterminds/semver v1.5.0/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y= @@ -82,129 +101,118 @@ github.com/Masterminds/sprig v2.15.0+incompatible/go.mod h1:y6hNFY5UBTIWBxnzTeuN github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ= github.com/OneOfOne/xxhash v1.2.2 h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/OpenPeeDeeP/depguard v1.0.1 h1:VlW4R6jmBIv3/u1JNlawEvJMM4J+dPORPaZasQee8Us= -github.com/OpenPeeDeeP/depguard v1.0.1/go.mod h1:xsIw86fROiiwelg+jB2uM9PiKihMMmUx/1V+TNhjQvM= +github.com/OpenPeeDeeP/depguard/v2 v2.1.0 h1:aQl70G173h/GZYhWf36aE5H0KaujXfVMnn/f1kSDVYY= +github.com/OpenPeeDeeP/depguard/v2 v2.1.0/go.mod h1:PUBgk35fX4i7JDmwzlJwJ+GMe6NfO1723wmJMgPThNQ= github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= -github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= -github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= -github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= -github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5/go.mod h1:SkGFH1ia65gfNATL8TAiHDNxPzPdmEL5uirI2Uyuz6c= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= +github.com/alexkohler/nakedret/v2 v2.0.2 h1:qnXuZNvv3/AxkAb22q/sEsEpcA99YxLFACDtEw9TPxE= +github.com/alexkohler/nakedret/v2 v2.0.2/go.mod h1:2b8Gkk0GsOrqQv/gPWjNLDSKwG8I5moSXG1K4VIBcTQ= github.com/alexkohler/prealloc v1.0.0 h1:Hbq0/3fJPQhNkN0dR95AVrr6R7tou91y0uHG5pOcUuw= github.com/alexkohler/prealloc v1.0.0/go.mod h1:VetnK3dIgFBBKmg0YnD9F9x6Icjd+9cvfHR56wJVlKE= +github.com/alingse/asasalint v0.0.11 h1:SFwnQXJ49Kx/1GghOFz1XGqHYKp21Kq1nHad/0WQRnw= +github.com/alingse/asasalint v0.0.11/go.mod h1:nCaoMhw7a9kSJObvQyVzNTPBDbNpdocqrSP7t/cW5+I= github.com/alvaroloes/enumer v1.1.2 h1:5khqHB33TZy1GWCO/lZwcroBFh7u+0j40T83VUbfAMY= github.com/alvaroloes/enumer v1.1.2/go.mod h1:FxrjvuXoDAx9isTJrv4c+T410zFi0DtXIT0m65DJ+Wo= -github.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y= +github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/aokoli/goutils v1.0.1 h1:7fpzNGoJ3VA8qcrm++XEE1QUe0mIwNeLa02Nwq7RDkg= github.com/aokoli/goutils v1.0.1/go.mod h1:SijmP0QR8LtwsmDs8Yii5Z/S4trXFGFC2oO5g9DP+DQ= -github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= -github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= -github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= -github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= -github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= -github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a/go.mod h1:DAHtR1m6lCRdSC2Tm3DSWRPvIPr6xNKyeHdqDQSQT+A= github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/ashanbrown/forbidigo v1.1.0 h1:SJOPJyqsrVL3CvR0veFZFmIM0fXS/Kvyikqvfphd0Z4= -github.com/ashanbrown/forbidigo v1.1.0/go.mod h1:vVW7PEdqEFqapJe95xHkTfB1+XvZXBFg8t0sG2FIxmI= -github.com/ashanbrown/makezero v0.0.0-20201205152432-7b7cdbb3025a h1:/U9tbJzDRof4fOR51vwzWdIBsIH6R2yU0KG1MBRM2Js= -github.com/ashanbrown/makezero v0.0.0-20201205152432-7b7cdbb3025a/go.mod h1:oG9Dnez7/ESBqc4EdrdNlryeo7d0KcW1ftXHm7nU/UU= -github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= -github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/ashanbrown/forbidigo v1.5.3 h1:jfg+fkm/snMx+V9FBwsl1d340BV/99kZGv5jN9hBoXk= +github.com/ashanbrown/forbidigo v1.5.3/go.mod h1:Y8j9jy9ZYAEHXdu723cUlraTqbzjKF1MUyfOKL+AjcU= +github.com/ashanbrown/makezero v1.1.1 h1:iCQ87C0V0vSyO+M9E/FZYbu65auqH0lnsOkf5FcB28s= +github.com/ashanbrown/makezero v1.1.1/go.mod h1:i1bJLCRSCHOcOa9Y6MyF2FTfMZMFdHvxKHxgO5Z1axI= github.com/aws/aws-sdk-go v1.37.1 h1:BTHmuN+gzhxkvU9sac2tZvaY0gV9ihbHw+KxZOecYvY= github.com/aws/aws-sdk-go v1.37.1/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= -github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= +github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= -github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84= -github.com/bkielbasa/cyclop v1.2.0 h1:7Jmnh0yL2DjKfw28p86YTd/B4lRGcNuu12sKE35sM7A= -github.com/bkielbasa/cyclop v1.2.0/go.mod h1:qOI0yy6A7dYC4Zgsa72Ppm9kONl0RoIlPbzot9mhmeI= -github.com/bombsimon/wsl/v3 v3.2.0 h1:x3QUbwW7tPGcCNridvqmhSRthZMTALnkg5/1J+vaUas= -github.com/bombsimon/wsl/v3 v3.2.0/go.mod h1:st10JtZYLE4D5sC7b8xV4zTKZwAQjCH/Hy2Pm1FNZIc= -github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= -github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= +github.com/bkielbasa/cyclop v1.2.1 h1:AeF71HZDob1P2/pRm1so9cd1alZnrpyc4q2uP2l0gJY= +github.com/bkielbasa/cyclop v1.2.1/go.mod h1:K/dT/M0FPAiYjBgQGau7tz+3TMh4FWAEqlMhzFWCrgM= +github.com/blizzy78/varnamelen v0.8.0 h1:oqSblyuQvFsW1hbBHh1zfwrKe3kcSj0rnXkKzsQ089M= +github.com/blizzy78/varnamelen v0.8.0/go.mod h1:V9TzQZ4fLJ1DSrjVDfl89H7aMnTvKkApdHeyESmyR7k= +github.com/bombsimon/wsl/v3 v3.4.0 h1:RkSxjT3tmlptwfgEgTgU+KYKLI35p/tviNXNXiL2aNU= +github.com/bombsimon/wsl/v3 v3.4.0/go.mod h1:KkIB+TXkqy6MvK9BDZVbZxKNYsE1/oLRJbIFtf14qqo= +github.com/breml/bidichk v0.2.4 h1:i3yedFWWQ7YzjdZJHnPo9d/xURinSq3OM+gyM43K4/8= +github.com/breml/bidichk v0.2.4/go.mod h1:7Zk0kRFt1LIZxtQdl9W9JwGAcLTTkOs+tN7wuEYGJ3s= +github.com/breml/errchkjson v0.3.1 h1:hlIeXuspTyt8Y/UmP5qy1JocGNR00KQHgfaNtRAjoxQ= +github.com/breml/errchkjson v0.3.1/go.mod h1:XroxrzKjdiutFyW3nWhw34VGg7kiMsDQox73yWCGI2U= +github.com/butuzov/ireturn v0.2.0 h1:kCHi+YzC150GE98WFuZQu9yrTn6GEydO2AuPLbTgnO4= +github.com/butuzov/ireturn v0.2.0/go.mod h1:Wh6Zl3IMtTpaIKbmwzqi6olnM9ptYQxxVacMsOEFPoc= +github.com/butuzov/mirror v1.1.0 h1:ZqX54gBVMXu78QLoiqdwpl2mgmoOJTk7s4p4o+0avZI= +github.com/butuzov/mirror v1.1.0/go.mod h1:8Q0BdQU6rC6WILDiBM60DBfvV78OLJmMmixe7GF45AE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= -github.com/cespare/xxhash/v2 v2.1.1 h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/charithe/durationcheck v0.0.6 h1:Tsy7EppNow2pDC0jN7Hsmcb6mHd71ZbI1vFissRBtc0= -github.com/charithe/durationcheck v0.0.6/go.mod h1:SSbRIBVfMjCi/kEB6K65XEA83D6prSM8ap1UCpNKtgg= +github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= +github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/charithe/durationcheck v0.0.10 h1:wgw73BiocdBDQPik+zcEoBG/ob8uyBHf2iyoHGPf5w4= +github.com/charithe/durationcheck v0.0.10/go.mod h1:bCWXb7gYRysD1CU3C+u4ceO49LoGOY1C1L6uouGNreQ= +github.com/chavacava/garif v0.0.0-20230227094218-b8c73b2037b8 h1:W9o46d2kbNL06lq7UNDPV0zYLzkrde/bjIqO02eoll0= +github.com/chavacava/garif v0.0.0-20230227094218-b8c73b2037b8/go.mod h1:gakxgyXaaPkxvLw1XQxNGK4I37ys9iBRzNUx/B7pUCo= github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927 h1:SKI1/fuSdodxmNNyVBR8d7X/HuLnRpvvFO0AgyQk764= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= -github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= -github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= +github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= +github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/coocood/freecache v1.1.1 h1:uukNF7QKCZEdZ9gAV7WQzvh0SbjwdMF6m3x3rxEkaPc= github.com/coocood/freecache v1.1.1/go.mod h1:OKrEjkGVoxZhyWAJoeFi5BMLUJm2Tit0kpGkIr7NGYY= -github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= -github.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= -github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= -github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= -github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= -github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/daixiang0/gci v0.2.8 h1:1mrIGMBQsBu0P7j7m1M8Lb+ZeZxsZL+jyGX4YoMJJpg= -github.com/daixiang0/gci v0.2.8/go.mod h1:+4dZ7TISfSmqfAGv59ePaHfNzgGtIkHAhhdKggP1JAc= +github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/curioswitch/go-reassign v0.2.0 h1:G9UZyOcpk/d7Gd6mqYgd8XYWFMw/znxwGDUstnC9DIo= +github.com/curioswitch/go-reassign v0.2.0/go.mod h1:x6OpXuWvgfQaMGks2BZybTngWjT84hqJfKoO8Tt/Roc= +github.com/daixiang0/gci v0.10.1 h1:eheNA3ljF6SxnPD/vE4lCBusVHmV3Rs3dkKvFrJ7MR0= +github.com/daixiang0/gci v0.10.1/go.mod h1:xtHP9N7AHdNvtRNfcx9gwTDfw7FRJx4bZUsiEfiNNAI= github.com/davecgh/go-spew v0.0.0-20161028175848-04cdfd42973b/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= 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/denis-tingajkin/go-header v0.4.2 h1:jEeSF4sdv8/3cT/WY8AgDHUoItNSoEZ7qg9dX7pc218= -github.com/denis-tingajkin/go-header v0.4.2/go.mod h1:eLRHAVXzE5atsKAnNRDB90WHCFFnBUn4RN0nRcs1LJA= -github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= -github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= +github.com/denis-tingaikin/go-header v0.4.3 h1:tEaZKAlqql6SKCY++utLmkPLd6K8IBM20Ha7UVm+mtU= +github.com/denis-tingaikin/go-header v0.4.3/go.mod h1:0wOCWuN71D5qIgE2nz9KrKmuYBAC2Mra5RassOIQ2/c= github.com/dnaeon/go-vcr v1.1.0/go.mod h1:M7tiix8f0r6mKKJ3Yq/kqU1OYf3MnfmBWVbPx/yU9ko= github.com/dnaeon/go-vcr v1.2.0 h1:zHCHvJYTMh1N7xnV7zf1m1GPBF9Ad0Jk/whtQ1663qI= github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ= github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= -github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= -github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= -github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= -github.com/envoyproxy/go-control-plane v0.6.9/go.mod h1:SBwIajubJHhxtWwsL9s8ss4safvEdbitLhGGK48rN6g= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/envoyproxy/protoc-gen-validate v0.3.0-java h1:bV5JGEB1ouEzZa0hgVDFFiClrUEuGWRaAc/3mxR2QK0= github.com/envoyproxy/protoc-gen-validate v0.3.0-java/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= +github.com/envoyproxy/protoc-gen-validate v0.10.0 h1:oIfnZFdC0YhpNNEX+SuIqko4cqqVZeN9IGTrhZje83Y= +github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= github.com/ernesto-jimenez/gogen v0.0.0-20180125220232-d7d4131e6607 h1:cTavhURetDkezJCvxFggiyLeP40Mrk/TtVg2+ycw1Es= github.com/ernesto-jimenez/gogen v0.0.0-20180125220232-d7d4131e6607/go.mod h1:Cg4fM0vhYWOZdgM7RIOSTRNIc8/VT7CXClC3Ni86lu4= -github.com/esimonov/ifshort v1.0.1 h1:p7hlWD15c9XwvwxYg3W7f7UZHmwg7l9hC0hBiF95gd0= -github.com/esimonov/ifshort v1.0.1/go.mod h1:yZqNJUrNn20K8Q9n2CrjTKYyVEmX209Hgu+M1LBpeZE= +github.com/esimonov/ifshort v1.0.4 h1:6SID4yGWfRae/M7hkVDVVyppy8q/v9OuxNdmjLQStBA= +github.com/esimonov/ifshort v1.0.4/go.mod h1:Pe8zjlRrJ80+q2CxHLfEOfTwxCZ4O+MuhcHcfgNWTk0= +github.com/ettle/strcase v0.1.1 h1:htFueZyVeE1XNnMEfbqp5r67qAN/4r6ya1ysq8Q+Zcw= +github.com/ettle/strcase v0.1.1/go.mod h1:hzDLsPC7/lwKyBOywSHEP89nt2pDgdy+No1NBA9o9VY= github.com/evanphx/json-patch v4.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= -github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= -github.com/fatih/color v1.10.0 h1:s36xzo75JdqLaaWoiEHk767eHiwo0598uUxyfiPkDsg= -github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM= +github.com/fatih/color v1.15.0 h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs= +github.com/fatih/color v1.15.0/go.mod h1:0h5ZqXfHYED7Bhv2ZJamyIOUej9KtShiJESRwBDUSsw= github.com/fatih/structtag v1.2.0 h1:/OdNE99OxoI/PqaW/SuSK9uxxT3f/tcSZgon/ssNSx4= github.com/fatih/structtag v1.2.0/go.mod h1:mBJUNpUnHmRKrKlQQlmCrh5PuhftFbNv8Ys4/aAZl94= +github.com/firefart/nonamedreturns v1.0.4 h1:abzI1p7mAEPYuR4A+VLKn4eNDOycjYo2phmY9sfv40Y= +github.com/firefart/nonamedreturns v1.0.4/go.mod h1:TDhe/tjI1BXo48CmYbUduTV7BdIga8MAO/xbKdcVsGI= github.com/flyteorg/flytestdlib v0.4.16 h1:r4dCPUOqoE9xCAhOw9KDB7O6cBoCxyEtepIWYcj93H0= github.com/flyteorg/flytestdlib v0.4.16/go.mod h1:WA5Y4hrcgD0ybGOKJVOQ4sP8q7NLRV+S5SWOlH0axgM= github.com/flyteorg/protoc-gen-doc v1.4.2 h1:Otw0F+RHaPQ8XlpzhLLgjsCMcrAIcMO01Zh+ALe3rrE= @@ -213,32 +221,32 @@ github.com/flyteorg/stow v0.3.1 h1:cBMbWl03Gsy5KoA5mutUYTuYpqtT7Pb8+ANGCLnmFEs= github.com/flyteorg/stow v0.3.1/go.mod h1:HBld7ud0i4khMHwJjkO8v+NSP7ddKa/ruhf4I8fliaA= github.com/form3tech-oss/jwt-go v3.2.2+incompatible h1:TcekIExNqud5crz4xD2pavyTgWiPvpYe4Xau31I0PRk= github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= -github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4= -github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20= +github.com/frankban/quicktest v1.14.4 h1:g2rn0vABPOOXmZUj+vbmUp0lPoXEMuhTpIluN0XL9UY= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= -github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= -github.com/fzipp/gocyclo v0.3.1 h1:A9UeX3HJSXTBzvHzhqoYVuE0eAhe+aM8XBCCwsPMZOc= -github.com/fzipp/gocyclo v0.3.1/go.mod h1:DJHO6AUmbdqj2ET4Z9iArSuwWgYDRryYt2wASxc7x3E= +github.com/fsnotify/fsnotify v1.5.4 h1:jRbGcIw6P2Meqdwuo0H1p6JVLbL5DHKAKlYndzMwVZI= +github.com/fsnotify/fsnotify v1.5.4/go.mod h1:OVB6XrOHzAwXMpEM7uPOzcehqUV2UqJxmVXmkdnm1bU= +github.com/fzipp/gocyclo v0.6.0 h1:lsblElZG7d3ALtGMx9fmxeTKZaLLpU8mET09yN4BBLo= +github.com/fzipp/gocyclo v0.6.0/go.mod h1:rXPyn8fnlpa0R2csP/31uerbiVBugk5whMdlyaLkLoA= github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/go-critic/go-critic v0.5.4 h1:fPNMqImVjELN6Du7NVVuvKA4cgASNmc7e4zSYQCOnv8= -github.com/go-critic/go-critic v0.5.4/go.mod h1:cjB4YGw+n/+X8gREApej7150Uyy1Tg8If6F2XOAUXNE= +github.com/go-critic/go-critic v0.8.1 h1:16omCF1gN3gTzt4j4J6fKI/HnRojhEp+Eks6EuKw3vw= +github.com/go-critic/go-critic v0.8.1/go.mod h1:kpzXl09SIJX1cr9TB/g/sAG+eFEl7ZS9f9cqvZtyNl0= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o= +github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas= github.com/go-logr/logr v0.2.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= -github.com/go-logr/logr v0.4.0 h1:K7/B1jt6fIBQVd4Owv2MqGQClcgf0R266+7C/QjRcLc= github.com/go-logr/logr v0.4.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= -github.com/go-ole/go-ole v1.2.4/go.mod h1:XCwSNxSkXRo4vlyPy93sltvi/qJq0jqQhjqQNIwKuxM= +github.com/go-logr/logr v1.2.4 h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ= +github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-openapi/jsonpointer v0.19.2/go.mod h1:3akKfEdA7DF1sugOqz1dVQHBcuDBPKZGEoHC/NkiQRg= github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= github.com/go-openapi/jsonreference v0.19.2/go.mod h1:jMjeRr2HHw6nAVajTXJ4eiUwohSTlpa0o73RUL1owJc= @@ -246,48 +254,43 @@ github.com/go-openapi/jsonreference v0.19.3/go.mod h1:rjx6GuL8TTa9VaixXglHmQmIL9 github.com/go-openapi/spec v0.19.3/go.mod h1:FpwSN1ksY1eteniUU7X0N/BgJ7a4WvBFVA8Lj9mJglo= github.com/go-openapi/swag v0.19.2/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/go-toolsmith/astcast v1.0.0 h1:JojxlmI6STnFVG9yOImLeGREv8W2ocNUM+iOhR6jE7g= -github.com/go-toolsmith/astcast v1.0.0/go.mod h1:mt2OdQTeAQcY4DQgPSArJjHCcOwlX+Wl/kwN+LbLGQ4= -github.com/go-toolsmith/astcopy v1.0.0 h1:OMgl1b1MEpjFQ1m5ztEO06rz5CUd3oBv9RF7+DyvdG8= -github.com/go-toolsmith/astcopy v1.0.0/go.mod h1:vrgyG+5Bxrnz4MZWPF+pI4R8h3qKRjjyvV/DSez4WVQ= -github.com/go-toolsmith/astequal v1.0.0 h1:4zxD8j3JRFNyLN46lodQuqz3xdKSrur7U/sr0SDS/gQ= -github.com/go-toolsmith/astequal v1.0.0/go.mod h1:H+xSiq0+LtiDC11+h1G32h7Of5O3CYFJ99GVbS5lDKY= -github.com/go-toolsmith/astfmt v1.0.0 h1:A0vDDXt+vsvLEdbMFJAUBI/uTbRw1ffOPnxsILnFL6k= -github.com/go-toolsmith/astfmt v1.0.0/go.mod h1:cnWmsOAuq4jJY6Ct5YWlVLmcmLMn1JUPuQIHCY7CJDw= -github.com/go-toolsmith/astinfo v0.0.0-20180906194353-9809ff7efb21/go.mod h1:dDStQCHtmZpYOmjRP/8gHHnCCch3Zz3oEgCdZVdtweU= -github.com/go-toolsmith/astp v1.0.0 h1:alXE75TXgcmupDsMK1fRAy0YUzLzqPVvBKoyWV+KPXg= -github.com/go-toolsmith/astp v1.0.0/go.mod h1:RSyrtpVlfTFGDYRbrjyWP1pYu//tSFcvdYrA8meBmLI= -github.com/go-toolsmith/pkgload v1.0.0 h1:4DFWWMXVfbcN5So1sBNW9+yeiMqLFGl1wFLTL5R0Tgg= -github.com/go-toolsmith/pkgload v1.0.0/go.mod h1:5eFArkbO80v7Z0kdngIxsRXRMTaX4Ilcwuh3clNrQJc= -github.com/go-toolsmith/strparse v1.0.0 h1:Vcw78DnpCAKlM20kSbAyO4mPfJn/lyYA4BJUDxe2Jb4= +github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI= +github.com/go-toolsmith/astcast v1.1.0 h1:+JN9xZV1A+Re+95pgnMgDboWNVnIMMQXwfBwLRPgSC8= +github.com/go-toolsmith/astcast v1.1.0/go.mod h1:qdcuFWeGGS2xX5bLM/c3U9lewg7+Zu4mr+xPwZIB4ZU= +github.com/go-toolsmith/astcopy v1.1.0 h1:YGwBN0WM+ekI/6SS6+52zLDEf8Yvp3n2seZITCUBt5s= +github.com/go-toolsmith/astcopy v1.1.0/go.mod h1:hXM6gan18VA1T/daUEHCFcYiW8Ai1tIwIzHY6srfEAw= +github.com/go-toolsmith/astequal v1.0.3/go.mod h1:9Ai4UglvtR+4up+bAD4+hCj7iTo4m/OXVTSLnCyTAx4= +github.com/go-toolsmith/astequal v1.1.0 h1:kHKm1AWqClYn15R0K1KKE4RG614D46n+nqUQ06E1dTw= +github.com/go-toolsmith/astequal v1.1.0/go.mod h1:sedf7VIdCL22LD8qIvv7Nn9MuWJruQA/ysswh64lffQ= +github.com/go-toolsmith/astfmt v1.1.0 h1:iJVPDPp6/7AaeLJEruMsBUlOYCmvg0MoCfJprsOmcco= +github.com/go-toolsmith/astfmt v1.1.0/go.mod h1:OrcLlRwu0CuiIBp/8b5PYF9ktGVZUjlNMV634mhwuQ4= +github.com/go-toolsmith/astp v1.1.0 h1:dXPuCl6u2llURjdPLLDxJeZInAeZ0/eZwFJmqZMnpQA= +github.com/go-toolsmith/astp v1.1.0/go.mod h1:0T1xFGz9hicKs8Z5MfAqSUitoUYS30pDMsRVIDHs8CA= +github.com/go-toolsmith/pkgload v1.2.2 h1:0CtmHq/02QhxcF7E9N5LIFcYFsMR5rdovfqTtRKkgIk= github.com/go-toolsmith/strparse v1.0.0/go.mod h1:YI2nUKP9YGZnL/L1/DLFBfixrcjslWct4wyljWhSRy8= -github.com/go-toolsmith/typep v1.0.0/go.mod h1:JSQCQMUPdRlMZFswiq3TGpNp1GMktqkR2Ns5AIQkATU= -github.com/go-toolsmith/typep v1.0.2 h1:8xdsa1+FSIH/RhEkgnD1j2CJOy5mNllW1Q9tRiYwvlk= -github.com/go-toolsmith/typep v1.0.2/go.mod h1:JSQCQMUPdRlMZFswiq3TGpNp1GMktqkR2Ns5AIQkATU= -github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b h1:khEcpUM4yFcxg4/FHQWkvVRmgijNXRfzkIDHh23ggEo= -github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b/go.mod h1:aUCEOzzezBEjDBbFBoSiya/gduyIiWYRP6CnSFIV8AM= +github.com/go-toolsmith/strparse v1.1.0 h1:GAioeZUK9TGxnLS+qfdqNbA4z0SSm5zVNtCQiyP2Bvw= +github.com/go-toolsmith/strparse v1.1.0/go.mod h1:7ksGy58fsaQkGQlY8WVoBFNyEPMGuJin1rfoPS4lBSQ= +github.com/go-toolsmith/typep v1.1.0 h1:fIRYDyF+JywLfqzyhdiHzRop/GQDxxNhLGQ6gFUNHus= +github.com/go-toolsmith/typep v1.1.0/go.mod h1:fVIw+7zjdsMxDA3ITWnH1yOiw1rnTQKCsF/sk2H/qig= +github.com/go-xmlfmt/xmlfmt v1.1.2 h1:Nea7b4icn8s57fTx1M5AI4qQT5HEM3rVUO8MuE6g80U= +github.com/go-xmlfmt/xmlfmt v1.1.2/go.mod h1:aUCEOzzezBEjDBbFBoSiya/gduyIiWYRP6CnSFIV8AM= github.com/gobwas/glob v0.2.3 h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y= github.com/gobwas/glob v0.2.3/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8= -github.com/gofrs/flock v0.8.0 h1:MSdYClljsF3PbENUUEx85nkWfJSGfzYI9yEBZOJz6CY= -github.com/gofrs/flock v0.8.0/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= +github.com/gofrs/flock v0.8.1 h1:+gYjHKf32LDeiEEFhQaotPbLuUXjY5ZqxKgXy7n59aw= +github.com/gofrs/flock v0.8.1/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= github.com/gofrs/uuid v4.2.0+incompatible h1:yyYWMnhkhrKwwr8gAOcOCYxOOscHgDS9yZgBrnJfGa0= github.com/gofrs/uuid v4.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= -github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e h1:1r7pUrabqp18hOBcwBwiTsbnFeTZHV9eER/QT5JVZxY= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE= +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= @@ -308,27 +311,29 @@ github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:W github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/protobuf v1.4.3 h1:JjCZWpVbqXDqFVmTfYWEVTMIYrL/NPdPSCHPJ0T/raM= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= +github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2 h1:23T5iq8rbUYlhpt5DB4XJkc6BU31uODLD1o1gKvZmD0= github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2/go.mod h1:k9Qvh+8juN+UKMCS/3jFtGICgW8O96FVaZsaxdzDkR4= github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a h1:w8hkcTqaFpzKqonE9uMCefW1WDie15eSP/4MssdenaM= github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a/go.mod h1:ryS0uhF+x9jgbj/N71xsEqODy9BN81/GonCZiOzirOk= -github.com/golangci/go-misc v0.0.0-20180628070357-927a3d87b613 h1:9kfjN3AdxcbsZBf8NjltjWihK2QfBBBZuv91cMFfDHw= -github.com/golangci/go-misc v0.0.0-20180628070357-927a3d87b613/go.mod h1:SyvUF2NxV+sN8upjjeVYr5W7tyxaT1JVtvhKhOn2ii8= -github.com/golangci/gofmt v0.0.0-20190930125516-244bba706f1a h1:iR3fYXUjHCR97qWS8ch1y9zPNsgXThGwjKPrYfqMPks= -github.com/golangci/gofmt v0.0.0-20190930125516-244bba706f1a/go.mod h1:9qCChq59u/eW8im404Q2WWTrnBUQKjpNYKMbU4M7EFU= -github.com/golangci/golangci-lint v1.38.0 h1:hgZsLRzZrjhpp44Ak+fhXNzgrbDF39ETf22a+Jd3fJQ= -github.com/golangci/golangci-lint v1.38.0/go.mod h1:Knp/sd5ATrVp7EOzWzwIIFH+c8hUfpW+oOQb8NvdZDo= +github.com/golangci/go-misc v0.0.0-20220329215616-d24fe342adfe h1:6RGUuS7EGotKx6J5HIP8ZtyMdiDscjMLfRBSPuzVVeo= +github.com/golangci/go-misc v0.0.0-20220329215616-d24fe342adfe/go.mod h1:gjqyPShc/m8pEMpk0a3SeagVb0kaqvhscv+i9jI5ZhQ= +github.com/golangci/gofmt v0.0.0-20220901101216-f2edd75033f2 h1:amWTbTGqOZ71ruzrdA+Nx5WA3tV1N0goTspwmKCQvBY= +github.com/golangci/gofmt v0.0.0-20220901101216-f2edd75033f2/go.mod h1:9wOXstvyDRshQ9LggQuzBCGysxs3b6Uo/1MvYCR2NMs= +github.com/golangci/golangci-lint v1.53.3 h1:CUcRafczT4t1F+mvdkUm6KuOpxUZTl0yWN/rSU6sSMo= +github.com/golangci/golangci-lint v1.53.3/go.mod h1:W4Gg3ONq6p3Jl+0s/h9Gr0j7yEgHJWWZO2bHl2tBUXM= github.com/golangci/lint-1 v0.0.0-20191013205115-297bf364a8e0 h1:MfyDlzVjl1hoaPzPD4Gpb/QgoRfSBR0jdhwGyAWwMSA= github.com/golangci/lint-1 v0.0.0-20191013205115-297bf364a8e0/go.mod h1:66R6K6P6VWk9I95jvqGxkqJxVWGFy9XlDwLwVz1RCFg= github.com/golangci/maligned v0.0.0-20180506175553-b1d89398deca h1:kNY3/svz5T29MYHubXix4aDDuE3RWHkPvopM/EDv/MA= github.com/golangci/maligned v0.0.0-20180506175553-b1d89398deca/go.mod h1:tvlJhZqDe4LMs4ZHD0oMUlt9G2LWuDGoisJTBzLMV9o= -github.com/golangci/misspell v0.3.5 h1:pLzmVdl3VxTOncgzHcvLOKirdvcx/TydsClUQXTehjo= -github.com/golangci/misspell v0.3.5/go.mod h1:dEbvlSfYbMQDtrpRMQU675gSDLDNa8sCPPChZ7PhiVA= -github.com/golangci/revgrep v0.0.0-20210208091834-cd28932614b5 h1:c9Mqqrm/Clj5biNaG7rABrmwUq88nHh0uABo2b/WYmc= -github.com/golangci/revgrep v0.0.0-20210208091834-cd28932614b5/go.mod h1:LK+zW4MpyytAWQRz0M4xnzEk50lSvqDQKfx304apFkY= +github.com/golangci/misspell v0.4.0 h1:KtVB/hTK4bbL/S6bs64rYyk8adjmh1BygbBiaAiX+a0= +github.com/golangci/misspell v0.4.0/go.mod h1:W6O/bwV6lGDxUCChm2ykw9NQdd5bYd1Xkjo88UcWyJc= +github.com/golangci/revgrep v0.0.0-20220804021717-745bb2f7c2e6 h1:DIPQnGy2Gv2FSA4B/hh8Q7xx3B7AIDk3DAMeHclH1vQ= +github.com/golangci/revgrep v0.0.0-20220804021717-745bb2f7c2e6/go.mod h1:0AKcRCkMoKvUvlf89F6O7H2LYdhr1zBh736mBItOdRs= github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4 h1:zwtduBRr5SSWhqsYNgcuWO2kFlpdOZbP0+yRjmvPGys= github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4/go.mod h1:Izgrg8RkN3rCIMLGE9CyYmU9pY2Jer6DgANEnZ/L/cQ= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= @@ -342,15 +347,19 @@ github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.4 h1:L8R9j+yAqZuZjsqh/z+F1NCffTKKLShY6zXTItVIZ8M= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= +github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/martian v2.1.0+incompatible h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.1.0 h1:wCKgOCHuUEVfsaQLpPSJb7VdYCdTVZQAuOdYm1yc/60= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= @@ -358,395 +367,303 @@ github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200905233945-acf8798be1f7/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 h1:yAJXTCF9TqKcTiHJAE8dj7HMvPfh66eeA2JYW7eFpSE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/s2a-go v0.1.4 h1:1kZ/sQM3srePvKs3tXAvQzo66XfcReoqFpIpIccE7Oc= +github.com/google/s2a-go v0.1.4/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= github.com/google/uuid v0.0.0-20161128191214-064e2069ce9c/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.1.2 h1:EVhdT+1Kseyi1/pUmXKaFxYsDNy9RQYkMWRH68J/W7Y= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= +github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/enterprise-certificate-proxy v0.2.3 h1:yk9/cqRKtT9wXZSsRH9aurXEpJX+U6FLtpYTdC3R06k= +github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= -github.com/googleapis/gax-go/v2 v2.0.5 h1:sjZBwGj9Jlw33ImPtvFviGYvseOtDM7hkSKB7+Tv3SM= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= +github.com/googleapis/gax-go/v2 v2.11.0 h1:9V9PWXEsWnPpQhu/PeQIkS4eGzMlTLGgt80cUUI8Ki4= +github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI= github.com/googleapis/gnostic v0.4.1/go.mod h1:LRhVm6pbyptWbWbuZ38d1eyptfvIytN3ir6b65WBswg= -github.com/gookit/color v1.3.6/go.mod h1:R3ogXq2B9rTbXoSHJ1HyUVAZ3poOJHpd9nQmyGZsfvQ= -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/gordonklaus/ineffassign v0.0.0-20210225214923-2e10b2664254 h1:Nb2aRlC404yz7gQIfRZxX9/MLvQiqXyiBTJtgAy6yrI= -github.com/gordonklaus/ineffassign v0.0.0-20210225214923-2e10b2664254/go.mod h1:M9mZEtGIsR1oDaZagNPNG9iq9n2HrhZ17dsXk73V3Lw= -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= -github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= +github.com/gordonklaus/ineffassign v0.0.0-20230610083614-0e73809eb601 h1:mrEEilTAUmaAORhssPPkxj84TsHrPMLBGW2Z4SoTxm8= +github.com/gordonklaus/ineffassign v0.0.0-20230610083614-0e73809eb601/go.mod h1:Qcp2HIAYhR7mNUVSIxZww3Guk4it82ghYcEXIAk+QT0= github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/gostaticanalysis/analysisutil v0.0.0-20190318220348-4088753ea4d3/go.mod h1:eEOZF4jCKGi+aprrirO9e7WKB3beBRtWgqGunKl6pKE= -github.com/gostaticanalysis/analysisutil v0.0.3/go.mod h1:eEOZF4jCKGi+aprrirO9e7WKB3beBRtWgqGunKl6pKE= -github.com/gostaticanalysis/analysisutil v0.1.0/go.mod h1:dMhHRU9KTiDcuLGdy87/2gTR8WruwYZrKdRq9m1O6uw= -github.com/gostaticanalysis/analysisutil v0.4.1 h1:/7clKqrVfiVwiBQLM0Uke4KvXnO6JcCTS7HwF2D6wG8= -github.com/gostaticanalysis/analysisutil v0.4.1/go.mod h1:18U/DLpRgIUd459wGxVHE0fRgmo1UgHDcbw7F5idXu0= -github.com/gostaticanalysis/comment v1.3.0/go.mod h1:xMicKDx7XRXYdVwY9f9wQpDJVnqWxw9wCauCMKp+IBI= -github.com/gostaticanalysis/comment v1.4.1 h1:xHopR5L2lRz6OsjH4R2HG5wRhW9ySl3FsHIvi5pcXwc= +github.com/gostaticanalysis/analysisutil v0.7.1 h1:ZMCjoue3DtDWQ5WyU16YbjbQEQ3VuzwxALrpYd+HeKk= +github.com/gostaticanalysis/analysisutil v0.7.1/go.mod h1:v21E3hY37WKMGSnbsw2S/ojApNWb6C1//mXO48CXbVc= github.com/gostaticanalysis/comment v1.4.1/go.mod h1:ih6ZxzTHLdadaiSnF5WY3dxUoXfXAlTaRzuaNDlSado= -github.com/gostaticanalysis/forcetypeassert v0.0.0-20200621232751-01d4955beaa5 h1:rx8127mFPqXXsfPSo8BwnIU97MKFZc89WHAHt8PwDVY= -github.com/gostaticanalysis/forcetypeassert v0.0.0-20200621232751-01d4955beaa5/go.mod h1:qZEedyP/sY1lTGV1uJ3VhWZ2mqag3IkWsDHVbplHXak= +github.com/gostaticanalysis/comment v1.4.2 h1:hlnx5+S2fY9Zo9ePo4AhgYsYHbM2+eAv8m/s1JiCd6Q= +github.com/gostaticanalysis/comment v1.4.2/go.mod h1:KLUTGDv6HOCotCH8h2erHKmpci2ZoR8VPu34YA2uzdM= +github.com/gostaticanalysis/forcetypeassert v0.1.0 h1:6eUflI3DiGusXGK6X7cCcIgVCpZ2CiZ1Q7jl6ZxNV70= +github.com/gostaticanalysis/forcetypeassert v0.1.0/go.mod h1:qZEedyP/sY1lTGV1uJ3VhWZ2mqag3IkWsDHVbplHXak= github.com/gostaticanalysis/nilerr v0.1.1 h1:ThE+hJP0fEp4zWLkWHWcRyI2Od0p7DlgYG3Uqrmrcpk= github.com/gostaticanalysis/nilerr v0.1.1/go.mod h1:wZYb6YI5YAxxq0i1+VJbY0s2YONW0HU0GPE3+5PWN4A= +github.com/gostaticanalysis/testutil v0.3.1-0.20210208050101-bfb5c8eec0e4/go.mod h1:D+FIZ+7OahH3ePw/izIEeH5I06eKs1IKI4Xr64/Am3M= +github.com/gostaticanalysis/testutil v0.4.0 h1:nhdCmubdmDF6VEatUNjgUZBJKWRqugoISdUv3PPQgHY= github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= -github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= -github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= -github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q= -github.com/hashicorp/consul/api v1.3.0/go.mod h1:MmDNSzIMUjNpY/mQ398R4bk2FnqQLoPndWW5VkKPlCE= -github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= -github.com/hashicorp/consul/sdk v0.3.0/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= +github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= +github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= -github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= -github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= -github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU= -github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU= -github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4= -github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= -github.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90= +github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= +github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= +github.com/hashicorp/go-version v1.2.1/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= +github.com/hashicorp/go-version v1.6.0 h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mOkIeek= +github.com/hashicorp/go-version v1.6.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= 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/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= -github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= -github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= -github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= +github.com/hexops/gotextdiff v1.0.3 h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUqJM= +github.com/hexops/gotextdiff v1.0.3/go.mod h1:pSWU5MAI3yDq+fZBTazCSJysOMbxWL1BSow5/V2vxeg= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/huandu/xstrings v1.0.0 h1:pO2K/gKgKaat5LdpAhxhluX2GPQMaI3W5FUz/I/UnWk= github.com/huandu/xstrings v1.0.0/go.mod h1:4qWG/gcEcfX4z/mBDHJ++3ReCw9ibxbsNJbcucJdbSo= -github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/imdario/mergo v0.3.4/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= github.com/imdario/mergo v0.3.5 h1:JboBksRwiiAJWvIYJVo46AfV+IAIKZpfrSzVKj42R4Q= github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= -github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= -github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= -github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= -github.com/jgautheron/goconst v1.4.0 h1:hp9XKUpe/MPyDamUbfsrGpe+3dnY2whNK4EtB86dvLM= -github.com/jgautheron/goconst v1.4.0/go.mod h1:aAosetZ5zaeC/2EfMeRswtxUFBpe2Hr7HzkgX4fanO4= -github.com/jingyugao/rowserrcheck v0.0.0-20210130005344-c6a0c12dd98d h1:BYDZtm80MLJpTWalkwHxNnIbO/2akQHERcfLq4TbIWE= -github.com/jingyugao/rowserrcheck v0.0.0-20210130005344-c6a0c12dd98d/go.mod h1:/EZlaYCnEX24i7qdVhT9du5JrtFWYRQr67bVgR7JJC8= +github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= +github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= +github.com/jgautheron/goconst v1.5.1 h1:HxVbL1MhydKs8R8n/HE5NPvzfaYmQJA3o879lE4+WcM= +github.com/jgautheron/goconst v1.5.1/go.mod h1:aAosetZ5zaeC/2EfMeRswtxUFBpe2Hr7HzkgX4fanO4= +github.com/jingyugao/rowserrcheck v1.1.1 h1:zibz55j/MJtLsjP1OF4bSdgXxwL1b+Vn7Tjzq7gFzUs= +github.com/jingyugao/rowserrcheck v1.1.1/go.mod h1:4yvlZSDb3IyDTUZJUmpZfm2Hwok+Dtp+nu2qOq+er9c= github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af h1:KA9BjwUk7KlCh6S9EAGWBt1oExIUv9WyNCiRz5amv48= github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af/go.mod h1:HEWGJkRDzjJY2sqdDwxccsGicWEf9BQOZsq2tV+xzM0= -github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= github.com/jmespath/go-jmespath/internal/testify v1.5.1 h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8= github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= -github.com/jmoiron/sqlx v1.2.0/go.mod h1:1FEQNm3xlJgrMD+FBdI9+xvCksHtbpVBBw5dYhBSsks= -github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= -github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= -github.com/jstemmer/go-junit-report v0.9.1 h1:6QPYqodiu3GuPL+7mfx+NwDdp2eTkp9IfEUpgAwUN0o= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= -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/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= -github.com/julz/importas v0.0.0-20210226073942-60b4fa260dd0 h1:exZBMUS/kB/AhxSj/9lIIxhqkCpXXdKScjFWQUTbi3M= -github.com/julz/importas v0.0.0-20210226073942-60b4fa260dd0/go.mod h1:oSFU2R4XK/P7kNBrnL/FEQlDGN1/6WoxXEjSSXO0DV0= -github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= +github.com/julz/importas v0.1.0 h1:F78HnrsjY3cR7j0etXy5+TU1Zuy7Xt08X/1aJnH5xXY= +github.com/julz/importas v0.1.0/go.mod h1:oSFU2R4XK/P7kNBrnL/FEQlDGN1/6WoxXEjSSXO0DV0= github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= -github.com/kisielk/errcheck v1.6.0 h1:YTDO4pNy7AUN/021p+JGHycQyYNIyMoenM1YDVK6RlY= -github.com/kisielk/errcheck v1.6.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= +github.com/kisielk/errcheck v1.6.3 h1:dEKh+GLHcWm2oN34nMvDzn1sqI0i0WxPvrgiJA5JuM8= +github.com/kisielk/errcheck v1.6.3/go.mod h1:nXw/i/MfnvRHqXa7XXmQMUB0oNFGuBrNI8d8NLy0LPw= github.com/kisielk/gotool v1.0.0 h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/compress v1.10.7/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.11.0/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= +github.com/kkHAIKE/contextcheck v1.1.4 h1:B6zAaLhOEEcjvUgIYEqystmnFk1Oemn8bvJhbt0GMb8= +github.com/kkHAIKE/contextcheck v1.1.4/go.mod h1:1+i/gWqokIa+dm31mqGLZhZJ7Uh44DJGZVmr6QRBNJg= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= -github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/kulti/thelper v0.4.0 h1:2Nx7XbdbE/BYZeoip2mURKUdtHQRuy6Ug+wR7K9ywNM= -github.com/kulti/thelper v0.4.0/go.mod h1:vMu2Cizjy/grP+jmsvOFDx1kYP6+PD1lqg4Yu5exl2U= -github.com/kunwardeep/paralleltest v1.0.2 h1:/jJRv0TiqPoEy/Y8dQxCFJhD56uS/pnvtatgTZBHokU= -github.com/kunwardeep/paralleltest v1.0.2/go.mod h1:ZPqNm1fVHPllh5LPVujzbVz1JN2GhLxSfY+oqUsvG30= -github.com/kyoh86/exportloopref v0.1.8 h1:5Ry/at+eFdkX9Vsdw3qU4YkvGtzuVfzT4X7S77LoN/M= -github.com/kyoh86/exportloopref v0.1.8/go.mod h1:1tUcJeiioIs7VWe5gcOObrux3lb66+sBqGZrRkMwPgg= -github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= -github.com/lib/pq v1.9.0/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= -github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= -github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= -github.com/logrusorgru/aurora v0.0.0-20181002194514-a7b3b318ed4e/go.mod h1:7rIyQOR62GCctdiQpZ/zOJlFyk6y+94wXzv6RNZgaR4= -github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ= -github.com/magefile/mage v1.10.0 h1:3HiXzCUY12kh9bIuyXShaVe529fJfyqoVM42o/uom2g= -github.com/magefile/mage v1.10.0/go.mod h1:z5UZb/iS3GoOSn0JgWuiw7dxlurVYTu+/jHXqQg881A= -github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/magiconair/properties v1.8.4 h1:8KGKTcQQGm0Kv7vEbKFErAoAOFyyacLStRtQSeYtvkY= -github.com/magiconair/properties v1.8.4/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= +github.com/kulti/thelper v0.6.3 h1:ElhKf+AlItIu+xGnI990no4cE2+XaSu1ULymV2Yulxs= +github.com/kulti/thelper v0.6.3/go.mod h1:DsqKShOvP40epevkFrvIwkCMNYxMeTNjdWL4dqWHZ6I= +github.com/kunwardeep/paralleltest v1.0.7 h1:2uCk94js0+nVNQoHZNLBkAR1DQJrVzw6T0RMzJn55dQ= +github.com/kunwardeep/paralleltest v1.0.7/go.mod h1:2C7s65hONVqY7Q5Efj5aLzRCNLjw2h4eMc9EcypGjcY= +github.com/kyoh86/exportloopref v0.1.11 h1:1Z0bcmTypkL3Q4k+IDHMWTcnCliEZcaPiIe0/ymEyhQ= +github.com/kyoh86/exportloopref v0.1.11/go.mod h1:qkV4UF1zGl6EkF1ox8L5t9SwyeBAZ3qLMd6up458uqA= +github.com/ldez/gomoddirectives v0.2.3 h1:y7MBaisZVDYmKvt9/l1mjNCiSA1BVn34U0ObUcJwlhA= +github.com/ldez/gomoddirectives v0.2.3/go.mod h1:cpgBogWITnCfRq2qGoDkKMEVSaarhdBr6g8G04uz6d0= +github.com/ldez/tagliatelle v0.5.0 h1:epgfuYt9v0CG3fms0pEgIMNPuFf/LpPIfjk4kyqSioo= +github.com/ldez/tagliatelle v0.5.0/go.mod h1:rj1HmWiL1MiKQuOONhd09iySTEkUuE/8+5jtPYz9xa4= +github.com/leonklingele/grouper v1.1.1 h1:suWXRU57D4/Enn6pXR0QVqqWWrnJ9Osrz+5rjt8ivzU= +github.com/leonklingele/grouper v1.1.1/go.mod h1:uk3I3uDfi9B6PeUjsCKi6ndcf63Uy7snXgR4yDYQVDY= +github.com/lufeee/execinquery v1.2.1 h1:hf0Ems4SHcUGBxpGN7Jz78z1ppVkP/837ZlETPCEtOM= +github.com/lufeee/execinquery v1.2.1/go.mod h1:EC7DrEKView09ocscGHC+apXMIaorh4xqSxS/dy8SbM= +github.com/magiconair/properties v1.8.6 h1:5ibWZ6iY0NctNGWo87LalDlEZ6R41TqbbDamhfG/Qzo= +github.com/magiconair/properties v1.8.6/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/maratori/testpackage v1.0.1 h1:QtJ5ZjqapShm0w5DosRjg0PRlSdAdlx+W6cCKoALdbQ= -github.com/maratori/testpackage v1.0.1/go.mod h1:ddKdw+XG0Phzhx8BFDTKgpWP4i7MpApTE5fXSKAqwDU= -github.com/matoous/godox v0.0.0-20210227103229-6504466cf951 h1:pWxk9e//NbPwfxat7RXkts09K+dEBJWakUWwICVqYbA= -github.com/matoous/godox v0.0.0-20210227103229-6504466cf951/go.mod h1:1BELzlh859Sh1c6+90blK8lbYy0kwQf1bYlBhBysy1s= -github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= -github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= -github.com/mattn/go-colorable v0.1.8 h1:c1ghPdyEDarC70ftn0y+A/Ee++9zz8ljHG1b13eJ0s8= -github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= -github.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY= -github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= -github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= -github.com/mattn/go-runewidth v0.0.7 h1:Ei8KR0497xHyKJPAv59M1dkC+rOZCMBJ+t3fZ+twI54= -github.com/mattn/go-runewidth v0.0.7/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= -github.com/mattn/go-sqlite3 v1.9.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= -github.com/mattn/goveralls v0.0.2/go.mod h1:8d1ZMHsd7fW6IRPKQh46F2WRpyib5/X4FOpevwGNQEw= +github.com/maratori/testableexamples v1.0.0 h1:dU5alXRrD8WKSjOUnmJZuzdxWOEQ57+7s93SLMxb2vI= +github.com/maratori/testableexamples v1.0.0/go.mod h1:4rhjL1n20TUTT4vdh3RDqSizKLyXp7K2u6HgraZCGzE= +github.com/maratori/testpackage v1.1.1 h1:S58XVV5AD7HADMmD0fNnziNHqKvSdDuEKdPD1rNTU04= +github.com/maratori/testpackage v1.1.1/go.mod h1:s4gRK/ym6AMrqpOa/kEbQTV4Q4jb7WeLZzVhVVVOQMc= +github.com/matoous/godox v0.0.0-20230222163458-006bad1f9d26 h1:gWg6ZQ4JhDfJPqlo2srm/LN17lpybq15AryXIRcWYLE= +github.com/matoous/godox v0.0.0-20230222163458-006bad1f9d26/go.mod h1:1BELzlh859Sh1c6+90blK8lbYy0kwQf1bYlBhBysy1s= +github.com/matryer/is v1.4.0 h1:sosSmIWwkYITGrxZ25ULNDeKiMNzFSr4V/eqBQP0PeE= +github.com/matryer/is v1.4.0/go.mod h1:8I/i5uYgLzgsgEloJE1U6xx5HkBQpAZvepWuujKwMRU= +github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= +github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= +github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/mattn/go-isatty v0.0.17 h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPng= +github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/mattn/go-runewidth v0.0.9 h1:Lm995f3rfxdpd6TSmuVCHVb/QhupuXlYr8sCI/QdE+0= +github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/mbilski/exhaustivestruct v1.2.0 h1:wCBmUnSYufAHO6J4AVWY6ff+oxWxsVFrwgOdMUQePUo= github.com/mbilski/exhaustivestruct v1.2.0/go.mod h1:OeTBVxQWoEmB2J2JCHmXWPJ0aksxSUOUy+nvtVEfzXc= -github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81 h1:QASJXOGm2RZ5Ardbc86qNFvby9AqkLDibfChMtAg5QM= -github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81/go.mod h1:KQ7+USdGKfpPjXk4Ga+5XxQM4Lm4e3gAogrreFAYpOg= -github.com/mgechev/revive v1.0.3 h1:z3FL6IFFN3JKzHYHD8O1ExH9g/4lAGJ5x1+9rPZgsFg= -github.com/mgechev/revive v1.0.3/go.mod h1:POGGZagSo/0frdr7VeAifzS5Uka0d0GPiM35MsTO8nE= -github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= -github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= -github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mgechev/revive v1.3.2 h1:Wb8NQKBaALBJ3xrrj4zpwJwqwNA6nDpyJSEQWcCka6U= +github.com/mgechev/revive v1.3.2/go.mod h1:UCLtc7o5vg5aXCwdUTU1kEBQ1v+YXPAkYDIDXbrs5I0= github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/go-ps v1.0.0/go.mod h1:J4lOc8z8yJs6vUwklHw2XEIiT4z4C40KtWVN3nvg8Pg= -github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= -github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= -github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= -github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag= -github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= +github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/moby/spdystream v0.2.0/go.mod h1:f7i0iNDQJ059oMTcWxx8MA/zKFIuD/lY+0GqbN2Wy8c= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5/go.mod h1:caMODM3PzxT8aQXRPkAt8xlV/e7d7w8GM5g0fa5F0D8= -github.com/moricho/tparallel v0.2.1 h1:95FytivzT6rYzdJLdtfn6m1bfFJylOJK41+lgv/EHf4= -github.com/moricho/tparallel v0.2.1/go.mod h1:fXEIZxG2vdfl0ZF8b42f5a78EhjjD5mX8qUplsoSU4k= -github.com/mozilla/tls-observatory v0.0.0-20201209171846-0547674fceff/go.mod h1:SrKMQvPiws7F7iqYp8/TX+IhxCYhzr6N/1yb8cwHsGk= +github.com/moricho/tparallel v0.3.1 h1:fQKD4U1wRMAYNngDonW5XupoB/ZGJHdpzrWqgyg9krA= +github.com/moricho/tparallel v0.3.1/go.mod h1:leENX2cUv7Sv2qDgdi0D0fCftN8fRC67Bcn8pqzeYNI= github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/mwitkow/go-proto-validators v0.0.0-20180403085117-0950a7990007 h1:28i1IjGcx8AofiB4N3q5Yls55VEaitzuEPkFJEVgGkA= github.com/mwitkow/go-proto-validators v0.0.0-20180403085117-0950a7990007/go.mod h1:m2XC9Qq0AlmmVksL6FktJCdTYyLk7V3fKyp0sl1yWQo= github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= -github.com/nakabonne/nestif v0.3.0 h1:+yOViDGhg8ygGrmII72nV9B/zGxY188TYpfolntsaPw= -github.com/nakabonne/nestif v0.3.0/go.mod h1:dI314BppzXjJ4HsCnbo7XzrJHPszZsjnk5wEBSYHI2c= -github.com/nats-io/jwt v0.3.0/go.mod h1:fRYCDE99xlTsqUzISS1Bi75UBJ6ljOJQOAAu5VglpSg= -github.com/nats-io/jwt v0.3.2/go.mod h1:/euKqTS1ZD+zzjYrY7pseZrTtWQSjujC7xjPc8wL6eU= -github.com/nats-io/nats-server/v2 v2.1.2/go.mod h1:Afk+wRZqkMQs/p45uXdrVLuab3gwv3Z8C4HTBu8GD/k= -github.com/nats-io/nats.go v1.9.1/go.mod h1:ZjDU1L/7fJ09jvUSRVBR2e7+RnLiiIQyqyzEE/Zbp4w= -github.com/nats-io/nkeys v0.1.0/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= -github.com/nats-io/nkeys v0.1.3/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= -github.com/nbutton23/zxcvbn-go v0.0.0-20201221231540-e56b841a3c88 h1:o+O3Cd1HO9CTgxE3/C8p5I5Y4C0yYWbF8d4IkfOLtcQ= -github.com/nbutton23/zxcvbn-go v0.0.0-20201221231540-e56b841a3c88/go.mod h1:KSVJerMDfblTH7p5MZaTt+8zaT2iEk3AkVb9PQdZuE8= +github.com/nakabonne/nestif v0.3.1 h1:wm28nZjhQY5HyYPx+weN3Q65k6ilSBxDb8v5S81B81U= +github.com/nakabonne/nestif v0.3.1/go.mod h1:9EtoZochLn5iUprVDmDjqGKPofoUEBL8U4Ngq6aY7OE= +github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354 h1:4kuARK6Y6FxaNu/BnU2OAaLF86eTVhP2hjTB6iMvItA= +github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354/go.mod h1:KSVJerMDfblTH7p5MZaTt+8zaT2iEk3AkVb9PQdZuE8= github.com/ncw/swift v1.0.53 h1:luHjjTNtekIEvHg5KdAFIBaH7bWfNkefwFnpDffSIks= github.com/ncw/swift v1.0.53/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM= -github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= -github.com/nishanths/exhaustive v0.1.0 h1:kVlMw8h2LHPMGUVqUj6230oQjjTMFjwcZrnkhXzFfl8= -github.com/nishanths/exhaustive v0.1.0/go.mod h1:S1j9110vxV1ECdCudXRkeMnFQ/DQk9ajLT0Uf2MYZQQ= -github.com/nishanths/predeclared v0.2.1 h1:1TXtjmy4f3YCFjTxRd8zcFHOmoUir+gp0ESzjFzG2sw= -github.com/nishanths/predeclared v0.2.1/go.mod h1:HvkGJcA3naj4lOwnFXFDkFxVtSqQMB9sbB1usJ+xjQE= -github.com/nxadm/tail v1.4.4 h1:DQuhQpB1tVlglWS2hLQ5OV6B5r8aGxSrPc5Qo6uTN78= -github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= -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/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= -github.com/olekukonko/tablewriter v0.0.4 h1:vHD/YYe1Wolo78koG299f7V/VAS08c6IpCLn+Ejf/w8= -github.com/olekukonko/tablewriter v0.0.4/go.mod h1:zq6QwlOf5SlnkVbMSr5EoBv3636FWnp+qbPhuoO21uA= +github.com/nishanths/exhaustive v0.11.0 h1:T3I8nUGhl/Cwu5Z2hfc92l0e04D2GEW6e0l8pzda2l0= +github.com/nishanths/exhaustive v0.11.0/go.mod h1:RqwDsZ1xY0dNdqHho2z6X+bgzizwbLYOWnZbbl2wLB4= +github.com/nishanths/predeclared v0.2.2 h1:V2EPdZPliZymNAn79T8RkNApBjMmVKh5XRpLm/w98Vk= +github.com/nishanths/predeclared v0.2.2/go.mod h1:RROzoN6TnGQupbC+lqggsOlcgysk3LMK/HI84Mp280c= +github.com/nunnatsa/ginkgolinter v0.12.1 h1:vwOqb5Nu05OikTXqhvLdHCGcx5uthIYIl0t79UVrERQ= +github.com/nunnatsa/ginkgolinter v0.12.1/go.mod h1:AK8Ab1PypVrcGUusuKD8RDcl2KgsIwvNaaxAlyHSzso= +github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec= +github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= 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= +github.com/onsi/ginkgo v1.11.0 h1:JAKSXpt1YjtLA7YpPiqO9ss6sNXEsPfSGdwN0UHqzrw= github.com/onsi/ginkgo v1.11.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= -github.com/onsi/ginkgo v1.14.2 h1:8mVmC9kjFFmA8H4pKMUhcblgifdkOIXPvbhN1T36q1M= -github.com/onsi/ginkgo v1.14.2/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= +github.com/onsi/ginkgo/v2 v2.9.4 h1:xR7vG4IXt5RWx6FfIjyAtsoMAtnc3C/rFXBBd2AjZwE= github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= -github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= -github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= -github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= -github.com/onsi/gomega v1.10.4 h1:NiTx7EEvBzu9sFOD1zORteLSt3o8gnlvZZwSE9TnY9U= -github.com/onsi/gomega v1.10.4/go.mod h1:g/HbgYopi++010VEqkFgJHKC09uJiW9UkXvMUuKHUCQ= -github.com/op/go-logging v0.0.0-20160315200505-970db520ece7/go.mod h1:HzydrMdWErDVzsI23lYNej1Htcns9BCg93Dk0bBINWk= -github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492/go.mod h1:Ngi6UdF0k5OKD5t5wlmGhe/EDKPoUM3BXZSSfIuJbis= -github.com/opentracing/basictracer-go v1.0.0/go.mod h1:QfBfYuafItcjQuMwinw9GhYKwFXS9KnPs5lxoYwgW74= -github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= -github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= -github.com/openzipkin-contrib/zipkin-go-opentracing v0.4.5/go.mod h1:/wsWhb9smxSfWAKL3wpBW7V8scJMt8N8gnaMCS9E/cA= -github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw= -github.com/openzipkin/zipkin-go v0.2.1/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= -github.com/openzipkin/zipkin-go v0.2.2/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= -github.com/pact-foundation/pact-go v1.0.4/go.mod h1:uExwJY4kCzNPcHRj+hCR/HBbOOIwwtUjcrb0b5/5kLM= -github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= +github.com/onsi/gomega v1.27.6 h1:ENqfyGeS5AX/rlXDd/ETokDz93u0YufY1Pgxuy/PvWE= +github.com/otiai10/copy v1.2.0 h1:HvG945u96iNadPoG2/Ja2+AUJeW5YuFQMixq9yirC+k= +github.com/otiai10/copy v1.2.0/go.mod h1:rrF5dJ5F0t/EWSYODDu4j9/vEeYHMkc8jt0zJChqQWw= +github.com/otiai10/curr v0.0.0-20150429015615-9b4961190c95/go.mod h1:9qAhocn7zKJG+0mI8eUu6xqkFDYS2kb2saOteoSB3cE= +github.com/otiai10/curr v1.0.0/go.mod h1:LskTG5wDwr8Rs+nNQ+1LlxRjAtTZZjtJW4rMXl6j4vs= +github.com/otiai10/mint v1.3.0/go.mod h1:F5AjcsTsWUqX+Na9fpHb52P8pcRX2CI6A3ctIT91xUo= +github.com/otiai10/mint v1.3.1/go.mod h1:/yxELlJQ0ufhjUwhshSj+wFjZ78CnZ48/1wtmBH1OTc= github.com/pascaldekloe/name v0.0.0-20180628100202-0fd16699aae1 h1:/I3lTljEEDNYLho3/FUB7iD/oc2cEFgVmbHzV+O0PtU= github.com/pascaldekloe/name v0.0.0-20180628100202-0fd16699aae1/go.mod h1:eD5JxqMiuNYyFNmyY9rkJ/slN8y59oEu4Ei7F8OoKWQ= -github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= -github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/pelletier/go-toml v1.8.1 h1:1Nf83orprkJyknT6h7zbuEGUEjcyVlCxSUGTENmNCRM= -github.com/pelletier/go-toml v1.8.1/go.mod h1:T2/BmBdy8dvIRq1a/8aqjN41wvWlN4lrapLU/GW4pbc= -github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= +github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8= +github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= +github.com/pelletier/go-toml/v2 v2.0.5 h1:ipoSadvV8oGUjnUbMub59IDPPwfxF694nG/jwbMiyQg= +github.com/pelletier/go-toml/v2 v2.0.5/go.mod h1:OMHamSCAODeSsVrwwvcJOaoN0LIUIaFVNZzmWyNfXas= github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= -github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d h1:CdDQnGF8Nq9ocOS/xlSptM1N3BbrA6/kmaep5ggwaIA= -github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d/go.mod h1:3OzsM7FXDQlpCiw2j81fOmAwQLnZnLGXVKUzeKQXIAw= -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/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= 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/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= -github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= +github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/polyfloyd/go-errorlint v0.0.0-20201127212506-19bd8db6546f h1:xAw10KgJqG5NJDfmRqJ05Z0IFblKumjtMeyiOLxj3+4= -github.com/polyfloyd/go-errorlint v0.0.0-20201127212506-19bd8db6546f/go.mod h1:wi9BfjxjF/bwiZ701TzmfKu6UKC357IOAtNr0Td0Lvw= -github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= +github.com/polyfloyd/go-errorlint v1.4.2 h1:CU+O4181IxFDdPH6t/HT7IiDj1I7zxNi1RIUxYwn8d0= +github.com/polyfloyd/go-errorlint v1.4.2/go.mod h1:k6fU/+fQe38ednoZS51T7gSIGQW1y94d6TkSr35OzH8= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= -github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= -github.com/prometheus/client_golang v1.3.0/go.mod h1:hJaj2vgQTGQmVCsAACORcieXFeDPbaTKGT+JTgUa3og= github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= -github.com/prometheus/client_golang v1.9.0 h1:Rrch9mh17XcxvEu9D9DEpb4isxjGBtcevQjKvxPRQIU= -github.com/prometheus/client_golang v1.9.0/go.mod h1:FqZLKOZnGdFAhOK4nqGHa7D66IdsO+O441Eve7ptJDU= +github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= +github.com/prometheus/client_golang v1.12.1 h1:ZiaPsmm9uiBeaSMRznKsCDNtPCS0T3JVDGF+06gjBzk= +github.com/prometheus/client_golang v1.12.1/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= -github.com/prometheus/common v0.15.0 h1:4fgOnadei3EZvgRwxJ7RMpG1k1pOZth5Pc13tyspaKM= -github.com/prometheus/common v0.15.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s= +github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= +github.com/prometheus/common v0.32.1 h1:hWIdL3N2HoUx3B8j3YN9mWor0qhY/NlEKZEaXxuIRh4= +github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.2.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.3.0 h1:Uehi/mxLK0eiUc0H0++5tpMGTexB8wZ598MIgU8VpDM= -github.com/prometheus/procfs v0.3.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= +github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= +github.com/prometheus/procfs v0.7.3 h1:4jVXhlkAyzOScmCkXBTOLRLTz8EeU+eyjrwB/EPq0VU= +github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/pseudomuto/protokit v0.2.0 h1:hlnBDcy3YEDXH7kc9gV+NLaN0cDzhDvD1s7Y6FZ8RpM= github.com/pseudomuto/protokit v0.2.0/go.mod h1:2PdH30hxVHsup8KpBTOXTBeMVhJZVio3Q8ViKSAXT0Q= -github.com/quasilyte/go-consistent v0.0.0-20190521200055-c6f3937de18c/go.mod h1:5STLWrekHfjyYwxBRVRXNOSewLJ3PWfDJd1VyTS21fI= -github.com/quasilyte/go-ruleguard v0.3.0 h1:A3OfpsK2ynOTbz/KMi62qWzignjGCOZVChATSf4P+A0= -github.com/quasilyte/go-ruleguard v0.3.0/go.mod h1:p2miAhLp6fERzFNbcuQ4bevXs8rgK//uCHsUDkumITg= -github.com/quasilyte/go-ruleguard/dsl v0.0.0-20210106184943-e47d54850b18/go.mod h1:KeCP03KrjuSO0H1kTuZQCWlQPulDV6YMIXmpQss17rU= -github.com/quasilyte/go-ruleguard/dsl v0.0.0-20210115110123-c73ee1cbff1f/go.mod h1:KeCP03KrjuSO0H1kTuZQCWlQPulDV6YMIXmpQss17rU= -github.com/quasilyte/go-ruleguard/rules v0.0.0-20201231183845-9e62ed36efe1/go.mod h1:7JTjp89EGyU1d6XfBiXihJNG37wB2VRkd125Q1u7Plc= -github.com/quasilyte/regex/syntax v0.0.0-20200407221936-30656e2c4a95 h1:L8QM9bvf68pVdQ3bCFZMDmnt9yqcMBro1pC7F+IPYMY= -github.com/quasilyte/regex/syntax v0.0.0-20200407221936-30656e2c4a95/go.mod h1:rlzQ04UMyJXu/aOvhd8qT+hvDrFpiwqp8MRXDY9szc0= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= -github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= +github.com/quasilyte/go-ruleguard v0.3.19 h1:tfMnabXle/HzOb5Xe9CUZYWXKfkS1KwRmZyPmD9nVcc= +github.com/quasilyte/go-ruleguard v0.3.19/go.mod h1:lHSn69Scl48I7Gt9cX3VrbsZYvYiBYszZOZW4A+oTEw= +github.com/quasilyte/gogrep v0.5.0 h1:eTKODPXbI8ffJMN+W2aE0+oL0z/nh8/5eNdiO34SOAo= +github.com/quasilyte/gogrep v0.5.0/go.mod h1:Cm9lpz9NZjEoL1tgZ2OgeUKPIxL1meE7eo60Z6Sk+Ng= +github.com/quasilyte/regex/syntax v0.0.0-20210819130434-b3f0c404a727 h1:TCg2WBOl980XxGFEZSS6KlBGIV0diGdySzxATTWoqaU= +github.com/quasilyte/regex/syntax v0.0.0-20210819130434-b3f0c404a727/go.mod h1:rlzQ04UMyJXu/aOvhd8qT+hvDrFpiwqp8MRXDY9szc0= +github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567 h1:M8mH9eK4OUR4lu7Gd+PU1fV2/qnDNfzT635KRSObncs= +github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567/go.mod h1:DWNGW8A4Y+GyBgPuaQJuWiy0XYftx4Xm/y5Jqk9I6VQ= +github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.6.2/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= -github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/ryancurrah/gomodguard v1.2.0 h1:YWfhGOrXwLGiqcC/u5EqG6YeS8nh+1fw0HEc85CVZro= -github.com/ryancurrah/gomodguard v1.2.0/go.mod h1:rNqbC4TOIdUDcVMSIpNNAzTbzXAZa6W5lnUepvuMMgQ= -github.com/ryanrolds/sqlclosecheck v0.3.0 h1:AZx+Bixh8zdUBxUA1NxbxVAS78vTPq4rCb8OUZI9xFw= -github.com/ryanrolds/sqlclosecheck v0.3.0/go.mod h1:1gREqxyTGR3lVtpngyFo3hZAgk0KCtEdgEkHwDbigdA= -github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= -github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E= -github.com/sanposhiho/wastedassign v0.1.3 h1:qIMpTh4NGZYRbFJ+DSpLoVn8F4SLciX2afRvXPefC7w= -github.com/sanposhiho/wastedassign v0.1.3/go.mod h1:LGpq5Hsv74QaqM47WtIsRSF/ik9kqk07kchgv66tLVE= -github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= -github.com/securego/gosec/v2 v2.6.1 h1:+KCw+uz16FYfFyJ/A5aU6uP7mnrL+j1TbDnk1yN+8R0= -github.com/securego/gosec/v2 v2.6.1/go.mod h1:I76p3NTHBXsGhybUW+cEQ692q2Vp+A0Z6ZLzDIZy+Ao= +github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= +github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/ryancurrah/gomodguard v1.3.0 h1:q15RT/pd6UggBXVBuLps8BXRvl5GPBcwVA7BJHMLuTw= +github.com/ryancurrah/gomodguard v1.3.0/go.mod h1:ggBxb3luypPEzqVtq33ee7YSN35V28XeGnid8dnni50= +github.com/ryanrolds/sqlclosecheck v0.4.0 h1:i8SX60Rppc1wRuyQjMciLqIzV3xnoHB7/tXbr6RGYNI= +github.com/ryanrolds/sqlclosecheck v0.4.0/go.mod h1:TBRRjzL31JONc9i4XMinicuo+s+E8yKZ5FN8X3G6CKQ= +github.com/sanposhiho/wastedassign/v2 v2.0.7 h1:J+6nrY4VW+gC9xFzUc+XjPD3g3wF3je/NsJFwFK7Uxc= +github.com/sanposhiho/wastedassign/v2 v2.0.7/go.mod h1:KyZ0MWTwxxBmfwn33zh3k1dmsbF2ud9pAAGfoLfjhtI= +github.com/sashamelentyev/interfacebloat v1.1.0 h1:xdRdJp0irL086OyW1H/RTZTr1h/tMEOsumirXcOJqAw= +github.com/sashamelentyev/interfacebloat v1.1.0/go.mod h1:+Y9yU5YdTkrNvoX0xHc84dxiN1iBi9+G8zZIhPVoNjQ= +github.com/sashamelentyev/usestdlibvars v1.23.0 h1:01h+/2Kd+NblNItNeux0veSL5cBF1jbEOPrEhDzGYq0= +github.com/sashamelentyev/usestdlibvars v1.23.0/go.mod h1:YPwr/Y1LATzHI93CqoPUN/2BzGQ/6N/cl/KwgR0B/aU= +github.com/securego/gosec/v2 v2.16.0 h1:Pi0JKoasQQ3NnoRao/ww/N/XdynIB9NRYYZT5CyOs5U= +github.com/securego/gosec/v2 v2.16.0/go.mod h1:xvLcVZqUfo4aAQu56TNv7/Ltz6emAOQAEsrZrt7uGlI= github.com/shazow/go-diff v0.0.0-20160112020656-b6b7b6733b8c h1:W65qqJCIOVP4jpqPQ0YvHYKwcMEMVWIzWC5iNQQfBTU= github.com/shazow/go-diff v0.0.0-20160112020656-b6b7b6733b8c/go.mod h1:/PevMnwAxekIXwN8qQyfc5gl2NlkB3CQlkizAbOkeBs= -github.com/shirou/gopsutil/v3 v3.21.1/go.mod h1:igHnfak0qnw1biGeI2qKQvu0ZkwvEkUcCLlYhZzdr/4= github.com/shurcooL/go v0.0.0-20180423040247-9e1955d9fb6e/go.mod h1:TDJrrUr11Vxrven61rcy3hJMUqaf/CLWYhHNPmT14Lk= github.com/shurcooL/go-goon v0.0.0-20170922171312-37c2f522c041/go.mod h1:N5mDOmsrJOB+vfqUK+7DmDyjhSLIIBnXo9lvZJj3MWQ= -github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= -github.com/sirupsen/logrus v1.8.0 h1:nfhvjKcUMhBMVqbKHJlk5RPrrfYr/NMo3692g0dwfWU= -github.com/sirupsen/logrus v1.8.0/go.mod h1:4GuYW9TZmE769R5STWrRakJc4UqQ3+QQ95fyz7ENv1A= -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/sonatard/noctx v0.0.1 h1:VC1Qhl6Oxx9vvWo3UDgrGXYCeKCe3Wbw7qAWL6FrmTY= -github.com/sonatard/noctx v0.0.1/go.mod h1:9D2D/EoULe8Yy2joDHJj7bv3sZoq9AaSb8B4lqBjiZI= -github.com/sony/gobreaker v0.4.1/go.mod h1:ZKptC7FHNvhBz7dN2LGjPVBz2sZJmc0/PkyDJOjmxWY= -github.com/sourcegraph/go-diff v0.6.1 h1:hmA1LzxW0n1c3Q4YbrFgg4P99GSnebYa3x8gr0HZqLQ= -github.com/sourcegraph/go-diff v0.6.1/go.mod h1:iBszgVvyxdc8SFZ7gm69go2KDdt3ag071iBaWPF6cjs= +github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= +github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= +github.com/sivchari/containedctx v1.0.3 h1:x+etemjbsh2fB5ewm5FeLNi5bUjK0V8n0RB+Wwfd0XE= +github.com/sivchari/containedctx v1.0.3/go.mod h1:c1RDvCbnJLtH4lLcYD/GqwiBSSf4F5Qk0xld2rBqzJ4= +github.com/sivchari/nosnakecase v1.7.0 h1:7QkpWIRMe8x25gckkFd2A5Pi6Ymo0qgr4JrhGt95do8= +github.com/sivchari/nosnakecase v1.7.0/go.mod h1:CwDzrzPea40/GB6uynrNLiorAlgFRvRbFSgJx2Gs+QY= +github.com/sivchari/tenv v1.7.1 h1:PSpuD4bu6fSmtWMxSGWcvqUUgIn7k3yOJhOIzVWn8Ak= +github.com/sivchari/tenv v1.7.1/go.mod h1:64yStXKSOxDfX47NlhVwND4dHwfZDdbp2Lyl018Icvg= +github.com/sonatard/noctx v0.0.2 h1:L7Dz4De2zDQhW8S0t+KUjY0MAQJd6SgVwhzNIc4ok00= +github.com/sonatard/noctx v0.0.2/go.mod h1:kzFz+CzWSjQ2OzIm46uJZoXuBpa2+0y3T36U18dWqIo= +github.com/sourcegraph/go-diff v0.7.0 h1:9uLlrd5T46OXs5qpp8L/MTltk0zikUGi0sNNyCpA8G0= +github.com/sourcegraph/go-diff v0.7.0/go.mod h1:iBszgVvyxdc8SFZ7gm69go2KDdt3ag071iBaWPF6cjs= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72 h1:qLC7fQah7D6K1B0ujays3HV9gkFtllcxhzImRR7ArPQ= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= -github.com/spf13/afero v1.5.1 h1:VHu76Lk0LSP1x254maIu2bplkWpfBWI+B+6fdoZprcg= -github.com/spf13/afero v1.5.1/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= -github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cast v1.3.1 h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng= -github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/cobra v1.1.3 h1:xghbfqPkxzxP3C/f3n5DdpAbdKLj4ZE4BWQI362l53M= -github.com/spf13/cobra v1.1.3/go.mod h1:pGADOWyqRD/YMrPZigI/zbliZ2wVD/23d+is3pSWzOo= -github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= +github.com/spf13/afero v1.8.2 h1:xehSyVa0YnHWsJ49JFljMpg1HX19V6NDZ1fkm1Xznbo= +github.com/spf13/afero v1.8.2/go.mod h1:CtAatgMJh6bJEIs48Ay/FOnkljP3WeGUG0MC1RfAqwo= +github.com/spf13/cast v1.5.0 h1:rj3WzYc11XZaIZMPKmwP96zkFEnnAmV8s6XbB2aY32w= +github.com/spf13/cast v1.5.0/go.mod h1:SpXXQ5YoyJw6s3/6cMTQuxvgRl3PCJiyaX9p6b155UU= +github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= +github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= -github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= -github.com/spf13/viper v1.7.1 h1:pM5oEahlgWv/WnHXpgbKz7iLIxRf65tye2Ci+XFK5sk= -github.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= -github.com/ssgreg/nlreturn/v2 v2.1.0 h1:6/s4Rc49L6Uo6RLjhWZGBpWWjfzk2yrf1nIW8m4wgVA= -github.com/ssgreg/nlreturn/v2 v2.1.0/go.mod h1:E/iiPB78hV7Szg2YfRgyIrk1AD6JVMTRkkxBiELzh2I= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= -github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= -github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5JnDBl6z3cMAg/SywNDC5ABu5ApDIw6lUbRmI= +github.com/spf13/viper v1.12.0 h1:CZ7eSOd3kZoaYDLbXnmzgQI5RlciuXBMA+18HwHRfZQ= +github.com/spf13/viper v1.12.0/go.mod h1:b6COn30jlNxbm/V2IqWiNWkJ+vZNiMNksliPCiuKtSI= +github.com/ssgreg/nlreturn/v2 v2.2.1 h1:X4XDI7jstt3ySqGU86YGAURbxw3oTDPK9sPEi6YEwQ0= +github.com/ssgreg/nlreturn/v2 v2.2.1/go.mod h1:E/iiPB78hV7Szg2YfRgyIrk1AD6JVMTRkkxBiELzh2I= +github.com/stbenjam/no-sprintf-host-port v0.1.1 h1:tYugd/yrm1O0dV+ThCbaKZh195Dfm07ysF0U6JQXczc= +github.com/stbenjam/no-sprintf-host-port v0.1.1/go.mod h1:TLhvtIvONRzdmkFiio4O8LHsN9N74I+PhRquPsxpL0I= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= -github.com/stretchr/objx v0.3.0 h1:NGXK3lHquSN08v5vWalVI/L8XU9hdzE/G6xsrze47As= -github.com/stretchr/objx v0.3.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v0.0.0-20170130113145-4d4bfba8f1d1/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.1.4/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= @@ -755,72 +672,88 @@ github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81P github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.1 h1:5TQK59W5E3v0r2duFAb7P95B6hEeOyEnHRa8MjYSMTY= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s= -github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= -github.com/tdakkota/asciicheck v0.0.0-20200416200610-e657995f937b h1:HxLVTlqcHhFAz3nWUcuvpH7WuOMv8LQoCWmruLfFH2U= -github.com/tdakkota/asciicheck v0.0.0-20200416200610-e657995f937b/go.mod h1:yHp0ai0Z9gUljN3o0xMhYJnH/IcvkdTBOX2fmJ93JEM= -github.com/tetafro/godot v1.4.4 h1:VAtLEoAMmopIzHVWVBrztjVWDeYm1OD/DKqhqXR4828= -github.com/tetafro/godot v1.4.4/go.mod h1:FVDd4JuKliW3UgjswZfJfHq4vAx0bD/Jd5brJjGeaz4= -github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94 h1:ig99OeTyDwQWhPe2iw9lwfQVF1KB3Q4fpP3X7/2VBG8= -github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94/go.mod h1:Qimiffbc6q9tBWlVV6x0P9sat/ao1xEkREYPPj9hphk= -github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tomarrell/wrapcheck v0.0.0-20201130113247-1683564d9756 h1:zV5mu0ESwb+WnzqVaW2z1DdbAP0S46UtjY8DHQupQP4= -github.com/tomarrell/wrapcheck v0.0.0-20201130113247-1683564d9756/go.mod h1:yiFB6fFoV7saXirUGfuK+cPtUh4NX/Hf5y2WC2lehu0= -github.com/tommy-muehle/go-mnd/v2 v2.3.1 h1:a1S4+4HSXDJMgeODJH/t0EEKxcVla6Tasw+Zx9JJMog= -github.com/tommy-muehle/go-mnd/v2 v2.3.1/go.mod h1:WsUAkMJMYww6l/ufffCD3m+P7LEvr8TnZn9lwVDlgzw= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/subosito/gotenv v1.4.1 h1:jyEFiXpy21Wm81FBN71l9VoMMV8H8jG+qIK3GCpY6Qs= +github.com/subosito/gotenv v1.4.1/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0= +github.com/t-yuki/gocover-cobertura v0.0.0-20180217150009-aaee18c8195c h1:+aPplBwWcHBo6q9xrfWdMrT9o4kltkmmvpemgIjep/8= +github.com/t-yuki/gocover-cobertura v0.0.0-20180217150009-aaee18c8195c/go.mod h1:SbErYREK7xXdsRiigaQiQkI9McGRzYMvlKYaP3Nimdk= +github.com/tdakkota/asciicheck v0.2.0 h1:o8jvnUANo0qXtnslk2d3nMKTFNlOnJjRrNcj0j9qkHM= +github.com/tdakkota/asciicheck v0.2.0/go.mod h1:Qb7Y9EgjCLJGup51gDHFzbI08/gbGhL/UVhYIPWG2rg= +github.com/tenntenn/modver v1.0.1 h1:2klLppGhDgzJrScMpkj9Ujy3rXPUspSjAcev9tSEBgA= +github.com/tenntenn/modver v1.0.1/go.mod h1:bePIyQPb7UeioSRkw3Q0XeMhYZSMx9B8ePqg6SAMGH0= +github.com/tenntenn/text/transform v0.0.0-20200319021203-7eef512accb3 h1:f+jULpRQGxTSkNYKJ51yaw6ChIqO+Je8UqsTKN/cDag= +github.com/tenntenn/text/transform v0.0.0-20200319021203-7eef512accb3/go.mod h1:ON8b8w4BN/kE1EOhwT0o+d62W65a6aPw1nouo9LMgyY= +github.com/tetafro/godot v1.4.11 h1:BVoBIqAf/2QdbFmSwAWnaIqDivZdOV0ZRwEm6jivLKw= +github.com/tetafro/godot v1.4.11/go.mod h1:LR3CJpxDVGlYOWn3ZZg1PgNZdTUvzsZWu8xaEohUpn8= +github.com/timakin/bodyclose v0.0.0-20230421092635-574207250966 h1:quvGphlmUVU+nhpFa4gg4yJyTRJ13reZMDHrKwYw53M= +github.com/timakin/bodyclose v0.0.0-20230421092635-574207250966/go.mod h1:27bSVNWSBOHm+qRp1T9qzaIpsWEP6TbUnei/43HK+PQ= +github.com/timonwong/loggercheck v0.9.4 h1:HKKhqrjcVj8sxL7K77beXh0adEm6DLjV/QOGeMXEVi4= +github.com/timonwong/loggercheck v0.9.4/go.mod h1:caz4zlPcgvpEkXgVnAJGowHAMW2NwHaNlpS8xDbVhTg= +github.com/tomarrell/wrapcheck/v2 v2.8.1 h1:HxSqDSN0sAt0yJYsrcYVoEeyM4aI9yAm3KQpIXDJRhQ= +github.com/tomarrell/wrapcheck/v2 v2.8.1/go.mod h1:/n2Q3NZ4XFT50ho6Hbxg+RV1uyo2Uow/Vdm9NQcl5SE= +github.com/tommy-muehle/go-mnd/v2 v2.5.1 h1:NowYhSdyE/1zwK9QCLeRb6USWdoif80Ie+v+yU8u1Zw= +github.com/tommy-muehle/go-mnd/v2 v2.5.1/go.mod h1:WsUAkMJMYww6l/ufffCD3m+P7LEvr8TnZn9lwVDlgzw= github.com/ultraware/funlen v0.0.3 h1:5ylVWm8wsNwH5aWo9438pwvsK0QiqVuUrt9bn7S/iLA= github.com/ultraware/funlen v0.0.3/go.mod h1:Dp4UiAus7Wdb9KUZsYWZEWiRzGuM2kXM1lPbfaF6xhA= -github.com/ultraware/whitespace v0.0.4 h1:If7Va4cM03mpgrNH9k49/VOicWpGoG70XPBFFODYDsg= -github.com/ultraware/whitespace v0.0.4/go.mod h1:aVMh/gQve5Maj9hQ/hg+F75lr/X5A89uZnzAmWSineA= -github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= -github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= -github.com/uudashr/gocognit v1.0.1 h1:MoG2fZ0b/Eo7NXoIwCVFLG5JED3qgQz5/NEE+rOsjPs= -github.com/uudashr/gocognit v1.0.1/go.mod h1:j44Ayx2KW4+oB6SWMv8KsmHzZrOInQav7D3cQMJ5JUM= -github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= -github.com/valyala/fasthttp v1.16.0/go.mod h1:YOKImeEosDdBPnxc0gy7INqi3m1zK6A+xl6TwOBhHCA= -github.com/valyala/quicktemplate v1.6.3/go.mod h1:fwPzK2fHuYEODzJ9pkw0ipCPNHZ2tD5KW4lOuSdPKzY= -github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio= -github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= +github.com/ultraware/whitespace v0.0.5 h1:hh+/cpIcopyMYbZNVov9iSxvJU3OYQg78Sfaqzi/CzI= +github.com/ultraware/whitespace v0.0.5/go.mod h1:aVMh/gQve5Maj9hQ/hg+F75lr/X5A89uZnzAmWSineA= +github.com/uudashr/gocognit v1.0.6 h1:2Cgi6MweCsdB6kpcVQp7EW4U23iBFQWfTXiWlyp842Y= +github.com/uudashr/gocognit v1.0.6/go.mod h1:nAIUuVBnYU7pcninia3BHOvQkpQCeO76Uscky5BOwcY= +github.com/xen0n/gosmopolitan v1.2.1 h1:3pttnTuFumELBRSh+KQs1zcz4fN6Zy7aB0xlnQSn1Iw= +github.com/xen0n/gosmopolitan v1.2.1/go.mod h1:JsHq/Brs1o050OOdmzHeOr0N7OtlnKRAGAsElF8xBQA= +github.com/yagipy/maintidx v1.0.0 h1:h5NvIsCz+nRDapQ0exNv4aJ0yXSI0420omVANTv3GJM= +github.com/yagipy/maintidx v1.0.0/go.mod h1:0qNf/I/CCZXSMhsRsrEPDZ+DkekpKLXAJfsTACwgXLk= +github.com/yeya24/promlinter v0.2.0 h1:xFKDQ82orCU5jQujdaD8stOHiv8UN68BSdn2a8u8Y3o= +github.com/yeya24/promlinter v0.2.0/go.mod h1:u54lkmBOZrpEbQQ6gox2zWKKLKu2SGe+2KOiextY+IA= +github.com/ykadowak/zerologlint v0.1.2 h1:Um4P5RMmelfjQqQJKtE8ZW+dLZrXrENeIzWWKw800U4= +github.com/ykadowak/zerologlint v0.1.2/go.mod h1:KaUskqF3e/v59oPmdq1U1DnKcuHokl2/K1U4pmIELKg= github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= -go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= -go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= +github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +gitlab.com/bosi/decorder v0.2.3 h1:gX4/RgK16ijY8V+BRQHAySfQAb354T7/xQpDB2n10P0= +gitlab.com/bosi/decorder v0.2.3/go.mod h1:9K1RB5+VPNQYtXtTDAzd2OEftsZb1oV0IrJrzChSdGE= +go-simpler.org/assert v0.5.0 h1:+5L/lajuQtzmbtEfh69sr5cRf2/xZzyJhFjoOz/PPqs= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opencensus.io v0.22.6 h1:BdkrbWrzDlV9dnbzoP7sfN+dHheJ4J9JOaYxcUDL+ok= -go.opencensus.io v0.22.6/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= -go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= -go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= -go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= -go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= -go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= -go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= +go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= +go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= +go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= +go.tmz.dev/musttag v0.7.0 h1:QfytzjTWGXZmChoX0L++7uQN+yRCPfyFm+whsM+lfGc= +go.tmz.dev/musttag v0.7.0/go.mod h1:oTFPvgOkJmp5kYL02S8+jrH0eLrBIl57rzWeA26zDEM= +go.uber.org/atomic v1.7.0 h1:ADUqmZGgLDDfbSL9ZmPxKTybcoEYHgpYfELNoN+7hsw= +go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= +go.uber.org/goleak v1.1.11 h1:wy28qYRKZgnJTxGxvye5/wgWr1EKjmUDGYox5mGlRlI= +go.uber.org/multierr v1.6.0 h1:y6IPFStTAIT5Ytl7/XYmHvzXQ7S3g/IeZW9hyZ5thw4= +go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= +go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60= +go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg= golang.org/x/crypto v0.0.0-20180501155221-613d6eafa307/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= golang.org/x/crypto v0.11.0 h1:6Ewdq3tDic1mg5xRO4milcWCfMVQhI4NkqWWvqejpuA= golang.org/x/crypto v0.11.0/go.mod h1:xgJhtzW8F9jGdVFWZESrid1U1bjeNy4zgy5cRr/CIio= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -833,6 +766,12 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= +golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea h1:vLCWI/yYrdEHyN2JzIzPO3aaQJHQdp89IZBA/+azVC4= +golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea/go.mod h1:V1LtkGg67GoY2N1AnLN78QLrzxkLyJw7RJb1gzOOz9w= +golang.org/x/exp/typeparams v0.0.0-20220428152302-39d4317da171/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk= +golang.org/x/exp/typeparams v0.0.0-20230203172020-98cc5a0785f9/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk= +golang.org/x/exp/typeparams v0.0.0-20230224173230-c95f2b4c22f2 h1:J74nGeMgeFnYQJN59eFwh06jX/V8g0lB7LWpjSLxtgU= +golang.org/x/exp/typeparams v0.0.0-20230224173230-c95f2b4c22f2/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -845,7 +784,6 @@ golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHl golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 h1:2M3HP5CCK1Si9FQhwnzYhXdG6DXeebvUHFpre8QvbyI= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= @@ -856,17 +794,21 @@ golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzB golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= +golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= +golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc= golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= @@ -877,7 +819,6 @@ golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLL golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/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/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -889,22 +830,28 @@ golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/ golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200602114024-627f9648deb9/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200904194848-62affa334b73/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201010224723-4f7140c49acb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= +golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= +golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= +golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= +golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.12.0 h1:cfawfvKITfUsFCeJIHJrbSxpeu/E81khclypR0GVT50= golang.org/x/net v0.12.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= @@ -915,8 +862,10 @@ golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4Iltr golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210126194326-f9ce19ea3013 h1:55H5j7lotzuFCEOKDsMch+fRNUQ9DgtyHOUP31FNqKc= -golang.org/x/oauth2 v0.0.0-20210126194326-f9ce19ea3013/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.8.0 h1:6dkIjl3j3LtZ/O3sTgZTMsLKSftL/B8Zgq4huOIIUu8= +golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -928,17 +877,16 @@ golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E= -golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -948,18 +896,12 @@ golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191220142924-d4481acd189f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -970,26 +912,46 @@ golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200828194041-157a740278f4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201024232916-9f70ab9862d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201112073958-5cba982894dd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201214210602-f9fddec55a1e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211105183446-c75c47738b0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220702020025-31831981b65f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.10.0 h1:SqMFp9UcQJZa+pmYuAKjd9xq1f0j5rLcDIk0mj4qAsA= golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= +golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= +golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -998,31 +960,26 @@ golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= +golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.11.0 h1:LAntKIrcmeSKERyiOh0XMV39LXS8IE9UL2yP7+f5ij4= golang.org/x/text v0.11.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 h1:Hir2P/De0WpUhtrKGGjvSb2YxUgyZ7EFOSLIcSSpiwE= golang.org/x/time v0.0.0-20201208040808-7e3f01d25324/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190110163146-51295c7ec13a/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190307163923-6a08e3108db3/go.mod h1:25r3+/G6/xytQM8iWZKq3Hn0kr0rgFKPUNVEL/dr3z4= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190311215038-5c2858a9cfe5/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190321232350-e250d351ecad/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190322203728-c1a832b0ad89/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= @@ -1034,12 +991,8 @@ golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgw golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190910044552-dd2b5c81c578/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190916130336-e45ffcd953cc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= @@ -1047,9 +1000,7 @@ golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtn golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200117220505-0cba7a3a9ee9/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= @@ -1062,53 +1013,46 @@ golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjs golang.org/x/tools v0.0.0-20200324003944-a576cf524670/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= golang.org/x/tools v0.0.0-20200329025819-fd4102a86c65/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= -golang.org/x/tools v0.0.0-20200414032229-332987a829c3/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200422022333-3d57cf2e726e/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200622203043-20e05c1c8ffa/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200624225443-88f3c62a19ff/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200625211823-6506e20df31f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200724022722-7017fd6b1305/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200812195022-5ae4c3c160a0/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200820010801-b793a1359eac/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200828161849-5deb26317202/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200831203904-5a2aa26beb65/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20200915173823-2db8f0ff891c/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= -golang.org/x/tools v0.0.0-20200918232735-d647fc253266/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= golang.org/x/tools v0.0.0-20201001104356-43ebab892c4c/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= -golang.org/x/tools v0.0.0-20201002184944-ecd9fd270d5d/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= -golang.org/x/tools v0.0.0-20201011145850-ed2f50202694/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= golang.org/x/tools v0.0.0-20201023174141-c8cfbd0f21e6/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201028025901-8cd080b735b3/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201114224030-61ea331ec02b/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201118003311-bd56c0adb394/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201230224404-63754364767c/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210101214203-2dba1e4ea05c/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210102185154-773b96fafca2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210104081019-d8d6ddbec6ee/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= +golang.org/x/tools v0.1.1-0.20210205202024-ef80cdb6ec6d/go.mod h1:9bzcO0MWcOuT0tm1iBGzDVPshzfwoVvREIui8C+MHqU= +golang.org/x/tools v0.1.1-0.20210302220138-2ac05c832e1a/go.mod h1:9bzcO0MWcOuT0tm1iBGzDVPshzfwoVvREIui8C+MHqU= +golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= +golang.org/x/tools v0.1.10/go.mod h1:Uh6Zz+xoGYZom868N8YTex3t7RhtHDBrE8Gzo9bV56E= +golang.org/x/tools v0.1.11/go.mod h1:SgwaegtQh8clINPpECJMqnxLv9I09HLqnW3RMqW0CA4= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= +golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= +golang.org/x/tools v0.5.0/go.mod h1:N+Kgy78s5I24c24dU8OfWNEotWjutIs8SnJvn5IDq+k= +golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= golang.org/x/tools v0.11.1 h1:ojD5zOW8+7dOGzdnNgersm8aPfcDjhMp12UfG93NIMc= golang.org/x/tools v0.11.1/go.mod h1:anzJrxPjNtfgiYQYirP2CPGzGLxrH2u2QBhn6Bf3qY8= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/api v0.3.1/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMtkk= +golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= +golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= @@ -1125,14 +1069,12 @@ google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0M google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= -google.golang.org/api v0.31.0/go.mod h1:CL+9IBCa2WWU6gRuBWaKqGWLFFwbEUXkfeMkHLQWYWo= -google.golang.org/api v0.32.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= -google.golang.org/api v0.38.0 h1:vDyWk6eup8eQAidaZ31sNWIn8tZEL8qpbtGkBD4ytQo= -google.golang.org/api v0.38.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= +google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= +google.golang.org/api v0.126.0 h1:q4GJq+cAdMAC7XP7njvQ4tvohGLiSlytuL4BQxbIZ+o= +google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= @@ -1146,7 +1088,6 @@ google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRn google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190530194941-fb225487d101/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s= google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= @@ -1165,32 +1106,30 @@ google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfG google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200831141814-d751682dd103/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200914193844-75d14daec038/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200921151605-7abf4a1a14d5/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210126160654-44e461bb6506 h1:uLBY0yHDCj2PMQ98KWDSIDFwn9zK2zh+tgWtbvPPBjI= -google.golang.org/genproto v0.0.0-20210126160654-44e461bb6506/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= +google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc h1:8DyZCyvI8mE1IdLy/60bS+52xfymkE72wv1asokgtao= +google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= +google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc h1:kVKPf/IiYSBWEWtkIn6wZXwWGCnLKcC8oWfZvXjsGnM= +google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc h1:XSJ8Vk1SWuNr8S18z1NZSziL0CPIXLCCMDOEFtHBOFc= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= -google.golang.org/grpc v1.22.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.23.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= @@ -1200,11 +1139,14 @@ google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3Iji google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.32.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= -google.golang.org/grpc v1.35.0 h1:TwIQcH3es+MojMVojxxfQ3l3OF2KzlRxML2xZq0kRo8= google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= +google.golang.org/grpc v1.55.0 h1:3Oj82/tFSCeUrRTg/5E/7d/W5A1tj6Ky1ABAuZuv5ag= +google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= 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= @@ -1214,30 +1156,26 @@ google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= -google.golang.org/protobuf v1.25.0 h1:Ejskq+SyPohKW+1uil0JJMtmHCgJPJ/qWTxr8qp+R4c= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= 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-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= -gopkg.in/cheggaaa/pb.v1 v1.0.25/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= -gopkg.in/gcfg.v1 v1.2.3/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= -gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/ini.v1 v1.62.0 h1:duBzk771uxoUuOlyRLkHsygud9+5lrlGjdFBb4mSKDU= -gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= -gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= +gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA= +gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= -gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= -gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= 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.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= @@ -1245,9 +1183,9 @@ gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= @@ -1255,8 +1193,8 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.1.2 h1:SMdYLJl312RXuxXziCCHhRsp/tvct9cGKey0yv95tZM= -honnef.co/go/tools v0.1.2/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= +honnef.co/go/tools v0.4.3 h1:o/n5/K5gXqk8Gozvs2cnL0F2S1/g1vcGCAx2vETjITw= +honnef.co/go/tools v0.4.3/go.mod h1:36ZgoUOrqOk1GxwHhyryEkq8FQWkUO2xGuSMhUCcdvA= k8s.io/api v0.0.0-20210217171935-8e2decd92398/go.mod h1:60tmSUpHxGPFerNHbo/ayI2lKxvtrhbxFyXuEIWJd78= k8s.io/apimachinery v0.0.0-20210217011835-527a61b4dffe/go.mod h1:Z7ps/g0rjlTeMstYrMOUttJfT2Gg34DEaG/f2PYLCWY= k8s.io/apimachinery v0.20.2 h1:hFx6Sbt1oG0n6DZ+g4bFt5f6BoMkOjKWsQFu077M3Vg= @@ -1270,14 +1208,14 @@ k8s.io/klog/v2 v2.5.0 h1:8mOnjf1RmUPW6KRqQCfYSZq/K20Unmp3IhuZUhxl8KI= k8s.io/klog/v2 v2.5.0/go.mod h1:hy9LJ/NvuK+iVyP4Ehqva4HxZG/oXyIS3n3Jmire4Ec= k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd/go.mod h1:WOJ3KddDSol4tAGcJo0Tvi+dK12EcqSLqcWsryKMpfM= k8s.io/utils v0.0.0-20201110183641-67b214c5f920/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -mvdan.cc/gofumpt v0.1.0 h1:hsVv+Y9UsZ/mFZTxJZuHVI6shSQCtzZ11h1JEFPAZLw= -mvdan.cc/gofumpt v0.1.0/go.mod h1:yXG1r1WqZVKWbVRtBWKWX9+CxGYfA51nSomhM0woR48= +mvdan.cc/gofumpt v0.5.0 h1:0EQ+Z56k8tXjj/6TQD25BFNKQXpCvT0rnansIc7Ug5E= +mvdan.cc/gofumpt v0.5.0/go.mod h1:HBeVDtMKRZpXyxFciAirzdKklDlGu8aAy1wEbH5Y9js= mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed h1:WX1yoOaKQfddO/mLzdV4wptyWgoH/6hwLs7QHTixo0I= mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed/go.mod h1:Xkxe497xwlCKkIaQYRfC7CSLworTXY9RMqwhhCm+8Nc= mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b h1:DxJ5nJdkhDlLok9K6qO+5290kphDJbHOQO1DFFFTeBo= mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b/go.mod h1:2odslEg/xrtNQqCYg2/jCoyKnw3vv5biOc3JnIcYfL4= -mvdan.cc/unparam v0.0.0-20210104141923-aac4ce9116a7 h1:HT3e4Krq+IE44tiN36RvVEb6tvqeIdtsVSsxmNPqlFU= -mvdan.cc/unparam v0.0.0-20210104141923-aac4ce9116a7/go.mod h1:hBpJkZE8H/sb+VRFvw2+rBpHNsTBcvSpk61hr8mzXZE= +mvdan.cc/unparam v0.0.0-20221223090309-7455f1af531d h1:3rvTIIM22r9pvXk+q3swxUQAQOxksVMGK7sml4nG57w= +mvdan.cc/unparam v0.0.0-20221223090309-7455f1af531d/go.mod h1:IeHQjmn6TOD+e4Z3RFiZMMsLVL+A96Nvptar8Fj71is= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= @@ -1285,4 +1223,3 @@ sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK sigs.k8s.io/structured-merge-diff/v4 v4.0.3/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc= -sourcegraph.com/sourcegraph/appdash v0.0.0-20190731080439-ebfcffb1b5c0/go.mod h1:hI742Nqp5OhwiqlzhgfbWU4mW4yO10fP+LoT9WOswdU= diff --git a/boilerplate/flyte/golang_test_targets/download_tooling.sh b/boilerplate/flyte/golang_test_targets/download_tooling.sh index 003220ea7..c7e5577ef 100755 --- a/boilerplate/flyte/golang_test_targets/download_tooling.sh +++ b/boilerplate/flyte/golang_test_targets/download_tooling.sh @@ -18,7 +18,7 @@ set -e tools=( "github.com/EngHabu/mockery/cmd/mockery" "github.com/flyteorg/flytestdlib/cli/pflags@latest" - "github.com/golangci/golangci-lint/cmd/golangci-lint@latest" + "github.com/golangci/golangci-lint/cmd/golangci-lint" "github.com/alvaroloes/enumer" "github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc" ) From ef377883987fe0e394ad6ecab50bd0a1695874ca Mon Sep 17 00:00:00 2001 From: Yee Hing Tong Date: Wed, 20 Sep 2023 13:11:02 -0700 Subject: [PATCH 5/8] GPU Type (#419) * add field Signed-off-by: Yee Hing Tong Signed-off-by: Jeev B * Pass task execution metadata from agent (#422) * Pass task execution metadata from agent Signed-off-by: Hongxin Liang * Add doc Signed-off-by: Hongxin Liang * Update protos/flyteidl/admin/agent.proto Co-authored-by: Kevin Su Signed-off-by: Honnix * Regenerate --------- Signed-off-by: Hongxin Liang Signed-off-by: Honnix Co-authored-by: Kevin Su Signed-off-by: Jeev B * Add tags to execution spec (#414) * add tags to execution spec Signed-off-by: Kevin Su * add tags to execution spec Signed-off-by: Kevin Su * add comment Signed-off-by: Kevin Su --------- Signed-off-by: Kevin Su Signed-off-by: Jeev B * Correct comment for array job max parallelism (#431) Signed-off-by: Katrina Rogan Signed-off-by: Jeev B * Add the scalar to the operand (#427) Signed-off-by: Kevin Su Signed-off-by: Jeev B * add selector Signed-off-by: Yee Hing Tong Signed-off-by: Jeev B * move selectors from container to task metadata Signed-off-by: Yee Hing Tong Signed-off-by: Jeev B * drop only_preferred Signed-off-by: Jeev B * Updating boilerplate to lock golangci-lint version (#435) Signed-off-by: Daniel Rammer Signed-off-by: Jeev B * add unpartitioned selector Signed-off-by: Jeev B * refactor Signed-off-by: Jeev B * refactor Signed-off-by: Jeev B * fix oneof names Signed-off-by: Jeev B * add build.os for read the docs Signed-off-by: Jeev B --------- Signed-off-by: Yee Hing Tong Signed-off-by: Jeev B Signed-off-by: Hongxin Liang Signed-off-by: Honnix Signed-off-by: Kevin Su Signed-off-by: Katrina Rogan Signed-off-by: Daniel Rammer Co-authored-by: Honnix Co-authored-by: Kevin Su Co-authored-by: Kevin Su Co-authored-by: Katrina Rogan Co-authored-by: Jeev B Co-authored-by: Dan Rammer --- .readthedocs.yml | 7 +- gen/pb-cpp/flyteidl/core/tasks.pb.cc | 1500 +++++++++--- gen/pb-cpp/flyteidl/core/tasks.pb.h | 631 +++++- gen/pb-cpp/flyteidl/core/workflow.pb.cc | 98 +- gen/pb-cpp/flyteidl/core/workflow.pb.h | 55 + gen/pb-go/flyteidl/core/tasks.pb.go | 420 +++- gen/pb-go/flyteidl/core/tasks.pb.validate.go | 168 ++ gen/pb-go/flyteidl/core/workflow.pb.go | 202 +- .../flyteidl/core/workflow.pb.validate.go | 10 + gen/pb-go/flyteidl/service/admin.swagger.json | 33 + gen/pb-go/flyteidl/service/agent.swagger.json | 29 + .../external_plugin_service.swagger.json | 29 + .../flyteidl/service/flyteadmin/README.md | 2 + .../service/flyteadmin/api/swagger.yaml | 499 ++++ .../flyteadmin/model_core_gpu_accelerator.go | 16 + .../model_core_resource_metadata.go | 14 + .../flyteadmin/model_core_task_metadata.go | 1 + .../model_core_task_node_overrides.go | 1 + gen/pb-go/flyteidl/service/openapi.go | 4 +- gen/pb-java/flyteidl/core/Tasks.java | 2007 ++++++++++++++++- gen/pb-java/flyteidl/core/Workflow.java | 265 ++- gen/pb-js/flyteidl.d.ts | 134 ++ gen/pb-js/flyteidl.js | 333 +++ gen/pb_python/flyteidl/core/tasks_pb2.py | 78 +- gen/pb_python/flyteidl/core/tasks_pb2.pyi | 22 +- gen/pb_python/flyteidl/core/workflow_pb2.py | 6 +- gen/pb_python/flyteidl/core/workflow_pb2.pyi | 6 +- .../flyteidl/service/flyteadmin/README.md | 2 + .../service/flyteadmin/flyteadmin/__init__.py | 2 + .../flyteadmin/flyteadmin/models/__init__.py | 2 + .../flyteadmin/models/core_gpu_accelerator.py | 167 ++ .../models/core_resource_metadata.py | 117 + .../flyteadmin/models/core_task_metadata.py | 33 +- .../models/core_task_node_overrides.py | 33 +- .../test/test_core_gpu_accelerator.py | 40 + .../test/test_core_resource_metadata.py | 40 + gen/pb_rust/flyteidl.core.rs | 42 + protos/flyteidl/core/tasks.proto | 19 + protos/flyteidl/core/workflow.proto | 3 + 39 files changed, 6413 insertions(+), 657 deletions(-) create mode 100644 gen/pb-go/flyteidl/service/flyteadmin/model_core_gpu_accelerator.go create mode 100644 gen/pb-go/flyteidl/service/flyteadmin/model_core_resource_metadata.go create mode 100644 gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_gpu_accelerator.py create mode 100644 gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_resource_metadata.py create mode 100644 gen/pb_python/flyteidl/service/flyteadmin/test/test_core_gpu_accelerator.py create mode 100644 gen/pb_python/flyteidl/service/flyteadmin/test/test_core_resource_metadata.py diff --git a/.readthedocs.yml b/.readthedocs.yml index 7433053ad..40f82afa0 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -5,12 +5,17 @@ # Required version: 2 +# Build operating system +build: + os: ubuntu-22.04 + tools: + python: "3.8" + # Build documentation in the docs/ directory with Sphinx sphinx: configuration: conf.py # Optionally set the version of Python and requirements required to build your docs python: - version: 3.8 install: - requirements: doc-requirements.txt diff --git a/gen/pb-cpp/flyteidl/core/tasks.pb.cc b/gen/pb-cpp/flyteidl/core/tasks.pb.cc index 54fb10724..e0f691c89 100644 --- a/gen/pb-cpp/flyteidl/core/tasks.pb.cc +++ b/gen/pb-cpp/flyteidl/core/tasks.pb.cc @@ -22,6 +22,7 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::pro extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_RetryStrategy_flyteidl_2fcore_2fliterals_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fsecurity_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_SecurityContext_flyteidl_2fcore_2fsecurity_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_ContainerPort_flyteidl_2fcore_2ftasks_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_GPUAccelerator_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_IOStrategy_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_K8sObjectMetadata_AnnotationsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_K8sObjectMetadata_LabelsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto; @@ -31,11 +32,12 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protob extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_TaskMetadata_TagsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_TaskTemplate_ConfigEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_DataLoadingConfig_flyteidl_2fcore_2ftasks_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_Resources_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_K8sObjectMetadata_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_K8sPod_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<4> scc_info_Container_flyteidl_2fcore_2ftasks_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<4> scc_info_TaskMetadata_flyteidl_2fcore_2ftasks_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<5> scc_info_TaskMetadata_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2fduration_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Duration_google_2fprotobuf_2fduration_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2fstruct_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_ListValue_google_2fprotobuf_2fstruct_2eproto; namespace flyteidl { @@ -52,6 +54,17 @@ class RuntimeMetadataDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; } _RuntimeMetadata_default_instance_; +class GPUAcceleratorDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed _instance; + bool unpartitioned_; + ::google::protobuf::internal::ArenaStringPtr partition_size_; +} _GPUAccelerator_default_instance_; +class ResourceMetadataDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed _instance; + const ::flyteidl::core::GPUAccelerator* gpu_accelerator_; +} _ResourceMetadata_default_instance_; class TaskMetadata_TagsEntry_DoNotUseDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; @@ -153,6 +166,35 @@ static void InitDefaultsRuntimeMetadata_flyteidl_2fcore_2ftasks_2eproto() { ::google::protobuf::internal::SCCInfo<0> scc_info_RuntimeMetadata_flyteidl_2fcore_2ftasks_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsRuntimeMetadata_flyteidl_2fcore_2ftasks_2eproto}, {}}; +static void InitDefaultsGPUAccelerator_flyteidl_2fcore_2ftasks_2eproto() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::flyteidl::core::_GPUAccelerator_default_instance_; + new (ptr) ::flyteidl::core::GPUAccelerator(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::flyteidl::core::GPUAccelerator::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_GPUAccelerator_flyteidl_2fcore_2ftasks_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsGPUAccelerator_flyteidl_2fcore_2ftasks_2eproto}, {}}; + +static void InitDefaultsResourceMetadata_flyteidl_2fcore_2ftasks_2eproto() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::flyteidl::core::_ResourceMetadata_default_instance_; + new (ptr) ::flyteidl::core::ResourceMetadata(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::flyteidl::core::ResourceMetadata::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<1> scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsResourceMetadata_flyteidl_2fcore_2ftasks_2eproto}, { + &scc_info_GPUAccelerator_flyteidl_2fcore_2ftasks_2eproto.base,}}; + static void InitDefaultsTaskMetadata_TagsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -177,12 +219,13 @@ static void InitDefaultsTaskMetadata_flyteidl_2fcore_2ftasks_2eproto() { ::flyteidl::core::TaskMetadata::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<4> scc_info_TaskMetadata_flyteidl_2fcore_2ftasks_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 4, InitDefaultsTaskMetadata_flyteidl_2fcore_2ftasks_2eproto}, { +::google::protobuf::internal::SCCInfo<5> scc_info_TaskMetadata_flyteidl_2fcore_2ftasks_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 5, InitDefaultsTaskMetadata_flyteidl_2fcore_2ftasks_2eproto}, { &scc_info_RuntimeMetadata_flyteidl_2fcore_2ftasks_2eproto.base, &scc_info_Duration_google_2fprotobuf_2fduration_2eproto.base, &scc_info_RetryStrategy_flyteidl_2fcore_2fliterals_2eproto.base, - &scc_info_TaskMetadata_TagsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto.base,}}; + &scc_info_TaskMetadata_TagsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto.base, + &scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto.base,}}; static void InitDefaultsTaskTemplate_ConfigEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -358,6 +401,8 @@ void InitDefaults_flyteidl_2fcore_2ftasks_2eproto() { ::google::protobuf::internal::InitSCC(&scc_info_Resources_ResourceEntry_flyteidl_2fcore_2ftasks_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_Resources_flyteidl_2fcore_2ftasks_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_RuntimeMetadata_flyteidl_2fcore_2ftasks_2eproto.base); + ::google::protobuf::internal::InitSCC(&scc_info_GPUAccelerator_flyteidl_2fcore_2ftasks_2eproto.base); + ::google::protobuf::internal::InitSCC(&scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_TaskMetadata_TagsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_TaskMetadata_flyteidl_2fcore_2ftasks_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_TaskTemplate_ConfigEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto.base); @@ -373,7 +418,7 @@ void InitDefaults_flyteidl_2fcore_2ftasks_2eproto() { ::google::protobuf::internal::InitSCC(&scc_info_Sql_flyteidl_2fcore_2ftasks_2eproto.base); } -::google::protobuf::Metadata file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[16]; +::google::protobuf::Metadata file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[18]; const ::google::protobuf::EnumDescriptor* file_level_enum_descriptors_flyteidl_2fcore_2ftasks_2eproto[7]; constexpr ::google::protobuf::ServiceDescriptor const** file_level_service_descriptors_flyteidl_2fcore_2ftasks_2eproto = nullptr; @@ -400,6 +445,22 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fcore_2ftasks_2eproto::of PROTOBUF_FIELD_OFFSET(::flyteidl::core::RuntimeMetadata, type_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::RuntimeMetadata, version_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::RuntimeMetadata, flavor_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::flyteidl::core::GPUAccelerator, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::flyteidl::core::GPUAccelerator, _oneof_case_[0]), + ~0u, // no _weak_field_map_ + PROTOBUF_FIELD_OFFSET(::flyteidl::core::GPUAccelerator, device_), + offsetof(::flyteidl::core::GPUAcceleratorDefaultTypeInternal, unpartitioned_), + offsetof(::flyteidl::core::GPUAcceleratorDefaultTypeInternal, partition_size_), + PROTOBUF_FIELD_OFFSET(::flyteidl::core::GPUAccelerator, partition_size_value_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::flyteidl::core::ResourceMetadata, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::flyteidl::core::ResourceMetadata, _oneof_case_[0]), + ~0u, // no _weak_field_map_ + offsetof(::flyteidl::core::ResourceMetadataDefaultTypeInternal, gpu_accelerator_), + PROTOBUF_FIELD_OFFSET(::flyteidl::core::ResourceMetadata, accelerator_value_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse, _has_bits_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse, _internal_metadata_), ~0u, // no _extensions_ @@ -425,6 +486,7 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fcore_2ftasks_2eproto::of PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata, generates_deck_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata, tags_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata, pod_template_name_), + PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata, resource_metadata_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata, interruptible_value_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskTemplate_ConfigEntry_DoNotUse, _has_bits_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskTemplate_ConfigEntry_DoNotUse, _internal_metadata_), @@ -534,25 +596,29 @@ static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SE { 0, -1, sizeof(::flyteidl::core::Resources_ResourceEntry)}, { 7, -1, sizeof(::flyteidl::core::Resources)}, { 14, -1, sizeof(::flyteidl::core::RuntimeMetadata)}, - { 22, 29, sizeof(::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse)}, - { 31, -1, sizeof(::flyteidl::core::TaskMetadata)}, - { 48, 55, sizeof(::flyteidl::core::TaskTemplate_ConfigEntry_DoNotUse)}, - { 57, -1, sizeof(::flyteidl::core::TaskTemplate)}, - { 74, -1, sizeof(::flyteidl::core::ContainerPort)}, - { 80, -1, sizeof(::flyteidl::core::Container)}, - { 94, -1, sizeof(::flyteidl::core::IOStrategy)}, - { 101, -1, sizeof(::flyteidl::core::DataLoadingConfig)}, - { 111, -1, sizeof(::flyteidl::core::K8sPod)}, - { 119, 126, sizeof(::flyteidl::core::K8sObjectMetadata_LabelsEntry_DoNotUse)}, - { 128, 135, sizeof(::flyteidl::core::K8sObjectMetadata_AnnotationsEntry_DoNotUse)}, - { 137, -1, sizeof(::flyteidl::core::K8sObjectMetadata)}, - { 144, -1, sizeof(::flyteidl::core::Sql)}, + { 22, -1, sizeof(::flyteidl::core::GPUAccelerator)}, + { 31, -1, sizeof(::flyteidl::core::ResourceMetadata)}, + { 38, 45, sizeof(::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse)}, + { 47, -1, sizeof(::flyteidl::core::TaskMetadata)}, + { 65, 72, sizeof(::flyteidl::core::TaskTemplate_ConfigEntry_DoNotUse)}, + { 74, -1, sizeof(::flyteidl::core::TaskTemplate)}, + { 91, -1, sizeof(::flyteidl::core::ContainerPort)}, + { 97, -1, sizeof(::flyteidl::core::Container)}, + { 111, -1, sizeof(::flyteidl::core::IOStrategy)}, + { 118, -1, sizeof(::flyteidl::core::DataLoadingConfig)}, + { 128, -1, sizeof(::flyteidl::core::K8sPod)}, + { 136, 143, sizeof(::flyteidl::core::K8sObjectMetadata_LabelsEntry_DoNotUse)}, + { 145, 152, sizeof(::flyteidl::core::K8sObjectMetadata_AnnotationsEntry_DoNotUse)}, + { 154, -1, sizeof(::flyteidl::core::K8sObjectMetadata)}, + { 161, -1, sizeof(::flyteidl::core::Sql)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { reinterpret_cast(&::flyteidl::core::_Resources_ResourceEntry_default_instance_), reinterpret_cast(&::flyteidl::core::_Resources_default_instance_), reinterpret_cast(&::flyteidl::core::_RuntimeMetadata_default_instance_), + reinterpret_cast(&::flyteidl::core::_GPUAccelerator_default_instance_), + reinterpret_cast(&::flyteidl::core::_ResourceMetadata_default_instance_), reinterpret_cast(&::flyteidl::core::_TaskMetadata_TagsEntry_DoNotUse_default_instance_), reinterpret_cast(&::flyteidl::core::_TaskMetadata_default_instance_), reinterpret_cast(&::flyteidl::core::_TaskTemplate_ConfigEntry_DoNotUse_default_instance_), @@ -571,7 +637,7 @@ static ::google::protobuf::Message const * const file_default_instances[] = { ::google::protobuf::internal::AssignDescriptorsTable assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto = { {}, AddDescriptors_flyteidl_2fcore_2ftasks_2eproto, "flyteidl/core/tasks.proto", schemas, file_default_instances, TableStruct_flyteidl_2fcore_2ftasks_2eproto::offsets, - file_level_metadata_flyteidl_2fcore_2ftasks_2eproto, 16, file_level_enum_descriptors_flyteidl_2fcore_2ftasks_2eproto, file_level_service_descriptors_flyteidl_2fcore_2ftasks_2eproto, + file_level_metadata_flyteidl_2fcore_2ftasks_2eproto, 18, file_level_enum_descriptors_flyteidl_2fcore_2ftasks_2eproto, file_level_service_descriptors_flyteidl_2fcore_2ftasks_2eproto, }; const char descriptor_table_protodef_flyteidl_2fcore_2ftasks_2eproto[] = @@ -592,77 +658,84 @@ const char descriptor_table_protodef_flyteidl_2fcore_2ftasks_2eproto[] = "ype\030\001 \001(\0162*.flyteidl.core.RuntimeMetadat" "a.RuntimeType\022\017\n\007version\030\002 \001(\t\022\016\n\006flavor" "\030\003 \001(\t\"\'\n\013RuntimeType\022\t\n\005OTHER\020\000\022\r\n\tFLYT" - "E_SDK\020\001\"\316\003\n\014TaskMetadata\022\024\n\014discoverable" - "\030\001 \001(\010\022/\n\007runtime\030\002 \001(\0132\036.flyteidl.core." - "RuntimeMetadata\022*\n\007timeout\030\004 \001(\0132\031.googl" - "e.protobuf.Duration\022-\n\007retries\030\005 \001(\0132\034.f" - "lyteidl.core.RetryStrategy\022\031\n\021discovery_" - "version\030\006 \001(\t\022 \n\030deprecated_error_messag" - "e\030\007 \001(\t\022\027\n\rinterruptible\030\010 \001(\010H\000\022\032\n\022cach" - "e_serializable\030\t \001(\010\022\026\n\016generates_deck\030\n" - " \001(\010\0223\n\004tags\030\013 \003(\0132%.flyteidl.core.TaskM" - "etadata.TagsEntry\022\031\n\021pod_template_name\030\014" - " \001(\t\032+\n\tTagsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030" - "\002 \001(\t:\0028\001B\025\n\023interruptible_value\"\220\004\n\014Tas" - "kTemplate\022%\n\002id\030\001 \001(\0132\031.flyteidl.core.Id" - "entifier\022\014\n\004type\030\002 \001(\t\022-\n\010metadata\030\003 \001(\013" - "2\033.flyteidl.core.TaskMetadata\0220\n\tinterfa" - "ce\030\004 \001(\0132\035.flyteidl.core.TypedInterface\022" - "\'\n\006custom\030\005 \001(\0132\027.google.protobuf.Struct" - "\022-\n\tcontainer\030\006 \001(\0132\030.flyteidl.core.Cont" - "ainerH\000\022(\n\007k8s_pod\030\021 \001(\0132\025.flyteidl.core" - ".K8sPodH\000\022!\n\003sql\030\022 \001(\0132\022.flyteidl.core.S" - "qlH\000\022\031\n\021task_type_version\030\007 \001(\005\0228\n\020secur" - "ity_context\030\010 \001(\0132\036.flyteidl.core.Securi" - "tyContext\0227\n\006config\030\020 \003(\0132\'.flyteidl.cor" - "e.TaskTemplate.ConfigEntry\032-\n\013ConfigEntr" - "y\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001B\010\n\006tar" - "get\"\'\n\rContainerPort\022\026\n\016container_port\030\001" - " \001(\r\"\255\003\n\tContainer\022\r\n\005image\030\001 \001(\t\022\017\n\007com" - "mand\030\002 \003(\t\022\014\n\004args\030\003 \003(\t\022+\n\tresources\030\004 " - "\001(\0132\030.flyteidl.core.Resources\022(\n\003env\030\005 \003" - "(\0132\033.flyteidl.core.KeyValuePair\022/\n\006confi" - "g\030\006 \003(\0132\033.flyteidl.core.KeyValuePairB\002\030\001" - "\022+\n\005ports\030\007 \003(\0132\034.flyteidl.core.Containe" - "rPort\0225\n\013data_config\030\t \001(\0132 .flyteidl.co" - "re.DataLoadingConfig\022;\n\014architecture\030\n \001" - "(\0162%.flyteidl.core.Container.Architectur" - "e\"I\n\014Architecture\022\013\n\007UNKNOWN\020\000\022\t\n\005AMD64\020" - "\001\022\t\n\005ARM64\020\002\022\n\n\006ARM_V6\020\003\022\n\n\006ARM_V7\020\004\"\233\002\n" - "\nIOStrategy\022=\n\rdownload_mode\030\001 \001(\0162&.fly" - "teidl.core.IOStrategy.DownloadMode\0229\n\013up" - "load_mode\030\002 \001(\0162$.flyteidl.core.IOStrate" - "gy.UploadMode\"L\n\014DownloadMode\022\022\n\016DOWNLOA" - "D_EAGER\020\000\022\023\n\017DOWNLOAD_STREAM\020\001\022\023\n\017DO_NOT" - "_DOWNLOAD\020\002\"E\n\nUploadMode\022\022\n\016UPLOAD_ON_E" - "XIT\020\000\022\020\n\014UPLOAD_EAGER\020\001\022\021\n\rDO_NOT_UPLOAD" - "\020\002\"\363\001\n\021DataLoadingConfig\022\017\n\007enabled\030\001 \001(" - "\010\022\022\n\ninput_path\030\002 \001(\t\022\023\n\013output_path\030\003 \001" - "(\t\022A\n\006format\030\004 \001(\01621.flyteidl.core.DataL" - "oadingConfig.LiteralMapFormat\022.\n\013io_stra" - "tegy\030\005 \001(\0132\031.flyteidl.core.IOStrategy\"1\n" - "\020LiteralMapFormat\022\010\n\004JSON\020\000\022\010\n\004YAML\020\001\022\t\n" - "\005PROTO\020\002\"\236\001\n\006K8sPod\0222\n\010metadata\030\001 \001(\0132 ." - "flyteidl.core.K8sObjectMetadata\022)\n\010pod_s" - "pec\030\002 \001(\0132\027.google.protobuf.Struct\0225\n\013da" - "ta_config\030\003 \001(\0132 .flyteidl.core.DataLoad" - "ingConfig\"\374\001\n\021K8sObjectMetadata\022<\n\006label" - "s\030\001 \003(\0132,.flyteidl.core.K8sObjectMetadat" - "a.LabelsEntry\022F\n\013annotations\030\002 \003(\01321.fly" - "teidl.core.K8sObjectMetadata.Annotations" - "Entry\032-\n\013LabelsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005val" - "ue\030\002 \001(\t:\0028\001\0322\n\020AnnotationsEntry\022\013\n\003key\030" - "\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"~\n\003Sql\022\021\n\tstate" - "ment\030\001 \001(\t\022+\n\007dialect\030\002 \001(\0162\032.flyteidl.c" - "ore.Sql.Dialect\"7\n\007Dialect\022\r\n\tUNDEFINED\020" - "\000\022\010\n\004ANSI\020\001\022\010\n\004HIVE\020\002\022\t\n\005OTHER\020\003B6Z4gith" - "ub.com/flyteorg/flyteidl/gen/pb-go/flyte" - "idl/coreb\006proto3" + "E_SDK\020\001\"k\n\016GPUAccelerator\022\016\n\006device\030\001 \001(" + "\t\022\027\n\runpartitioned\030\002 \001(\010H\000\022\030\n\016partition_" + "size\030\003 \001(\tH\000B\026\n\024partition_size_value\"a\n\020" + "ResourceMetadata\0228\n\017gpu_accelerator\030\001 \001(" + "\0132\035.flyteidl.core.GPUAcceleratorH\000B\023\n\021ac" + "celerator_value\"\212\004\n\014TaskMetadata\022\024\n\014disc" + "overable\030\001 \001(\010\022/\n\007runtime\030\002 \001(\0132\036.flytei" + "dl.core.RuntimeMetadata\022*\n\007timeout\030\004 \001(\013" + "2\031.google.protobuf.Duration\022-\n\007retries\030\005" + " \001(\0132\034.flyteidl.core.RetryStrategy\022\031\n\021di" + "scovery_version\030\006 \001(\t\022 \n\030deprecated_erro" + "r_message\030\007 \001(\t\022\027\n\rinterruptible\030\010 \001(\010H\000" + "\022\032\n\022cache_serializable\030\t \001(\010\022\026\n\016generate" + "s_deck\030\n \001(\010\0223\n\004tags\030\013 \003(\0132%.flyteidl.co" + "re.TaskMetadata.TagsEntry\022\031\n\021pod_templat" + "e_name\030\014 \001(\t\022:\n\021resource_metadata\030\r \001(\0132" + "\037.flyteidl.core.ResourceMetadata\032+\n\tTags" + "Entry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001B\025\n" + "\023interruptible_value\"\220\004\n\014TaskTemplate\022%\n" + "\002id\030\001 \001(\0132\031.flyteidl.core.Identifier\022\014\n\004" + "type\030\002 \001(\t\022-\n\010metadata\030\003 \001(\0132\033.flyteidl." + "core.TaskMetadata\0220\n\tinterface\030\004 \001(\0132\035.f" + "lyteidl.core.TypedInterface\022\'\n\006custom\030\005 " + "\001(\0132\027.google.protobuf.Struct\022-\n\tcontaine" + "r\030\006 \001(\0132\030.flyteidl.core.ContainerH\000\022(\n\007k" + "8s_pod\030\021 \001(\0132\025.flyteidl.core.K8sPodH\000\022!\n" + "\003sql\030\022 \001(\0132\022.flyteidl.core.SqlH\000\022\031\n\021task" + "_type_version\030\007 \001(\005\0228\n\020security_context\030" + "\010 \001(\0132\036.flyteidl.core.SecurityContext\0227\n" + "\006config\030\020 \003(\0132\'.flyteidl.core.TaskTempla" + "te.ConfigEntry\032-\n\013ConfigEntry\022\013\n\003key\030\001 \001" + "(\t\022\r\n\005value\030\002 \001(\t:\0028\001B\010\n\006target\"\'\n\rConta" + "inerPort\022\026\n\016container_port\030\001 \001(\r\"\255\003\n\tCon" + "tainer\022\r\n\005image\030\001 \001(\t\022\017\n\007command\030\002 \003(\t\022\014" + "\n\004args\030\003 \003(\t\022+\n\tresources\030\004 \001(\0132\030.flytei" + "dl.core.Resources\022(\n\003env\030\005 \003(\0132\033.flyteid" + "l.core.KeyValuePair\022/\n\006config\030\006 \003(\0132\033.fl" + "yteidl.core.KeyValuePairB\002\030\001\022+\n\005ports\030\007 " + "\003(\0132\034.flyteidl.core.ContainerPort\0225\n\013dat" + "a_config\030\t \001(\0132 .flyteidl.core.DataLoadi" + "ngConfig\022;\n\014architecture\030\n \001(\0162%.flyteid" + "l.core.Container.Architecture\"I\n\014Archite" + "cture\022\013\n\007UNKNOWN\020\000\022\t\n\005AMD64\020\001\022\t\n\005ARM64\020\002" + "\022\n\n\006ARM_V6\020\003\022\n\n\006ARM_V7\020\004\"\233\002\n\nIOStrategy\022" + "=\n\rdownload_mode\030\001 \001(\0162&.flyteidl.core.I" + "OStrategy.DownloadMode\0229\n\013upload_mode\030\002 " + "\001(\0162$.flyteidl.core.IOStrategy.UploadMod" + "e\"L\n\014DownloadMode\022\022\n\016DOWNLOAD_EAGER\020\000\022\023\n" + "\017DOWNLOAD_STREAM\020\001\022\023\n\017DO_NOT_DOWNLOAD\020\002\"" + "E\n\nUploadMode\022\022\n\016UPLOAD_ON_EXIT\020\000\022\020\n\014UPL" + "OAD_EAGER\020\001\022\021\n\rDO_NOT_UPLOAD\020\002\"\363\001\n\021DataL" + "oadingConfig\022\017\n\007enabled\030\001 \001(\010\022\022\n\ninput_p" + "ath\030\002 \001(\t\022\023\n\013output_path\030\003 \001(\t\022A\n\006format" + "\030\004 \001(\01621.flyteidl.core.DataLoadingConfig" + ".LiteralMapFormat\022.\n\013io_strategy\030\005 \001(\0132\031" + ".flyteidl.core.IOStrategy\"1\n\020LiteralMapF" + "ormat\022\010\n\004JSON\020\000\022\010\n\004YAML\020\001\022\t\n\005PROTO\020\002\"\236\001\n" + "\006K8sPod\0222\n\010metadata\030\001 \001(\0132 .flyteidl.cor" + "e.K8sObjectMetadata\022)\n\010pod_spec\030\002 \001(\0132\027." + "google.protobuf.Struct\0225\n\013data_config\030\003 " + "\001(\0132 .flyteidl.core.DataLoadingConfig\"\374\001" + "\n\021K8sObjectMetadata\022<\n\006labels\030\001 \003(\0132,.fl" + "yteidl.core.K8sObjectMetadata.LabelsEntr" + "y\022F\n\013annotations\030\002 \003(\01321.flyteidl.core.K" + "8sObjectMetadata.AnnotationsEntry\032-\n\013Lab" + "elsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001" + "\0322\n\020AnnotationsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005val" + "ue\030\002 \001(\t:\0028\001\"~\n\003Sql\022\021\n\tstatement\030\001 \001(\t\022+" + "\n\007dialect\030\002 \001(\0162\032.flyteidl.core.Sql.Dial" + "ect\"7\n\007Dialect\022\r\n\tUNDEFINED\020\000\022\010\n\004ANSI\020\001\022" + "\010\n\004HIVE\020\002\022\t\n\005OTHER\020\003B6Z4github.com/flyte" + "org/flyteidl/gen/pb-go/flyteidl/coreb\006pr" + "oto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2ftasks_2eproto = { false, InitDefaults_flyteidl_2fcore_2ftasks_2eproto, descriptor_table_protodef_flyteidl_2fcore_2ftasks_2eproto, - "flyteidl/core/tasks.proto", &assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto, 3296, + "flyteidl/core/tasks.proto", &assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto, 3564, }; void AddDescriptors_flyteidl_2fcore_2ftasks_2eproto() { @@ -1601,22 +1674,927 @@ const RuntimeMetadata& RuntimeMetadata::default_instance() { } -void RuntimeMetadata::Clear() { -// @@protoc_insertion_point(message_clear_start:flyteidl.core.RuntimeMetadata) +void RuntimeMetadata::Clear() { +// @@protoc_insertion_point(message_clear_start:flyteidl.core.RuntimeMetadata) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + version_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + flavor_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + type_ = 0; + _internal_metadata_.Clear(); +} + +#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER +const char* RuntimeMetadata::_InternalParse(const char* begin, const char* end, void* object, + ::google::protobuf::internal::ParseContext* ctx) { + auto msg = static_cast(object); + ::google::protobuf::int32 size; (void)size; + int depth; (void)depth; + ::google::protobuf::uint32 tag; + ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; + auto ptr = begin; + while (ptr < end) { + ptr = ::google::protobuf::io::Parse32(ptr, &tag); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + switch (tag >> 3) { + // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; + case 1: { + if (static_cast<::google::protobuf::uint8>(tag) != 8) goto handle_unusual; + ::google::protobuf::uint64 val = ::google::protobuf::internal::ReadVarint(&ptr); + msg->set_type(static_cast<::flyteidl::core::RuntimeMetadata_RuntimeType>(val)); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + break; + } + // string version = 2; + case 2: { + if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + ctx->extra_parse_data().SetFieldName("flyteidl.core.RuntimeMetadata.version"); + object = msg->mutable_version(); + if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { + parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; + goto string_till_end; + } + GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); + ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); + ptr += size; + break; + } + // string flavor = 3; + case 3: { + if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + ctx->extra_parse_data().SetFieldName("flyteidl.core.RuntimeMetadata.flavor"); + object = msg->mutable_flavor(); + if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { + parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; + goto string_till_end; + } + GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); + ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); + ptr += size; + break; + } + default: { + handle_unusual: + if ((tag & 7) == 4 || tag == 0) { + ctx->EndGroup(tag); + return ptr; + } + auto res = UnknownFieldParse(tag, {_InternalParse, msg}, + ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); + ptr = res.first; + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); + if (res.second) return ptr; + } + } // switch + } // while + return ptr; +string_till_end: + static_cast<::std::string*>(object)->clear(); + static_cast<::std::string*>(object)->reserve(size); + goto len_delim_till_end; +len_delim_till_end: + return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, + {parser_till_end, object}, size); +} +#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER +bool RuntimeMetadata::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:flyteidl.core.RuntimeMetadata) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == (8 & 0xFF)) { + int value = 0; + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( + input, &value))); + set_type(static_cast< ::flyteidl::core::RuntimeMetadata_RuntimeType >(value)); + } else { + goto handle_unusual; + } + break; + } + + // string version = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_version())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->version().data(), static_cast(this->version().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "flyteidl.core.RuntimeMetadata.version")); + } else { + goto handle_unusual; + } + break; + } + + // string flavor = 3; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_flavor())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->flavor().data(), static_cast(this->flavor().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "flyteidl.core.RuntimeMetadata.flavor")); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:flyteidl.core.RuntimeMetadata) + return true; +failure: + // @@protoc_insertion_point(parse_failure:flyteidl.core.RuntimeMetadata) + return false; +#undef DO_ +} +#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + +void RuntimeMetadata::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:flyteidl.core.RuntimeMetadata) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; + if (this->type() != 0) { + ::google::protobuf::internal::WireFormatLite::WriteEnum( + 1, this->type(), output); + } + + // string version = 2; + if (this->version().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->version().data(), static_cast(this->version().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.RuntimeMetadata.version"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 2, this->version(), output); + } + + // string flavor = 3; + if (this->flavor().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->flavor().data(), static_cast(this->flavor().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.RuntimeMetadata.flavor"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 3, this->flavor(), output); + } + + if (_internal_metadata_.have_unknown_fields()) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + _internal_metadata_.unknown_fields(), output); + } + // @@protoc_insertion_point(serialize_end:flyteidl.core.RuntimeMetadata) +} + +::google::protobuf::uint8* RuntimeMetadata::InternalSerializeWithCachedSizesToArray( + ::google::protobuf::uint8* target) const { + // @@protoc_insertion_point(serialize_to_array_start:flyteidl.core.RuntimeMetadata) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; + if (this->type() != 0) { + target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( + 1, this->type(), target); + } + + // string version = 2; + if (this->version().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->version().data(), static_cast(this->version().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.RuntimeMetadata.version"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 2, this->version(), target); + } + + // string flavor = 3; + if (this->flavor().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->flavor().data(), static_cast(this->flavor().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.RuntimeMetadata.flavor"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 3, this->flavor(), target); + } + + if (_internal_metadata_.have_unknown_fields()) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields(), target); + } + // @@protoc_insertion_point(serialize_to_array_end:flyteidl.core.RuntimeMetadata) + return target; +} + +size_t RuntimeMetadata::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:flyteidl.core.RuntimeMetadata) + size_t total_size = 0; + + if (_internal_metadata_.have_unknown_fields()) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + _internal_metadata_.unknown_fields()); + } + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + // string version = 2; + if (this->version().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->version()); + } + + // string flavor = 3; + if (this->flavor().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->flavor()); + } + + // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; + if (this->type() != 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::EnumSize(this->type()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void RuntimeMetadata::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.core.RuntimeMetadata) + GOOGLE_DCHECK_NE(&from, this); + const RuntimeMetadata* source = + ::google::protobuf::DynamicCastToGenerated( + &from); + if (source == nullptr) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.core.RuntimeMetadata) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.core.RuntimeMetadata) + MergeFrom(*source); + } +} + +void RuntimeMetadata::MergeFrom(const RuntimeMetadata& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.core.RuntimeMetadata) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.version().size() > 0) { + + version_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.version_); + } + if (from.flavor().size() > 0) { + + flavor_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.flavor_); + } + if (from.type() != 0) { + set_type(from.type()); + } +} + +void RuntimeMetadata::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.core.RuntimeMetadata) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void RuntimeMetadata::CopyFrom(const RuntimeMetadata& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.core.RuntimeMetadata) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool RuntimeMetadata::IsInitialized() const { + return true; +} + +void RuntimeMetadata::Swap(RuntimeMetadata* other) { + if (other == this) return; + InternalSwap(other); +} +void RuntimeMetadata::InternalSwap(RuntimeMetadata* other) { + using std::swap; + _internal_metadata_.Swap(&other->_internal_metadata_); + version_.Swap(&other->version_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + flavor_.Swap(&other->flavor_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + swap(type_, other->type_); +} + +::google::protobuf::Metadata RuntimeMetadata::GetMetadata() const { + ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); + return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[kIndexInFileMessages]; +} + + +// =================================================================== + +void GPUAccelerator::InitAsDefaultInstance() { + ::flyteidl::core::_GPUAccelerator_default_instance_.unpartitioned_ = false; + ::flyteidl::core::_GPUAccelerator_default_instance_.partition_size_.UnsafeSetDefault( + &::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +class GPUAccelerator::HasBitSetters { + public: +}; + +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int GPUAccelerator::kDeviceFieldNumber; +const int GPUAccelerator::kUnpartitionedFieldNumber; +const int GPUAccelerator::kPartitionSizeFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +GPUAccelerator::GPUAccelerator() + : ::google::protobuf::Message(), _internal_metadata_(nullptr) { + SharedCtor(); + // @@protoc_insertion_point(constructor:flyteidl.core.GPUAccelerator) +} +GPUAccelerator::GPUAccelerator(const GPUAccelerator& from) + : ::google::protobuf::Message(), + _internal_metadata_(nullptr) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + device_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.device().size() > 0) { + device_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.device_); + } + clear_has_partition_size_value(); + switch (from.partition_size_value_case()) { + case kUnpartitioned: { + set_unpartitioned(from.unpartitioned()); + break; + } + case kPartitionSize: { + set_partition_size(from.partition_size()); + break; + } + case PARTITION_SIZE_VALUE_NOT_SET: { + break; + } + } + // @@protoc_insertion_point(copy_constructor:flyteidl.core.GPUAccelerator) +} + +void GPUAccelerator::SharedCtor() { + ::google::protobuf::internal::InitSCC( + &scc_info_GPUAccelerator_flyteidl_2fcore_2ftasks_2eproto.base); + device_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + clear_has_partition_size_value(); +} + +GPUAccelerator::~GPUAccelerator() { + // @@protoc_insertion_point(destructor:flyteidl.core.GPUAccelerator) + SharedDtor(); +} + +void GPUAccelerator::SharedDtor() { + device_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (has_partition_size_value()) { + clear_partition_size_value(); + } +} + +void GPUAccelerator::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const GPUAccelerator& GPUAccelerator::default_instance() { + ::google::protobuf::internal::InitSCC(&::scc_info_GPUAccelerator_flyteidl_2fcore_2ftasks_2eproto.base); + return *internal_default_instance(); +} + + +void GPUAccelerator::clear_partition_size_value() { +// @@protoc_insertion_point(one_of_clear_start:flyteidl.core.GPUAccelerator) + switch (partition_size_value_case()) { + case kUnpartitioned: { + // No need to clear + break; + } + case kPartitionSize: { + partition_size_value_.partition_size_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + break; + } + case PARTITION_SIZE_VALUE_NOT_SET: { + break; + } + } + _oneof_case_[0] = PARTITION_SIZE_VALUE_NOT_SET; +} + + +void GPUAccelerator::Clear() { +// @@protoc_insertion_point(message_clear_start:flyteidl.core.GPUAccelerator) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + device_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + clear_partition_size_value(); + _internal_metadata_.Clear(); +} + +#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER +const char* GPUAccelerator::_InternalParse(const char* begin, const char* end, void* object, + ::google::protobuf::internal::ParseContext* ctx) { + auto msg = static_cast(object); + ::google::protobuf::int32 size; (void)size; + int depth; (void)depth; + ::google::protobuf::uint32 tag; + ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; + auto ptr = begin; + while (ptr < end) { + ptr = ::google::protobuf::io::Parse32(ptr, &tag); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + switch (tag >> 3) { + // string device = 1; + case 1: { + if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + ctx->extra_parse_data().SetFieldName("flyteidl.core.GPUAccelerator.device"); + object = msg->mutable_device(); + if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { + parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; + goto string_till_end; + } + GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); + ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); + ptr += size; + break; + } + // bool unpartitioned = 2; + case 2: { + if (static_cast<::google::protobuf::uint8>(tag) != 16) goto handle_unusual; + msg->set_unpartitioned(::google::protobuf::internal::ReadVarint(&ptr)); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + break; + } + // string partition_size = 3; + case 3: { + if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + ctx->extra_parse_data().SetFieldName("flyteidl.core.GPUAccelerator.partition_size"); + object = msg->mutable_partition_size(); + if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { + parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; + goto string_till_end; + } + GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); + ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); + ptr += size; + break; + } + default: { + handle_unusual: + if ((tag & 7) == 4 || tag == 0) { + ctx->EndGroup(tag); + return ptr; + } + auto res = UnknownFieldParse(tag, {_InternalParse, msg}, + ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); + ptr = res.first; + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); + if (res.second) return ptr; + } + } // switch + } // while + return ptr; +string_till_end: + static_cast<::std::string*>(object)->clear(); + static_cast<::std::string*>(object)->reserve(size); + goto len_delim_till_end; +len_delim_till_end: + return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, + {parser_till_end, object}, size); +} +#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER +bool GPUAccelerator::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:flyteidl.core.GPUAccelerator) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string device = 1; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_device())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->device().data(), static_cast(this->device().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "flyteidl.core.GPUAccelerator.device")); + } else { + goto handle_unusual; + } + break; + } + + // bool unpartitioned = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == (16 & 0xFF)) { + clear_partition_size_value(); + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( + input, &partition_size_value_.unpartitioned_))); + set_has_unpartitioned(); + } else { + goto handle_unusual; + } + break; + } + + // string partition_size = 3; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_partition_size())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->partition_size().data(), static_cast(this->partition_size().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "flyteidl.core.GPUAccelerator.partition_size")); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:flyteidl.core.GPUAccelerator) + return true; +failure: + // @@protoc_insertion_point(parse_failure:flyteidl.core.GPUAccelerator) + return false; +#undef DO_ +} +#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + +void GPUAccelerator::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:flyteidl.core.GPUAccelerator) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string device = 1; + if (this->device().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->device().data(), static_cast(this->device().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.GPUAccelerator.device"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->device(), output); + } + + // bool unpartitioned = 2; + if (has_unpartitioned()) { + ::google::protobuf::internal::WireFormatLite::WriteBool(2, this->unpartitioned(), output); + } + + // string partition_size = 3; + if (has_partition_size()) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->partition_size().data(), static_cast(this->partition_size().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.GPUAccelerator.partition_size"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 3, this->partition_size(), output); + } + + if (_internal_metadata_.have_unknown_fields()) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + _internal_metadata_.unknown_fields(), output); + } + // @@protoc_insertion_point(serialize_end:flyteidl.core.GPUAccelerator) +} + +::google::protobuf::uint8* GPUAccelerator::InternalSerializeWithCachedSizesToArray( + ::google::protobuf::uint8* target) const { + // @@protoc_insertion_point(serialize_to_array_start:flyteidl.core.GPUAccelerator) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string device = 1; + if (this->device().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->device().data(), static_cast(this->device().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.GPUAccelerator.device"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->device(), target); + } + + // bool unpartitioned = 2; + if (has_unpartitioned()) { + target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(2, this->unpartitioned(), target); + } + + // string partition_size = 3; + if (has_partition_size()) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->partition_size().data(), static_cast(this->partition_size().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.GPUAccelerator.partition_size"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 3, this->partition_size(), target); + } + + if (_internal_metadata_.have_unknown_fields()) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields(), target); + } + // @@protoc_insertion_point(serialize_to_array_end:flyteidl.core.GPUAccelerator) + return target; +} + +size_t GPUAccelerator::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:flyteidl.core.GPUAccelerator) + size_t total_size = 0; + + if (_internal_metadata_.have_unknown_fields()) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + _internal_metadata_.unknown_fields()); + } + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + // string device = 1; + if (this->device().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->device()); + } + + switch (partition_size_value_case()) { + // bool unpartitioned = 2; + case kUnpartitioned: { + total_size += 1 + 1; + break; + } + // string partition_size = 3; + case kPartitionSize: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->partition_size()); + break; + } + case PARTITION_SIZE_VALUE_NOT_SET: { + break; + } + } + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void GPUAccelerator::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.core.GPUAccelerator) + GOOGLE_DCHECK_NE(&from, this); + const GPUAccelerator* source = + ::google::protobuf::DynamicCastToGenerated( + &from); + if (source == nullptr) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.core.GPUAccelerator) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.core.GPUAccelerator) + MergeFrom(*source); + } +} + +void GPUAccelerator::MergeFrom(const GPUAccelerator& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.core.GPUAccelerator) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.device().size() > 0) { + + device_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.device_); + } + switch (from.partition_size_value_case()) { + case kUnpartitioned: { + set_unpartitioned(from.unpartitioned()); + break; + } + case kPartitionSize: { + set_partition_size(from.partition_size()); + break; + } + case PARTITION_SIZE_VALUE_NOT_SET: { + break; + } + } +} + +void GPUAccelerator::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.core.GPUAccelerator) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void GPUAccelerator::CopyFrom(const GPUAccelerator& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.core.GPUAccelerator) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool GPUAccelerator::IsInitialized() const { + return true; +} + +void GPUAccelerator::Swap(GPUAccelerator* other) { + if (other == this) return; + InternalSwap(other); +} +void GPUAccelerator::InternalSwap(GPUAccelerator* other) { + using std::swap; + _internal_metadata_.Swap(&other->_internal_metadata_); + device_.Swap(&other->device_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + swap(partition_size_value_, other->partition_size_value_); + swap(_oneof_case_[0], other->_oneof_case_[0]); +} + +::google::protobuf::Metadata GPUAccelerator::GetMetadata() const { + ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); + return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[kIndexInFileMessages]; +} + + +// =================================================================== + +void ResourceMetadata::InitAsDefaultInstance() { + ::flyteidl::core::_ResourceMetadata_default_instance_.gpu_accelerator_ = const_cast< ::flyteidl::core::GPUAccelerator*>( + ::flyteidl::core::GPUAccelerator::internal_default_instance()); +} +class ResourceMetadata::HasBitSetters { + public: + static const ::flyteidl::core::GPUAccelerator& gpu_accelerator(const ResourceMetadata* msg); +}; + +const ::flyteidl::core::GPUAccelerator& +ResourceMetadata::HasBitSetters::gpu_accelerator(const ResourceMetadata* msg) { + return *msg->accelerator_value_.gpu_accelerator_; +} +void ResourceMetadata::set_allocated_gpu_accelerator(::flyteidl::core::GPUAccelerator* gpu_accelerator) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + clear_accelerator_value(); + if (gpu_accelerator) { + ::google::protobuf::Arena* submessage_arena = nullptr; + if (message_arena != submessage_arena) { + gpu_accelerator = ::google::protobuf::internal::GetOwnedMessage( + message_arena, gpu_accelerator, submessage_arena); + } + set_has_gpu_accelerator(); + accelerator_value_.gpu_accelerator_ = gpu_accelerator; + } + // @@protoc_insertion_point(field_set_allocated:flyteidl.core.ResourceMetadata.gpu_accelerator) +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int ResourceMetadata::kGpuAcceleratorFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +ResourceMetadata::ResourceMetadata() + : ::google::protobuf::Message(), _internal_metadata_(nullptr) { + SharedCtor(); + // @@protoc_insertion_point(constructor:flyteidl.core.ResourceMetadata) +} +ResourceMetadata::ResourceMetadata(const ResourceMetadata& from) + : ::google::protobuf::Message(), + _internal_metadata_(nullptr) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + clear_has_accelerator_value(); + switch (from.accelerator_value_case()) { + case kGpuAccelerator: { + mutable_gpu_accelerator()->::flyteidl::core::GPUAccelerator::MergeFrom(from.gpu_accelerator()); + break; + } + case ACCELERATOR_VALUE_NOT_SET: { + break; + } + } + // @@protoc_insertion_point(copy_constructor:flyteidl.core.ResourceMetadata) +} + +void ResourceMetadata::SharedCtor() { + ::google::protobuf::internal::InitSCC( + &scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto.base); + clear_has_accelerator_value(); +} + +ResourceMetadata::~ResourceMetadata() { + // @@protoc_insertion_point(destructor:flyteidl.core.ResourceMetadata) + SharedDtor(); +} + +void ResourceMetadata::SharedDtor() { + if (has_accelerator_value()) { + clear_accelerator_value(); + } +} + +void ResourceMetadata::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ResourceMetadata& ResourceMetadata::default_instance() { + ::google::protobuf::internal::InitSCC(&::scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto.base); + return *internal_default_instance(); +} + + +void ResourceMetadata::clear_accelerator_value() { +// @@protoc_insertion_point(one_of_clear_start:flyteidl.core.ResourceMetadata) + switch (accelerator_value_case()) { + case kGpuAccelerator: { + delete accelerator_value_.gpu_accelerator_; + break; + } + case ACCELERATOR_VALUE_NOT_SET: { + break; + } + } + _oneof_case_[0] = ACCELERATOR_VALUE_NOT_SET; +} + + +void ResourceMetadata::Clear() { +// @@protoc_insertion_point(message_clear_start:flyteidl.core.ResourceMetadata) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - version_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - flavor_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - type_ = 0; + clear_accelerator_value(); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER -const char* RuntimeMetadata::_InternalParse(const char* begin, const char* end, void* object, +const char* ResourceMetadata::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { - auto msg = static_cast(object); + auto msg = static_cast(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; @@ -1626,44 +2604,17 @@ const char* RuntimeMetadata::_InternalParse(const char* begin, const char* end, ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { - // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; + // .flyteidl.core.GPUAccelerator gpu_accelerator = 1; case 1: { - if (static_cast<::google::protobuf::uint8>(tag) != 8) goto handle_unusual; - ::google::protobuf::uint64 val = ::google::protobuf::internal::ReadVarint(&ptr); - msg->set_type(static_cast<::flyteidl::core::RuntimeMetadata_RuntimeType>(val)); - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - break; - } - // string version = 2; - case 2: { - if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; - ptr = ::google::protobuf::io::ReadSize(ptr, &size); - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - ctx->extra_parse_data().SetFieldName("flyteidl.core.RuntimeMetadata.version"); - object = msg->mutable_version(); - if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { - parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; - goto string_till_end; - } - GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); - ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); - ptr += size; - break; - } - // string flavor = 3; - case 3: { - if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; + if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - ctx->extra_parse_data().SetFieldName("flyteidl.core.RuntimeMetadata.flavor"); - object = msg->mutable_flavor(); - if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { - parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; - goto string_till_end; - } - GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); - ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); + parser_till_end = ::flyteidl::core::GPUAccelerator::_InternalParse; + object = msg->mutable_gpu_accelerator(); + if (size > end - ptr) goto len_delim_till_end; ptr += size; + GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( + {parser_till_end, object}, ptr - size, ptr)); break; } default: { @@ -1681,63 +2632,26 @@ const char* RuntimeMetadata::_InternalParse(const char* begin, const char* end, } // switch } // while return ptr; -string_till_end: - static_cast<::std::string*>(object)->clear(); - static_cast<::std::string*>(object)->reserve(size); - goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER -bool RuntimeMetadata::MergePartialFromCodedStream( +bool ResourceMetadata::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; - // @@protoc_insertion_point(parse_start:flyteidl.core.RuntimeMetadata) + // @@protoc_insertion_point(parse_start:flyteidl.core.ResourceMetadata) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; + // .flyteidl.core.GPUAccelerator gpu_accelerator = 1; case 1: { - if (static_cast< ::google::protobuf::uint8>(tag) == (8 & 0xFF)) { - int value = 0; - DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< - int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( - input, &value))); - set_type(static_cast< ::flyteidl::core::RuntimeMetadata_RuntimeType >(value)); - } else { - goto handle_unusual; - } - break; - } - - // string version = 2; - case 2: { - if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_version())); - DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->version().data(), static_cast(this->version().length()), - ::google::protobuf::internal::WireFormatLite::PARSE, - "flyteidl.core.RuntimeMetadata.version")); - } else { - goto handle_unusual; - } - break; - } - - // string flavor = 3; - case 3: { - if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_flavor())); - DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->flavor().data(), static_cast(this->flavor().length()), - ::google::protobuf::internal::WireFormatLite::PARSE, - "flyteidl.core.RuntimeMetadata.flavor")); + if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_gpu_accelerator())); } else { goto handle_unusual; } @@ -1756,98 +2670,57 @@ bool RuntimeMetadata::MergePartialFromCodedStream( } } success: - // @@protoc_insertion_point(parse_success:flyteidl.core.RuntimeMetadata) + // @@protoc_insertion_point(parse_success:flyteidl.core.ResourceMetadata) return true; failure: - // @@protoc_insertion_point(parse_failure:flyteidl.core.RuntimeMetadata) + // @@protoc_insertion_point(parse_failure:flyteidl.core.ResourceMetadata) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER -void RuntimeMetadata::SerializeWithCachedSizes( +void ResourceMetadata::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { - // @@protoc_insertion_point(serialize_start:flyteidl.core.RuntimeMetadata) + // @@protoc_insertion_point(serialize_start:flyteidl.core.ResourceMetadata) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; - if (this->type() != 0) { - ::google::protobuf::internal::WireFormatLite::WriteEnum( - 1, this->type(), output); - } - - // string version = 2; - if (this->version().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->version().data(), static_cast(this->version().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.core.RuntimeMetadata.version"); - ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 2, this->version(), output); - } - - // string flavor = 3; - if (this->flavor().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->flavor().data(), static_cast(this->flavor().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.core.RuntimeMetadata.flavor"); - ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 3, this->flavor(), output); + // .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + if (has_gpu_accelerator()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 1, HasBitSetters::gpu_accelerator(this), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } - // @@protoc_insertion_point(serialize_end:flyteidl.core.RuntimeMetadata) + // @@protoc_insertion_point(serialize_end:flyteidl.core.ResourceMetadata) } -::google::protobuf::uint8* RuntimeMetadata::InternalSerializeWithCachedSizesToArray( +::google::protobuf::uint8* ResourceMetadata::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { - // @@protoc_insertion_point(serialize_to_array_start:flyteidl.core.RuntimeMetadata) + // @@protoc_insertion_point(serialize_to_array_start:flyteidl.core.ResourceMetadata) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; - if (this->type() != 0) { - target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( - 1, this->type(), target); - } - - // string version = 2; - if (this->version().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->version().data(), static_cast(this->version().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.core.RuntimeMetadata.version"); - target = - ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 2, this->version(), target); - } - - // string flavor = 3; - if (this->flavor().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->flavor().data(), static_cast(this->flavor().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.core.RuntimeMetadata.flavor"); - target = - ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 3, this->flavor(), target); + // .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + if (has_gpu_accelerator()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 1, HasBitSetters::gpu_accelerator(this), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } - // @@protoc_insertion_point(serialize_to_array_end:flyteidl.core.RuntimeMetadata) + // @@protoc_insertion_point(serialize_to_array_end:flyteidl.core.ResourceMetadata) return target; } -size_t RuntimeMetadata::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:flyteidl.core.RuntimeMetadata) +size_t ResourceMetadata::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:flyteidl.core.ResourceMetadata) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { @@ -1859,99 +2732,86 @@ size_t RuntimeMetadata::ByteSizeLong() const { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string version = 2; - if (this->version().size() > 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::StringSize( - this->version()); - } - - // string flavor = 3; - if (this->flavor().size() > 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::StringSize( - this->flavor()); - } - - // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; - if (this->type() != 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::EnumSize(this->type()); + switch (accelerator_value_case()) { + // .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + case kGpuAccelerator: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *accelerator_value_.gpu_accelerator_); + break; + } + case ACCELERATOR_VALUE_NOT_SET: { + break; + } } - int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } -void RuntimeMetadata::MergeFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.core.RuntimeMetadata) +void ResourceMetadata::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.core.ResourceMetadata) GOOGLE_DCHECK_NE(&from, this); - const RuntimeMetadata* source = - ::google::protobuf::DynamicCastToGenerated( + const ResourceMetadata* source = + ::google::protobuf::DynamicCastToGenerated( &from); if (source == nullptr) { - // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.core.RuntimeMetadata) + // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.core.ResourceMetadata) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { - // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.core.RuntimeMetadata) + // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.core.ResourceMetadata) MergeFrom(*source); } } -void RuntimeMetadata::MergeFrom(const RuntimeMetadata& from) { -// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.core.RuntimeMetadata) +void ResourceMetadata::MergeFrom(const ResourceMetadata& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.core.ResourceMetadata) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - if (from.version().size() > 0) { - - version_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.version_); - } - if (from.flavor().size() > 0) { - - flavor_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.flavor_); - } - if (from.type() != 0) { - set_type(from.type()); + switch (from.accelerator_value_case()) { + case kGpuAccelerator: { + mutable_gpu_accelerator()->::flyteidl::core::GPUAccelerator::MergeFrom(from.gpu_accelerator()); + break; + } + case ACCELERATOR_VALUE_NOT_SET: { + break; + } } } -void RuntimeMetadata::CopyFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.core.RuntimeMetadata) +void ResourceMetadata::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.core.ResourceMetadata) if (&from == this) return; Clear(); MergeFrom(from); } -void RuntimeMetadata::CopyFrom(const RuntimeMetadata& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.core.RuntimeMetadata) +void ResourceMetadata::CopyFrom(const ResourceMetadata& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.core.ResourceMetadata) if (&from == this) return; Clear(); MergeFrom(from); } -bool RuntimeMetadata::IsInitialized() const { +bool ResourceMetadata::IsInitialized() const { return true; } -void RuntimeMetadata::Swap(RuntimeMetadata* other) { +void ResourceMetadata::Swap(ResourceMetadata* other) { if (other == this) return; InternalSwap(other); } -void RuntimeMetadata::InternalSwap(RuntimeMetadata* other) { +void ResourceMetadata::InternalSwap(ResourceMetadata* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); - version_.Swap(&other->version_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), - GetArenaNoVirtual()); - flavor_.Swap(&other->flavor_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), - GetArenaNoVirtual()); - swap(type_, other->type_); + swap(accelerator_value_, other->accelerator_value_); + swap(_oneof_case_[0], other->_oneof_case_[0]); } -::google::protobuf::Metadata RuntimeMetadata::GetMetadata() const { +::google::protobuf::Metadata ResourceMetadata::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[kIndexInFileMessages]; } @@ -1967,7 +2827,7 @@ void TaskMetadata_TagsEntry_DoNotUse::MergeFrom(const TaskMetadata_TagsEntry_DoN } ::google::protobuf::Metadata TaskMetadata_TagsEntry_DoNotUse::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); - return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[3]; + return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[5]; } void TaskMetadata_TagsEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -2008,12 +2868,15 @@ void TaskMetadata::InitAsDefaultInstance() { ::flyteidl::core::_TaskMetadata_default_instance_._instance.get_mutable()->retries_ = const_cast< ::flyteidl::core::RetryStrategy*>( ::flyteidl::core::RetryStrategy::internal_default_instance()); ::flyteidl::core::_TaskMetadata_default_instance_.interruptible_ = false; + ::flyteidl::core::_TaskMetadata_default_instance_._instance.get_mutable()->resource_metadata_ = const_cast< ::flyteidl::core::ResourceMetadata*>( + ::flyteidl::core::ResourceMetadata::internal_default_instance()); } class TaskMetadata::HasBitSetters { public: static const ::flyteidl::core::RuntimeMetadata& runtime(const TaskMetadata* msg); static const ::google::protobuf::Duration& timeout(const TaskMetadata* msg); static const ::flyteidl::core::RetryStrategy& retries(const TaskMetadata* msg); + static const ::flyteidl::core::ResourceMetadata& resource_metadata(const TaskMetadata* msg); }; const ::flyteidl::core::RuntimeMetadata& @@ -2028,6 +2891,10 @@ const ::flyteidl::core::RetryStrategy& TaskMetadata::HasBitSetters::retries(const TaskMetadata* msg) { return *msg->retries_; } +const ::flyteidl::core::ResourceMetadata& +TaskMetadata::HasBitSetters::resource_metadata(const TaskMetadata* msg) { + return *msg->resource_metadata_; +} void TaskMetadata::clear_timeout() { if (GetArenaNoVirtual() == nullptr && timeout_ != nullptr) { delete timeout_; @@ -2052,6 +2919,7 @@ const int TaskMetadata::kCacheSerializableFieldNumber; const int TaskMetadata::kGeneratesDeckFieldNumber; const int TaskMetadata::kTagsFieldNumber; const int TaskMetadata::kPodTemplateNameFieldNumber; +const int TaskMetadata::kResourceMetadataFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 TaskMetadata::TaskMetadata() @@ -2091,6 +2959,11 @@ TaskMetadata::TaskMetadata(const TaskMetadata& from) } else { retries_ = nullptr; } + if (from.has_resource_metadata()) { + resource_metadata_ = new ::flyteidl::core::ResourceMetadata(*from.resource_metadata_); + } else { + resource_metadata_ = nullptr; + } ::memcpy(&discoverable_, &from.discoverable_, static_cast(reinterpret_cast(&generates_deck_) - reinterpret_cast(&discoverable_)) + sizeof(generates_deck_)); @@ -2131,6 +3004,7 @@ void TaskMetadata::SharedDtor() { if (this != internal_default_instance()) delete runtime_; if (this != internal_default_instance()) delete timeout_; if (this != internal_default_instance()) delete retries_; + if (this != internal_default_instance()) delete resource_metadata_; if (has_interruptible_value()) { clear_interruptible_value(); } @@ -2182,6 +3056,10 @@ void TaskMetadata::Clear() { delete retries_; } retries_ = nullptr; + if (GetArenaNoVirtual() == nullptr && resource_metadata_ != nullptr) { + delete resource_metadata_; + } + resource_metadata_ = nullptr; ::memset(&discoverable_, 0, static_cast( reinterpret_cast(&generates_deck_) - reinterpret_cast(&discoverable_)) + sizeof(generates_deck_)); @@ -2336,6 +3214,19 @@ const char* TaskMetadata::_InternalParse(const char* begin, const char* end, voi ptr += size; break; } + // .flyteidl.core.ResourceMetadata resource_metadata = 13; + case 13: { + if (static_cast<::google::protobuf::uint8>(tag) != 106) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + parser_till_end = ::flyteidl::core::ResourceMetadata::_InternalParse; + object = msg->mutable_resource_metadata(); + if (size > end - ptr) goto len_delim_till_end; + ptr += size; + GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( + {parser_till_end, object}, ptr - size, ptr)); + break; + } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -2527,6 +3418,17 @@ bool TaskMetadata::MergePartialFromCodedStream( break; } + // .flyteidl.core.ResourceMetadata resource_metadata = 13; + case 13: { + if (static_cast< ::google::protobuf::uint8>(tag) == (106 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_resource_metadata())); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -2671,6 +3573,12 @@ void TaskMetadata::SerializeWithCachedSizes( 12, this->pod_template_name(), output); } + // .flyteidl.core.ResourceMetadata resource_metadata = 13; + if (this->has_resource_metadata()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 13, HasBitSetters::resource_metadata(this), output); + } + if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -2807,6 +3715,13 @@ ::google::protobuf::uint8* TaskMetadata::InternalSerializeWithCachedSizesToArray 12, this->pod_template_name(), target); } + // .flyteidl.core.ResourceMetadata resource_metadata = 13; + if (this->has_resource_metadata()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 13, HasBitSetters::resource_metadata(this), target); + } + if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -2884,6 +3799,13 @@ size_t TaskMetadata::ByteSizeLong() const { *retries_); } + // .flyteidl.core.ResourceMetadata resource_metadata = 13; + if (this->has_resource_metadata()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *resource_metadata_); + } + // bool discoverable = 1; if (this->discoverable() != 0) { total_size += 1 + 1; @@ -2958,6 +3880,9 @@ void TaskMetadata::MergeFrom(const TaskMetadata& from) { if (from.has_retries()) { mutable_retries()->::flyteidl::core::RetryStrategy::MergeFrom(from.retries()); } + if (from.has_resource_metadata()) { + mutable_resource_metadata()->::flyteidl::core::ResourceMetadata::MergeFrom(from.resource_metadata()); + } if (from.discoverable() != 0) { set_discoverable(from.discoverable()); } @@ -3013,6 +3938,7 @@ void TaskMetadata::InternalSwap(TaskMetadata* other) { swap(runtime_, other->runtime_); swap(timeout_, other->timeout_); swap(retries_, other->retries_); + swap(resource_metadata_, other->resource_metadata_); swap(discoverable_, other->discoverable_); swap(cache_serializable_, other->cache_serializable_); swap(generates_deck_, other->generates_deck_); @@ -3036,7 +3962,7 @@ void TaskTemplate_ConfigEntry_DoNotUse::MergeFrom(const TaskTemplate_ConfigEntry } ::google::protobuf::Metadata TaskTemplate_ConfigEntry_DoNotUse::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); - return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[5]; + return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[7]; } void TaskTemplate_ConfigEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -6537,7 +7463,7 @@ void K8sObjectMetadata_LabelsEntry_DoNotUse::MergeFrom(const K8sObjectMetadata_L } ::google::protobuf::Metadata K8sObjectMetadata_LabelsEntry_DoNotUse::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); - return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[12]; + return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[14]; } void K8sObjectMetadata_LabelsEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -6578,7 +7504,7 @@ void K8sObjectMetadata_AnnotationsEntry_DoNotUse::MergeFrom(const K8sObjectMetad } ::google::protobuf::Metadata K8sObjectMetadata_AnnotationsEntry_DoNotUse::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); - return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[13]; + return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[15]; } void K8sObjectMetadata_AnnotationsEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -7512,6 +8438,12 @@ template<> PROTOBUF_NOINLINE ::flyteidl::core::Resources* Arena::CreateMaybeMess template<> PROTOBUF_NOINLINE ::flyteidl::core::RuntimeMetadata* Arena::CreateMaybeMessage< ::flyteidl::core::RuntimeMetadata >(Arena* arena) { return Arena::CreateInternal< ::flyteidl::core::RuntimeMetadata >(arena); } +template<> PROTOBUF_NOINLINE ::flyteidl::core::GPUAccelerator* Arena::CreateMaybeMessage< ::flyteidl::core::GPUAccelerator >(Arena* arena) { + return Arena::CreateInternal< ::flyteidl::core::GPUAccelerator >(arena); +} +template<> PROTOBUF_NOINLINE ::flyteidl::core::ResourceMetadata* Arena::CreateMaybeMessage< ::flyteidl::core::ResourceMetadata >(Arena* arena) { + return Arena::CreateInternal< ::flyteidl::core::ResourceMetadata >(arena); +} template<> PROTOBUF_NOINLINE ::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse* Arena::CreateMaybeMessage< ::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse >(Arena* arena) { return Arena::CreateInternal< ::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse >(arena); } diff --git a/gen/pb-cpp/flyteidl/core/tasks.pb.h b/gen/pb-cpp/flyteidl/core/tasks.pb.h index 430d86712..66c0f77a8 100644 --- a/gen/pb-cpp/flyteidl/core/tasks.pb.h +++ b/gen/pb-cpp/flyteidl/core/tasks.pb.h @@ -51,7 +51,7 @@ struct TableStruct_flyteidl_2fcore_2ftasks_2eproto { PROTOBUF_SECTION_VARIABLE(protodesc_cold); static const ::google::protobuf::internal::AuxillaryParseTableField aux[] PROTOBUF_SECTION_VARIABLE(protodesc_cold); - static const ::google::protobuf::internal::ParseTable schema[16] + static const ::google::protobuf::internal::ParseTable schema[18] PROTOBUF_SECTION_VARIABLE(protodesc_cold); static const ::google::protobuf::internal::FieldMetadata field_metadata[]; static const ::google::protobuf::internal::SerializationTable serialization_table[]; @@ -69,6 +69,9 @@ extern ContainerPortDefaultTypeInternal _ContainerPort_default_instance_; class DataLoadingConfig; class DataLoadingConfigDefaultTypeInternal; extern DataLoadingConfigDefaultTypeInternal _DataLoadingConfig_default_instance_; +class GPUAccelerator; +class GPUAcceleratorDefaultTypeInternal; +extern GPUAcceleratorDefaultTypeInternal _GPUAccelerator_default_instance_; class IOStrategy; class IOStrategyDefaultTypeInternal; extern IOStrategyDefaultTypeInternal _IOStrategy_default_instance_; @@ -84,6 +87,9 @@ extern K8sObjectMetadata_LabelsEntry_DoNotUseDefaultTypeInternal _K8sObjectMetad class K8sPod; class K8sPodDefaultTypeInternal; extern K8sPodDefaultTypeInternal _K8sPod_default_instance_; +class ResourceMetadata; +class ResourceMetadataDefaultTypeInternal; +extern ResourceMetadataDefaultTypeInternal _ResourceMetadata_default_instance_; class Resources; class ResourcesDefaultTypeInternal; extern ResourcesDefaultTypeInternal _Resources_default_instance_; @@ -115,11 +121,13 @@ namespace protobuf { template<> ::flyteidl::core::Container* Arena::CreateMaybeMessage<::flyteidl::core::Container>(Arena*); template<> ::flyteidl::core::ContainerPort* Arena::CreateMaybeMessage<::flyteidl::core::ContainerPort>(Arena*); template<> ::flyteidl::core::DataLoadingConfig* Arena::CreateMaybeMessage<::flyteidl::core::DataLoadingConfig>(Arena*); +template<> ::flyteidl::core::GPUAccelerator* Arena::CreateMaybeMessage<::flyteidl::core::GPUAccelerator>(Arena*); template<> ::flyteidl::core::IOStrategy* Arena::CreateMaybeMessage<::flyteidl::core::IOStrategy>(Arena*); template<> ::flyteidl::core::K8sObjectMetadata* Arena::CreateMaybeMessage<::flyteidl::core::K8sObjectMetadata>(Arena*); template<> ::flyteidl::core::K8sObjectMetadata_AnnotationsEntry_DoNotUse* Arena::CreateMaybeMessage<::flyteidl::core::K8sObjectMetadata_AnnotationsEntry_DoNotUse>(Arena*); template<> ::flyteidl::core::K8sObjectMetadata_LabelsEntry_DoNotUse* Arena::CreateMaybeMessage<::flyteidl::core::K8sObjectMetadata_LabelsEntry_DoNotUse>(Arena*); template<> ::flyteidl::core::K8sPod* Arena::CreateMaybeMessage<::flyteidl::core::K8sPod>(Arena*); +template<> ::flyteidl::core::ResourceMetadata* Arena::CreateMaybeMessage<::flyteidl::core::ResourceMetadata>(Arena*); template<> ::flyteidl::core::Resources* Arena::CreateMaybeMessage<::flyteidl::core::Resources>(Arena*); template<> ::flyteidl::core::Resources_ResourceEntry* Arena::CreateMaybeMessage<::flyteidl::core::Resources_ResourceEntry>(Arena*); template<> ::flyteidl::core::RuntimeMetadata* Arena::CreateMaybeMessage<::flyteidl::core::RuntimeMetadata>(Arena*); @@ -756,6 +764,303 @@ class RuntimeMetadata final : }; // ------------------------------------------------------------------- +class GPUAccelerator final : + public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.core.GPUAccelerator) */ { + public: + GPUAccelerator(); + virtual ~GPUAccelerator(); + + GPUAccelerator(const GPUAccelerator& from); + + inline GPUAccelerator& operator=(const GPUAccelerator& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + GPUAccelerator(GPUAccelerator&& from) noexcept + : GPUAccelerator() { + *this = ::std::move(from); + } + + inline GPUAccelerator& operator=(GPUAccelerator&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor() { + return default_instance().GetDescriptor(); + } + static const GPUAccelerator& default_instance(); + + enum PartitionSizeValueCase { + kUnpartitioned = 2, + kPartitionSize = 3, + PARTITION_SIZE_VALUE_NOT_SET = 0, + }; + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const GPUAccelerator* internal_default_instance() { + return reinterpret_cast( + &_GPUAccelerator_default_instance_); + } + static constexpr int kIndexInFileMessages = + 3; + + void Swap(GPUAccelerator* other); + friend void swap(GPUAccelerator& a, GPUAccelerator& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline GPUAccelerator* New() const final { + return CreateMaybeMessage(nullptr); + } + + GPUAccelerator* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const GPUAccelerator& from); + void MergeFrom(const GPUAccelerator& from); + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + static const char* _InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx); + ::google::protobuf::internal::ParseFunc _ParseFunc() const final { return _InternalParse; } + #else + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(GPUAccelerator* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return nullptr; + } + inline void* MaybeArenaPtr() const { + return nullptr; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string device = 1; + void clear_device(); + static const int kDeviceFieldNumber = 1; + const ::std::string& device() const; + void set_device(const ::std::string& value); + #if LANG_CXX11 + void set_device(::std::string&& value); + #endif + void set_device(const char* value); + void set_device(const char* value, size_t size); + ::std::string* mutable_device(); + ::std::string* release_device(); + void set_allocated_device(::std::string* device); + + // bool unpartitioned = 2; + private: + bool has_unpartitioned() const; + public: + void clear_unpartitioned(); + static const int kUnpartitionedFieldNumber = 2; + bool unpartitioned() const; + void set_unpartitioned(bool value); + + // string partition_size = 3; + private: + bool has_partition_size() const; + public: + void clear_partition_size(); + static const int kPartitionSizeFieldNumber = 3; + const ::std::string& partition_size() const; + void set_partition_size(const ::std::string& value); + #if LANG_CXX11 + void set_partition_size(::std::string&& value); + #endif + void set_partition_size(const char* value); + void set_partition_size(const char* value, size_t size); + ::std::string* mutable_partition_size(); + ::std::string* release_partition_size(); + void set_allocated_partition_size(::std::string* partition_size); + + void clear_partition_size_value(); + PartitionSizeValueCase partition_size_value_case() const; + // @@protoc_insertion_point(class_scope:flyteidl.core.GPUAccelerator) + private: + class HasBitSetters; + void set_has_unpartitioned(); + void set_has_partition_size(); + + inline bool has_partition_size_value() const; + inline void clear_has_partition_size_value(); + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr device_; + union PartitionSizeValueUnion { + PartitionSizeValueUnion() {} + bool unpartitioned_; + ::google::protobuf::internal::ArenaStringPtr partition_size_; + } partition_size_value_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + ::google::protobuf::uint32 _oneof_case_[1]; + + friend struct ::TableStruct_flyteidl_2fcore_2ftasks_2eproto; +}; +// ------------------------------------------------------------------- + +class ResourceMetadata final : + public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.core.ResourceMetadata) */ { + public: + ResourceMetadata(); + virtual ~ResourceMetadata(); + + ResourceMetadata(const ResourceMetadata& from); + + inline ResourceMetadata& operator=(const ResourceMetadata& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + ResourceMetadata(ResourceMetadata&& from) noexcept + : ResourceMetadata() { + *this = ::std::move(from); + } + + inline ResourceMetadata& operator=(ResourceMetadata&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor() { + return default_instance().GetDescriptor(); + } + static const ResourceMetadata& default_instance(); + + enum AcceleratorValueCase { + kGpuAccelerator = 1, + ACCELERATOR_VALUE_NOT_SET = 0, + }; + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const ResourceMetadata* internal_default_instance() { + return reinterpret_cast( + &_ResourceMetadata_default_instance_); + } + static constexpr int kIndexInFileMessages = + 4; + + void Swap(ResourceMetadata* other); + friend void swap(ResourceMetadata& a, ResourceMetadata& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline ResourceMetadata* New() const final { + return CreateMaybeMessage(nullptr); + } + + ResourceMetadata* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const ResourceMetadata& from); + void MergeFrom(const ResourceMetadata& from); + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + static const char* _InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx); + ::google::protobuf::internal::ParseFunc _ParseFunc() const final { return _InternalParse; } + #else + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(ResourceMetadata* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return nullptr; + } + inline void* MaybeArenaPtr() const { + return nullptr; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + bool has_gpu_accelerator() const; + void clear_gpu_accelerator(); + static const int kGpuAcceleratorFieldNumber = 1; + const ::flyteidl::core::GPUAccelerator& gpu_accelerator() const; + ::flyteidl::core::GPUAccelerator* release_gpu_accelerator(); + ::flyteidl::core::GPUAccelerator* mutable_gpu_accelerator(); + void set_allocated_gpu_accelerator(::flyteidl::core::GPUAccelerator* gpu_accelerator); + + void clear_accelerator_value(); + AcceleratorValueCase accelerator_value_case() const; + // @@protoc_insertion_point(class_scope:flyteidl.core.ResourceMetadata) + private: + class HasBitSetters; + void set_has_gpu_accelerator(); + + inline bool has_accelerator_value() const; + inline void clear_has_accelerator_value(); + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + union AcceleratorValueUnion { + AcceleratorValueUnion() {} + ::flyteidl::core::GPUAccelerator* gpu_accelerator_; + } accelerator_value_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + ::google::protobuf::uint32 _oneof_case_[1]; + + friend struct ::TableStruct_flyteidl_2fcore_2ftasks_2eproto; +}; +// ------------------------------------------------------------------- + class TaskMetadata_TagsEntry_DoNotUse : public ::google::protobuf::internal::MapEntry(value), size)); + // @@protoc_insertion_point(field_set_pointer:flyteidl.core.GPUAccelerator.device) +} +inline ::std::string* GPUAccelerator::mutable_device() { + + // @@protoc_insertion_point(field_mutable:flyteidl.core.GPUAccelerator.device) + return device_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* GPUAccelerator::release_device() { + // @@protoc_insertion_point(field_release:flyteidl.core.GPUAccelerator.device) + + return device_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void GPUAccelerator::set_allocated_device(::std::string* device) { + if (device != nullptr) { + + } else { + + } + device_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), device); + // @@protoc_insertion_point(field_set_allocated:flyteidl.core.GPUAccelerator.device) +} + +// bool unpartitioned = 2; +inline bool GPUAccelerator::has_unpartitioned() const { + return partition_size_value_case() == kUnpartitioned; +} +inline void GPUAccelerator::set_has_unpartitioned() { + _oneof_case_[0] = kUnpartitioned; +} +inline void GPUAccelerator::clear_unpartitioned() { + if (has_unpartitioned()) { + partition_size_value_.unpartitioned_ = false; + clear_has_partition_size_value(); + } +} +inline bool GPUAccelerator::unpartitioned() const { + // @@protoc_insertion_point(field_get:flyteidl.core.GPUAccelerator.unpartitioned) + if (has_unpartitioned()) { + return partition_size_value_.unpartitioned_; + } + return false; +} +inline void GPUAccelerator::set_unpartitioned(bool value) { + if (!has_unpartitioned()) { + clear_partition_size_value(); + set_has_unpartitioned(); + } + partition_size_value_.unpartitioned_ = value; + // @@protoc_insertion_point(field_set:flyteidl.core.GPUAccelerator.unpartitioned) +} + +// string partition_size = 3; +inline bool GPUAccelerator::has_partition_size() const { + return partition_size_value_case() == kPartitionSize; +} +inline void GPUAccelerator::set_has_partition_size() { + _oneof_case_[0] = kPartitionSize; +} +inline void GPUAccelerator::clear_partition_size() { + if (has_partition_size()) { + partition_size_value_.partition_size_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + clear_has_partition_size_value(); + } +} +inline const ::std::string& GPUAccelerator::partition_size() const { + // @@protoc_insertion_point(field_get:flyteidl.core.GPUAccelerator.partition_size) + if (has_partition_size()) { + return partition_size_value_.partition_size_.GetNoArena(); + } + return *&::google::protobuf::internal::GetEmptyStringAlreadyInited(); +} +inline void GPUAccelerator::set_partition_size(const ::std::string& value) { + // @@protoc_insertion_point(field_set:flyteidl.core.GPUAccelerator.partition_size) + if (!has_partition_size()) { + clear_partition_size_value(); + set_has_partition_size(); + partition_size_value_.partition_size_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + partition_size_value_.partition_size_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:flyteidl.core.GPUAccelerator.partition_size) +} +#if LANG_CXX11 +inline void GPUAccelerator::set_partition_size(::std::string&& value) { + // @@protoc_insertion_point(field_set:flyteidl.core.GPUAccelerator.partition_size) + if (!has_partition_size()) { + clear_partition_size_value(); + set_has_partition_size(); + partition_size_value_.partition_size_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + partition_size_value_.partition_size_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:flyteidl.core.GPUAccelerator.partition_size) +} +#endif +inline void GPUAccelerator::set_partition_size(const char* value) { + GOOGLE_DCHECK(value != nullptr); + if (!has_partition_size()) { + clear_partition_size_value(); + set_has_partition_size(); + partition_size_value_.partition_size_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + partition_size_value_.partition_size_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(value)); + // @@protoc_insertion_point(field_set_char:flyteidl.core.GPUAccelerator.partition_size) +} +inline void GPUAccelerator::set_partition_size(const char* value, size_t size) { + if (!has_partition_size()) { + clear_partition_size_value(); + set_has_partition_size(); + partition_size_value_.partition_size_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + partition_size_value_.partition_size_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string( + reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:flyteidl.core.GPUAccelerator.partition_size) +} +inline ::std::string* GPUAccelerator::mutable_partition_size() { + if (!has_partition_size()) { + clear_partition_size_value(); + set_has_partition_size(); + partition_size_value_.partition_size_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + // @@protoc_insertion_point(field_mutable:flyteidl.core.GPUAccelerator.partition_size) + return partition_size_value_.partition_size_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* GPUAccelerator::release_partition_size() { + // @@protoc_insertion_point(field_release:flyteidl.core.GPUAccelerator.partition_size) + if (has_partition_size()) { + clear_has_partition_size_value(); + return partition_size_value_.partition_size_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } else { + return nullptr; + } +} +inline void GPUAccelerator::set_allocated_partition_size(::std::string* partition_size) { + if (has_partition_size_value()) { + clear_partition_size_value(); + } + if (partition_size != nullptr) { + set_has_partition_size(); + partition_size_value_.partition_size_.UnsafeSetDefault(partition_size); + } + // @@protoc_insertion_point(field_set_allocated:flyteidl.core.GPUAccelerator.partition_size) +} + +inline bool GPUAccelerator::has_partition_size_value() const { + return partition_size_value_case() != PARTITION_SIZE_VALUE_NOT_SET; +} +inline void GPUAccelerator::clear_has_partition_size_value() { + _oneof_case_[0] = PARTITION_SIZE_VALUE_NOT_SET; +} +inline GPUAccelerator::PartitionSizeValueCase GPUAccelerator::partition_size_value_case() const { + return GPUAccelerator::PartitionSizeValueCase(_oneof_case_[0]); +} +// ------------------------------------------------------------------- + +// ResourceMetadata + +// .flyteidl.core.GPUAccelerator gpu_accelerator = 1; +inline bool ResourceMetadata::has_gpu_accelerator() const { + return accelerator_value_case() == kGpuAccelerator; +} +inline void ResourceMetadata::set_has_gpu_accelerator() { + _oneof_case_[0] = kGpuAccelerator; +} +inline void ResourceMetadata::clear_gpu_accelerator() { + if (has_gpu_accelerator()) { + delete accelerator_value_.gpu_accelerator_; + clear_has_accelerator_value(); + } +} +inline ::flyteidl::core::GPUAccelerator* ResourceMetadata::release_gpu_accelerator() { + // @@protoc_insertion_point(field_release:flyteidl.core.ResourceMetadata.gpu_accelerator) + if (has_gpu_accelerator()) { + clear_has_accelerator_value(); + ::flyteidl::core::GPUAccelerator* temp = accelerator_value_.gpu_accelerator_; + accelerator_value_.gpu_accelerator_ = nullptr; + return temp; + } else { + return nullptr; + } +} +inline const ::flyteidl::core::GPUAccelerator& ResourceMetadata::gpu_accelerator() const { + // @@protoc_insertion_point(field_get:flyteidl.core.ResourceMetadata.gpu_accelerator) + return has_gpu_accelerator() + ? *accelerator_value_.gpu_accelerator_ + : *reinterpret_cast< ::flyteidl::core::GPUAccelerator*>(&::flyteidl::core::_GPUAccelerator_default_instance_); +} +inline ::flyteidl::core::GPUAccelerator* ResourceMetadata::mutable_gpu_accelerator() { + if (!has_gpu_accelerator()) { + clear_accelerator_value(); + set_has_gpu_accelerator(); + accelerator_value_.gpu_accelerator_ = CreateMaybeMessage< ::flyteidl::core::GPUAccelerator >( + GetArenaNoVirtual()); + } + // @@protoc_insertion_point(field_mutable:flyteidl.core.ResourceMetadata.gpu_accelerator) + return accelerator_value_.gpu_accelerator_; +} + +inline bool ResourceMetadata::has_accelerator_value() const { + return accelerator_value_case() != ACCELERATOR_VALUE_NOT_SET; +} +inline void ResourceMetadata::clear_has_accelerator_value() { + _oneof_case_[0] = ACCELERATOR_VALUE_NOT_SET; +} +inline ResourceMetadata::AcceleratorValueCase ResourceMetadata::accelerator_value_case() const { + return ResourceMetadata::AcceleratorValueCase(_oneof_case_[0]); +} +// ------------------------------------------------------------------- + // ------------------------------------------------------------------- // TaskMetadata @@ -3164,6 +3720,57 @@ inline void TaskMetadata::set_allocated_pod_template_name(::std::string* pod_tem // @@protoc_insertion_point(field_set_allocated:flyteidl.core.TaskMetadata.pod_template_name) } +// .flyteidl.core.ResourceMetadata resource_metadata = 13; +inline bool TaskMetadata::has_resource_metadata() const { + return this != internal_default_instance() && resource_metadata_ != nullptr; +} +inline void TaskMetadata::clear_resource_metadata() { + if (GetArenaNoVirtual() == nullptr && resource_metadata_ != nullptr) { + delete resource_metadata_; + } + resource_metadata_ = nullptr; +} +inline const ::flyteidl::core::ResourceMetadata& TaskMetadata::resource_metadata() const { + const ::flyteidl::core::ResourceMetadata* p = resource_metadata_; + // @@protoc_insertion_point(field_get:flyteidl.core.TaskMetadata.resource_metadata) + return p != nullptr ? *p : *reinterpret_cast( + &::flyteidl::core::_ResourceMetadata_default_instance_); +} +inline ::flyteidl::core::ResourceMetadata* TaskMetadata::release_resource_metadata() { + // @@protoc_insertion_point(field_release:flyteidl.core.TaskMetadata.resource_metadata) + + ::flyteidl::core::ResourceMetadata* temp = resource_metadata_; + resource_metadata_ = nullptr; + return temp; +} +inline ::flyteidl::core::ResourceMetadata* TaskMetadata::mutable_resource_metadata() { + + if (resource_metadata_ == nullptr) { + auto* p = CreateMaybeMessage<::flyteidl::core::ResourceMetadata>(GetArenaNoVirtual()); + resource_metadata_ = p; + } + // @@protoc_insertion_point(field_mutable:flyteidl.core.TaskMetadata.resource_metadata) + return resource_metadata_; +} +inline void TaskMetadata::set_allocated_resource_metadata(::flyteidl::core::ResourceMetadata* resource_metadata) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == nullptr) { + delete resource_metadata_; + } + if (resource_metadata) { + ::google::protobuf::Arena* submessage_arena = nullptr; + if (message_arena != submessage_arena) { + resource_metadata = ::google::protobuf::internal::GetOwnedMessage( + message_arena, resource_metadata, submessage_arena); + } + + } else { + + } + resource_metadata_ = resource_metadata; + // @@protoc_insertion_point(field_set_allocated:flyteidl.core.TaskMetadata.resource_metadata) +} + inline bool TaskMetadata::has_interruptible_value() const { return interruptible_value_case() != INTERRUPTIBLE_VALUE_NOT_SET; } @@ -4562,6 +5169,10 @@ inline void Sql::set_dialect(::flyteidl::core::Sql_Dialect value) { // ------------------------------------------------------------------- +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + // @@protoc_insertion_point(namespace_scope) diff --git a/gen/pb-cpp/flyteidl/core/workflow.pb.cc b/gen/pb-cpp/flyteidl/core/workflow.pb.cc index 3d24211ea..c806777e5 100644 --- a/gen/pb-cpp/flyteidl/core/workflow.pb.cc +++ b/gen/pb-cpp/flyteidl/core/workflow.pb.cc @@ -22,6 +22,7 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fidentifier_2eproto ::google::p extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2finterface_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_TypedInterface_flyteidl_2fcore_2finterface_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_RetryStrategy_flyteidl_2fcore_2fliterals_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_Binding_flyteidl_2fcore_2fliterals_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_Resources_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Error_flyteidl_2fcore_2ftypes_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<6> scc_info_LiteralType_flyteidl_2fcore_2ftypes_2eproto; @@ -31,9 +32,9 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::pro extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_WorkflowMetadata_TagsEntry_DoNotUse_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_SignalCondition_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_SleepCondition_flyteidl_2fcore_2fworkflow_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_TaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_WorkflowNode_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_NodeMetadata_flyteidl_2fcore_2fworkflow_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_TaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_TaskNode_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_WorkflowMetadata_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_GateNode_flyteidl_2fcore_2fworkflow_2eproto; @@ -373,9 +374,10 @@ static void InitDefaultsTaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto() { ::flyteidl::core::TaskNodeOverrides::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<1> scc_info_TaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsTaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto}, { - &scc_info_Resources_flyteidl_2fcore_2ftasks_2eproto.base,}}; +::google::protobuf::internal::SCCInfo<2> scc_info_TaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsTaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto}, { + &scc_info_Resources_flyteidl_2fcore_2ftasks_2eproto.base, + &scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto.base,}}; void InitDefaults_flyteidl_2fcore_2fworkflow_2eproto() { ::google::protobuf::internal::InitSCC(&scc_info_TaskNode_flyteidl_2fcore_2fworkflow_2eproto.base); @@ -551,6 +553,7 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fcore_2fworkflow_2eproto: ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskNodeOverrides, resources_), + PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskNodeOverrides, resource_metadata_), }; static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { { 0, -1, sizeof(::flyteidl::core::IfBlock)}, @@ -672,15 +675,16 @@ const char descriptor_table_protodef_flyteidl_2fcore_2fworkflow_2eproto[] = "re.Binding\022)\n\014failure_node\030\006 \001(\0132\023.flyte" "idl.core.Node\022B\n\021metadata_defaults\030\007 \001(\013" "2\'.flyteidl.core.WorkflowMetadataDefault" - "s\"@\n\021TaskNodeOverrides\022+\n\tresources\030\001 \001(" - "\0132\030.flyteidl.core.ResourcesB6Z4github.co" - "m/flyteorg/flyteidl/gen/pb-go/flyteidl/c" - "oreb\006proto3" + "s\"|\n\021TaskNodeOverrides\022+\n\tresources\030\001 \001(" + "\0132\030.flyteidl.core.Resources\022:\n\021resource_" + "metadata\030\002 \001(\0132\037.flyteidl.core.ResourceM" + "etadataB6Z4github.com/flyteorg/flyteidl/" + "gen/pb-go/flyteidl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2fworkflow_2eproto = { false, InitDefaults_flyteidl_2fcore_2fworkflow_2eproto, descriptor_table_protodef_flyteidl_2fcore_2fworkflow_2eproto, - "flyteidl/core/workflow.proto", &assign_descriptors_table_flyteidl_2fcore_2fworkflow_2eproto, 2971, + "flyteidl/core/workflow.proto", &assign_descriptors_table_flyteidl_2fcore_2fworkflow_2eproto, 3031, }; void AddDescriptors_flyteidl_2fcore_2fworkflow_2eproto() { @@ -8106,24 +8110,38 @@ ::google::protobuf::Metadata WorkflowTemplate::GetMetadata() const { void TaskNodeOverrides::InitAsDefaultInstance() { ::flyteidl::core::_TaskNodeOverrides_default_instance_._instance.get_mutable()->resources_ = const_cast< ::flyteidl::core::Resources*>( ::flyteidl::core::Resources::internal_default_instance()); + ::flyteidl::core::_TaskNodeOverrides_default_instance_._instance.get_mutable()->resource_metadata_ = const_cast< ::flyteidl::core::ResourceMetadata*>( + ::flyteidl::core::ResourceMetadata::internal_default_instance()); } class TaskNodeOverrides::HasBitSetters { public: static const ::flyteidl::core::Resources& resources(const TaskNodeOverrides* msg); + static const ::flyteidl::core::ResourceMetadata& resource_metadata(const TaskNodeOverrides* msg); }; const ::flyteidl::core::Resources& TaskNodeOverrides::HasBitSetters::resources(const TaskNodeOverrides* msg) { return *msg->resources_; } +const ::flyteidl::core::ResourceMetadata& +TaskNodeOverrides::HasBitSetters::resource_metadata(const TaskNodeOverrides* msg) { + return *msg->resource_metadata_; +} void TaskNodeOverrides::clear_resources() { if (GetArenaNoVirtual() == nullptr && resources_ != nullptr) { delete resources_; } resources_ = nullptr; } +void TaskNodeOverrides::clear_resource_metadata() { + if (GetArenaNoVirtual() == nullptr && resource_metadata_ != nullptr) { + delete resource_metadata_; + } + resource_metadata_ = nullptr; +} #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int TaskNodeOverrides::kResourcesFieldNumber; +const int TaskNodeOverrides::kResourceMetadataFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 TaskNodeOverrides::TaskNodeOverrides() @@ -8140,13 +8158,20 @@ TaskNodeOverrides::TaskNodeOverrides(const TaskNodeOverrides& from) } else { resources_ = nullptr; } + if (from.has_resource_metadata()) { + resource_metadata_ = new ::flyteidl::core::ResourceMetadata(*from.resource_metadata_); + } else { + resource_metadata_ = nullptr; + } // @@protoc_insertion_point(copy_constructor:flyteidl.core.TaskNodeOverrides) } void TaskNodeOverrides::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_TaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto.base); - resources_ = nullptr; + ::memset(&resources_, 0, static_cast( + reinterpret_cast(&resource_metadata_) - + reinterpret_cast(&resources_)) + sizeof(resource_metadata_)); } TaskNodeOverrides::~TaskNodeOverrides() { @@ -8156,6 +8181,7 @@ TaskNodeOverrides::~TaskNodeOverrides() { void TaskNodeOverrides::SharedDtor() { if (this != internal_default_instance()) delete resources_; + if (this != internal_default_instance()) delete resource_metadata_; } void TaskNodeOverrides::SetCachedSize(int size) const { @@ -8177,6 +8203,10 @@ void TaskNodeOverrides::Clear() { delete resources_; } resources_ = nullptr; + if (GetArenaNoVirtual() == nullptr && resource_metadata_ != nullptr) { + delete resource_metadata_; + } + resource_metadata_ = nullptr; _internal_metadata_.Clear(); } @@ -8206,6 +8236,19 @@ const char* TaskNodeOverrides::_InternalParse(const char* begin, const char* end {parser_till_end, object}, ptr - size, ptr)); break; } + // .flyteidl.core.ResourceMetadata resource_metadata = 2; + case 2: { + if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + parser_till_end = ::flyteidl::core::ResourceMetadata::_InternalParse; + object = msg->mutable_resource_metadata(); + if (size > end - ptr) goto len_delim_till_end; + ptr += size; + GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( + {parser_till_end, object}, ptr - size, ptr)); + break; + } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -8247,6 +8290,17 @@ bool TaskNodeOverrides::MergePartialFromCodedStream( break; } + // .flyteidl.core.ResourceMetadata resource_metadata = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_resource_metadata())); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -8280,6 +8334,12 @@ void TaskNodeOverrides::SerializeWithCachedSizes( 1, HasBitSetters::resources(this), output); } + // .flyteidl.core.ResourceMetadata resource_metadata = 2; + if (this->has_resource_metadata()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 2, HasBitSetters::resource_metadata(this), output); + } + if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -8300,6 +8360,13 @@ ::google::protobuf::uint8* TaskNodeOverrides::InternalSerializeWithCachedSizesTo 1, HasBitSetters::resources(this), target); } + // .flyteidl.core.ResourceMetadata resource_metadata = 2; + if (this->has_resource_metadata()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 2, HasBitSetters::resource_metadata(this), target); + } + if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -8328,6 +8395,13 @@ size_t TaskNodeOverrides::ByteSizeLong() const { *resources_); } + // .flyteidl.core.ResourceMetadata resource_metadata = 2; + if (this->has_resource_metadata()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *resource_metadata_); + } + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; @@ -8358,6 +8432,9 @@ void TaskNodeOverrides::MergeFrom(const TaskNodeOverrides& from) { if (from.has_resources()) { mutable_resources()->::flyteidl::core::Resources::MergeFrom(from.resources()); } + if (from.has_resource_metadata()) { + mutable_resource_metadata()->::flyteidl::core::ResourceMetadata::MergeFrom(from.resource_metadata()); + } } void TaskNodeOverrides::CopyFrom(const ::google::protobuf::Message& from) { @@ -8386,6 +8463,7 @@ void TaskNodeOverrides::InternalSwap(TaskNodeOverrides* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(resources_, other->resources_); + swap(resource_metadata_, other->resource_metadata_); } ::google::protobuf::Metadata TaskNodeOverrides::GetMetadata() const { diff --git a/gen/pb-cpp/flyteidl/core/workflow.pb.h b/gen/pb-cpp/flyteidl/core/workflow.pb.h index 9ee5eb92c..fc3c75f97 100644 --- a/gen/pb-cpp/flyteidl/core/workflow.pb.h +++ b/gen/pb-cpp/flyteidl/core/workflow.pb.h @@ -2691,12 +2691,22 @@ class TaskNodeOverrides final : ::flyteidl::core::Resources* mutable_resources(); void set_allocated_resources(::flyteidl::core::Resources* resources); + // .flyteidl.core.ResourceMetadata resource_metadata = 2; + bool has_resource_metadata() const; + void clear_resource_metadata(); + static const int kResourceMetadataFieldNumber = 2; + const ::flyteidl::core::ResourceMetadata& resource_metadata() const; + ::flyteidl::core::ResourceMetadata* release_resource_metadata(); + ::flyteidl::core::ResourceMetadata* mutable_resource_metadata(); + void set_allocated_resource_metadata(::flyteidl::core::ResourceMetadata* resource_metadata); + // @@protoc_insertion_point(class_scope:flyteidl.core.TaskNodeOverrides) private: class HasBitSetters; ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::flyteidl::core::Resources* resources_; + ::flyteidl::core::ResourceMetadata* resource_metadata_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::TableStruct_flyteidl_2fcore_2fworkflow_2eproto; }; @@ -4946,6 +4956,51 @@ inline void TaskNodeOverrides::set_allocated_resources(::flyteidl::core::Resourc // @@protoc_insertion_point(field_set_allocated:flyteidl.core.TaskNodeOverrides.resources) } +// .flyteidl.core.ResourceMetadata resource_metadata = 2; +inline bool TaskNodeOverrides::has_resource_metadata() const { + return this != internal_default_instance() && resource_metadata_ != nullptr; +} +inline const ::flyteidl::core::ResourceMetadata& TaskNodeOverrides::resource_metadata() const { + const ::flyteidl::core::ResourceMetadata* p = resource_metadata_; + // @@protoc_insertion_point(field_get:flyteidl.core.TaskNodeOverrides.resource_metadata) + return p != nullptr ? *p : *reinterpret_cast( + &::flyteidl::core::_ResourceMetadata_default_instance_); +} +inline ::flyteidl::core::ResourceMetadata* TaskNodeOverrides::release_resource_metadata() { + // @@protoc_insertion_point(field_release:flyteidl.core.TaskNodeOverrides.resource_metadata) + + ::flyteidl::core::ResourceMetadata* temp = resource_metadata_; + resource_metadata_ = nullptr; + return temp; +} +inline ::flyteidl::core::ResourceMetadata* TaskNodeOverrides::mutable_resource_metadata() { + + if (resource_metadata_ == nullptr) { + auto* p = CreateMaybeMessage<::flyteidl::core::ResourceMetadata>(GetArenaNoVirtual()); + resource_metadata_ = p; + } + // @@protoc_insertion_point(field_mutable:flyteidl.core.TaskNodeOverrides.resource_metadata) + return resource_metadata_; +} +inline void TaskNodeOverrides::set_allocated_resource_metadata(::flyteidl::core::ResourceMetadata* resource_metadata) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == nullptr) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(resource_metadata_); + } + if (resource_metadata) { + ::google::protobuf::Arena* submessage_arena = nullptr; + if (message_arena != submessage_arena) { + resource_metadata = ::google::protobuf::internal::GetOwnedMessage( + message_arena, resource_metadata, submessage_arena); + } + + } else { + + } + resource_metadata_ = resource_metadata; + // @@protoc_insertion_point(field_set_allocated:flyteidl.core.TaskNodeOverrides.resource_metadata) +} + #ifdef __GNUC__ #pragma GCC diagnostic pop #endif // __GNUC__ diff --git a/gen/pb-go/flyteidl/core/tasks.pb.go b/gen/pb-go/flyteidl/core/tasks.pb.go index 157b7f3bf..0622cf629 100644 --- a/gen/pb-go/flyteidl/core/tasks.pb.go +++ b/gen/pb-go/flyteidl/core/tasks.pb.go @@ -118,7 +118,7 @@ func (x Container_Architecture) String() string { } func (Container_Architecture) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{5, 0} + return fileDescriptor_bd8423ba58d6ed80, []int{7, 0} } // Mode to use for downloading @@ -150,7 +150,7 @@ func (x IOStrategy_DownloadMode) String() string { } func (IOStrategy_DownloadMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{6, 0} + return fileDescriptor_bd8423ba58d6ed80, []int{8, 0} } // Mode to use for uploading @@ -182,7 +182,7 @@ func (x IOStrategy_UploadMode) String() string { } func (IOStrategy_UploadMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{6, 1} + return fileDescriptor_bd8423ba58d6ed80, []int{8, 1} } // LiteralMapFormat decides the encoding format in which the input metadata should be made available to the containers. @@ -216,7 +216,7 @@ func (x DataLoadingConfig_LiteralMapFormat) String() string { } func (DataLoadingConfig_LiteralMapFormat) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{7, 0} + return fileDescriptor_bd8423ba58d6ed80, []int{9, 0} } // The dialect of the SQL statement. This is used to validate and parse SQL statements at compilation time to avoid @@ -250,7 +250,7 @@ func (x Sql_Dialect) String() string { } func (Sql_Dialect) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{10, 0} + return fileDescriptor_bd8423ba58d6ed80, []int{12, 0} } // A customizable interface to convey resources requested for a container. This can be interpreted differently for different @@ -416,6 +416,161 @@ func (m *RuntimeMetadata) GetFlavor() string { return "" } +// Metadata associated with the GPU accelerator to allocate to a task +type GPUAccelerator struct { + Device string `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"` + // Types that are valid to be assigned to PartitionSizeValue: + // *GPUAccelerator_Unpartitioned + // *GPUAccelerator_PartitionSize + PartitionSizeValue isGPUAccelerator_PartitionSizeValue `protobuf_oneof:"partition_size_value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GPUAccelerator) Reset() { *m = GPUAccelerator{} } +func (m *GPUAccelerator) String() string { return proto.CompactTextString(m) } +func (*GPUAccelerator) ProtoMessage() {} +func (*GPUAccelerator) Descriptor() ([]byte, []int) { + return fileDescriptor_bd8423ba58d6ed80, []int{2} +} + +func (m *GPUAccelerator) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GPUAccelerator.Unmarshal(m, b) +} +func (m *GPUAccelerator) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GPUAccelerator.Marshal(b, m, deterministic) +} +func (m *GPUAccelerator) XXX_Merge(src proto.Message) { + xxx_messageInfo_GPUAccelerator.Merge(m, src) +} +func (m *GPUAccelerator) XXX_Size() int { + return xxx_messageInfo_GPUAccelerator.Size(m) +} +func (m *GPUAccelerator) XXX_DiscardUnknown() { + xxx_messageInfo_GPUAccelerator.DiscardUnknown(m) +} + +var xxx_messageInfo_GPUAccelerator proto.InternalMessageInfo + +func (m *GPUAccelerator) GetDevice() string { + if m != nil { + return m.Device + } + return "" +} + +type isGPUAccelerator_PartitionSizeValue interface { + isGPUAccelerator_PartitionSizeValue() +} + +type GPUAccelerator_Unpartitioned struct { + Unpartitioned bool `protobuf:"varint,2,opt,name=unpartitioned,proto3,oneof"` +} + +type GPUAccelerator_PartitionSize struct { + PartitionSize string `protobuf:"bytes,3,opt,name=partition_size,json=partitionSize,proto3,oneof"` +} + +func (*GPUAccelerator_Unpartitioned) isGPUAccelerator_PartitionSizeValue() {} + +func (*GPUAccelerator_PartitionSize) isGPUAccelerator_PartitionSizeValue() {} + +func (m *GPUAccelerator) GetPartitionSizeValue() isGPUAccelerator_PartitionSizeValue { + if m != nil { + return m.PartitionSizeValue + } + return nil +} + +func (m *GPUAccelerator) GetUnpartitioned() bool { + if x, ok := m.GetPartitionSizeValue().(*GPUAccelerator_Unpartitioned); ok { + return x.Unpartitioned + } + return false +} + +func (m *GPUAccelerator) GetPartitionSize() string { + if x, ok := m.GetPartitionSizeValue().(*GPUAccelerator_PartitionSize); ok { + return x.PartitionSize + } + return "" +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*GPUAccelerator) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*GPUAccelerator_Unpartitioned)(nil), + (*GPUAccelerator_PartitionSize)(nil), + } +} + +// Additional metadata associated with resources to allocate to a task +type ResourceMetadata struct { + // Types that are valid to be assigned to AcceleratorValue: + // *ResourceMetadata_GpuAccelerator + AcceleratorValue isResourceMetadata_AcceleratorValue `protobuf_oneof:"accelerator_value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ResourceMetadata) Reset() { *m = ResourceMetadata{} } +func (m *ResourceMetadata) String() string { return proto.CompactTextString(m) } +func (*ResourceMetadata) ProtoMessage() {} +func (*ResourceMetadata) Descriptor() ([]byte, []int) { + return fileDescriptor_bd8423ba58d6ed80, []int{3} +} + +func (m *ResourceMetadata) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResourceMetadata.Unmarshal(m, b) +} +func (m *ResourceMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResourceMetadata.Marshal(b, m, deterministic) +} +func (m *ResourceMetadata) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResourceMetadata.Merge(m, src) +} +func (m *ResourceMetadata) XXX_Size() int { + return xxx_messageInfo_ResourceMetadata.Size(m) +} +func (m *ResourceMetadata) XXX_DiscardUnknown() { + xxx_messageInfo_ResourceMetadata.DiscardUnknown(m) +} + +var xxx_messageInfo_ResourceMetadata proto.InternalMessageInfo + +type isResourceMetadata_AcceleratorValue interface { + isResourceMetadata_AcceleratorValue() +} + +type ResourceMetadata_GpuAccelerator struct { + GpuAccelerator *GPUAccelerator `protobuf:"bytes,1,opt,name=gpu_accelerator,json=gpuAccelerator,proto3,oneof"` +} + +func (*ResourceMetadata_GpuAccelerator) isResourceMetadata_AcceleratorValue() {} + +func (m *ResourceMetadata) GetAcceleratorValue() isResourceMetadata_AcceleratorValue { + if m != nil { + return m.AcceleratorValue + } + return nil +} + +func (m *ResourceMetadata) GetGpuAccelerator() *GPUAccelerator { + if x, ok := m.GetAcceleratorValue().(*ResourceMetadata_GpuAccelerator); ok { + return x.GpuAccelerator + } + return nil +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*ResourceMetadata) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*ResourceMetadata_GpuAccelerator)(nil), + } +} + // Task Metadata type TaskMetadata struct { // Indicates whether the system should attempt to lookup this task's output to avoid duplication of work. @@ -445,17 +600,19 @@ type TaskMetadata struct { // pod_template_name is the unique name of a PodTemplate k8s resource to be used as the base configuration if this // task creates a k8s Pod. If this value is set, the specified PodTemplate will be used instead of, but applied // identically as, the default PodTemplate configured in FlytePropeller. - PodTemplateName string `protobuf:"bytes,12,opt,name=pod_template_name,json=podTemplateName,proto3" json:"pod_template_name,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + PodTemplateName string `protobuf:"bytes,12,opt,name=pod_template_name,json=podTemplateName,proto3" json:"pod_template_name,omitempty"` + // Additional metadata associated with resources to allocate to this task + ResourceMetadata *ResourceMetadata `protobuf:"bytes,13,opt,name=resource_metadata,json=resourceMetadata,proto3" json:"resource_metadata,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *TaskMetadata) Reset() { *m = TaskMetadata{} } func (m *TaskMetadata) String() string { return proto.CompactTextString(m) } func (*TaskMetadata) ProtoMessage() {} func (*TaskMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{2} + return fileDescriptor_bd8423ba58d6ed80, []int{4} } func (m *TaskMetadata) XXX_Unmarshal(b []byte) error { @@ -570,6 +727,13 @@ func (m *TaskMetadata) GetPodTemplateName() string { return "" } +func (m *TaskMetadata) GetResourceMetadata() *ResourceMetadata { + if m != nil { + return m.ResourceMetadata + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*TaskMetadata) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -619,7 +783,7 @@ func (m *TaskTemplate) Reset() { *m = TaskTemplate{} } func (m *TaskTemplate) String() string { return proto.CompactTextString(m) } func (*TaskTemplate) ProtoMessage() {} func (*TaskTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{3} + return fileDescriptor_bd8423ba58d6ed80, []int{5} } func (m *TaskTemplate) XXX_Unmarshal(b []byte) error { @@ -769,7 +933,7 @@ func (m *ContainerPort) Reset() { *m = ContainerPort{} } func (m *ContainerPort) String() string { return proto.CompactTextString(m) } func (*ContainerPort) ProtoMessage() {} func (*ContainerPort) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{4} + return fileDescriptor_bd8423ba58d6ed80, []int{6} } func (m *ContainerPort) XXX_Unmarshal(b []byte) error { @@ -836,7 +1000,7 @@ func (m *Container) Reset() { *m = Container{} } func (m *Container) String() string { return proto.CompactTextString(m) } func (*Container) ProtoMessage() {} func (*Container) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{5} + return fileDescriptor_bd8423ba58d6ed80, []int{7} } func (m *Container) XXX_Unmarshal(b []byte) error { @@ -936,7 +1100,7 @@ func (m *IOStrategy) Reset() { *m = IOStrategy{} } func (m *IOStrategy) String() string { return proto.CompactTextString(m) } func (*IOStrategy) ProtoMessage() {} func (*IOStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{6} + return fileDescriptor_bd8423ba58d6ed80, []int{8} } func (m *IOStrategy) XXX_Unmarshal(b []byte) error { @@ -1000,7 +1164,7 @@ func (m *DataLoadingConfig) Reset() { *m = DataLoadingConfig{} } func (m *DataLoadingConfig) String() string { return proto.CompactTextString(m) } func (*DataLoadingConfig) ProtoMessage() {} func (*DataLoadingConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{7} + return fileDescriptor_bd8423ba58d6ed80, []int{9} } func (m *DataLoadingConfig) XXX_Unmarshal(b []byte) error { @@ -1082,7 +1246,7 @@ func (m *K8SPod) Reset() { *m = K8SPod{} } func (m *K8SPod) String() string { return proto.CompactTextString(m) } func (*K8SPod) ProtoMessage() {} func (*K8SPod) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{8} + return fileDescriptor_bd8423ba58d6ed80, []int{10} } func (m *K8SPod) XXX_Unmarshal(b []byte) error { @@ -1139,7 +1303,7 @@ func (m *K8SObjectMetadata) Reset() { *m = K8SObjectMetadata{} } func (m *K8SObjectMetadata) String() string { return proto.CompactTextString(m) } func (*K8SObjectMetadata) ProtoMessage() {} func (*K8SObjectMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{9} + return fileDescriptor_bd8423ba58d6ed80, []int{11} } func (m *K8SObjectMetadata) XXX_Unmarshal(b []byte) error { @@ -1196,7 +1360,7 @@ func (m *Sql) Reset() { *m = Sql{} } func (m *Sql) String() string { return proto.CompactTextString(m) } func (*Sql) ProtoMessage() {} func (*Sql) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{10} + return fileDescriptor_bd8423ba58d6ed80, []int{12} } func (m *Sql) XXX_Unmarshal(b []byte) error { @@ -1242,6 +1406,8 @@ func init() { proto.RegisterType((*Resources)(nil), "flyteidl.core.Resources") proto.RegisterType((*Resources_ResourceEntry)(nil), "flyteidl.core.Resources.ResourceEntry") proto.RegisterType((*RuntimeMetadata)(nil), "flyteidl.core.RuntimeMetadata") + proto.RegisterType((*GPUAccelerator)(nil), "flyteidl.core.GPUAccelerator") + proto.RegisterType((*ResourceMetadata)(nil), "flyteidl.core.ResourceMetadata") proto.RegisterType((*TaskMetadata)(nil), "flyteidl.core.TaskMetadata") proto.RegisterMapType((map[string]string)(nil), "flyteidl.core.TaskMetadata.TagsEntry") proto.RegisterType((*TaskTemplate)(nil), "flyteidl.core.TaskTemplate") @@ -1260,109 +1426,117 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/tasks.proto", fileDescriptor_bd8423ba58d6ed80) } var fileDescriptor_bd8423ba58d6ed80 = []byte{ - // 1661 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x57, 0xdd, 0x72, 0x1b, 0x49, - 0x15, 0xb6, 0x24, 0x4b, 0xb2, 0x8e, 0xa4, 0x78, 0xdc, 0x4b, 0x96, 0x89, 0x49, 0x42, 0x6a, 0x8a, - 0xcd, 0x86, 0x85, 0x48, 0xc4, 0x9b, 0xb2, 0xbd, 0x0b, 0x15, 0x4a, 0x89, 0x26, 0xb1, 0xb0, 0xf5, - 0x53, 0x2d, 0x39, 0x4b, 0xa8, 0xa2, 0x86, 0xf6, 0x4c, 0x6b, 0x3c, 0x78, 0x34, 0x3d, 0xee, 0xe9, - 0x31, 0x88, 0x7b, 0x5e, 0x80, 0x97, 0xa0, 0xa8, 0xe2, 0x96, 0x4b, 0xde, 0x81, 0x97, 0xe1, 0x8e, - 0x0b, 0xaa, 0x7b, 0x7e, 0xf4, 0x63, 0x7b, 0x5d, 0xbe, 0x52, 0xf7, 0x39, 0xdf, 0x77, 0x7a, 0xfa, - 0xe8, 0x3b, 0x7d, 0xba, 0xe1, 0xd1, 0xd4, 0x9f, 0x0b, 0xea, 0x39, 0x7e, 0xdb, 0x66, 0x9c, 0xb6, - 0x05, 0x89, 0x2e, 0xa2, 0x56, 0xc8, 0x99, 0x60, 0xa8, 0x99, 0xb9, 0x5a, 0xd2, 0xb5, 0xfb, 0x74, - 0x15, 0xe9, 0x39, 0x34, 0x10, 0xde, 0xd4, 0xa3, 0x3c, 0x81, 0xef, 0x3e, 0x59, 0xf3, 0x07, 0x82, - 0xf2, 0x29, 0xb1, 0x69, 0xea, 0x7e, 0xbc, 0xea, 0xf6, 0x3d, 0x41, 0x39, 0xf1, 0xa3, 0x9b, 0xbd, - 0x11, 0xb5, 0x63, 0xee, 0x89, 0x79, 0xea, 0x7d, 0xea, 0x32, 0xe6, 0xfa, 0xb4, 0xad, 0x66, 0x67, - 0xf1, 0xb4, 0xed, 0xc4, 0x9c, 0x08, 0x8f, 0x05, 0x19, 0x7b, 0xdd, 0x1f, 0x09, 0x1e, 0xdb, 0x22, - 0xf1, 0x1a, 0xff, 0x29, 0x42, 0x0d, 0xd3, 0x88, 0xc5, 0xdc, 0xa6, 0x11, 0x7a, 0x0b, 0x5b, 0x9c, - 0x5e, 0xc6, 0x34, 0x12, 0x91, 0x5e, 0x78, 0x56, 0x7a, 0x51, 0xdf, 0x7b, 0xde, 0x5a, 0xd9, 0x68, - 0x2b, 0xc7, 0xe6, 0x23, 0x33, 0x10, 0x7c, 0x8e, 0x73, 0x1e, 0x7a, 0x03, 0x15, 0xdf, 0x9b, 0x79, - 0x22, 0xd2, 0x8b, 0xf7, 0x8a, 0x90, 0xb2, 0x76, 0xff, 0x00, 0xcd, 0x15, 0x07, 0xfa, 0x06, 0x36, - 0x03, 0x32, 0xa3, 0x7a, 0xe1, 0x59, 0xe1, 0xc5, 0x83, 0xbd, 0x2f, 0xee, 0x0c, 0x37, 0x20, 0x33, - 0x8a, 0x15, 0x05, 0xfd, 0x00, 0xca, 0x57, 0xc4, 0x8f, 0xa9, 0x5e, 0x7c, 0x56, 0x78, 0x51, 0xc3, - 0xc9, 0xc4, 0xf8, 0x3d, 0x34, 0x96, 0xb1, 0xa8, 0x0e, 0xd5, 0xd3, 0xc1, 0xf1, 0x60, 0xf8, 0xdd, - 0x40, 0xdb, 0x40, 0x55, 0x28, 0xbd, 0x1b, 0x9d, 0x6a, 0x05, 0x39, 0xf8, 0x30, 0x3a, 0xd5, 0x8a, - 0x08, 0xa0, 0xd2, 0x37, 0xfb, 0x43, 0xfc, 0x49, 0x2b, 0x49, 0xe8, 0x78, 0x32, 0xc4, 0x9d, 0x0f, - 0xa6, 0xb6, 0x89, 0x1e, 0xc2, 0x8e, 0x39, 0x3a, 0x32, 0xfb, 0x26, 0xee, 0x9c, 0x58, 0x99, 0xb9, - 0x6c, 0xfc, 0xb3, 0x00, 0xdb, 0x38, 0x0e, 0x84, 0x37, 0xa3, 0x7d, 0x2a, 0x88, 0x43, 0x04, 0x41, - 0x6f, 0x60, 0x53, 0xcc, 0xc3, 0x6c, 0x0f, 0x5f, 0xad, 0xef, 0x61, 0x15, 0x9d, 0xcd, 0x27, 0xf3, - 0x90, 0x62, 0xc5, 0x43, 0x3a, 0x54, 0xaf, 0x28, 0x8f, 0x3c, 0x16, 0xa4, 0x5b, 0xc9, 0xa6, 0xe8, - 0x73, 0xa8, 0x4c, 0x7d, 0x72, 0xc5, 0xb8, 0x5e, 0x52, 0x8e, 0x74, 0x66, 0x7c, 0x09, 0xf5, 0xa5, - 0x30, 0xa8, 0x06, 0xe5, 0xe1, 0xe4, 0xc8, 0xc4, 0xda, 0x06, 0x6a, 0x42, 0xed, 0xfd, 0xc9, 0xa7, - 0x89, 0x69, 0x8d, 0xbb, 0xc7, 0x5a, 0xc1, 0xf8, 0xef, 0x26, 0x34, 0x26, 0x24, 0xba, 0xc8, 0xbf, - 0xd5, 0x80, 0x86, 0xe3, 0x45, 0x36, 0xbb, 0xa2, 0x9c, 0x9c, 0xf9, 0xc9, 0x37, 0x6f, 0xe1, 0x15, - 0x1b, 0x3a, 0x84, 0x2a, 0x4f, 0xa2, 0xab, 0xef, 0xa9, 0xef, 0x3d, 0xfd, 0xfe, 0x2d, 0xe1, 0x0c, - 0x8e, 0xbe, 0x86, 0xaa, 0xfc, 0x65, 0xb1, 0xd0, 0x37, 0x15, 0xf3, 0x51, 0x2b, 0x11, 0x68, 0x2b, - 0x13, 0x68, 0xab, 0x9b, 0x0a, 0x18, 0x67, 0x48, 0xb4, 0x0f, 0x55, 0x4e, 0x05, 0xf7, 0x68, 0xa4, - 0x97, 0x15, 0xe9, 0xf1, 0x35, 0x15, 0x08, 0x3e, 0x1f, 0x0b, 0x4e, 0x04, 0x75, 0xe7, 0x38, 0x03, - 0xa3, 0x9f, 0xc1, 0x4e, 0xf6, 0xd9, 0x73, 0x2b, 0x4b, 0x60, 0x45, 0xe5, 0x49, 0xcb, 0x1d, 0x1f, - 0xd3, 0x4c, 0x1e, 0x82, 0xee, 0xd0, 0x90, 0x53, 0x9b, 0x08, 0xea, 0x58, 0x94, 0x73, 0xc6, 0xad, - 0x19, 0x8d, 0x22, 0xe2, 0x52, 0xbd, 0xaa, 0x38, 0x9f, 0x2f, 0xfc, 0xa6, 0x74, 0xf7, 0x13, 0x2f, - 0x7a, 0x0e, 0x4d, 0x55, 0xd1, 0x3c, 0x0e, 0x85, 0x27, 0x53, 0xb6, 0x25, 0x53, 0x76, 0xb4, 0x81, - 0x57, 0xcd, 0xe8, 0x25, 0x20, 0x9b, 0xd8, 0xe7, 0xd4, 0x8a, 0x28, 0xf7, 0x88, 0xef, 0xfd, 0x45, - 0xe5, 0xb7, 0xa6, 0xf2, 0xbb, 0xa3, 0x3c, 0xe3, 0x25, 0x07, 0xfa, 0x02, 0x1e, 0xb8, 0x34, 0xa0, - 0x72, 0x53, 0x91, 0xe5, 0x50, 0xfb, 0x42, 0x07, 0x05, 0x6d, 0xe6, 0xd6, 0x2e, 0xb5, 0x2f, 0x64, - 0x7d, 0x08, 0xe2, 0x46, 0x7a, 0x5d, 0x95, 0xdb, 0x7a, 0x7d, 0x2c, 0xff, 0xb5, 0xad, 0x09, 0x71, - 0xa3, 0xa4, 0xda, 0x14, 0x05, 0x7d, 0x05, 0x3b, 0x21, 0x73, 0x2c, 0x41, 0x67, 0xa1, 0x4f, 0x04, - 0xb5, 0x54, 0x9d, 0x35, 0xd4, 0x5e, 0xb7, 0x43, 0xe6, 0x4c, 0x52, 0xbb, 0xac, 0x92, 0xdd, 0x03, - 0xa8, 0xe5, 0x74, 0xa4, 0x41, 0xe9, 0x82, 0xce, 0x95, 0x34, 0x6a, 0x58, 0x0e, 0x6f, 0x2e, 0xb5, - 0x6f, 0x8b, 0x87, 0x85, 0xb7, 0x0f, 0xe1, 0xb3, 0x95, 0x34, 0x58, 0x49, 0x15, 0xfe, 0xb5, 0x9c, - 0xe8, 0x2e, 0x5b, 0x04, 0xfd, 0x14, 0x8a, 0x9e, 0xa3, 0x42, 0x4a, 0x51, 0xac, 0xee, 0xa2, 0x97, - 0x1f, 0xa8, 0xb8, 0xe8, 0x39, 0x08, 0xa5, 0xe5, 0x94, 0xac, 0x95, 0x94, 0xc8, 0x01, 0x6c, 0xcd, - 0xd2, 0x7d, 0xaa, 0x52, 0xa8, 0xef, 0xfd, 0xe8, 0x7b, 0x52, 0x81, 0x73, 0x30, 0xfa, 0x25, 0xd4, - 0xf2, 0xf3, 0x38, 0xd5, 0xe4, 0x93, 0x75, 0xe6, 0x3c, 0xa4, 0x4e, 0x2f, 0x03, 0xe1, 0x05, 0x1e, - 0xb5, 0xa1, 0x62, 0xc7, 0x91, 0x60, 0xb3, 0x54, 0x98, 0x3f, 0xbc, 0xa6, 0xe6, 0xb1, 0x3a, 0x6e, - 0x71, 0x0a, 0x43, 0x87, 0x50, 0xb3, 0x59, 0x20, 0x88, 0x17, 0x50, 0xae, 0xa4, 0x58, 0xdf, 0xd3, - 0xd7, 0x56, 0x7b, 0x97, 0xf9, 0x8f, 0x36, 0xf0, 0x02, 0x8c, 0x7e, 0x01, 0xd5, 0x8b, 0xc3, 0xc8, - 0x0a, 0x99, 0xa3, 0xef, 0x28, 0xde, 0xc3, 0x35, 0xde, 0xf1, 0x61, 0x34, 0x62, 0xce, 0xd1, 0x06, - 0xae, 0x5c, 0xa8, 0x11, 0x7a, 0x0e, 0xa5, 0xe8, 0xd2, 0xd7, 0x91, 0x42, 0xa3, 0x35, 0xf4, 0xf8, - 0xd2, 0x3f, 0xda, 0xc0, 0x12, 0x20, 0x65, 0x20, 0x7b, 0x9b, 0x25, 0xf3, 0x98, 0x97, 0x89, 0x94, - 0x7c, 0x19, 0x6f, 0x4b, 0x87, 0xdc, 0x7e, 0x56, 0x25, 0x3d, 0xd0, 0xb2, 0x06, 0x64, 0xc9, 0x6f, - 0xa3, 0x7f, 0x16, 0x4a, 0xee, 0xd7, 0x8f, 0x80, 0x71, 0x0a, 0x7b, 0x97, 0xa0, 0xf0, 0x76, 0xb4, - 0x6a, 0x40, 0xbf, 0x86, 0x8a, 0xcd, 0x82, 0xa9, 0xe7, 0xea, 0x9a, 0x92, 0xee, 0x97, 0x37, 0xfc, - 0x5f, 0x99, 0x3a, 0x64, 0x52, 0xa6, 0x9e, 0x9b, 0xb6, 0x8a, 0x84, 0xb6, 0xfb, 0x0d, 0xd4, 0x97, - 0xcc, 0xf7, 0x12, 0xe5, 0x16, 0x54, 0x04, 0xe1, 0x2e, 0x15, 0xc6, 0x3e, 0x34, 0xf3, 0x84, 0x8f, - 0x18, 0x17, 0xb2, 0xec, 0xf2, 0xa4, 0x5b, 0x21, 0xe3, 0x42, 0x45, 0x6c, 0xe2, 0xa6, 0xbd, 0x0c, - 0x33, 0xfe, 0x57, 0x82, 0x5a, 0x4e, 0x94, 0x2b, 0x79, 0x33, 0x79, 0x52, 0x24, 0xab, 0x27, 0x13, - 0x79, 0x6c, 0xdb, 0x6c, 0x36, 0x23, 0x81, 0xa3, 0x9a, 0x61, 0x0d, 0x67, 0x53, 0xa9, 0x60, 0xc2, - 0xdd, 0x48, 0x2f, 0x29, 0xb3, 0x1a, 0xa3, 0x7d, 0xa8, 0xf1, 0xac, 0x9b, 0xa5, 0x42, 0xd4, 0x6f, - 0xeb, 0x76, 0x78, 0x01, 0x45, 0x2f, 0xa1, 0x44, 0x83, 0x2b, 0xbd, 0xac, 0x92, 0xb8, 0x2e, 0xfa, - 0x63, 0x3a, 0xff, 0x28, 0x77, 0x3d, 0x22, 0x1e, 0xc7, 0x12, 0x87, 0x0e, 0xf2, 0xb4, 0x57, 0xee, - 0x64, 0xbc, 0x2d, 0xea, 0x85, 0x2c, 0xdd, 0x68, 0x0f, 0xca, 0x32, 0x1d, 0x91, 0x5e, 0x55, 0xbc, - 0xc7, 0xb7, 0xc9, 0x56, 0xa6, 0x07, 0x27, 0x50, 0xd4, 0x81, 0xba, 0x2c, 0x32, 0x2b, 0x5d, 0xb1, - 0xa6, 0x76, 0xf5, 0x6c, 0x8d, 0xd9, 0x25, 0x82, 0x9c, 0x30, 0xe2, 0x78, 0x81, 0x9b, 0xfc, 0x9f, - 0x18, 0x24, 0x29, 0x19, 0xa3, 0x1e, 0x34, 0x08, 0xb7, 0xcf, 0x3d, 0x41, 0x6d, 0x11, 0x73, 0xaa, - 0x0e, 0xc1, 0xeb, 0xf7, 0x80, 0x7c, 0xf5, 0x56, 0x67, 0x09, 0x8c, 0x57, 0xa8, 0x46, 0x0f, 0x1a, - 0xcb, 0xde, 0xd5, 0xce, 0x5f, 0x83, 0x72, 0xa7, 0xdf, 0xdd, 0x7f, 0xad, 0x15, 0xd4, 0x10, 0xf7, - 0xf7, 0x5f, 0x27, 0xdd, 0xbf, 0x83, 0xfb, 0xd6, 0xc7, 0x7d, 0xad, 0x94, 0x8f, 0x0f, 0xb4, 0x4d, - 0xe3, 0x5f, 0x45, 0x80, 0xde, 0x30, 0x6b, 0x39, 0xe8, 0x18, 0x9a, 0x0e, 0xfb, 0x53, 0xe0, 0x33, - 0xe2, 0x58, 0x33, 0xe6, 0x64, 0x9d, 0x7e, 0xfd, 0xf2, 0xb3, 0x60, 0xb4, 0xba, 0x29, 0xbc, 0xcf, - 0x1c, 0x8a, 0x1b, 0xce, 0xd2, 0x0c, 0x99, 0x50, 0x8f, 0xc3, 0x45, 0xa8, 0xa2, 0x0a, 0xf5, 0x93, - 0xdb, 0x43, 0x9d, 0x86, 0x79, 0x20, 0x88, 0xf3, 0xb1, 0x71, 0x02, 0x8d, 0xe5, 0x45, 0x10, 0x82, - 0x07, 0xdd, 0xe1, 0x77, 0x83, 0x93, 0x61, 0xa7, 0x6b, 0x99, 0x9d, 0x0f, 0xea, 0x32, 0xf0, 0x19, - 0x6c, 0xe7, 0xb6, 0xf1, 0x04, 0x9b, 0x9d, 0xbe, 0x56, 0x48, 0x8c, 0xd6, 0x60, 0x38, 0xb1, 0x32, - 0x9f, 0x56, 0x34, 0x4c, 0x80, 0xc5, 0x3a, 0x32, 0xd6, 0xe9, 0x48, 0xb1, 0x86, 0x03, 0xcb, 0xfc, - 0x6d, 0x6f, 0xa2, 0x6d, 0x20, 0x0d, 0x1a, 0xa9, 0x2d, 0x89, 0x5e, 0x40, 0x3b, 0xd0, 0x4c, 0x03, - 0x25, 0x0e, 0xad, 0x68, 0xfc, 0xbd, 0x08, 0x3b, 0xd7, 0xfe, 0x6f, 0x59, 0x28, 0x34, 0x90, 0x4d, - 0xcf, 0x49, 0xaf, 0x1b, 0xd9, 0x14, 0x3d, 0x01, 0xf0, 0x82, 0x30, 0x16, 0x56, 0x48, 0xc4, 0x79, - 0x5a, 0xc7, 0x35, 0x65, 0x19, 0x11, 0x71, 0x8e, 0x7e, 0x0c, 0x75, 0x16, 0x8b, 0xdc, 0x9f, 0xdc, - 0x81, 0x20, 0x31, 0x29, 0x40, 0x0f, 0x2a, 0x53, 0xc6, 0x67, 0x24, 0xb9, 0x6e, 0x3c, 0xd8, 0x7b, - 0x75, 0x97, 0xf6, 0x5a, 0x27, 0xc9, 0xed, 0xbb, 0x4f, 0xc2, 0xf7, 0x8a, 0x88, 0xd3, 0x00, 0xe8, - 0x5b, 0xa8, 0x7b, 0xcc, 0x8a, 0xd2, 0xac, 0xa7, 0x07, 0xfe, 0xa3, 0x5b, 0xff, 0x16, 0x0c, 0x1e, - 0xcb, 0xc6, 0xc6, 0x2b, 0xd0, 0xd6, 0xe3, 0xa2, 0x2d, 0xd8, 0xfc, 0xcd, 0x78, 0x28, 0xa5, 0xb7, - 0x05, 0x9b, 0x9f, 0x3a, 0xfd, 0x93, 0x44, 0x79, 0x23, 0x3c, 0x9c, 0x0c, 0xb5, 0xa2, 0xf1, 0xef, - 0x02, 0x54, 0x92, 0x23, 0x1d, 0xfd, 0x6a, 0xa9, 0xb7, 0x15, 0x6e, 0x2c, 0xa1, 0xe3, 0xc3, 0x68, - 0x78, 0xf6, 0x47, 0x6a, 0x8b, 0x1b, 0x1a, 0xdc, 0x1e, 0x6c, 0xc9, 0x2e, 0x1f, 0x85, 0xd4, 0x4e, - 0x6f, 0x6b, 0xb7, 0x76, 0xa9, 0x6a, 0xc8, 0x9c, 0x71, 0x48, 0xed, 0xf5, 0xba, 0x2d, 0xdd, 0xbf, - 0x6e, 0x8d, 0x7f, 0x14, 0x61, 0xe7, 0xda, 0x67, 0xa1, 0x2e, 0x54, 0x7c, 0x72, 0x46, 0xfd, 0xec, - 0x81, 0xf1, 0xf3, 0xbb, 0x36, 0xd2, 0x3a, 0x51, 0xf0, 0xec, 0x91, 0xa0, 0x26, 0x68, 0x0c, 0x75, - 0x12, 0x04, 0x4c, 0xa8, 0x7b, 0x62, 0xf6, 0xd2, 0x78, 0x75, 0x67, 0xa8, 0xce, 0x82, 0x93, 0xc4, - 0x5b, 0x8e, 0x22, 0xdb, 0xc9, 0xd2, 0x5a, 0xf7, 0x69, 0x27, 0xbb, 0x6f, 0x40, 0x5b, 0x8f, 0x7d, - 0x1f, 0xbe, 0xf1, 0xb7, 0x02, 0x94, 0xc6, 0x97, 0x3e, 0x7a, 0x0c, 0xb5, 0x48, 0x10, 0x41, 0x67, - 0x34, 0x10, 0x29, 0x73, 0x61, 0x40, 0xaf, 0xa1, 0xea, 0x78, 0xc4, 0xa7, 0xb6, 0x48, 0xcf, 0x84, - 0xdd, 0xeb, 0x3d, 0xbd, 0xd5, 0x4d, 0x10, 0x38, 0x83, 0x1a, 0x07, 0x50, 0x4d, 0x6d, 0xf2, 0xea, - 0x7f, 0x3a, 0xe8, 0x9a, 0xef, 0x7b, 0x03, 0xb3, 0x9b, 0xc8, 0xae, 0x33, 0x18, 0xf7, 0xb4, 0x82, - 0x1c, 0x1d, 0xf5, 0x3e, 0x9a, 0x5a, 0x71, 0xf1, 0x50, 0x28, 0xbd, 0xdd, 0xff, 0xdd, 0x6b, 0xd7, - 0x13, 0xe7, 0xf1, 0x59, 0xcb, 0x66, 0xb3, 0xb6, 0x5a, 0x89, 0x71, 0xb7, 0x9d, 0xbf, 0x46, 0x5d, - 0x1a, 0xb4, 0xc3, 0xb3, 0x97, 0x2e, 0x6b, 0xaf, 0x3c, 0x50, 0xcf, 0x2a, 0x4a, 0x55, 0x5f, 0xff, - 0x3f, 0x00, 0x00, 0xff, 0xff, 0xd1, 0x11, 0xc2, 0xc9, 0x3f, 0x0f, 0x00, 0x00, + // 1787 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x57, 0xdd, 0x72, 0xdb, 0xb8, + 0x15, 0xb6, 0x24, 0x5b, 0xb2, 0x8e, 0x2c, 0x9b, 0x42, 0x36, 0x29, 0xe3, 0x26, 0xd9, 0x8c, 0xa6, + 0x9b, 0xa4, 0xdb, 0x46, 0x6e, 0xbc, 0x19, 0xc7, 0xbb, 0xed, 0xa4, 0x23, 0x47, 0x4a, 0xac, 0x5a, + 0x7f, 0x03, 0xc9, 0xd9, 0xa6, 0x33, 0x1d, 0x16, 0x26, 0x61, 0x9a, 0x35, 0x45, 0xd0, 0x20, 0xe8, + 0x56, 0xb9, 0xef, 0x03, 0xb4, 0x2f, 0xd1, 0xe9, 0x4c, 0x6f, 0x7b, 0xd9, 0xab, 0xbe, 0x40, 0x1f, + 0xa8, 0x17, 0x1d, 0x80, 0x20, 0xf5, 0x63, 0x7b, 0x3d, 0xbe, 0x22, 0x70, 0xce, 0x77, 0x0e, 0x80, + 0xf3, 0x4f, 0x78, 0x78, 0xea, 0x4f, 0x05, 0xf5, 0x1c, 0x7f, 0xc7, 0x66, 0x9c, 0xee, 0x08, 0x12, + 0x9d, 0x47, 0x8d, 0x90, 0x33, 0xc1, 0x50, 0x35, 0x65, 0x35, 0x24, 0x6b, 0xfb, 0xc9, 0x22, 0xd2, + 0x73, 0x68, 0x20, 0xbc, 0x53, 0x8f, 0xf2, 0x04, 0xbe, 0xfd, 0x78, 0x89, 0x1f, 0x08, 0xca, 0x4f, + 0x89, 0x4d, 0x35, 0xfb, 0xd1, 0x22, 0xdb, 0xf7, 0x04, 0xe5, 0xc4, 0x8f, 0xae, 0xe7, 0x46, 0xd4, + 0x8e, 0xb9, 0x27, 0xa6, 0x9a, 0xfb, 0xc4, 0x65, 0xcc, 0xf5, 0xe9, 0x8e, 0xda, 0x9d, 0xc4, 0xa7, + 0x3b, 0x4e, 0xcc, 0x89, 0xf0, 0x58, 0x90, 0x4a, 0x2f, 0xf3, 0x23, 0xc1, 0x63, 0x5b, 0x24, 0xdc, + 0xfa, 0x7f, 0xf3, 0x50, 0xc6, 0x34, 0x62, 0x31, 0xb7, 0x69, 0x84, 0x0e, 0x60, 0x9d, 0xd3, 0x8b, + 0x98, 0x46, 0x22, 0x32, 0x73, 0x4f, 0x0b, 0x2f, 0x2a, 0xbb, 0xcf, 0x1a, 0x0b, 0x0f, 0x6d, 0x64, + 0xd8, 0x6c, 0xd5, 0x0e, 0x04, 0x9f, 0xe2, 0x4c, 0x0e, 0xbd, 0x85, 0xa2, 0xef, 0x4d, 0x3c, 0x11, + 0x99, 0xf9, 0x3b, 0x69, 0xd0, 0x52, 0xdb, 0x7f, 0x80, 0xea, 0x02, 0x03, 0x7d, 0x0b, 0xab, 0x01, + 0x99, 0x50, 0x33, 0xf7, 0x34, 0xf7, 0x62, 0x73, 0xf7, 0xab, 0x5b, 0xd5, 0xf5, 0xc9, 0x84, 0x62, + 0x25, 0x82, 0xbe, 0x80, 0xb5, 0x4b, 0xe2, 0xc7, 0xd4, 0xcc, 0x3f, 0xcd, 0xbd, 0x28, 0xe3, 0x64, + 0x53, 0xff, 0x3d, 0x6c, 0xcc, 0x63, 0x51, 0x05, 0x4a, 0xc7, 0xfd, 0xa3, 0xfe, 0xe0, 0xfb, 0xbe, + 0xb1, 0x82, 0x4a, 0x50, 0x78, 0x37, 0x3c, 0x36, 0x72, 0x72, 0xf1, 0x61, 0x78, 0x6c, 0xe4, 0x11, + 0x40, 0xb1, 0xd7, 0xee, 0x0d, 0xf0, 0x27, 0xa3, 0x20, 0xa1, 0xa3, 0xf1, 0x00, 0x37, 0x3f, 0xb4, + 0x8d, 0x55, 0x74, 0x1f, 0x6a, 0xed, 0xe1, 0x61, 0xbb, 0xd7, 0xc6, 0xcd, 0xae, 0x95, 0x92, 0xd7, + 0xea, 0xff, 0xcc, 0xc1, 0x16, 0x8e, 0x03, 0xe1, 0x4d, 0x68, 0x8f, 0x0a, 0xe2, 0x10, 0x41, 0xd0, + 0x5b, 0x58, 0x15, 0xd3, 0x30, 0x7d, 0xc3, 0xd7, 0xcb, 0x6f, 0x58, 0x44, 0xa7, 0xfb, 0xf1, 0x34, + 0xa4, 0x58, 0xc9, 0x21, 0x13, 0x4a, 0x97, 0x94, 0x47, 0x1e, 0x0b, 0xf4, 0x53, 0xd2, 0x2d, 0x7a, + 0x00, 0xc5, 0x53, 0x9f, 0x5c, 0x32, 0x6e, 0x16, 0x14, 0x43, 0xef, 0xea, 0xcf, 0xa1, 0x32, 0xa7, + 0x06, 0x95, 0x61, 0x6d, 0x30, 0x3e, 0x6c, 0x63, 0x63, 0x05, 0x55, 0xa1, 0xfc, 0xbe, 0xfb, 0x69, + 0xdc, 0xb6, 0x46, 0xad, 0x23, 0x23, 0x57, 0xff, 0x6b, 0x0e, 0x36, 0x3f, 0x0c, 0x8f, 0x9b, 0xb6, + 0x4d, 0x7d, 0xca, 0x89, 0x60, 0x5c, 0xea, 0x74, 0xe8, 0xa5, 0x67, 0x27, 0xf7, 0x2d, 0x63, 0xbd, + 0x43, 0xcf, 0xa0, 0x1a, 0x07, 0x21, 0xe1, 0xc2, 0x93, 0xf1, 0x45, 0x1d, 0x75, 0x97, 0xf5, 0xc3, + 0x15, 0xbc, 0x48, 0x46, 0xcf, 0x61, 0x33, 0xdb, 0x5a, 0x91, 0xf7, 0x99, 0x26, 0x77, 0x93, 0xc0, + 0x8c, 0x3e, 0xf2, 0x3e, 0xd3, 0x83, 0x07, 0xf0, 0xc5, 0x22, 0xd0, 0x4a, 0x3c, 0x74, 0x01, 0x46, + 0xea, 0xa1, 0xcc, 0x84, 0x87, 0xb0, 0xe5, 0x86, 0xb1, 0x45, 0x66, 0xf7, 0x54, 0xb7, 0xab, 0xec, + 0x3e, 0x5e, 0xb2, 0xe6, 0xe2, 0x63, 0x0e, 0x57, 0xf0, 0xa6, 0x1b, 0xc6, 0x73, 0x94, 0x83, 0x7b, + 0x50, 0x9b, 0xd3, 0xa2, 0x8f, 0xfc, 0xcf, 0x1a, 0x6c, 0x8c, 0x49, 0x74, 0x9e, 0x9d, 0x57, 0x87, + 0x0d, 0xc7, 0x8b, 0x6c, 0x76, 0x49, 0x39, 0x39, 0xf1, 0x13, 0x53, 0xac, 0xe3, 0x05, 0x1a, 0xda, + 0x87, 0x12, 0x4f, 0x8c, 0xac, 0x4c, 0x51, 0xd9, 0x7d, 0xf2, 0xc3, 0x9e, 0xc5, 0x29, 0x1c, 0x7d, + 0x03, 0x25, 0xf9, 0x65, 0xb1, 0x30, 0x57, 0x95, 0xe4, 0xc3, 0x46, 0x92, 0xa7, 0x8d, 0x34, 0x4f, + 0x1b, 0x2d, 0x9d, 0xc7, 0x38, 0x45, 0xa2, 0x3d, 0x28, 0x71, 0x2a, 0xb8, 0x47, 0x23, 0x73, 0x4d, + 0x09, 0x3d, 0xba, 0x92, 0x0c, 0x82, 0x4f, 0x47, 0x82, 0x13, 0x41, 0xdd, 0x29, 0x4e, 0xc1, 0xe8, + 0x67, 0x50, 0x4b, 0xaf, 0x3d, 0xb5, 0xd2, 0x38, 0x2a, 0x2a, 0xd7, 0x1a, 0x19, 0xe3, 0xa3, 0x0e, + 0xa8, 0x7d, 0x30, 0x1d, 0x1a, 0x72, 0x6a, 0x13, 0x41, 0x1d, 0x8b, 0x72, 0xce, 0xb8, 0x35, 0xa1, + 0x51, 0x44, 0x5c, 0x6a, 0x96, 0x94, 0xcc, 0x83, 0x19, 0xbf, 0x2d, 0xd9, 0xbd, 0x84, 0x2b, 0xc3, + 0x43, 0x15, 0x36, 0x1e, 0x87, 0xc2, 0x93, 0x26, 0x5b, 0x4f, 0xc3, 0x63, 0x81, 0x8c, 0x5e, 0x02, + 0xb2, 0x89, 0x7d, 0x46, 0xad, 0x88, 0x72, 0x8f, 0xf8, 0xde, 0x67, 0x65, 0xdf, 0xb2, 0xb2, 0x6f, + 0x4d, 0x71, 0x46, 0x73, 0x0c, 0xf4, 0x15, 0x6c, 0xba, 0x34, 0x90, 0xce, 0xa2, 0x91, 0xe5, 0x50, + 0xfb, 0xdc, 0x04, 0x05, 0xad, 0x66, 0xd4, 0x16, 0xb5, 0xcf, 0x65, 0x99, 0x10, 0xc4, 0x8d, 0xcc, + 0x8a, 0xaa, 0x3a, 0xcb, 0x65, 0x62, 0xde, 0xb5, 0x8d, 0x31, 0x71, 0xa3, 0xa4, 0xe8, 0x28, 0x11, + 0xf4, 0x35, 0xd4, 0x42, 0xe6, 0x58, 0x82, 0x4e, 0x42, 0x9f, 0x08, 0x6a, 0xa9, 0x72, 0xb3, 0xa1, + 0xde, 0xba, 0x15, 0x32, 0x67, 0xac, 0xe9, 0xaa, 0x58, 0x74, 0xa1, 0xc6, 0x75, 0x68, 0x5a, 0x13, + 0xad, 0xd0, 0xac, 0x2a, 0x6f, 0x7c, 0x79, 0x43, 0x69, 0xca, 0xbc, 0x6f, 0xf0, 0x25, 0xca, 0xf6, + 0x1b, 0x28, 0x67, 0x97, 0x41, 0x06, 0x14, 0xce, 0xe9, 0x54, 0xe7, 0x9c, 0x5c, 0x5e, 0x5f, 0xbf, + 0xbe, 0xcb, 0xef, 0xe7, 0x0e, 0xee, 0xc3, 0xbd, 0x05, 0xa3, 0xea, 0x28, 0xfe, 0x8b, 0x8e, 0xe2, + 0xf4, 0xca, 0xe8, 0xa7, 0x90, 0xf7, 0x1c, 0x9d, 0x28, 0x0f, 0x97, 0xee, 0xd7, 0xc9, 0xba, 0x14, + 0xce, 0x7b, 0x0e, 0x42, 0xba, 0x46, 0x25, 0x67, 0x25, 0x75, 0xe7, 0x0d, 0xac, 0x67, 0x8f, 0x2c, + 0x28, 0x25, 0x3f, 0xfe, 0x01, 0xc3, 0xe2, 0x0c, 0x8c, 0x7e, 0x09, 0xe5, 0xac, 0xc9, 0xe9, 0x08, + 0x5f, 0xce, 0x53, 0x59, 0x97, 0x9c, 0x4e, 0x0a, 0xc2, 0x33, 0x3c, 0xda, 0x81, 0xa2, 0x1d, 0x47, + 0x82, 0x4d, 0x74, 0x98, 0xff, 0xe8, 0x4a, 0x6e, 0x8c, 0x54, 0x0f, 0xc3, 0x1a, 0x86, 0xf6, 0xa1, + 0x6c, 0xb3, 0x40, 0x10, 0x2f, 0xa0, 0x5c, 0x05, 0x76, 0x65, 0xd7, 0x5c, 0x3a, 0xed, 0x5d, 0xca, + 0x3f, 0x5c, 0xc1, 0x33, 0x30, 0xfa, 0x05, 0x94, 0xce, 0xf7, 0x23, 0x2b, 0x64, 0x8e, 0x59, 0x53, + 0x72, 0xf7, 0x97, 0xe4, 0x8e, 0xf6, 0xa3, 0x21, 0x73, 0x0e, 0x57, 0x70, 0xf1, 0x5c, 0xad, 0xd0, + 0x33, 0x28, 0x44, 0x17, 0xbe, 0x89, 0x14, 0x1a, 0x2d, 0xa1, 0x47, 0x17, 0xfe, 0xe1, 0x0a, 0x96, + 0x00, 0x19, 0x54, 0x72, 0x60, 0xb0, 0xa4, 0x1d, 0xb3, 0xa4, 0x93, 0x09, 0xb4, 0x86, 0xb7, 0x24, + 0x43, 0x3e, 0x3f, 0xcd, 0xb9, 0x0e, 0x18, 0x69, 0x57, 0xb7, 0xe4, 0xdd, 0xe8, 0x9f, 0x85, 0x4a, + 0x9e, 0xab, 0x05, 0x65, 0xa4, 0x61, 0xef, 0x12, 0x14, 0xde, 0x8a, 0x16, 0x09, 0xe8, 0xd7, 0x50, + 0xb4, 0x59, 0x70, 0xea, 0xb9, 0xa6, 0xa1, 0x12, 0xe1, 0xf9, 0x35, 0xfe, 0x4a, 0xa3, 0x43, 0x1a, + 0xe5, 0xd4, 0x73, 0x75, 0xff, 0x4d, 0xc4, 0xb6, 0xbf, 0x85, 0xca, 0x1c, 0xf9, 0x4e, 0x41, 0xb9, + 0x0e, 0x45, 0x41, 0xb8, 0x4b, 0x45, 0x7d, 0x0f, 0xaa, 0x99, 0xc1, 0x87, 0x8c, 0x0b, 0x99, 0xc4, + 0x99, 0xd1, 0xad, 0x90, 0x71, 0xa1, 0x34, 0x56, 0x71, 0xd5, 0x9e, 0x87, 0xd5, 0xff, 0x57, 0x80, + 0x72, 0x26, 0x28, 0x4f, 0xf2, 0x26, 0xb2, 0xee, 0x24, 0xa7, 0x27, 0x1b, 0xd9, 0x0b, 0x6d, 0x36, + 0x99, 0x90, 0xc0, 0x51, 0x13, 0x46, 0x19, 0xa7, 0x5b, 0x19, 0xc1, 0x84, 0xbb, 0x91, 0x59, 0x50, + 0x64, 0xb5, 0x46, 0x7b, 0x50, 0x4e, 0xb3, 0x2e, 0xd2, 0x81, 0x68, 0xde, 0x34, 0x42, 0xe0, 0x19, + 0x14, 0xbd, 0x84, 0x02, 0x0d, 0x2e, 0xcd, 0x35, 0x65, 0xc4, 0xe5, 0xa0, 0x3f, 0xa2, 0xd3, 0x8f, + 0xf2, 0xd5, 0x43, 0xe2, 0x71, 0x2c, 0x71, 0xe8, 0x4d, 0x66, 0xf6, 0xe2, 0xad, 0x12, 0x07, 0x79, + 0x33, 0x97, 0x9a, 0x1b, 0xed, 0xc2, 0x9a, 0x34, 0x47, 0x64, 0x96, 0x94, 0xdc, 0xa3, 0x9b, 0xc2, + 0x56, 0x9a, 0x07, 0x27, 0x50, 0xd4, 0x84, 0x8a, 0x4c, 0x32, 0x4b, 0x9f, 0x58, 0x56, 0xaf, 0x7a, + 0xba, 0x24, 0xd9, 0x22, 0x82, 0x74, 0x19, 0x71, 0xbc, 0xc0, 0x4d, 0xfc, 0x89, 0x41, 0x0a, 0x25, + 0x6b, 0xd4, 0x81, 0x0d, 0xc2, 0xed, 0x33, 0x4f, 0x50, 0x5b, 0xc4, 0x9c, 0xaa, 0x92, 0x7a, 0x75, + 0xb8, 0xca, 0x4e, 0x6f, 0x34, 0xe7, 0xc0, 0x78, 0x41, 0xb4, 0xde, 0x81, 0x8d, 0x79, 0xee, 0xe2, + 0x38, 0x55, 0x86, 0xb5, 0x66, 0xaf, 0xb5, 0xf7, 0xda, 0xc8, 0xa9, 0x25, 0xee, 0xed, 0xbd, 0x4e, + 0x46, 0xaa, 0x26, 0xee, 0x59, 0x1f, 0xf7, 0x8c, 0x42, 0xb6, 0x7e, 0x63, 0xac, 0xd6, 0xff, 0x95, + 0x07, 0xe8, 0x0c, 0xd2, 0x06, 0x86, 0x8e, 0xa0, 0xea, 0xb0, 0x3f, 0x05, 0x3e, 0x23, 0x8e, 0x35, + 0x61, 0x4e, 0x3a, 0x3e, 0x2d, 0x4f, 0x94, 0x33, 0x89, 0x46, 0x4b, 0xc3, 0x7b, 0xcc, 0xa1, 0x78, + 0xc3, 0x99, 0xdb, 0xa1, 0x36, 0x54, 0xe2, 0x70, 0xa6, 0x2a, 0xaf, 0x54, 0xfd, 0xe4, 0x66, 0x55, + 0xc7, 0x61, 0xa6, 0x08, 0xe2, 0x6c, 0x5d, 0xef, 0xc2, 0xc6, 0xfc, 0x21, 0x08, 0xc1, 0x66, 0x6b, + 0xf0, 0x7d, 0xbf, 0x3b, 0x68, 0xb6, 0xac, 0x76, 0xf3, 0x83, 0x9a, 0xb0, 0xee, 0xc1, 0x56, 0x46, + 0x1b, 0x8d, 0x71, 0xbb, 0xd9, 0x33, 0x72, 0x09, 0xd1, 0xea, 0x0f, 0xc6, 0x56, 0xca, 0x33, 0xf2, + 0xf5, 0x36, 0xc0, 0xec, 0x1c, 0xa9, 0xeb, 0x78, 0xa8, 0xa4, 0x06, 0x7d, 0xab, 0xfd, 0xdb, 0xce, + 0xd8, 0x58, 0x41, 0x06, 0x6c, 0x68, 0x5a, 0xa2, 0x3d, 0x87, 0x6a, 0x50, 0xd5, 0x8a, 0x12, 0x86, + 0x91, 0xaf, 0xff, 0x3d, 0x0f, 0xb5, 0x2b, 0xfe, 0x96, 0x89, 0x42, 0x03, 0xd9, 0x42, 0x1d, 0x3d, + 0xbc, 0xa4, 0x5b, 0xf4, 0x18, 0xc0, 0x0b, 0xc2, 0x58, 0x58, 0x21, 0x11, 0x67, 0x3a, 0x8f, 0xcb, + 0x8a, 0x32, 0x24, 0xe2, 0x0c, 0x7d, 0x09, 0x15, 0x16, 0x8b, 0x8c, 0x9f, 0x0c, 0x96, 0x90, 0x90, + 0x14, 0xa0, 0x03, 0xc5, 0x53, 0xc6, 0x27, 0x24, 0x19, 0x5e, 0x36, 0x77, 0x5f, 0xdd, 0x16, 0x7b, + 0x8d, 0x6e, 0xf2, 0x4b, 0xd3, 0x23, 0xe1, 0x7b, 0x25, 0x88, 0xb5, 0x02, 0xf4, 0x1d, 0x54, 0x3c, + 0x66, 0x45, 0xda, 0xea, 0xba, 0xe0, 0x3f, 0xbc, 0xd1, 0x2d, 0x18, 0x3c, 0x96, 0xae, 0xeb, 0xaf, + 0xc0, 0x58, 0xd6, 0x8b, 0xd6, 0x61, 0xf5, 0x37, 0xa3, 0x81, 0x0c, 0xbd, 0x75, 0x58, 0xfd, 0xd4, + 0xec, 0x75, 0x93, 0xc8, 0x1b, 0xe2, 0xc1, 0x78, 0x60, 0xe4, 0xeb, 0xff, 0xce, 0x41, 0x31, 0x29, + 0xe9, 0xe8, 0x57, 0x73, 0xbd, 0x2d, 0x77, 0x6d, 0x0a, 0x1d, 0xed, 0x47, 0x83, 0x93, 0x3f, 0x52, + 0x5b, 0x5c, 0xd3, 0xe0, 0x76, 0x61, 0x5d, 0xce, 0x0c, 0x51, 0x48, 0x6d, 0x3d, 0xfb, 0xdd, 0xd8, + 0xa5, 0x4a, 0x21, 0x73, 0x46, 0x21, 0xb5, 0x97, 0xf3, 0xb6, 0x70, 0xf7, 0xbc, 0xad, 0xff, 0x23, + 0x0f, 0xb5, 0x2b, 0xd7, 0x42, 0x2d, 0x28, 0xfa, 0xe4, 0x84, 0xfa, 0xe9, 0x5f, 0xdb, 0xcf, 0x6f, + 0x7b, 0x48, 0xa3, 0xab, 0xe0, 0xe9, 0x9f, 0x97, 0xda, 0xa0, 0x11, 0x54, 0x48, 0x10, 0x30, 0xa1, + 0xa6, 0xce, 0xf4, 0xf7, 0xed, 0xd5, 0xad, 0xaa, 0x9a, 0x33, 0x99, 0x44, 0xdf, 0xbc, 0x16, 0xd9, + 0x4e, 0xe6, 0xce, 0xba, 0x4b, 0x3b, 0xd9, 0x7e, 0x0b, 0xc6, 0xb2, 0xee, 0xbb, 0xc8, 0xd7, 0xff, + 0x96, 0x83, 0xc2, 0xe8, 0xc2, 0x47, 0x8f, 0xa0, 0x1c, 0x09, 0x22, 0xe8, 0x84, 0x06, 0x42, 0x4b, + 0xce, 0x08, 0xe8, 0x35, 0x94, 0x1c, 0x8f, 0xf8, 0xd4, 0x16, 0xba, 0x26, 0x6c, 0x5f, 0xed, 0xe9, + 0x8d, 0x56, 0x82, 0xc0, 0x29, 0xb4, 0xfe, 0x06, 0x4a, 0x9a, 0x26, 0xff, 0xa7, 0x8e, 0xfb, 0xad, + 0xf6, 0xfb, 0x4e, 0xbf, 0xdd, 0x4a, 0xc2, 0xae, 0xd9, 0x1f, 0x75, 0x8c, 0x9c, 0x5c, 0x1d, 0x76, + 0x3e, 0xb6, 0x8d, 0xfc, 0xec, 0xef, 0xab, 0x70, 0xb0, 0xf7, 0xbb, 0xd7, 0xae, 0x27, 0xce, 0xe2, + 0x93, 0x86, 0xcd, 0x26, 0x3b, 0xea, 0x24, 0xc6, 0xdd, 0x9d, 0xec, 0x17, 0xdf, 0xa5, 0xc1, 0x4e, + 0x78, 0xf2, 0xd2, 0x65, 0x3b, 0x0b, 0x7f, 0xfd, 0x27, 0x45, 0x15, 0x55, 0xdf, 0xfc, 0x3f, 0x00, + 0x00, 0xff, 0xff, 0x10, 0x90, 0xc9, 0x89, 0x94, 0x10, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/tasks.pb.validate.go b/gen/pb-go/flyteidl/core/tasks.pb.validate.go index 57d157dfd..32201a762 100644 --- a/gen/pb-go/flyteidl/core/tasks.pb.validate.go +++ b/gen/pb-go/flyteidl/core/tasks.pb.validate.go @@ -201,6 +201,164 @@ var _ interface { ErrorName() string } = RuntimeMetadataValidationError{} +// Validate checks the field values on GPUAccelerator with the rules defined in +// the proto definition for this message. If any rules are violated, an error +// is returned. +func (m *GPUAccelerator) Validate() error { + if m == nil { + return nil + } + + // no validation rules for Device + + switch m.PartitionSizeValue.(type) { + + case *GPUAccelerator_Unpartitioned: + // no validation rules for Unpartitioned + + case *GPUAccelerator_PartitionSize: + // no validation rules for PartitionSize + + } + + return nil +} + +// GPUAcceleratorValidationError is the validation error returned by +// GPUAccelerator.Validate if the designated constraints aren't met. +type GPUAcceleratorValidationError struct { + field string + reason string + cause error + key bool +} + +// Field function returns field value. +func (e GPUAcceleratorValidationError) Field() string { return e.field } + +// Reason function returns reason value. +func (e GPUAcceleratorValidationError) Reason() string { return e.reason } + +// Cause function returns cause value. +func (e GPUAcceleratorValidationError) Cause() error { return e.cause } + +// Key function returns key value. +func (e GPUAcceleratorValidationError) Key() bool { return e.key } + +// ErrorName returns error name. +func (e GPUAcceleratorValidationError) ErrorName() string { return "GPUAcceleratorValidationError" } + +// Error satisfies the builtin error interface +func (e GPUAcceleratorValidationError) Error() string { + cause := "" + if e.cause != nil { + cause = fmt.Sprintf(" | caused by: %v", e.cause) + } + + key := "" + if e.key { + key = "key for " + } + + return fmt.Sprintf( + "invalid %sGPUAccelerator.%s: %s%s", + key, + e.field, + e.reason, + cause) +} + +var _ error = GPUAcceleratorValidationError{} + +var _ interface { + Field() string + Reason() string + Key() bool + Cause() error + ErrorName() string +} = GPUAcceleratorValidationError{} + +// Validate checks the field values on ResourceMetadata with the rules defined +// in the proto definition for this message. If any rules are violated, an +// error is returned. +func (m *ResourceMetadata) Validate() error { + if m == nil { + return nil + } + + switch m.AcceleratorValue.(type) { + + case *ResourceMetadata_GpuAccelerator: + + if v, ok := interface{}(m.GetGpuAccelerator()).(interface{ Validate() error }); ok { + if err := v.Validate(); err != nil { + return ResourceMetadataValidationError{ + field: "GpuAccelerator", + reason: "embedded message failed validation", + cause: err, + } + } + } + + } + + return nil +} + +// ResourceMetadataValidationError is the validation error returned by +// ResourceMetadata.Validate if the designated constraints aren't met. +type ResourceMetadataValidationError struct { + field string + reason string + cause error + key bool +} + +// Field function returns field value. +func (e ResourceMetadataValidationError) Field() string { return e.field } + +// Reason function returns reason value. +func (e ResourceMetadataValidationError) Reason() string { return e.reason } + +// Cause function returns cause value. +func (e ResourceMetadataValidationError) Cause() error { return e.cause } + +// Key function returns key value. +func (e ResourceMetadataValidationError) Key() bool { return e.key } + +// ErrorName returns error name. +func (e ResourceMetadataValidationError) ErrorName() string { return "ResourceMetadataValidationError" } + +// Error satisfies the builtin error interface +func (e ResourceMetadataValidationError) Error() string { + cause := "" + if e.cause != nil { + cause = fmt.Sprintf(" | caused by: %v", e.cause) + } + + key := "" + if e.key { + key = "key for " + } + + return fmt.Sprintf( + "invalid %sResourceMetadata.%s: %s%s", + key, + e.field, + e.reason, + cause) +} + +var _ error = ResourceMetadataValidationError{} + +var _ interface { + Field() string + Reason() string + Key() bool + Cause() error + ErrorName() string +} = ResourceMetadataValidationError{} + // Validate checks the field values on TaskMetadata with the rules defined in // the proto definition for this message. If any rules are violated, an error // is returned. @@ -253,6 +411,16 @@ func (m *TaskMetadata) Validate() error { // no validation rules for PodTemplateName + if v, ok := interface{}(m.GetResourceMetadata()).(interface{ Validate() error }); ok { + if err := v.Validate(); err != nil { + return TaskMetadataValidationError{ + field: "ResourceMetadata", + reason: "embedded message failed validation", + cause: err, + } + } + } + switch m.InterruptibleValue.(type) { case *TaskMetadata_Interruptible: diff --git a/gen/pb-go/flyteidl/core/workflow.pb.go b/gen/pb-go/flyteidl/core/workflow.pb.go index c3203af98..e34c85eb7 100644 --- a/gen/pb-go/flyteidl/core/workflow.pb.go +++ b/gen/pb-go/flyteidl/core/workflow.pb.go @@ -1282,10 +1282,12 @@ func (m *WorkflowTemplate) GetMetadataDefaults() *WorkflowMetadataDefaults { // Optional task node overrides that will be applied at task execution time. type TaskNodeOverrides struct { // A customizable interface to convey resources requested for a task container. - Resources *Resources `protobuf:"bytes,1,opt,name=resources,proto3" json:"resources,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Resources *Resources `protobuf:"bytes,1,opt,name=resources,proto3" json:"resources,omitempty"` + // Additional metadata associated with resources to allocate to this task + ResourceMetadata *ResourceMetadata `protobuf:"bytes,2,opt,name=resource_metadata,json=resourceMetadata,proto3" json:"resource_metadata,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *TaskNodeOverrides) Reset() { *m = TaskNodeOverrides{} } @@ -1320,6 +1322,13 @@ func (m *TaskNodeOverrides) GetResources() *Resources { return nil } +func (m *TaskNodeOverrides) GetResourceMetadata() *ResourceMetadata { + if m != nil { + return m.ResourceMetadata + } + return nil +} + func init() { proto.RegisterEnum("flyteidl.core.WorkflowMetadata_OnFailurePolicy", WorkflowMetadata_OnFailurePolicy_name, WorkflowMetadata_OnFailurePolicy_value) proto.RegisterType((*IfBlock)(nil), "flyteidl.core.IfBlock") @@ -1345,96 +1354,97 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/workflow.proto", fileDescriptor_fccede37486c456e) } var fileDescriptor_fccede37486c456e = []byte{ - // 1448 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x57, 0x4d, 0x73, 0xdb, 0xba, - 0x15, 0x95, 0x64, 0xd9, 0x16, 0xaf, 0x2d, 0x5b, 0x46, 0xdc, 0x56, 0xf9, 0xf6, 0x70, 0xd2, 0xc6, - 0xc9, 0xa4, 0x52, 0x26, 0x69, 0x9c, 0xb4, 0x6e, 0x33, 0x95, 0x62, 0x25, 0xd2, 0xd4, 0x1f, 0x09, - 0xac, 0x7e, 0x6e, 0x38, 0x10, 0x09, 0xca, 0x18, 0x53, 0xa4, 0x02, 0x80, 0x4e, 0x34, 0xfd, 0x13, - 0xdd, 0x75, 0xf9, 0x66, 0xde, 0xe2, 0xfd, 0x8d, 0xb7, 0x7a, 0xdb, 0xb7, 0x7a, 0x3f, 0xe7, 0x2d, - 0xde, 0x00, 0x24, 0x28, 0x8b, 0x96, 0xe2, 0xec, 0x44, 0xdc, 0x73, 0xc1, 0x83, 0x8b, 0x7b, 0xce, - 0xa5, 0xe0, 0x8e, 0x1f, 0x4c, 0x24, 0x65, 0x5e, 0xd0, 0x74, 0x23, 0x4e, 0x9b, 0x9f, 0x22, 0x7e, - 0xee, 0x07, 0xd1, 0xa7, 0xc6, 0x98, 0x47, 0x32, 0x42, 0x55, 0x13, 0x6d, 0xa8, 0xe8, 0xad, 0xbb, - 0xb3, 0x60, 0x37, 0x0a, 0x3d, 0x26, 0x59, 0x14, 0x26, 0xe8, 0x7c, 0x98, 0x7e, 0xa6, 0x6e, 0x7c, - 0x29, 0x7c, 0x6f, 0x36, 0xcc, 0x3c, 0x1a, 0x4a, 0xe6, 0x33, 0xca, 0xe7, 0xa7, 0xb3, 0x50, 0x52, - 0xee, 0x13, 0x97, 0xa6, 0xe1, 0x1c, 0xd3, 0x80, 0x49, 0xca, 0x49, 0x20, 0xd2, 0xe8, 0xcd, 0xd9, - 0xa8, 0x24, 0xe2, 0x7c, 0x51, 0x68, 0x32, 0xa6, 0x62, 0xfe, 0x9e, 0x82, 0xba, 0x31, 0x67, 0x72, - 0x62, 0x08, 0x0f, 0xa3, 0x68, 0x18, 0xd0, 0xa6, 0x7e, 0x1a, 0xc4, 0x7e, 0xd3, 0x8b, 0x39, 0x99, - 0x1e, 0xc8, 0xfe, 0x2f, 0xac, 0xf6, 0xfc, 0x76, 0x10, 0xb9, 0xe7, 0xe8, 0x35, 0x58, 0x59, 0x35, - 0xea, 0xc5, 0x9d, 0xe2, 0xee, 0xda, 0xb3, 0x9d, 0xc6, 0x4c, 0xf1, 0x1a, 0xed, 0x28, 0x0a, 0x28, - 0x09, 0x3b, 0x9f, 0xc7, 0x9c, 0x0a, 0xc1, 0xa2, 0x10, 0x4f, 0x53, 0xd0, 0x53, 0xb0, 0xe4, 0x19, - 0x0d, 0x9d, 0x30, 0xf2, 0x68, 0xbd, 0xa4, 0xf3, 0x6f, 0xe4, 0xf2, 0x8f, 0x23, 0x8f, 0xe2, 0x8a, - 0x42, 0xa9, 0x5f, 0xf6, 0x4f, 0x45, 0x58, 0xeb, 0xf9, 0x9d, 0x40, 0xd0, 0x84, 0xc1, 0x63, 0x28, - 0xbb, 0x44, 0xd0, 0xf4, 0xe5, 0xbf, 0xce, 0x25, 0xa7, 0x3c, 0xb1, 0xc6, 0xa0, 0x27, 0xb0, 0x1c, - 0xc9, 0x33, 0xca, 0xeb, 0xa5, 0x9d, 0xa5, 0x2f, 0x80, 0x13, 0x10, 0x7a, 0x06, 0x16, 0x0d, 0x04, - 0x4d, 0xb8, 0x2d, 0x2d, 0xe4, 0xd6, 0x2d, 0xe0, 0x8a, 0xc2, 0xa9, 0xdf, 0xea, 0x0d, 0x94, 0xf3, - 0x88, 0xd7, 0xcb, 0x1a, 0xbf, 0x9d, 0xc3, 0x77, 0x54, 0xac, 0x5b, 0xc0, 0x09, 0xa8, 0x6d, 0xc1, - 0xaa, 0x47, 0x7d, 0x12, 0x07, 0xd2, 0x6e, 0x01, 0xb4, 0x39, 0x09, 0xdd, 0x33, 0xbd, 0xcd, 0x73, - 0x58, 0x65, 0xbe, 0xa3, 0x76, 0x4d, 0xcf, 0x75, 0xeb, 0x0a, 0xd5, 0xac, 0x02, 0x78, 0x85, 0xe9, - 0x07, 0xfb, 0xff, 0x45, 0xa8, 0xf4, 0x89, 0x38, 0xd7, 0x3b, 0xbc, 0x86, 0x75, 0x4e, 0x7d, 0xca, - 0x69, 0xe8, 0x52, 0x87, 0x79, 0xe9, 0x36, 0x37, 0xf3, 0xdb, 0x64, 0xbd, 0xd8, 0x2d, 0xe0, 0xb5, - 0x2c, 0xa1, 0xe7, 0xa9, 0x8b, 0x8d, 0x2e, 0x28, 0xe7, 0xcc, 0xa3, 0x22, 0xbd, 0x98, 0xfc, 0xc5, - 0x9a, 0x77, 0x9d, 0x18, 0x1c, 0x9e, 0xa6, 0xb4, 0xd7, 0xc0, 0xca, 0xb6, 0xb3, 0xbf, 0x2b, 0xc2, - 0xfa, 0x3f, 0x53, 0x85, 0x69, 0x76, 0x6d, 0xd8, 0x08, 0x48, 0x1c, 0xba, 0x67, 0xe3, 0x80, 0x84, - 0x0e, 0xa7, 0xfe, 0xd7, 0xf0, 0xab, 0x4e, 0x53, 0x30, 0xf5, 0x51, 0x07, 0x6a, 0x22, 0x1e, 0x38, - 0x46, 0xb9, 0x7a, 0x97, 0xd2, 0xf5, 0xbb, 0x6c, 0x88, 0x78, 0x60, 0xb8, 0x60, 0xea, 0xcf, 0x12, - 0x6d, 0x42, 0xad, 0x35, 0x1e, 0xf3, 0xe8, 0x82, 0xbe, 0xc9, 0x5a, 0xf4, 0x36, 0x58, 0x82, 0x0d, - 0x43, 0x12, 0x98, 0x32, 0x5a, 0xb8, 0x92, 0x2c, 0xf4, 0x3c, 0xfb, 0x7f, 0x45, 0xd8, 0x3c, 0xd5, - 0x0f, 0x5f, 0x97, 0x80, 0x1a, 0x50, 0x56, 0x42, 0x4c, 0x99, 0xe6, 0xaf, 0xf5, 0x30, 0x11, 0x77, - 0x7f, 0x32, 0xa6, 0x58, 0xe3, 0xd0, 0x53, 0xd8, 0x8e, 0x62, 0x39, 0x8e, 0xa5, 0x73, 0x41, 0x38, - 0x23, 0x83, 0x80, 0x3a, 0x21, 0x19, 0x25, 0xfd, 0x68, 0x61, 0x94, 0xc4, 0xfe, 0x91, 0x86, 0x8e, - 0xc9, 0x88, 0xda, 0xef, 0x60, 0xe3, 0x34, 0xa0, 0x74, 0x3c, 0x25, 0xf4, 0x02, 0x2a, 0x46, 0xc1, - 0x59, 0x9d, 0x13, 0x89, 0x37, 0x8c, 0xc4, 0x1b, 0x07, 0x29, 0x00, 0x67, 0x50, 0xfb, 0x87, 0x22, - 0x54, 0xde, 0x11, 0x99, 0x34, 0xf6, 0x3e, 0xac, 0x92, 0xa4, 0x32, 0xe9, 0x16, 0xf7, 0x73, 0xd4, - 0xf3, 0x75, 0xeb, 0x16, 0xb0, 0xc9, 0x40, 0xaf, 0x60, 0x25, 0x29, 0x40, 0x7a, 0xec, 0x7b, 0xb9, - 0xdc, 0x5c, 0x05, 0xbb, 0x05, 0x9c, 0xe2, 0xd1, 0x0b, 0x58, 0x16, 0xea, 0x30, 0xa9, 0xfe, 0xee, - 0xe6, 0x13, 0x67, 0x0e, 0xaa, 0x84, 0xa5, 0xd1, 0xea, 0x52, 0x33, 0x8f, 0xb1, 0xbf, 0x2f, 0x82, - 0xd5, 0xe2, 0x9c, 0x4c, 0xf4, 0x41, 0x1e, 0x42, 0x59, 0x0b, 0xba, 0xb8, 0xd8, 0x6c, 0x34, 0x00, - 0xed, 0xc0, 0xda, 0x98, 0x70, 0x12, 0x04, 0x34, 0x60, 0x62, 0xa4, 0x99, 0x57, 0xf1, 0xe5, 0x25, - 0xf4, 0x5b, 0xa8, 0x8e, 0x58, 0xe8, 0x88, 0xd8, 0x75, 0xa9, 0x10, 0x54, 0x68, 0x92, 0xd5, 0x6e, - 0x01, 0xaf, 0x8f, 0x58, 0x78, 0x6a, 0x56, 0xd1, 0x13, 0xd8, 0xba, 0x04, 0x73, 0x74, 0x75, 0xb5, - 0x3f, 0x94, 0xba, 0x05, 0xbc, 0x39, 0x85, 0x62, 0x15, 0x68, 0x23, 0xd5, 0xd6, 0x09, 0xd2, 0xe5, - 0xaa, 0x1d, 0x18, 0xb1, 0x7f, 0x2c, 0xc2, 0xba, 0x62, 0x76, 0x44, 0x25, 0xf1, 0x88, 0x24, 0x08, - 0x41, 0x59, 0x77, 0x41, 0xd2, 0x5d, 0xfa, 0xb7, 0xf2, 0x0c, 0xc9, 0x46, 0x34, 0x8a, 0x65, 0x6a, - 0x3e, 0x5f, 0xb8, 0x64, 0x83, 0x44, 0x7b, 0xb0, 0xca, 0xa9, 0xe4, 0x8c, 0x8a, 0xfa, 0xb2, 0x4e, - 0xba, 0x93, 0x2b, 0x08, 0xa6, 0x92, 0x4f, 0x4e, 0x25, 0x27, 0x92, 0x0e, 0x27, 0xd8, 0x80, 0xd1, - 0xef, 0xa0, 0xaa, 0xe7, 0x14, 0x8f, 0xc7, 0x92, 0x0d, 0x02, 0x5a, 0x5f, 0xd9, 0x29, 0xee, 0x56, - 0x94, 0x48, 0x67, 0x96, 0xdb, 0xbf, 0x82, 0x1b, 0x33, 0x0b, 0xce, 0x05, 0x09, 0x62, 0xa5, 0xb3, - 0xe5, 0x56, 0xc0, 0x88, 0x40, 0x35, 0x58, 0xba, 0x20, 0x3c, 0x3d, 0x87, 0xfa, 0x89, 0xb6, 0x61, - 0x99, 0xa8, 0x90, 0x2e, 0xb8, 0x85, 0x93, 0x07, 0xfb, 0x9b, 0x32, 0x94, 0xf5, 0xf5, 0x6d, 0x40, - 0x29, 0x53, 0x55, 0x89, 0x79, 0xe8, 0x25, 0x54, 0x46, 0x69, 0x55, 0xd2, 0xe6, 0xba, 0x3d, 0xe7, - 0x4a, 0x4d, 0xe1, 0x70, 0x06, 0x46, 0x0d, 0x58, 0x61, 0xe1, 0x38, 0x96, 0xea, 0xd6, 0xe6, 0x0d, - 0x83, 0x36, 0x0b, 0x3d, 0x16, 0x0e, 0x71, 0x8a, 0x42, 0x8f, 0x61, 0x2b, 0x1e, 0x0b, 0xc9, 0x29, - 0x19, 0xe9, 0x89, 0xe0, 0x30, 0x4f, 0xd4, 0xcb, 0x3b, 0x4b, 0xbb, 0x16, 0xde, 0x34, 0x01, 0xf5, - 0xaa, 0x9e, 0x27, 0xd0, 0x3e, 0x6c, 0xa4, 0xa2, 0xd5, 0xec, 0x75, 0x71, 0x97, 0xe6, 0x8c, 0x03, - 0x5d, 0x03, 0x5c, 0x4d, 0xb0, 0xad, 0x04, 0x8a, 0xf6, 0xc0, 0x52, 0x53, 0x3c, 0x19, 0x3b, 0x2b, - 0xfa, 0x48, 0xbf, 0x59, 0xe0, 0xbc, 0x6a, 0xf4, 0x48, 0xe3, 0xf8, 0x6d, 0xa8, 0x66, 0x5e, 0xa8, - 0x73, 0x57, 0xe7, 0x96, 0xe3, 0xb2, 0x0f, 0xab, 0x56, 0xfd, 0x74, 0xd9, 0x97, 0xff, 0x0c, 0x6b, - 0x03, 0x3d, 0x85, 0x92, 0x1d, 0x2a, 0x73, 0xed, 0x74, 0x3a, 0xa7, 0xba, 0x05, 0x0c, 0x83, 0xe9, - 0xd4, 0xda, 0x03, 0x6b, 0x48, 0x64, 0x3a, 0x30, 0xad, 0xb9, 0xcc, 0x8d, 0x9f, 0x28, 0xe6, 0x43, - 0xe3, 0x2d, 0x7f, 0x04, 0x20, 0x4a, 0x9f, 0x49, 0x22, 0xe8, 0xc4, 0x7a, 0xbe, 0x54, 0x46, 0xc0, - 0xdd, 0x02, 0xb6, 0x88, 0x79, 0x68, 0x57, 0x60, 0x45, 0x12, 0x3e, 0xa4, 0xd2, 0xfe, 0xb9, 0x04, - 0x35, 0x73, 0xb6, 0x4c, 0x27, 0x47, 0x80, 0x3e, 0xc6, 0x24, 0x60, 0x72, 0xe2, 0x44, 0xbe, 0x23, - 0x28, 0xbf, 0x60, 0xee, 0x22, 0x03, 0xfb, 0x90, 0x00, 0x4f, 0xfc, 0xd3, 0x04, 0x86, 0x6b, 0x1f, - 0x73, 0x2b, 0xe8, 0x18, 0x20, 0x0a, 0x1d, 0x9f, 0xb0, 0x20, 0xe6, 0x89, 0x85, 0x6f, 0x3c, 0x6b, - 0x2e, 0xa8, 0xaf, 0xe1, 0xd0, 0x38, 0x09, 0xdf, 0x26, 0x09, 0xef, 0xa3, 0x80, 0xb9, 0x13, 0x6c, - 0x45, 0x66, 0x01, 0xfd, 0x05, 0xca, 0x92, 0x0c, 0x4d, 0x07, 0x3e, 0xba, 0x6e, 0xa7, 0x3e, 0x19, - 0x8a, 0x4e, 0x28, 0xf9, 0x04, 0xeb, 0xb4, 0x5b, 0x2f, 0xc1, 0xca, 0x96, 0x94, 0x92, 0xce, 0xe9, - 0xc4, 0x28, 0xe9, 0x9c, 0x4e, 0x94, 0x92, 0xb4, 0xda, 0x8c, 0x92, 0xf4, 0xc3, 0x9f, 0x4a, 0xaf, - 0x8a, 0xf6, 0x07, 0xd8, 0xcc, 0xb1, 0x42, 0xdb, 0x50, 0x7b, 0xdb, 0xea, 0x1d, 0x3a, 0xbd, 0xa3, - 0xa3, 0xce, 0x41, 0xaf, 0xd5, 0xef, 0x1c, 0xfe, 0xbb, 0x56, 0x40, 0xbb, 0xf0, 0x40, 0xaf, 0xb6, - 0xde, 0xf6, 0x3b, 0xd8, 0xe9, 0xfc, 0xab, 0xf3, 0xe6, 0xef, 0xfd, 0x56, 0xfb, 0xb0, 0xe3, 0x1c, - 0x9f, 0x1c, 0x74, 0x4e, 0x9d, 0x37, 0x27, 0x47, 0xef, 0x0f, 0x3b, 0xfd, 0x4e, 0xad, 0x68, 0xff, - 0x15, 0xea, 0x79, 0xbe, 0x07, 0xc9, 0xa7, 0x8d, 0x40, 0x0f, 0xf2, 0x66, 0xa1, 0x48, 0x56, 0x72, - 0x56, 0x61, 0x7f, 0xbb, 0x34, 0xbd, 0xc0, 0x3e, 0x1d, 0x8d, 0x03, 0x22, 0x29, 0x7a, 0x94, 0xc9, - 0xfd, 0x4b, 0x63, 0x5d, 0x3b, 0xc1, 0xfe, 0x15, 0x27, 0xb8, 0x7f, 0x4d, 0x41, 0x2f, 0xb9, 0xc1, - 0x3e, 0x58, 0xd9, 0x77, 0xf7, 0x82, 0x59, 0xa3, 0x86, 0xb2, 0xd7, 0x33, 0x20, 0x3c, 0xc5, 0xa3, - 0x47, 0xb0, 0xac, 0x3a, 0x37, 0xb1, 0x83, 0x05, 0x33, 0x25, 0x41, 0xa0, 0xa7, 0xb0, 0x9a, 0xa8, - 0xdd, 0x58, 0xc2, 0x22, 0xdb, 0x31, 0x30, 0xb4, 0x07, 0xeb, 0x69, 0xc3, 0x5d, 0x76, 0x84, 0xb9, - 0xef, 0x58, 0x4b, 0x81, 0x5a, 0x54, 0x7d, 0xd8, 0x32, 0xa7, 0x73, 0xd2, 0x8f, 0x4c, 0x91, 0x5a, - 0xc2, 0xc3, 0x6b, 0xea, 0x62, 0x2e, 0x0e, 0xd7, 0x46, 0xb9, 0x15, 0xfb, 0x6f, 0xb0, 0x75, 0xe5, - 0xb3, 0x4f, 0xe9, 0x9e, 0x53, 0x11, 0xc5, 0xdc, 0xa5, 0x22, 0xbd, 0xab, 0xfa, 0x95, 0x31, 0x92, - 0xc6, 0xf1, 0x14, 0xda, 0xde, 0xfb, 0xcf, 0x1f, 0x86, 0x4c, 0x9e, 0xc5, 0x83, 0x86, 0x1b, 0x8d, - 0x9a, 0x3a, 0x21, 0xe2, 0xc3, 0x66, 0xf6, 0xdf, 0x64, 0x48, 0xc3, 0xe6, 0x78, 0xf0, 0xfb, 0x61, - 0xd4, 0x9c, 0xf9, 0xbb, 0x32, 0x58, 0xd1, 0x03, 0xed, 0xf9, 0x2f, 0x01, 0x00, 0x00, 0xff, 0xff, - 0xc8, 0xd8, 0x49, 0xbd, 0xc4, 0x0d, 0x00, 0x00, + // 1465 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x57, 0xcd, 0x72, 0xdb, 0xc8, + 0x11, 0x26, 0x29, 0x4a, 0x22, 0x5a, 0xa2, 0x44, 0x8d, 0x95, 0x84, 0xfe, 0x57, 0xa1, 0x9c, 0x58, + 0x76, 0x39, 0xa4, 0xcb, 0x8e, 0x65, 0x27, 0x4a, 0x5c, 0x21, 0x2d, 0xda, 0x64, 0x95, 0x7e, 0xec, + 0x11, 0xf3, 0x7b, 0x41, 0x0d, 0x81, 0x01, 0x35, 0x25, 0x10, 0xa0, 0x67, 0x06, 0xb2, 0x59, 0x79, + 0x89, 0xdc, 0x52, 0x39, 0x6d, 0xd5, 0x1e, 0xf6, 0x35, 0xf6, 0xb4, 0xd7, 0x3d, 0xed, 0xe3, 0xec, + 0x61, 0x6b, 0x06, 0x18, 0x50, 0x84, 0x48, 0xcb, 0x37, 0xcc, 0xf4, 0xd7, 0x83, 0x9e, 0xee, 0xfe, + 0xbe, 0x06, 0xe0, 0x8e, 0x1f, 0x4c, 0x24, 0x65, 0x5e, 0xd0, 0x74, 0x23, 0x4e, 0x9b, 0x9f, 0x22, + 0x7e, 0xee, 0x07, 0xd1, 0xa7, 0xc6, 0x98, 0x47, 0x32, 0x42, 0x55, 0x63, 0x6d, 0x28, 0xeb, 0xad, + 0xbb, 0xb3, 0x60, 0x37, 0x0a, 0x3d, 0x26, 0x59, 0x14, 0x26, 0xe8, 0xbc, 0x99, 0x7e, 0xa6, 0x6e, + 0x7c, 0xc9, 0x7c, 0x6f, 0xd6, 0xcc, 0x3c, 0x1a, 0x4a, 0xe6, 0x33, 0xca, 0xe7, 0xbb, 0xb3, 0x50, + 0x52, 0xee, 0x13, 0x97, 0xa6, 0xe6, 0x5c, 0xa4, 0x01, 0x93, 0x94, 0x93, 0x40, 0xa4, 0xd6, 0x9b, + 0xb3, 0x56, 0x49, 0xc4, 0xf9, 0x22, 0xd3, 0x64, 0x4c, 0xc5, 0xfc, 0x33, 0x05, 0x75, 0x63, 0xce, + 0xe4, 0xc4, 0x04, 0x3c, 0x8c, 0xa2, 0x61, 0x40, 0x9b, 0x7a, 0x35, 0x88, 0xfd, 0xa6, 0x17, 0x73, + 0x32, 0xbd, 0x90, 0xfd, 0x1f, 0x58, 0xed, 0xf9, 0xed, 0x20, 0x72, 0xcf, 0xd1, 0x6b, 0xb0, 0xb2, + 0x6c, 0xd4, 0x8b, 0x3b, 0xc5, 0xdd, 0xb5, 0x67, 0x3b, 0x8d, 0x99, 0xe4, 0x35, 0xda, 0x51, 0x14, + 0x50, 0x12, 0x76, 0x3e, 0x8f, 0x39, 0x15, 0x82, 0x45, 0x21, 0x9e, 0xba, 0xa0, 0xa7, 0x60, 0xc9, + 0x33, 0x1a, 0x3a, 0x61, 0xe4, 0xd1, 0x7a, 0x49, 0xfb, 0xdf, 0xc8, 0xf9, 0x1f, 0x47, 0x1e, 0xc5, + 0x15, 0x85, 0x52, 0x4f, 0xf6, 0x4f, 0x45, 0x58, 0xeb, 0xf9, 0x9d, 0x40, 0xd0, 0x24, 0x82, 0xc7, + 0x50, 0x76, 0x89, 0xa0, 0xe9, 0xcb, 0x7f, 0x9d, 0x73, 0x4e, 0xe3, 0xc4, 0x1a, 0x83, 0x9e, 0xc0, + 0x72, 0x24, 0xcf, 0x28, 0xaf, 0x97, 0x76, 0x96, 0xbe, 0x00, 0x4e, 0x40, 0xe8, 0x19, 0x58, 0x34, + 0x10, 0x34, 0x89, 0x6d, 0x69, 0x61, 0x6c, 0xdd, 0x02, 0xae, 0x28, 0x9c, 0x7a, 0x56, 0x6f, 0xa0, + 0x9c, 0x47, 0xbc, 0x5e, 0xd6, 0xf8, 0xed, 0x1c, 0xbe, 0xa3, 0x6c, 0xdd, 0x02, 0x4e, 0x40, 0x6d, + 0x0b, 0x56, 0x3d, 0xea, 0x93, 0x38, 0x90, 0x76, 0x0b, 0xa0, 0xcd, 0x49, 0xe8, 0x9e, 0xe9, 0x63, + 0x9e, 0xc3, 0x2a, 0xf3, 0x1d, 0x75, 0x6a, 0x7a, 0xaf, 0x5b, 0x57, 0x42, 0xcd, 0x32, 0x80, 0x57, + 0x98, 0x5e, 0xd8, 0xff, 0x2b, 0x42, 0xa5, 0x4f, 0xc4, 0xb9, 0x3e, 0xe1, 0x35, 0xac, 0x73, 0xea, + 0x53, 0x4e, 0x43, 0x97, 0x3a, 0xcc, 0x4b, 0x8f, 0xb9, 0x99, 0x3f, 0x26, 0xeb, 0xc5, 0x6e, 0x01, + 0xaf, 0x65, 0x0e, 0x3d, 0x4f, 0x15, 0x36, 0xba, 0xa0, 0x9c, 0x33, 0x8f, 0x8a, 0xb4, 0x30, 0xf9, + 0xc2, 0x9a, 0x77, 0x9d, 0x18, 0x1c, 0x9e, 0xba, 0xb4, 0xd7, 0xc0, 0xca, 0x8e, 0xb3, 0xbf, 0x2b, + 0xc2, 0xfa, 0x3f, 0x52, 0x86, 0xe9, 0xe8, 0xda, 0xb0, 0x11, 0x90, 0x38, 0x74, 0xcf, 0xc6, 0x01, + 0x09, 0x1d, 0x4e, 0xfd, 0xaf, 0x89, 0xaf, 0x3a, 0x75, 0xc1, 0xd4, 0x47, 0x1d, 0xa8, 0x89, 0x78, + 0xe0, 0x18, 0xe6, 0xea, 0x53, 0x4a, 0xd7, 0x9f, 0xb2, 0x21, 0xe2, 0x81, 0x89, 0x05, 0x53, 0x7f, + 0x36, 0xd0, 0x26, 0xd4, 0x5a, 0xe3, 0x31, 0x8f, 0x2e, 0xe8, 0x9b, 0xac, 0x45, 0x6f, 0x83, 0x25, + 0xd8, 0x30, 0x24, 0x81, 0x49, 0xa3, 0x85, 0x2b, 0xc9, 0x46, 0xcf, 0xb3, 0xff, 0x5b, 0x84, 0xcd, + 0x53, 0xbd, 0xf8, 0x3a, 0x07, 0xd4, 0x80, 0xb2, 0x22, 0x62, 0x1a, 0x69, 0xbe, 0xac, 0x87, 0x09, + 0xb9, 0xfb, 0x93, 0x31, 0xc5, 0x1a, 0x87, 0x9e, 0xc2, 0x76, 0x14, 0xcb, 0x71, 0x2c, 0x9d, 0x0b, + 0xc2, 0x19, 0x19, 0x04, 0xd4, 0x09, 0xc9, 0x28, 0xe9, 0x47, 0x0b, 0xa3, 0xc4, 0xf6, 0xf7, 0xd4, + 0x74, 0x4c, 0x46, 0xd4, 0x7e, 0x07, 0x1b, 0xa7, 0x01, 0xa5, 0xe3, 0x69, 0x40, 0x2f, 0xa0, 0x62, + 0x18, 0x9c, 0xe5, 0x39, 0xa1, 0x78, 0xc3, 0x50, 0xbc, 0x71, 0x90, 0x02, 0x70, 0x06, 0xb5, 0x7f, + 0x28, 0x42, 0xe5, 0x1d, 0x91, 0x49, 0x63, 0xef, 0xc3, 0x2a, 0x49, 0x32, 0x93, 0x1e, 0x71, 0x3f, + 0x17, 0x7a, 0x3e, 0x6f, 0xdd, 0x02, 0x36, 0x1e, 0xe8, 0x15, 0xac, 0x24, 0x09, 0x48, 0xaf, 0x7d, + 0x2f, 0xe7, 0x9b, 0xcb, 0x60, 0xb7, 0x80, 0x53, 0x3c, 0x7a, 0x01, 0xcb, 0x42, 0x5d, 0x26, 0xe5, + 0xdf, 0xdd, 0xbc, 0xe3, 0xcc, 0x45, 0x15, 0xb1, 0x34, 0x5a, 0x15, 0x35, 0xd3, 0x18, 0xfb, 0xfb, + 0x22, 0x58, 0x2d, 0xce, 0xc9, 0x44, 0x5f, 0xe4, 0x21, 0x94, 0x35, 0xa1, 0x8b, 0x8b, 0xc5, 0x46, + 0x03, 0xd0, 0x0e, 0xac, 0x8d, 0x09, 0x27, 0x41, 0x40, 0x03, 0x26, 0x46, 0x3a, 0xf2, 0x2a, 0xbe, + 0xbc, 0x85, 0x7e, 0x0b, 0xd5, 0x11, 0x0b, 0x1d, 0x11, 0xbb, 0x2e, 0x15, 0x82, 0x0a, 0x1d, 0x64, + 0xb5, 0x5b, 0xc0, 0xeb, 0x23, 0x16, 0x9e, 0x9a, 0x5d, 0xf4, 0x04, 0xb6, 0x2e, 0xc1, 0x1c, 0x9d, + 0x5d, 0xad, 0x0f, 0xa5, 0x6e, 0x01, 0x6f, 0x4e, 0xa1, 0x58, 0x19, 0xda, 0x48, 0xb5, 0x75, 0x82, + 0x74, 0xb9, 0x6a, 0x07, 0x46, 0xec, 0x1f, 0x8b, 0xb0, 0xae, 0x22, 0x3b, 0xa2, 0x92, 0x78, 0x44, + 0x12, 0x84, 0xa0, 0xac, 0xbb, 0x20, 0xe9, 0x2e, 0xfd, 0xac, 0x34, 0x43, 0xb2, 0x11, 0x8d, 0x62, + 0x99, 0x8a, 0xcf, 0x17, 0x8a, 0x6c, 0x90, 0x68, 0x0f, 0x56, 0x39, 0x95, 0x9c, 0x51, 0x51, 0x5f, + 0xd6, 0x4e, 0x77, 0x72, 0x09, 0xc1, 0x54, 0xf2, 0xc9, 0xa9, 0xe4, 0x44, 0xd2, 0xe1, 0x04, 0x1b, + 0x30, 0xfa, 0x1d, 0x54, 0xf5, 0x9c, 0xe2, 0xf1, 0x58, 0xb2, 0x41, 0x40, 0xeb, 0x2b, 0x3b, 0xc5, + 0xdd, 0x8a, 0x22, 0xe9, 0xcc, 0x76, 0xfb, 0x57, 0x70, 0x63, 0x66, 0xc3, 0xb9, 0x20, 0x41, 0xac, + 0x78, 0xb6, 0xdc, 0x0a, 0x18, 0x11, 0xa8, 0x06, 0x4b, 0x17, 0x84, 0xa7, 0xf7, 0x50, 0x8f, 0x68, + 0x1b, 0x96, 0x89, 0x32, 0xe9, 0x84, 0x5b, 0x38, 0x59, 0xd8, 0xdf, 0x94, 0xa1, 0xac, 0xcb, 0xb7, + 0x01, 0xa5, 0x8c, 0x55, 0x25, 0xe6, 0xa1, 0x97, 0x50, 0x19, 0xa5, 0x59, 0x49, 0x9b, 0xeb, 0xf6, + 0x9c, 0x92, 0x9a, 0xc4, 0xe1, 0x0c, 0x8c, 0x1a, 0xb0, 0xc2, 0xc2, 0x71, 0x2c, 0x55, 0xd5, 0xe6, + 0x0d, 0x83, 0x36, 0x0b, 0x3d, 0x16, 0x0e, 0x71, 0x8a, 0x42, 0x8f, 0x61, 0x2b, 0x1e, 0x0b, 0xc9, + 0x29, 0x19, 0xe9, 0x89, 0xe0, 0x30, 0x4f, 0xd4, 0xcb, 0x3b, 0x4b, 0xbb, 0x16, 0xde, 0x34, 0x06, + 0xf5, 0xaa, 0x9e, 0x27, 0xd0, 0x3e, 0x6c, 0xa4, 0xa4, 0xd5, 0xd1, 0xeb, 0xe4, 0x2e, 0xcd, 0x19, + 0x07, 0x3a, 0x07, 0xb8, 0x9a, 0x60, 0x5b, 0x09, 0x14, 0xed, 0x81, 0xa5, 0xa6, 0x78, 0x32, 0x76, + 0x56, 0xf4, 0x95, 0x7e, 0xb3, 0x40, 0x79, 0xd5, 0xe8, 0x91, 0x46, 0xf1, 0xdb, 0x50, 0xcd, 0xb4, + 0x50, 0xfb, 0xae, 0xce, 0x4d, 0xc7, 0x65, 0x1d, 0x56, 0xad, 0xfa, 0xe9, 0xb2, 0x2e, 0xff, 0x19, + 0xd6, 0x06, 0x7a, 0x0a, 0x25, 0x27, 0x54, 0xe6, 0xca, 0xe9, 0x74, 0x4e, 0x75, 0x0b, 0x18, 0x06, + 0xd3, 0xa9, 0xb5, 0x07, 0xd6, 0x90, 0xc8, 0x74, 0x60, 0x5a, 0x73, 0x23, 0x37, 0x7a, 0xa2, 0x22, + 0x1f, 0x1a, 0x6d, 0xf9, 0x23, 0x00, 0x51, 0xfc, 0x4c, 0x1c, 0x41, 0x3b, 0xd6, 0xf3, 0xa9, 0x32, + 0x04, 0xee, 0x16, 0xb0, 0x45, 0xcc, 0xa2, 0x5d, 0x81, 0x15, 0x49, 0xf8, 0x90, 0x4a, 0xfb, 0xe7, + 0x12, 0xd4, 0xcc, 0xdd, 0x32, 0x9e, 0x1c, 0x01, 0xfa, 0x18, 0x93, 0x80, 0xc9, 0x89, 0x13, 0xf9, + 0x8e, 0xa0, 0xfc, 0x82, 0xb9, 0x8b, 0x04, 0xec, 0x43, 0x02, 0x3c, 0xf1, 0x4f, 0x13, 0x18, 0xae, + 0x7d, 0xcc, 0xed, 0xa0, 0x63, 0x80, 0x28, 0x74, 0x7c, 0xc2, 0x82, 0x98, 0x27, 0x12, 0xbe, 0xf1, + 0xac, 0xb9, 0x20, 0xbf, 0x26, 0x86, 0xc6, 0x49, 0xf8, 0x36, 0x71, 0x78, 0x1f, 0x05, 0xcc, 0x9d, + 0x60, 0x2b, 0x32, 0x1b, 0xe8, 0x2f, 0x50, 0x96, 0x64, 0x68, 0x3a, 0xf0, 0xd1, 0x75, 0x27, 0xf5, + 0xc9, 0x50, 0x74, 0x42, 0xc9, 0x27, 0x58, 0xbb, 0xdd, 0x7a, 0x09, 0x56, 0xb6, 0xa5, 0x98, 0x74, + 0x4e, 0x27, 0x86, 0x49, 0xe7, 0x74, 0xa2, 0x98, 0xa4, 0xd9, 0x66, 0x98, 0xa4, 0x17, 0x7f, 0x2a, + 0xbd, 0x2a, 0xda, 0x1f, 0x60, 0x33, 0x17, 0x15, 0xda, 0x86, 0xda, 0xdb, 0x56, 0xef, 0xd0, 0xe9, + 0x1d, 0x1d, 0x75, 0x0e, 0x7a, 0xad, 0x7e, 0xe7, 0xf0, 0x5f, 0xb5, 0x02, 0xda, 0x85, 0x07, 0x7a, + 0xb7, 0xf5, 0xb6, 0xdf, 0xc1, 0x4e, 0xe7, 0x9f, 0x9d, 0x37, 0x7f, 0xeb, 0xb7, 0xda, 0x87, 0x1d, + 0xe7, 0xf8, 0xe4, 0xa0, 0x73, 0xea, 0xbc, 0x39, 0x39, 0x7a, 0x7f, 0xd8, 0xe9, 0x77, 0x6a, 0x45, + 0xfb, 0xaf, 0x50, 0xcf, 0xc7, 0x7b, 0x90, 0x7c, 0xda, 0x08, 0xf4, 0x20, 0x2f, 0x16, 0x2a, 0xc8, + 0x4a, 0x4e, 0x2a, 0xec, 0x6f, 0x97, 0xa6, 0x05, 0xec, 0xd3, 0xd1, 0x38, 0x20, 0x92, 0xa2, 0x47, + 0x19, 0xdd, 0xbf, 0x34, 0xd6, 0xb5, 0x12, 0xec, 0x5f, 0x51, 0x82, 0xfb, 0xd7, 0x24, 0xf4, 0x92, + 0x1a, 0xec, 0x83, 0x95, 0x7d, 0x77, 0x2f, 0x98, 0x35, 0x6a, 0x28, 0x7b, 0x3d, 0x03, 0xc2, 0x53, + 0x3c, 0x7a, 0x04, 0xcb, 0xaa, 0x73, 0x13, 0x39, 0x58, 0x30, 0x53, 0x12, 0x04, 0x7a, 0x0a, 0xab, + 0x09, 0xdb, 0x8d, 0x24, 0x2c, 0x92, 0x1d, 0x03, 0x43, 0x7b, 0xb0, 0x9e, 0x36, 0xdc, 0x65, 0x45, + 0x98, 0xfb, 0x8e, 0xb5, 0x14, 0xa8, 0x49, 0xd5, 0x87, 0x2d, 0x73, 0x3b, 0x27, 0xfd, 0xc8, 0x14, + 0xa9, 0x24, 0x3c, 0xbc, 0x26, 0x2f, 0xa6, 0x70, 0xb8, 0x36, 0xca, 0xed, 0xd8, 0xff, 0x2f, 0xc2, + 0xd6, 0x95, 0xef, 0x3e, 0x45, 0x7c, 0x4e, 0x45, 0x14, 0x73, 0x97, 0x8a, 0xb4, 0x58, 0xf5, 0x2b, + 0x73, 0x24, 0xb5, 0xe3, 0x29, 0x14, 0x1d, 0xc2, 0x96, 0x59, 0x38, 0xd7, 0xd4, 0xce, 0xf8, 0x67, + 0xb5, 0xab, 0xf1, 0xdc, 0x4e, 0x7b, 0xef, 0xdf, 0x7f, 0x18, 0x32, 0x79, 0x16, 0x0f, 0x1a, 0x6e, + 0x34, 0x6a, 0x6a, 0xf7, 0x88, 0x0f, 0x9b, 0xd9, 0xaf, 0xce, 0x90, 0x86, 0xcd, 0xf1, 0xe0, 0xf7, + 0xc3, 0xa8, 0x39, 0xf3, 0xf7, 0x33, 0x58, 0xd1, 0xf3, 0xf1, 0xf9, 0x2f, 0x01, 0x00, 0x00, 0xff, + 0xff, 0xbe, 0x0b, 0xb7, 0x51, 0x13, 0x0e, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/workflow.pb.validate.go b/gen/pb-go/flyteidl/core/workflow.pb.validate.go index cf7a679a1..fe36f9467 100644 --- a/gen/pb-go/flyteidl/core/workflow.pb.validate.go +++ b/gen/pb-go/flyteidl/core/workflow.pb.validate.go @@ -1549,6 +1549,16 @@ func (m *TaskNodeOverrides) Validate() error { } } + if v, ok := interface{}(m.GetResourceMetadata()).(interface{ Validate() error }); ok { + if err := v.Validate(); err != nil { + return TaskNodeOverridesValidationError{ + field: "ResourceMetadata", + reason: "embedded message failed validation", + cause: err, + } + } + } + return nil } diff --git a/gen/pb-go/flyteidl/service/admin.swagger.json b/gen/pb-go/flyteidl/service/admin.swagger.json index cafd3d923..a5010cac3 100644 --- a/gen/pb-go/flyteidl/service/admin.swagger.json +++ b/gen/pb-go/flyteidl/service/admin.swagger.json @@ -6026,6 +6026,22 @@ }, "description": "Represents the error message from the execution." }, + "coreGPUAccelerator": { + "type": "object", + "properties": { + "device": { + "type": "string" + }, + "unpartitioned": { + "type": "boolean", + "format": "boolean" + }, + "partition_size": { + "type": "string" + } + }, + "title": "Metadata associated with the GPU accelerator to allocate to a task" + }, "coreGateNode": { "type": "object", "properties": { @@ -6559,6 +6575,15 @@ }, "description": "Represents customized execution run-time attributes." }, + "coreResourceMetadata": { + "type": "object", + "properties": { + "gpu_accelerator": { + "$ref": "#/definitions/coreGPUAccelerator" + } + }, + "title": "Additional metadata associated with resources to allocate to a task" + }, "coreResourceType": { "type": "string", "enum": [ @@ -6967,6 +6992,10 @@ "pod_template_name": { "type": "string", "description": "pod_template_name is the unique name of a PodTemplate k8s resource to be used as the base configuration if this\ntask creates a k8s Pod. If this value is set, the specified PodTemplate will be used instead of, but applied\nidentically as, the default PodTemplate configured in FlytePropeller." + }, + "resource_metadata": { + "$ref": "#/definitions/coreResourceMetadata", + "title": "Additional metadata associated with resources to allocate to this task" } }, "title": "Task Metadata" @@ -6991,6 +7020,10 @@ "resources": { "$ref": "#/definitions/coreResources", "description": "A customizable interface to convey resources requested for a task container." + }, + "resource_metadata": { + "$ref": "#/definitions/coreResourceMetadata", + "title": "Additional metadata associated with resources to allocate to this task" } }, "description": "Optional task node overrides that will be applied at task execution time." diff --git a/gen/pb-go/flyteidl/service/agent.swagger.json b/gen/pb-go/flyteidl/service/agent.swagger.json index 0a788c919..ab47a7259 100644 --- a/gen/pb-go/flyteidl/service/agent.swagger.json +++ b/gen/pb-go/flyteidl/service/agent.swagger.json @@ -365,6 +365,22 @@ }, "description": "Represents an error thrown from a node." }, + "coreGPUAccelerator": { + "type": "object", + "properties": { + "device": { + "type": "string" + }, + "unpartitioned": { + "type": "boolean", + "format": "boolean" + }, + "partition_size": { + "type": "string" + } + }, + "title": "Metadata associated with the GPU accelerator to allocate to a task" + }, "coreIOStrategy": { "type": "object", "properties": { @@ -663,6 +679,15 @@ }, "title": "Primitive Types" }, + "coreResourceMetadata": { + "type": "object", + "properties": { + "gpu_accelerator": { + "$ref": "#/definitions/coreGPUAccelerator" + } + }, + "title": "Additional metadata associated with resources to allocate to a task" + }, "coreResourceType": { "type": "string", "enum": [ @@ -971,6 +996,10 @@ "pod_template_name": { "type": "string", "description": "pod_template_name is the unique name of a PodTemplate k8s resource to be used as the base configuration if this\ntask creates a k8s Pod. If this value is set, the specified PodTemplate will be used instead of, but applied\nidentically as, the default PodTemplate configured in FlytePropeller." + }, + "resource_metadata": { + "$ref": "#/definitions/coreResourceMetadata", + "title": "Additional metadata associated with resources to allocate to this task" } }, "title": "Task Metadata" diff --git a/gen/pb-go/flyteidl/service/external_plugin_service.swagger.json b/gen/pb-go/flyteidl/service/external_plugin_service.swagger.json index bb0e40633..08c2d00a9 100644 --- a/gen/pb-go/flyteidl/service/external_plugin_service.swagger.json +++ b/gen/pb-go/flyteidl/service/external_plugin_service.swagger.json @@ -328,6 +328,22 @@ }, "description": "Represents an error thrown from a node." }, + "coreGPUAccelerator": { + "type": "object", + "properties": { + "device": { + "type": "string" + }, + "unpartitioned": { + "type": "boolean", + "format": "boolean" + }, + "partition_size": { + "type": "string" + } + }, + "title": "Metadata associated with the GPU accelerator to allocate to a task" + }, "coreIOStrategy": { "type": "object", "properties": { @@ -614,6 +630,15 @@ }, "title": "Primitive Types" }, + "coreResourceMetadata": { + "type": "object", + "properties": { + "gpu_accelerator": { + "$ref": "#/definitions/coreGPUAccelerator" + } + }, + "title": "Additional metadata associated with resources to allocate to a task" + }, "coreResourceType": { "type": "string", "enum": [ @@ -906,6 +931,10 @@ "pod_template_name": { "type": "string", "description": "pod_template_name is the unique name of a PodTemplate k8s resource to be used as the base configuration if this\ntask creates a k8s Pod. If this value is set, the specified PodTemplate will be used instead of, but applied\nidentically as, the default PodTemplate configured in FlytePropeller." + }, + "resource_metadata": { + "$ref": "#/definitions/coreResourceMetadata", + "title": "Additional metadata associated with resources to allocate to this task" } }, "title": "Task Metadata" diff --git a/gen/pb-go/flyteidl/service/flyteadmin/README.md b/gen/pb-go/flyteidl/service/flyteadmin/README.md index 27c6c30b8..871b43048 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/README.md +++ b/gen/pb-go/flyteidl/service/flyteadmin/README.md @@ -241,6 +241,7 @@ Class | Method | HTTP request | Description - [CoreError](docs/CoreError.md) - [CoreExecutionError](docs/CoreExecutionError.md) - [CoreGateNode](docs/CoreGateNode.md) + - [CoreGpuAccelerator](docs/CoreGpuAccelerator.md) - [CoreIdentifier](docs/CoreIdentifier.md) - [CoreIdentity](docs/CoreIdentity.md) - [CoreIfBlock](docs/CoreIfBlock.md) @@ -267,6 +268,7 @@ Class | Method | HTTP request | Description - [CorePrimitive](docs/CorePrimitive.md) - [CoreQualityOfService](docs/CoreQualityOfService.md) - [CoreQualityOfServiceSpec](docs/CoreQualityOfServiceSpec.md) + - [CoreResourceMetadata](docs/CoreResourceMetadata.md) - [CoreResourceType](docs/CoreResourceType.md) - [CoreResources](docs/CoreResources.md) - [CoreRetryStrategy](docs/CoreRetryStrategy.md) diff --git a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml index 62e03103e..88bb0d42a 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml +++ b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml @@ -9221,6 +9221,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -10351,6 +10356,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -11480,6 +11490,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -13080,6 +13095,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -14210,6 +14230,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -15339,6 +15364,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -15542,6 +15572,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -15805,6 +15840,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -17467,6 +17507,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -18597,6 +18642,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -19726,6 +19776,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -20972,6 +21027,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -21251,6 +21311,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -21943,6 +22008,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -22216,6 +22286,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -23992,6 +24067,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -25122,6 +25202,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -26251,6 +26336,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -27851,6 +27941,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -28981,6 +29076,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -30110,6 +30210,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -30313,6 +30418,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -30576,6 +30686,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -32238,6 +32353,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -33368,6 +33488,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -34497,6 +34622,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -36382,6 +36512,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -37512,6 +37647,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -38641,6 +38781,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -40241,6 +40386,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -41371,6 +41521,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -42500,6 +42655,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -42703,6 +42863,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -42966,6 +43131,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -44628,6 +44798,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -45758,6 +45933,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -46887,6 +47067,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -48719,6 +48904,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -49849,6 +50039,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -50978,6 +51173,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -52578,6 +52778,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -53708,6 +53913,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -54837,6 +55047,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -55040,6 +55255,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -55303,6 +55523,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -56965,6 +57190,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -58095,6 +58325,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -59224,6 +59459,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -60835,6 +61075,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -61965,6 +62210,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -63094,6 +63344,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -64694,6 +64949,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -65824,6 +66084,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -66953,6 +67218,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -67156,6 +67426,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -67419,6 +67694,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -69081,6 +69361,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -70211,6 +70496,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -71340,6 +71630,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -73314,6 +73609,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -74988,6 +75288,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -76118,6 +76423,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -77247,6 +77557,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -78874,6 +79189,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -80004,6 +80324,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -81133,6 +81458,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -82733,6 +83063,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -83863,6 +84198,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -84992,6 +85332,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -85195,6 +85540,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -85458,6 +85808,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -87120,6 +87475,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -88250,6 +88610,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -89379,6 +89744,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -89775,6 +90145,21 @@ definitions: kind: {} message: "message" error_uri: "error_uri" + coreGPUAccelerator: + type: "object" + properties: + device: + type: "string" + unpartitioned: + type: "boolean" + format: "boolean" + partition_size: + type: "string" + title: "Metadata associated with the GPU accelerator to allocate to a task" + example: + partition_size: "partition_size" + unpartitioned: true + device: "device" coreGateNode: type: "object" properties: @@ -92352,6 +92737,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -93042,6 +93432,17 @@ definitions: description: "Represents customized execution run-time attributes." example: queueing_budget: "queueing_budget" + coreResourceMetadata: + type: "object" + properties: + gpu_accelerator: + $ref: "#/definitions/coreGPUAccelerator" + title: "Additional metadata associated with resources to allocate to a task" + example: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" coreResourceType: type: "string" description: "Indicates a resource type within Flyte.\n\n - DATASET: A dataset\ @@ -93738,12 +94139,21 @@ definitions: \ to be used as the base configuration if this\ntask creates a k8s Pod.\ \ If this value is set, the specified PodTemplate will be used instead of,\ \ but applied\nidentically as, the default PodTemplate configured in FlytePropeller." + resource_metadata: + title: "Additional metadata associated with resources to allocate to this\ + \ task" + $ref: "#/definitions/coreResourceMetadata" title: "Task Metadata" example: retries: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -93774,6 +94184,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -93792,9 +94207,18 @@ definitions: description: "A customizable interface to convey resources requested for a\ \ task container." $ref: "#/definitions/coreResources" + resource_metadata: + title: "Additional metadata associated with resources to allocate to this\ + \ task" + $ref: "#/definitions/coreResourceMetadata" description: "Optional task node overrides that will be applied at task execution\ \ time." example: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -93902,6 +94326,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -96127,6 +96556,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -97257,6 +97691,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -98386,6 +98825,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -100266,6 +100710,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -101396,6 +101845,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -102525,6 +102979,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -104125,6 +104584,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -105255,6 +105719,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -106384,6 +106853,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -106587,6 +107061,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -106850,6 +107329,11 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" runtime: flavor: "flavor" type: {} @@ -108512,6 +108996,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -109642,6 +110131,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} @@ -110771,6 +111265,11 @@ definitions: project: "project" version: "version" overrides: + resource_metadata: + gpu_accelerator: + partition_size: "partition_size" + unpartitioned: true + device: "device" resources: requests: - name: {} diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_core_gpu_accelerator.go b/gen/pb-go/flyteidl/service/flyteadmin/model_core_gpu_accelerator.go new file mode 100644 index 000000000..4e16e7463 --- /dev/null +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_core_gpu_accelerator.go @@ -0,0 +1,16 @@ +/* + * flyteidl/service/admin.proto + * + * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + * + * API version: version not set + * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) + */ + +package flyteadmin + +type CoreGpuAccelerator struct { + Device string `json:"device,omitempty"` + Unpartitioned bool `json:"unpartitioned,omitempty"` + PartitionSize string `json:"partition_size,omitempty"` +} diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_core_resource_metadata.go b/gen/pb-go/flyteidl/service/flyteadmin/model_core_resource_metadata.go new file mode 100644 index 000000000..7125a503a --- /dev/null +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_core_resource_metadata.go @@ -0,0 +1,14 @@ +/* + * flyteidl/service/admin.proto + * + * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + * + * API version: version not set + * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) + */ + +package flyteadmin + +type CoreResourceMetadata struct { + GpuAccelerator *CoreGpuAccelerator `json:"gpu_accelerator,omitempty"` +} diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_metadata.go b/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_metadata.go index 658e8e160..f17f98bae 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_metadata.go +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_metadata.go @@ -29,4 +29,5 @@ type CoreTaskMetadata struct { Tags map[string]string `json:"tags,omitempty"` // pod_template_name is the unique name of a PodTemplate k8s resource to be used as the base configuration if this task creates a k8s Pod. If this value is set, the specified PodTemplate will be used instead of, but applied identically as, the default PodTemplate configured in FlytePropeller. PodTemplateName string `json:"pod_template_name,omitempty"` + ResourceMetadata *CoreResourceMetadata `json:"resource_metadata,omitempty"` } diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_node_overrides.go b/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_node_overrides.go index 241ad4119..8bb47dc1e 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_node_overrides.go +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_node_overrides.go @@ -13,4 +13,5 @@ package flyteadmin type CoreTaskNodeOverrides struct { // A customizable interface to convey resources requested for a task container. Resources *CoreResources `json:"resources,omitempty"` + ResourceMetadata *CoreResourceMetadata `json:"resource_metadata,omitempty"` } diff --git a/gen/pb-go/flyteidl/service/openapi.go b/gen/pb-go/flyteidl/service/openapi.go index f6745a0f1..5489b12ea 100644 --- a/gen/pb-go/flyteidl/service/openapi.go +++ b/gen/pb-go/flyteidl/service/openapi.go @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x5d\x23\xbd\xdf\xde\x6c\xdc\x71\xcc\xab\xb4\xf3\x41\x25\x4c\x1f\xca\x4d\xa7\xa0\x40\xca\xa2\xaa\xa6\xb3\xf5\x79\xf5\xbd\x24\xe6\x00\x32\x36\x7c\x1c\x73\x22\x03\x23\x3e\xf2\xb6\xb8\x84\x4e\x89\x96\x3e\x46\x4c\x93\x71\xe8\x70\x30\x00\xdb\x0e\x6f\x5b\x77\x1a\x09\x2e\xa5\x8d\xbc\x37\xed\x2c\xcf\x9f\xda\xa2\x96\x9f\x41\x09\x3f\xbf\xbe\x1a\xd7\xab\xfa\x05\xcf\x5c\x7d\x3f\xfb\xb0\x31\xc9\xbe\xb5\xa9\x95\xd5\xfc\x8a\xb5\x58\xa3\x9e\xdf\xf1\xe9\xc5\xb9\x2f\x62\x55\xe9\xba\x5e\xd0\x2f\x44\x56\x6f\x2f\xe9\x57\x9f\x71\x50\xdc\xaf\xd2\xc4\x92\xf2\x7e\xab\x37\xab\x1c\xef\xbb\x0d\x6c\x5e\x65\xeb\x57\xf2\x87\x32\xcd\xac\x0a\x4b\xdf\xd1\x36\xb5\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x76\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\xb5\xad\x58\xcf\xe3\x75\x6f\x61\xd2\x77\x11\xc6\xfc\x7a\x39\xcc\xc9\xa2\x88\xda\x93\x56\x76\x73\x25\xb8\x5b\xec\xfe\x13\xe2\x21\xe1\x5b\x37\x74\xdb\x24\x45\x0f\x1d\x25\x08\x96\x36\x1c\x03\x72\xf9\x2a\x79\x3e\x6b\x98\x87\xfd\x98\x4d\x36\xf0\xa1\x2f\xc2\x10\x5c\x35\xb6\xae\x58\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\x63\x7e\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\x01\x07\xa6\x67\x30\x8f\x49\x9a\x6a\x05\x1e\x54\x13\xc6\x0f\x79\xe6\x74\x96\xd2\x5b\x50\x41\x83\x4e\xf5\x8d\x15\x84\x2b\xe8\x2f\xd8\x21\xf9\x4c\xa5\xd2\x72\x45\x43\xac\xa6\x6b\x04\x24\x1e\xa8\xab\x35\x27\xf6\x86\x1b\x7d\x18\x7c\x77\x7d\x7b\x3f\x3c\x1b\x7d\x28\xa2\xf3\x5d\xfa\x99\x47\x84\x72\x00\xff\x9c\x8d\x98\x0f\xa8\xf5\x00\xc8\xb0\x97\x08\xc7\x71\x81\x6c\x60\x95\x48\x23\xb3\x2d\xe5\xc8\xc1\xa9\x58\x19\x4a\xbb\xa4\x99\x07\xc8\x41\xda\xd7\x93\xb5\xc4\x75\x56\x3a\x39\x26\x93\x6a\x49\xca\xcb\x8e\x2e\x9b\x10\xbb\x55\x19\x5d\x9b\x28\x07\x2e\xc8\xc8\xb3\xd3\x95\xe0\x76\x3e\xc6\xe6\x12\x5e\x8f\xdb\xb9\x0d\xd9\x60\x53\x3f\xd2\xcf\x24\xbe\x6d\x91\xaa\x76\x92\xd1\xd2\x29\x12\xb0\x71\x17\x72\x46\xd7\xd1\xf8\xfd\x54\x1e\xf4\x77\xdd\xd9\xd2\x75\x01\xc9\x56\xc0\xab\x02\xb6\xaa\x42\x18\x45\x44\x28\x4c\x19\x9a\xc2\xc1\x66\xd1\x02\x01\x60\x07\x01\x1f\xf6\x1f\x51\x4a\x19\x20\x07\x2c\x5b\xda\x87\xf2\x3c\xd6\x10\x5a\x2f\xcf\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\x83\x9f\x97\xca\xaa\x95\x16\x96\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xc6\x89\x26\x0b\x45\x1e\x6e\x2f\xb6\x92\xef\x9a\x9d\x65\xad\x18\xe1\xa1\x74\xd5\x8c\x88\xd0\xe5\xd3\x98\x44\xab\x50\x4c\xbb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x32\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\x76\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x8d\x93\x66\x87\xb2\x24\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\x47\xa6\x42\xfc\x40\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x11\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\x06\x37\xe7\x0d\x6b\x7d\x51\x75\x21\x7d\x59\xe5\x6c\x12\xef\xcd\xda\x35\x48\x52\x90\x9e\xb8\x17\xa8\x48\x76\xa6\xdb\xc1\x20\x19\xa7\xff\x4d\x39\x92\x60\x1f\xd0\x7a\x9b\x54\x86\x52\xda\xf1\x0a\x60\xde\xf5\x32\xf1\x8a\x65\x58\x13\xf4\x28\x1c\x90\x4d\x03\x09\x81\x7e\xea\x31\xc6\x07\x21\xf0\x0f\x37\x05\x73\x6d\x6c\xc1\xce\xc0\x90\x8a\xd9\x74\x41\x43\xfa\xd1\x50\xb4\x07\xcb\x00\xf8\x0f\x57\x90\xd1\xc5\x06\xdb\xdc\xf5\x70\xba\x21\xb5\xad\x07\xa0\x54\x8c\xcf\x99\xbf\x2d\x16\x35\xce\xb0\xb5\x3b\x80\x12\xe5\x2a\x25\x34\x15\xd6\x3b\x1a\xb1\x20\x60\x45\x1a\xb5\x47\x9f\x11\x57\x9c\x04\x2a\xde\x32\x00\xb6\x86\x24\x1d\x2f\xfc\x94\x76\xa0\x9a\x22\xaf\xe6\xe5\xf2\x22\xb5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\xa0\x33\xad\xab\x38\x04\xc7\x6a\xa5\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xcd\xaa\xfe\x39\x23\xd1\x26\x10\x32\x37\x58\xe0\x94\x28\x22\x96\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x2a\x48\x18\x3f\x8b\xb5\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x35\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x6d\xe7\xf4\x3a\x50\x28\xf7\x35\x50\x91\x52\xb8\xd0\x9e\x60\xa0\xac\x1e\x65\x1b\xf8\xc9\x2a\x5e\xba\x13\xde\xed\x32\x1c\x5c\x0a\x6d\xe5\x50\x95\x72\x27\x80\x4a\x40\xa5\x32\x38\x20\xcd\x00\x26\x20\xb4\x34\x45\x48\x06\x6e\x3f\x0b\x6f\x57\x18\x74\xad\x64\x55\x2d\x2e\x55\x59\xae\x15\x3c\x6e\x57\xe0\x0e\xbd\x44\xb3\x6b\x89\x66\x15\x29\x97\xa2\x6b\x35\x75\x12\x51\xc1\x99\xb1\x45\x9f\x2d\x40\x40\x79\x82\x90\x7b\x64\xaf\x48\x5b\x39\x16\xae\x7e\xca\xfc\xbf\xca\x1c\xdc\x11\x75\x48\xaa\x4d\x49\x95\x47\x81\x0b\x0a\x3c\x50\x49\x28\x0d\xd8\xb8\x1a\x18\xad\x09\x83\x34\x56\xfe\xf3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x07\xf0\x16\xc0\x20\xc8\x7c\x92\x52\x85\x70\x30\xc3\x92\x49\xf2\xc0\x9e\x67\xfd\x01\xcc\xb8\x31\xcf\xbe\x09\xa2\x67\xc5\xa1\xd9\xc0\xbe\x56\x34\xb2\x6d\x2a\x7d\x10\xd3\xfc\xb2\xc9\xf4\x81\xc6\x13\x6a\x98\x8d\x67\xae\xcf\xa6\x47\xcd\xd6\x06\x0b\x1a\x0a\xc8\xae\x54\xaa\xca\xdd\x62\x0d\x3d\x2b\x32\xe9\x8b\x8d\xe8\x94\x4a\x5f\xbc\xbe\x8b\x5c\xfa\xb6\x32\x65\xcb\x72\x2b\xdd\x27\x2d\xf6\x6f\x97\xb3\xab\xb8\x0b\x9c\x0f\x25\xa5\x9b\x56\x49\x69\xdf\x50\xcd\x8a\x84\x80\xcd\xc3\xcb\xd7\x51\x07\x8b\xfc\xac\x90\x8a\x82\x74\xcb\x32\x26\x0c\xa9\x72\x7e\xc6\x15\xe4\xd4\x44\x50\xc2\xbd\x96\xe7\x39\x62\xcd\x12\xc8\x72\x9e\xb8\x6d\x8a\xc6\x4e\xd1\xcf\x82\xf3\xe7\x66\x61\x2d\x5a\x3f\xf9\x20\x37\xa3\x2c\xdb\x62\xec\x55\x11\xb3\x70\xf1\xb5\x05\x27\x69\xc1\x63\x93\x84\xe3\x86\x53\xd9\x3c\xf4\x5a\x02\xc5\xca\x73\x61\x2f\xdd\x1d\xaa\x76\x35\xee\xdc\x39\xdf\xc4\xcb\xc8\x96\x1b\xbb\x80\x69\xa7\xc6\x57\x3c\xb5\x9b\x14\x99\x05\x50\xd1\x9d\x41\xa1\x56\xd1\x09\x74\xe3\x07\xe0\xdd\xb5\x43\xc7\x26\xd2\xc5\x03\x74\x57\xb6\xa4\x34\x61\x5b\xbc\xff\x05\x26\xbd\x6e\x61\xe0\xc0\xdb\x28\x6c\xb4\x2f\x0d\xed\x06\x50\x11\xd8\x06\x49\x56\xf8\xb0\x17\xed\x72\x16\x13\xc1\x08\x56\xf3\xd7\xcb\xb1\x38\xdd\xd6\x38\x1d\x8c\xef\x65\xf3\x2d\x4e\x77\x52\x15\x3e\x1c\x6e\xb9\x42\xfa\xca\x71\xea\xd7\xbb\xd8\x89\x6c\xe8\x81\xaf\x11\x5c\x53\x1c\x1b\x8c\x86\x01\x04\xcd\x3a\x54\xba\x55\x1a\x46\xb3\x32\xf7\x32\x09\x29\x0d\x56\x9f\x5a\x2a\x8a\x3e\xec\x61\x65\xe5\x15\x4b\xf2\x45\x64\x7e\xbc\x7c\x32\xc2\xb2\x1a\xce\x79\x90\x9f\x00\x85\xb4\x15\xa6\xcc\x72\xaf\x65\x29\x09\x5a\xa2\x4c\x71\x53\x16\xc2\xde\xe7\xb7\x7c\xf1\xe9\x2d\x7d\xb2\x43\x9f\xec\xd0\xb0\x47\x7d\xb2\x03\x42\xfb\x96\xec\xb0\x4a\x01\x5d\x66\xfe\xf4\x1e\x39\xa8\xb5\x59\x2a\x70\x63\xf6\x77\x85\x16\xb9\x79\x40\xbf\xb3\x20\x86\xd1\x50\xf6\x17\xfb\x43\x63\x40\x54\xed\xb3\xea\x6c\x43\x6b\x26\x5b\x54\x9d\x02\x58\xc4\x89\x45\xa1\xb3\xe1\xca\x65\xeb\xd3\x32\x43\xe9\x88\x7d\xcf\x9f\xc9\x13\x11\x07\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xe8\x18\x38\x08\x25\x40\x73\x13\x05\x81\xd1\x15\x4e\x49\x6c\xea\x1d\x06\x41\x8d\xd6\x5c\x6b\x1d\xad\x4d\x60\xab\x80\x1b\x6a\xb6\xc1\x45\x4d\x8c\x98\x09\x34\x34\xc1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x37\xf0\xef\x8e\xd0\xbd\xbe\x9f\xa8\x2c\x8f\x37\xc0\x5e\x6b\x1b\xdb\x88\xcd\x04\xcf\x33\x6f\x41\xe3\x13\x53\xf8\xd6\xc4\x3e\xd5\xdd\xc0\x30\x18\xe7\x03\x8e\x70\xac\x35\xf1\xe5\x84\xf3\x26\x31\xa8\x1b\x01\x18\x85\x04\xa4\x8f\xa1\x0f\xac\xb3\x81\xee\xc6\x7b\x1b\xc0\xb6\x2c\x83\x61\x7f\x21\xd7\xf2\x19\x91\x60\x13\xf2\x36\xf7\x52\x16\x79\x19\xa9\xa0\x71\x9c\xcb\x2c\xa2\xde\x6b\xe1\x2c\xfb\xcd\x20\x08\x45\xe7\x36\xe2\xcb\xa4\xa8\xda\x7b\xe2\xc5\x6c\xa5\x9d\x63\x67\xdb\xf8\xc5\x4d\x2e\x32\x0e\x92\x58\xb2\x70\xa0\x0d\x16\xe7\x2d\xe3\x59\x6e\xa2\xda\x68\x18\xe4\xd4\x48\xd9\x54\xaa\x4b\xac\xa2\xb9\xe6\xdc\x05\xde\xd9\x8e\xa2\xfd\x0a\xae\xfc\xb2\xf6\xd3\x86\x19\x9c\x86\xbd\xb7\x38\x14\x3a\xd8\xd3\xcd\xbd\xef\x82\xeb\x9d\x24\x91\xea\xfe\x8c\xd3\xcd\x96\xb3\x0e\xac\xa2\xee\x13\xfb\x44\x4f\x74\x15\x15\xad\x1a\x7f\x37\xda\x2a\xd7\xdb\xda\x79\x1c\xe1\x16\x00\x32\x67\x16\xae\xab\x78\xd1\xd6\x67\x6d\x71\xfe\x0b\xba\x59\x0e\x90\xc5\xc8\x7f\xd2\xe2\x88\xb7\xb7\xa6\x38\xd3\x4a\x84\xe2\xfa\x96\x14\x33\x23\xc7\x9a\x28\x59\x84\x51\x2e\xa8\x3b\xfb\x95\x8c\xf0\x76\xea\x00\xfb\xe4\x71\x58\x4f\x29\xc2\x41\xa9\x39\xe3\xee\xc7\x91\xca\xb1\x0f\x4b\x04\x9a\x70\x25\xd0\x4d\xf6\xbb\x73\xab\x0b\x27\xde\x35\xec\xe9\x4a\xc2\xde\x62\x97\x71\x13\xba\x61\xa7\x93\x46\xd9\x2c\x80\x46\x6c\xb6\x11\x77\xa9\x7c\xd0\xf8\x65\xb7\xea\x0d\x8d\x9f\x3a\xd9\x67\x93\x6f\x97\x40\x37\x6d\x1c\x99\x5d\x8a\x72\xb7\x61\xb0\x56\x7a\x0a\x41\x2b\xad\xfd\x0e\xb0\x67\x29\xb8\xe9\xb1\x95\xa6\xfe\xcb\xff\x65\x2a\x65\x99\xa5\xf9\x2f\xc4\xc5\x88\x99\xdf\x0f\x7c\x95\x0a\xfd\x42\x01\xff\x8a\x53\x52\x00\x64\x8a\x32\x94\x1e\x00\x8a\x58\x28\x34\x03\xf5\xeb\x41\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xe8\x01\xcf\xcc\x52\xcc\xf0\x0c\x80\x85\x0f\x20\x2e\x0e\xc4\xd5\x42\x15\x31\x24\x6d\xaa\x1d\x02\xb7\xd2\xcc\xd2\x66\xdb\x16\x55\x7f\xa1\x4f\x23\xca\x5a\x5c\xd3\x22\xb8\xa2\x99\xfa\x6f\x6d\xff\x9b\x49\xec\xf7\x83\xbb\x1f\xc6\xb7\xc3\xbb\xeb\x87\xdb\xd3\x92\xd8\x7e\x7a\xf1\x70\x77\x3f\xbc\x6d\x7c\x56\x64\xaa\xfe\xf5\x61\xf8\xd0\xf2\xc8\x35\x70\x31\xf8\x6e\x58\x2a\xa1\xfd\xd7\x87\xc1\xc5\xf9\xfd\xcf\xe3\xeb\x8f\xe3\xbb\xe1\xed\x8f\xe7\xa7\xc3\xf1\xdd\xcd\xf0\xf4\xfc\xe3\xf9\xe9\x40\x7f\x19\xbe\x7b\x73\xf1\xf0\xe9\xfc\x6a\xec\x82\x8e\xc3\x47\x3f\x5d\xdf\xfe\xf0\xf1\xe2\xfa\xa7\x71\xd0\xe5\xf5\xd5\xc7\xf3\x4f\x4d\xb3\x18\xdc\xdd\x9d\x7f\xba\xba\x1c\x5e\x2d\x2f\xd5\xdd\xbc\x1a\xad\x55\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xae\x8b\x1b\x43\x8f\x87\x07\xee\x2f\x53\x58\xfb\x50\xb3\x40\xe7\x15\x2b\xb8\xc7\x88\x79\xb7\xa5\xbf\x54\x15\x9e\x49\x97\x78\x5c\x1a\xed\x09\x1a\xc0\x59\x01\x85\xa1\xd4\x29\xe4\x35\xf8\x91\x3a\x47\x37\xd0\x61\x42\x53\x0a\x3e\x6f\x74\x88\xaa\x1b\x5e\x6e\xd0\xce\x09\x86\x60\xbd\x76\xf1\xb2\xd3\x20\xab\x39\xcd\x40\x29\x27\xc8\x71\x68\x62\xcc\x09\x06\x79\x76\xc1\x70\x4a\xa3\x6a\x02\x06\x80\xaf\xa2\x02\x68\xa4\xda\x62\x89\xc0\xca\x2d\xcf\x09\xfa\xe1\x2f\xc5\xa0\xc0\x83\x61\x35\xef\xbc\x56\x4f\xcf\x3e\x10\xb9\x59\xd5\x55\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\xeb\x76\x83\xbb\x29\x67\x01\xd8\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd0\x1d\x00\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xc5\xf7\x09\x99\xe3\x27\xca\x5d\xf1\x0a\x53\xe3\x03\xd6\xd1\x8a\x56\xe8\x10\xb5\x1e\x94\x13\x34\x88\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xb0\x3c\xec\x10\x1f\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xbb\x87\x72\xa9\xb3\xc3\xf2\xdd\xbb\xc5\xf5\xaf\x57\x70\xec\x48\x79\xbc\x91\x30\x70\x8f\xe5\xa3\x63\xcd\xab\x04\x02\x07\xaa\xb3\x5d\x8f\x16\x5d\xa7\x6b\xa7\x7e\x65\xc7\x70\xd0\x36\xeb\xb3\x15\x13\x7a\x45\x97\x6e\xc6\x49\xa5\x70\x57\xe7\xfe\x4a\x85\xbf\x1a\x3b\xdb\xa9\xb7\xa7\x59\x1a\x83\x23\x39\xf6\xf4\xbf\xc6\x3c\x6e\xe0\xd3\x6b\xff\xe5\x52\x91\x6d\x1c\xac\xdb\xba\x3e\xa0\x5a\x8a\xae\xf5\x03\x2d\xa5\xc3\x1d\x81\x3b\x75\x17\x06\xa1\xec\x02\x8d\xc0\xdd\x87\x29\xb3\xc5\x78\x88\xf7\x47\xb9\xf2\xd3\xfa\x1c\xfb\x02\x71\x78\xc2\x9f\x4a\xca\x65\x4a\xa4\xc4\x2d\x70\x25\x81\x49\x6c\x1b\xc6\xe0\x4f\xa8\xfd\xb0\x23\x3d\xb9\x33\x79\xaf\xbf\x5a\x66\xf4\xb9\x0d\x35\x63\x37\x51\x2d\xb0\xc6\x2e\xce\x16\x5d\x9b\x6c\x3b\xcd\x5f\x0e\x8a\x50\x1a\x2e\x82\x08\xa3\x36\xf7\x4f\x47\xb3\x5a\x75\xc1\x1a\x6b\x2c\x85\x2e\xbc\xf5\x23\x70\x82\xd6\x37\xc6\xc3\xb6\x7e\x15\x5c\x5e\x9f\x35\xa8\xae\xe4\xef\x0c\xeb\x4f\x47\x3c\x4d\x8d\x5c\x50\xb2\xa5\x1e\x20\x6c\x92\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\x71\x30\x62\xcf\xc1\x86\x94\xc2\x80\x07\x61\x4b\x80\x25\xfa\x59\x1f\x37\xfa\x54\x0a\xae\x06\x91\x91\x42\xa4\x6f\x40\x08\xc6\x21\x58\x14\x8f\x5a\x41\xe0\xc1\x7e\x6d\x41\xea\x1b\x54\x0a\xac\xac\x6f\x5b\xbd\x40\x3f\xb7\xa0\x4c\xdf\x16\x9a\x72\xd7\x21\x04\x95\x02\x9b\x46\xb0\x83\x42\x81\xaf\x0a\xee\xed\x93\x35\x4d\x6e\x6f\x3a\xb1\x08\x15\x7a\xba\x6e\xb5\x7f\xef\x66\xf4\x7b\xe3\x77\xc8\x5b\x20\x4d\x82\xd6\x3c\xbe\x37\x3a\xd4\x32\xab\x4b\xb5\xb7\x81\x18\x12\x1d\x1a\xcc\xc0\xaf\x20\xce\x72\x70\x73\xfe\xd5\x01\xfa\x2a\xcc\x35\xfb\x6a\xa3\x03\x68\xc7\x6d\x8b\x05\x82\x36\x55\x4a\x38\x28\x1f\x3b\xd8\xab\xca\x49\xb4\x7b\x66\x0f\x22\x6a\x3b\x87\xfa\xcb\xd2\x37\xe0\x9c\x86\xe2\x77\xc6\x7f\xeb\xc3\x9d\xad\x0b\xc8\xc8\xb8\x54\x36\xac\x5d\x3c\x62\x93\x45\xd5\xc9\x73\xe0\xbd\x3c\x9d\x4f\xe9\xd6\x05\xdd\x74\x7b\xf5\xe4\xe4\x1d\x87\xe1\x2e\xbf\x0f\x56\xa4\x3b\x0f\x4c\xc4\x35\x9f\x06\x5c\xac\x2d\x4a\xa1\x8f\x5f\x6f\x9a\x55\xc9\x5e\xe6\x16\xb3\x71\x53\x56\xc9\x3f\xef\x8d\xdc\x3a\x04\x7d\x0f\x9a\x56\xc4\xc6\xfb\xb7\x08\xd7\x3d\x95\xbd\x2c\x95\xed\x22\xdf\xa1\x3c\xb8\xf5\x2f\xd0\x53\x23\xc7\x05\xcd\x38\x83\xab\x56\x26\x3c\x83\x2f\x55\xfd\x5b\x5d\x2e\x77\x4d\x9f\x6f\xb0\x26\xab\x9d\xbe\x77\x26\x70\xc0\xb8\x5d\xeb\x63\xad\x0e\x75\xa0\x6c\x09\x22\x4e\x4d\x6e\xa3\xa2\x29\x39\x40\x9c\x25\x8b\x20\xd8\xc1\x9e\x57\x20\x37\x13\xa3\x34\x27\x54\xb8\x4e\x2c\xc2\xe0\x5a\xc9\xf0\x6b\x4a\xe3\x6d\x34\xb2\x45\xa4\xc9\xd5\xe0\x72\x78\x36\x1e\x5e\xdd\x9f\xdf\xff\xdc\x80\x1e\x59\x7e\xec\x00\x24\x83\x17\xee\x7e\xbe\xbb\x1f\x5e\x8e\x3f\x0d\xaf\x86\xb7\x83\xfb\x15\xe0\x92\xcb\x3a\x6b\x03\x2e\xcc\x65\x93\xfa\xb6\x0e\x78\xa1\x33\xf3\x36\xf4\x5e\x87\x98\x0c\x3a\xa1\xa4\x05\x66\xd2\x24\xfe\xb3\x98\x08\x14\x93\x27\x92\xf0\xac\x30\xab\x36\x2e\x58\x80\x3f\xd9\xd0\xfe\x32\x0c\x4a\x68\xb3\xba\xc6\x27\xc8\x54\x7a\x0b\x8a\xdd\xfa\x06\x41\xe4\xc3\x82\xb0\xaf\x14\x22\x9f\xb3\x84\x46\x54\x05\x89\x81\x5c\x58\xf7\x8a\x71\x1f\x42\x74\xea\x0a\xe2\xda\x59\x34\xca\xce\x75\xfe\xd0\x93\x5e\xd7\xf6\xfd\x89\xf2\x78\x68\x2b\xcb\x07\xed\x40\xb1\x6f\x71\x1a\xd7\xe0\xda\x36\x18\xdd\x4b\x98\x07\xea\x19\x3a\x36\xb9\xaf\x05\xca\xad\x79\x90\xab\x6f\xc3\x65\x71\x32\xa5\x73\xbd\x3c\x50\xa6\x1b\xa5\xbe\x71\xb8\x4b\xa9\xac\xe6\x0e\x70\x37\x6c\xec\xfa\x9a\x01\x0b\xb5\x6a\x31\xcc\xc4\x9c\x62\x24\x48\xca\x95\x56\xc0\x4c\x44\xc0\x81\x16\xaa\x28\x4e\xe8\xaf\x80\x50\x25\xc8\x51\x10\x41\xe1\x70\xbd\x0a\xf7\x81\x45\x8f\x38\x1a\xb1\xb3\xe1\xcd\xed\xf0\x54\x33\xa4\x23\xf4\x20\x01\x7c\xaa\x34\xf5\x33\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xb6\x60\x30\x22\x04\x17\xdd\xf9\x83\xef\x6f\x08\xdf\x35\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb5\x26\x72\x90\x33\xb0\xf3\x94\xac\x5b\xfc\x5c\x5a\x91\x10\x7c\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x7c\x67\xf7\xf9\x95\xfa\xbc\x81\x6f\x97\xcd\xf3\x1e\x42\xec\xa4\x2a\xb0\x40\x0d\x5c\xa8\xaf\x79\x53\x99\x67\xab\xa8\x28\xde\x02\xa8\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x38\x6c\x68\x69\xab\x07\xcd\xac\x7b\x54\xf5\x9a\xe1\x94\xe7\x0c\x94\x06\x08\x63\x6d\x18\x8c\xcc\x08\x53\x2b\x06\xf3\x56\x30\x2c\x95\xa1\xee\x2f\x12\x4b\xc3\x40\xdb\xc0\x58\x9a\xfc\x49\x50\x78\x79\xbd\x6b\xd9\x05\xe5\x95\x9c\x4a\xfa\x50\xf9\xfb\xb9\x59\xcb\xc6\xf2\x71\xeb\xee\xee\xb1\x7c\x5c\xdd\x55\x4c\xa2\xc7\x75\x2f\x9b\x6a\x66\x66\x62\xeb\x56\xd7\x8c\x7d\x0b\xfd\xd4\x16\x66\x81\x72\xe5\xd1\x23\xfa\xfe\xfe\xf2\x02\x4d\xa9\x96\x7b\xf5\xb5\x72\x85\xb5\x8c\xfd\x20\x12\x67\x17\xb6\xb6\xd5\x5c\x24\xfe\xee\x85\x8d\x77\xa2\x54\x20\x25\xe8\x1b\x0d\xcf\x88\x33\xf6\x0a\x8b\xb5\x57\x29\xcc\x22\x30\x8b\x79\x6a\xe6\x71\x2c\xf3\xe9\x94\x7e\x3e\x52\x58\x7c\xd3\xb2\x1e\x26\xaa\x62\xfc\x77\x3e\x19\xeb\x11\x6d\x79\x11\x37\x35\x87\x6c\x39\x65\xbf\x6c\x76\x66\x67\xe6\xdd\xff\xcb\x27\x90\xeb\x9e\x09\x0e\xf8\x7f\xe0\x9d\xb3\x91\x0a\xf6\x15\x47\x49\x47\xc8\x25\x50\x95\x20\x4e\x22\x2e\x04\xb1\x29\xf2\xa6\xb2\x68\x86\x85\xa2\x60\xad\x75\x10\x29\x25\x6c\xfc\x62\x8b\xc2\x82\xdf\x73\x5c\xe0\x50\x4f\x08\x01\x07\x4f\x46\x93\xf5\x94\xde\xd3\x92\x6f\xb2\x72\x02\x6d\xe4\xa9\x45\xcd\x04\x83\xcc\x4a\x11\x6b\xf8\x44\x98\xda\x89\x7e\x02\x4d\x34\x24\xed\x77\xf3\x32\x98\x02\x9f\xe7\x67\xc5\xe5\xe6\x42\x7a\xc3\xa8\x26\x25\x30\xdc\xf3\x36\x51\xca\xba\xd4\xdb\x1c\xfd\x4f\x9d\x7d\xc7\xf0\x6a\x7d\x5d\x56\x84\xc6\xdb\xd5\x2e\x0a\x7d\x17\x61\xad\x0e\xd8\x7f\x43\x18\x1f\x49\x8c\x15\x23\x80\x8f\xb0\xca\x69\x75\xcf\x4d\x9f\x9a\xb6\x2a\x5d\xae\xdc\xf2\x0d\x30\x6b\x4a\xcd\x7c\x22\x90\xd2\xb9\x8b\x40\xf4\x75\x52\xf7\x61\x20\x0f\x22\x81\x10\xea\xa5\x56\x2c\x53\x64\x5c\x73\x3e\x2f\xd9\xe1\x0e\x32\xba\x19\x8c\x16\x1a\x49\x26\x48\xa4\xaf\xb2\x13\x74\x93\x10\x2d\x79\xe5\x5a\xfa\xca\x93\xc4\xe1\x7b\x2d\x97\x0e\xd7\xc2\xa4\x7b\xf1\x79\x05\xba\xc7\x92\x89\x39\x7c\xbb\xe5\x33\x0b\xd6\x60\xf7\x80\x0b\xc1\xfa\x82\x09\x19\x0c\x89\x65\x2d\x12\x38\xfc\xc2\xc4\xcd\x82\x29\x09\x97\x2e\x32\xfa\xab\x66\xbf\x82\xc8\x39\x6f\x4d\x72\x0c\x67\xfb\x32\x73\x70\x4b\xf9\x82\x93\x70\xf7\x61\x5b\x5c\x75\x07\xb9\xa6\x72\x07\x96\x44\x9c\x65\x53\xf4\xb5\x1f\x7c\xf4\x87\x45\x5b\xb5\x77\xab\x1d\x1a\xdc\x92\x85\xa9\x2d\x44\x3e\x2b\x5c\x17\x85\x32\xb3\x30\xbe\x57\xff\x79\x61\x40\x2e\x52\x02\xa8\x92\x45\xcd\x39\xa4\xef\xda\xb6\x2d\xd6\xf3\x1c\xe7\x62\x2d\x48\x8a\x02\xb3\x7c\x1d\xce\x6d\x93\x51\x8a\x61\xe9\x45\x68\x66\x97\xb6\x94\x04\x88\xd1\x36\xd4\x48\x96\x70\xe0\x2c\xd9\x98\x65\x6c\x54\xf1\xda\x99\xf2\xb6\x6e\x35\x90\x92\x0b\x51\xe6\xa5\xbc\x6b\x25\x0a\x2c\x4d\xa0\x47\x16\x5b\x1f\x59\xcc\xd6\x15\xf1\xb4\x07\x38\x80\x4a\x40\xe2\x7f\xe1\x40\xab\x0a\x0e\xd6\xe8\xbd\x2a\xf3\xa9\xb4\x3b\x9d\xd2\x9c\x4a\x5f\x68\x5e\x72\xb6\xa5\x07\x4e\x4f\x66\x31\x86\xc4\xd1\x6d\xa2\x70\x4a\xf3\x37\xde\x03\x68\x93\xc4\xc8\xa0\x17\x18\xdc\x63\xbb\x76\xde\x73\x92\x61\x41\x98\x1a\xb1\x5b\x3d\x0a\xf3\x45\x11\x89\xe1\xe2\x70\x1c\x16\x3d\x54\xac\x9d\x22\x6c\xbf\x82\x45\x6f\x0b\x84\x93\x63\xf3\x12\xa8\xa6\x2f\x98\x64\xff\x9d\x79\xc7\x60\x1e\x58\xcc\x1f\x3d\x55\x3a\x2d\xd4\x78\x2d\x40\x46\x73\x0a\x90\x03\x31\x91\xf6\x42\xa2\xca\x62\x4a\x78\xf1\x3b\x27\x0e\x7d\x19\x3e\xf3\xfc\xab\x89\x61\x3b\x43\x01\x73\x06\x3a\x39\x62\x41\x1f\x4b\xc0\x3a\x8d\xb2\xbe\xa1\x2a\x01\xfb\x4c\x63\xef\xf8\x82\x7f\x9a\x1d\xe2\x82\xce\x28\x0b\x4a\x26\xd9\xe9\xa5\x38\x03\xf3\xae\x39\x83\x7c\xea\xef\xb4\x7b\x9b\x65\x70\x04\x23\xfe\x9f\xff\xfe\xdb\x11\x6d\xf3\x7e\xc8\xb1\x5d\x81\x7d\xd8\xc9\xf5\xb6\x25\xdc\xf9\x00\x45\xa4\x05\x9d\x22\xd0\x69\x65\x29\x73\xa2\xf8\xd5\x5e\x6e\x9a\x68\xb8\x9a\x1b\x77\x6f\x99\xdc\xc1\x37\x22\xf2\xe5\x55\x04\x02\x16\x57\x04\x04\x14\x5e\xdf\x20\xe8\xd6\xd5\x88\x30\xc1\x92\xba\xfd\xca\x85\x52\x61\x50\x01\x98\xdf\x36\xc1\x89\x73\x2c\x5f\x2e\x02\xa5\xb1\xb6\x91\x31\x1a\x87\x77\xe4\xaa\x58\x14\x33\x48\x93\xd4\xa8\x77\x25\x97\x44\x98\x03\xed\x51\x9f\x2c\xf1\x84\x50\x85\x10\x8a\xb8\xc2\xa5\x46\x52\x4c\xd7\x0a\x9b\xd7\xef\x37\x03\x29\x96\x6c\xea\x78\x46\xc4\x38\xce\x4b\x31\xd2\xab\xda\xbe\xd1\x1f\x9d\xe5\x6a\xb1\xba\x7d\x99\xe0\x7a\x6d\x97\x65\xe0\x95\xfa\xfd\x96\x66\x57\x0b\x86\x41\x24\x4b\x59\x38\x6c\x81\x86\x24\x15\x68\x48\x1b\x5a\x59\xb2\x04\xc0\x45\xc3\x14\x20\xc7\x15\x0a\x83\xbd\x89\x0c\x80\x35\x8c\x1c\x4d\xf2\xc2\x72\xe2\x4b\x02\xc4\x47\x23\xf6\xd1\xd4\xd4\x00\x65\xc6\x0c\x20\x82\xbc\x16\xf2\x39\xe3\x92\x94\x12\xad\x1a\x60\xfe\x6d\xa2\xa4\x1d\x46\xb3\x4c\x5a\x7c\xb4\xbd\x48\xfa\xe6\x20\x9f\xf5\x0d\xaf\x4f\xb9\x99\x02\xb7\x92\x7a\x22\x9a\x51\x4d\x3b\xe3\xc6\x93\xf6\x72\xa5\x66\x8b\xd0\x25\x80\x7b\x52\xc9\xe2\x00\xf9\xe9\x55\x08\x22\x21\x4f\x04\xac\xc6\x30\xc6\xb0\x98\x43\xd9\x7c\xd5\xc2\x4e\x56\x1d\xa0\x22\xcb\x11\xd8\x02\x8a\xab\x23\x28\xe7\x82\x35\xd1\x62\x39\xcb\x65\xeb\x84\xac\xa6\xf8\x8b\x35\xa4\xd0\x41\x58\xd4\x62\x41\x14\x22\x9f\x15\xb1\x65\x2f\xef\x5d\xca\x5c\x3d\xca\x1e\x35\x67\xfd\xb4\x8b\x48\x2f\x5e\x80\x78\xe0\x12\xa5\x5d\x4e\x60\xec\xee\x7d\x9b\x23\x37\xc7\x2c\xb6\x89\x9f\x56\x96\xd6\x32\x05\xcc\xce\xd8\x96\x7c\x48\xbc\x4d\x5f\x0c\xd0\xc0\x4d\x9b\x06\xb6\x1c\x2e\x32\xa7\x17\x69\xc9\x1c\xa2\x08\xb8\xd0\x02\x6a\xce\x14\x4d\x34\x71\xd8\x31\x68\xad\x39\x67\x1e\x8f\x0f\x02\xb8\xdb\x20\xdf\xa8\x94\x94\xcd\xc6\x76\x25\x5d\x0e\x63\xb7\x8b\xa1\x4c\x53\x97\xa6\x29\xf3\xe3\x77\xae\xa1\xe5\xb6\x63\x43\xd6\x00\xc7\xe5\xb2\x27\x41\xb0\x66\xdc\x4d\xc6\xe2\xa8\xb9\xa4\xcb\x31\x8d\xcd\x52\x50\x53\x5d\x19\x26\xba\x8e\x79\x19\xc4\xba\x3a\x5c\x41\x71\x85\x48\x9b\x11\x69\xf2\x9c\x20\x20\x5d\xb5\xa4\x7c\xca\xd6\x54\xcf\x73\xe6\x45\x34\x5b\xdb\xc9\x27\xb4\x57\xb2\x46\xb1\xeb\xce\x46\xdd\xe3\x24\x99\xe0\xe8\xd1\x2b\x1b\x5e\xe5\xe6\xc2\x61\xe3\x6b\x01\x15\x8a\x7f\x19\xe2\xd2\x03\x8d\x40\xba\x09\x9d\x62\x06\xb0\xc6\x0e\xbb\xe8\xdc\xac\x9a\x45\x02\x33\x08\x45\x66\xf4\x26\x84\x3f\x26\x59\xc2\x17\x69\xcb\x7d\x56\xcd\x94\xdb\x26\x20\xa5\x2d\x51\x6f\xa7\x57\x59\x85\xe9\xad\x7d\x99\xd5\xd2\x6e\x76\x00\x9f\xb4\x06\x97\xfc\x94\xf0\x09\x58\x0e\xad\x96\xed\x52\x49\x82\x8c\x86\xea\x79\x5e\x37\xc1\xa5\x7a\x22\xa9\xcc\x12\xbc\x58\xd6\x83\x49\xad\x78\xd9\x7d\x33\xa9\xf8\xab\x8d\x60\xdd\x83\x92\x1b\x3f\x7f\x09\xa0\xde\x0b\x27\x09\x98\x77\x0d\xff\xaa\x18\x93\x4c\x4e\xdb\x91\xf1\xc5\x2a\x3e\x62\x0a\xcf\xdc\xe6\x5a\xe1\x92\x3f\x33\x22\xe4\x9c\x66\xa5\xa2\x80\x5b\x47\x41\x5b\x8a\xb6\xff\x31\x31\xbf\x6b\xf0\x4e\x9e\x1d\x1a\x20\x0e\x4d\x1f\x32\xc3\x51\x61\xfc\x8b\x12\x2c\x25\x9d\x2e\x02\xfc\x0c\x1f\x50\x0a\x59\x4a\x65\x6d\x39\xa8\xc3\xd5\xc4\x68\xcc\xf8\x76\x93\x40\xbe\x7d\xf2\xdc\x43\xf9\xf8\xd1\x38\x04\x2a\xd3\xf7\x49\x1d\x2c\xc5\xdd\xd4\x16\x34\xa5\x15\x70\xd5\x64\xca\x6f\x96\xf0\xbd\x14\xe3\xa6\xdd\x8c\x50\x08\x93\x76\xd8\x56\x91\xf1\xb8\x16\x21\xe6\x8b\x2a\x65\x0c\xc2\xe6\x6b\xc5\xc9\x99\x3f\x35\x71\x7a\x4c\x0c\x80\x0e\x28\x3e\x3e\x40\x72\x2b\x2c\xa9\x2e\x74\x71\x46\x12\xb2\x93\xc0\xe2\x0d\x88\xa4\xea\xb5\x0f\xc8\x63\x29\x69\x14\x58\xfa\xab\x8d\x0b\x1b\xc4\x3b\xb7\x20\xd2\x34\x0f\xfd\x27\x33\x50\x1b\xf2\xdc\xb4\x8b\x60\xff\x82\x55\xee\xaa\xbb\x34\x41\xdb\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\xfb\x48\x6a\x6f\x1c\x19\x5c\x1b\xd7\x27\xd2\x25\x8a\x61\xe5\x01\xd8\x88\x03\xd5\xf9\x74\x37\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe2\xde\xd7\xf1\x7f\x4f\x34\xb1\xb3\xbc\x86\x1d\xad\x7e\xf3\x21\x5f\xef\xd4\xde\x11\x25\xdd\x95\x50\x43\x0b\xb4\x9b\xb3\x87\x5b\xb0\x1f\xc7\xd2\x08\xae\x5f\xbc\xdc\xb2\x35\x16\x80\x1d\x99\xcd\x88\xff\x0d\x09\x54\x66\x8e\xb1\xfd\xc2\x67\xbf\x97\x70\x9f\x70\x09\x2b\xcf\xac\xd1\xdb\x73\xbd\x2a\x69\x7f\xe9\xa2\xd7\xfa\x34\x5e\x1d\x55\x41\xdd\xbd\x3c\xb8\x9e\x3c\xe8\xb0\x24\xf7\xf0\xf2\x6f\x3b\x06\xfb\x79\xff\xec\x81\x70\x58\xbb\x12\x77\x27\x22\xbe\x23\x32\xd9\x0b\x49\xb1\xb6\x15\xaf\x25\x2f\x1e\x3a\x30\x9f\x02\x1a\x67\x7f\xb7\x68\x3f\x4e\xf2\xad\x75\x03\xbd\xdc\x05\xbb\x9a\x5e\x76\x42\x1f\x80\x6b\x89\x21\xfd\x37\xb7\x85\x32\xe0\xf0\x06\x21\x63\x35\xdf\xc3\x8a\x60\x3c\x3b\xbc\x4e\x61\x78\xb5\xe5\x7c\x89\xed\xb5\xb9\x5e\x9d\x37\xf7\x25\x49\x6d\xdd\xb1\xec\x42\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x3e\x26\xb6\xdb\x2d\xda\x80\x20\xe3\xb6\x6c\x97\x87\xac\xa9\xba\xd9\xf6\xd9\xea\x2e\x95\x6d\x9c\x09\x32\xa5\x9f\x37\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\xd4\x4b\x03\xf7\x0c\xd4\x57\x0b\xe2\xf6\xec\x4a\xdb\x9a\x4a\x23\x56\x24\x00\xda\xec\xbf\x47\xb2\x40\x5c\x94\x7e\xda\x14\xeb\x70\xf7\xb5\xdd\xcc\xbe\xce\x95\xca\xe4\xc9\xf1\xf1\x8c\xaa\x79\x3e\x39\x8a\x78\x6a\xc2\xcd\xb9\x98\x99\x3f\x8e\xa9\x94\x39\x91\xc7\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\xd0\x63\xea\x7e\xa7\xf2\x96\x13\x2c\xb7\x8b\xec\x71\x99\x5a\x2f\x9c\xb1\x1b\x74\xe3\x72\x24\xf5\x37\x52\xe1\x34\x0b\xa3\x47\x4d\x75\x34\xa9\x70\x51\x93\x01\xd2\xef\xf4\x34\xd1\x1c\x67\x19\x61\xed\x66\x07\x93\x4f\xb9\x05\xeb\x71\x19\x99\x76\x84\xe4\x73\x96\x60\x56\x46\x19\x80\x02\x43\x82\x44\x84\x29\x9b\x01\x5f\xd4\x4b\x06\x6a\x34\x48\x37\x86\xff\xaf\x97\x71\x07\x73\xa4\xb2\xa8\x1c\xe6\x86\x63\xab\x78\xba\xda\x8e\x38\x58\xba\x6a\xe5\xd4\x62\xed\x88\x5b\xb5\x65\xb9\x78\x77\xf5\xfa\xd9\xeb\x57\x6e\x11\x9c\x8d\xc9\x67\xcd\xe4\xe4\xa6\xb8\x54\x0f\x92\x48\x34\xf8\xe9\x0e\xc9\x05\x53\xf8\xf3\x09\xba\xa4\x0c\x04\xd8\xef\x79\x2e\x24\x3a\xc3\x8b\x43\x3e\x3d\x4c\x39\x53\x73\x74\x09\xff\x6b\x7f\x7a\x26\xe4\x11\xfd\x4c\xb0\xb0\xfc\xc1\x56\x5e\xf3\x45\xbc\x35\x09\x89\x9c\x49\x44\x9e\xf4\x09\xfd\xc3\x7f\xa2\xd4\xb4\x7c\x82\xbe\x3d\xfe\xc3\x7f\xa2\xdf\xc1\xff\xff\xff\xd1\xef\x5a\x34\xfd\xf5\x90\xad\xa0\x3e\xef\x6d\xd9\x9d\x7b\x50\x59\xa9\x0d\x4a\x96\x9f\x0a\x5e\xec\x54\x63\xcb\x8f\x34\x7a\xe4\xd3\xe9\x58\x13\x86\xc9\x57\x1b\x63\x51\x43\x45\xde\x10\x26\x94\xda\x02\xcb\xa6\x60\x5b\x51\x2a\xc5\x76\x6a\x80\x0d\x1c\xbb\x96\x79\x51\x60\x16\x82\x88\x4a\x45\x7b\xa9\x84\xaf\x48\xac\xb9\xea\x3a\xa7\xc3\x59\xf7\x5c\x8e\xb3\xb3\xe0\x84\x40\x20\x61\xd1\x70\x1f\xf8\x17\x46\xb1\x9a\x40\x1f\xbb\x90\x8d\xc7\xa1\x16\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\xd6\x3a\x5f\x1d\x2a\x79\xc7\xc5\x56\xfa\xd6\x23\xa9\xc5\x6c\x77\x2c\x0b\xe4\x4a\xd5\x86\xe5\xeb\x21\x11\x9a\x0b\x0f\xd7\x6b\xec\x22\xb6\x78\xe0\x6a\x2b\x26\x15\x26\xb8\xac\xdb\xa1\xd7\x53\x3f\xf3\x9f\xac\x1a\x26\x44\x9a\xb9\xb7\x8b\xb2\x68\x30\x5a\x2d\x22\x69\x96\xd8\x30\xe2\x06\x4c\xbf\x55\x1b\x7a\xe7\x61\x1c\xa0\x71\x08\x7b\x84\x94\x0f\xe6\x24\x5b\x9b\x27\xdf\xbc\x9f\xb9\x88\xc8\x29\xdf\x2e\xec\x35\xa1\xac\x16\x2f\xdf\xbd\xe2\x8e\x5f\xbd\x0b\x5b\x5b\xc9\xc1\xde\xf2\xb8\x50\x16\x8c\x5b\xc0\x16\x5b\x08\xf0\x36\xcb\xb3\x01\xdc\xb6\x5d\x40\x3a\xd6\x4a\x00\x6c\xc1\xb5\x8d\xe1\xb8\x60\x78\xae\x82\x44\xa5\x70\x84\xc0\x9a\x17\x2e\x89\x5d\x83\xa0\xa2\xad\xc7\x11\x14\x43\x29\x22\x95\x2a\x45\xc7\xb1\xa9\x08\x22\x36\x84\xe4\x34\x75\x89\x0e\x90\xc0\x10\x94\xa9\xe6\xba\x3d\x49\xc4\xe1\x14\x47\x94\xcd\x0e\x02\x34\x46\x40\x46\x08\xaf\x83\x26\x22\xbd\xc7\xf2\x71\xb7\x81\x86\x5b\xd7\x69\xa4\x71\x51\x2b\xcc\xe2\xa7\x18\xc7\x06\xad\x41\xd1\x29\x2c\x1f\xdb\x00\x84\x6a\xe8\x65\x4b\x46\xe7\x97\xc2\x61\x9e\x2d\x1b\x9f\xcb\xb4\x26\xa1\x3e\x05\xa5\x09\x5c\xe5\x60\x8b\x65\xe8\x12\xdb\xb0\x07\x1b\xa9\x82\x78\x2e\x19\xbf\x9c\x73\xa1\xc6\x1b\xc2\x9f\x56\xb3\xc5\x19\x39\x4c\x00\xb7\x84\x3f\x11\xf1\x44\xc9\x73\x19\x45\x74\x1d\x5a\x34\x46\xb3\x20\xaa\x0e\x60\x26\xd3\x8c\x43\x0a\xcd\x14\xa5\x98\x2d\x0c\xa3\xd4\xcc\x05\xcb\x47\xe9\xeb\x95\x22\x99\xe2\x24\x39\x40\x82\xe4\xd2\xd4\xf1\x95\x24\x99\x1e\xba\x8a\x0f\x31\x4a\xf8\x8c\x46\x38\x41\x93\x84\x47\x8f\x72\xc4\xb4\xa0\xc0\x66\x86\x49\x65\x82\x47\x44\xca\x40\xb2\x2a\x92\xb6\x6d\x2a\x1d\x14\x2b\x55\x44\xa4\x94\x51\xa9\x68\xe4\x44\xa6\x02\x7b\xc1\x94\xcc\x8e\x30\x98\x84\x21\x31\x11\x86\xab\x25\x3d\x62\x30\x28\x73\x66\x6b\x03\xc1\x75\x6d\xa1\xe5\x5c\x90\x78\xdb\x01\xda\x01\x52\x9e\xa3\x90\xb1\x2a\x1f\xc8\x15\x47\xea\xd4\x7e\x06\xc7\x78\x19\x09\xdc\x96\x4f\x94\x27\x48\x7f\xd2\x4a\xe8\x3d\x10\x53\xee\x43\xe0\x4b\x92\x8b\x8f\x0c\xdf\x33\xe0\x2e\x18\x72\x0b\x5c\xd7\x2a\x9a\xd6\xab\x08\x22\x0f\x94\xa3\xaa\x7a\xcd\x29\x8b\x92\x3c\xf6\x05\x09\xb5\x08\xf0\xa4\x89\xc4\x2d\x8f\x5e\x7b\x2d\x28\x1c\x20\x2c\xd1\x33\x49\x12\xfd\x5f\x13\x01\x7f\xe8\xeb\x03\x68\x96\x6c\x6a\x38\x40\x27\x8e\x4b\xb7\x51\xd4\xde\x81\x30\xde\x60\x35\x37\xa9\xed\x29\x57\xa6\x16\xa4\x01\x61\x74\xf6\x2d\x83\xda\x37\x49\xf8\x04\x4e\x3a\xe0\x33\xba\xd4\xd8\x20\xad\x2e\x8f\x22\x42\x62\x12\xa3\xaf\x83\x83\xeb\x61\x17\xbe\x69\x46\x0b\x2c\xad\xc8\x1e\x60\x33\x56\x0d\x6b\xad\x08\x8d\xe5\x72\x66\x47\xe8\xa6\x82\x3f\x12\x96\x29\xc7\x55\x34\xaa\x83\xda\x16\xbe\x0d\x9e\x63\x65\x12\x2f\xb7\x43\x6b\xe2\x39\x96\xfa\xdc\x01\x9e\x63\x65\x9e\x2d\xb1\xfb\x7c\xf6\xa2\x39\xc7\x7a\x52\x17\xbc\x7b\x22\x98\xc1\xc1\x32\x77\x67\x89\x04\xdd\x81\x5c\x34\x11\xe2\x7e\x61\x55\x56\x8a\xfe\xbd\x2d\x56\x65\x65\x30\xfb\x8c\x55\x59\x19\xea\xfe\x62\x55\x36\x0c\xb4\x03\x56\xa5\x71\xee\x8f\x35\x51\x77\x63\x0a\x90\xd8\x32\xc9\xa7\x77\x90\xea\xbd\x74\x8c\xa7\x26\x70\xc0\x5c\x63\xee\x8e\xb6\xd0\xcd\x30\x5a\x9b\x03\xd9\x16\x0e\x55\x71\x42\xac\x4b\x7b\xde\xfb\x46\xa5\xd1\xd0\xd6\x33\xbb\x1f\x84\xd6\x6e\xb0\x43\x46\x38\xb3\x39\xe5\x6d\x15\x55\xf6\x27\x7b\x76\x33\x18\x50\x80\xda\x2b\xb1\xfc\x4e\x40\x59\x97\x95\xe2\x04\x73\xfe\x6c\x0b\x04\x01\x19\x1a\xa2\x6c\x25\x41\xe8\x74\x6c\x95\xb6\xb6\x95\xa3\x4c\x91\x59\x55\xa7\x2d\x0e\x0d\x65\xea\x4f\x7f\x5c\xc9\x89\x0c\x92\xa0\x53\x0f\x83\x12\x01\xde\xd9\x61\x9f\x91\x18\x45\x73\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x14\x53\xa7\x48\xe5\xd2\xb8\x96\xa8\x1c\xb1\x12\xf4\xe6\x11\xfa\x08\x75\x4f\x71\x9a\x69\xfd\xcb\xcf\x8f\x6a\x4a\x1a\xe5\xdf\x7e\xfb\x27\x82\xbe\x45\x29\xc1\xac\xa4\xc3\x82\xda\xa4\xaf\x3e\x80\xaa\x53\x73\x32\x62\x8d\x5b\x81\x86\x9f\x4d\x29\x25\x17\xef\x77\xce\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd9\x29\x7c\xd9\x18\x00\xeb\x6e\xec\x7a\x1b\x0f\xe0\x1e\x39\x94\xa4\x04\x61\xd4\xe0\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\x1e\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x0e\x80\x12\xf2\x68\x6e\x1c\xab\x5a\x67\xc1\xb6\x2e\xc3\x13\x95\xb9\x56\x68\xa1\x2d\x57\x06\x42\x2a\x6c\xa0\x97\xe6\x14\xfa\xd1\xea\x37\x81\xaf\xc2\x2c\x39\xd4\x4d\x8b\x0a\xd1\x51\x2b\x3c\xbf\x23\x3a\x6a\x89\xaa\x7a\x74\x54\x8f\x8e\x5a\x5f\x97\x7d\x44\x47\xad\xec\x79\x37\x74\xd4\xa6\x2d\xdf\x00\x1d\xb5\xd4\xcc\x17\x83\x8e\x5a\x59\xd1\x2f\x06\x1d\xb5\x32\xaf\x1e\x1d\xf5\xcb\x43\x47\xdd\x12\xff\xb3\x99\x17\x1b\x7c\x25\x45\xd9\x62\x6d\x22\xfb\x4a\xa2\xf3\x6b\x4d\x60\xd1\x63\x39\xa8\xcd\x5f\x57\xdb\x63\x8e\x36\x33\xa1\xf5\x30\x47\x1b\x55\xf5\x76\x56\xb7\x2d\xc0\x13\x28\x06\xaf\x8c\x39\x5a\x9a\x40\x1f\x5f\xb9\x7e\x7c\x65\x23\xf1\xd9\xbe\xf5\xf0\x5c\xd0\x65\xf5\x42\xee\x88\x3a\x5a\xda\x9f\x4e\x91\x98\x20\xba\xef\x80\x12\x5f\x56\x9a\xbf\x2f\x1d\xf2\x95\xb2\x7c\xb8\x8a\xd2\xe2\x1f\x6b\x09\xcf\xa1\xc5\x19\x25\x3c\xf4\xff\xf7\x94\xbb\x41\x64\x70\x65\x79\xbd\x5f\xc5\xd0\x62\x07\x52\xed\x4c\xa1\x4e\x2b\xdd\x4d\xa2\xac\x4b\x9e\x5c\xd3\xc5\xec\x06\x71\x97\x91\xa8\xc5\xc6\x4c\x53\xba\xab\x66\x57\x5d\x64\x1e\x0b\x0b\x14\xf2\x5a\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x5a\x63\x9b\x6a\x23\xdc\xc6\x55\x9a\xe5\x9d\x03\x62\x82\x55\x9d\x6d\xf6\x59\x4a\x52\x2e\x56\x05\x56\x35\x7e\x69\x2b\xba\x6c\xf2\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xdd\x46\xba\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xce\xdb\xbd\xed\x36\x5b\xcc\xcc\x35\x1d\x42\x0e\x33\x78\xb9\xc1\xcd\xbe\x54\x72\x77\x03\x7d\x37\xc6\x74\xf8\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x4e\x15\x5f\xd9\x7a\xc7\x6b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\xeb\x07\x78\xb4\xa0\xa6\xd6\x97\x07\x22\x73\x24\x11\x87\xa1\x66\x50\x1a\x4c\x7d\xbd\x4a\x54\xe2\x34\xca\x2d\x88\x24\x17\xad\x51\xa6\x5d\x0c\xda\x91\xca\x71\x02\x9a\x44\x58\xa4\xb1\xba\xa9\x93\x45\x43\xda\x63\x37\x8f\x09\x65\xea\xcf\xff\xb1\xd6\x6e\x6a\xd5\xca\xae\x1b\x14\x96\xc2\x51\x44\xa4\xb1\xb1\xdb\x28\x64\x3c\xe1\x4f\x50\x53\x6a\x9b\x5d\xd5\x47\x59\xcf\x5b\x33\x78\x0f\x45\x1c\x17\xa4\x6e\xc4\x85\xb9\xe0\xf9\x6c\xee\x6c\x48\xfa\xcc\xe8\xa9\x35\xed\xe5\x8f\x35\x1b\xf9\xda\x7b\xf9\x5d\x4e\x93\xcd\x2c\x74\x77\xa5\x6a\x5b\x9f\xce\xef\x91\x9c\xfb\xd3\x3a\x81\x66\x1b\x37\xb6\x3e\xe8\xee\x7d\xda\x6f\xbd\xbf\x06\xba\x39\x70\xf0\x9b\x53\x9e\x24\xe0\x69\x90\x24\x7d\x0a\x8b\xe4\x87\xdd\xc3\x84\xef\xe9\x7a\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x49\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x4d\x36\xb6\x9f\xea\x85\x4e\xde\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x5b\x92\x57\x0e\x1c\x5c\x31\x8f\x7d\x0d\x1e\xac\x30\x3b\x1f\xcb\x57\x5c\x33\x2e\x70\xc8\x28\x3e\x03\xbd\xc4\x23\x36\x28\xe5\x53\xb8\x82\xd0\x93\x45\x11\x90\x6d\x74\x88\x90\x99\x41\x39\x09\x6b\x58\x01\x37\x9a\xfe\x0b\x34\x1d\x03\x5e\x6b\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x10\x47\x8b\x28\xa1\x51\xa0\x33\xcf\x04\xce\xe6\x4d\x1c\xcf\xed\x7c\x8f\xba\xf3\x56\xa8\x3b\x6d\x75\x97\xd6\x89\xdb\x76\x74\xc5\x70\x4a\x7a\x34\xa0\x26\x34\xa0\x03\x8f\x77\xc1\x8a\x0a\x52\x6f\x08\xa3\x50\x3f\x77\x3d\x24\xd0\x1b\x40\x02\x6d\x72\xf8\x0a\xbc\x9f\xd2\xb1\xeb\x61\x8a\x3e\x74\x82\x29\xf2\x97\xe0\x5e\x21\xcf\xb4\x9f\xc7\x37\x46\x34\xa9\x0f\xec\x2d\x61\x89\x1a\xc4\x85\x75\xe4\xa6\x65\xb8\x44\xcb\xe8\xa2\xd3\xba\xbc\x2d\x4a\xd0\x7a\x2b\xb3\x16\x00\x50\xe3\xdd\xb5\x27\x70\x40\xed\xdb\xb0\x27\xe7\x66\x97\x59\x2d\xeb\x95\xc8\x0c\x33\x5b\xd6\x51\xb0\xd6\x4b\x72\xf1\xf4\xf0\xbe\x12\x5d\x8a\x5a\x62\x9b\x25\xbb\x0c\x9c\x0f\x9a\x08\x34\xe7\x49\xec\x40\x28\xfc\x6a\xf9\x0e\x7c\x26\x80\x5f\x20\xb7\x19\x50\xd3\x1b\xb4\xad\xa2\x20\xd8\xb2\x94\x16\xbf\x89\x30\xdc\x1d\x30\x9a\x5d\x58\x11\x3c\x27\xd9\xc4\x7e\xb0\x52\x16\x91\x65\xf3\xf7\x92\x31\x96\x56\x08\xac\xe6\xcd\xc3\x5c\x69\xf7\x5d\x31\xb8\x65\xa2\x47\x60\x1c\x14\x4d\x15\x2d\x0d\x9d\xc1\xd3\x27\xea\x0c\x11\x38\xec\x71\xa9\x97\xce\xcd\xae\x93\xa7\xae\x4a\x2c\x1b\x04\x83\xd5\x2a\xb7\x6d\x0f\x0e\x94\xe2\xcf\xe3\x0c\x0b\x9c\x24\x24\xa1\x32\x7d\xb1\x60\xe0\xd3\xb2\xbb\x56\x9f\x55\xc1\x8d\x89\x88\xe5\xe9\xc4\x90\xa2\x1b\x88\xad\x17\xa9\x38\x12\x39\x0b\xa1\xcd\x9e\x6b\x45\xf5\x73\xb8\x17\xc0\xaa\x14\xcd\xa1\x38\xe9\x14\x53\xc1\x88\x6c\x2d\x05\x49\xa2\x5c\x50\xb5\x18\xdb\xca\x9a\xdd\x0f\xdc\x9d\xfd\xf2\xd4\x7e\xb8\xdc\xc3\xed\xb2\xfa\x5d\x7f\xbe\x92\x67\x46\x04\x94\x09\x72\x05\x6f\x82\xea\xa1\x16\xb5\x81\xf8\x5a\x43\x10\xfe\x5c\xbb\xb6\xdb\x02\x87\xf1\xf3\x38\xc8\xa8\x1a\x47\x55\xe2\x58\x75\x58\x9b\x70\xa7\x96\x4d\xf2\x85\x91\x97\x5a\xbc\xc8\x2f\x50\x65\xc4\xa6\x4d\x98\xa6\xf5\x80\x03\x57\x30\xd8\x2b\x8b\x8d\x09\x52\xde\xad\x52\xd5\x32\x4e\x8b\xf5\xd3\x14\x7c\xb4\x64\xb0\x83\xe0\xab\x0e\x23\x0e\x3a\xd9\xd1\xb0\xf5\x41\x17\x22\xcf\x14\x9d\xd4\xa1\x6d\xd4\xee\xaa\x8e\x0e\x12\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x34\x62\x03\x89\x9e\x09\x62\xc4\x42\x48\x34\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x03\xdd\x30\x54\x2d\x55\x1c\x82\x3f\x31\x7a\x16\x38\xcb\x88\x18\x31\x9b\xc5\x01\x0e\x17\xce\x13\xd3\x7e\x5b\x88\xab\x5d\x03\x32\x8e\x70\x34\x7f\xa5\x3d\xc2\x90\x8c\x13\xcd\x49\xec\xf2\x85\xcb\xdb\xe3\xe6\x6d\x0c\xd6\x6b\x6c\xd6\xf9\xd4\x95\xcf\x3a\xb0\x9d\x24\x91\xe6\x28\xbe\x9a\x72\x46\x84\x1e\xb5\xa6\xe1\x27\xc2\x10\x9d\xba\x71\xd8\xd8\x1d\xf4\x0c\x9e\x29\x4d\xfa\x4f\x98\x26\x26\x01\xdf\x75\xed\x84\x40\x63\x7e\x1f\x31\xe3\xee\x66\x51\x29\x43\x95\x32\x2a\xe7\x9a\x53\xe7\xe0\x93\x04\x35\xa3\x2d\x71\x86\x3d\xad\x73\x9a\x87\xfa\xf5\xe5\x1c\xf4\x89\x0a\xce\x52\x48\x92\xb1\xb8\x4c\x6e\xf9\x24\x51\xfe\x78\x34\xa6\x38\xae\x94\x88\xe3\x58\x96\x8d\x9f\x46\xad\xa4\xbf\x96\xcc\x2e\x87\xa5\xac\xc0\x28\x80\x15\x82\x20\x4e\x57\x59\x6c\x99\xfc\xdb\xa7\x36\xd4\x53\x1b\x9a\xd7\x66\x1f\xd3\x1b\xfc\x21\x5e\x37\xc5\xa1\x6d\xfb\x77\x21\xd9\xee\x30\xd5\xe1\x8d\x73\x02\x5e\x26\x1d\xe0\x6d\xf3\x37\x5e\x22\x75\xa3\x4f\x70\x78\xc3\x04\x87\xce\x96\xda\x72\x6c\x76\xfb\xb1\x5d\x2b\x39\x60\x05\x98\x53\x53\x2f\x97\x44\x09\x1a\xc9\x5d\xf0\x07\x99\xe1\x8e\x51\x6d\xa0\x05\x66\x2b\xa4\x26\xfd\x82\x77\x42\x42\x9c\x98\xaf\xf3\x37\x11\x04\x3f\xc6\xfc\xb9\x66\xab\x93\x21\x9a\xc6\x25\xd7\x62\x8f\x20\x11\x95\xa4\x14\xc9\x42\x25\x62\x44\x5a\x63\x27\x1e\xb1\x39\x25\x02\x8b\x68\x0e\xd9\x8d\xc5\xc6\x98\x2c\x59\x03\x68\x64\x62\x19\x42\x6f\xd3\x1a\x9b\xde\x61\xdd\xab\x16\x26\x8f\x4f\x67\xf7\x5c\x8f\x24\x35\x9f\x78\x61\xc6\x4a\x19\xa1\x49\xae\xd3\xf6\x6f\x1b\x88\xef\x17\xfb\x45\x83\xf1\x7d\x30\x51\xf0\x45\xc7\x80\xfc\x82\x1a\xfa\xa0\xfc\x17\x0a\xca\x6f\x58\xe2\xf5\x02\xf3\x37\x32\xf9\xbd\x7e\xcc\xb0\xeb\xf9\x35\xe2\x86\x57\x05\x6d\xe5\x93\xf1\x8b\x1f\xbd\xc6\x39\x77\x3d\x81\x3f\x79\xa2\x30\x12\xb1\xd0\x74\x36\x21\x71\x0c\x9c\x56\x71\x5b\x29\xba\xa0\x1d\x67\x1e\xd0\x77\x2f\x96\x9a\xd8\x71\xc2\xd9\x4c\xd2\xd8\x80\xad\x64\x18\x2a\xb6\x86\xc6\x0b\x00\x17\x80\xfd\x4d\x12\x22\x9c\x57\x42\xa0\xaf\x25\x65\x16\x4d\xd1\xff\x16\x73\x22\xd9\x57\xca\x18\x0b\x30\x5b\xa0\x47\xc6\x9f\x13\x12\xcf\x60\x87\xaa\x83\x39\x44\x94\x1c\x20\xaa\xfc\x67\x02\xd0\x08\x78\xae\x46\x7a\xec\x10\x6b\x66\x34\x00\x62\xbf\x0d\x6a\xa2\xfb\x66\xbe\x39\x42\xe8\x9c\xa1\x29\x8e\xd4\x01\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\xf4\x31\xe3\x0d\x9d\x37\x9f\x0d\xc7\x1d\x34\xb9\x0e\x12\x8a\xb7\x8a\xad\x7b\xc2\xdb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xab\xad\xb3\x32\x95\x75\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x9d\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xa6\x4d\xcb\xf4\x8d\x47\x4e\x39\x33\x0e\xc2\xad\xe4\x4e\x3a\x63\x38\x59\xd3\xc6\x51\x5b\xb9\xba\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xca\x7c\x43\x79\x0f\xa3\x98\x64\x84\xc5\x84\x45\x0b\x20\x11\x06\xc8\x39\x82\xe1\x04\x61\xf8\x0e\x27\x47\xe8\xcc\xe4\xd7\x78\x09\xcf\x5e\xeb\x70\xa1\xa7\x98\xd1\xa9\xd6\x13\xc0\x08\x6b\x47\x39\x62\x66\x98\xce\x07\x12\x14\xed\xf7\x2b\xd6\xb4\x33\xfa\x06\xb9\xda\x12\x95\x98\x95\xbf\x47\xcb\x2f\x1c\xe8\x6d\xd9\xee\xe8\xe6\x5c\x0d\x02\x99\x4f\x0e\xe1\xdf\xa5\x84\x33\x07\xd4\x53\xa0\xc8\x90\x84\x80\x39\xd0\x7a\xbc\xe0\x62\x6c\x03\x96\xdb\x85\xdf\x6e\x45\x1e\x47\xd0\x47\x49\xa9\x49\x29\xa3\x69\x9e\x06\xce\x3b\x53\xb1\x20\xb2\xf6\x4b\x93\x89\x91\x69\x3d\x20\x72\xe0\xe5\x48\x5f\xae\x6c\x81\x66\xf4\x89\xb0\x11\xcb\x38\x65\xea\x08\x5d\x71\x45\x82\x12\x11\x06\x3a\x8a\x67\x8a\xa6\x06\xed\x54\x10\x7d\x0e\x0c\x28\x36\x00\x4d\xce\xb1\x3a\x40\x71\x0e\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xec\x0c\xc4\x47\x8b\x11\x33\x37\xdd\x14\xd3\x24\x17\xc4\xca\xac\xd8\xe4\xc5\x14\x43\x2e\x46\x66\x91\xd0\x82\x49\xa4\x74\x36\x57\x7a\x8b\xb4\x8c\x67\xfd\x8d\x73\xcd\x8d\xf8\x88\x4d\x08\xc2\x28\xe3\x92\x2a\xfa\xe4\xfd\x97\x74\x8a\xb0\x94\x60\x41\x39\x42\x67\x25\xfb\x3f\x95\xa0\x7a\xb7\xc5\xd5\x52\x36\xb6\xb6\xe7\xf6\x7c\x9c\xad\x37\xb2\xd4\x8b\x5d\x65\x3c\x91\x3c\xc9\x55\xe8\x82\x6d\xde\xdb\xc2\x34\xee\x80\xfb\xc1\x40\xcc\xa7\x23\xe6\xe8\x5a\x1e\xa1\x81\x44\x92\xeb\x5d\x92\x66\x2b\x23\x41\x15\x11\xd4\xa0\x38\x11\x65\x36\xc1\x9f\x53\x7f\x06\x52\x2c\x1e\xb5\x08\x15\x5a\xe0\x0d\xa6\x68\xc9\xda\x31\x31\x12\x12\xc0\x5a\x85\xdb\x01\xa6\x7f\xc4\x38\x3b\x64\x64\x86\x57\xed\xc8\x88\x95\xb6\x04\x7d\x4d\xa7\x85\x42\xda\xe6\x73\x0c\xd6\x6e\x0c\x91\x4f\x6d\xbb\x64\x3a\x6e\xdb\xa4\x69\xc2\xf1\x0a\xb7\xf1\xb4\x38\xf4\xe8\xef\x7c\x62\xc6\xa8\xf5\x7e\xae\x40\x0a\xd4\xea\xd5\x94\x0b\x32\xc7\x2c\x3e\x70\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\xac\x75\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x61\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x1b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x0d\x04\xbf\x24\x5f\x2b\xb9\x2a\x70\xfb\x2d\xda\x6a\x9a\x28\xbc\xaa\xcc\xc8\x1a\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x34\x62\xe7\xea\x2b\xa9\x45\x74\xce\x66\xfa\xa2\x89\x9f\xa8\x2c\x8a\x9c\x44\x9c\xc9\x3c\x25\xc2\x76\xa1\x6f\x64\x4d\x91\xb6\x40\x00\x76\x32\x94\x1e\x9b\xde\xfb\x27\x9c\xd0\xd8\x15\xe2\xd1\x3f\x9a\x33\xa7\x47\x29\x9d\x47\xb1\x21\x24\xcc\x6e\x6e\xac\xd7\xea\xcd\xc4\xfa\x1f\x43\xc9\x1d\xa5\x85\x90\x8f\xad\xad\xfe\xb8\x2a\xe2\xdb\x55\x5f\x22\xde\x4f\x6a\x93\x42\xcb\x05\x23\xbb\x0a\x67\xab\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x16\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbe\xb5\x67\x5b\x96\x89\x90\x11\x4e\xea\x3b\xbc\xc4\xde\x6c\xde\x5f\xae\x04\xd8\xe3\x66\xda\x5e\x9a\xf4\x1b\xf1\x24\x59\xa7\x84\x49\x65\xe6\xa7\xc5\xe7\xcb\x47\x54\xf4\xa3\x37\xc0\xed\x05\x9c\x1a\x73\x79\xe3\xc4\x9a\x52\xa4\xb2\xbb\x14\xbe\x64\xd4\xb0\x85\x65\xad\x23\xc6\xa7\x50\xe4\x26\x69\x8b\xea\xca\x04\x4f\xe9\x3a\x28\xcb\x26\xd0\xe9\xd6\xd9\xc5\x57\x58\x19\x9c\xf5\x1c\x44\x53\x43\x5e\xb6\x47\xc8\xd7\xc3\x56\xdc\x5c\x72\x86\x52\x9c\x6d\xb4\xe0\xab\xbc\x42\x03\x94\x1a\x97\x9c\x5d\x3d\xc0\x5b\x24\x50\x2f\x06\x16\xf9\x19\x2f\x8a\xd4\xe8\x36\xfc\x5c\xb6\x16\x39\x3c\xe8\xd7\xcf\xd9\x94\xaf\x71\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x5d\xce\xe3\x69\x13\x51\xaf\x7d\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x9d\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf9\x52\x5d\x96\xe8\x70\xe7\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\x69\x6e\xf5\x15\xd6\xcc\x1e\x92\x4e\x8b\xb5\x25\x76\xc3\x7a\x38\xc0\xae\x47\x8f\xfa\xdb\x7c\x42\x57\x16\x39\xe8\xbe\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x9f\x37\x18\x38\x5d\x82\x98\x0f\xa8\x32\xa1\xf2\x4e\x7a\xca\x05\x0d\x0a\x83\x3a\x19\x09\x51\x28\x50\x12\x3a\x79\x02\x85\x1e\x4c\x8b\x73\xfe\x6c\xa2\xd3\x05\xd5\x3c\xcb\x08\xab\x0a\xcc\x3d\x9a\x17\x50\x6b\x2d\x31\xc6\x26\xff\x01\x37\x31\x83\xd8\xd6\x3e\x2e\x46\xd5\xb2\xa5\xbb\x28\xf1\xd4\x3d\xff\xce\xf5\x7a\xaf\xbf\xa8\xef\x4d\xe3\x08\xef\xcb\xad\xaf\x3d\x3a\x2f\xe5\xaf\x1f\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\x67\x3f\x1c\x3f\x9c\x23\xa2\x22\x94\xd0\x47\x32\x62\x91\x7c\x3a\xd0\xe2\xf1\x3f\x72\xa2\xf4\xcf\x2d\x1e\x01\x9a\x12\x26\x81\x13\x50\x55\xc3\x1e\x6a\x5e\x48\xb7\x30\xfa\xbf\x67\xe5\xef\x97\x90\x7c\x2d\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x03\xc5\x18\x5b\xe4\xb0\xa9\x1a\xe6\x06\xe9\x42\xec\xef\x39\x5b\x53\xe8\x3a\x2d\x3e\x0a\x46\xd1\x22\xd3\xa5\x19\x06\xac\xeb\xf5\xf2\x90\xcc\x37\x8d\xad\xaf\x62\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x34\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\x9a\xb8\x84\xc0\x2c\x9a\x6f\x6b\x42\xa6\xd3\x31\x49\xd6\x91\x44\xcf\xa7\xc3\x44\x6a\xfa\x8e\x1e\x5b\x4e\xe7\x26\x35\x1b\x8b\xc9\xd8\x4a\xb4\xa6\xee\x13\x2a\x4c\xd0\x38\x31\x15\xe5\x08\x02\x1f\x65\x35\x7b\xcc\x00\x44\xe8\x5d\xb4\x92\xba\x71\x51\x9a\xb4\x0d\x1f\x92\x0d\xbd\x20\xac\x46\x4c\xe4\x0c\x8a\x4d\xf8\x88\x05\x8c\x0a\xbc\xf0\xc8\xf9\x0f\xac\x37\x67\xa6\xd9\x84\x81\xe3\x36\x2f\x6b\xfd\x8c\xe7\x12\x6c\x35\x29\x51\xfa\x82\xfa\x1a\xea\xc0\x9a\x90\xa1\x03\x94\x09\x9a\x82\xb9\x55\x7e\xd3\xb0\x75\xa7\x58\xe1\x84\xcf\x06\x42\xd1\x29\x8e\xd4\x3d\xde\x4a\x03\xc7\xb6\x99\x4d\xc3\x4f\xdd\x30\xd0\xf9\x99\x5e\xfc\x19\x61\x44\xc0\x44\xb5\x4e\xde\x7c\x84\xe1\xc9\x46\x9c\x1b\xac\x6c\xd6\x30\x2a\xbd\xc5\x02\xe7\x8a\xa7\x5a\xbf\xc5\x49\xb2\x38\x30\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x97\xbb\xc9\x2e\xee\x29\x8e\xe6\xe4\x0e\xaa\x22\x37\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\x27\xe8\x7f\x8a\x39\x9e\x0e\x4e\xbf\x1f\x8e\xcf\xce\xef\x06\xdf\x5d\x0c\xcf\x82\xf9\xd8\x27\x97\xe7\x77\x77\xf5\x5f\xbf\x3f\xbf\xaf\xff\x78\x73\x7d\xf3\x70\x31\xb8\x6f\x6a\xe5\xe2\xfa\xfa\x87\x87\x9b\xf1\xc7\xc1\xf9\xc5\xc3\xed\xb0\xe1\xd3\x87\xfb\xf6\x87\x77\x3f\x9c\xdf\xdc\x0c\xcf\xdc\xaa\xfc\x2d\x38\x5d\x60\x3d\x86\xd4\x8b\xe6\x69\x54\x0f\xe0\x21\x2a\xbf\x78\x82\x1e\xaa\xa5\x0f\x6c\x2c\xb2\xc1\xb1\x78\xc6\x52\xf3\x30\x08\x85\x1f\x31\xe4\x3e\xd7\x8b\xd2\xf6\xa9\x09\xd7\x89\xe6\x04\x25\x9c\x3f\xe6\x99\x65\x6d\x26\x3e\x8c\x71\x63\xf8\x21\x32\x68\xed\xfb\xf3\xfb\x93\x7a\x09\x06\xdf\x58\x80\x98\xe5\xce\x00\x8c\x0b\x3b\x76\x0a\xb6\x14\x07\xcd\x5f\x58\x6f\x83\x1e\xfc\xce\x2c\xeb\xc7\xb4\x86\x99\xaa\x74\x13\xc7\xb6\xe8\xaf\x9b\x58\xd0\x70\x79\x5f\x97\xad\xa6\x5f\x0e\x53\x7b\x0a\x4d\x48\x84\x73\x13\xd4\xa4\xef\x29\x21\xb8\x08\x07\x5c\xd0\xc3\xee\x1a\xb5\x74\xd4\xd8\x60\x65\xcf\xf4\xc4\xe5\x23\xcd\x32\x12\x7f\xa8\xcb\x2f\xe5\xea\xb0\xb6\x26\x39\x9f\xa2\xe0\x4c\x6a\xbd\x1e\x74\x7e\x57\x38\x65\xbe\xf0\x9e\x34\x08\xdc\x28\x42\x59\x00\xc8\x59\xdf\x09\xbe\xb0\x05\x05\xd7\x18\x56\xe8\x99\x40\x4a\x75\x6e\x2b\x47\x19\xdd\x5b\x9f\x6d\xe8\xce\xd8\xb4\x5d\x1d\xb8\x52\xaa\x75\x2b\x33\xde\x85\xc0\xad\xbf\x97\xa4\x89\x11\x6f\x91\x17\x7b\x66\x1a\x05\xee\xec\x62\xde\x60\xc4\x2d\xc1\x0d\xee\x36\x68\xb0\x90\x2f\x91\xaf\xea\x37\xd2\x8a\xcb\x42\xb3\xed\x2e\xe3\x71\x58\x20\x25\x80\xeb\xee\x03\x2b\x81\x20\xaf\x5c\xab\x7b\x1e\xe3\x85\x26\x0e\x88\x35\x96\x79\x96\x71\xa1\x50\x4b\x1b\xc6\x8d\x6f\xc6\x07\x77\x8e\x9d\x87\xe7\x71\xd0\x88\x96\x30\x64\x43\x2d\x8d\x6e\xf0\x08\x76\x5d\x0b\xc6\x11\x06\xc8\x82\x22\xe8\xeb\x1e\xa5\x25\x95\xba\x44\xa1\x4d\xc2\xef\x36\x19\x06\x99\xbe\xe0\xbb\x96\xe1\x6b\xea\xfd\xda\xb5\xd0\xb8\xe5\x09\x99\xaa\x71\xa3\xd7\x67\x89\x81\x53\xb7\xc8\xda\x10\x65\xe8\x6c\xbe\x83\x16\xbb\x6b\x09\x7f\xb4\x81\x3d\x5a\x35\x08\x2c\x04\x82\x73\x65\xe4\xd3\x42\x87\x41\x6e\x35\xc1\xbc\x60\x3b\xb5\xb9\x60\x5e\x08\xd4\x32\xbf\xf1\x87\xfa\xb4\xa9\xa3\x11\x1b\x42\x00\x45\xa1\x88\xb8\x14\x31\xd0\x02\x56\xca\xff\xa5\xa2\xa3\xaf\x1a\xad\xd9\x8e\xf0\x5a\xd0\xbd\xad\x97\x9f\x2c\x50\x51\x58\xb6\xf4\x5d\x97\xd3\x63\xac\xde\x4e\x04\x34\x13\xb6\x65\xdc\x15\xc9\xac\x65\xde\xcc\xb3\x88\xf4\x81\xf8\x30\xdd\xd5\x11\xfa\xc9\x59\x7e\x20\xf0\xb5\xa8\xc9\x6c\x63\x37\x12\xbc\x70\xa0\x90\x4d\x0b\xbb\x0b\x9c\xc5\x5d\x87\xc2\x2e\x5f\x60\x0f\xe8\xd4\xb0\xca\x25\x05\x9c\x31\x63\x91\x5d\x23\xed\xe3\xd4\x7f\x74\x47\x96\x47\x05\x7c\x84\x32\x9c\x36\xb2\x0a\x84\x0e\x96\x2c\xfe\x97\xd9\x2c\x93\x89\xea\x0a\x6b\xd9\xb2\x88\xd6\x83\xaa\xcf\x0f\x78\x00\x4d\xa2\x2a\x9a\xd2\x24\x01\x39\xe0\x08\x0d\xa0\x3c\x30\x24\x72\xea\xab\xd0\x05\x58\xd0\x19\xe3\xab\x72\xcc\x5a\x88\x29\x0a\x88\xe9\xae\x9d\x98\x24\x50\x53\x91\xc7\xbf\x1b\x8a\xda\x01\xa6\x8b\xe6\x2d\xb8\x8e\x88\xdd\x1d\xc9\x65\x0d\xe5\xfd\x2d\xa2\xa3\x6b\xc3\x0d\x3e\xfc\x57\xf3\xd0\x3f\xe5\x58\x60\xa6\x20\xe6\xd7\x8a\xee\x82\x04\xa9\x47\xe4\x33\xc4\x67\x30\x63\x08\x86\x9f\xc2\xcd\x75\x2e\x7f\x08\xf7\x42\x34\x3e\x40\xf4\x88\x1c\x41\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\x56\x8b\x65\x3c\x42\x83\x44\x72\xfb\x05\x61\x51\x02\xe5\xb8\x83\xf0\x64\x4f\xf9\xd6\xad\x34\x59\x80\x82\x02\x5b\x59\x34\xcf\xed\x83\xe0\x43\x28\x32\x06\x3e\xf1\x04\x4e\x7a\xf1\xfb\xef\x79\x66\xbc\x15\x6d\x71\x12\x2f\x58\xce\xa1\x76\x0d\xbd\xd8\x26\x99\x52\x81\xcb\x36\x08\xde\x80\x8d\x29\x62\x4c\x03\x04\x16\xf4\x35\x56\x28\x21\x58\x2a\xf4\x87\x6f\xd6\x8a\x0d\x71\x13\x2c\xb8\xab\x3d\xbe\x45\xa2\x98\x4b\x35\x08\x85\x3b\xdf\x31\xd4\x8e\xc3\x42\x21\x8c\x18\x79\x0e\x23\x4b\x39\x04\x03\xbb\x82\x70\x24\xc8\x6d\x35\xf1\x64\x26\x33\x1f\xb2\x35\x8c\xca\xd4\xc2\x47\x1c\xdc\xb1\x75\x9f\xda\x61\x35\x50\x96\x55\x9e\x6c\x88\x27\x40\x72\x15\x41\xff\x73\xac\x46\xcc\x72\x56\x17\x36\x12\xa4\x79\x0d\x92\xa4\x1c\x68\x8f\x21\x97\x84\xe9\x09\x43\x7d\xf6\x23\xbf\x40\x57\xa0\x7e\xf9\x68\xe7\x92\x9d\xae\x38\x2c\x26\x1e\xcf\xe3\x1d\x85\x6d\x37\x4a\x3b\x4d\xf6\xe5\x57\x14\x82\x1b\xba\xbf\x30\x85\xf2\x3b\x08\xc3\xa4\x69\xc8\x2b\x0e\x56\xdd\xa6\xbf\x44\x36\xde\x75\x07\xdd\x45\xe5\x66\xfb\x38\x5c\xb3\xcf\xbc\xc1\xdc\xde\xb2\xb9\x81\x6c\xb1\x8d\x02\xee\xc3\xee\x5f\xcb\xe3\x5b\x1a\xfa\x79\x0c\x49\x7f\xab\xb9\x60\x91\x44\xe7\x58\x87\x89\xbd\x8e\x83\x9c\x9e\x20\x85\x00\x82\xff\x1c\xe3\xb3\x6f\xb6\x78\x5e\xb3\xf7\x3d\xfd\x83\x62\xfe\x6e\x2a\x3e\x08\xae\x3e\xf1\x76\x61\x6f\x10\xff\x1d\x47\x10\xe9\x0f\x3d\xb9\x1c\x83\x3a\x20\x93\x83\xb1\xc6\x60\xcc\x6f\x14\x0f\x33\xc1\x23\x22\xe5\x11\x1a\xc2\x45\x63\xff\x89\xf0\xd4\x39\x24\x82\x97\x47\x4c\x6b\x26\x0e\xbf\x25\x68\xbf\x4c\xe2\x4d\x27\xc0\x80\xc1\x6d\xe5\xcb\x49\x57\xd7\x28\x69\xd3\x26\x1c\x16\x1d\xb4\x01\x65\x0d\xd0\x70\x76\x82\x62\x1e\x3d\x12\x71\x2c\x48\x4c\xe5\x09\xf8\xd6\x55\xab\x53\x2f\xd5\xda\xf6\xd6\x92\x46\x5b\xa0\xc0\x8a\xa4\xb8\x53\xd3\xbf\x0d\xb0\x76\xe1\xb5\x07\x88\x4e\x41\x9d\x70\x39\x19\x26\x08\xd9\xc1\xdd\x10\xa6\xc4\x02\xe2\xfa\xbd\x29\xab\xb2\x10\x4e\xd3\xd0\x42\x5b\x5b\x36\x91\xd8\x45\x0c\xce\x86\xd3\xbe\x9f\x13\x49\x5c\xc0\x81\x99\x94\xe2\x36\x96\xd9\xb0\x8b\x0c\xab\xb9\x84\xd4\xd5\xf2\x1a\x58\xa5\x0b\x3e\xd5\x2b\x84\x33\x88\x57\x30\x56\x8a\xe2\x23\x9f\x60\x29\x15\x4d\x92\x11\x63\x84\xc4\x12\x41\x96\xe9\x57\x8d\x19\xf2\xfa\xd3\x03\x84\xe3\x18\xfd\xef\xaf\x3f\x5e\xfc\x7c\x3f\x1c\x9f\x5f\x81\xd1\xfa\xfc\x62\xf8\xcd\x81\xff\xf1\xfa\xe1\xde\xff\x6a\x2c\x2c\x4f\x44\xa0\x14\x3f\x82\x8a\xc7\x24\xb1\xc9\x13\x64\xc4\xc2\x91\x3a\xec\x00\xfd\x44\x12\x17\xe9\x6a\xc5\x14\x0f\xa1\x68\xf7\xb0\xb5\x62\xb1\xb1\xf9\xad\xa1\xfc\xde\xfa\x4f\x96\xd3\xa0\x23\x1e\xdf\x85\x13\x03\x21\x47\x06\xcb\x20\x99\xdc\xea\xbe\x05\xc1\x11\x36\xa3\xac\x2d\x1e\x8f\xb0\xa7\x97\x14\xe2\x7f\x20\x8b\x1f\xb5\x7a\x7d\x83\xa9\xe8\x4c\x7b\xcd\x68\x40\xee\xc4\x68\x3d\x1d\xcb\xea\xa1\x92\x46\x16\x36\xd9\x36\xad\x31\x9f\x4d\x40\x70\x6f\x3e\x5d\x0b\x2f\x45\x3e\x2b\xe1\x50\x2a\x7c\x3e\x87\x83\x72\xf2\x17\x4d\x41\x83\x23\x76\x7f\x7d\x76\x7d\x82\x48\x82\x27\x1c\x42\xf9\x6d\x48\x90\x6b\xc2\x2e\x58\xc4\xd3\xa0\xa1\x12\x42\xc9\x01\xca\x0a\x84\x92\xd0\x88\x76\x64\xda\x58\x81\x54\x92\x71\x51\xc7\xf7\xd8\xad\x0a\x68\x27\x7b\xc3\x45\x97\xeb\x5f\xbf\x06\x4b\xc7\x33\xad\xc8\x55\x38\xaf\xbd\x9b\xa7\x04\x9b\x5a\xfa\xc6\x2d\x64\x6d\xf9\x36\x80\x35\x49\x4a\xf5\x14\xf5\xc1\x91\x47\xd6\x05\x5f\xbc\xc9\x19\xfa\xe1\x2f\x12\x4d\x72\x35\x62\xe5\x36\x38\x43\x83\x9f\xee\xd0\x77\x58\x45\xf3\x6f\x46\xec\x5a\xab\x99\x3f\xfc\xa5\x05\x4a\x69\x6d\x74\x42\xbd\x26\x67\x58\xe1\x0b\x8e\x63\xca\x66\x4d\xd0\x84\x45\xfd\x98\xe1\xfd\xe0\x04\x5d\x5b\x1d\xbe\xc8\x04\xf1\x29\xc1\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x65\xf8\x36\xa3\x99\xc1\x85\x35\x62\xf7\x06\x93\x51\x73\x55\xaa\x50\xc6\x6d\x0d\x23\xad\x95\x19\xb4\x4a\xec\x32\xa4\x48\xb2\x40\x7a\x75\x80\x8c\xfd\x66\x58\x79\x0c\xe4\x99\x3a\xb3\x1f\x31\x50\xd0\x7d\x6e\x4a\xc2\x23\x9c\x40\x4c\xde\x61\x60\xd3\xd3\x6a\x3b\xcf\x21\x3f\xdc\x14\x3d\x5f\x94\x43\x67\x3d\x64\x81\x17\xca\xc2\x8d\x02\x03\x00\xec\xa3\xf5\xc6\xa6\x5c\x73\x1c\x83\xc5\x06\xc6\xb7\xc4\xac\x8e\xfe\xd0\x63\xb3\x99\x65\xd1\x4f\x7d\xda\x16\xcf\x99\xc3\x22\x89\xc0\x7c\xcf\x16\x10\xbe\x0d\x45\x47\x38\x84\x7e\x14\xdc\xd9\x12\x65\x6d\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\x58\xcf\x15\xcb\x33\x1b\xd8\x68\x65\xfd\x4c\x90\x43\x9f\x01\x15\x97\xd6\x54\xdf\xb0\x47\xe8\x36\x54\xaf\x63\x1e\xe5\xa9\x43\x56\x86\xec\xa9\xa2\xac\x7c\x49\xe2\x31\x17\xfb\x2a\x8a\x07\x94\x16\x45\x20\x7d\xbc\xb3\x7e\x6c\x08\x66\x10\x7e\x5a\x97\xd4\xdb\x05\x5f\xe0\x1d\xdb\x45\xad\x99\x86\xc6\x59\xb9\xa5\x52\x6b\x5b\xe7\x25\x5e\x15\xe8\xaf\x5c\x80\xb0\x45\x3e\x67\x1c\x8c\xdc\x26\x3d\x8b\xc7\x5f\x49\x74\x7e\xa3\x25\x20\xad\xf1\xfa\x33\x98\x4b\x65\x82\xcb\x20\x5d\xc7\x7c\x6d\xd2\x05\x0e\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x9d\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x3a\xa7\xda\x62\x17\xec\x01\x6c\x5b\xfe\x4d\x50\x1e\x83\xd8\x21\x3c\xb3\x27\x5c\x86\x27\x13\x95\x8e\x66\x11\x49\x20\x89\x3a\x28\x73\x08\x2f\xec\x5a\x89\xfe\x7f\x2d\x01\x2b\x1b\xeb\xa3\xb2\x59\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xf0\x33\xd6\x9c\xfb\xc0\xc2\x68\x99\x8f\x8c\xe7\x65\x8a\x23\x83\x0a\x2a\xd1\xd7\x9f\x4f\xf4\x6f\x07\x68\x71\x02\x41\xa4\x07\xe8\xd7\x13\x8b\x96\x83\x85\x1a\xeb\x9f\xbe\x71\xb2\xb6\x6d\x02\x06\x4d\x25\xfa\xea\xf8\x09\x0b\x53\x33\xfa\xd8\x8c\xe8\x2b\xcb\x59\x7d\x5d\xbc\x50\x36\x4f\x38\x7f\xb4\x01\xb6\xb5\x0f\x8f\x1d\xf0\x1a\x90\xb7\xf7\x9b\x98\xad\xf7\x89\xf9\x0a\x1d\xc2\x0b\x04\x1d\x65\x13\x74\xf4\x77\xc9\x19\x3a\x5a\xe0\x34\xb1\xbf\xba\xa7\x36\xfe\x17\x4b\x9b\x13\x17\xfb\x20\x9f\x64\x61\x2c\xa5\xdf\x25\x7c\x02\xb3\xba\x74\x33\x35\x11\xb4\x30\xd0\xe2\xf6\x29\x2e\x2c\x3b\x11\x97\x88\x0a\xf8\x41\x29\x57\xe6\x15\xe0\x71\x4d\xb3\xfa\xec\x87\xf4\xdf\xc6\x2f\x0c\x8b\xe2\x92\xf8\x8c\x71\xd8\x47\xaf\xe9\x46\x3f\xa3\xaf\x2d\x0b\xfa\x46\xdf\x31\x36\x5c\xd9\x2c\x43\x53\x07\x0b\xdf\xc1\xcf\x41\x07\x94\x21\x93\x96\xb9\xe4\xcb\x5f\x8f\x8f\x8e\x8e\xfc\xd7\x90\xb5\xfe\xff\x22\xaa\x24\x49\xa6\xa6\x25\x77\x83\x2d\x46\xec\xd2\x15\x5e\x70\xc6\xeb\x02\xd2\x31\x13\x5c\xf1\x88\x27\xe8\xb0\x30\xe8\xc6\x3c\x92\xe8\xdf\xb5\x58\x1b\x2c\x25\xfc\xa8\xf5\xb8\x16\x18\x58\x83\xf4\xfc\x4a\x87\xca\x1a\xc4\xab\xc7\x2a\x44\x71\xf3\x8a\x2d\x96\x61\x15\x0f\xa0\x05\x4d\x39\xc7\x16\xe9\x4d\x08\xfd\x32\xf9\xac\xe0\x51\x0b\x90\x5e\x63\x28\x7b\xf3\x4d\x59\x63\xb7\x05\x9e\x9e\x21\xeb\x96\x05\xb0\x78\x57\x96\x33\x98\x79\x1e\x84\xee\x13\x7d\xb9\xb0\xb0\x14\x80\xcc\xd3\x14\x8b\xc5\x71\x71\xda\xea\xc4\x59\x20\xad\x01\x8f\x49\xdc\x02\x80\x0b\x37\xb1\x47\xcb\x46\x31\x58\xf1\xd2\xdd\x68\xfe\xec\x46\x50\xcb\x30\x40\x2c\x20\x2c\xe2\xb1\xa5\xeb\x22\xfb\xb4\x2c\xb1\xf8\x77\xea\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\xb7\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x86\x7b\xf4\xfc\xfa\xce\x7d\xd3\xfd\xd2\x85\x75\x28\x8b\xec\x38\x09\xf1\xf1\xd8\x0c\x09\xfc\x5c\x5c\xbf\x10\xdb\x61\xac\x33\xb9\xcf\xcd\x35\xff\x3e\xe5\x37\x34\xd1\xb7\x16\xd0\xf8\xd1\x88\x95\x7e\x3e\x40\x24\xa1\x29\x65\x3e\xb6\xce\x30\x77\x3e\x35\xd2\xf3\x23\x55\x7a\xcb\x64\xfc\xa8\x39\x98\xc3\x75\x0a\x54\xaa\x01\x5b\x38\xd2\xf1\x8e\x29\x6b\x81\xc8\xa5\x1e\x57\xa1\xa3\x6b\x61\x56\x37\x71\x68\x05\x52\x1a\x10\x1e\x9c\xdf\x11\xd3\xad\xb9\xb3\x54\x84\x0b\x07\xed\x05\xcd\x1d\x3a\x40\xfc\x80\x03\x40\x1f\xa5\x98\x5f\x2f\xff\x36\x08\x28\x43\x96\xa7\xdb\x26\x9b\xd8\xf0\xe1\xb7\x32\xd3\xdd\x08\xe2\x6e\x2a\x9b\xb8\x44\x58\x9e\xba\x03\xb5\x06\xc5\x0d\xad\xf8\x13\x93\x28\xc1\x06\xa9\x46\x37\x04\x91\x8f\x07\xc6\x41\x9a\x05\x7d\x99\xeb\xc5\x74\x63\x6a\xec\x24\x84\x7d\x6d\xfe\xfd\x0d\xb2\x77\xc3\xb7\x07\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\x3e\x00\x65\xb4\xd6\x1f\x96\xc0\x04\x60\xd4\x4d\x14\xa0\x99\xf0\x56\xb9\x46\x10\x05\x3b\x66\x3c\x26\xdb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x96\x4e\x4b\xa4\x5c\xd3\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x2d\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x6d\x37\x21\x6a\x40\x2b\xea\x74\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x9c\xb3\x29\x3f\xb1\x3a\xd5\x05\x65\x8f\x86\xe2\x5f\x6a\x8f\x0c\x20\x36\x89\x4b\x30\x6e\xae\x4a\x2b\xcc\xe1\x10\x51\x16\x25\x39\x5c\x7c\x52\xe1\xe8\xd1\x80\x7a\xb7\x19\x7d\xf5\x37\xe3\xd5\xc9\x94\x2d\x12\x53\x9e\x24\xb6\xdb\xe2\x02\x2d\xca\x58\x3f\x51\x8c\x30\x7a\xb8\x3d\x6f\xee\xfb\x91\xd6\x9d\x39\xcd\xb7\x67\x99\x40\xe0\x7f\x7e\xa0\x6b\xc5\x5d\x56\x60\xf1\x48\x89\xd4\xbd\x71\xa9\x0d\x74\x55\x13\xe9\x27\xac\xc8\xb6\x99\x50\x06\x03\x6c\x8d\x48\xbd\x1a\xb8\xda\x52\xeb\xf1\x96\xc8\x64\x05\xaa\x18\x84\x06\xb5\x43\xa4\x85\xc1\x5a\xf0\x70\x0d\xec\x06\x78\xbf\xdb\x7c\x2a\xef\xae\x98\xce\xf2\x61\x26\x84\xac\x81\x36\x70\xa7\x5f\xef\x38\xc8\xd2\xab\xcb\xc6\xf8\x8c\x4d\xf5\x85\x3a\xe8\x6f\x6c\x25\xbb\x75\x98\xad\x23\x47\x23\x5e\x4b\x9f\x23\xe2\x47\xe2\xc2\x70\xbc\x2c\xe6\xfa\x9d\x81\x6f\x8b\x97\x8a\x3b\x78\x0b\x6d\x03\xe1\x07\x62\xeb\x96\x61\x13\x5a\xfc\x1a\xa7\x9d\x01\xe5\x8a\x8e\xcf\xec\xc7\x97\x35\x78\x39\xcf\x8a\x2e\x21\x8b\xcf\x03\xa7\xa4\x98\xe9\x93\xed\x7a\x6d\x31\x42\x1a\x89\x70\xa3\x21\x3d\x64\x1b\x0d\xc8\xf4\xd8\xb1\xee\xa1\xed\xca\xb5\xf2\x6c\xec\xf0\x38\x31\x76\x26\x35\x07\x13\x44\x51\x2f\x48\x73\xb4\xb2\x29\xc2\xd4\x16\x4a\xf0\xff\xc7\xde\xb7\x35\xb7\x8d\x24\xe9\xbe\xcf\xaf\xa8\x88\x7d\xb0\x7d\x0e\x45\x4d\xf7\xc4\x6e\xf4\x3a\x62\x1f\x68\x59\x9e\xd6\xb4\x2d\x79\x24\xb9\xbb\xf7\x2c\x37\xe8\x22\x50\x24\x31\x02\xab\x60\x14\x20\x99\xb3\x33\xff\xfd\x44\x65\x66\x5d\x70\x25\x40\x4a\xb6\x67\xb6\x1f\x76\xa7\x2d\x02\x85\xba\x57\x56\xe6\x97\xdf\x97\xaf\xf1\x82\xa4\x45\xa1\x5f\xb4\x8c\xb0\xcf\x79\x38\x62\x84\x0f\xd0\x64\x0d\xe3\x9e\x60\x7e\xf7\xad\x34\x57\xcb\x2a\xb9\xa8\x3b\x95\x9d\xba\x71\xc0\x9c\xe7\x13\x31\x22\x95\x23\x13\x77\x6c\xd6\x4a\x37\x67\xca\x91\xda\xdc\x97\x7c\xeb\x18\x01\xac\x42\x30\xe5\x77\x61\xe5\x96\x02\x78\x71\xbb\xeb\x70\xb4\x08\x77\x58\x05\x12\xc5\xec\xaa\xc1\x5c\xce\xec\x23\x9e\xdd\xcb\x5c\xcc\x72\x34\xc0\x01\x1f\x8a\x68\x68\xb8\x5f\x71\xdf\xeb\xd4\xb8\x8e\x46\x8c\x4d\xde\xac\xeb\x88\x9b\xfb\x9d\x3b\x8d\x48\x31\xc8\x71\x78\xf6\xaa\x35\x91\x7c\xfe\x11\x1f\xbf\xb1\x4d\xac\x29\xf1\xb7\x7d\x78\xff\x5d\xca\x32\x46\x50\x41\xa1\xf8\x3f\x62\x48\xd3\x9d\x9f\xa6\x9e\x24\xae\xf6\xb1\xe6\x6a\x2d\x8e\xda\x8d\x13\xbe\x5d\xe4\xaa\x5b\xce\x6a\x40\x37\xd9\x22\x2a\xfe\x9d\x0d\xca\x5b\xec\xd8\xa7\x92\xa7\x78\xb8\x49\x9a\x8e\xb6\xda\x60\x2a\x7f\xff\x6f\x6c\x06\xa7\x0f\x7b\x07\xfb\x22\x04\xf8\xa1\xb4\x42\xb1\x64\x9b\x89\x5c\x2b\xc9\x3b\x75\xdd\xee\x7e\xd0\x0b\xd2\xa6\x59\xf0\x28\x52\x65\x53\x87\x66\x44\x4b\x5a\x4a\x0b\x1b\xc5\xd9\x5d\xb9\x14\xb9\x14\xa8\x5d\x07\xcf\x31\xfb\xdc\xa0\xea\x2a\x5e\x16\x9b\xef\x17\x51\x9a\x0c\x16\xcc\x81\xec\xa2\x99\x79\xed\x0c\xdf\xea\x6b\x40\xa5\xfc\x4a\xd5\x25\xc3\xdf\x18\xfe\x36\x65\xaf\x78\x74\x27\x64\xcc\xb2\xb4\x5c\x27\x44\x26\x00\x27\x14\x6c\x97\x81\x7b\xb6\xda\x30\xb4\x2d\xb0\x7c\x73\x0c\xcd\xe5\x96\xdf\x21\x89\x2d\x19\x91\x11\x4f\x3b\xa9\xa8\x9c\x59\xbd\x48\x9a\x73\x77\xef\x68\xb9\xf3\xb0\x59\x4c\x7d\xee\xe9\x12\x73\x2b\x1e\x36\x8a\x22\xd2\x15\xab\x7e\xc4\xc2\x75\xb3\xb5\xc1\xf9\x62\xf3\xf2\x9d\x8a\x21\x55\x06\x57\x2f\xb8\x7b\x81\x88\xb9\x94\x8c\x03\x6d\xcc\x33\xcd\xca\xcc\xda\x67\xe0\x87\x4c\x21\x2a\x8c\x43\x60\x7e\xc8\x12\x73\x4b\xdb\x88\xb9\x04\xa4\x2d\x73\xcd\x6b\x88\x5d\x31\xe1\x01\x31\x6d\x5b\xc3\x0a\x49\x13\x8e\x8b\x71\x36\x78\x9c\xf7\xcc\xd3\x81\x28\xe2\x62\x23\xe4\xe2\x00\x3a\xe1\xe1\x83\x56\x41\x0c\x93\x19\xec\xfc\xb9\xae\x0b\x4b\x99\x90\x80\x14\xb9\xf0\x43\xae\xcc\x64\x55\x33\xa3\x13\xcd\x34\x2f\x12\x6d\xf6\xb2\xd6\x1e\xf7\x54\x15\xc7\xf4\x3a\x1f\xc7\x8f\xd1\xc2\x8d\x51\xeb\x0b\x97\x95\x30\x65\x6f\xc0\x0b\x16\xdc\x0c\x94\x63\x9a\xe8\xda\xb0\x8a\x8d\xe8\xa4\x5c\x7c\x0c\x38\x8f\x6d\x41\xf0\x7c\xaf\x73\xd3\x65\xa0\x4c\xd9\xcc\x47\x1f\x90\x6b\x03\xe3\x0a\x7b\x5a\x24\x52\x2d\x0e\x99\x7c\x83\x1c\x75\x10\xa1\x87\x09\xc4\xc0\x92\xd2\xe6\xef\x9e\x41\xde\x55\xf3\x01\x92\x3c\xf9\x9d\x90\x7d\xde\x98\xe1\x35\x44\x77\x59\xaf\x4b\xc0\xf9\xe1\x14\xba\xe2\x0e\xa9\xe0\xf0\x65\xe7\xe9\x4d\x92\xd5\xa9\xe9\x72\x73\x0d\x89\xee\x28\xb5\x04\xbd\xb1\x44\x90\xf2\xb0\x51\x3a\x5c\x67\x76\xfc\xf0\x26\x9b\x97\x8e\x25\x1c\x52\x73\x5c\x07\x23\x26\x47\xaa\x90\x3f\x05\x6a\xed\x16\x29\x7a\x9a\xdd\x78\x33\xbb\x85\x42\x37\x40\x14\xcb\x16\xd5\x5c\xcd\x3f\xfd\xa0\xaf\x60\xc5\x3e\x46\xa6\x7e\xbb\x2c\xeb\xf1\x28\xf9\x03\xe3\x03\x0e\xff\xe5\x35\x5d\x79\xec\xb8\x25\x32\x15\x33\x3f\xbd\xc6\x0b\xb8\x7e\xfd\x66\xd5\x84\x5f\x07\xb5\x6d\xdf\xcc\x7e\x17\x80\x08\xd8\xb2\x4c\x50\x43\xbd\x62\x10\x2a\x6b\x71\x00\xff\x31\x1c\xff\x89\x76\xe7\x49\xfb\x1c\x7b\xaf\xe2\x63\x26\xd6\x78\x3a\xbd\xe6\xbc\x1e\x80\x31\xd6\x6d\x9a\xef\x3d\x3d\x91\xa9\x6e\x74\x68\xbc\x18\xae\x92\x0e\x70\x80\x65\xb9\xba\x01\x75\x91\x2e\xc6\x8a\x80\x78\xdf\xa6\xa0\x99\x71\x36\x9f\x71\x09\x11\x5d\x83\x42\xd1\x65\x7f\xfc\x73\xf6\xa7\x9b\xab\xcb\x93\x2d\xcf\xf5\x86\x43\x46\xb0\x2d\x6b\x62\x05\xdb\xf0\x7a\x6c\xa3\x5e\x89\x9c\xcb\x13\xb6\x56\x13\x8c\xb1\xbe\x64\x9b\xa2\xc8\xf4\xcb\xd3\xd3\x75\x52\x6c\xca\xe5\x34\x52\xdb\x53\xdf\x35\xa7\x3c\x4b\x4e\x97\xa9\x5a\x9e\xe6\x02\x50\xb6\x27\xdf\x4d\xbf\xff\x0e\x46\xe6\xf4\xfe\xbb\x53\x88\xac\x4d\xd7\xea\x5f\xde\x7e\xff\xef\x7f\xf8\x37\x53\x70\xb6\x2b\x36\x4a\xbe\xa4\x00\x6e\x6f\xd9\x27\x68\x95\x9f\xe2\x2b\xb5\xaf\xfc\xfb\xf4\xf7\x61\x35\xe8\xd1\xad\x8a\x45\xaa\x4f\xef\xbf\x5b\xd8\x81\x99\x66\xbb\xdf\x70\xa9\x5f\x0d\x97\x7a\x97\x14\xbf\xe1\x52\xbf\x2a\x2e\x75\xb8\x85\xe3\xf6\x18\x20\xfa\xf4\xfb\xa3\xf9\xbb\xdb\x23\xad\xeb\x7d\xdf\x3e\xd4\x72\x38\x84\x59\x03\x47\x1c\x11\x77\x62\xd4\x15\xbb\xd6\x5c\x77\x75\xe8\x70\xb1\x8d\x25\xdb\xef\x34\xe6\x47\x25\x49\x03\x0a\x24\x89\x80\xc8\x19\x5d\x82\x19\x4f\xda\xd0\xa6\x84\x76\x3a\xa6\xff\x9e\x92\x92\xfc\xb1\xb9\xc8\xa9\xb9\x07\xf2\x90\xa7\xf8\xb6\xc5\x66\xa9\x07\xcb\x3f\xfe\x18\xac\xdd\x03\x75\x5c\x1d\x19\x31\x4e\x1e\xa8\x8b\xad\x57\x47\x35\x36\x5c\x1f\x06\xf2\x9b\x21\xe5\x9f\x8b\xd3\x39\x55\x7c\xfa\xa0\x3d\x38\x2c\x8b\x02\x88\x84\x13\x59\x53\x56\xe6\x99\xd2\x42\x4f\xd9\x9b\x9a\xd2\xa1\x07\x2e\x5e\xbf\x39\x63\xdf\xfd\xf0\xef\x7f\x98\xcb\xe7\x2d\xe7\x36\xec\xf7\x2a\x5f\x13\x8e\x12\x4e\xeb\x2d\xd7\x85\xc8\x4f\xf3\x55\x74\x8a\xbb\xdc\xa9\x79\xff\x84\x3e\x7a\xa2\x56\x27\x8e\x92\xf8\x84\xd8\x59\xa7\xdb\x78\x1c\xc1\x40\x65\xea\xe1\x59\x43\x07\x8d\x86\x43\x09\xa9\x88\xd4\xca\x91\xcf\x63\x9e\x0b\xea\x54\xa8\x55\xcb\x7f\xbc\x4a\xd5\x52\xbf\x70\x04\x68\x5c\xdb\x6f\x78\x46\xa2\xee\xa5\xf9\x38\xec\xe4\x76\x8a\x3c\xa5\xa3\xc2\xee\x25\xe1\x75\x64\x4c\xc7\xb7\x2f\x36\x7f\xdc\x23\x1f\x03\xcf\x55\x29\x2d\xbb\xb3\x92\x42\xad\x00\xc5\x07\x96\xb0\x45\x29\x80\xaf\xd6\x9c\xb4\x9e\x7b\x21\x17\x19\x1e\x30\x10\x55\xe8\xee\xee\x23\x19\xce\xf7\xf5\xf3\x53\x30\x9c\x1f\xdb\xef\xb4\xa1\x7c\xa5\x0e\x3f\x16\x4a\x88\x4b\x69\x0c\xaa\xc2\x3c\xbf\x37\x82\xea\xf6\x01\xaf\x3e\xe4\xc9\x84\x33\x9e\x83\x91\x26\x4e\x0a\x75\x02\xa4\x35\x40\x85\x82\x9a\x03\x5d\xb0\x0a\x88\x3c\x8f\x39\x26\xcd\xf3\x03\xea\x89\x86\xf9\xe7\xa0\xa2\x64\x93\x68\xa4\xf0\x24\x48\x56\x22\xa5\xc8\x29\xa6\xb6\xf7\x44\x1d\x19\x97\x0e\x87\xb2\x1f\x91\x15\xe8\x5a\x07\x7c\xf0\x0e\x8f\xcf\x83\x4d\x60\xca\xc0\xfa\xdc\xa8\xad\x32\xe6\x8c\x2a\x75\xf0\x23\xde\x5e\xe0\x10\xee\xb4\xbd\xb6\x3c\x43\x92\xba\xaf\xd7\x1a\xb3\xb4\xcc\x4f\xe8\xd4\x0b\x1f\x1a\x25\xb1\xb1\xac\x8a\x0a\xec\xa9\xbf\x63\x83\xef\x9f\x37\x80\x7a\x40\x9d\x3a\x90\x8a\x25\x8e\xe7\xe4\xaf\xe6\x5e\x63\xa6\x94\xbb\x29\xb8\x93\x1b\x41\x3a\xc8\xc5\x18\xd2\xbd\x5a\x6b\xbe\x33\x5b\xba\xdc\x8e\x1c\x03\x07\x32\x1e\x32\x00\x5c\x22\xec\xd6\xe2\x6d\x4f\x5a\x01\xb7\x5d\xeb\xd2\x0a\xb3\xc6\x0b\xcb\x17\x3a\xae\xaa\x37\xae\x00\xa2\x06\x6d\xd6\xdb\xd3\x2d\x01\x3a\x1b\xfb\x18\x37\x04\x6b\x5b\x74\x80\x6e\xe4\xf8\xc5\x08\x02\x2b\x63\xfa\x0e\x3e\x82\x93\xb3\xd1\x83\xc1\x5a\xe8\xea\xc0\x71\x2e\xb6\x3e\x8f\x55\x1b\x9c\x1f\x19\xea\x7c\xf6\x8e\xa9\x65\xe3\xf2\xe8\x5e\xbc\xf7\x2a\xd4\xbb\x4c\x4c\xd8\xb2\x84\xdf\x2f\xaf\x6e\x43\xb4\x46\x82\xad\x3d\x89\x36\x22\xba\x03\x87\x09\x1e\x79\x4e\xb4\x91\xd8\xf0\xe6\xd2\x4b\x7f\x15\xca\x42\x0f\x76\x8e\x0d\xdd\x29\x02\xa8\x9c\xc5\x89\xce\x52\xbe\x83\x20\xaf\x44\x9c\xbe\x0f\x10\xbb\x04\x17\xb3\x15\xec\xf3\x17\x0f\x1f\x69\x33\x2a\x33\xff\xde\xd8\xbe\xe4\xf9\x32\x29\x72\x9e\xef\x98\xef\xcc\xe6\x7e\xc0\xb4\xd8\x72\x59\x24\xd1\x5c\x6e\x05\x97\x21\x2a\x8f\x82\xdc\xa6\x93\x63\x25\x88\x2f\x78\xb5\x12\x51\xe1\x09\x07\xc1\x78\x77\x3d\xb5\x6f\x0d\x8e\x6b\xbb\x5b\x79\xbd\x4d\xff\x31\x91\x98\xde\x9e\x6c\x01\xf3\x49\x73\x88\x8e\xc6\x03\x83\x37\x20\x15\x47\x47\xae\xbd\x0c\xc2\xbf\xec\x9c\x62\x4b\x51\x3c\x08\xc8\xa7\xa7\x04\xc0\x36\x1b\xff\x68\xb9\x80\xe3\xd4\x7f\xdb\x75\x93\x03\x24\x18\x2e\xb0\x10\x4c\xe6\x88\x7f\x64\x8d\xc1\xe7\x19\xa5\x24\x82\xb7\xe7\x19\xf9\xad\x9e\xc1\x31\x6d\x6e\x8f\xf9\xbd\x88\xe7\xb2\x4a\xab\x44\x36\xa3\x5f\x70\xcc\x0b\x61\x3d\xce\x6e\x63\xfb\x78\x90\x2f\xff\x1c\xa8\x24\x3c\x89\xa4\x4b\xba\xeb\x11\xe6\xc2\x46\x3f\xe5\xad\xca\x6a\x02\x86\xd6\xfd\x00\x48\x96\xd0\x56\xe8\x86\x74\xf1\x2a\x78\x0a\x37\x29\x1d\x69\x0c\x32\xca\x39\x00\x2c\xf9\x25\x1b\x9e\xce\xb6\x32\xe6\xd2\x66\x53\xaf\xca\x14\x59\x42\xbb\xa4\xc2\x88\x43\xca\x66\x7e\x7c\xbd\x0c\x20\xe7\x57\x63\x81\xb6\x98\x83\x3d\x04\x60\x64\xdc\xeb\xec\xac\x17\x52\xa3\x20\xb5\x95\x15\x02\xc7\xf3\x5a\x14\x70\x9a\xc7\x65\x8a\xc9\xc1\xe0\x31\x07\x3e\x2a\x9e\xa6\x2c\x29\xf4\x5c\x3a\xfa\x2c\x24\x43\x87\x1d\xd6\xba\xd4\xad\x22\xad\x74\xba\xb6\xa4\xdd\x0f\x76\x58\x12\x25\x45\x03\xc2\xbd\x0b\xa5\x38\xb2\x4c\x70\xcc\x65\xc3\x61\x9b\xcb\xf0\xce\x55\x1f\x04\x4a\xfc\x02\x8d\xf2\xc7\xc8\xc1\xea\x41\xe4\x83\xb0\xfb\xe8\x21\x99\xb2\x19\xb6\xce\x5c\xb8\xac\xca\x26\xd6\x96\xf2\xe7\x09\x69\x69\x6e\x35\x85\xb6\x3e\x72\x7f\x6f\x05\x39\xe7\xa8\x4c\x79\x9e\x02\x27\xfd\xaa\x4c\x59\xb2\x0a\x04\x43\x61\x0c\x90\x3c\xc9\x0c\x57\xa4\xe0\xac\xb6\x5e\x72\xcd\xb7\x22\xc8\xdb\x26\xf7\x4e\x1a\x60\x28\x90\x11\x1a\x83\xf3\xa6\xac\x17\x53\xf6\xba\xae\x30\x0f\x6b\x22\x20\x5d\x4c\x34\x6e\x7f\xae\xbe\x41\xca\x21\x2a\xd5\x27\x2b\x73\xa5\x7c\x16\xac\xba\x8e\x11\x04\xf2\xf6\x71\x00\x0d\x4b\xdd\xdf\x8f\x1a\x6e\x4d\x39\x36\xaf\xd6\x60\x1b\x6e\x41\x74\x54\xd0\x9e\x0a\x23\x2b\x19\x12\x56\x1e\x50\x51\x47\x08\xda\x52\xd9\x6d\x8f\x3e\x29\x8c\xe3\xc8\xaa\x06\x6a\x3f\xe3\x2b\x1a\xcc\x9c\x10\x8e\x33\xa4\x67\xd7\xbc\x18\x8b\xcd\x71\xc9\x38\xe3\x2b\xda\x8a\x83\x1a\x52\x4d\xd8\x3d\x46\xd6\xd3\x4b\xf0\x8f\xaf\xa8\x93\x7e\xf6\x7a\x00\x5e\x13\xbf\x92\x43\x69\x99\x0e\x5d\x0b\xf4\x5c\xd2\x61\x37\x3e\xfd\x73\xe6\xe7\x1c\x08\x1e\x31\x53\xfd\x29\xbb\x92\x02\x91\x73\x6a\x15\x1c\x2a\x54\x01\x52\x46\x02\xb2\x79\x19\x48\x50\xa7\x89\xbc\xb3\xd4\x12\x66\xc9\x4d\x18\xf7\xa5\xc3\xae\x87\xd3\x06\x77\x91\x0e\x5b\xb2\x4d\x9a\xe1\x08\xf3\x72\x58\x82\x66\xfb\x9d\x3f\x00\xa0\x8e\xdf\x01\xda\xda\x31\x7c\x58\x7a\x91\xe4\xee\x16\x57\xd1\x18\x0f\x51\xa3\x45\x52\xec\xf6\xf5\xef\xfb\x4d\x15\x85\x38\x42\xc8\xe8\xc3\xe5\xeb\xf3\x37\x17\x97\x55\xf5\xa1\x3f\x7f\x38\xff\x50\xfd\xcb\xf5\x87\xcb\xcb\x8b\xcb\x3f\x86\x7f\xba\xf9\x70\x76\x76\x7e\xfe\xba\xfa\xdc\x9b\xd9\xc5\xdb\xda\x73\xe6\x4f\xd5\x87\x66\xaf\xae\xae\x6b\x7a\x47\x56\xac\x28\xf8\xd3\xed\xc5\xbb\xf3\xd7\x8b\xab\x0f\x15\xc9\xa4\xd7\xff\x79\x39\x7b\x77\x71\xb6\x68\xa9\xcf\xf5\xf9\xd9\xd5\xcf\xe7\xd7\x7b\x14\x8f\x7c\x7b\x5b\xbb\xf4\x31\xe0\x63\x07\xeb\x5f\xcd\xd8\x2a\x4f\x84\x8c\xd3\x1d\x62\xef\xed\xcd\xb6\x06\xa6\x0d\xcf\xde\x64\x2b\x54\x79\x0c\x84\xfe\x76\x83\x0a\xf5\xc0\x82\x81\xa5\x51\xca\x2c\xd7\x77\x9d\x1c\x89\x45\xde\x8c\x0a\xf4\x66\x0a\x15\xf9\xce\xe5\xa2\xf5\x55\xc7\x33\x28\xd1\x47\x58\x26\xf2\xbe\xba\x80\x65\x94\x97\x59\x91\x2c\xbb\x93\x22\x06\x32\x0b\x8d\xbf\x7b\x23\xdf\x5f\x3b\x39\xca\x65\xfb\xc6\x58\xc9\x0d\x38\x06\x78\x0c\x25\x1c\x2a\xeb\xe6\xde\xb6\x60\xcd\xac\x5c\xa6\x49\xc4\x92\xb8\xee\x4f\xc1\x14\x36\x74\x19\xd7\x69\x41\x33\x91\x83\xa9\x6a\x6e\x00\x59\x2e\x4e\x78\x59\x6c\xac\xe2\xbc\xcb\x64\x44\x9a\x4e\x11\xe5\x02\x63\x01\x42\x83\x93\x16\xf5\xbc\x82\x2f\x41\x65\x28\x83\x3b\x06\xb2\x98\x69\x40\xd1\xde\x11\x23\xc0\x37\xb1\xf4\x11\x4e\x52\x7c\xbe\xb7\x6b\xa8\xc6\x89\xae\x8b\x39\xc3\x09\x8f\x3f\x5a\x55\x30\xd3\x6e\xb3\x53\x3b\x55\x2c\x1c\x64\x9b\xbb\xd1\xde\x8c\x7d\x73\x2c\x9c\x28\xd5\x64\x06\x2a\x9d\x7e\x3a\xcb\x05\x1c\x22\x04\x05\xb0\xfe\x0b\x80\xae\x50\xae\x07\xa4\x78\x98\xab\xda\x52\x6c\x78\xba\x42\x8b\xc3\x0c\x8d\x5f\x57\xcd\x29\x7a\xab\xee\x84\xbc\xc6\x01\xfb\x2a\xdb\xa1\xc4\x9b\x8f\xcf\xe9\x77\x1e\x21\xef\xc2\x34\x75\xb4\xb3\xca\xe6\xba\x81\x31\x55\xe0\x3d\x21\xf8\x19\x53\x3a\x3c\x63\xaf\x4d\x93\x5b\xad\x92\xcf\xa6\xc0\xb9\x14\xad\x9c\xa5\x80\x17\xb2\xec\x4a\x6e\x5f\x06\x6c\x14\x52\xd4\xdc\x09\x09\x7a\x62\x28\x37\xbc\x77\xce\x8e\xf3\x9f\x37\xc7\xa2\xc7\xa1\x0f\x3e\xbf\xa4\x22\xb3\x16\x46\x79\x6c\x3f\x15\x98\x63\x33\x65\xaf\x89\x78\xc3\xfc\xe5\xec\xed\xc5\xf9\xe5\xed\xe2\xec\xfa\xfc\xf5\xf9\xe5\xed\xc5\xec\xed\xcd\xd0\xe5\xf7\x18\x79\x51\xb5\xd5\x57\x4f\x0f\x72\x3b\xc4\x29\xad\x3c\x9f\x9e\xeb\x1a\xe5\x97\x1d\x0c\xc9\xfe\xda\x27\x71\xb6\x88\x13\x1d\x99\xe3\x6f\xb7\x10\x32\x06\xb2\xe7\x83\xa6\x6a\x7b\x51\xf5\x56\xb8\x27\x98\x7b\xc2\xee\x20\x78\xda\xdd\xdb\x19\xed\x7e\x07\xd4\x1d\xb8\x21\x73\x61\x16\x7f\x6c\xee\x07\xee\xb4\x99\xee\x57\xf8\x30\xc5\x1d\xd7\xb6\x6a\x11\xf5\x36\x61\x7d\x13\xad\x4b\x6e\xf6\x47\xfb\x18\x40\x0e\x3b\x7a\x85\x18\xf8\x42\xc6\xe9\x24\x50\x4b\x65\x89\x9e\xcb\x2d\x97\x31\x2f\x54\xbe\xeb\x68\xe2\xb0\xcd\x33\x5c\x36\xd5\x2d\x34\x3c\xb2\xa5\x10\xb1\x1d\x05\x7c\x94\xcb\xfa\x54\x42\x5e\xea\xdb\xab\x9f\xce\x2f\x6f\x16\xe7\x97\x3f\x2f\xde\x5f\x9f\xbf\xb9\xf8\xd5\x21\x21\x33\xae\xdb\xd4\x11\xb3\x5c\x98\xdd\xc5\xd2\x7c\xb4\xee\x2f\x28\x59\x68\xcb\x21\x99\xaa\x64\x35\x97\x76\x67\xc9\x7d\xf1\x9b\x5c\x95\xeb\x4d\x7b\x41\xf5\x5a\xbe\x9f\xdd\xfe\x78\x50\x35\x81\x84\x09\x75\xcd\x70\xb5\x35\x11\xa1\xc9\x8a\xf6\x3d\x84\x91\xd6\xaa\x07\x54\x62\xf0\x68\x5b\x94\xa1\x63\x47\x3b\xe8\xf6\xd2\xdc\xb4\x7a\x8d\xff\x96\xc7\xbb\x26\xd0\x6d\xb0\x6f\x56\x8e\x11\x40\x28\xa3\x3c\x66\xa3\xb4\x97\x2d\x7f\xab\x9c\x60\xdf\x9f\xa4\x62\xbd\x16\x31\x4e\xaf\x7a\xc1\xe4\x83\xa3\x2d\x30\xf2\xe7\x7a\x5b\x2f\x92\x80\xdd\x11\x07\xb3\xc3\x7b\x0d\xdf\xc0\xdf\xbb\x57\xda\xf7\x8a\x33\x2b\x92\x1d\x29\xa9\x0b\x2e\x3b\x02\xc9\xf7\x4d\x84\xe6\xa0\xad\xe8\x2a\x67\x2e\xf9\x89\x1c\x26\x36\x64\xe0\xd7\x41\x17\xe0\xe5\x78\x5c\xa8\xab\xc7\xb5\xc8\x52\x1e\x09\x97\xc3\x80\x0c\x78\x70\xaf\x3f\x24\x80\x47\x32\x81\x92\xfc\x2d\x81\x7c\x60\xa0\x29\xde\x32\x05\xc0\x73\x7b\x6d\xf7\xe3\xa7\x77\xad\xf4\x5e\xdc\x88\xf7\x0a\x1c\xcd\xa8\xd3\x44\xd0\x77\xf4\x45\x81\xf8\x59\x27\x2c\x79\xd4\x74\xa8\x7d\xf9\x67\x1a\x78\xbc\x33\x57\x1d\xdd\xdc\x32\xcb\xb9\xe9\xe1\x4c\xc7\xba\xbf\x70\xdf\x68\xcd\xaa\xb7\x00\x5f\x72\x96\xab\xb8\x8c\x2c\xf7\x0e\x14\xeb\xf1\x35\xe4\x4e\xb3\xc7\x7b\xcc\x4e\xcc\x30\xd3\x15\x49\xc4\x27\x80\x9c\x9f\xcb\xae\x60\x96\xdd\x81\x3a\x9c\x6c\xef\xed\x99\x79\xcc\xd8\xb7\xf4\x7e\xf7\xb2\xb0\x9d\x3d\x2c\x83\x95\xd9\xc7\xc1\xd4\xec\x80\x27\xd1\xb8\x2c\x39\x46\xaa\xab\xc6\x40\x17\xd5\x86\xdb\xd3\xc7\xa1\xa8\x86\x81\x50\xaa\xa9\x29\x78\x40\x6f\xb8\x46\xbb\xb9\x88\x36\xd5\x8a\x43\x6b\xaa\xf4\x74\xf5\xea\x3a\x3b\xf4\x38\xff\xc4\xa0\x78\xd5\x04\x6f\xf4\x09\x79\x90\x2b\x52\x63\x4e\x37\x71\xdc\xc4\x0f\x4d\x33\x77\x75\xc2\x5d\x17\x36\xac\x94\x97\x32\xda\xb0\x2c\xe5\x98\xb5\xbd\xe1\x1a\xa7\xb4\x05\x6d\xf0\x65\x92\x26\x05\xd0\xe1\x60\x2c\xb1\xd6\xc3\xe6\x3e\xc5\xf3\x3b\xcb\x40\xcb\x3d\xf7\x51\xdf\xa4\x3f\x12\x1c\xeb\xe5\xf9\xbf\x24\x3c\xd6\x2f\xd9\xe0\x8d\xde\x48\xa4\x9f\x96\x04\x8d\xf5\xc3\x61\x76\x3c\x98\x96\xbe\x2d\xe3\x46\x96\x4a\x7c\x5f\x7f\xbd\xd2\xdf\x2d\x66\xc2\x78\x68\x08\x51\xab\x8f\xd8\xe6\xeb\xc4\xeb\xad\x2b\x6b\x95\x2a\xde\x21\xfe\x6b\xcb\x46\x1e\xf5\xae\xb2\x63\x55\x2e\xbb\x98\x7b\xb1\x56\xfd\xa5\xf7\x45\x1d\xec\xba\x7d\x2c\xaf\x64\xb8\x01\xf2\x42\x14\xc9\x38\xc7\x4a\xd0\x68\x5e\x88\x13\x78\xbd\xbd\x70\x4a\xe5\x1b\xdc\xe6\xc6\x44\xf3\x6a\x1e\xce\x3a\x02\xd0\x5e\x73\x76\xfd\xb9\xe4\x66\x6b\xb8\x5a\xdd\x20\x3f\xcb\x31\x93\xac\x48\x9a\x33\xac\x7d\x25\xd6\xbf\x7a\x5b\x0d\xe9\x84\x73\x60\x70\xf6\x6b\x5b\x6b\x6e\xcc\xdb\xc3\x17\x64\x55\x21\x3f\xcb\x13\x05\x3c\x25\xa4\xcb\xdf\x43\x71\xd8\xfa\xdd\x23\x7a\xf2\x53\x29\x4a\x61\xe6\xfe\xb2\x8c\xd7\x4d\xcf\xea\x08\xeb\xcc\x37\x69\xa3\x1e\xd8\xb6\x8c\x36\xcc\x16\xce\x62\x91\xf2\x5d\xa5\x69\x60\x2f\x15\x2a\x05\xd2\xe0\x03\x19\x4c\xa3\x52\x17\x6a\x0b\xa0\x56\x5f\x6e\x5e\x4a\x98\xf0\x8c\x17\x45\x9e\x2c\xcb\xa2\x15\x00\x57\x61\x34\x3b\x30\x9c\x76\xf3\xfe\xfc\xec\xe2\xcd\x45\x2d\x96\x35\xbb\xf9\x29\xfc\xf7\x2f\x57\xd7\x3f\xbd\x79\x7b\xf5\x4b\xf8\xb7\xb7\xb3\x0f\x97\x67\x3f\x2e\xde\xbf\x9d\x5d\x56\x22\x5e\xb3\xdb\xd9\xcd\xf9\xed\x9e\xa0\x56\xf3\xab\xdd\x03\xc1\x03\xc2\x35\x0b\xb3\xb5\xcc\xd3\xf6\x6e\x4b\x5f\x7d\xc9\x66\x96\x7e\xae\x42\x90\x68\x03\x93\x80\x64\x40\x1d\x66\x8a\x5f\xbe\xe6\x05\x27\x5d\xfb\x29\x9b\x31\x02\x21\x23\xb8\x5c\x1b\x63\x81\xb8\xb9\xcc\xe8\x60\x11\xc6\x62\x88\xfc\xbd\xd1\x4b\xeb\xa9\x15\xb1\xe2\xa5\x22\x24\x61\xb7\x99\x54\x73\x79\x7e\x2f\x64\x51\x02\x43\x34\x4f\x53\x66\xe5\xf4\xe9\x81\x20\x4b\xdc\xd6\x52\x27\xdb\x24\xe5\xb9\x57\x41\xbb\xa2\xb2\xc0\x60\xb7\x75\x75\xa4\x40\xcd\x14\x64\x7b\x79\xf8\x70\xc1\xa0\xde\x67\x6f\x2f\xc0\x04\x8a\x0a\x2b\xf1\x61\x3f\x3e\x97\xc8\xba\x46\x5f\xdc\x72\x48\x78\x28\x14\x79\xf3\xf0\xf3\xf4\x70\xf7\x44\xd4\xc7\x2c\x62\xeb\xf7\x7e\x2a\x50\x95\xab\xa4\xfd\x8f\x73\x59\xe4\xbb\xc1\x76\xcd\x2d\x64\xf8\x6a\xb0\x4d\x09\x3f\x55\x55\x46\x43\x67\x0b\xb3\xa5\x5f\x82\xb1\x63\xc1\x7d\x14\x0b\x70\x2e\x7f\xc4\x52\x74\xd8\xdf\xa9\x39\x84\xbe\xd5\x7e\x08\x49\x58\xa0\x17\x96\xaa\x94\xb1\x26\xa4\xd7\x36\x91\xa7\x5b\xfe\xf9\x85\x6d\x29\x92\x1a\x38\x7d\x02\x20\xac\x12\xa9\xb9\x89\xec\xcc\x26\xd7\xdf\x5d\x73\xd9\xd3\x5f\xfb\xad\x45\xbb\xb3\xc2\xb5\xc7\xdf\x51\x11\xb3\x76\x2f\x76\x6d\xe3\xd7\xd0\x98\x41\x5c\x1c\x2d\x78\x28\x24\xcb\x85\x79\xd0\x01\xe2\x52\xc4\x39\xba\x7f\x03\xf0\xbd\xa2\x83\xd7\xbe\x77\x87\x31\xe6\xa3\x96\x4d\x6b\x74\xfb\x09\x44\x82\xe8\x4b\x66\xcc\x30\xd6\x6d\xdd\xac\x04\xf4\xa7\x20\x9e\x19\xac\xbf\xa8\x25\x5b\x41\xd6\x0b\xe9\x5c\xe7\x02\xdc\xea\x30\x14\x96\xd5\x1a\x68\x8d\x1a\x01\x74\x3b\x05\x52\xa1\xc1\xd9\x2c\xcd\x75\x4b\x7c\x2a\x29\x5e\xf8\xdd\xef\xc7\x9d\xb3\x45\xbe\x63\x56\x41\x21\xcc\xba\xa1\xa4\x33\x3a\x73\xa1\x5e\xa5\x4c\xda\xb8\xce\xae\x4b\x69\x8e\xe2\xc7\x80\x5a\x0c\x8f\xa5\xd5\x3e\x4a\xff\xdc\x9b\x98\x62\xdd\xc0\x39\x3e\xff\x64\xd4\x95\x3f\xd7\x18\x2b\xe9\x73\x00\x83\xa6\xd2\xc3\x03\x6d\xc9\xa3\xbb\x07\x9e\xc7\xe8\x2b\x04\xec\xc3\x94\xfd\xa8\x1e\xc4\xbd\xc8\x27\x2c\x12\x79\xc1\x89\x2e\x4a\x43\xf0\x17\x16\x14\x95\x33\x97\x90\x15\x80\xdc\x5b\x12\x24\xc2\x8b\x64\xbd\x31\xf7\xc9\x20\x74\xaf\x72\xb3\x1d\x15\xc8\x14\x98\x89\x88\x08\x7a\x3a\x3a\x60\x95\xf2\xfb\x26\xff\xd5\x21\xcc\x02\xec\xc2\xa5\x36\xda\xd8\x98\x55\x0a\xe8\x03\x5b\x50\x87\xd1\xa6\x89\x94\x2a\x13\xb6\x56\x29\x97\xeb\xe9\x74\xca\x44\x11\x4d\x5f\x8c\x9a\xe8\x54\x60\x18\x6d\x73\x90\xde\x54\x29\x2d\xd2\x9d\x23\x95\x71\x49\x17\x80\xf2\xfb\x5c\x08\xa9\x13\x74\x79\xb4\x4c\xff\x9b\xba\x27\xfa\xcb\x3a\xee\xdb\x6f\xaa\xa3\x53\xfa\x3a\xca\x01\xe1\xa1\x11\x25\xe1\xf3\xed\x37\xaf\x83\x52\x54\x3b\x58\x6d\x95\x1c\x9b\x77\xf9\xb3\xea\x92\xd1\x3e\x88\xeb\xad\xb5\x24\x22\xc6\x38\x28\x57\xad\xcb\x63\x51\x4b\x1f\x3c\x22\x73\xb0\x27\x09\x70\x64\xfe\x5f\xcb\xba\x6b\x59\x16\xb5\xe1\x1e\xbd\x2c\xf6\x6b\x21\xb4\x36\x68\x64\x7e\xa5\x4f\x84\x1e\x63\x3a\x61\x8a\x56\xba\x83\x1b\x97\xcb\xb6\x04\xcf\x72\x1c\x78\xc6\x2b\x8e\x7f\xc8\xfb\xf1\x91\x03\x47\x58\x14\x04\x0a\x74\xa1\x72\xbe\x16\x6c\x2b\xe2\xa4\xdc\xb6\x6e\x36\xae\xba\xc7\x60\xcd\x54\x5a\x6e\xbb\xa9\xe3\x8e\x35\xa0\x7d\x25\xf1\xbf\xce\xe0\x73\x83\x0d\x68\x2f\x18\x6f\x25\x69\xa8\xbe\xe8\x06\xa7\xbe\x36\x27\x65\x9e\x68\x20\x39\x3c\x24\xcd\xce\x15\x83\x45\x43\xb4\x6e\x97\xa1\xfb\xb5\x32\xba\x27\x36\xba\x43\xaf\x68\x1c\x55\x08\xf1\x75\x1f\x0a\x75\x04\xdb\xe8\x31\x02\xc1\x93\x83\xa2\xaa\x60\x36\x06\xd4\xe3\x04\xb1\x81\x02\x09\x07\x50\x28\xb6\xb2\x89\x5b\x77\x22\xa0\xc2\x8a\x81\x94\xfc\x01\x79\x55\x7e\xfa\x41\x5b\xc4\x00\x81\x3a\xbc\xc5\x52\xf8\x8f\x60\x6c\xe0\xfe\x3b\x8b\xe5\xc1\x16\x62\x11\x40\x58\x15\x73\x59\xb4\x16\xe0\xa1\x6e\x50\x16\xbe\xf2\x33\x2f\xd3\xf6\xc7\xa9\x7c\x78\x14\x05\x8e\x66\xbf\xdc\x30\xec\x6a\xa2\xaf\xce\xfb\x2a\x1a\x14\xb2\x1f\x4d\x04\xdd\xb5\x38\xc0\x12\xac\x8c\x03\x76\xba\xe5\x2f\x37\xdd\x2e\x8a\x68\xe3\x2d\x8f\xaa\x52\x31\xa9\xd7\x51\x3b\xb7\x9e\x90\x1b\x81\x9a\x21\xe2\x2d\x59\x4b\x15\x6a\x49\x28\x29\x20\x48\x63\x36\x20\x15\x16\xcb\x92\x62\x3f\xac\x68\x24\x4b\xd5\xbe\xa9\x56\x28\x84\x8b\x50\x3b\x2b\xb1\x36\xb8\x52\x24\xc8\x6d\x63\x31\x99\x78\x27\x22\x31\xb4\x3a\x51\x73\x95\x2d\x60\x2e\xab\x9f\x6a\x74\x92\xc5\xfd\x24\xb9\x40\x7e\x55\x6d\xac\xb7\x22\xb9\x37\x0b\xb5\x39\xad\xdd\x04\x85\x1d\xa0\x39\xf7\xe6\x12\xab\x1d\x90\xb4\xde\x89\x9d\x0e\x95\xd7\x68\x46\xb1\xae\x09\x99\x98\xf6\xd0\x78\xed\x1f\x0a\xe8\xb8\x45\xa0\x24\x3f\xec\x2c\xc3\x8f\xbe\x33\x2f\xf7\x00\x0a\x1b\x85\x9b\x39\xe8\x33\xe3\xbc\x4f\x91\xb6\x09\xdf\xcf\x34\x86\x1e\x33\x04\x88\xb0\x10\xf3\x15\xa6\x39\xc0\xc5\xd7\xdc\x6f\xe7\x92\x78\x9c\x83\x43\xce\x6c\x38\xcd\x61\xa3\x74\x5d\x64\x8f\xdd\x55\xa8\x46\x80\x6a\xcf\xd2\x0e\x56\x3f\x69\xe3\x8e\x56\xb8\x73\x2e\xe1\xd3\x98\xd0\x68\x7d\x78\xad\x1f\x3c\x10\x88\x46\x83\xdb\x09\x3e\x0b\xb2\x86\xf0\x49\x62\x9b\x43\x09\x3f\xbc\xfd\x44\xc2\x74\xdf\x4c\xb6\xe2\xbe\x2c\xea\xeb\xe6\xfc\xec\xfa\xfc\xf6\x8b\x81\xd3\x2c\x32\x6c\x34\x3a\xcd\xd6\xf3\xf5\xf9\x9b\xd9\x87\xb7\xb7\x8b\xd7\x17\xd7\x4f\x01\x4f\xa3\x9f\x0e\xc0\xa7\xdd\x10\x3d\xfc\x99\x92\x85\xf8\x7c\xd4\x99\x9c\x97\x72\xc1\x47\xe4\x49\x38\x81\x88\x3e\x73\x07\x0b\x6d\xd2\xdb\x3b\xee\x79\xe2\x3a\xc4\x13\xcd\xb1\xd9\xaf\xbc\xd3\x70\x95\xa4\x29\xa4\x8d\x3a\xf7\x3a\xa5\x24\x99\x4e\x85\xfd\xc7\xd2\x3b\xd2\x9e\x3a\x97\xcb\x8a\xfa\x00\xb8\xfc\x36\xe6\x12\x8c\x09\xa3\x99\xe9\x80\x3c\x81\x74\xbc\x3e\x06\xfc\x75\x22\x85\xaf\x06\xca\xed\x96\x92\x75\xd2\x16\xd3\x20\x3e\x65\x56\x30\x19\x5e\x43\x6d\x4d\x3b\xe3\x2a\xf3\xd3\x9a\x9f\xf6\x47\xd7\x42\x5c\xc4\x89\x44\xc3\xb4\xb2\x9a\x6f\xda\xa7\xee\xa9\x5f\x02\xd0\xef\x66\x24\x39\xc4\x20\x40\xd1\xd6\x0f\x24\x0d\x04\x2a\xe3\xf8\xe0\xc4\x5d\x82\x28\x1a\xb5\xaa\xf5\xb3\xd9\x0a\x4d\x5f\x27\x10\xa9\xe0\xc4\x84\x11\xa5\xa5\x2e\x44\x4e\x6e\x93\xd9\x2f\x37\x73\xf9\xca\x1c\x5f\x2f\xe8\x14\x22\xf5\x14\xfc\x04\x62\x38\x54\xe5\xfb\xd6\x42\x09\x77\xb0\xe7\xe8\xa3\xde\x0a\x2e\x35\xaa\x8d\xa7\xa9\xc8\xfd\xcc\xc0\xfa\x08\x11\x93\xe2\x1c\x50\x7f\xfa\xf7\x49\x70\x5a\xc1\xaa\x35\xf5\xa5\x5f\x49\x72\xb9\x3e\x9f\xba\xb2\x92\x01\x9e\xfa\x94\x33\xa7\x25\x4b\x62\xe8\x2c\x22\x64\x6f\xeb\x24\xaa\xe6\x2c\x0c\x9a\x4b\xb7\x58\xdc\x6f\x53\xe9\x11\xa7\xd2\x80\x73\x3d\x3c\x25\xd8\x46\x99\x0d\xd4\x49\x8b\xf8\x30\xb3\x63\x45\x48\x01\xff\x64\xba\xb1\xf5\xd4\xa9\xc9\xeb\x1d\x71\xea\xa0\x9e\xde\x71\x70\xce\x59\x0b\xfd\x8a\xd7\x71\xb2\xb1\x9d\x5e\xe5\xbe\xa7\xa1\x39\x9b\x59\xbc\x9d\x54\x85\x25\x2c\x70\x10\x37\xc2\xeb\x99\x07\x1c\x53\x46\x6f\x1d\x89\x7d\xc2\x5a\x29\x8b\x23\xd5\xaf\x6e\x43\x5c\x60\x25\x85\x13\x6b\x11\x26\x7f\xdb\x84\x6f\x47\x18\x31\x66\xf2\x1d\xae\xaf\x58\x9d\x73\x8e\x7c\xf0\x20\xb0\xc3\xe5\xd5\xe5\x79\x08\x55\xb8\xb8\xbc\x3d\xff\xe3\xf9\x75\x25\xf9\xf7\xed\xd5\xac\x92\xc0\x7b\x73\x7b\x5d\xcb\xdb\x7d\x75\x75\xf5\xf6\xbc\x81\x79\x38\xbf\xbd\x78\x57\x29\xfc\xf5\x87\xeb\xd9\xed\xc5\x55\xe5\xb9\x57\x17\x97\xb3\xeb\xff\x0c\xff\x72\x7e\x7d\x7d\x75\x5d\xfb\xde\x87\xb3\x7e\xf4\x44\xa5\x19\xed\xee\x1f\x1f\x9c\x0d\x78\x18\x5b\x97\x71\x55\x7f\xf2\x88\x55\x3c\x10\x84\xb5\x6f\x3a\xda\xdc\xde\x38\xa4\x67\xc7\x85\x61\xaa\x3a\x6a\xd6\x3d\xbe\x60\x66\xa5\xeb\x32\x7e\xdc\xb6\x67\x4e\xb5\xc5\x63\x80\xe2\x7a\x0d\x40\xf7\x95\x9a\xe3\x56\x17\x90\x00\x85\x5d\x9b\x41\x04\x6b\xcd\x3b\xe5\x62\x64\xfc\xe4\x35\xb5\xdf\xd8\x57\x4f\xcf\xfb\xb3\x87\x3e\xe5\xb1\xa8\x13\xfa\x2a\x1d\x7c\xcc\x66\x26\x27\xb1\x35\x14\xec\x8f\xc1\xc1\x0d\xcd\x30\x33\x27\x98\x8e\x5d\xca\x86\xed\x39\x0e\xfd\x54\x5d\x63\xeb\x4f\x1f\x69\xd6\xbd\xc6\xeb\x30\xa2\xde\xc0\xaf\x33\xa6\xde\xb7\x5c\xdf\x8d\xad\x37\x7d\xa4\x59\x6f\x30\xfb\x0e\xaa\x37\x38\xbc\x8b\x76\xce\x8d\x11\x9b\x58\x58\x4c\xb5\x7a\x2e\x21\xd8\x3d\x12\x08\x88\x0e\xab\xa3\x59\x00\x4f\x7b\xbd\xcc\xf8\xf0\x40\x06\xd4\xc6\x2d\x57\x5e\xa3\xa0\xbe\x81\x5f\xa1\x85\xcb\x5c\xf0\xbb\x58\x3d\xd0\x78\xd4\x91\xa1\x6c\xd0\x6e\x5e\xed\x20\xb3\x87\xdb\x23\x02\x64\xc7\xcd\x27\x11\xa5\xe6\x8b\x07\x98\x5c\x42\x24\xca\x68\x83\x05\xca\x97\x75\xd6\x12\xe0\x89\x91\x7e\x74\xe6\x12\xad\xf9\x36\xf5\x4c\x33\xaa\xa6\x46\xc4\x33\x00\x4d\x75\x36\x34\x06\xd7\x75\x30\xb0\x94\xcb\x50\xe6\x00\xa6\x5b\xe6\x70\x67\x82\x0e\x49\x24\x38\x93\x73\x73\xe1\xc9\x45\x94\x68\x11\x28\x08\xb5\x9e\xd8\x9f\x8e\xd3\x1b\x28\x78\xd1\xea\x76\x1d\xec\x0f\xe7\x51\x51\xf2\x94\x7d\x2a\x45\xbe\x23\xba\x36\xf4\x55\xe2\x5f\x22\x2e\x31\x69\xa2\x10\xdb\x0c\x52\x80\x43\xb4\xff\x5c\xfe\x02\x40\x09\x1c\x82\x67\x9a\xfd\x11\x20\x0f\xf6\x61\x3a\x84\xb7\xbc\x80\xb3\xf8\xcf\xf8\x0d\xf7\xdb\x74\x2e\x2b\x8a\x1c\xc1\x5b\x15\x71\x8e\xe9\x5c\x5a\x4a\xfc\x58\x45\x7a\x0a\x37\xbe\xa9\xca\xd7\xa7\x24\x26\x6b\x26\xbb\xba\x5b\x2a\x75\x77\x2a\xe4\x29\xf8\xa4\x8a\x53\x5e\x16\xea\x14\xe0\x52\x38\xfe\xfa\xd4\x6a\x4e\x5a\xd1\x4e\x7d\xba\x49\xee\x05\xfc\xbf\xe9\xa6\xd8\xa6\xff\xa2\xb3\xcd\xe7\x93\x75\x9a\x9f\x98\x77\x4f\xc2\x77\x4f\xec\xbb\x27\xf6\xdd\x13\xf3\x1a\xfe\xbf\x6c\x87\xe1\x1d\xf1\x99\x9b\xb3\x6c\x32\x97\x89\xd4\x22\x2f\xc0\xfa\x79\xc8\x93\xc2\x4b\x9f\xec\xd8\xb3\xff\xf9\x1f\x36\xcd\xf9\x03\xa6\xcf\xbd\xe6\x05\x7f\x8f\xfe\xc5\xbf\xff\xfd\x19\x04\x54\x31\xbf\x25\xe3\xf9\xa7\x52\x14\x73\xa9\x85\x59\x84\xec\xff\xcc\x25\x44\x60\xb7\xbb\x45\x81\x7e\x57\xf4\x41\xc6\x9a\xfd\x07\x96\x79\x81\xd4\x85\xb1\x36\x25\x75\x20\xeb\x13\x9e\xb6\xc8\x14\x77\xb8\xe8\x3f\xa5\xaf\xe9\xf9\x11\xcb\xfa\x53\x5a\x5d\xd5\x56\x7c\x43\x7f\x4a\xe1\x00\x4d\x15\xb7\x60\x2d\xe6\x26\x2f\xdc\x93\xa9\x72\x6d\x6b\xa4\x01\x0d\x78\xd2\x30\x7d\xfb\x5a\xb9\x41\xfa\x64\xeb\xb9\x6f\x6c\x23\x10\x2b\xf0\x71\x08\x88\x9e\x27\x66\x85\xdc\xa0\x27\x14\x2c\x37\x6c\x39\xd8\xa4\x14\x3a\x77\xe5\xa1\xe3\x42\xff\xe1\xe5\xe9\xe9\x84\xad\x35\xfc\xcf\xf2\x13\xfc\x0f\xa0\x87\x1e\x8b\x01\xb4\xd1\x99\x0e\x08\xd7\x1c\xe5\xfd\x23\xf1\x18\x28\xba\x2f\x41\x3a\x5d\x9b\xa6\xaf\x4a\x19\xa7\xc2\x67\x03\x56\x42\x22\xa9\xb2\x32\xe9\xe8\x18\xab\xcb\x7b\xc0\x18\x2f\x45\xc4\xcd\xc6\xd7\xf8\x36\x82\x4b\xd5\xaa\x10\x12\xbd\x61\xb9\x57\xff\xe2\xe8\xb9\x02\xb3\x18\xa0\x90\xbc\x20\xc8\xb9\x80\x3f\xc2\x47\x80\xc5\x79\x52\xff\x89\xed\x54\x49\x84\xc4\x40\xb3\x19\x8b\x28\x05\xd6\x77\x4b\x35\xc2\x72\x51\x94\xb9\x64\x9c\x65\x5c\xc6\x5c\xc3\x0c\x5c\xe5\x10\xed\xcc\x19\x6f\x56\x74\x82\x70\x5c\x55\x16\x40\xa0\x83\xc8\x82\xb0\x27\x90\x31\x3a\xa8\xf3\x24\xa8\x04\x9e\x09\x40\x5c\xdb\x78\x71\x3a\x97\x56\x9f\x8a\xb0\x70\xe8\x29\x8b\x54\xb6\x23\x7a\x94\x7a\xa7\x27\xd6\x73\x46\xdd\x3d\xf1\x78\x93\xfa\xb3\x13\x96\x54\x43\x6b\x40\x4e\x5d\x04\x0a\xbb\x56\xa3\xf8\xb9\x90\x91\x8a\x45\xae\x5f\x98\x65\x98\xb8\x7b\x07\xda\x0f\x89\xf6\x83\x01\xbb\x94\x39\xdc\xc8\x5b\x68\x8a\x77\x2a\x2e\xa6\x77\x2a\x74\xc6\x6d\x76\xce\xfe\xa5\xf2\xad\xa3\x60\xda\xea\x4b\xff\xf9\x45\x11\x31\x21\xae\xd3\xde\x39\x0f\x77\x41\xe0\x92\x0d\x77\x5c\x2c\x14\x6d\x1c\x32\x4e\xac\x9c\x69\x52\x80\x62\x5a\x2e\x74\x31\x97\x74\x02\x4f\xd8\x4a\x70\x63\xe7\x4d\x58\xa4\xef\x71\x33\xc6\xe3\xbe\x78\x50\x1e\x83\x63\xb5\x30\x00\x0c\x5b\x29\xdc\x3b\x89\xf1\x31\x40\x14\xf0\xa8\x40\x80\x41\xa7\xf2\xb5\x35\x55\xa0\xb3\x5a\x37\xc4\x03\xfa\xc1\x4a\x2b\xd4\x65\x8c\x42\x65\x0f\xe8\x89\x1d\x06\x8a\x59\xbd\x1e\xf8\x83\xd9\x78\xb0\x75\x08\x03\x09\x36\x47\xb0\xb8\x09\x4b\x8b\xeb\xcc\xc7\x70\x43\x7e\x6b\xf0\xcd\x74\x2d\xaa\x9e\x8e\x80\x0a\x1c\xe6\xb7\x30\xaf\xee\x75\x58\x69\x91\x5b\xdd\x07\x6c\x2b\xb2\xd1\x6d\x92\x3c\x3e\xc9\x78\x5e\xec\xec\xf4\x4d\x93\x25\xd0\xc5\xa7\xc9\x9d\x60\xb3\x3c\x57\x0f\x8f\xdd\x0b\x9d\x5b\x4b\xd7\x0d\xfb\x18\x24\xfb\xd8\x5b\x7e\x2b\x17\x65\xdd\xdd\x71\x18\xef\x65\x97\xe3\xa3\xf5\x3b\xb9\x28\xf2\xdd\xc2\x4c\xc4\x6d\xd6\xb9\x53\x0c\x4a\x9a\x18\x6e\xe4\x8e\xa3\xd4\xac\xb9\x30\x3a\x29\x35\x2b\xa3\xfa\xed\x50\x6a\xb6\xb0\x65\x36\x29\x35\x2f\x2e\x2f\x6e\x2f\x66\x6f\x2f\xfe\x5f\xad\xc4\x5f\x66\x17\xb7\x17\x97\x7f\x5c\xbc\xb9\xba\x5e\x5c\x9f\xdf\x5c\x7d\xb8\x3e\x3b\xef\xe7\xc8\x69\xd6\xde\x9b\xe0\x27\x2c\xfc\xce\x4b\x76\x1b\x00\x35\x30\xd9\x80\xec\x6f\xd2\x4b\x84\x59\x65\x16\x73\x22\xd7\x13\x58\xa8\x2f\xd9\x79\x9e\x5f\x6c\xf9\x5a\xbc\x2f\xd3\x14\xe0\x54\x98\xd9\x73\x96\x0b\xb8\x78\x4e\xd8\x7b\x15\x5f\x04\xef\x41\x3a\x62\x6b\x33\xe0\xfb\x3c\x8e\x73\xa1\x35\x7e\x7e\x42\xdf\x0f\xc0\x43\x2e\xd5\x91\xc0\x73\xfc\x9e\x27\xa9\xb9\xbf\xbd\x64\xaf\x78\x74\xa7\x56\x2b\x4c\x9f\x99\xb8\xc4\x29\xf6\xa9\x54\x05\x67\xe2\x73\x04\xbc\x50\xed\xf3\xe4\xad\x5a\x7f\x05\xa8\xf2\x80\xf0\x54\xc7\x25\x05\x74\xb1\x16\xed\xc7\x79\xfb\x46\x40\xad\x7c\x87\xaf\xbe\xc1\x37\xdb\x1d\x94\x45\xfa\x08\x99\xe2\x6f\xd5\xba\x5d\xa5\x04\xac\x6b\x92\x56\xa1\x40\x42\x44\xbc\x13\x6a\xcd\x74\x22\xef\xe6\xf2\x97\x8d\x90\x4c\x95\x39\xfe\x09\xae\xf9\xc6\xcc\x4c\x4b\xbd\x11\x20\x5b\x3a\x61\x0f\x82\x6d\xf9\x0e\xcd\x66\xb8\x13\x38\x69\x05\x98\x32\x70\x8a\x98\xb7\xd3\x44\x9a\xdd\x22\x4b\x6c\x5e\x42\x7d\xe8\x1f\xe3\xc6\x65\x59\xd1\xf8\xf1\xa4\xa5\x7d\xe7\x69\x05\x9f\x07\xae\x32\x8f\x9b\xb4\x00\x21\xda\xb9\x41\xb9\x51\xa9\xbb\x32\xf3\xfc\x89\xcf\x6c\x70\x12\xba\xfb\x5e\x25\x31\x8b\xcb\x2c\x4d\x22\xb7\xef\x3e\xa8\xbc\x93\x24\x16\x13\x68\x86\x9f\x3a\xf5\xb4\xb0\xbe\x86\xb5\x64\xe7\x04\x48\xba\x1e\xba\xd8\x27\x26\xcc\x65\x89\x8c\xd2\x12\x34\xa9\x4a\x2d\xf2\x93\x22\x4f\xd6\x6b\x30\xc0\x6d\xae\xdf\xb7\xcf\xa8\xeb\x19\xfb\x8e\x4f\x6b\x0b\x93\xce\x53\xb5\x4e\x22\x9e\x86\xe0\x66\x8f\x8a\x70\x94\x9d\x76\xd9\x93\x62\x27\xe4\x41\xd8\x0a\x75\x92\x01\x65\xb9\x00\xd6\xd8\x05\x6c\xe5\x0b\xda\xee\x8e\xa9\xf7\x8a\x99\x0b\x3a\xd6\x2b\x24\xd4\xb4\xe1\x05\x7b\xc2\xf9\x6f\x5b\xd9\x26\x30\x31\x51\xd2\x99\xa9\x07\x29\x72\xb0\x60\x01\xf6\x61\x5a\x2a\x15\xd8\x26\x4e\xca\xc9\xe1\x93\xad\x94\xd9\xca\x01\xb1\x31\x73\x76\x9d\xdc\x0b\xf9\xe5\x19\x90\x83\x0f\x44\x3c\xda\x88\x85\xb5\xcb\x1f\x7b\xcb\x72\x07\xc0\xc8\xcd\xca\x6a\x2a\x84\x5b\xa9\x0b\x6f\xc2\xd5\x09\x6b\xdc\xdc\xbb\x30\x90\xd8\x93\x91\x65\x2a\xb1\x88\x45\x74\xf7\xc5\xb7\x66\x0f\xb2\xb2\x15\x61\x9c\xbd\x16\xd1\x1d\xfb\x70\x7d\x81\xd9\xc0\x49\xc1\xcc\x56\xa0\x37\x5e\x23\xa6\xf3\xee\x56\xf0\xf5\x13\x90\x1b\x0d\x15\xb9\xf1\xbc\xe6\x4e\xda\xcb\x54\x88\x00\x51\x90\x2f\x69\x36\x49\xca\xa5\x01\x20\x18\x2f\xac\xf4\x09\x38\xe2\x99\xde\x82\xd2\x49\x59\x04\xf2\x60\x29\x5f\x8a\xb4\x83\xe5\x2f\x53\xf1\xc2\xc6\x49\x8e\x05\xf3\x34\xca\xb2\x7e\x0c\x8a\x3a\xda\x3c\x06\x6e\x2c\xd6\x5b\x7a\x90\xdd\xfd\xa0\x03\x7a\x0d\x15\x92\x0d\xc3\xbd\x9e\x6b\x51\xd3\xcb\x4f\x56\xa4\xc7\x82\x09\xfd\xa0\x3c\x6e\xf6\x4b\x53\xd2\x7b\x15\x13\x4c\xcf\xf1\x79\x19\x2b\x48\x90\xf7\xc4\xe3\x2a\xc2\x2a\x38\x75\x76\x0d\xbe\x01\x5d\x08\x1e\x33\xb5\x22\x6f\x62\x96\xa5\x09\xd0\xc8\xc6\xc8\x58\x0d\xec\x19\xba\x8a\x8e\x0f\x4b\xb3\x95\x0d\x48\x3e\xde\x5b\x20\x5e\x6f\xbc\xd1\x07\xb9\x4c\xbb\xaa\x4e\xee\xba\x4d\x75\xac\xf2\x98\xcb\x47\x3a\xf4\x0a\xdd\xef\x4d\x5b\xa7\x6a\x09\x1d\xd5\x0d\x8a\xeb\xd9\xa0\xcd\xee\x94\x27\xf1\x98\xe3\xdd\xf6\xc9\x95\x7b\xb5\xaf\x82\x57\xd6\xd3\xe1\xbe\x64\x87\x99\x11\xc9\x77\x18\xc1\xaf\xa5\xb1\xef\xbb\x6b\x43\x80\x50\xbb\x08\xa1\xb3\xc6\x0b\xa2\xb8\x87\x55\xe1\xb6\xe3\x8e\x6b\x75\xb5\x2d\x47\x0d\x74\x93\x18\x65\x4f\x5f\x7a\x2e\x95\xfe\x41\x3e\x82\xdd\x02\x57\xae\xa3\xb8\x18\xc3\x53\x6c\x87\x0e\x31\xbe\xa6\x3f\xfd\x20\x56\x92\x2f\x06\x8d\x68\xbd\xdf\xed\x2a\x3e\xa6\xcb\x9f\x62\x45\x95\x85\xf2\x2e\x7f\x68\xcf\x05\xf0\x67\x86\x69\x5d\xb0\x6d\x5c\xc4\x1d\x70\x01\x6b\x83\xd9\xa5\x39\x02\x84\x3a\x0a\x06\x9b\xe5\xc2\x06\x8f\x76\xa2\x70\xc9\xfd\xa9\x55\xa2\x82\xd8\x88\x6b\x75\x95\xdd\xc4\x12\x18\x38\x46\x2a\x88\x64\x90\xbd\x17\xa9\x6d\xa6\x24\x60\x53\x30\x55\x69\x2e\xa9\x70\xab\x27\xec\xc2\x2b\x95\x7c\xb7\x09\x79\xb5\x30\x7b\x42\x68\x95\xde\x53\x1c\x2d\xa0\xbd\x07\x25\x32\x53\xc1\x33\x73\x41\x30\xd7\x61\x08\xf0\xd2\xf6\x0e\x70\xf0\x9a\xa8\x6e\x2e\xd6\x89\x2e\x44\x98\x22\x18\xbe\xff\x68\xfa\x87\x95\x1b\x74\x5f\xd7\x77\xea\x1f\xee\x33\x85\xcd\xaa\x1d\x51\x9f\x5d\x26\xe2\x0b\xf7\x5e\xff\x64\xa8\x65\x71\xfb\x4d\xa2\x72\x0a\xe0\x1c\xc0\x2b\x80\x46\xbe\x27\xed\x08\xeb\xdd\x20\x11\x13\x0f\xf7\xa8\x36\x33\x44\xeb\x92\xe7\x5c\x16\x42\xe8\xb9\xa4\xe8\x23\xf2\x96\x85\xd4\x1c\x35\x34\x9c\x33\x70\x23\xa5\x0b\xa4\x01\x82\x57\x56\x3c\x49\xcb\xbc\xf3\xce\x89\xb3\xf2\x20\xee\x81\xbe\x5e\x3a\x83\x62\x59\xdb\xa0\xb9\x2c\xd6\x60\x15\x39\xea\x8c\x7a\xec\xb0\x9a\xe4\xd9\xd1\x04\xbb\xe5\x0e\x1f\x6f\xe7\x70\xec\x48\x6c\xfd\x41\x2f\x32\x35\x62\xc7\xfb\xe9\x07\xfd\x5e\x75\xa4\x04\xeb\x4f\x0d\xc7\x58\x4f\x0c\xfd\x53\x17\x85\x3f\xd7\x77\x10\x7e\xda\x77\x1f\xdf\xef\x64\xff\xc3\xf7\xfb\x83\x54\x9d\x7b\x17\xcc\xda\x0d\x97\x71\x6a\xee\xa9\xbc\xa8\x9d\x40\x1e\xec\x6b\xec\xe2\xc2\x6e\x8e\xdd\x99\x5d\x90\x28\xb1\x88\x1a\x59\x76\xfb\xfa\xa9\x96\x9e\xd7\x0b\xa8\xab\x7d\xa5\x9a\x34\xd7\x96\xac\xe1\x4f\x76\x12\xce\x74\x0b\xb6\x7b\x0a\xae\x92\xf5\x37\x70\xc9\x7a\xd7\xdc\x29\x23\x5a\x8a\x74\x7e\x39\xe4\xf7\x91\x8b\x11\x92\x6c\xcc\x66\x16\xf2\xf4\xce\x25\xe9\xea\x62\xe4\x15\x42\x6e\xc8\x45\xa5\xd9\x77\x2e\xf3\xf2\xbb\x7f\xb5\x4c\x44\x3b\xb6\x82\xbe\x06\xba\x2f\x15\x45\x65\x0e\x61\x51\x72\xdd\x30\x81\x67\x93\x1e\x45\xb2\x01\x27\xb2\x03\xb3\xa0\xf9\xd4\x66\x3d\x38\x5f\x5d\xa5\x51\xb7\xe0\xa2\x41\x85\x60\x77\x16\x92\xf0\x4b\xae\x0b\xa6\x0b\x91\xb5\xee\x4a\x15\xa3\xab\x2a\x82\x7d\x84\xd9\xe5\x25\xb8\x07\xda\xba\x23\xf6\xe8\x59\x70\x9d\xfe\xd3\xcd\xd5\x25\xcb\xf8\x0e\x70\x61\x85\x22\xf5\x72\x20\x63\xac\xaf\xdf\x7d\x23\x50\x6d\x7c\x75\xb1\x61\x9f\x5a\x80\x69\xbb\xef\x96\xbe\xd8\xb4\xa1\x60\xce\xd0\x94\x34\x4b\x39\x57\xe9\x49\x96\x72\x19\x40\x7f\xf5\x94\xd5\x3e\x1f\xc6\x7a\x5d\xd4\x87\xd0\x34\x50\x01\x70\xa7\xd0\x5c\xc8\xcb\x56\x70\x68\x55\xd7\xfb\xa8\xf0\x6e\xe7\x1e\xd1\x0b\x7a\x7b\x87\x74\xfa\x3c\x32\xcb\x04\x99\x05\x6c\xc8\xda\xa1\x1e\xb8\x06\x40\xe2\x88\x81\xea\x17\x21\x9f\x4b\xab\x31\xab\x1e\x34\x8b\x91\x7b\xa1\x4c\xf4\x06\xfc\x93\x18\x10\x00\x70\x10\xed\x2f\x88\x5c\xc8\xb9\xd4\x66\x40\xc1\xa7\x29\xee\x05\x39\x36\x2a\xc1\xb8\x8b\xd7\x6f\x5d\x7c\x1f\x07\x89\x64\xc0\x3a\xba\x3e\x30\xcc\x8e\xb9\xc0\xb4\xaa\x62\xef\xe7\xb8\x7f\xc7\xb3\xbe\xac\xb1\xa3\x4b\xdc\x37\x4a\x8e\x79\xa6\x6e\x75\x82\x3e\x28\x28\x03\x55\x52\xc7\xc2\xde\xfb\x20\x8f\xdc\x7e\x5a\x49\xaf\xf7\xf3\xeb\x0f\xbe\x84\x0d\xcb\x04\x1c\xb1\xf7\x04\x24\x70\x0e\x5b\xe3\xec\x65\xb3\xca\x41\x77\x05\xd8\xab\xd0\x93\x36\x65\x37\x42\xb0\x8f\xd0\x53\xe6\x63\x1f\x49\xd7\x0b\xe0\x82\x05\x4f\x5a\x65\x57\xe0\xe9\x0b\xb9\x52\xc7\x6d\x06\xf9\xba\x01\x47\x3b\xaa\x57\xda\xeb\x79\x2c\xe0\x0d\x52\x19\xe5\xd3\xe6\xdf\xb7\xb6\x6b\x0f\xbc\xed\xbd\xbf\x93\x53\x56\x9e\xad\xa9\x39\x9f\x61\x88\x0f\x61\x78\xaa\x4d\x12\xd3\xca\x09\xb2\x16\xdf\x49\xf5\x20\xd1\x16\xa0\x2f\xb1\xe7\x66\xfd\xc1\x01\x86\x0e\x54\x34\x0b\x4a\xdc\x0d\x5f\x00\x8d\xf2\xcc\xfd\x9b\xdd\x60\xac\x08\xeb\x0c\x3a\x21\x1a\x8c\x1f\x52\xf8\x80\xdd\xfc\xf9\x6c\xc2\x5e\x4d\xd8\xd9\x84\x4d\xa7\xd3\x17\x13\x54\x0b\xa6\x1a\xe1\x2b\x88\x1c\x2b\xf8\xda\x94\x4d\xca\x09\xab\xe0\x03\x20\xba\x63\x0e\x2b\xcb\x16\xc6\xfd\x53\x81\xe7\xc1\x36\x01\x73\x18\x29\xe1\x82\xe2\xea\xd1\x46\x25\xbe\x52\x00\xd1\x14\x91\xca\x2d\xc8\x53\x17\x2a\xb7\x80\xb5\x7b\x9e\xf3\x44\x42\x6a\x37\x6f\xc2\x75\xe9\xcb\x01\xb9\xb3\xf8\xcc\xb7\xd0\xfe\x44\x3a\x7e\x4b\xd3\x4d\xb7\xae\xfe\xc5\x2e\x23\x87\xf4\x43\x9e\x14\x85\x39\x9d\xf5\x5c\xde\xb0\x97\xff\xc1\x66\x59\x96\x0a\x36\x63\x7f\x63\xaf\xb8\xe4\x92\xb3\x57\xec\x6f\xec\x8c\xcb\x82\xa7\xaa\xcc\x04\x3b\x63\x7f\x33\xdd\x66\xca\xbb\x54\xe6\x38\xdc\x4d\x18\x67\xb2\x4c\xf1\xd4\x7f\x6e\xc1\x60\x2f\x5c\xbb\xb8\x1f\x9d\xa5\x28\x1e\x84\x90\x4c\xab\x2d\x1d\x85\xbf\xba\x98\x84\x4e\xe4\x3a\x15\x05\xcd\x87\x2a\x6c\x0f\x3f\x70\x02\x2d\x7d\x39\x97\xce\x97\xf7\xab\xa9\xf1\xaf\xec\x6f\xec\xb2\x4c\x53\x53\x25\xb3\xd1\x98\x89\xf4\x92\xd9\x34\x0a\x21\xa7\x0f\xc9\x5d\x92\x89\x38\xe1\x90\x48\x61\xfe\x75\x7a\x0b\xa3\xbd\x28\x3d\x67\x5e\xb8\xa6\x9d\xf6\xca\x31\x5b\xcf\x93\x24\x65\x3b\x09\x1e\x3b\xf8\x3d\x37\xbf\xea\xab\xe3\x2d\x22\xcf\x14\x4a\xeb\x81\x0c\x56\xd4\xcd\x09\xa5\x7e\x0e\xda\x02\x6a\x87\xad\x2d\xab\xe5\x28\x08\x0f\xf5\x63\x37\x59\xd0\xad\x7a\xf4\x3b\xe4\x00\x19\x9f\xa1\x5b\x6e\x43\x84\xa4\x92\xe6\x0e\xb6\xa4\xa7\xfa\x19\x14\x15\x72\xe2\x23\x3f\x57\x85\xbb\x2a\x5d\xac\x92\x41\x0a\x67\xb5\xca\x7e\x20\xdf\x05\x26\xa8\x99\x65\x9a\xa4\xa7\x66\xa9\x9e\x5e\x2a\x69\xae\xad\x3a\x59\x23\x3d\x11\xc0\x88\x50\x1a\xcc\x1a\x05\xb7\x55\x93\x35\x58\x02\x60\x1f\x98\x2a\x21\xb4\xad\x30\xbb\x80\x19\x82\x74\x37\x97\xe6\x0d\x3a\x91\x00\xe6\x9e\x38\x16\x5b\xfc\x9a\xd5\x52\xa7\x6f\xd1\x86\x1c\x14\xde\x32\xc1\xfa\x72\x68\x8f\x98\x70\x94\xb2\x75\x84\x57\xfc\x32\x60\x70\xa3\xd2\x2c\xbd\x07\xc6\x3d\x97\x22\x55\x72\x6d\x66\x45\xd7\x26\xa0\xb6\x3c\x39\x06\x58\x12\x56\x01\x0b\xeb\xac\x81\x39\x2c\xe9\x11\x1a\x12\x73\x4e\x26\xb1\xbf\xdf\xeb\x72\x69\xec\x08\xe7\x91\x75\xa7\x21\x35\xae\x2b\xa1\xf8\xb8\xf8\xf2\x07\x2d\x72\xa0\x59\x46\x84\x83\xf3\xf6\xe3\xc1\xe9\xc9\x36\xb0\x45\xc3\x16\x55\x2f\x30\xb6\xdd\x15\x42\xd1\x84\x46\x6a\xf5\x80\xf9\xf8\x35\x31\xb2\x4f\x29\x46\xdf\xaa\x3c\x0f\xcf\x99\xd2\xe8\x4f\x63\xd5\xe5\x6d\xef\x3d\x06\x7c\xf0\x13\xca\xbd\x2c\xd4\xca\x66\x52\x0e\x3f\xd3\x1b\x82\x3b\xc3\x50\x2a\x21\xc9\x76\x28\x4c\xd3\x9c\x38\x9d\xf9\xe0\x72\x41\x11\x89\x61\x95\xad\x77\xd8\x95\x7c\x83\xaf\xbf\x57\x69\x12\xf5\x83\xde\xec\x71\xb5\x51\x0f\x2d\x28\xa2\xa5\x00\x14\x28\xf9\x7f\xa8\x52\x68\xa1\x17\x22\x2a\x7c\xc4\xad\xd9\xb8\xff\xd5\x40\x9b\xfd\x77\x70\xf4\x28\xbb\x6e\x03\xd1\x47\x17\xc3\x83\xb3\x15\x08\x36\x81\x57\x1e\x7d\xad\x90\x4b\x07\xb1\xed\x88\x93\x0b\xba\xd2\xf3\xb0\x41\x3f\x6c\x54\x6a\xee\x62\x32\x26\xb2\xd2\xb9\xcc\x44\x1e\x29\x00\xa8\x60\x1e\xbc\x62\xd1\x26\x49\x63\x2f\xde\xf2\x1c\x10\xbd\x80\xbb\x7b\x41\x0a\x75\xc2\xc5\x98\x6d\xf1\x3d\xa7\xae\x9d\x76\x56\x23\xfb\x38\x0f\xd4\xe3\x41\xf4\xfa\xa6\xfd\x2f\x04\x25\xc3\xae\x20\x7a\xa1\x5a\xb4\xd0\x74\x7a\xa5\x3e\xa3\x3c\xbc\xa0\x62\xbd\xb2\x3a\x98\xf6\xe2\x54\xd4\xc6\x95\xa6\x59\xbd\x2b\x81\x74\x16\x51\x54\x08\x20\xd1\x02\xaa\xb3\x15\x1c\x6d\x31\x4f\x01\x49\x83\x3a\x97\x3e\x3e\xfa\x4c\x87\x76\x59\xeb\x38\x23\xa7\xaa\x05\x01\x4e\xd8\xb3\x4a\x43\x9f\x01\x29\xa9\x54\xf0\x3d\x8a\x61\x55\xba\x06\xa6\xeb\x84\x25\xc5\x5c\x26\x1a\x67\x66\x2e\x52\x71\x6f\x6a\x17\x3a\x8b\x09\xeb\x62\xef\xce\xb6\xd9\x80\x23\xe7\x36\xfd\xd8\x49\xab\xc3\x22\xcc\x43\x72\x4b\x0e\x8e\xe9\x58\x68\x63\x37\x82\x2c\x87\xf8\x6c\x16\x40\x02\xb1\x10\x84\x7f\xc4\x42\xda\xfa\x01\x2a\x04\xf5\x53\xe7\xf2\x62\x05\x39\xa0\x90\x79\x1a\xc7\x78\x0b\xb5\x42\x0d\x8e\x69\x2c\x21\xe7\xb0\xa2\x3b\xb9\x1d\x08\x12\x58\xc4\x95\x24\xee\x45\xbe\x2b\xc0\xa9\x0b\xfd\x2a\x05\x2f\x36\x2c\x29\x26\x40\x11\x67\x77\xca\xb9\xe4\x31\xa9\x63\x53\x71\xa6\x6b\x60\xde\xf7\x8c\x33\xfd\xbe\x54\xf7\x7d\x86\xed\xb1\xa8\x2f\x5c\xd5\x59\xca\xe5\x02\x4f\x90\xaf\x80\xfb\x0a\xb4\x2f\xbb\x42\x9d\xe5\x72\xe1\x68\x6d\x1e\xa5\x9e\x81\x0e\x71\xa8\x48\x6b\xec\x58\xfb\xa1\x09\x4e\x06\x4f\x6b\x6d\xaf\x27\xce\x4f\x43\xe8\x82\x9c\xd9\x08\xec\xf0\x5d\xc0\x43\xc2\x78\x0d\x89\x60\x67\xeb\x3e\x4c\x98\x9d\x01\xdf\x2a\x3e\x69\xc8\xc8\xd7\xce\x90\xfa\xb0\x8f\x87\xc6\x34\x2c\xc4\x83\xe0\x31\x7b\xaa\xf5\xb4\x10\x99\x4e\x3f\x4a\x13\x2a\x63\x5b\x1b\x84\xfb\x30\x79\x42\xa0\x1f\xce\xb9\x79\xda\xb5\x4d\xc3\x7b\x98\x6a\xc1\x56\x3e\xa6\x8f\x1a\xf6\xa9\xa1\x9e\x12\x9f\x7b\x0d\xf5\x9a\xb2\x0b\xc9\xac\xb9\x37\x61\xcf\x70\x62\xe9\x67\xe4\x82\x24\x81\x5c\x8a\x9d\xc7\xb4\x7a\x28\x5b\xb5\x0e\xc5\xc0\x9c\x01\xbf\xdc\x30\x12\xd4\x4b\x6d\xf8\xa4\xfd\xf2\x2a\x81\x9c\x85\x43\xd2\xd2\x31\x8a\xb8\xc4\x02\xe8\x90\xc4\x6b\xf7\x0e\x8d\x76\xe5\xbd\xd9\xbe\xc1\x36\xde\xc5\x5e\xd9\x17\x4d\x17\x65\x25\x9d\xa7\xf6\x77\xa6\xf2\xb9\xb4\xa5\x91\x4b\x52\xa3\x96\x52\xbd\xa8\x00\x42\x4d\x36\x7f\x30\x53\x01\xc4\x60\xe5\xb3\x40\x95\xcd\xf3\xaf\xd6\x77\x01\x00\x45\x2c\x85\x97\xf6\x9e\xb2\x99\xff\x9a\x31\x3c\xcc\x04\xdf\xe2\x31\x5f\xe7\x68\x4c\x53\xd3\x29\x49\x61\x29\x21\x83\xf4\x06\x5d\x02\xb1\xe9\xaa\x34\x9b\x51\xc0\xfe\x3a\x97\xa6\xf3\xd8\x2a\x01\xdc\x2f\xf5\xcb\x5c\xbe\x53\xda\x66\xd3\x6b\xdf\x1f\x16\x43\x4a\xdd\xf6\xcc\xa9\x88\xd1\x1f\x5e\xc3\xa1\x4d\x3e\xff\x9a\xac\x3c\xe4\xb5\x10\x25\xc6\x4e\x95\xb9\x6f\x54\xc4\xe5\x5c\xfe\xc5\x74\x0f\x8a\x3a\x3b\x45\x74\xb5\xc2\x25\x0c\x23\x08\xc1\x92\x8f\x58\xe8\xf3\x7f\x7d\xf1\xf1\x05\xe2\xd0\x4b\x0d\xc2\x8d\x93\xea\x01\xe2\x88\xc0\xcb\x34\x85\x48\xb4\x6d\x81\x23\xa3\xf0\x9f\xe0\x7d\xb0\x1c\xba\xd4\x2d\x64\xd5\xc4\x18\xb2\xd0\xfb\x66\xb0\x77\x3e\xcf\x58\xc4\x8b\x68\x73\x62\x6d\x39\xda\xc6\xec\xe9\x47\xc3\x87\x0a\x6e\xc6\xd2\x6a\xe7\xc2\x36\x17\xce\x7c\xeb\xd8\xf9\x2a\xf3\xc5\x34\x01\x80\x35\xb7\x75\x61\x18\x47\x1e\x8a\x93\xd3\x6b\x92\x7b\x3b\xcf\x3d\x6e\x65\xd9\xfc\x8d\x93\xbc\xe4\x92\x6f\x45\xcc\x9e\x41\xc6\xd4\x33\x3b\xf8\x73\x99\x2d\xa7\xe9\x6e\x55\x10\xc5\x93\xe9\x94\x29\x08\x18\xed\x39\xe5\x16\x71\xf3\x9a\xb4\xa7\xb3\x3b\x2f\x5a\xed\xb6\x8e\xeb\x1b\xf7\xa5\xe1\x06\x0b\xfa\xb8\x5c\xef\xdc\x54\x21\x42\x55\x26\x75\xae\xef\x26\x6c\x99\x73\x09\xda\x13\x71\x68\x54\xf9\xd5\x09\x97\x67\xe4\x4f\xb2\x29\x14\x92\xa7\x3b\xc0\x8e\x4f\xe6\x12\xc9\xa6\x80\x95\x78\x17\xa5\x49\xc4\xd6\x39\xcf\x36\x35\x3b\x48\xdc\x0b\x59\x9c\x13\xbb\x82\x05\xa9\x1f\x1b\x5a\x76\x6c\x0d\x47\x71\xee\x5d\x54\xad\x1d\xee\x69\x28\xbc\x87\x15\x13\x55\xe8\x46\x6d\x41\xad\x6e\x82\x4f\x48\x0a\x0d\xf8\xb8\xd8\x9f\xcb\xa5\x4a\x2d\xa1\xd9\xc5\x6b\xa6\x72\xd0\x12\x28\x14\xfd\x29\x89\xbb\x4e\xb1\x44\xc6\xe2\xf3\x51\xac\x02\xfd\x07\x92\x35\xef\xcc\x67\x02\xca\xfa\x7a\x63\x61\x15\xe5\xc2\x1c\x16\x85\xbd\xc1\x35\x9e\xd2\x75\x84\xdd\x2c\x2d\x36\x00\x7b\x43\xc0\xb5\xef\xd4\x2d\xdf\xb1\x68\xc3\xe5\x3a\xb8\x42\x03\x0a\x49\x64\x2a\x47\xcd\xbd\x7b\xa0\xef\x52\xb9\xcd\xda\xa4\x5c\x44\x42\x7d\x3b\x87\x37\x82\x2d\x95\x4d\x38\xe4\xeb\x75\x2e\xd6\x90\x48\x3f\x97\x95\x6c\x6a\xa0\x2e\xb3\x74\xff\xf8\x9d\xbe\x64\xd4\xc7\x61\x74\xe8\xba\xb5\x14\xf9\xce\xa5\xf2\x91\x60\xa5\xeb\xba\x46\xb7\x4e\x58\x22\xa6\x13\xf6\xbd\x07\x98\x8a\x48\x49\x97\x0b\xd8\x91\x08\x56\x73\x4d\xef\xd9\x8b\x5a\xa8\x1f\xda\xeb\x0e\xbf\x35\x64\x2f\x5b\x27\x4d\x6f\x32\x65\xc1\x8b\x72\xc4\x5e\x49\xd2\xc6\x67\xe6\xe5\x1b\x7c\xb7\x17\x83\xcd\x33\xb3\xbd\x59\xda\x1d\xf3\xbc\xd9\xe1\xcd\xb7\x3d\x2d\x6f\x5b\x5f\xef\x75\x74\xa6\xaa\xdb\xd1\xf9\x18\x26\xa5\xe5\x56\xd8\xef\xeb\x4c\x3b\xf8\x02\x7a\xda\x34\xd6\x95\x69\xc1\xa8\x04\x33\xd7\xf5\xeb\x56\xcb\x0e\x90\xe5\x2a\x2e\x23\x11\x9b\x95\x0b\x76\x3b\x22\x37\x1c\x6d\x41\x65\x93\x6c\x3b\x10\x2a\xdc\x2b\x20\x70\xfd\xa5\xee\xc6\x83\xe8\x6e\x5d\xf7\x7f\xe8\xb8\x17\x5b\xcb\xa4\xad\xd3\xc3\xf5\x89\xfd\x94\x8f\x3c\xa7\xdc\xe7\xab\x24\xb5\x2a\x4f\xd6\x89\xe4\x85\xca\xd9\x73\x97\x9c\xf8\xc2\x29\xdb\x40\x2f\x3e\xc6\x36\x51\xe9\x22\xdc\x26\xda\xef\x5e\x80\x67\x16\xf1\x62\x1c\x77\xd6\x58\x86\x67\x98\xa4\xe6\x29\x5d\xf0\x6d\x16\xd2\x3e\x3a\xdd\x60\xea\x99\x14\x3b\x81\xd9\x8a\x81\x8f\x2f\xd1\x3e\x07\x6b\x2e\xc9\x33\x8e\xe3\xa6\xf2\x90\xb7\xb8\xf3\x6c\xce\xca\x62\x71\x20\x95\x09\xbe\x3c\xce\x41\x42\xe1\xf2\x77\x3c\xeb\x27\x87\xe0\x74\x35\xc6\x24\x14\x27\xa6\x6c\x2d\x95\xea\xfc\xec\x57\x06\x18\x49\x56\x59\x0f\xf1\x5e\xbf\xb5\x01\x0d\x7f\x6f\xa9\x5c\x04\x60\x20\x90\x25\x4f\x83\x55\x81\x57\x50\xb7\xad\x99\x53\xdc\x32\x4a\x9c\xa5\xaa\x8c\x19\x6d\x6a\x14\x2e\xce\xa7\x78\x3a\x02\x6d\xe5\x74\xda\xc5\xe1\x35\x52\xb1\xd4\xed\x3f\xf0\x5e\xfb\x0a\x84\xdf\x3a\x76\xe0\xde\xa5\x4f\x3d\xfb\x64\x43\x4f\x3d\x0d\x63\xef\xb6\xe3\x51\x63\xef\xbc\xb5\xc0\xa1\x35\xce\x91\x07\xf7\xa6\x24\x4e\x61\xbd\x85\x8e\xee\x16\x96\xcf\x4a\x00\x51\xdf\x1d\xfd\x39\x9b\x69\xdb\xff\xa9\x8c\xe7\x42\x16\x0b\xf8\xe2\xb8\x8f\xc1\x47\xde\xc3\xeb\x15\x83\x69\x90\xc3\xf2\xbf\x6e\x15\xfa\xa1\x2d\x61\xc6\x7f\xb3\x1b\xf2\xbd\x68\xab\x6a\x6f\x4e\xc7\xe7\x09\x60\x63\x82\x98\x9d\x1b\xb8\x8e\xe1\xa2\x06\x1d\xd0\x7b\x41\x83\x2a\x5b\xfb\xa0\x06\xf9\xda\x43\x48\x15\x4a\x21\x37\x14\x65\x78\x9a\xad\xd6\xfe\x2d\x20\xd1\xbe\xac\xfc\x1b\x08\x0f\xcd\xf8\xa5\xec\xaf\x22\x57\x3e\x6d\x01\x9d\x2a\x61\xc1\xbd\xf6\xfa\xe1\xfa\x9f\x68\x8f\xa3\xf2\x64\x28\xbd\x06\x7f\x21\x4e\x12\xbc\xf9\x2e\x77\xf6\x3a\xd2\x45\xa7\x2e\xa2\x45\x07\xcf\xfe\xa0\xaa\x04\x17\xcf\x90\x37\x3f\xa9\x1d\x66\x76\x81\x9e\xc2\xbd\x9a\x58\xff\xb6\x3c\x23\x1c\x1a\x41\x5e\xeb\x41\x86\x29\x34\xe2\xbf\x7e\xfd\xef\x69\x97\xb2\x33\x54\x7d\x2c\xac\xc7\x55\xfe\x4d\x9e\x08\x19\x43\xd0\x90\xc7\x4d\x09\x18\x59\xf1\x22\x57\xb6\x67\x33\x0d\x1f\x25\xbb\xaf\xfd\xa8\xd5\x0b\x9c\x44\x5f\x20\xf2\xec\x37\x59\xb7\x7c\x2b\x71\xa9\x2e\x53\x42\x2f\xe2\x9d\xe4\xdb\xa6\x16\xf6\x93\xd6\x71\x97\x88\x34\x86\x2a\xd2\xd7\xf7\x45\x4f\x62\x11\xdd\x8d\xb5\x09\x0e\x26\xb0\x16\xd1\x1d\xfb\xf1\xf6\xdd\x5b\xd4\x2b\x4c\xf4\x5c\x5e\xf2\x22\xb9\x17\x1f\xf2\xd4\xb9\xad\x89\x91\x24\x4f\xed\x1a\xa9\x12\xaa\x06\xe4\x1d\x96\x7d\xd5\x1a\x0e\x21\xdf\xf5\x76\x77\xb2\x2c\xa3\x3b\x51\x9c\xe6\x5c\xc6\x6a\x8b\xcd\x38\xd5\xe5\x6a\x95\x7c\x9e\x16\x3c\xef\x20\xbf\x46\x3f\xc2\x57\xb4\x73\xbd\xa4\x49\xe1\x6d\x5e\x34\x75\x1f\x20\x3b\x91\x84\x72\x2b\xc6\x2d\x5c\x81\x73\xbe\x15\xc0\x5e\xc6\xaa\xc4\xf1\x50\x0a\x26\xfc\x81\xbe\x9a\xd6\x84\xf4\x56\xa4\xde\xfa\x31\x30\xee\x3f\x06\xb5\xaa\x2a\x08\xdb\x4a\x79\xcd\xb2\x2d\xbf\xc3\xfb\xe1\x3a\x17\x5a\x4f\x98\x56\x50\xe3\xb9\xb4\x98\x69\x9b\xd7\x03\xf8\x0c\xe0\x3f\x4c\x77\x2c\x52\x59\x02\x12\x6f\xae\x5d\x1b\xf5\x00\xfe\xe4\x30\xbd\x0d\x54\x39\x4b\x59\x24\x29\xe3\xab\x82\x9c\xcd\x40\xf6\x6c\xc5\x5d\xf4\x74\x2e\x21\x64\x18\x41\xf3\x21\x94\xef\xc2\x04\xae\x11\x9a\xad\x78\x94\xa4\x49\x41\x14\x34\x90\x0c\xc3\x4d\x7b\xcd\x79\x60\xfa\x32\xe7\x3b\x9e\xfa\x8b\x15\x4f\x4b\x9f\xd1\x77\xa2\x45\x9d\xe2\xec\x77\xe1\xff\x56\xee\xb9\x7d\xa7\xee\x11\x17\xde\x63\x0e\x9f\xe6\x95\xd6\x29\x8e\xfa\x73\x3c\x89\x2d\x4e\xb4\x62\xea\x7a\xe6\x59\x77\xfc\x80\xef\xbc\xe3\x52\x3d\xb5\x3a\x31\xcd\x2f\x8c\xe8\xbd\x76\x23\xec\x0b\xb9\x0b\xba\x38\x70\x87\x54\xdf\x7a\xbb\xdf\x2b\x95\x1e\xeb\xf1\xe6\xa9\xdd\x50\x17\x20\x9d\x78\xcc\x75\x0d\x27\x80\x73\x1c\x5d\xbc\x76\xb1\x57\x47\x2a\x5b\x15\x5c\x21\x58\x10\x55\x01\x36\x0a\xa8\x44\x0f\x62\x58\x67\x2d\xc1\xf7\x91\xc8\x67\x28\x03\x51\x3b\xd6\x74\x6e\xba\xe0\x83\x5c\x76\xee\xeb\x08\xc4\x7b\xb5\x1a\x8e\x72\x86\xa1\xd0\x61\xed\x53\xce\x31\x16\x12\x74\xba\x7e\x0c\xbe\x6d\xfb\x13\xe5\x95\xcd\xf9\x44\x56\xf2\x5c\x06\x16\x31\xb2\xea\x58\x68\xb9\xeb\xb5\x36\x7f\x59\x65\x1a\x1e\xed\x2f\x3b\x86\x85\xb9\x37\xa0\xf2\x3a\xd4\x53\x02\x4c\x40\xa4\xb6\xcb\x44\xda\x54\x65\x72\x22\x83\x29\x3f\xb3\x24\x77\xce\xe1\x6f\x4d\x72\x64\xd9\xaf\xf5\xbd\x33\x23\x42\xbe\xc0\x70\xcb\xda\x77\xdd\x0d\xef\x4f\x8f\x4b\x18\xdd\x81\x52\xad\xb7\x20\xd1\x8c\xa7\x0f\x7c\xa7\x41\x73\x54\x98\x5d\x71\x85\x8e\xd3\x6a\xfd\x27\xc1\xf1\x6e\x09\x14\x49\xc0\xbb\x24\x29\x62\x6a\x4b\x82\xfc\x0d\x22\xb5\xea\xaa\x9e\x17\xe7\x99\x6e\xef\x9c\xaf\x13\x0b\xc9\x7b\x63\x21\x18\x8c\xfc\xc7\x08\x7f\xf4\x38\x59\x8f\xf4\xf5\x06\xc7\x24\x5a\x64\x04\x17\x81\x04\x1e\xd8\x8e\xcd\xb7\x27\x6c\xcb\x13\x49\xcb\x00\x15\xac\x62\xb1\x2c\xd7\xeb\x4e\x17\xe4\xb7\x1f\xcb\xa8\xae\x93\x7f\x7a\x5f\x73\x2f\xb3\xd3\x63\x78\x63\x2f\xec\x97\xd0\x3d\x6c\xee\x55\x5f\xc6\x01\xfb\x15\xbd\xdd\xad\x21\xa7\xc6\x24\x7a\x1c\x6f\xf7\xc5\x10\x6f\xb7\xc5\xf8\x40\xaa\x15\x5d\x57\x2d\x0e\xe3\x37\x37\xf8\x97\x71\x83\x0f\x9a\x14\x48\xef\xb1\x48\xaa\x06\x7a\x4f\x0d\x0f\x64\x09\x73\x74\x92\x50\x2b\x52\x03\xd7\x42\xc6\x9a\x2d\x79\xf4\x04\xb4\x61\x70\x3a\x1e\xef\x6f\xdb\x03\x2e\xb9\x51\x5b\xc1\xe0\x53\x1a\xb5\x0f\x18\x65\xb3\x4d\x00\xb5\x68\x1a\xe8\x11\x19\x84\xf7\x80\xe3\x14\x91\x21\xb1\x37\xaa\x9f\x4b\xf1\xc0\xcc\x69\x35\x09\x61\x5c\xc1\xf0\x80\x28\xce\x0b\x63\x1d\x56\x30\xdf\x2e\x75\x3f\x17\x6b\x9e\xc7\x90\x69\x40\x4b\x32\xe5\xd1\x9d\xf9\x6f\xa8\x1f\x7d\x91\xa0\x66\x96\x9f\x1b\xe1\x8f\xbe\xb4\x44\x46\x39\x90\x32\x11\xaa\xcd\xd7\x0f\x5f\xd7\x8c\x47\xb9\xd2\xe8\x94\x71\x5a\x92\x90\xe9\x0a\x06\xec\x7d\x12\x97\x3c\xc5\x2f\x76\x7a\xb2\xb9\x3e\x8a\x6f\x7c\x16\xc8\xbe\x88\xcf\x59\xca\x65\x75\x4d\x62\x73\x81\xab\x26\xe9\x99\xf9\x8e\x72\xed\x98\xaa\x8c\xa6\x8e\xbc\x08\x14\x57\xfd\xb2\x42\xeb\x38\x17\x3c\xde\x85\xc4\x54\x89\x24\xdd\x7d\x1e\x6f\x13\x69\x86\xde\xaa\x7a\xb9\xfd\xd5\x12\xfc\x22\xe0\x12\xc4\x2f\xd2\xb4\xb6\xf4\x35\x93\xc2\x98\x54\x3c\x4f\xd2\x1d\x58\xd1\x59\x2e\x4e\x82\xef\x04\xeb\x9b\xf2\x3d\x80\xaa\x98\x48\x14\x4a\x2d\x56\x65\x8a\xb6\x36\xdc\x46\x5d\x03\x68\x1d\x7e\xb8\x98\x98\x63\xb6\x20\xca\xf9\xe0\xc3\x28\xe4\xf4\x18\xd8\xf9\x46\x0c\x6c\x5c\x1c\xc7\x13\xa7\xe5\x00\xf1\xdd\xa8\x07\x9b\xe8\xf3\xc0\x3d\x92\xb3\xeb\x4c\x79\x34\xdf\x7d\xbf\xf5\x65\xef\x3d\x76\x75\x62\xe7\xc7\x95\x80\x0d\xfd\x26\x62\xb7\x22\x13\x09\xcd\x21\x2d\x44\xef\x0f\x2d\x35\xe6\x0b\x99\xb1\x84\x5d\xdb\x5e\xef\xab\xee\x50\xe6\x5a\x97\x68\x25\xd9\xbc\xfc\xfd\xef\xff\x20\xd8\xef\x21\x81\x8a\xac\x70\x8c\xba\x00\x75\x1a\x96\x0e\x1b\x95\xfb\x80\x40\x5e\xb5\xc6\x88\xb0\x36\xe0\xa3\xcd\x56\x06\xe8\x20\x8f\x36\x4c\x97\x4b\xc4\xc5\x71\x72\xdc\x73\xe9\x98\x49\xdf\x2a\x80\xb8\xe1\x79\x66\x6b\xff\xbf\xc4\x4d\x8d\xec\xe0\x73\x99\x29\x24\xcf\x05\x40\xe1\x52\xb0\x2d\xcf\xef\x40\xec\x8d\x14\xbd\x19\x2f\xd8\xf3\x44\x4c\xab\x4e\xeb\x17\x95\xfa\x50\x98\x00\x49\x31\x59\x5e\x4a\x69\xd5\x2b\x98\x31\xc7\xbc\x07\x79\x32\x97\xcb\x32\xbc\x71\x55\x5c\xd0\x7e\x6a\x81\x1b\x1a\x36\x5b\x05\x4c\x09\x54\x29\xae\x03\xa5\x71\x36\xc0\x17\x3d\x97\x4f\xe4\x8c\xee\x72\x73\xbd\x27\xcb\xc3\xba\xb0\x02\xb4\x36\x34\x37\x14\x58\x84\xe1\xc0\x69\x0f\x47\xfb\x7b\x50\x59\x9c\xb0\x1f\x93\x7b\x31\x61\x37\x19\xcf\xef\x26\xec\x35\x06\x95\xfe\xa4\x96\x6d\x9e\xab\x46\x3a\xfd\xd1\xde\xab\xc3\x9c\x37\x83\xa5\xda\x9d\xcd\xfb\x4b\x53\x87\xbd\x2b\xa2\xfa\x8f\x89\xf3\xea\x60\x3a\xf8\x67\xbf\x7f\xef\x09\x7e\xfe\x06\x89\xfa\xa7\xbc\x0b\xf6\x93\x1c\xfc\x2e\xfc\x5f\xbb\x7f\x59\x8b\x0b\x6c\x4f\xda\xe5\x5a\xb1\x4e\xdf\x56\x5a\x67\x12\xd7\x0f\xe5\x66\x76\xe7\xb0\xa5\x40\xc9\xb3\xb1\x4b\xec\x1d\x01\xe5\xa6\x57\x6d\x7f\x9d\xa5\x4a\x97\x79\xff\xe2\xbf\xae\xd6\xda\x7e\xbd\x85\xe8\x10\x26\xdb\x76\x29\x20\x67\x7b\x28\xa8\x01\x1f\x5b\xfc\x45\x2d\x17\x80\xe0\x39\x6e\x85\xb7\x15\x67\xa5\x53\x5c\x1c\x88\xaa\xea\x4f\xc8\x9b\x4c\x00\xdf\x8e\x37\x45\xbd\x1b\xbc\x36\xc3\x9c\x43\x60\x2e\x2d\xfd\x30\xe6\x0b\xe6\xb9\x00\x9e\x54\x73\xef\xbd\x17\x39\xcb\x78\xee\xc2\xe8\xd6\x22\x0a\x6e\x3e\x1e\x6a\x11\xe6\xf8\x40\xaa\x1e\xdd\xb7\x96\x42\x48\xd7\xdb\x63\x4c\x09\x63\x1d\xd4\x7b\x9f\x30\x54\x0f\x82\x45\x08\xcf\xef\x50\x2f\x6b\xbc\x17\xdc\x05\xc1\xe4\x5e\x8b\x22\xd8\xcd\x6b\xa6\x45\x65\x69\x56\xe2\x32\xdf\x14\x8e\xbc\x35\xf2\x5a\xa3\x26\xaa\xb8\x0d\x06\x45\xb2\x1e\xc3\x4b\xfc\x9e\x17\x1b\xbc\xd0\x6e\x55\x41\x32\xf2\xc8\x91\x82\xf3\x05\x7d\xad\xcb\x54\x2d\x41\x8a\xc7\xfc\xd2\x75\x37\x8c\x68\x69\x0f\xea\xba\xe6\x80\x0d\xd9\x19\xcc\x6e\x02\x79\x86\xb9\xd0\x40\x37\xd1\x8c\xcd\x0c\x45\xbd\x8e\xbb\x74\x37\xab\x6b\x36\xfd\xd7\x8d\xcb\x76\x93\x9f\xdc\x2c\x6b\x80\x40\x9e\x1f\x90\x97\x71\x1e\xe6\xea\x19\xe3\x80\xa8\x5a\x29\xf8\x89\x6c\x8d\xb5\xf6\x5a\xc5\xd7\xb9\x9c\xe1\x2f\xc1\x21\xc0\xbd\x0e\x87\x43\x19\x92\xb8\x9f\x5b\x7f\x98\xbc\xc7\x66\x21\xae\x8d\x3c\x04\x13\xef\xc1\x83\xcb\xc0\x04\x72\xe5\x64\x91\xe4\x82\x49\x88\xbd\xcf\xa5\x2e\x97\x27\x9e\x96\xc1\xdc\xe2\xee\x81\x4a\x44\x8b\x8c\xc3\x55\x06\xd8\x5a\x4e\x5a\x8e\x61\xf4\xc7\x79\x3e\x7d\x4b\x5f\xc6\x53\xda\xfc\x21\x03\x0f\xf3\x82\x5d\xdb\x5d\x39\xe6\xb2\x06\xb7\x68\x9b\x93\x8a\x87\x5d\xdf\x7e\x01\x8a\x1f\x90\xd7\x77\x8d\xd8\x81\xaf\x7d\x80\x87\x31\xc0\xa1\x47\x37\x44\x91\xe6\xf2\xff\xda\xb3\xa1\x1b\xaa\x3a\x62\xa6\x9b\x9e\x31\x47\x54\x27\x84\xb6\x52\x37\x7b\x85\x0c\x8c\xc0\xee\x4a\x35\xa6\x7c\x5b\xa9\xdc\xa2\x39\x42\x7e\x7b\x45\x49\x98\xf0\xeb\x7d\xa2\x03\xb2\x63\xf8\xda\x8d\x10\xec\x65\x2e\x56\x2f\x3f\xe6\x62\xb5\xb0\x23\x3d\x85\x06\x4d\x4d\x8b\x9a\x94\xc7\x03\x27\x87\xce\x94\x6c\xa7\x7e\xdb\x43\xcd\x58\x6b\x12\x96\x13\xb4\x29\x59\x31\x2f\x83\x66\xda\x03\xf9\xef\x22\xae\x73\x31\x37\x6a\xf6\xc5\x8f\xb9\x2e\xfc\xd3\x00\x80\x51\x87\x7c\xd8\x3f\xff\xf1\x56\xe9\xb3\x21\xc7\xdb\x6d\x15\x28\x62\x37\x7b\x2e\xdd\x81\xd7\x0d\x28\xfe\xb2\x98\x67\x18\x40\x9d\xf1\x07\x49\x2c\x1e\xa3\x5c\x4f\xc3\x8e\xb5\x76\x21\x73\x73\xac\x35\x90\x5f\x7e\x95\x49\xeb\xe9\x4b\x9c\xd6\xd6\x24\x90\xa9\xe5\x69\x1a\x32\xca\xfb\xf8\xd2\x5c\xfa\x6c\x47\x63\xb5\xa6\xa9\x75\xe1\x55\xec\x0d\xe2\x6c\x89\x21\xcd\x54\x4c\x2c\xe5\x04\x91\xb5\x51\x14\xe8\x64\xc9\x41\x03\xd1\xe9\xac\xec\x5b\xcd\x8f\x75\x89\xfc\xc6\xb2\x6d\xf7\xc4\x5b\xf1\xb3\x8b\x3b\xb1\x1b\x5d\xd7\xf6\x48\x87\x97\x60\xdc\xc0\x62\xb6\xbb\x6c\xc4\xf3\xdc\x62\xc7\xe9\xab\xcc\xdc\x95\x56\x3c\xaa\xb8\x39\x3b\xea\xb9\x11\xd1\x5d\xa6\x12\x39\x7a\x2f\x0a\xea\x63\x0c\xa9\xc2\x9c\x67\xbe\x34\x77\x3b\x1c\x74\x38\x56\xec\x49\x6c\x88\x06\x50\x81\x05\x44\x7a\x2a\x2a\xce\x9c\xc6\x64\xf7\xb4\x7b\x6c\xff\x85\xf0\x67\xc3\x13\xf8\x62\x5b\xe2\x43\xb5\x53\x85\xb7\x38\x76\x2a\x3c\x88\xbc\x91\x53\x34\xb0\xb3\x39\xab\x10\xb8\xb5\x76\x29\xb8\x20\x7f\xf3\x0c\xfd\xe6\x19\xfa\x07\xf7\x0c\x7d\x49\xb7\x10\x20\x42\x9e\xd2\x27\xd4\x13\x20\x3f\x62\x39\xba\xaf\x1e\x2b\xb8\x8c\xd6\xf1\x24\x10\x06\x0d\xf2\xe7\x9a\xf0\x76\x4b\xaf\x50\x80\xac\x72\x74\x27\x64\x67\x8c\xde\x92\xe2\x74\xaa\xc7\x3e\x16\xec\xb3\x9b\xd3\x27\x78\xbb\x9f\x23\xcd\x03\x7c\x88\x32\xb5\x8d\x66\xc2\xac\x13\xb0\x3d\x4d\xc3\x4f\x00\x2a\xa5\x72\x47\xeb\xab\x29\xb7\x0b\x83\x91\x48\xbe\x83\x10\xa1\x1a\x11\xee\x50\x24\x98\xfd\xf0\x22\x53\x2a\x6d\x05\x84\x3d\x6a\x07\x36\xd2\x43\x86\x76\xde\x05\x1a\xa3\x3a\x84\x49\xd9\x5e\xf4\xa9\x06\x3e\x31\x01\xb3\x10\x40\x09\x00\x66\x53\x5c\x42\x86\x9e\xef\x8e\xa9\xcf\xeb\xe1\xce\xe1\x42\xc8\xa8\xa5\x88\x38\xa8\xe0\x59\xc8\x5a\xc4\x5d\xce\x45\x48\xb5\xd3\x48\x82\xd0\xcd\xef\x74\x44\x2d\xa1\xdc\x45\xd2\x46\xfb\x3f\x76\x71\xd5\x2c\x04\x0b\xa8\xc6\x9a\x5b\x24\x89\x25\x9d\xdb\x27\x7a\x68\x19\x76\x17\x51\xca\xf5\x40\xc3\xba\x75\xdf\xb9\xa0\x82\xce\xa0\x9c\xe1\x1b\xe9\x8f\x90\x84\xb2\x1d\x88\xdc\x99\xcb\x99\x13\xfd\xf3\xd8\x2f\x87\x57\xc3\x70\x29\x22\xf5\x1a\x43\x83\x4c\x76\xfe\xe6\x32\x61\xba\x8c\x36\xc0\xd5\x57\xdd\xa7\xc2\x7d\xab\xb9\x62\x27\x73\x69\x2e\x44\xe0\x6a\xd9\x72\xc8\xb6\x7e\x30\xc6\xaa\x4e\xfe\x2a\x1c\x3c\x8b\x28\xa1\x42\x44\x16\x5e\x9c\x94\x6c\x45\xaf\x59\xda\x44\x04\x58\x78\x4c\x49\x99\xc5\xbc\x10\xd3\xb9\x47\xdb\x24\xe8\xe9\xb4\x28\x0f\x32\x99\x75\xd8\xb0\x10\xbd\x57\xdb\x69\xd3\x64\x25\xa2\x5d\xd4\x50\x41\xe9\x27\x1f\xf8\xed\xda\xf6\x6d\x5d\xdb\x90\x63\x14\x33\xe5\xc6\x74\x2d\x55\xf5\xda\xbf\x7e\x5c\xe7\x0a\x16\xd4\x44\x8f\xe8\xe7\x2f\x78\xed\x6c\xb1\x81\xc7\xd9\xf3\x83\xef\x41\xfd\xc7\x99\xbf\xd8\xfa\xc3\x3a\x48\xac\x6f\x98\x85\x61\x70\xb1\x08\xa7\x8e\x31\x68\x07\x87\xf5\xbb\xb9\x4b\xbe\x29\x70\xd2\x90\x8b\xab\xb1\xb8\x1d\x5c\xe9\xd2\x5a\xda\x52\xe0\x79\xd7\x63\x71\x07\x9c\xd6\xbc\x78\xa6\x5d\xaf\x57\x77\x40\x8b\x78\x7f\x9b\xe8\xe2\xe7\x9a\x62\xe2\x61\x92\x8b\x4f\x66\x9a\xda\xaa\x62\x35\x87\x5a\x54\xd7\x55\x9b\x47\xad\xec\x9c\x83\xcb\x93\xd5\xc8\x32\xf5\x1e\x73\x0f\xfa\xe8\xfa\xeb\x23\x1e\x4d\x0f\x39\xcf\x32\x91\xdb\x83\xbc\x61\x6b\x81\xe0\x14\x7c\x05\x14\xe3\x36\x02\x65\x6b\x6b\xb7\x5c\xb3\x95\xd4\x8a\x86\xc7\xa0\xeb\xa6\xed\x23\x77\x59\xa6\x69\xe7\xc8\xed\xd7\xb1\xb9\xfc\xf0\xf6\xed\xe2\xe7\xd9\xdb\x0f\xe7\xb6\xf9\xad\xba\x30\xc1\x63\x9d\x7d\xe2\x6a\x42\x7d\xe2\x95\xe7\xcc\x67\x85\x95\xce\x55\xbe\xd5\xe8\xe4\x2a\xd3\xb4\xaa\x19\x34\x97\x1f\xa9\x1c\x80\x69\xa3\x1e\xa2\xe9\x37\xd6\xdb\x71\xd5\xef\xc3\x63\x1f\x4d\xe1\x1f\xf1\xdd\x13\xe6\x1b\xf1\x12\x94\xed\x48\x31\xab\xbd\x5f\x29\x07\xe4\x88\xe5\x80\x60\xe0\xae\xe5\xf0\xd8\xaa\x68\x87\x2d\x8f\x0f\x12\xf8\x98\x45\x6c\xc5\xcc\x1e\x65\x75\x60\xdf\x7d\xac\xc6\xa9\xdd\x5e\x1e\xe3\x95\x06\xca\x9d\xa0\x96\x15\x28\xf4\x7a\xb9\xa7\xb9\x44\x1f\xa8\xa9\x53\xa1\xba\xeb\xc4\x2e\xc8\xbc\x4d\xb9\x5c\x97\x7c\x6d\xac\x5b\xfb\xf1\xb9\xdc\x26\xeb\x0d\xb2\x4b\x94\x99\xc7\x27\x73\x26\x81\x84\xa4\x36\x85\x6a\xf8\xe4\x44\xce\x25\xb5\x49\xae\x7d\xf1\x88\x95\xfd\xd3\x8d\x6b\x0e\x81\xd2\xb1\x20\x92\xe3\x92\x73\x89\x83\x8b\xac\x17\x36\x12\x02\x37\x16\x5e\xd4\xa7\x2e\x87\xd8\x25\x4a\x56\x9b\x3d\x7d\x0d\x31\x99\xb9\x74\x89\xa9\xe8\x39\xa2\x36\x04\xb2\x0d\x58\xa5\xfd\xfb\x89\x1d\x0c\xbb\x26\xa8\x6e\xed\xb3\xfe\xe8\x33\xc0\x2c\xb8\xc5\x08\xed\xdd\xe6\x36\x36\xd0\x5b\xc8\x83\x8d\xa3\x8b\xad\x00\xb2\x91\xdb\x6b\x63\xdb\x85\xcf\x74\x42\x5b\x55\xb9\x4c\x47\x54\x09\x9f\xef\xad\x14\x6e\xc9\xfd\x95\x1a\x70\x1d\xbe\xae\x2d\x2d\x33\x4d\xfb\x3e\xbb\x54\xaa\x63\x5c\x1e\x31\xa0\x58\xa9\x14\xbd\xb0\xaf\x33\xca\xa8\x38\x64\xbe\x0c\x48\xd1\xab\x77\x91\xdd\x7d\xfa\x2a\x94\x26\xfa\xa0\xea\x78\xfb\x69\x70\x8d\x9c\x85\x40\x87\xdd\xa8\x1d\x96\xce\xb9\xca\x06\xdb\xb1\x4d\x52\x3c\xc9\x8a\xd8\x26\xb8\xbd\x98\xc5\x83\x0a\xb3\x66\xfe\x4f\xdc\x24\x9a\xf8\x91\x9b\x40\x25\xa3\x32\xd7\x66\xbb\xa4\xfd\x8e\x76\x6d\x95\x33\x3e\x97\x56\x0d\xc1\x6e\xc7\x33\x0b\xce\xcd\xdd\x5f\x31\xed\x31\x43\x36\x71\xb0\x58\x0b\xa6\xa4\xb0\xbb\xe1\x5c\x5a\xe5\xe3\x09\xe3\x4b\x6d\x05\x85\xb9\xdc\x39\x95\xdf\xc4\x49\xb8\x71\xc9\x00\xf5\xbc\x7f\xcf\xab\x99\x01\x95\x73\xfe\x77\xe6\xff\xfe\xfe\xbb\xff\x1f\x00\x00\xff\xff\xfc\xb0\x82\x8f\x3a\xa8\x04\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x5d\x23\xbd\xdf\xde\x6c\xdc\x71\xcc\xab\xb4\xf3\x41\x25\x4c\x1f\xca\x4d\xa7\xa0\x40\xca\xa2\xaa\xa6\xb3\xf5\x79\xf5\xbd\x24\xe6\x00\x32\x36\x7c\x1c\x73\x22\x03\x23\x3e\xf2\xb6\xb8\x84\x4e\x89\x96\x3e\x46\x4c\x93\x71\xe8\x70\x30\x00\xdb\x0e\x6f\x5b\x77\x1a\x09\x2e\xa5\x8d\xbc\x37\xed\x2c\xcf\x9f\xda\xa2\x96\x9f\x41\x09\x3f\xbf\xbe\x1a\xd7\xab\xfa\x05\xcf\x5c\x7d\x3f\xfb\xb0\x31\xc9\xbe\xb5\xa9\x95\xd5\xfc\x8a\xb5\x58\xa3\x9e\xdf\xf1\xe9\xc5\xb9\x2f\x62\x55\xe9\xba\x5e\xd0\x2f\x44\x56\x6f\x2f\xe9\x57\x9f\x71\x50\xdc\xaf\xd2\xc4\x92\xf2\x7e\xab\x37\xab\x1c\xef\xbb\x0d\x6c\x5e\x65\xeb\x57\xf2\x87\x32\xcd\xac\x0a\x4b\xdf\xd1\x36\xb5\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x76\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\xb5\xad\x58\xcf\xe3\x75\x6f\x61\xd2\x77\x11\xc6\xfc\x7a\x39\xcc\xc9\xa2\x88\xda\x93\x56\x76\x73\x25\xb8\x5b\xec\xfe\x13\xe2\x21\xe1\x5b\x37\x74\xdb\x24\x45\x0f\x1d\x25\x08\x96\x36\x1c\x03\x72\xf9\x2a\x79\x3e\x6b\x98\x87\xfd\x98\x4d\x36\xf0\xa1\x2f\xc2\x10\x5c\x35\xb6\xae\x58\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\x63\x7e\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\x01\x07\xa6\x67\x30\x8f\x49\x9a\x6a\x05\x1e\x54\x13\xc6\x0f\x79\xe6\x74\x96\xd2\x5b\x50\x41\x83\x4e\xf5\x8d\x15\x84\x2b\xe8\x2f\xd8\x21\xf9\x4c\xa5\xd2\x72\x45\x43\xac\xa6\x6b\x04\x24\x1e\xa8\xab\x35\x27\xf6\x86\x1b\x7d\x18\x7c\x77\x7d\x7b\x3f\x3c\x1b\x7d\x28\xa2\xf3\x5d\xfa\x99\x47\x84\x72\x00\xff\x9c\x8d\x98\x0f\xa8\xf5\x00\xc8\xb0\x97\x08\xc7\x71\x81\x6c\x60\x95\x48\x23\xb3\x2d\xe5\xc8\xc1\xa9\x58\x19\x4a\xbb\xa4\x99\x07\xc8\x41\xda\xd7\x93\xb5\xc4\x75\x56\x3a\x39\x26\x93\x6a\x49\xca\xcb\x8e\x2e\x9b\x10\xbb\x55\x19\x5d\x9b\x28\x07\x2e\xc8\xc8\xb3\xd3\x95\xe0\x76\x3e\xc6\xe6\x12\x5e\x8f\xdb\xb9\x0d\xd9\x60\x53\x3f\xd2\xcf\x24\xbe\x6d\x91\xaa\x76\x92\xd1\xd2\x29\x12\xb0\x71\x17\x72\x46\xd7\xd1\xf8\xfd\x54\x1e\xf4\x77\xdd\xd9\xd2\x75\x01\xc9\x56\xc0\xab\x02\xb6\xaa\x42\x18\x45\x44\x28\x4c\x19\x9a\xc2\xc1\x66\xd1\x02\x01\x60\x07\x01\x1f\xf6\x1f\x51\x4a\x19\x20\x07\x2c\x5b\xda\x87\xf2\x3c\xd6\x10\x5a\x2f\xcf\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\x83\x9f\x97\xca\xaa\x95\x16\x96\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xc6\x89\x26\x0b\x45\x1e\x6e\x2f\xb6\x92\xef\x9a\x9d\x65\xad\x18\xe1\xa1\x74\xd5\x8c\x88\xd0\xe5\xd3\x98\x44\xab\x50\x4c\xbb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x32\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\x76\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x8d\x93\x66\x87\xb2\x24\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\x47\xa6\x42\xfc\x40\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x11\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\x06\x37\xe7\x0d\x6b\x7d\x51\x75\x21\x7d\x59\xe5\x6c\x12\xef\xcd\xda\x35\x48\x52\x90\x9e\xb8\x17\xa8\x48\x76\xa6\xdb\xc1\x20\x19\xa7\xff\x4d\x39\x92\x60\x1f\xd0\x7a\x9b\x54\x86\x52\xda\xf1\x0a\x60\xde\xf5\x32\xf1\x8a\x65\x58\x13\xf4\x28\x1c\x90\x4d\x03\x09\x81\x7e\xea\x31\xc6\x07\x21\xf0\x0f\x37\x05\x73\x6d\x6c\xc1\xce\xc0\x90\x8a\xd9\x74\x41\x43\xfa\xd1\x50\xb4\x07\xcb\x00\xf8\x0f\x57\x90\xd1\xc5\x06\xdb\xdc\xf5\x70\xba\x21\xb5\xad\x07\xa0\x54\x8c\xcf\x99\xbf\x2d\x16\x35\xce\xb0\xb5\x3b\x80\x12\xe5\x2a\x25\x34\x15\xd6\x3b\x1a\xb1\x20\x60\x45\x1a\xb5\x47\x9f\x11\x57\x9c\x04\x2a\xde\x32\x00\xb6\x86\x24\x1d\x2f\xfc\x94\x76\xa0\x9a\x22\xaf\xe6\xe5\xf2\x22\xb5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\xa0\x33\xad\xab\x38\x04\xc7\x6a\xa5\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xcd\xaa\xfe\x39\x23\xd1\x26\x10\x32\x37\x58\xe0\x94\x28\x22\x96\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x2a\x48\x18\x3f\x8b\xb5\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x35\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x6d\xe7\xf4\x3a\x50\x28\xf7\x35\x50\x91\x52\xb8\xd0\x9e\x60\xa0\xac\x1e\x65\x1b\xf8\xc9\x2a\x5e\xba\x13\xde\xed\x32\x1c\x5c\x0a\x6d\xe5\x50\x95\x72\x27\x80\x4a\x40\xa5\x32\x38\x20\xcd\x00\x26\x20\xb4\x34\x45\x48\x06\x6e\x3f\x0b\x6f\x57\x18\x74\xad\x64\x55\x2d\x2e\x55\x59\xae\x15\x3c\x6e\x57\xe0\x0e\xbd\x44\xb3\x6b\x89\x66\x15\x29\x97\xa2\x6b\x35\x75\x12\x51\xc1\x99\xb1\x45\x9f\x2d\x40\x40\x79\x82\x90\x7b\x64\xaf\x48\x5b\x39\x16\xae\x7e\xca\xfc\xbf\xca\x1c\xdc\x11\x75\x48\xaa\x4d\x49\x95\x47\x81\x0b\x0a\x3c\x50\x49\x28\x0d\xd8\xb8\x1a\x18\xad\x09\x83\x34\x56\xfe\xf3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x07\xf0\x16\xc0\x20\xc8\x7c\x92\x52\x85\x70\x30\xc3\x92\x49\xf2\xc0\x9e\x67\xfd\x01\xcc\xb8\x31\xcf\xbe\x09\xa2\x67\xc5\xa1\xd9\xc0\xbe\x56\x34\xb2\x6d\x2a\x7d\x10\xd3\xfc\xb2\xc9\xf4\x81\xc6\x13\x6a\x98\x8d\x67\xae\xcf\xa6\x47\xcd\xd6\x06\x0b\x1a\x0a\xc8\xae\x54\xaa\xca\xdd\x62\x0d\x3d\x2b\x32\xe9\x8b\x8d\xe8\x94\x4a\x5f\xbc\xbe\x8b\x5c\xfa\xb6\x32\x65\xcb\x72\x2b\xdd\x27\x2d\xf6\x6f\x97\xb3\xab\xb8\x0b\x9c\x0f\x25\xa5\x9b\x56\x49\x69\xdf\x50\xcd\x8a\x84\x80\xcd\xc3\xcb\xd7\x51\x07\x8b\xfc\xac\x90\x8a\x82\x74\xcb\x32\x26\x0c\xa9\x72\x7e\xc6\x15\xe4\xd4\x44\x50\xc2\xbd\x96\xe7\x39\x62\xcd\x12\xc8\x72\x9e\xb8\x6d\x8a\xc6\x4e\xd1\xcf\x82\xf3\xe7\x66\x61\x2d\x5a\x3f\xf9\x20\x37\xa3\x2c\xdb\x62\xec\x55\x11\xb3\x70\xf1\xb5\x05\x27\x69\xc1\x63\x93\x84\xe3\x86\x53\xd9\x3c\xf4\x5a\x02\xc5\xca\x73\x61\x2f\xdd\x1d\xaa\x76\x35\xee\xdc\x39\xdf\xc4\xcb\xc8\x96\x1b\xbb\x80\x69\xa7\xc6\x57\x3c\xb5\x9b\x14\x99\x05\x50\xd1\x9d\x41\xa1\x56\xd1\x09\x74\xe3\x07\xe0\xdd\xb5\x43\xc7\x26\xd2\xc5\x03\x74\x57\xb6\xa4\x34\x61\x5b\xbc\xff\x05\x26\xbd\x6e\x61\xe0\xc0\xdb\x28\x6c\xb4\x2f\x0d\xed\x06\x50\x11\xd8\x06\x49\x56\xf8\xb0\x17\xed\x72\x16\x13\xc1\x08\x56\xf3\xd7\xcb\xb1\x38\xdd\xd6\x38\x1d\x8c\xef\x65\xf3\x2d\x4e\x77\x52\x15\x3e\x1c\x6e\xb9\x42\xfa\xca\x71\xea\xd7\xbb\xd8\x89\x6c\xe8\x81\xaf\x11\x5c\x53\x1c\x1b\x8c\x86\x01\x04\xcd\x3a\x54\xba\x55\x1a\x46\xb3\x32\xf7\x32\x09\x29\x0d\x56\x9f\x5a\x2a\x8a\x3e\xec\x61\x65\xe5\x15\x4b\xf2\x45\x64\x7e\xbc\x7c\x32\xc2\xb2\x1a\xce\x79\x90\x9f\x00\x85\xb4\x15\xa6\xcc\x72\xaf\x65\x29\x09\x5a\xa2\x4c\x71\x53\x16\xc2\xde\xe7\xb7\x7c\xf1\xe9\x2d\x7d\xb2\x43\x9f\xec\xd0\xb0\x47\x7d\xb2\x03\x42\xfb\x96\xec\xb0\x4a\x01\x5d\x66\xfe\xf4\x1e\x39\xa8\xb5\x59\x2a\x70\x63\xf6\x77\x85\x16\xb9\x79\x40\xbf\xb3\x20\x86\xd1\x50\xf6\x17\xfb\x43\x63\x40\x54\xed\xb3\xea\x6c\x43\x6b\x26\x5b\x54\x9d\x02\x58\xc4\x89\x45\xa1\xb3\xe1\xca\x65\xeb\xd3\x32\x43\xe9\x88\x7d\xcf\x9f\xc9\x13\x11\x07\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xe8\x18\x38\x08\x25\x40\x73\x13\x05\x81\xd1\x15\x4e\x49\x6c\xea\x1d\x06\x41\x8d\xd6\x5c\x6b\x1d\xad\x4d\x60\xab\x80\x1b\x6a\xb6\xc1\x45\x4d\x8c\x98\x09\x34\x34\xc1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x37\xf0\xef\x8e\xd0\xbd\xbe\x9f\xa8\x2c\x8f\x37\xc0\x5e\x6b\x1b\xdb\x88\xcd\x04\xcf\x33\x6f\x41\xe3\x13\x53\xf8\xd6\xc4\x3e\xd5\xdd\xc0\x30\x18\xe7\x03\x8e\x70\xac\x35\xf1\xe5\x84\xf3\x26\x31\xa8\x1b\x01\x18\x85\x04\xa4\x8f\xa1\x0f\xac\xb3\x81\xee\xc6\x7b\x1b\xc0\xb6\x2c\x83\x61\x7f\x21\xd7\xf2\x19\x91\x60\x13\xf2\x36\xf7\x52\x16\x79\x19\xa9\xa0\x71\x9c\xcb\x2c\xa2\xde\x6b\xe1\x2c\xfb\xcd\x20\x08\x45\xe7\x36\xe2\xcb\xa4\xa8\xda\x7b\xe2\xc5\x6c\xa5\x9d\x63\x67\xdb\xf8\xc5\x4d\x2e\x32\x0e\x92\x58\xb2\x70\xa0\x0d\x16\xe7\x2d\xe3\x59\x6e\xa2\xda\x68\x18\xe4\xd4\x48\xd9\x54\xaa\x4b\xac\xa2\xb9\xe6\xdc\x05\xde\xd9\x8e\xa2\xfd\x0a\xae\xfc\xb2\xf6\xd3\x86\x19\x9c\x86\xbd\xb7\x38\x14\x3a\xd8\xd3\xcd\xbd\xef\x82\xeb\x9d\x24\x91\xea\xfe\x8c\xd3\xcd\x96\xb3\x0e\xac\xa2\xee\x13\xfb\x44\x4f\x74\x15\x15\xad\x1a\x7f\x37\xda\x2a\xd7\xdb\xda\x79\x1c\xe1\x16\x00\x32\x67\x16\xae\xab\x78\xd1\xd6\x67\x6d\x71\xfe\x0b\xba\x59\x0e\x90\xc5\xc8\x7f\xd2\xe2\x88\xb7\xb7\xa6\x38\xd3\x4a\x84\xe2\xfa\x96\x14\x33\x23\xc7\x9a\x28\x59\x84\x51\x2e\xa8\x3b\xfb\x95\x8c\xf0\x76\xea\x00\xfb\xe4\x71\x58\x4f\x29\xc2\x41\xa9\x39\xe3\xee\xc7\x91\xca\xb1\x0f\x4b\x04\x9a\x70\x25\xd0\x4d\xf6\xbb\x73\xab\x0b\x27\xde\x35\xec\xe9\x4a\xc2\xde\x62\x97\x71\x13\xba\x61\xa7\x93\x46\xd9\x2c\x80\x46\x6c\xb6\x11\x77\xa9\x7c\xd0\xf8\x65\xb7\xea\x0d\x8d\x9f\x3a\xd9\x67\x93\x6f\x97\x40\x37\x6d\x1c\x99\x5d\x8a\x72\xb7\x61\xb0\x56\x7a\x0a\x41\x2b\xad\xfd\x0e\xb0\x67\x29\xb8\xe9\xb1\x95\xa6\xfe\xcb\xff\x65\x2a\x65\x99\xa5\xf9\x2f\xc4\xc5\x88\x99\xdf\x0f\x7c\x95\x0a\xfd\x42\x01\xff\x8a\x53\x52\x00\x64\x8a\x32\x94\x1e\x00\x8a\x58\x28\x34\x03\xf5\xeb\x41\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xe8\x01\xcf\xcc\x52\xcc\xf0\x0c\x80\x85\x0f\x20\x2e\x0e\xc4\xd5\x42\x15\x31\x24\x6d\xaa\x1d\x02\xb7\xd2\xcc\xd2\x66\xdb\x16\x55\x7f\xa1\x4f\x23\xca\x5a\x5c\xd3\x22\xb8\xa2\x99\xfa\x6f\x6d\xff\x9b\x49\xec\xf7\x83\xbb\x1f\xc6\xb7\xc3\xbb\xeb\x87\xdb\xd3\x92\xd8\x7e\x7a\xf1\x70\x77\x3f\xbc\x6d\x7c\x56\x64\xaa\xfe\xf5\x61\xf8\xd0\xf2\xc8\x35\x70\x31\xf8\x6e\x58\x2a\xa1\xfd\xd7\x87\xc1\xc5\xf9\xfd\xcf\xe3\xeb\x8f\xe3\xbb\xe1\xed\x8f\xe7\xa7\xc3\xf1\xdd\xcd\xf0\xf4\xfc\xe3\xf9\xe9\x40\x7f\x19\xbe\x7b\x73\xf1\xf0\xe9\xfc\x6a\xec\x82\x8e\xc3\x47\x3f\x5d\xdf\xfe\xf0\xf1\xe2\xfa\xa7\x71\xd0\xe5\xf5\xd5\xc7\xf3\x4f\x4d\xb3\x18\xdc\xdd\x9d\x7f\xba\xba\x1c\x5e\x2d\x2f\xd5\xdd\xbc\x1a\xad\x55\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xae\x8b\x1b\x43\x8f\x87\x07\xee\x2f\x53\x58\xfb\x50\xb3\x40\xe7\x15\x2b\xb8\xc7\x88\x79\xb7\xa5\xbf\x54\x15\x9e\x49\x97\x78\x5c\x1a\xed\x09\x1a\xc0\x59\x01\x85\xa1\xd4\x29\xe4\x35\xf8\x91\x3a\x47\x37\xd0\x61\x42\x53\x0a\x3e\x6f\x74\x88\xaa\x1b\x5e\x6e\xd0\xce\x09\x86\x60\xbd\x76\xf1\xb2\xd3\x20\xab\x39\xcd\x40\x29\x27\xc8\x71\x68\x62\xcc\x09\x06\x79\x76\xc1\x70\x4a\xa3\x6a\x02\x06\x80\xaf\xa2\x02\x68\xa4\xda\x62\x89\xc0\xca\x2d\xcf\x09\xfa\xe1\x2f\xc5\xa0\xc0\x83\x61\x35\xef\xbc\x56\x4f\xcf\x3e\x10\xb9\x59\xd5\x55\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\xeb\x76\x83\xbb\x29\x67\x01\xd8\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd0\x1d\x00\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xc5\xf7\x09\x99\xe3\x27\xca\x5d\xf1\x0a\x53\xe3\x03\xd6\xd1\x8a\x56\xe8\x10\xb5\x1e\x94\x13\x34\x88\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xb0\x3c\xec\x10\x1f\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xbb\x87\x72\xa9\xb3\xc3\xf2\xdd\xbb\xc5\xf5\xaf\x57\x70\xec\x48\x79\xbc\x91\x30\x70\x8f\xe5\xa3\x63\xcd\xab\x04\x02\x07\xaa\xb3\x5d\x8f\x16\x5d\xa7\x6b\xa7\x7e\x65\xc7\x70\xd0\x36\xeb\xb3\x15\x13\x7a\x45\x97\x6e\xc6\x49\xa5\x70\x57\xe7\xfe\x4a\x85\xbf\x1a\x3b\xdb\xa9\xb7\xa7\x59\x1a\x83\x23\x39\xf6\xf4\xbf\xc6\x3c\x6e\xe0\xd3\x6b\xff\xe5\x52\x91\x6d\x1c\xac\xdb\xba\x3e\xa0\x5a\x8a\xae\xf5\x03\x2d\xa5\xc3\x1d\x81\x3b\x75\x17\x06\xa1\xec\x02\x8d\xc0\xdd\x87\x29\xb3\xc5\x78\x88\xf7\x47\xb9\xf2\xd3\xfa\x1c\xfb\x02\x71\x78\xc2\x9f\x4a\xca\x65\x4a\xa4\xc4\x2d\x70\x25\x81\x49\x6c\x1b\xc6\xe0\x4f\xa8\xfd\xb0\x23\x3d\xb9\x33\x79\xaf\xbf\x5a\x66\xf4\xb9\x0d\x35\x63\x37\x51\x2d\xb0\xc6\x2e\xce\x16\x5d\x9b\x6c\x3b\xcd\x5f\x0e\x8a\x50\x1a\x2e\x82\x08\xa3\x36\xf7\x4f\x47\xb3\x5a\x75\xc1\x1a\x6b\x2c\x85\x2e\xbc\xf5\x23\x70\x82\xd6\x37\xc6\xc3\xb6\x7e\x15\x5c\x5e\x9f\x35\xa8\xae\xe4\xef\x0c\xeb\x4f\x47\x3c\x4d\x8d\x5c\x50\xb2\xa5\x1e\x20\x6c\x92\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\x71\x30\x62\xcf\xc1\x86\x94\xc2\x80\x07\x61\x4b\x80\x25\xfa\x59\x1f\x37\xfa\x54\x0a\xae\x06\x91\x91\x42\xa4\x6f\x40\x08\xc6\x21\x58\x14\x8f\x5a\x41\xe0\xc1\x7e\x6d\x41\xea\x1b\x54\x0a\xac\xac\x6f\x5b\xbd\x40\x3f\xb7\xa0\x4c\xdf\x16\x9a\x72\xd7\x21\x04\x95\x02\x9b\x46\xb0\x83\x42\x81\xaf\x0a\xee\xed\x93\x35\x4d\x6e\x6f\x3a\xb1\x08\x15\x7a\xba\x6e\xb5\x7f\xef\x66\xf4\x7b\xe3\x77\xc8\x5b\x20\x4d\x82\xd6\x3c\xbe\x37\x3a\xd4\x32\xab\x4b\xb5\xb7\x81\x18\x12\x1d\x1a\xcc\xc0\xaf\x20\xce\x72\x70\x73\xfe\xd5\x01\xfa\x2a\xcc\x35\xfb\x6a\xa3\x03\x68\xc7\x6d\x8b\x05\x82\x36\x55\x4a\x38\x28\x1f\x3b\xd8\xab\xca\x49\xb4\x7b\x66\x0f\x22\x6a\x3b\x87\xfa\xcb\xd2\x37\xe0\x9c\x86\xe2\x77\xc6\x7f\xeb\xc3\x9d\xad\x0b\xc8\xc8\xb8\x54\x36\xac\x5d\x3c\x62\x93\x45\xd5\xc9\x73\xe0\xbd\x3c\x9d\x4f\xe9\xd6\x05\xdd\x74\x7b\xf5\xe4\xe4\x1d\x87\xe1\x2e\xbf\x0f\x56\xa4\x3b\x0f\x4c\xc4\x35\x9f\x06\x5c\xac\x2d\x4a\xa1\x8f\x5f\x6f\x9a\x55\xc9\x5e\xe6\x16\xb3\x71\x53\x56\xc9\x3f\xef\x8d\xdc\x3a\x04\x7d\x0f\x9a\x56\xc4\xc6\xfb\xb7\x08\xd7\x3d\x95\xbd\x2c\x95\xed\x22\xdf\xa1\x3c\xb8\xf5\x2f\xd0\x53\x23\xc7\x05\xcd\x38\x83\xab\x56\x26\x3c\x83\x2f\x55\xfd\x5b\x5d\x2e\x77\x4d\x9f\x6f\xb0\x26\xab\x9d\xbe\x77\x26\x70\xc0\xb8\x5d\xeb\x63\xad\x0e\x75\xa0\x6c\x09\x22\x4e\x4d\x6e\xa3\xa2\x29\x39\x40\x9c\x25\x8b\x20\xd8\xc1\x9e\x57\x20\x37\x13\xa3\x34\x27\x54\xb8\x4e\x2c\xc2\xe0\x5a\xc9\xf0\x6b\x4a\xe3\x6d\x34\xb2\x45\xa4\xc9\xd5\xe0\x72\x78\x36\x1e\x5e\xdd\x9f\xdf\xff\xdc\x80\x1e\x59\x7e\xec\x00\x24\x83\x17\xee\x7e\xbe\xbb\x1f\x5e\x8e\x3f\x0d\xaf\x86\xb7\x83\xfb\x15\xe0\x92\xcb\x3a\x6b\x03\x2e\xcc\x65\x93\xfa\xb6\x0e\x78\xa1\x33\xf3\x36\xf4\x5e\x87\x98\x0c\x3a\xa1\xa4\x05\x66\xd2\x24\xfe\xb3\x98\x08\x14\x93\x27\x92\xf0\xac\x30\xab\x36\x2e\x58\x80\x3f\xd9\xd0\xfe\x32\x0c\x4a\x68\xb3\xba\xc6\x27\xc8\x54\x7a\x0b\x8a\xdd\xfa\x06\x41\xe4\xc3\x82\xb0\xaf\x14\x22\x9f\xb3\x84\x46\x54\x05\x89\x81\x5c\x58\xf7\x8a\x71\x1f\x42\x74\xea\x0a\xe2\xda\x59\x34\xca\xce\x75\xfe\xd0\x93\x5e\xd7\xf6\xfd\x89\xf2\x78\x68\x2b\xcb\x07\xed\x40\xb1\x6f\x71\x1a\xd7\xe0\xda\x36\x18\xdd\x4b\x98\x07\xea\x19\x3a\x36\xb9\xaf\x05\xca\xad\x79\x90\xab\x6f\xc3\x65\x71\x32\xa5\x73\xbd\x3c\x50\xa6\x1b\xa5\xbe\x71\xb8\x4b\xa9\xac\xe6\x0e\x70\x37\x6c\xec\xfa\x9a\x01\x0b\xb5\x6a\x31\xcc\xc4\x9c\x62\x24\x48\xca\x95\x56\xc0\x4c\x44\xc0\x81\x16\xaa\x28\x4e\xe8\xaf\x80\x50\x25\xc8\x51\x10\x41\xe1\x70\xbd\x0a\xf7\x81\x45\x8f\x38\x1a\xb1\xb3\xe1\xcd\xed\xf0\x54\x33\xa4\x23\xf4\x20\x01\x7c\xaa\x34\xf5\x33\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xb6\x60\x30\x22\x04\x17\xdd\xf9\x83\xef\x6f\x08\xdf\x35\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb5\x26\x72\x90\x33\xb0\xf3\x94\xac\x5b\xfc\x5c\x5a\x91\x10\x7c\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x7c\x67\xf7\xf9\x95\xfa\xbc\x81\x6f\x97\xcd\xf3\x1e\x42\xec\xa4\x2a\xb0\x40\x0d\x5c\xa8\xaf\x79\x53\x99\x67\xab\xa8\x28\xde\x02\xa8\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x38\x6c\x68\x69\xab\x07\xcd\xac\x7b\x54\xf5\x9a\xe1\x94\xe7\x0c\x94\x06\x08\x63\x6d\x18\x8c\xcc\x08\x53\x2b\x06\xf3\x56\x30\x2c\x95\xa1\xee\x2f\x12\x4b\xc3\x40\xdb\xc0\x58\x9a\xfc\x49\x50\x78\x79\xbd\x6b\xd9\x05\xe5\x95\x9c\x4a\xfa\x50\xf9\xfb\xb9\x59\xcb\xc6\xf2\x71\xeb\xee\xee\xb1\x7c\x5c\xdd\x55\x4c\xa2\xc7\x75\x2f\x9b\x6a\x66\x66\x62\xeb\x56\xd7\x8c\x7d\x0b\xfd\xd4\x16\x66\x81\x72\xe5\xd1\x23\xfa\xfe\xfe\xf2\x02\x4d\xa9\x96\x7b\xf5\xb5\x72\x85\xb5\x8c\xfd\x20\x12\x67\x17\xb6\xb6\xd5\x5c\x24\xfe\xee\x85\x8d\x77\xa2\x54\x20\x25\xe8\x1b\x0d\xcf\x88\x33\xf6\x0a\x8b\xb5\x57\x29\xcc\x22\x30\x8b\x79\x6a\xe6\x71\x2c\xf3\xe9\x94\x7e\x3e\x52\x58\x7c\xd3\xb2\x1e\x26\xaa\x62\xfc\x77\x3e\x19\xeb\x11\x6d\x79\x11\x37\x35\x87\x6c\x39\x65\xbf\x6c\x76\x66\x67\xe6\xdd\xff\xcb\x27\x90\xeb\x9e\x09\x0e\xf8\x7f\xe0\x9d\xb3\x91\x0a\xf6\x15\x47\x49\x47\xc8\x25\x50\x95\x20\x4e\x22\x2e\x04\xb1\x29\xf2\xa6\xb2\x68\x86\x85\xa2\x60\xad\x75\x10\x29\x25\x6c\xfc\x62\x8b\xc2\x82\xdf\x73\x5c\xe0\x50\x4f\x08\x01\x07\x4f\x46\x93\xf5\x94\xde\xd3\x92\x6f\xb2\x72\x02\x6d\xe4\xa9\x45\xcd\x04\x83\xcc\x4a\x11\x6b\xf8\x44\x98\xda\x89\x7e\x02\x4d\x34\x24\xed\x77\xf3\x32\x98\x02\x9f\xe7\x67\xc5\xe5\xe6\x42\x7a\xc3\xa8\x26\x25\x30\xdc\xf3\x36\x51\xca\xba\xd4\xdb\x1c\xfd\x4f\x9d\x7d\xc7\xf0\x6a\x7d\x5d\x56\x84\xc6\xdb\xd5\x2e\x0a\x7d\x17\x61\xad\x0e\xd8\x7f\x43\x18\x1f\x49\x8c\x15\x23\x80\x8f\xb0\xca\x69\x75\xcf\x4d\x9f\x9a\xb6\x2a\x5d\xae\xdc\xf2\x0d\x30\x6b\x4a\xcd\x7c\x22\x90\xd2\xb9\x8b\x40\xf4\x75\x52\xf7\x61\x20\x0f\x22\x81\x10\xea\xa5\x56\x2c\x53\x64\x5c\x73\x3e\x2f\xd9\xe1\x0e\x32\xba\x19\x8c\x16\x1a\x49\x26\x48\xa4\xaf\xb2\x13\x74\x93\x10\x2d\x79\xe5\x5a\xfa\xca\x93\xc4\xe1\x7b\x2d\x97\x0e\xd7\xc2\xa4\x7b\xf1\x79\x05\xba\xc7\x92\x89\x39\x7c\xbb\xe5\x33\x0b\xd6\x60\xf7\x80\x0b\xc1\xfa\x82\x09\x19\x0c\x89\x65\x2d\x12\x38\xfc\xc2\xc4\xcd\x82\x29\x09\x97\x2e\x32\xfa\xab\x66\xbf\x82\xc8\x39\x6f\x4d\x72\x0c\x67\xfb\x32\x73\x70\x4b\xf9\x82\x93\x70\xf7\x61\x5b\x5c\x75\x07\xb9\xa6\x72\x07\x96\x44\x9c\x65\x53\xf4\xb5\x1f\x7c\xf4\x87\x45\x5b\xb5\x77\xab\x1d\x1a\xdc\x92\x85\xa9\x2d\x44\x3e\x2b\x5c\x17\x85\x32\xb3\x30\xbe\x57\xff\x79\x61\x40\x2e\x52\x02\xa8\x92\x45\xcd\x39\xa4\xef\xda\xb6\x2d\xd6\xf3\x1c\xe7\x62\x2d\x48\x8a\x02\xb3\x7c\x1d\xce\x6d\x93\x51\x8a\x61\xe9\x45\x68\x66\x97\xb6\x94\x04\x88\xd1\x36\xd4\x48\x96\x70\xe0\x2c\xd9\x98\x65\x6c\x54\xf1\xda\x99\xf2\xb6\x6e\x35\x90\x92\x0b\x51\xe6\xa5\xbc\x6b\x25\x0a\x2c\x4d\xa0\x47\x16\x5b\x1f\x59\xcc\xd6\x15\xf1\xb4\x07\x38\x80\x4a\x40\xe2\x7f\xe1\x40\xab\x0a\x0e\xd6\xe8\xbd\x2a\xf3\xa9\xb4\x3b\x9d\xd2\x9c\x4a\x5f\x68\x5e\x72\xb6\xa5\x07\x4e\x4f\x66\x31\x86\xc4\xd1\x6d\xa2\x70\x4a\xf3\x37\xde\x03\x68\x93\xc4\xc8\xa0\x17\x18\xdc\x63\xbb\x76\xde\x73\x92\x61\x41\x98\x1a\xb1\x5b\x3d\x0a\xf3\x45\x11\x89\xe1\xe2\x70\x1c\x16\x3d\x54\xac\x9d\x22\x6c\xbf\x82\x45\x6f\x0b\x84\x93\x63\xf3\x12\xa8\xa6\x2f\x98\x64\xff\x9d\x79\xc7\x60\x1e\x58\xcc\x1f\x3d\x55\x3a\x2d\xd4\x78\x2d\x40\x46\x73\x0a\x90\x03\x31\x91\xf6\x42\xa2\xca\x62\x4a\x78\xf1\x3b\x27\x0e\x7d\x19\x3e\xf3\xfc\xab\x89\x61\x3b\x43\x01\x73\x06\x3a\x39\x62\x41\x1f\x4b\xc0\x3a\x8d\xb2\xbe\xa1\x2a\x01\xfb\x4c\x63\xef\xf8\x82\x7f\x9a\x1d\xe2\x82\xce\x28\x0b\x4a\x26\xd9\xe9\xa5\x38\x03\xf3\xae\x39\x83\x7c\xea\xef\xb4\x7b\x9b\x65\x70\x04\x23\xfe\x9f\xff\xfe\xdb\x11\x6d\xf3\x7e\xc8\xb1\x5d\x81\x7d\xd8\xc9\xf5\xb6\x25\xdc\xf9\x00\x45\xa4\x05\x9d\x22\xd0\x69\x65\x29\x73\xa2\xf8\xd5\x5e\x6e\x9a\x68\xb8\x9a\x1b\x77\x6f\x99\xdc\xc1\x37\x22\xf2\xe5\x55\x04\x02\x16\x57\x04\x04\x14\x5e\xdf\x20\xe8\xd6\xd5\x88\x30\xc1\x92\xba\xfd\xca\x85\x52\x61\x50\x01\x98\xdf\x36\xc1\x89\x73\x2c\x5f\x2e\x02\xa5\xb1\xb6\x91\x31\x1a\x87\x77\xe4\xaa\x58\x14\x33\x48\x93\xd4\xa8\x77\x25\x97\x44\x98\x03\xed\x51\x9f\x2c\xf1\x84\x50\x85\x10\x8a\xb8\xc2\xa5\x46\x52\x4c\xd7\x0a\x9b\xd7\xef\x37\x03\x29\x96\x6c\xea\x78\x46\xc4\x38\xce\x4b\x31\xd2\xab\xda\xbe\xd1\x1f\x9d\xe5\x6a\xb1\xba\x7d\x99\xe0\x7a\x6d\x97\x65\xe0\x95\xfa\xfd\x96\x66\x57\x0b\x86\x41\x24\x4b\x59\x38\x6c\x81\x86\x24\x15\x68\x48\x1b\x5a\x59\xb2\x04\xc0\x45\xc3\x14\x20\xc7\x15\x0a\x83\xbd\x89\x0c\x80\x35\x8c\x1c\x4d\xf2\xc2\x72\xe2\x4b\x02\xc4\x47\x23\xf6\xd1\xd4\xd4\x00\x65\xc6\x0c\x20\x82\xbc\x16\xf2\x39\xe3\x92\x94\x12\xad\x1a\x60\xfe\x6d\xa2\xa4\x1d\x46\xb3\x4c\x5a\x7c\xb4\xbd\x48\xfa\xe6\x20\x9f\xf5\x0d\xaf\x4f\xb9\x99\x02\xb7\x92\x7a\x22\x9a\x51\x4d\x3b\xe3\xc6\x93\xf6\x72\xa5\x66\x8b\xd0\x25\x80\x7b\x52\xc9\xe2\x00\xf9\xe9\x55\x08\x22\x21\x4f\x04\xac\xc6\x30\xc6\xb0\x98\x43\xd9\x7c\xd5\xc2\x4e\x56\x1d\xa0\x22\xcb\x11\xd8\x02\x8a\xab\x23\x28\xe7\x82\x35\xd1\x62\x39\xcb\x65\xeb\x84\xac\xa6\xf8\x8b\x35\xa4\xd0\x41\x58\xd4\x62\x41\x14\x22\x9f\x15\xb1\x65\x2f\xef\x5d\xca\x5c\x3d\xca\x1e\x35\x67\xfd\xb4\x8b\x48\x2f\x5e\x80\x78\xe0\x12\xa5\x5d\x4e\x60\xec\xee\x7d\x9b\x23\x37\xc7\x2c\xb6\x89\x9f\x56\x96\xd6\x32\x05\xcc\xce\xd8\x96\x7c\x48\xbc\x4d\x5f\x0c\xd0\xc0\x4d\x9b\x06\xb6\x1c\x2e\x32\xa7\x17\x69\xc9\x1c\xa2\x08\xb8\xd0\x02\x6a\xce\x14\x4d\x34\x71\xd8\x31\x68\xad\x39\x67\x1e\x8f\x0f\x02\xb8\xdb\x20\xdf\xa8\x94\x94\xcd\xc6\x76\x25\x5d\x0e\x63\xb7\x8b\xa1\x4c\x53\x97\xa6\x29\xf3\xe3\x77\xae\xa1\xe5\xb6\x63\x43\xd6\x00\xc7\xe5\xb2\x27\x41\xb0\x66\xdc\x4d\xc6\xe2\xa8\xb9\xa4\xcb\x31\x8d\xcd\x52\x50\x53\x5d\x19\x26\xba\x8e\x79\x19\xc4\xba\x3a\x5c\x41\x71\x85\x48\x9b\x11\x69\xf2\x9c\x20\x20\x5d\xb5\xa4\x7c\xca\xd6\x54\xcf\x73\xe6\x45\x34\x5b\xdb\xc9\x27\xb4\x57\xb2\x46\xb1\xeb\xce\x46\xdd\xe3\x24\x99\xe0\xe8\xd1\x2b\x1b\x5e\xe5\xe6\xc2\x61\xe3\x6b\x01\x15\x8a\x7f\x19\xe2\xd2\x03\x8d\x40\xba\x09\x9d\x62\x06\xb0\xc6\x0e\xbb\xe8\xdc\xac\x9a\x45\x02\x33\x08\x45\x66\xf4\x26\x84\x3f\x26\x59\xc2\x17\x69\xcb\x7d\x56\xcd\x94\xdb\x26\x20\xa5\x2d\x51\x6f\xa7\x57\x59\x85\xe9\xad\x7d\x99\xd5\xd2\x6e\x76\x00\x9f\xb4\x06\x97\xfc\x94\xf0\x09\x58\x0e\xad\x96\xed\x52\x49\x82\x8c\x86\xea\x79\x5e\x37\xc1\xa5\x7a\x22\xa9\xcc\x12\xbc\x58\xd6\x83\x49\xad\x78\xd9\x7d\x33\xa9\xf8\xab\x8d\x60\xdd\x83\x92\x1b\x3f\x7f\x09\xa0\xde\x0b\x27\x09\x98\x77\x0d\xff\xaa\x18\x93\x4c\x4e\xdb\x91\xf1\xc5\x2a\x3e\x62\x0a\xcf\xdc\xe6\x5a\xe1\x92\x3f\x33\x22\xe4\x9c\x66\xa5\xa2\x80\x5b\x47\x41\x5b\x8a\xb6\xff\x31\x31\xbf\x6b\xf0\x4e\x9e\x1d\x1a\x20\x0e\x4d\x1f\x32\xc3\x51\x61\xfc\x8b\x12\x2c\x25\x9d\x2e\x02\xfc\x0c\x1f\x50\x0a\x59\x4a\x65\x6d\x39\xa8\xc3\xd5\xc4\x68\xcc\xf8\x76\x93\x40\xbe\x7d\xf2\xdc\x43\xf9\xf8\xd1\x38\x04\x2a\xd3\xf7\x49\x1d\x2c\xc5\xdd\xd4\x16\x34\xa5\x15\x70\xd5\x64\xca\x6f\x96\xf0\xbd\x14\xe3\xa6\xdd\x8c\x50\x08\x93\x76\xd8\x56\x91\xf1\xb8\x16\x21\xe6\x8b\x2a\x65\x0c\xc2\xe6\x6b\xc5\xc9\x99\x3f\x35\x71\x7a\x4c\x0c\x80\x0e\x28\x3e\x3e\x40\x72\x2b\x2c\xa9\x2e\x74\x71\x46\x12\xb2\x93\xc0\xe2\x0d\x88\xa4\xea\xb5\x0f\xc8\x63\x29\x69\x14\x58\xfa\xab\x8d\x0b\x1b\xc4\x3b\xb7\x20\xd2\x34\x0f\xfd\x27\x33\x50\x1b\xf2\xdc\xb4\x8b\x60\xff\x82\x55\xee\xaa\xbb\x34\x41\xdb\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\xfb\x48\x6a\x6f\x1c\x19\x5c\x1b\xd7\x27\xd2\x25\x8a\x61\xe5\x01\xd8\x88\x03\xd5\xf9\x74\x37\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe2\xde\xd7\xf1\x7f\x4f\x34\xb1\xb3\xbc\x86\x1d\xad\x7e\xf3\x21\x5f\xef\xd4\xde\x11\x25\xdd\x95\x50\x43\x0b\xb4\x9b\xb3\x87\x5b\xb0\x1f\xc7\xd2\x08\xae\x5f\xbc\xdc\xb2\x35\x16\x80\x1d\x99\xcd\x88\xff\x0d\x09\x54\x66\x8e\xb1\xfd\xc2\x67\xbf\x97\x70\x9f\x70\x09\x2b\xcf\xac\xd1\xdb\x73\xbd\x2a\x69\x7f\xe9\xa2\xd7\xfa\x34\x5e\x1d\x55\x41\xdd\xbd\x3c\xb8\x9e\x3c\xe8\xb0\x24\xf7\xf0\xf2\x6f\x3b\x06\xfb\x79\xff\xec\x81\x70\x58\xbb\x12\x77\x27\x22\xbe\x23\x32\xd9\x0b\x49\xb1\xb6\x15\xaf\x25\x2f\x1e\x3a\x30\x9f\x02\x1a\x67\x7f\xb7\x68\x3f\x4e\xf2\xad\x75\x03\xbd\xdc\x05\xbb\x9a\x5e\x76\x42\x1f\x80\x6b\x89\x21\xfd\x37\xb7\x85\x32\xe0\xf0\x06\x21\x63\x35\xdf\xc3\x8a\x60\x3c\x3b\xbc\x4e\x61\x78\xb5\xe5\x7c\x89\xed\xb5\xb9\x5e\x9d\x37\xf7\x25\x49\x6d\xdd\xb1\xec\x42\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x3e\x26\xb6\xdb\x2d\xda\x80\x20\xe3\xb6\x6c\x97\x87\xac\xa9\xba\xd9\xf6\xd9\xea\x2e\x95\x6d\x9c\x09\x32\xa5\x9f\x37\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\xd4\x4b\x03\xf7\x0c\xd4\x57\x0b\xe2\xf6\xec\x4a\xdb\x9a\x4a\x23\x56\x24\x00\xda\xec\xbf\x47\xb2\x40\x5c\x94\x7e\xda\x14\xeb\x70\xf7\xb5\xdd\xcc\xbe\xce\x95\xca\xe4\xc9\xf1\xf1\x8c\xaa\x79\x3e\x39\x8a\x78\x6a\xc2\xcd\xb9\x98\x99\x3f\x8e\xa9\x94\x39\x91\xc7\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\xd0\x63\xea\x7e\xa7\xf2\x96\x13\x2c\xb7\x8b\xec\x71\x99\x5a\x2f\x9c\xb1\x1b\x74\xe3\x72\x24\xf5\x37\x52\xe1\x34\x0b\xa3\x47\x4d\x75\x34\xa9\x70\x51\x93\x01\xd2\xef\xf4\x34\xd1\x1c\x67\x19\x61\xed\x66\x07\x93\x4f\xb9\x05\xeb\x71\x19\x99\x76\x84\xe4\x73\x96\x60\x56\x46\x19\x80\x02\x43\x82\x44\x84\x29\x9b\x01\x5f\xd4\x4b\x06\x6a\x34\x48\x37\x86\xff\xaf\x97\x71\x07\x73\xa4\xb2\xa8\x1c\xe6\x86\x63\xab\x78\xba\xda\x8e\x38\x58\xba\x6a\xe5\xd4\x62\xed\x88\x5b\xb5\x65\xb9\x78\x77\xf5\xfa\xd9\xeb\x57\x6e\x11\x9c\x8d\xc9\x67\xcd\xe4\xe4\xa6\xb8\x54\x0f\x92\x48\x34\xf8\xe9\x0e\xc9\x05\x53\xf8\xf3\x09\xba\xa4\x0c\x04\xd8\xef\x79\x2e\x24\x3a\xc3\x8b\x43\x3e\x3d\x4c\x39\x53\x73\x74\x09\xff\x6b\x7f\x7a\x26\xe4\x11\xfd\x4c\xb0\xb0\xfc\xc1\x56\x5e\xf3\x45\xbc\x35\x09\x89\x9c\x49\x44\x9e\xf4\x09\xfd\xc3\x7f\xa2\xd4\xb4\x7c\x82\xbe\x3d\xfe\xc3\x7f\xa2\xdf\xc1\xff\xff\xff\xd1\xef\x5a\x34\xfd\xf5\x90\xad\xa0\x3e\xef\x6d\xd9\x9d\x7b\x50\x59\xa9\x0d\x4a\x96\x9f\x0a\x5e\xec\x54\x63\xcb\x8f\x34\x7a\xe4\xd3\xe9\x58\x13\x86\xc9\x57\x1b\x63\x51\x43\x45\xde\x10\x26\x94\xda\x02\xcb\xa6\x60\x5b\x51\x2a\xc5\x76\x6a\x80\x0d\x1c\xbb\x96\x79\x51\x60\x16\x82\x88\x4a\x45\x7b\xa9\x84\xaf\x48\xac\xb9\xea\x3a\xa7\xc3\x59\xf7\x5c\x8e\xb3\xb3\xe0\x84\x40\x20\x61\xd1\x70\x1f\xf8\x17\x46\xb1\x9a\x40\x1f\xbb\x90\x8d\xc7\xa1\x16\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\xd6\x3a\x5f\x1d\x2a\x79\xc7\xc5\x56\xfa\xd6\x23\xa9\xc5\x6c\x77\x2c\x0b\xe4\x4a\xd5\x86\xe5\xeb\x21\x11\x9a\x0b\x0f\xd7\x6b\xec\x22\xb6\x78\xe0\x6a\x2b\x26\x15\x26\xb8\xac\xdb\xa1\xd7\x53\x3f\xf3\x9f\xac\x1a\x26\x44\x9a\xb9\xb7\x8b\xb2\x68\x30\x5a\x2d\x22\x69\x96\xd8\x30\xe2\x06\x4c\xbf\x55\x1b\x7a\xe7\x61\x1c\xa0\x71\x08\x7b\x84\x94\x0f\xe6\x24\x5b\x9b\x27\xdf\xbc\x9f\xb9\x88\xc8\x29\xdf\x2e\xec\x35\xa1\xac\x16\x2f\xdf\xbd\xe2\x8e\x5f\xbd\x0b\x5b\x5b\xc9\xc1\xde\xf2\xb8\x50\x16\x8c\x5b\xc0\x16\x5b\x08\xf0\x36\xcb\xb3\x01\xdc\xb6\x5d\x40\x3a\xd6\x4a\x00\x6c\xc1\xb5\x8d\xe1\xb8\x60\x78\xae\x82\x44\xa5\x70\x84\xc0\x9a\x17\x2e\x89\x5d\x83\xa0\xa2\xad\xc7\x11\x14\x43\x29\x22\x95\x2a\x45\xc7\xb1\xa9\x08\x22\x36\x84\xe4\x34\x75\x89\x0e\x90\xc0\x10\x94\xa9\xe6\xba\x3d\x49\xc4\xe1\x14\x47\x94\xcd\x0e\x02\x34\x46\x40\x46\x08\xaf\x83\x26\x22\xbd\xc7\xf2\x71\xb7\x81\x86\x5b\xd7\x69\xa4\x71\x51\x2b\xcc\xe2\xa7\x18\xc7\x06\xad\x41\xd1\x29\x2c\x1f\xdb\x00\x84\x6a\xe8\x65\x4b\x46\xe7\x97\xc2\x61\x9e\x2d\x1b\x9f\xcb\xb4\x26\xa1\x3e\x05\xa5\x09\x5c\xe5\x60\x8b\x65\xe8\x12\xdb\xb0\x07\x1b\xa9\x82\x78\x2e\x19\xbf\x9c\x73\xa1\xc6\x1b\xc2\x9f\x56\xb3\xc5\x19\x39\x4c\x00\xb7\x84\x3f\x11\xf1\x44\xc9\x73\x19\x45\x74\x1d\x5a\x34\x46\xb3\x20\xaa\x0e\x60\x26\xd3\x8c\x43\x0a\xcd\x14\xa5\x98\x2d\x0c\xa3\xd4\xcc\x05\xcb\x47\xe9\xeb\x95\x22\x99\xe2\x24\x39\x40\x82\xe4\xd2\xd4\xf1\x95\x24\x99\x1e\xba\x8a\x0f\x31\x4a\xf8\x8c\x46\x38\x41\x93\x84\x47\x8f\x72\xc4\xb4\xa0\xc0\x66\x86\x49\x65\x82\x47\x44\xca\x40\xb2\x2a\x92\xb6\x6d\x2a\x1d\x14\x2b\x55\x44\xa4\x94\x51\xa9\x68\xe4\x44\xa6\x02\x7b\xc1\x94\xcc\x8e\x30\x98\x84\x21\x31\x11\x86\xab\x25\x3d\x62\x30\x28\x73\x66\x6b\x03\xc1\x75\x6d\xa1\xe5\x5c\x90\x78\xdb\x01\xda\x01\x52\x9e\xa3\x90\xb1\x2a\x1f\xc8\x15\x47\xea\xd4\x7e\x06\xc7\x78\x19\x09\xdc\x96\x4f\x94\x27\x48\x7f\xd2\x4a\xe8\x3d\x10\x53\xee\x43\xe0\x4b\x92\x8b\x8f\x0c\xdf\x33\xe0\x2e\x18\x72\x0b\x5c\xd7\x2a\x9a\xd6\xab\x08\x22\x0f\x94\xa3\xaa\x7a\xcd\x29\x8b\x92\x3c\xf6\x05\x09\xb5\x08\xf0\xa4\x89\xc4\x2d\x8f\x5e\x7b\x2d\x28\x1c\x20\x2c\xd1\x33\x49\x12\xfd\x5f\x13\x01\x7f\xe8\xeb\x03\x68\x96\x6c\x6a\x38\x40\x27\x8e\x4b\xb7\x51\xd4\xde\x81\x30\xde\x60\x35\x37\xa9\xed\x29\x57\xa6\x16\xa4\x01\x61\x74\xf6\x2d\x83\xda\x37\x49\xf8\x04\x4e\x3a\xe0\x33\xba\xd4\xd8\x20\xad\x2e\x8f\x22\x42\x62\x12\xa3\xaf\x83\x83\xeb\x61\x17\xbe\x69\x46\x0b\x2c\xad\xc8\x1e\x60\x33\x56\x0d\x6b\xad\x08\x8d\xe5\x72\x66\x47\xe8\xa6\x82\x3f\x12\x96\x29\xc7\x55\x34\xaa\x83\xda\x16\xbe\x0d\x9e\x63\x65\x12\x2f\xb7\x43\x6b\xe2\x39\x96\xfa\xdc\x01\x9e\x63\x65\x9e\x2d\xb1\xfb\x7c\xf6\xa2\x39\xc7\x7a\x52\x17\xbc\x7b\x22\x98\xc1\xc1\x32\x77\x67\x89\x04\xdd\x81\x5c\x34\x11\xe2\x7e\x61\x55\x56\x8a\xfe\xbd\x2d\x56\x65\x65\x30\xfb\x8c\x55\x59\x19\xea\xfe\x62\x55\x36\x0c\xb4\x03\x56\xa5\x71\xee\x8f\x35\x51\x77\x63\x0a\x90\xd8\x32\xc9\xa7\x77\x90\xea\xbd\x74\x8c\xa7\x26\x70\xc0\x5c\x63\xee\x8e\xb6\xd0\xcd\x30\x5a\x9b\x03\xd9\x16\x0e\x55\x71\x42\xac\x4b\x7b\xde\xfb\x46\xa5\xd1\xd0\xd6\x33\xbb\x1f\x84\xd6\x6e\xb0\x43\x46\x38\xb3\x39\xe5\x6d\x15\x55\xf6\x27\x7b\x76\x33\x18\x50\x80\xda\x2b\xb1\xfc\x4e\x40\x59\x97\x95\xe2\x04\x73\xfe\x6c\x0b\x04\x01\x19\x1a\xa2\x6c\x25\x41\xe8\x74\x6c\x95\xb6\xb6\x95\xa3\x4c\x91\x59\x55\xa7\x2d\x0e\x0d\x65\xea\x4f\x7f\x5c\xc9\x89\x0c\x92\xa0\x53\x0f\x83\x12\x01\xde\xd9\x61\x9f\x91\x18\x45\x73\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x14\x53\xa7\x48\xe5\xd2\xb8\x96\xa8\x1c\xb1\x12\xf4\xe6\x11\xfa\x08\x75\x4f\x71\x9a\x69\xfd\xcb\xcf\x8f\x6a\x4a\x1a\xe5\xdf\x7e\xfb\x27\x82\xbe\x45\x29\xc1\xac\xa4\xc3\x82\xda\xa4\xaf\x3e\x80\xaa\x53\x73\x32\x62\x8d\x5b\x81\x86\x9f\x4d\x29\x25\x17\xef\x77\xce\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd9\x29\x7c\xd9\x18\x00\xeb\x6e\xec\x7a\x1b\x0f\xe0\x1e\x39\x94\xa4\x04\x61\xd4\xe0\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\x1e\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x0e\x80\x12\xf2\x68\x6e\x1c\xab\x5a\x67\xc1\xb6\x2e\xc3\x13\x95\xb9\x56\x68\xa1\x2d\x57\x06\x42\x2a\x6c\xa0\x97\xe6\x14\xfa\xd1\xea\x37\x81\xaf\xc2\x2c\x39\xd4\x4d\x8b\x0a\xd1\x51\x2b\x3c\xbf\x23\x3a\x6a\x89\xaa\x7a\x74\x54\x8f\x8e\x5a\x5f\x97\x7d\x44\x47\xad\xec\x79\x37\x74\xd4\xa6\x2d\xdf\x00\x1d\xb5\xd4\xcc\x17\x83\x8e\x5a\x59\xd1\x2f\x06\x1d\xb5\x32\xaf\x1e\x1d\xf5\xcb\x43\x47\xdd\x12\xff\xb3\x99\x17\x1b\x7c\x25\x45\xd9\x62\x6d\x22\xfb\x4a\xa2\xf3\x6b\x4d\x60\xd1\x63\x39\xa8\xcd\x5f\x57\xdb\x63\x8e\x36\x33\xa1\xf5\x30\x47\x1b\x55\xf5\x76\x56\xb7\x2d\xc0\x13\x28\x06\xaf\x8c\x39\x5a\x9a\x40\x1f\x5f\xb9\x7e\x7c\x65\x23\xf1\xd9\xbe\xf5\xf0\x5c\xd0\x65\xf5\x42\xee\x88\x3a\x5a\xda\x9f\x4e\x91\x98\x20\xba\xef\x80\x12\x5f\x56\x9a\xbf\x2f\x1d\xf2\x95\xb2\x7c\xb8\x8a\xd2\xe2\x1f\x6b\x09\xcf\xa1\xc5\x19\x25\x3c\xf4\xff\xf7\x94\xbb\x41\x64\x70\x65\x79\xbd\x5f\xc5\xd0\x62\x07\x52\xed\x4c\xa1\x4e\x2b\xdd\x4d\xa2\xac\x4b\x9e\x5c\xd3\xc5\xec\x06\x71\x97\x91\xa8\xc5\xc6\x4c\x53\xba\xab\x66\x57\x5d\x64\x1e\x0b\x0b\x14\xf2\x5a\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x5a\x63\x9b\x6a\x23\xdc\xc6\x55\x9a\xe5\x9d\x03\x62\x82\x55\x9d\x6d\xf6\x59\x4a\x52\x2e\x56\x05\x56\x35\x7e\x69\x2b\xba\x6c\xf2\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xdd\x46\xba\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xce\xdb\xbd\xed\x36\x5b\xcc\xcc\x35\x1d\x42\x0e\x33\x78\xb9\xc1\xcd\xbe\x54\x72\x77\x03\x7d\x37\xc6\x74\xf8\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x4e\x15\x5f\xd9\x7a\xc7\x6b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\xeb\x07\x78\xb4\xa0\xa6\xd6\x97\x07\x22\x73\x24\x11\x87\xa1\x66\x50\x1a\x4c\x7d\xbd\x4a\x54\xe2\x34\xca\x2d\x88\x24\x17\xad\x51\xa6\x5d\x0c\xda\x91\xca\x71\x02\x9a\x44\x58\xa4\xb1\xba\xa9\x93\x45\x43\xda\x63\x37\x8f\x09\x65\xea\xcf\xff\xb1\xd6\x6e\x6a\xd5\xca\xae\x1b\x14\x96\xc2\x51\x44\xa4\xb1\xb1\xdb\x28\x64\x3c\xe1\x4f\x50\x53\x6a\x9b\x5d\xd5\x47\x59\xcf\x5b\x33\x78\x0f\x45\x1c\x17\xa4\x6e\xc4\x85\xb9\xe0\xf9\x6c\xee\x6c\x48\xfa\xcc\xe8\xa9\x35\xed\xe5\x8f\x35\x1b\xf9\xda\x7b\xf9\x5d\x4e\x93\xcd\x2c\x74\x77\xa5\x6a\x5b\x9f\xce\xef\x91\x9c\xfb\xd3\x3a\x81\x66\x1b\x37\xb6\x3e\xe8\xee\x7d\xda\x6f\xbd\xbf\x06\xba\x39\x70\xf0\x9b\x53\x9e\x24\xe0\x69\x90\x24\x7d\x0a\x8b\xe4\x87\xdd\xc3\x84\xef\xe9\x7a\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x49\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x4d\x36\xb6\x9f\xea\x85\x4e\xde\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x5b\x92\x57\x0e\x1c\x5c\x31\x8f\x7d\x0d\x1e\xac\x30\x3b\x1f\xcb\x57\x5c\x33\x2e\x70\xc8\x28\x3e\x03\xbd\xc4\x23\x36\x28\xe5\x53\xb8\x82\xd0\x93\x45\x11\x90\x6d\x74\x88\x90\x99\x41\x39\x09\x6b\x58\x01\x37\x9a\xfe\x0b\x34\x1d\x03\x5e\x6b\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x10\x47\x8b\x28\xa1\x51\xa0\x33\xcf\x04\xce\xe6\x4d\x1c\xcf\xed\x7c\x8f\xba\xf3\x56\xa8\x3b\x6d\x75\x97\xd6\x89\xdb\x76\x74\xc5\x70\x4a\x7a\x34\xa0\x26\x34\xa0\x03\x8f\x77\xc1\x8a\x0a\x52\x6f\x08\xa3\x50\x3f\x77\x3d\x24\xd0\x1b\x40\x02\x6d\x72\xf8\x0a\xbc\x9f\xd2\xb1\xeb\x61\x8a\x3e\x74\x82\x29\xf2\x97\xe0\x5e\x21\xcf\xb4\x9f\xc7\x37\x46\x34\xa9\x0f\xec\x2d\x61\x89\x1a\xc4\x85\x75\xe4\xa6\x65\xb8\x44\xcb\xe8\xa2\xd3\xba\xbc\x2d\x4a\xd0\x7a\x2b\xb3\x16\x00\x50\xe3\xdd\xb5\x27\x70\x40\xed\xdb\xb0\x27\xe7\x66\x97\x59\x2d\xeb\x95\xc8\x0c\x33\x5b\xd6\x51\xb0\xd6\x4b\x72\xf1\xf4\xf0\xbe\x12\x5d\x8a\x5a\x62\x9b\x25\xbb\x0c\x9c\x0f\x9a\x08\x34\xe7\x49\xec\x40\x28\xfc\x6a\xf9\x0e\x7c\x26\x80\x5f\x20\xb7\x19\x50\xd3\x1b\xb4\xad\xa2\x20\xd8\xb2\x94\x16\xbf\x89\x30\xdc\x1d\x30\x9a\x5d\x58\x11\x3c\x27\xd9\xc4\x7e\xb0\x52\x16\x91\x65\xf3\xf7\x92\x31\x96\x56\x08\xac\xe6\xcd\xc3\x5c\x69\xf7\x5d\x31\xb8\x65\xa2\x47\x60\x1c\x14\x4d\x15\x2d\x0d\x9d\xc1\xd3\x27\xea\x0c\x11\x38\xec\x71\xa9\x97\xce\xcd\xae\x93\xa7\xae\x4a\x2c\x1b\x04\x83\xd5\x2a\xb7\x6d\x0f\x0e\x94\xe2\xcf\xe3\x0c\x0b\x9c\x24\x24\xa1\x32\x7d\xb1\x60\xe0\xd3\xb2\xbb\x56\x9f\x55\xc1\x8d\x89\x88\xe5\xe9\xc4\x90\xa2\x1b\x88\xad\x17\xa9\x38\x12\x39\x0b\xa1\xcd\x9e\x6b\x45\xf5\x73\xb8\x17\xc0\xaa\x14\xcd\xa1\x38\xe9\x14\x53\xc1\x88\x6c\x2d\x05\x49\xa2\x5c\x50\xb5\x18\xdb\xca\x9a\xdd\x0f\xdc\x9d\xfd\xf2\xd4\x7e\xb8\xdc\xc3\xed\xb2\xfa\x5d\x7f\xbe\x92\x67\x46\x04\x94\x09\x72\x05\x6f\x82\xea\xa1\x16\xb5\x81\xf8\x5a\x43\x10\xfe\x5c\xbb\xb6\xdb\x02\x87\xf1\xf3\x38\xc8\xa8\x1a\x47\x55\xe2\x58\x75\x58\x9b\x70\xa7\x96\x4d\xf2\x85\x91\x97\x5a\xbc\xc8\x2f\x50\x65\xc4\xa6\x4d\x98\xa6\xf5\x80\x03\x57\x30\xd8\x2b\x8b\x8d\x09\x52\xde\xad\x52\xd5\x32\x4e\x8b\xf5\xd3\x14\x7c\xb4\x64\xb0\x83\xe0\xab\x0e\x23\x0e\x3a\xd9\xd1\xb0\xf5\x41\x17\x22\xcf\x14\x9d\xd4\xa1\x6d\xd4\xee\xaa\x8e\x0e\x12\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x34\x62\x03\x89\x9e\x09\x62\xc4\x42\x48\x34\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x03\xdd\x30\x54\x2d\x55\x1c\x82\x3f\x31\x7a\x16\x38\xcb\x88\x18\x31\x9b\xc5\x01\x0e\x17\xce\x13\xd3\x7e\x5b\x88\xab\x5d\x03\x32\x8e\x70\x34\x7f\xa5\x3d\xc2\x90\x8c\x13\xcd\x49\xec\xf2\x85\xcb\xdb\xe3\xe6\x6d\x0c\xd6\x6b\x6c\xd6\xf9\xd4\x95\xcf\x3a\xb0\x9d\x24\x91\xe6\x28\xbe\x9a\x72\x46\x84\x1e\xb5\xa6\xe1\x27\xc2\x10\x9d\xba\x71\xd8\xd8\x1d\xf4\x0c\x9e\x29\x4d\xfa\x4f\x98\x26\x26\x01\xdf\x75\xed\x84\x40\x63\x7e\x1f\x31\xe3\xee\x66\x51\x29\x43\x95\x32\x2a\xe7\x9a\x53\xe7\xe0\x93\x04\x35\xa3\x2d\x71\x86\x3d\xad\x73\x9a\x87\xfa\xf5\xe5\x1c\xf4\x89\x0a\xce\x52\x48\x92\xb1\xb8\x4c\x6e\xf9\x24\x51\xfe\x78\x34\xa6\x38\xae\x94\x88\xe3\x58\x96\x8d\x9f\x46\xad\xa4\xbf\x96\xcc\x2e\x87\xa5\xac\xc0\x28\x80\x15\x82\x20\x4e\x57\x59\x6c\x99\xfc\xdb\xa7\x36\xd4\x53\x1b\x9a\xd7\x66\x1f\xd3\x1b\xfc\x21\x5e\x37\xc5\xa1\x6d\xfb\x77\x21\xd9\xee\x30\xd5\xe1\x8d\x73\x02\x5e\x26\x1d\xe0\x6d\xf3\x37\x5e\x22\x75\xa3\x4f\x70\x78\xc3\x04\x87\xce\x96\xda\x72\x6c\x76\xfb\xb1\x5d\x2b\x39\x60\x05\x98\x53\x53\x2f\x97\x44\x09\x1a\xc9\x5d\xf0\x07\x99\xe1\x8e\x51\x6d\xa0\x05\x66\x2b\xa4\x26\xfd\x82\x77\x42\x42\x9c\x98\xaf\xf3\x37\x11\x04\x3f\xc6\xfc\xb9\x66\xab\x93\x21\x9a\xc6\x25\xd7\x62\x8f\x20\x11\x95\xa4\x14\xc9\x42\x25\x62\x44\x5a\x63\x27\x1e\xb1\x39\x25\x02\x8b\x68\x0e\xd9\x8d\xc5\xc6\x98\x2c\x59\x03\x68\x64\x62\x19\x42\x6f\xd3\x1a\x9b\xde\x61\xdd\xab\x16\x26\x8f\x4f\x67\xf7\x5c\x8f\x24\x35\x9f\x78\x61\xc6\x4a\x19\xa1\x49\xae\xd3\xf6\x6f\x1b\x88\xef\x17\xfb\x45\x83\xf1\x7d\x30\x51\xf0\x45\xc7\x80\xfc\x82\x1a\xfa\xa0\xfc\x17\x0a\xca\x6f\x58\xe2\xf5\x02\xf3\x37\x32\xf9\xbd\x7e\xcc\xb0\xeb\xf9\x35\xe2\x86\x57\x05\x6d\xe5\x93\xf1\x8b\x1f\xbd\xc6\x39\x77\x3d\x81\x3f\x79\xa2\x30\x12\xb1\xd0\x74\x36\x21\x71\x0c\x9c\x56\x71\x5b\x29\xba\xa0\x1d\x67\x1e\xd0\x77\x2f\x96\x9a\xd8\x71\xc2\xd9\x4c\xd2\xd8\x80\xad\x64\x18\x2a\xb6\x86\xc6\x0b\x00\x17\x80\xfd\x4d\x12\x22\x9c\x57\x42\xa0\xaf\x25\x65\x16\x4d\xd1\xff\x16\x73\x22\xd9\x57\xca\x18\x0b\x30\x5b\xa0\x47\xc6\x9f\x13\x12\xcf\x60\x87\xaa\x83\x39\x44\x94\x1c\x20\xaa\xfc\x67\x02\xd0\x08\x78\xae\x46\x7a\xec\x10\x6b\x66\x34\x00\x62\xbf\x0d\x6a\xa2\xfb\x66\xbe\x39\x42\xe8\x9c\xa1\x29\x8e\xd4\x01\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\xf4\x31\xe3\x0d\x9d\x37\x9f\x0d\xc7\x1d\x34\xb9\x0e\x12\x8a\xb7\x8a\xad\x7b\xc2\xdb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xab\xad\xb3\x32\x95\x75\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x9d\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xa6\x4d\xcb\xf4\x8d\x47\x4e\x39\x33\x0e\xc2\xad\xe4\x4e\x3a\x63\x38\x59\xd3\xc6\x51\x5b\xb9\xba\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xca\x7c\x43\x79\x0f\xa3\x98\x64\x84\xc5\x84\x45\x0b\x20\x11\x06\xc8\x39\x82\xe1\x04\x61\xf8\x0e\x27\x47\xe8\xcc\xe4\xd7\x78\x09\xcf\x5e\xeb\x70\xa1\xa7\x98\xd1\xa9\xd6\x13\xc0\x08\x6b\x47\x39\x62\x66\x98\xce\x07\x12\x14\xed\xf7\x2b\xd6\xb4\x33\xfa\x06\xb9\xda\x12\x95\x98\x95\xbf\x47\xcb\x2f\x1c\xe8\x6d\xd9\xee\xe8\xe6\x5c\x0d\x02\x99\x4f\x0e\xe1\xdf\xa5\x84\x33\x07\xd4\x53\xa0\xc8\x90\x84\x80\x39\xd0\x7a\xbc\xe0\x62\x6c\x03\x96\xdb\x85\xdf\x6e\x45\x1e\x47\xd0\x47\x49\xa9\x49\x29\xa3\x69\x9e\x06\xce\x3b\x53\xb1\x20\xb2\xf6\x4b\x93\x89\x91\x69\x3d\x20\x72\xe0\xe5\x48\x5f\xae\x6c\x81\x66\xf4\x89\xb0\x11\xcb\x38\x65\xea\x08\x5d\x71\x45\x82\x12\x11\x06\x3a\x8a\x67\x8a\xa6\x06\xed\x54\x10\x7d\x0e\x0c\x28\x36\x00\x4d\xce\xb1\x3a\x40\x71\x0e\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xec\x0c\xc4\x47\x8b\x11\x33\x37\xdd\x14\xd3\x24\x17\xc4\xca\xac\xd8\xe4\xc5\x14\x43\x2e\x46\x66\x91\xd0\x82\x49\xa4\x74\x36\x57\x7a\x8b\xb4\x8c\x67\xfd\x8d\x73\xcd\x8d\xf8\x88\x4d\x08\xc2\x28\xe3\x92\x2a\xfa\xe4\xfd\x97\x74\x8a\xb0\x94\x60\x41\x39\x42\x67\x25\xfb\x3f\x95\xa0\x7a\xb7\xc5\xd5\x52\x36\xb6\xb6\xe7\xf6\x7c\x9c\xad\x37\xb2\xd4\x8b\x5d\x65\x3c\x91\x3c\xc9\x55\xe8\x82\x6d\xde\xdb\xc2\x34\xee\x80\xfb\xc1\x40\xcc\xa7\x23\xe6\xe8\x5a\x1e\xa1\x81\x44\x92\xeb\x5d\x92\x66\x2b\x23\x41\x15\x11\xd4\xa0\x38\x11\x65\x36\xc1\x9f\x53\x7f\x06\x52\x2c\x1e\xb5\x08\x15\x5a\xe0\x0d\xa6\x68\xc9\xda\x31\x31\x12\x12\xc0\x5a\x85\xdb\x01\xa6\x7f\xc4\x38\x3b\x64\x64\x86\x57\xed\xc8\x88\x95\xb6\x04\x7d\x4d\xa7\x85\x42\xda\xe6\x73\x0c\xd6\x6e\x0c\x91\x4f\x6d\xbb\x64\x3a\x6e\xdb\xa4\x69\xc2\xf1\x0a\xb7\xf1\xb4\x38\xf4\xe8\xef\x7c\x62\xc6\xa8\xf5\x7e\xae\x40\x0a\xd4\xea\xd5\x94\x0b\x32\xc7\x2c\x3e\x70\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\xac\x75\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x61\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x1b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x0d\x04\xbf\x24\x5f\x2b\xb9\x2a\x70\xfb\x2d\xda\x6a\x9a\x28\xbc\xaa\xcc\xc8\x1a\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x34\x62\xe7\xea\x2b\xa9\x45\x74\xce\x66\xfa\xa2\x89\x9f\xa8\x2c\x8a\x9c\x44\x9c\xc9\x3c\x25\xc2\x76\xa1\x6f\x64\x4d\x91\xb6\x40\x00\x76\x32\x94\x1e\x9b\xde\xfb\x27\x9c\xd0\xd8\x15\xe2\xd1\x3f\x9a\x33\xa7\x47\x29\x9d\x47\xb1\x21\x24\xcc\x6e\x6e\xac\xd7\xea\xcd\xc4\xfa\x1f\x43\xc9\x1d\xa5\x85\x90\x8f\xad\xad\xfe\xb8\x2a\xe2\xdb\x55\x5f\x22\xde\x4f\x6a\x93\x42\xcb\x05\x23\xbb\x0a\x67\xab\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x16\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbe\xb5\x67\x5b\x96\x89\x90\x11\x4e\xea\x3b\xbc\xc4\xde\x6c\xde\x5f\xae\x04\xd8\xe3\x66\xda\x5e\x9a\xf4\x1b\xf1\x24\x59\xa7\x84\x49\x65\xe6\xa7\xc5\xe7\xcb\x47\x54\xf4\xa3\x37\xc0\xed\x05\x9c\x1a\x73\x79\xe3\xc4\x9a\x52\xa4\xb2\xbb\x14\xbe\x64\xd4\xb0\x85\x65\xad\x23\xc6\xa7\x50\xe4\x26\x69\x8b\xea\xca\x04\x4f\xe9\x3a\x28\xcb\x26\xd0\xe9\xd6\xd9\xc5\x57\x58\x19\x9c\xf5\x1c\x44\x53\x43\x5e\xb6\x47\xc8\xd7\xc3\x56\xdc\x5c\x72\x86\x52\x9c\x6d\xb4\xe0\xab\xbc\x42\x03\x94\x1a\x97\x9c\x5d\x3d\xc0\x5b\x24\x50\x2f\x06\x16\xf9\x19\x2f\x8a\xd4\xe8\x36\xfc\x5c\xb6\x16\x39\x3c\xe8\xd7\xcf\xd9\x94\xaf\x71\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x5d\xce\xe3\x69\x13\x51\xaf\x7d\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x9d\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf9\x52\x5d\x96\xe8\x70\xe7\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\x69\x6e\xf5\x15\xd6\xcc\x1e\x92\x4e\x8b\xb5\x25\x76\xc3\x7a\x38\xc0\xae\x47\x8f\xfa\xdb\x7c\x42\x57\x16\x39\xe8\xbe\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x9f\x37\x18\x38\x5d\x82\x98\x0f\xa8\x32\xa1\xf2\x4e\x7a\xca\x05\x0d\x0a\x83\x3a\x19\x09\x51\x28\x50\x12\x3a\x79\x02\x85\x1e\x4c\x8b\x73\xfe\x6c\xa2\xd3\x05\xd5\x3c\xcb\x08\xab\x0a\xcc\x3d\x9a\x17\x50\x6b\x2d\x31\xc6\x26\xff\x01\x37\x31\x83\xd8\xd6\x3e\x2e\x46\xd5\xb2\xa5\xbb\x28\xf1\xd4\x3d\xff\xce\xf5\x7a\xaf\xbf\xa8\xef\x4d\xe3\x08\xef\xcb\xad\xaf\x3d\x3a\x2f\xe5\xaf\x1f\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\x67\x3f\x1c\x3f\x9c\x23\xa2\x22\x94\xd0\x47\x32\x62\x91\x7c\x3a\xd0\xe2\xf1\x3f\x72\xa2\xf4\xcf\x2d\x1e\x01\x9a\x12\x26\x81\x13\x50\x55\xc3\x1e\x6a\x5e\x48\xb7\x30\xfa\xbf\x67\xe5\xef\x97\x90\x7c\x2d\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x03\xc5\x18\x5b\xe4\xb0\xa9\x1a\xe6\x06\xe9\x42\xec\xef\x39\x5b\x53\xe8\x3a\x2d\x3e\x0a\x46\xd1\x22\xd3\xa5\x19\x06\xac\xeb\xf5\xf2\x90\xcc\x37\x8d\xad\xaf\x62\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x34\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\x9a\xb8\x84\xc0\x2c\x9a\x6f\x6b\x42\xa6\xd3\x31\x49\xd6\x91\x44\xcf\xa7\xc3\x44\x6a\xfa\x8e\x1e\x5b\x4e\xe7\x26\x35\x1b\x8b\xc9\xd8\x4a\xb4\xa6\xee\x13\x2a\x4c\xd0\x38\x31\x15\xe5\x08\x02\x1f\x65\x35\x7b\xcc\x00\x44\xe8\x5d\xb4\x92\xba\x71\x51\x9a\xb4\x0d\x1f\x92\x0d\xbd\x20\xac\x46\x4c\xe4\x0c\x8a\x4d\xf8\x88\x05\x8c\x0a\xbc\xf0\xc8\xf9\x0f\xac\x37\x67\xa6\xd9\x84\x81\xe3\x36\x2f\x6b\xfd\x8c\xe7\x12\x6c\x35\x29\x51\xfa\x82\xfa\x1a\xea\xc0\x9a\x90\xa1\x03\x94\x09\x9a\x82\xb9\x55\x7e\xd3\xb0\x75\xa7\x58\xe1\x84\xcf\x06\x42\xd1\x29\x8e\xd4\x3d\xde\x4a\x03\xc7\xb6\x99\x4d\xc3\x4f\xdd\x30\xd0\xf9\x99\x5e\xfc\x19\x61\x44\xc0\x44\xb5\x4e\xde\x7c\x84\xe1\xc9\x46\x9c\x1b\xac\x6c\xd6\x30\x2a\xbd\xc5\x02\xe7\x8a\xa7\x5a\xbf\xc5\x49\xb2\x38\x30\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x97\xbb\xc9\x2e\xee\x29\x8e\xe6\xe4\x0e\xaa\x22\x37\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\x27\xe8\x7f\x8a\x39\x9e\x0e\x4e\xbf\x1f\x8e\xcf\xce\xef\x06\xdf\x5d\x0c\xcf\x82\xf9\xd8\x27\x97\xe7\x77\x77\xf5\x5f\xbf\x3f\xbf\xaf\xff\x78\x73\x7d\xf3\x70\x31\xb8\x6f\x6a\xe5\xe2\xfa\xfa\x87\x87\x9b\xf1\xc7\xc1\xf9\xc5\xc3\xed\xb0\xe1\xd3\x87\xfb\xf6\x87\x77\x3f\x9c\xdf\xdc\x0c\xcf\xdc\xaa\xfc\x2d\x38\x5d\x60\x3d\x86\xd4\x8b\xe6\x69\x54\x0f\xe0\x21\x2a\xbf\x78\x82\x1e\xaa\xa5\x0f\x6c\x2c\xb2\xc1\xb1\x78\xc6\x52\xf3\x30\x08\x85\x1f\x31\xe4\x3e\xd7\x8b\xd2\xf6\xa9\x09\xd7\x89\xe6\x04\x25\x9c\x3f\xe6\x99\x65\x6d\x26\x3e\x8c\x71\x63\xf8\x21\x32\x68\xed\xfb\xf3\xfb\x93\x7a\x09\x06\xdf\x58\x80\x98\xe5\xce\x00\x8c\x0b\x3b\x76\x0a\xb6\x14\x07\xcd\x5f\x58\x6f\x83\x1e\xfc\xce\x2c\xeb\xc7\xb4\x86\x99\xaa\x74\x13\xc7\xb6\xe8\xaf\x9b\x58\xd0\x70\x79\x5f\x97\xad\xa6\x5f\x0e\x53\x7b\x0a\x4d\x48\x84\x73\x13\xd4\xa4\xef\x29\x21\xb8\x08\x07\x5c\xd0\xc3\xee\x1a\xb5\x74\xd4\xd8\x60\x65\xcf\xf4\xc4\xe5\x23\xcd\x32\x12\x7f\xa8\xcb\x2f\xe5\xea\xb0\xb6\x26\x39\x9f\xa2\xe0\x4c\x6a\xbd\x1e\x74\x7e\x57\x38\x65\xbe\xf0\x9e\x34\x08\xdc\x28\x42\x59\x00\xc8\x59\xdf\x09\xbe\xb0\x05\x05\xd7\x18\x56\xe8\x99\x40\x4a\x75\x6e\x2b\x47\x19\xdd\x5b\x9f\x6d\xe8\xce\xd8\xb4\x5d\x1d\xb8\x52\xaa\x75\x2b\x33\xde\x85\xc0\xad\xbf\x97\xa4\x89\x11\x6f\x91\x17\x7b\x66\x1a\x05\xee\xec\x62\xde\x60\xc4\x2d\xc1\x0d\xee\x36\x68\xb0\x90\x2f\x91\xaf\xea\x37\xd2\x8a\xcb\x42\xb3\xed\x2e\xe3\x71\x58\x20\x25\x80\xeb\xee\x03\x2b\x81\x20\xaf\x5c\xab\x7b\x1e\xe3\x85\x26\x0e\x88\x35\x96\x79\x96\x71\xa1\x50\x4b\x1b\xc6\x8d\x6f\xc6\x07\x77\x8e\x9d\x87\xe7\x71\xd0\x88\x96\x30\x64\x43\x2d\x8d\x6e\xf0\x08\x76\x5d\x0b\xc6\x11\x06\xc8\x82\x22\xe8\xeb\x1e\xa5\x25\x95\xba\x44\xa1\x4d\xc2\xef\x36\x19\x06\x99\xbe\xe0\xbb\x96\xe1\x6b\xea\xfd\xda\xb5\xd0\xb8\xe5\x09\x99\xaa\x71\xa3\xd7\x67\x89\x81\x53\xb7\xc8\xda\x10\x65\xe8\x6c\xbe\x83\x16\xbb\x6b\x09\x7f\xb4\x81\x3d\x5a\x35\x08\x2c\x04\x82\x73\x65\xe4\xd3\x42\x87\x41\x6e\x35\xc1\xbc\x60\x3b\xb5\xb9\x60\x5e\x08\xd4\x32\xbf\xf1\x87\xfa\xb4\xa9\xa3\x11\x1b\x42\x00\x45\xa1\x88\xb8\x14\x31\xd0\x02\x56\xca\xff\xa5\xa2\xa3\xaf\x1a\xad\xd9\x8e\xf0\x5a\xd0\xbd\xad\x97\x9f\x2c\x50\x51\x58\xb6\xf4\x5d\x97\xd3\x63\xac\xde\x4e\x04\x34\x13\xb6\x65\xdc\x15\xc9\xac\x65\xde\xcc\xb3\x88\xf4\x81\xf8\x30\xdd\xd5\x11\xfa\xc9\x59\x7e\x20\xf0\xb5\xa8\xc9\x6c\x63\x37\x12\xbc\x70\xa0\x90\x4d\x0b\xbb\x0b\x9c\xc5\x5d\x87\xc2\x2e\x5f\x60\x0f\xe8\xd4\xb0\xca\x25\x05\x9c\x31\x63\x91\x5d\x23\xed\xe3\xd4\x7f\x74\x47\x96\x47\x05\x7c\x84\x32\x9c\x36\xb2\x0a\x84\x0e\x96\x2c\xfe\x97\xd9\x2c\x93\x89\xea\x0a\x6b\xd9\xb2\x88\xd6\x83\xaa\xcf\x0f\x78\x00\x4d\xa2\x2a\x9a\xd2\x24\x01\x39\xe0\x08\x0d\xa0\x3c\x30\x24\x72\xea\xab\xd0\x05\x58\xd0\x19\xe3\xab\x72\xcc\x5a\x88\x29\x0a\x88\xe9\xae\x9d\x98\x24\x50\x53\x91\xc7\xbf\x1b\x8a\xda\x01\xa6\x8b\xe6\x2d\xb8\x8e\x88\xdd\x1d\xc9\x65\x0d\xe5\xfd\x2d\xa2\xa3\x6b\xc3\x0d\x3e\xfc\x57\xf3\xd0\x3f\xe5\x58\x60\xa6\x20\xe6\xd7\x8a\xee\x82\x04\xa9\x47\xe4\x33\xc4\x67\x30\x63\x08\x86\x9f\xc2\xcd\x75\x2e\x7f\x08\xf7\x42\x34\x3e\x40\xf4\x88\x1c\x41\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\x56\x8b\x65\x3c\x42\x83\x44\x72\xfb\x05\x61\x51\x02\xe5\xb8\x83\xf0\x64\x4f\xf9\xd6\xad\x34\x59\x80\x82\x02\x5b\x59\x34\xcf\xed\x83\xe0\x43\x28\x32\x06\x3e\xf1\x04\x4e\x7a\xf1\xfb\xef\x79\x66\xbc\x15\x6d\x71\x12\x2f\x58\xce\xa1\x76\x0d\xbd\xd8\x26\x99\x52\x81\xcb\x36\x08\xde\x80\x8d\x29\x62\x4c\x03\x04\x16\xf4\x35\x56\x28\x21\x58\x2a\xf4\x87\x6f\xd6\x8a\x0d\x71\x13\x2c\xb8\xab\x3d\xbe\x45\xa2\x98\x4b\x35\x08\x85\x3b\xdf\x31\xd4\x8e\xc3\x42\x21\x8c\x18\x79\x0e\x23\x4b\x39\x04\x03\xbb\x82\x70\x24\xc8\x6d\x35\xf1\x64\x26\x33\x1f\xb2\x35\x8c\xca\xd4\xc2\x47\x1c\xdc\xb1\x75\x9f\xda\x61\x35\x50\x96\x55\x9e\x6c\x88\x27\x40\x72\x15\x41\xff\x73\xac\x46\xcc\x72\x56\x17\x36\x12\xa4\x79\x0d\x92\xa4\x1c\x68\x8f\x21\x97\x84\xe9\x09\x43\x7d\xf6\x23\xbf\x40\x57\xa0\x7e\xf9\x68\xe7\x92\x9d\xae\x38\x2c\x26\x1e\xcf\xe3\x1d\x85\x6d\x37\x4a\x3b\x4d\xf6\xe5\x57\x14\x82\x1b\xba\xbf\x30\x85\xf2\x3b\x08\xc3\xa4\x69\xc8\x2b\x0e\x56\xdd\xa6\xbf\x44\x36\xde\x75\x07\xdd\x45\xe5\x66\xfb\x38\x5c\xb3\xcf\xbc\xc1\xdc\xde\xb2\xb9\x81\x6c\xb1\x8d\x02\xee\xc3\xee\x5f\xcb\xe3\x5b\x1a\xfa\x79\x0c\x49\x7f\xab\xb9\x60\x91\x44\xe7\x58\x87\x89\xbd\x8e\x83\x9c\x9e\x20\x85\x00\x82\xff\x1c\xe3\xb3\x6f\xb6\x78\x5e\xb3\xf7\x3d\xfd\x83\x62\xfe\x6e\x2a\x3e\x08\xae\x3e\xf1\x76\x61\x6f\x10\xff\x1d\x47\x10\xe9\x0f\x3d\xb9\x1c\x83\x3a\x20\x93\x83\xb1\xc6\x60\xcc\x6f\x14\x0f\x33\xc1\x23\x22\xe5\x11\x1a\xc2\x45\x63\xff\x89\xf0\xd4\x39\x24\x82\x97\x47\x4c\x6b\x26\x0e\xbf\x25\x68\xbf\x4c\xe2\x4d\x27\xc0\x80\xc1\x6d\xe5\xcb\x49\x57\xd7\x28\x69\xd3\x26\x1c\x16\x1d\xb4\x01\x65\x0d\xd0\x70\x76\x82\x62\x1e\x3d\x12\x71\x2c\x48\x4c\xe5\x09\xf8\xd6\x55\xab\x53\x2f\xd5\xda\xf6\xd6\x92\x46\x5b\xa0\xc0\x8a\xa4\xb8\x53\xd3\xbf\x0d\xb0\x76\xe1\xb5\x07\x88\x4e\x41\x9d\x70\x39\x19\x26\x08\xd9\xc1\xdd\x10\xa6\xc4\x02\xe2\xfa\xbd\x29\xab\xb2\x10\x4e\xd3\xd0\x42\x5b\x5b\x36\x91\xd8\x45\x0c\xce\x86\xd3\xbe\x9f\x13\x49\x5c\xc0\x81\x99\x94\xe2\x36\x96\xd9\xb0\x8b\x0c\xab\xb9\x84\xd4\xd5\xf2\x1a\x58\xa5\x0b\x3e\xd5\x2b\x84\x33\x88\x57\x30\x56\x8a\xe2\x23\x9f\x60\x29\x15\x4d\x92\x11\x63\x84\xc4\x12\x41\x96\xe9\x57\x8d\x19\xf2\xfa\xd3\x03\x84\xe3\x18\xfd\xef\xaf\x3f\x5e\xfc\x7c\x3f\x1c\x9f\x5f\x81\xd1\xfa\xfc\x62\xf8\xcd\x81\xff\xf1\xfa\xe1\xde\xff\x6a\x2c\x2c\x4f\x44\xa0\x14\x3f\x82\x8a\xc7\x24\xb1\xc9\x13\x64\xc4\xc2\x91\x3a\xec\x00\xfd\x44\x12\x17\xe9\x6a\xc5\x14\x0f\xa1\x68\xf7\xb0\xb5\x62\xb1\xb1\xf9\xad\xa1\xfc\xde\xfa\x4f\x96\xd3\xa0\x23\x1e\xdf\x85\x13\x03\x21\x47\x06\xcb\x20\x99\xdc\xea\xbe\x05\xc1\x11\x36\xa3\xac\x2d\x1e\x8f\xb0\xa7\x97\x14\xe2\x7f\x20\x8b\x1f\xb5\x7a\x7d\x83\xa9\xe8\x4c\x7b\xcd\x68\x40\xee\xc4\x68\x3d\x1d\xcb\xea\xa1\x92\x46\x16\x36\xd9\x36\xad\x31\x9f\x4d\x40\x70\x6f\x3e\x5d\x0b\x2f\x45\x3e\x2b\xe1\x50\x2a\x7c\x3e\x87\x83\x72\xf2\x17\x4d\x41\x83\x23\x76\x7f\x7d\x76\x7d\x82\x48\x82\x27\x1c\x42\xf9\x6d\x48\x90\x6b\xc2\x2e\x58\xc4\xd3\xa0\xa1\x12\x42\xc9\x01\xca\x0a\x84\x92\xd0\x88\x76\x64\xda\x58\x81\x54\x92\x71\x51\xc7\xf7\xd8\xad\x0a\x68\x27\x7b\xc3\x45\x97\xeb\x5f\xbf\x06\x4b\xc7\x33\xad\xc8\x55\x38\xaf\xbd\x9b\xa7\x04\x9b\x5a\xfa\xc6\x2d\x64\x6d\xf9\x36\x80\x35\x49\x4a\xf5\x14\xf5\xc1\x91\x47\xd6\x05\x5f\xbc\xc9\x19\xfa\xe1\x2f\x12\x4d\x72\x35\x62\xe5\x36\x38\x43\x83\x9f\xee\xd0\x77\x58\x45\xf3\x6f\x46\xec\x5a\xab\x99\x3f\xfc\xa5\x05\x4a\x69\x6d\x74\x42\xbd\x26\x67\x58\xe1\x0b\x8e\x63\xca\x66\x4d\xd0\x84\x45\xfd\x98\xe1\xfd\xe0\x04\x5d\x5b\x1d\xbe\xc8\x04\xf1\x29\xc1\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x65\xf8\x36\xa3\x99\xc1\x85\x35\x62\xf7\x06\x93\x51\x73\x55\xaa\x50\xc6\x6d\x0d\x23\xad\x95\x19\xb4\x4a\xec\x32\xa4\x48\xb2\x40\x7a\x75\x80\x8c\xfd\x66\x58\x79\x0c\xe4\x99\x3a\xb3\x1f\x31\x50\xd0\x7d\x6e\x4a\xc2\x23\x9c\x40\x4c\xde\x61\x60\xd3\xd3\x6a\x3b\xcf\x21\x3f\xdc\x14\x3d\x5f\x94\x43\x67\x3d\x64\x81\x17\xca\xc2\x8d\x02\x03\x00\xec\xa3\xf5\xc6\xa6\x5c\x73\x1c\x83\xc5\x06\xc6\xb7\xc4\xac\x8e\xfe\xd0\x63\xb3\x99\x65\xd1\x4f\x7d\xda\x16\xcf\x99\xc3\x22\x89\xc0\x7c\xcf\x16\x10\xbe\x0d\x45\x47\x38\x84\x7e\x14\xdc\xd9\x12\x65\x6d\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\x58\xcf\x15\xcb\x33\x1b\xd8\x68\x65\xfd\x4c\x90\x43\x9f\x01\x15\x97\xd6\x54\xdf\xb0\x47\xe8\x36\x54\xaf\x63\x1e\xe5\xa9\x43\x56\x86\xec\xa9\xa2\xac\x7c\x49\xe2\x31\x17\xfb\x2a\x8a\x07\x94\x16\x45\x20\x7d\xbc\xb3\x7e\x6c\x08\x66\x10\x7e\x5a\x97\xd4\xdb\x05\x5f\xe0\x1d\xdb\x45\xad\x99\x86\xc6\x59\xb9\xa5\x52\x6b\x5b\xe7\x25\x5e\x15\xe8\xaf\x5c\x80\xb0\x45\x3e\x67\x1c\x8c\xdc\x26\x3d\x8b\xc7\x5f\x49\x74\x7e\xa3\x25\x20\xad\xf1\xfa\x33\x98\x4b\x65\x82\xcb\x20\x5d\xc7\x7c\x6d\xd2\x05\x0e\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x9d\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x3a\xa7\xda\x62\x17\xec\x01\x6c\x5b\xfe\x4d\x50\x1e\x83\xd8\x21\x3c\xb3\x27\x5c\x86\x27\x13\x95\x8e\x66\x11\x49\x20\x89\x3a\x28\x73\x08\x2f\xec\x5a\x89\xfe\x7f\x2d\x01\x2b\x1b\xeb\xa3\xb2\x59\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xf0\x33\xd6\x9c\xfb\xc0\xc2\x68\x99\x8f\x8c\xe7\x65\x8a\x23\x83\x0a\x2a\xd1\xd7\x9f\x4f\xf4\x6f\x07\x68\x71\x02\x41\xa4\x07\xe8\xd7\x13\x8b\x96\x83\x85\x1a\xeb\x9f\xbe\x71\xb2\xb6\x6d\x02\x06\x4d\x25\xfa\xea\xf8\x09\x0b\x53\x33\xfa\xd8\x8c\xe8\x2b\xcb\x59\x7d\x5d\xbc\x50\x36\x4f\x38\x7f\xb4\x01\xb6\xb5\x0f\x8f\x1d\xf0\x1a\x90\xb7\xf7\x9b\x98\xad\xf7\x89\xf9\x0a\x1d\xc2\x0b\x04\x1d\x65\x13\x74\xf4\x77\xc9\x19\x3a\x5a\xe0\x34\xb1\xbf\xba\xa7\x36\xfe\x17\x4b\x9b\x13\x17\xfb\x20\x9f\x64\x61\x2c\xa5\xdf\x25\x7c\x02\xb3\xba\x74\x33\x35\x11\xb4\x30\xd0\xe2\xf6\x29\x2e\x2c\x3b\x11\x97\x88\x0a\xf8\x41\x29\x57\xe6\x15\xe0\x71\x4d\xb3\xfa\xec\x87\xf4\xdf\xc6\x2f\x0c\x8b\xe2\x92\xf8\x8c\x71\xd8\x47\xaf\xe9\x46\x3f\xa3\xaf\x2d\x0b\xfa\x46\xdf\x31\x36\x5c\xd9\x2c\x43\x53\x07\x0b\xdf\xc1\xcf\x41\x07\x94\x21\x93\x96\xb9\xe4\xcb\x5f\x8f\x8f\x8e\x8e\xfc\xd7\x90\xb5\xfe\xff\x22\xaa\x24\x49\xa6\xa6\x25\x77\x83\x2d\x46\xec\xd2\x15\x5e\x70\xc6\xeb\x02\xd2\x31\x13\x5c\xf1\x88\x27\xe8\xb0\x30\xe8\xc6\x3c\x92\xe8\xdf\xb5\x58\x1b\x2c\x25\xfc\xa8\xf5\xb8\x16\x18\x58\x83\xf4\xfc\x4a\x87\xca\x1a\xc4\xab\xc7\x2a\x44\x71\xf3\x8a\x2d\x96\x61\x15\x0f\xa0\x05\x4d\x39\xc7\x16\xe9\x4d\x08\xfd\x32\xf9\xac\xe0\x51\x0b\x90\x5e\x63\x28\x7b\xf3\x4d\x59\x63\xb7\x05\x9e\x9e\x21\xeb\x96\x05\xb0\x78\x57\x96\x33\x98\x79\x1e\x84\xee\x13\x7d\xb9\xb0\xb0\x14\x80\xcc\xd3\x14\x8b\xc5\x71\x71\xda\xea\xc4\x59\x20\xad\x01\x8f\x49\xdc\x02\x80\x0b\x37\xb1\x47\xcb\x46\x31\x58\xf1\xd2\xdd\x68\xfe\xec\x46\x50\xcb\x30\x40\x2c\x20\x2c\xe2\xb1\xa5\xeb\x22\xfb\xb4\x2c\xb1\xf8\x77\xea\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\xb7\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x86\x7b\xf4\xfc\xfa\xce\x7d\xd3\xfd\xd2\x85\x75\x28\x8b\xec\x38\x09\xf1\xf1\xd8\x0c\x09\xfc\x5c\x5c\xbf\x10\xdb\x61\xac\x33\xb9\xcf\xcd\x35\xff\x3e\xe5\x37\x34\xd1\xb7\x16\xd0\xf8\xd1\x88\x95\x7e\x3e\x40\x24\xa1\x29\x65\x3e\xb6\xce\x30\x77\x3e\x35\xd2\xf3\x23\x55\x7a\xcb\x64\xfc\xa8\x39\x98\xc3\x75\x0a\x54\xaa\x01\x5b\x38\xd2\xf1\x8e\x29\x6b\x81\xc8\xa5\x1e\x57\xa1\xa3\x6b\x61\x56\x37\x71\x68\x05\x52\x1a\x10\x1e\x9c\xdf\x11\xd3\xad\xb9\xb3\x54\x84\x0b\x07\xed\x05\xcd\x1d\x3a\x40\xfc\x80\x03\x40\x1f\xa5\x98\x5f\x2f\xff\x36\x08\x28\x43\x96\xa7\xdb\x26\x9b\xd8\xf0\xe1\xb7\x32\xd3\xdd\x08\xe2\x6e\x2a\x9b\xb8\x44\x58\x9e\xba\x03\xb5\x06\xc5\x0d\xad\xf8\x13\x93\x28\xc1\x06\xa9\x46\x37\x04\x91\x8f\x07\xc6\x41\x9a\x05\x7d\x99\xeb\xc5\x74\x63\x6a\xec\x24\x84\x7d\x6d\xfe\xfd\x0d\xb2\x77\xc3\xb7\x07\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\x3e\x00\x65\xb4\xd6\x1f\x96\xc0\x04\x60\xd4\x4d\x14\xa0\x99\xf0\x56\xb9\x46\x10\x05\x3b\x66\x3c\x26\xdb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x96\x4e\x4b\xa4\x5c\xd3\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x2d\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x6d\x37\x21\x6a\x40\x2b\xea\x74\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x9c\xb3\x29\x3f\xb1\x3a\xd5\x05\x65\x8f\x86\xe2\x5f\x6a\x8f\x0c\x20\x36\x89\x4b\x30\x6e\xae\x4a\x2b\xcc\xe1\x10\x51\x16\x25\x39\x5c\x7c\x52\xe1\xe8\xd1\x80\x7a\xb7\x19\x7d\xf5\x37\xe3\xd5\xc9\x94\x2d\x12\x53\x9e\x24\xb6\xdb\xe2\x02\x2d\xca\x58\x3f\x51\x8c\x30\x7a\xb8\x3d\x6f\xee\xfb\x91\xd6\x9d\x39\xcd\xb7\x67\x99\x40\xe0\x7f\x7e\xa0\x6b\xc5\x5d\x56\x60\xf1\x48\x89\xd4\xbd\x71\xa9\x0d\x74\x55\x13\xe9\xa7\x9b\x87\x41\x14\x91\xa4\xe6\xd2\x5f\xdf\x83\x4c\x9e\x68\xb4\x8a\x08\x1a\x57\x2c\x67\x1e\xd5\x69\x6b\x05\xb8\xd9\x8e\xeb\x9a\x1f\x4b\xfa\x6b\xf7\x21\xd6\x56\xdf\x53\x88\x0f\xab\x0f\x12\x29\x7c\x72\xea\xa7\x9b\x07\x20\x17\xbb\xa6\x56\x3c\xe4\x26\x2b\x00\xaa\x75\xf8\x80\x9f\xd2\x4e\x60\x45\xb6\xcd\x49\x33\x68\x6c\x6b\xc4\x4c\xd6\x60\xee\x96\xda\xf1\xb7\xc4\x88\x2b\xf0\xdd\x20\x48\xab\x1d\xac\x2e\x0c\x9b\x83\x87\x6b\xa0\x68\xc0\xfb\xdd\xe6\x53\x79\x77\xc5\x74\x96\x0f\x33\x21\x64\x0d\xdc\x87\x3b\xfd\x7a\xc7\x41\x96\x5e\x5d\x36\xc6\x67\x6c\xea\x60\xd4\xe1\x97\x63\x2b\x63\xaf\x73\xed\x39\x72\x34\x8a\x8e\xf4\xd9\x3a\x7e\x24\x2e\x20\xca\x4b\xc5\xae\xdf\x99\x25\xf4\xb0\xcc\x86\xb7\x95\x37\xb0\xa0\x40\x81\xd8\x32\x80\x45\x0b\xc2\xff\x1f\x7b\x5f\xd7\xdc\x36\x92\x9d\x7d\xbf\xbf\xa2\xab\x72\xe1\xf1\xfb\x52\xd4\xce\x6c\x25\x35\x71\x55\x2e\x68\x59\xde\xe1\xae\x2d\x79\x25\x79\x66\xf3\x86\x29\xba\x09\x34\x49\x44\x60\x37\x8c\x06\x24\x33\xd9\xfc\xf7\xb7\xfa\x9c\xd3\x1f\xf8\x24\x40\x4a\xf6\x64\x33\x17\xc9\x8e\x45\xa0\xd1\xdf\x7d\xfa\x9c\xe7\x3c\xcf\x72\x37\x98\xda\xcf\x7f\xf8\x0d\xbd\xfc\xbe\x41\xf4\xe7\x97\x3c\xe4\x53\x3a\x0a\x9b\x1d\x97\x66\x8f\xb5\x5f\xed\x70\x07\xa3\x6d\x7e\x54\x95\x3e\x66\x47\x55\x08\xbf\x38\x50\x81\x92\x3e\x65\x4b\x79\xc4\x88\x08\x4f\xd1\xe3\x57\x6c\xc1\x19\xe4\x95\x9b\xcc\xd9\x52\x75\x0a\xa1\xca\x53\xca\xf3\x0d\x5e\x55\xb5\x28\xf4\xcb\x96\x11\xf6\xd9\x27\x27\x8c\xf0\x11\xea\xb8\x61\x04\x1a\x2e\x42\x7d\x2b\xcd\xd5\xb2\x4a\xf3\xea\xec\x23\xa7\x33\x1d\x70\x18\xfa\x94\x98\x48\xe5\xc8\x89\x1e\x9b\xb5\xd2\xcd\x5e\x73\xa2\x4a\xfa\x15\xdf\x39\x6e\x06\xab\xd5\x4c\x99\x76\x58\xb9\x95\x00\x86\xe2\xee\x3a\x9c\x2c\x87\x1e\x56\x81\xe4\x49\xbb\x6a\xb0\x90\x33\xfb\x88\xe7\x59\x33\x57\xe4\x1c\xaf\x42\x80\xd4\x45\x5c\x3a\xdc\x74\xb9\xef\x75\x6a\x5c\x47\x23\xc6\xa6\xd1\xd6\x15\xdd\xcd\x4d\xdb\x9d\x46\xa4\xdd\xe4\xd8\x54\x7b\x75\xb3\x1e\x44\xde\x06\x16\x1c\xf1\xf1\x5b\xdb\x44\x2a\xca\xf6\x65\xdb\x87\x0f\xdf\x6a\x2d\x77\x07\x15\x04\x69\x02\x84\x85\x43\x34\x6f\xba\xf7\xd3\xd4\xd3\xf5\xd5\x3e\xd6\x5c\xad\xc5\x49\xbb\x71\xc2\x77\xcb\x5c\x75\x0b\x8b\x0d\xe8\x26\x5b\x44\xc5\xd3\xb6\x45\xa1\x91\x3d\xfb\x5c\xf2\x14\x0f\x37\x49\xd3\xd1\x56\x1b\x2e\x2d\x3f\xfc\x13\x9b\xc1\xe9\xc3\xde\xc3\xbe\x08\x50\x0b\x28\xad\x50\x2c\xd9\x65\x22\xd7\x4a\xf2\x4e\x85\xbd\xfb\x1f\xf5\x92\x54\x82\x96\x3c\x8a\x54\xd9\x54\x04\x1a\xd1\x92\x96\xd2\xc2\x46\x71\x76\x5f\xae\x44\x2e\x05\xaa\x08\xc2\x73\xcc\x3e\x37\xa8\xba\x8a\x97\xc5\xf6\x87\x65\x94\x26\x83\xa5\x8b\x20\xcf\x6b\x66\x5e\xbb\xc0\xb7\xfa\x1a\x50\x29\xbf\x52\x75\xc9\xf0\x37\x86\xbf\x4d\xd9\x6b\x1e\xdd\x0b\x19\xb3\x2c\x2d\x37\x09\xd1\x3a\xc0\x09\x05\xdb\x65\xe0\x28\xaf\x36\x0c\x6d\x0b\x2c\xdf\x1c\x43\x0b\xb9\xe3\xf7\x48\x27\x4c\x46\x64\xc4\xd3\x4e\x52\x30\x77\xc1\x59\x26\xcd\xb9\x7b\x70\xb4\xdc\x79\xd8\x2c\xa6\x3e\xf7\x74\x89\x59\x2e\x8f\x5b\x45\xd8\x80\xca\xfd\x6a\xc4\xc2\x75\xb3\xb5\xc1\xbe\x63\x19\x12\x9c\x9e\x24\x55\x06\x57\x2f\x38\xde\x81\x12\xbb\x94\x8c\x03\x81\xcf\x0b\xcd\xca\xcc\xda\x67\xe0\x11\x4e\x21\x3e\x8f\x43\x60\x7e\xc8\x12\x73\x5f\xde\x8a\x85\x04\xcc\x33\x73\xcd\x6b\xc8\x8e\x31\xe1\xa1\x49\x6d\x5b\xc3\x1a\xe9\x2b\x4e\x8b\x36\x37\x18\xb5\x0f\xcc\xd3\x81\x78\xee\x62\x2b\xe4\xf2\x08\x62\xe7\xe1\x83\x56\xc1\x6e\x93\x19\xec\x3c\xeb\xae\x0b\x4b\x99\x90\x94\x17\x05\x53\x42\xd6\xd2\x64\x5d\x33\xa3\x13\xcd\x34\x2f\x12\x6d\xf6\xb2\xd6\x1e\xf7\xa4\x21\xa7\xf4\x3a\x1f\xc7\x54\xd2\xc2\x52\x52\xeb\x0b\x97\x1f\x32\x65\x6f\xc1\x1f\x19\xdc\x0c\x94\xe3\xfc\xe8\xda\xb0\x8a\xad\xe8\x24\xbf\x7c\x0a\x60\x95\x6d\x41\xf0\x7c\xaf\x9b\xd9\xe5\x02\x4d\xd9\xcc\xc7\x81\x90\xf5\x04\x23\x3c\x07\x5a\x24\x52\x2d\x8e\x99\x7c\x83\x5c\xa6\x80\x95\x80\x09\xc4\xc0\x92\xd2\xe6\xef\x9e\xcb\xdf\x55\xf3\x11\xd2\x6d\xf9\xbd\x90\x7d\x7e\xb1\xe1\x35\x44\xc7\x65\xaf\x4b\xc0\x79\x44\x15\x3a\x45\x8f\xa9\xe0\xf0\x65\xe7\x89\x66\x92\xf5\xb9\xe9\x72\x73\x0d\x89\xee\x29\xc9\x07\xfd\xe2\x44\x55\xf3\xb8\x55\x3a\x5c\x67\x76\xfc\xf0\x26\x9b\x97\x8e\xaf\x1d\x92\xa4\x5c\x07\x23\x3a\x4a\xaa\x90\xc9\x06\x6a\xed\x16\x29\xfa\xfc\xdd\x78\x33\xbb\x85\x42\x37\x40\x3c\xd1\x16\xd5\x5c\xcd\x7f\xfe\x51\x5f\xc3\x8a\x7d\x0a\xce\x84\x76\x81\xdc\xd3\xf3\x15\x8e\x8c\xd4\x38\x24\x9e\x57\xd7\xe5\xb1\x63\xf9\xc8\x54\xcc\xfc\xf4\x1a\x2f\xa5\xfb\xed\x9b\x55\x93\xe0\x1d\xd4\xb6\x43\x33\xfb\x7d\x00\xe7\x60\xab\x32\x41\x35\xfb\x8a\x41\xa8\xac\xc5\x01\x4c\xd4\x70\xfc\x27\xda\x9d\x27\xed\x73\xec\x83\x8a\x4f\x99\x58\xe3\x89\x0d\x9b\xf3\x7a\x00\xda\x5b\xb7\xa9\xef\xf7\xf4\x44\xa6\xba\x71\xba\xf1\x72\xb8\x5e\x3d\x00\x33\x56\xe5\xfa\x16\x74\x5e\xba\xb8\x43\x02\x09\x04\x9b\x0c\x68\xc6\xd9\x7c\xc6\xa5\xa6\x74\x0d\x0a\xc5\xf9\xfd\xf1\xcf\xd9\x9f\x6e\xaf\xaf\xce\x76\x3c\xd7\x5b\x0e\xb9\xd9\xb6\xac\x89\x95\xce\xc3\xeb\xb1\x8d\x3f\x26\x72\x21\xcf\xd8\x46\x4d\x30\xda\xfd\x8a\x6d\x8b\x22\xd3\xaf\xce\xcf\x37\x49\xb1\x2d\x57\xd3\x48\xed\xce\x7d\xd7\x9c\xf3\x2c\x39\x5f\xa5\x6a\x75\x9e\x0b\xc0\x3b\x9f\x7d\x3f\xfd\xe1\x7b\x18\x99\xf3\x87\xef\xcf\x21\xc6\x39\xdd\xa8\x7f\x78\xf7\xc3\x3f\xff\xe1\x9f\x4c\xc1\xd9\xbe\xd8\x2a\xf9\x8a\x42\xe9\xbd\x65\x9f\xa1\x55\x7e\x8e\xaf\xd4\xbe\xf2\xcf\xd3\xdf\x87\xd5\xa0\x47\x77\x2a\x16\xa9\x3e\x7f\xf8\x7e\x69\x07\x66\x9a\xed\x7f\x43\x08\x7f\x33\x84\xf0\x7d\x52\xfc\x86\x10\xfe\xa6\x08\xe1\xe1\x16\x8e\xdb\x63\x80\x72\xd5\xef\x8f\xe6\xef\x6e\x8f\xb4\xae\xf7\x43\xfb\x50\xcb\xe1\x10\xe6\x6f\x9c\x70\x44\xdc\x8b\x51\x57\xec\x5a\x73\xdd\xd5\xa1\xc3\xc5\x36\x56\xf6\xa0\xd3\x98\x1f\x95\xae\x0e\x78\x9c\x24\x02\x4a\x6d\x74\x09\x66\x3c\x69\xc3\xfd\x12\xee\xec\x94\xfe\x7b\x4e\x72\xf8\xa7\x66\x85\xa7\xe6\x1e\xc9\x08\x9f\xe2\xdb\x16\x25\xa7\x1e\x2d\x13\xfc\x53\xf0\xa7\x0f\x54\xd4\x75\xb4\xd0\x38\x79\xa0\x2e\xb6\x5e\x1d\xd5\xd8\x72\x7d\x1c\xdc\x72\x86\xe4\x8b\x2e\x4e\x87\x58\xb5\x44\xdb\x0f\xda\x83\xc3\xf2\x59\x80\x5c\x3b\xd1\x66\x65\x65\x9e\x29\x2d\xf4\x94\xbd\xad\x69\x4e\x7a\x08\xe9\xcd\xdb\x0b\xf6\xfd\x8f\xff\xfc\x87\x85\xfc\xae\xe5\xdc\x86\xfd\x5e\xe5\x1b\x42\xb4\xc2\x69\xbd\xe3\xba\x10\xf9\x79\xbe\x8e\xce\x71\x97\x3b\x37\xef\x9f\xd1\x47\xcf\xd4\xfa\xcc\x91\x43\x9f\x11\x4f\xee\x74\x17\x8f\xa3\x7a\xa8\x4c\x3d\x3c\x6b\xe8\xa0\xd1\x70\x28\x21\x29\x94\x5a\x3b\x19\x00\xcc\x38\x42\xc5\x10\xb5\x6e\xf9\x8f\xd7\xa9\x5a\xe9\x97\x8e\x8a\x8e\x6b\xfb\x0d\xcf\x0d\xd5\xbd\x34\x9f\x86\x27\xde\x4e\x91\xe7\x74\x54\xd8\xbd\x24\xbc\x8e\x8c\xe9\xf8\xf6\xc5\xe6\x8f\x7b\x64\xc6\xe0\xb9\x2a\xa5\xe5\xd9\x56\x52\xa8\x35\xe0\x29\xc1\x12\xb6\x78\x11\xf0\xd5\x9a\x93\xd6\xb3\x60\xe4\x22\xc3\x03\x06\xa2\x0a\xdd\xdd\x7d\x22\xd7\xfc\xa1\x7e\x7e\x0e\xae\xf9\x53\xfb\x9d\x36\x94\x6f\xd4\xe1\xa7\x82\x3a\x71\x29\x8d\x41\x55\x98\xe7\x0f\x46\x50\xdd\x3e\xe0\x75\xa0\x3c\xad\x73\xc6\x73\x30\xd2\xc4\x59\xa1\xce\x80\x3e\x08\x48\x69\x50\xfd\xa1\x0b\x56\x01\x91\xe7\x31\xc7\xa4\x79\x7e\x40\x3d\xd1\x30\xff\x12\x54\x94\x6c\x12\x8d\x64\xaa\x04\x8e\x4b\xa4\x14\x39\xc5\xd4\x0e\x9e\xa8\x23\xe3\xd2\xe1\x50\xf6\x63\xe3\x02\x85\xf1\x80\x99\xdf\x65\x46\xf0\x60\x13\x98\x32\xb0\x3e\xb7\x6a\xa7\x8c\x39\xa3\x4a\x1d\xfc\x88\xb7\x17\x38\x84\x3b\x6d\xaf\x1d\xcf\x90\x2e\xf0\xdb\xb5\xc6\x2c\x2d\xf3\x13\x3a\xf5\xc2\x87\x46\x89\x9d\xac\xaa\xf2\x0e\x07\xea\xef\x78\xf9\xfb\xe7\x0d\xa0\x1e\x50\x31\x10\x44\x7b\x89\x6d\x3b\xf9\x4f\x73\xaf\x31\x53\xca\xdd\x14\xdc\xc9\x8d\x20\x1d\x64\xc5\x0c\xf1\x62\xd6\x9a\xef\xcc\x5b\x2f\x77\x23\xc7\xc0\xc1\xbd\x87\x0c\x00\x97\x08\x80\xb6\xc8\xe7\xb3\x56\xe8\x73\xd7\xba\xb4\x12\xb9\xf1\xd2\x32\xb7\x8e\xab\xea\xad\x2b\x80\x48\x5a\x9b\xf5\xf6\xc4\x57\x80\x93\xc7\x3e\xc6\x0d\xc1\xda\x16\x5d\x70\xc2\xf1\x8b\x11\xa4\x6e\xc6\xf4\x1d\x7c\x04\x27\x67\xa3\x07\x83\xb5\xd0\xd5\x81\xe3\x5c\x6c\x7d\x1e\xab\xb6\xc4\x0a\xe4\x0a\xf4\x79\x54\xa6\x96\x8d\xcb\xa3\x7b\xf1\xc1\xeb\x81\xef\x33\x31\x61\xab\x12\x7e\xbf\xba\xbe\x0b\xd1\x1a\x09\xb6\xf6\x2c\xda\x8a\xe8\x1e\x1c\x26\x78\xe4\x39\xf9\x4c\xe2\x25\x5c\x48\x2f\xc2\x56\x28\x0b\x3d\xd8\x3b\x5e\x7a\xa7\xcd\xa0\x72\x16\x27\x3a\x4b\xf9\x1e\x82\xbc\x12\x33\x26\x7c\x80\xd8\xa5\x1a\x99\xad\xe0\x90\xbf\x78\xf8\x48\x9b\x51\x99\xf9\xf7\xc6\xf6\x25\xcf\x57\x49\x91\xf3\x7c\xcf\x7c\x67\x36\xf7\x03\xa6\xc5\x8e\xcb\x22\x89\x16\x72\x27\xb8\x0c\x51\x79\x14\xe4\x36\x9d\x1c\x2b\x41\xcc\xcd\xeb\xb5\x88\x0a\x4f\xfd\x08\xc6\xbb\xeb\xa9\x43\x6b\x70\x5c\xdb\xdd\xca\xeb\x6d\xfa\x4f\x89\x44\xa2\x81\x64\x07\x98\x4f\x9a\x43\x74\x34\x1e\x19\xbc\x01\xd1\x3e\x3a\x72\xed\x65\x10\xfe\x65\xe7\x14\x5b\x89\xe2\x51\x00\xb3\x01\xa5\x62\xb6\xd9\xf8\x27\x0b\x37\x9c\xa6\xc3\xdc\xae\x60\x1d\x20\xc1\x70\x81\x85\x60\x32\x47\xc1\x24\x6b\x5c\x4a\x2f\x28\x39\x14\xbc\x3d\x2f\xc8\x6f\xf5\x02\x8e\x69\x73\x7b\xcc\x1f\x44\xbc\x90\x55\x82\x2b\xb2\x19\xfd\x82\x63\x5e\x92\xec\x69\x76\x1b\xdb\xc7\x83\x7c\xf9\x97\x40\xea\xe1\xe9\x3c\x5d\xfa\x63\x8f\x44\x1a\x36\xfa\x39\x6f\x55\x56\x9d\x31\xb4\xee\x07\x40\xb2\x84\xb6\x92\x43\xa4\x50\x58\xc1\x53\xb8\x49\xe9\xe8\x7b\x90\xdb\xcf\x01\x60\xc9\x2f\xd9\xf0\x74\xb6\x95\xb1\x90\x36\xaf\x7d\x5d\xa6\xc8\xd7\xda\x25\xda\x46\x6c\x5e\x36\x07\xe7\xdb\xe5\x62\x39\xbf\x1a\x0b\x54\xde\x1c\xec\x21\x00\x23\xe3\x5e\x67\x67\xbd\x90\x1a\xa5\xc1\xad\xc0\x13\x38\x9e\x37\xa2\x80\xd3\x3c\x2e\x53\x4c\xd3\x06\x8f\x39\x30\x83\xf1\x34\x65\x49\xa1\x17\xd2\x11\x99\x21\x2d\x3d\xec\xb0\xd6\xa5\x6e\xb5\x81\xa5\x53\x18\x86\x9f\xb9\x04\x3b\x2c\x89\x92\xa2\x01\xe1\xde\x87\xa2\x28\x59\x26\x38\x66\x15\xe2\xb0\x2d\x64\x78\xe7\xaa\x0f\x02\xa5\xe0\x81\x5a\xfc\x53\x64\xc3\xf5\x20\xf2\x41\x62\x7f\xf4\x90\x4c\xd9\x0c\x5b\x67\x2e\x5c\x56\xef\x14\x6b\x4b\x4c\x06\x84\xb4\x34\xb7\x9a\x42\x5b\x1f\xb9\xbf\xb7\x42\x8e\x44\x54\xa6\x3c\x4f\x41\x1d\x60\x5d\xa6\x2c\x59\x07\xd2\xad\x30\x06\x48\x63\x65\x86\x2b\x52\x70\x56\x5b\x2f\xb9\xe6\x3b\x11\x64\xd0\x93\x7b\x27\x0d\x30\x14\xc8\xcd\x8d\xc1\x79\x53\xd6\xcb\x29\x7b\x53\xd7\xfa\x87\x35\x11\xd0\x5f\x26\x1a\xb7\x3f\x57\xdf\x20\xf9\x13\x5a\x67\xaa\xa8\xa4\x59\x91\x6e\xd5\x75\x8c\x20\xd0\xe8\x8f\x03\x68\x58\x11\x85\x7e\xd4\x70\x6b\xf2\xb7\x79\xb5\x06\xdb\x70\x0b\xa2\xa3\x82\xf6\x54\x18\x59\xc9\x90\x3a\xf4\x88\x8a\x3a\x6a\xd6\x96\xca\xee\x7a\x94\x62\x61\x1c\x47\x56\x35\xd0\x5d\x1a\x5f\xd1\x60\xe6\x84\x70\x9c\x21\x3d\xbb\xe1\xc5\x58\x6c\x8e\x4b\xc6\x19\x5f\xd1\x56\x1c\xd4\x90\x6a\xc2\xee\x31\xb2\x9e\x4e\x1e\xfb\x88\x8a\x3a\x11\x6e\xaf\xcc\x00\x5b\x85\xe0\xd1\xb6\x9a\xcd\x6a\x39\x27\x5d\x0b\xf4\x42\xd2\x61\x37\x3e\x11\x77\xe6\xe7\x1c\x48\x4f\x31\x53\xfd\x29\xbb\x96\x02\x91\x73\x6a\x1d\x1c\x2a\x54\x01\xd2\xa8\x02\xda\x7f\x19\x88\x81\xa7\x89\xbc\xb7\x24\x1f\x66\xc9\x4d\x18\xf7\xa5\xc3\xae\x87\xd3\x06\x77\x91\x0e\x5b\xb2\x4d\x24\xe3\x04\xf3\x72\x58\xaa\x6c\xfb\x9d\x3f\x00\xa0\x8e\xdf\x01\xda\xda\x31\x7c\x58\x7a\x91\xe4\xee\x16\x57\x51\x7b\x0f\x51\xa3\x45\x52\xec\x0f\xf5\xef\x87\x6d\x15\x85\x38\x42\x52\xea\xe3\xd5\x9b\xcb\xb7\xf3\xab\xaa\x0e\xd4\x5f\x3e\x5e\x7e\xac\xfe\xe5\xe6\xe3\xd5\xd5\xfc\xea\x8f\xe1\x9f\x6e\x3f\x5e\x5c\x5c\x5e\xbe\xa9\x3e\xf7\x76\x36\x7f\x57\x7b\xce\xfc\xa9\xfa\xd0\xec\xf5\xf5\x4d\x4d\x79\xca\xca\x46\x05\x7f\xba\x9b\xbf\xbf\x7c\xb3\xbc\xfe\x58\x11\xaf\x7a\xf3\xaf\x57\xb3\xf7\xf3\x8b\x65\x4b\x7d\x6e\x2e\x2f\xae\x7f\xbe\xbc\x39\xa0\x3d\xe5\xdb\xdb\xda\xa5\x4f\x01\x1f\x3b\x5a\x89\x6c\xc6\xd6\x79\x22\x64\x9c\xee\x11\x7b\x6f\x6f\xb6\x35\x30\x6d\x78\xf6\x26\x3b\xa1\xca\x53\x20\xf4\x77\x5b\xc1\xd4\x83\xc8\x81\x8f\x04\x4b\xa3\xe4\x65\xae\xef\x3b\xd9\x2a\x8b\xbc\x19\x15\xe8\xcd\x14\x2a\xf2\xbd\xcb\x45\xeb\xab\x8e\xe7\xb2\xa2\x8f\xb0\x4c\xe4\x7d\x75\x01\xcb\x28\x2f\xb3\x22\x59\x75\x27\x45\x8c\x4e\x71\x1d\x7a\xf7\x46\xe6\xc5\x76\x9a\x9a\xab\xf6\x8d\xb1\x92\x1b\x70\x0a\xf0\x18\x4a\x38\x56\x60\xcf\xbd\x6d\xc1\x9a\x59\xb9\x4a\x93\x88\x25\x71\xdd\x9f\x82\x29\x6c\xe8\x32\xae\x13\xb4\x66\x22\x07\x53\xd5\xdc\x00\xb2\x5c\x9c\xf1\xb2\xd8\x5a\xed\x7f\x97\xc9\x88\x84\xa9\x22\xca\x05\xc6\x02\x84\x06\x27\x2d\x2a\xab\x05\x5f\x82\xca\x50\x2e\x7d\x0c\xb4\x3d\xd3\x80\x2c\xbf\x23\x46\x80\x6f\x62\xe9\x23\x9c\xa4\xf8\x7c\x6f\xd7\x50\x8d\x13\x5d\x97\xd5\x86\x13\x1e\x7f\xb4\xfa\x6c\xa6\xdd\x66\xa7\x76\xfa\x64\x38\xc8\x36\x77\xa3\xbd\x19\x87\xe6\x58\x38\x51\xaa\xc9\x0c\x54\x3a\xfd\x74\x91\x0b\x38\x44\x08\x0a\x60\xfd\x17\x00\x5d\xa1\x5c\x0f\x48\xf1\x30\x57\xb5\x95\xd8\xf2\x74\x8d\x16\x87\x19\x1a\xbf\xae\x9a\x53\xf4\x4e\xdd\x0b\x79\x83\x03\xf6\x4d\xb6\x43\x89\x37\x1f\xcf\xae\xe0\x3c\x42\xde\x85\x69\xea\x68\x67\x95\xcd\x75\x03\x63\xaa\xc0\x7b\x42\xf0\x33\xa6\x74\x78\xee\x64\x9b\x26\xb7\x5e\x27\x5f\x4c\x81\x0b\x29\x5a\xd9\x63\x01\x2f\x64\x79\xae\xdc\xbe\x0c\xd8\x28\x24\x0b\xba\x17\x12\x94\xdd\x50\xf8\xf9\xe0\x9c\x1d\xe7\x3f\x6f\x8e\x45\x8f\x43\x1f\x7c\x7e\x49\x45\xf0\x2e\x8c\xf2\xd8\x7e\x2a\x30\xc7\x66\xca\xde\x10\x05\x8a\xf9\xcb\xc5\xbb\xf9\xe5\xd5\xdd\xf2\xe2\xe6\xf2\xcd\xe5\xd5\xdd\x7c\xf6\xee\x76\xe8\xf2\x7b\x8a\xbc\xa8\xda\xea\xab\xa7\x07\xb9\x1d\xe2\x9c\x56\x9e\x4f\xcf\x75\x8d\xf2\xcb\x0e\x86\xe4\x70\xed\x93\x38\x5b\xc6\x89\x8e\xcc\xf1\xb7\x5f\x0a\x19\x03\xed\xf6\x51\x53\xb5\xbd\xa8\x7a\x2b\xdc\x13\xcc\x3d\x61\x77\x10\x3c\xed\x1e\xec\x8c\x76\xbf\x03\xea\x0e\xdc\x90\xb9\x30\x8b\x3f\x36\xf7\x03\x77\xda\x4c\x0f\x6b\xad\x98\xe2\x4e\x6b\x5b\xb5\x88\x7a\x9b\xb0\xbe\x89\xd6\x25\x37\xfb\xa3\x7d\x0c\x20\x87\x1d\xbd\x42\x5c\x88\x21\xf7\x77\x12\xe8\xd6\xb2\x44\x2f\xe4\x8e\xcb\x98\x17\x2a\xdf\x77\x34\x71\xd8\xe6\x19\x2e\x9b\xea\x16\x1a\x1e\xd9\x52\x88\xd8\x8e\x02\x3e\xca\x65\x7d\x2a\x21\x43\xf8\xdd\xf5\x9f\x2f\xaf\x6e\x97\x97\x57\x3f\x2f\x3f\xdc\x5c\xbe\x9d\xff\xd5\x21\x21\x33\xae\xdb\x74\x2a\xb3\x5c\x98\xdd\xc5\x12\xae\xb4\xee\x2f\x28\x1e\x69\xcb\x21\xc1\xb0\x64\xbd\x90\x76\x67\xc9\x7d\xf1\xdb\x5c\x95\x9b\x6d\x7b\x41\xf5\x5a\x7e\x98\xdd\xfd\x74\x54\x35\x81\x0e\x0b\x15\xe6\x70\xb5\x35\x11\xa1\xc9\x9a\xf6\x3d\x84\x91\xd6\xaa\x07\xa4\x6e\xf0\x68\x5b\x94\xa1\x63\x47\x3b\xea\xf6\xd2\xdc\xb4\x7a\x8d\xff\x96\xc7\xbb\x26\xd0\x5d\xb0\x6f\x56\x8e\x11\x40\x28\xa3\x50\x69\xa3\xb4\x57\x2d\x7f\xab\x9c\x60\x3f\x9c\xa5\x62\xb3\x11\x31\x4e\xaf\x7a\xc1\xe4\x83\xa3\x2d\x30\xf2\xe7\x7a\x5b\x2f\x92\x94\xe0\x09\x07\xb3\xc3\x7b\x0d\xdf\xc0\x3f\xb8\x57\xda\xf7\x8a\x0b\x2b\x57\x1e\x29\xa9\x0b\x2e\x3b\x02\xc9\x0f\x4d\x84\xe6\xa0\xad\xe8\x3a\x67\x2e\xf9\x89\x1c\x26\x36\x64\xe0\xd7\x41\x17\xe0\xe5\x74\x5c\xa8\xab\xc7\x8d\xc8\x52\x1e\x09\x97\xc3\x80\x5c\x84\x70\xaf\x3f\x26\x80\x47\x82\x8d\x92\xfc\x2d\x81\x90\x63\xa0\xee\xde\x32\x05\xc0\x73\x7b\x63\xf7\xe3\xe7\x77\xad\xf4\x5e\xdc\x88\x81\x0c\x1c\xcd\xa8\x98\x45\xd0\x77\xf4\x45\x81\x0c\x5d\x27\x2c\x79\xd4\x74\xa8\x7d\xf9\x67\x1a\x78\xbc\x33\x57\x1d\xdd\xdc\x72\xfc\xb9\xe9\xe1\x4c\xc7\xba\xbf\xf0\xd0\x68\xcd\xaa\xb7\x00\x5f\x72\x96\xab\xb8\x8c\x2c\xf7\x0e\x14\xeb\xf1\x35\xe4\x4e\xb3\xc7\x7b\xcc\xce\xcc\x30\xd3\x15\x49\xc4\x67\x80\x9c\x5f\xc8\xae\x60\x96\xdd\x81\x3a\x9c\x6c\x1f\xec\x99\x79\xca\xd8\xb7\xf4\x7e\xf7\xb2\xb0\x9d\x3d\x2c\x83\x95\xd9\xc7\xc1\xd4\xec\x80\x27\xd1\xb8\xac\x38\x46\xaa\xab\xc6\x40\x17\xd5\x86\xdb\xd3\xc7\xa1\xa8\x86\x81\x50\xaa\xa9\x29\x78\x40\x6f\xb9\x46\xbb\xb9\x88\xb6\xd5\x8a\x43\x6b\xaa\x44\x81\xf5\xea\x3a\x3b\xf4\x34\xff\xc4\xa0\x78\xd5\x04\x6f\xf4\x09\x79\x90\x2b\xa2\x6f\x4e\xc1\x72\xdc\xc4\x0f\x4d\x33\x77\x75\xc2\x5d\x17\x36\xac\x94\x97\x32\xda\xb2\x2c\xe5\x98\xb5\xbd\xe5\x1a\xa7\xb4\x05\x6d\xf0\x55\x92\x26\x05\xd0\xe1\x60\x2c\xb1\xd6\xc3\xe6\x3e\xc5\xf3\x7b\xcb\x05\xcc\x3d\xf7\x51\xdf\xa4\x3f\x11\x1c\xeb\x5a\xf5\x55\xe1\xb1\x7e\xc9\x06\x6f\xf4\x46\x22\xfd\xb4\x24\x68\xac\x1f\x0e\xb3\xe3\xc1\xb4\xf4\x6d\x19\x37\xb2\x54\xe2\x87\xfa\xeb\x95\xfe\x6e\x31\x13\xc6\x43\x43\x88\xe4\x7e\xc4\x36\x5f\xa7\xc0\x6f\x5d\x59\xeb\x54\xf1\x0e\x19\x66\x5b\x36\x32\xda\x77\x95\x1d\xab\x72\xd5\xc5\xa1\x8c\xb5\xea\x2f\xbd\x2f\xea\x60\xd7\xed\x53\x79\x25\xc3\x0d\x90\x17\xa2\x48\xc6\x39\x56\x82\x46\xf3\x42\x9c\xc1\xeb\xed\x85\x53\x2a\xdf\xe0\x36\x37\x26\x9a\xd7\x55\x71\xd6\x11\x80\xf6\x9a\xb3\xeb\x2f\x25\x37\x5b\xc3\xf5\xfa\x16\xf9\x59\x4e\x99\x64\x45\xd2\x9c\x61\xed\x2b\xb1\xfe\xd5\xbb\x6a\x48\x27\x9c\x03\x83\xb3\x5f\xdb\x5a\x73\x6b\xde\x1e\xbe\x20\xe7\x15\xd7\x4d\x96\x27\x0a\x78\x4a\xd4\x1a\x59\xff\xba\xc9\x26\x5b\xbf\x7b\x42\x4f\x7e\x2e\x45\x29\xcc\xdc\x5f\x95\xf1\xa6\xe9\x59\x1d\x61\x9d\xf9\x26\x6d\xd5\x23\xdb\x95\xd1\x96\xd9\xc2\x59\x2c\x52\xbe\xaf\x34\x0d\xec\xa5\x42\x01\xc1\xe3\x28\xeb\x2c\xe0\xeb\x8c\x4a\x5d\xa8\x1d\x80\x5a\x7d\xb9\x79\x29\x61\xc2\x33\x5e\x14\x79\xb2\x2a\x8b\x56\x00\x9c\x65\x34\x7b\x8a\x28\xd0\x26\x2b\x97\xbc\x95\x00\xf4\xc0\x1c\xaa\x11\x87\x0e\x59\x65\xb3\x96\x74\xef\x3a\x81\xa6\xd7\xff\x1a\x48\x9b\x59\xa1\x77\x3b\x32\xb6\x78\xfb\xe1\xf2\x62\xfe\x76\x5e\x0b\xec\xcd\x6e\xff\x1c\xfe\xfb\x97\xeb\x9b\x3f\xbf\x7d\x77\xfd\x4b\xf8\xb7\x77\xb3\x8f\x57\x17\x3f\x2d\x3f\xbc\x9b\x5d\x55\xc2\x7f\xb3\xbb\xd9\xed\xe5\xdd\x81\x08\x5f\xf3\xab\xdd\xb3\x92\x07\xec\x73\x16\x73\x6c\x09\xd1\xed\x45\x9f\xbe\xfa\x8a\xcd\x2c\x17\x5f\x85\x2d\xd2\x46\x69\x01\xd6\x81\xf2\xe0\x14\xcc\x7d\xc3\x0b\x7e\xc1\x0b\x9e\xaa\xcd\x94\xcd\x18\x21\xb2\x11\x69\xaf\x4d\xcf\x13\x51\x99\x99\xaa\x58\x84\x31\x9f\x22\x7f\x89\xf6\x8a\x8f\x6a\x4d\x14\x81\xa9\x08\xb5\x01\x6c\x5a\xd9\x42\x5e\x3e\x08\x59\x94\x40\x5c\xce\xd3\x94\xd1\x67\xed\x03\x41\xca\xbc\xad\xa5\x4e\x76\x49\xca\x73\x2f\xce\x77\x4d\x65\xc1\xed\xc5\xd6\xd5\x31\x24\x35\xf3\xb1\xed\x4d\xea\xe3\x9c\x41\xbd\x2f\xde\xcd\x61\x3e\x45\x85\x55\x9e\xb1\x1f\x5f\x48\xa4\xa0\xa3\x2f\xee\x38\x64\x7f\x14\x8a\x5c\x9b\xf8\x79\x7a\xb8\x7b\x22\xea\x53\x96\xa3\x0d\x02\x3c\x17\xc2\xcc\x55\xd2\xfe\xc7\xa5\x2c\xf2\xfd\x60\x23\xef\x0e\xd2\x9d\x35\x18\xea\x04\x26\xab\x0a\xf6\xa1\xe7\x89\xd9\xd2\xaf\xc0\xf2\xb3\x48\x47\x0a\x8c\xb8\xf8\x07\x02\x4b\x3a\x2e\x23\xa9\x39\x91\x7f\xad\xfd\x10\x32\xd2\x40\x2f\xac\x54\x29\x63\x4d\xb0\xb7\x5d\x22\xcf\x77\xfc\xcb\x4b\xdb\x52\x64\x78\x70\xb2\x19\xc0\xde\x25\x52\x73\x2d\xdb\x9b\x1d\xbf\xbf\xbb\x16\xb2\xa7\xbf\x0e\x9b\xce\xf6\x98\x81\x3b\xa0\xbf\xb0\x23\x80\xef\x41\xec\xdb\xc6\xaf\x21\x7d\x84\x20\x41\x5a\xf0\x50\x48\x96\x0b\xf3\xa0\x43\x07\xa6\x08\xfa\x74\xff\x86\x2c\x80\x8a\x3c\x63\xfb\x41\x16\x06\xdc\x4f\x5a\x36\xad\xa1\xfe\x67\xd0\xae\xa2\x2f\x99\x31\xc3\xc0\xbf\xf5\x39\x53\xd6\x03\x45\x34\xcd\x60\xfd\x87\x5a\xb1\x35\xa4\x00\x91\xfc\x7a\x2e\x20\xc6\x00\x43\x61\xc9\xd6\x81\xe3\xa9\x81\x26\xb0\x53\x20\x15\x1a\x3c\xef\xd2\xdc\x3d\xc5\xe7\x92\x82\xa7\xdf\xff\x7e\x9c\xd1\x51\xe4\x7b\x66\x85\x3d\x1a\x27\xae\x33\x6c\xa0\x5e\xa5\x4c\xda\x88\xdf\x6e\x4a\x69\xec\x92\xa7\xb0\x38\x86\x07\x16\x6b\x1f\xa5\x7f\x1e\xcc\xd2\xb1\x3e\xf1\x1c\x9f\x7f\x36\x1e\xcf\x9f\x6b\xf4\x9d\xf4\x39\xc0\x84\x53\xe9\xe1\x81\xb6\xe2\xd1\xfd\x23\xcf\x63\x74\x9c\x02\x10\x64\xca\x7e\x52\x8f\xe2\x41\xe4\x13\x16\x89\xbc\xe0\xc4\x9d\xa5\x21\x12\x0e\x0b\x8a\xca\x59\x48\x48\x91\x40\x22\x32\x09\xca\xf5\x45\xb2\xd9\x9a\xcb\x75\x80\x63\x50\xb9\xd9\x8e\x0a\xa4\x4d\xcc\x44\x44\x6c\x45\x1d\x1d\xb0\x4e\xf9\x43\xd3\xe0\x3b\x86\x66\x81\xcd\x5d\x9e\xa7\x0d\x14\x5a\x01\x8b\x3e\xe4\x09\x75\x18\x6d\x9a\xc8\x2f\x33\x61\x1b\x95\x72\xb9\x99\x4e\xa7\x4c\x14\xd1\xf4\xe5\xa8\x89\x4e\x05\x86\xa1\x47\x87\x6f\x4e\x95\xd2\x22\xdd\x3b\x86\x1d\x97\x81\x02\x90\xc7\x2f\x85\x90\x3a\x41\xff\x4f\xcb\xf4\xbf\xad\xbb\xe5\xbf\x6e\x14\xa3\xfd\xda\x3e\x3a\xbf\xb1\xa3\x1c\xd0\xc3\x1a\x51\x12\x3e\xdf\x7e\x0d\x3d\x2a\x5f\xb7\xbd\x2c\xa9\xe4\xd8\x24\xd4\x9f\x55\x97\xba\xfb\x51\xc4\x77\xad\x25\x11\x4b\xc8\x51\x89\x7b\xed\x7d\xd6\xc8\xa5\x3c\x21\x8d\xb2\x27\x23\x72\x64\x32\x64\xcb\xba\x6b\x59\x16\xb5\xe1\x1e\xbd\x2c\x0e\x4b\x74\xb4\x36\x68\x64\xb2\xa9\xcf\x0a\x1f\x63\x3a\x61\xbe\x5a\xba\x87\x1b\x97\x4b\x3d\x05\x37\x7b\x1c\x84\x09\x2a\x51\x10\xb8\xd3\xfa\x30\x8a\x63\x6f\x0a\xa2\x26\xba\x50\x39\xdf\x08\xb6\x13\x71\x52\xee\x5a\x37\x1b\x57\xdd\x53\x80\x77\x2a\x2d\x77\xdd\x3c\x7a\xa7\x1a\xd0\xbe\x92\xf8\x5f\x17\xf0\xb9\xc1\x06\xf4\xcc\x61\xca\xad\x52\x12\xd5\x17\x63\x02\xd4\xd7\xe6\xa4\xcc\x13\x0d\x8c\x8f\xc7\xe4\x1c\xba\x62\xb0\x68\x08\x5d\xee\x33\xf4\x2d\x54\x46\xf7\xcc\x86\xba\xe8\x15\x8d\xa3\x0a\xf1\xce\xee\x43\xa1\x0e\xe7\x1b\xef\x7c\xc9\x55\xd9\x60\xbb\x19\x14\x62\x06\xb3\x31\xe0\x61\x27\xbc\x11\x14\x48\xa0\x88\x42\xb1\xb5\xcd\x62\xbb\x17\x01\x2f\x58\x0c\x0c\xed\x8f\x48\x32\xf3\xe7\x1f\xb5\x85\x4f\x10\xc2\xc5\x5b\x2c\x85\xff\x08\x06\x4a\x1e\xbe\xb7\xc0\x26\x6c\x21\x16\x01\xec\x5d\x31\x97\x45\x6b\x01\x1e\xf7\x07\x65\xe1\x2b\x3f\xf3\x32\x6d\x7f\x9c\xca\x87\x47\x51\x77\x6b\xf6\xcb\x2d\xc3\xae\x26\x2e\xef\xbc\xaf\xa2\x41\x21\x87\xa1\x55\xd0\x5d\xcb\x23\x2c\xc1\xca\x38\x60\xa7\x5b\x32\x77\xd3\xed\xa2\x88\xb6\xde\xf2\xa8\x0a\x68\x93\xa8\x22\xb5\x73\xe7\xd9\xc9\x11\xb5\x1a\xc2\xff\x92\x8d\x54\xa1\xb0\x86\x92\x02\x22\x56\x66\x03\x52\x61\xb1\x2c\x29\x0e\x63\xac\x46\x52\x76\x1d\x9a\x6a\x85\x42\xec\x0c\xb5\xb3\x12\x78\x84\x2b\x45\x82\x44\x3f\x16\xa0\x8a\x77\x22\xd2\xe8\xab\xb3\x56\x57\xa9\x13\x16\xb2\xfa\xa9\x46\x27\x59\x10\x54\x92\x0b\x24\x9b\xd5\xc6\x7a\x2b\x92\x07\xb3\x50\x9b\xd3\xda\x4d\x50\xd8\x01\x9a\x73\x6f\x21\xb1\xda\x01\x63\xed\xbd\xd8\xeb\x50\x10\x90\x66\x14\xeb\x9a\x90\x89\x69\x0f\x8d\xd7\xe1\xa1\x80\x8e\x5b\x52\x0b\x76\x83\xb1\x89\xf8\xd1\xf7\xe6\xe5\x1e\x74\x65\xa3\x70\x33\x07\x7d\x9a\xa0\xf7\x29\xd2\x36\xe1\xfb\x99\xc6\xd0\x03\xa8\x00\x1e\x17\x02\xe0\xc2\x9c\x0f\xb8\xf8\x9a\xfb\xed\x42\x12\xa9\x75\x70\xc8\x99\x0d\xa7\x39\x6c\x94\xbb\x8c\x54\xba\xfb\x0a\xef\x0a\xf0\x0e\x5a\x0e\xc6\xea\x27\x6d\x10\xd6\xea\xc9\x2e\x24\x7c\x1a\xb3\x3b\xad\x0f\xaf\xf5\x83\x47\xa2\xf2\x68\x70\x3b\x91\x78\x41\x0a\x15\x3e\x49\xd4\x7b\xa8\x2c\x89\xb7\x9f\x48\x98\xee\x9b\xc9\x56\x10\x9c\x85\xc0\xdd\x5e\x5e\xdc\x5c\xde\x7d\x35\xa4\x9e\x85\xc9\x8d\x86\xea\xd9\x7a\xbe\xb9\x7c\x3b\xfb\xf8\xee\x6e\xf9\x66\x7e\xf3\x1c\x58\x3d\xfa\xe9\x08\xb0\xde\x2d\x71\xe5\x5f\x28\x59\x88\x2f\x27\x9d\xc9\x79\x29\x97\x7c\x44\xd2\x88\x53\xcb\xe8\x33\x77\xb0\xd0\x26\xd7\xbf\x23\xe2\x27\xe2\x47\x3c\xd1\x1c\xb5\xff\xda\x3b\x0d\xd7\x49\x9a\x42\x0e\xad\x73\xaf\x53\x7e\x96\xe9\x54\xd8\x7f\x2c\xd7\x25\xed\xa9\x0b\xb9\xaa\x48\x31\x80\xcb\x6f\x6b\x2e\xc1\x98\x3d\x9b\x99\x0e\xc8\x13\xc8\x4d\xec\x93\x03\xd8\x24\x52\xf8\x6a\xa0\x0a\x74\x29\x59\x27\x87\x33\x0d\xe2\x73\xa6\x48\x93\xe1\x35\xd4\xd6\xb4\x33\xae\x32\x3f\xad\xf9\x69\x7f\x74\x2d\xc4\x45\x9c\x48\x34\x4c\x2b\xab\xf9\xb6\x7d\xea\x9e\xfb\x25\x00\xfd\x6e\x46\x92\x43\x0c\x02\x84\x96\xfd\x40\xd2\x40\xa0\x4c\x90\x0f\x4e\xdc\x27\x08\x29\x52\xeb\x5a\x3f\x9b\xad\xd0\xf4\x75\x02\x91\x0a\x4e\xb4\x20\x51\x5a\xea\x42\xe4\xe4\x36\x99\xfd\x72\xbb\x90\xaf\xcd\xf1\xf5\x92\x4e\x21\x92\x92\xc1\x4f\x20\xa0\x45\x55\xbe\x6f\x2d\x94\x70\x07\xfb\x0e\x7d\xd4\x3b\xc1\xa5\x46\x11\xfc\x34\x15\xb9\x9f\x19\x58\x1f\x21\x62\x12\x42\x04\x1e\x54\xff\x3e\xe9\xa0\x2b\x58\xb5\xa6\xbe\xf4\x2b\x29\x81\xd7\xe7\x53\x57\x8a\x36\x60\x75\x9f\x73\xe6\xb4\xa4\x8c\x0c\x9d\x45\x04\x73\x6e\x9d\x44\xd5\x04\x8e\x41\x73\xe9\x0e\x8b\xfb\x6d\x2a\x3d\xe1\x54\x1a\x70\xae\x87\xa7\x04\xdb\x2a\xb3\x81\x3a\x9d\x15\x1f\x73\x77\x14\x11\x29\x80\xc1\x4c\x37\xb6\x9e\x3a\x35\xad\xc1\x13\x4e\x1d\x14\x17\x3c\x0d\xdb\x3a\x6b\xe1\xa2\xf1\xa2\x56\x36\xb6\xd3\x2b\x63\xf8\x3c\x9c\x6f\x33\x0b\x3e\x94\xaa\xb0\xec\x0d\x0e\xef\x47\xe0\x45\xf3\x80\xa3\x0d\xe9\xad\x23\x51\x71\x58\x2b\x65\x79\xa2\x14\xd8\x5d\x08\x92\xac\xe4\xb3\x62\x2d\xc2\x4c\x78\x9b\xfd\xee\xd8\x33\xc6\x4c\xbe\xe3\xc5\x26\xab\x73\xce\x31\x31\x1e\x05\x76\xb8\xba\xbe\xba\x0c\xa1\x0a\xf3\xab\xbb\xcb\x3f\x5e\xde\x54\x32\xa1\xdf\x5d\xcf\x2a\xd9\xcc\xb7\x77\x37\xb5\x24\xe6\xd7\xd7\xd7\xef\x2e\x1b\x98\x87\xcb\xbb\xf9\xfb\x4a\xe1\x6f\x3e\xde\xcc\xee\xe6\xd7\x95\xe7\x5e\xcf\xaf\x66\x37\xff\x1a\xfe\xe5\xf2\xe6\xe6\xfa\xa6\xf6\xbd\x8f\x17\xfd\xe8\x89\x4a\x33\xda\xdd\x3f\x3e\x38\x1b\x90\x52\xb6\x2e\xe3\xaa\x18\xe7\x09\xab\x78\x20\x22\xed\xd0\x74\xb4\x89\xce\x71\xc8\x55\x8f\x0b\xc3\x54\x75\xd4\xac\x7b\x7a\xf5\xd0\x4a\xd7\x65\xfc\xb4\x6d\xcf\x9c\x6a\xcb\xa7\x40\x08\xf6\x1a\x80\xee\x2b\x35\xc7\xad\x2e\x20\x1b\x0c\xbb\x36\x83\x08\xd6\x86\x77\x6a\xe7\xc8\xf8\xd9\x6b\x6a\xbf\x71\xa8\x9e\x9e\x04\xe9\x00\x97\xcc\x53\xf1\x48\xf4\x55\x3a\xf8\x98\x4d\xd3\x4e\x62\x6b\x28\xd8\x1f\x83\x83\x1b\x9a\x61\x66\x4e\x30\x1d\xbb\x64\x1e\xdb\x13\x3e\xfa\x79\xcb\xc6\xd6\x9f\x3e\xd2\xac\x7b\x8d\xe4\x62\x44\xbd\x81\x6c\x68\x4c\xbd\xef\xb8\xbe\x1f\x5b\x6f\xfa\x48\xb3\xde\x60\xf6\x1d\x55\x6f\x70\x78\x17\xed\x04\x24\x23\x36\xb1\xb0\x98\x6a\xf5\x5c\x76\xb4\x7b\x24\x50\x53\x1d\x56\x47\xb3\x00\x9e\xf7\x7a\x99\xf1\xe1\x81\x0c\xa8\x8d\x5b\xae\xbc\xc6\xc7\x7d\x0b\xbf\x42\x0b\x57\xb9\xe0\xf7\xb1\x7a\xa4\xf1\xa8\xc3\x64\xd9\xa0\xdd\xbc\xda\x41\x66\x0f\xb7\x47\x04\xa8\xe1\x9b\x4f\x22\x4a\xcd\x17\x0f\x30\xb9\x84\x18\xa5\xd1\x06\x0b\x64\x40\xeb\x14\x2e\x40\x9a\x23\xfd\xe8\x2c\x24\x5a\xf3\x6d\x52\xa2\x66\x54\x4d\x8d\x88\x74\x01\x9a\xea\x6c\x68\x0c\xae\xeb\x60\x60\x29\xb1\xa3\xcc\x01\x4c\xb7\xca\xe1\xce\x04\x1d\x92\x48\x70\x26\xe7\xe6\xc2\x93\x8b\x28\xd1\x22\x90\x53\x6a\x3d\xb1\x3f\x9f\x26\xbe\x50\xf0\xa2\xd5\xed\x3a\xd8\x1f\xce\xa3\xa2\xe4\x29\xfb\x5c\x8a\x7c\x4f\xdc\x75\xe8\xab\xc4\xbf\x44\x5c\x62\x06\x49\x21\x76\x19\xe4\x43\x87\xa9\x0f\x0b\xf9\x0b\x00\x25\x70\x08\x5e\x68\xf6\x47\x80\x3c\xd8\x87\xe9\x10\xde\xf1\x02\xce\xe2\xbf\xe0\x37\xdc\x6f\xd3\x85\xac\xc8\x93\x04\x6f\x55\x94\x4a\xa6\x0b\x69\xf5\x01\x62\x15\xe9\x29\xdc\xf8\xa6\x2a\xdf\x9c\x93\xb2\xae\x99\xec\xea\x7e\xa5\xd4\xfd\xb9\x90\xe7\xe0\x93\x2a\xce\x79\x59\xa8\x73\x80\x4b\xe1\xf8\xeb\x73\x2b\xc0\x69\x15\x4c\xf5\xf9\x36\x79\x10\xf0\xff\xa6\xdb\x62\x97\xfe\x83\xce\xb6\x5f\xce\x36\x69\x7e\x66\xde\x3d\x0b\xdf\x3d\xb3\xef\x9e\xd9\x77\xcf\xcc\x6b\xf8\xff\xb2\x3d\x86\x77\xc4\x17\x6e\xce\xb2\xc9\x42\x26\x52\x8b\xbc\x00\xeb\xe7\x31\x4f\x0a\xaf\x03\xb3\x67\x2f\xfe\xeb\xbf\xd8\x34\xe7\x8f\x98\x4b\xf8\x86\x17\xfc\x03\xfa\x17\xff\xfb\xbf\x5f\x40\x40\x15\x93\x7d\x32\x9e\x7f\x2e\x45\xb1\x90\x5a\x98\x45\xc8\xfe\xcf\x42\x42\x04\x76\xb7\x5f\x16\xe8\x77\x45\x1f\x64\xac\xd9\xbf\x60\x99\x73\xe4\x71\x8c\xb5\x29\xa9\x23\xcd\x20\xe1\x69\x8b\x66\x73\x87\x8b\xfe\x73\xfa\x86\x9e\x1f\xb1\xac\x3f\xa7\xd5\x55\x6d\x95\x48\xf4\xe7\x14\x0e\xd0\x54\x71\x0b\xd6\x62\x6e\xf2\xc2\x3d\x99\x2a\xd7\xb6\x46\x1a\xd0\x80\x67\x0d\xd3\xb7\xaf\x95\x5b\xe4\x92\xb6\x9e\xfb\xc6\x36\x02\xb1\x02\x1f\x87\x80\xe8\x79\x62\x56\xc8\x2d\x7a\x42\xc1\x72\xc3\x96\x83\x4d\x4a\xa1\x73\x57\x1e\x3a\x2e\xf4\x1f\x5e\x9d\x9f\x4f\xd8\x46\xc3\xff\xac\x3e\xc3\xff\x00\x7a\xe8\xa9\xe8\x50\x1b\x9d\xe9\x80\x70\xcd\x51\x3e\x3c\x12\x4f\x81\xa2\xfb\x1a\x0c\xdc\xb5\x69\xfa\xba\x94\x71\x2a\x7c\x6a\x64\x25\x24\x92\x2a\xab\x19\x8f\x8e\xb1\xba\xd6\x09\x8c\xf1\x4a\x44\xdc\x6c\x7c\x8d\x6f\x23\xb8\x54\xad\x0b\x21\xd1\x1b\x96\x7b\x29\x34\x8e\x9e\x2b\x30\x8b\x01\x0a\xc9\x0b\x82\x9c\x0b\xf8\x23\x7c\x04\x28\xad\x27\xf5\x9f\xd8\x5e\x95\xc4\xce\x0c\x9c\xa3\xb1\x88\x52\xa0\xc0\xb7\xbc\x2b\x2c\x17\x45\x99\x4b\xc6\x59\xc6\x65\xcc\x35\xcc\xc0\x75\x0e\xd1\xce\x9c\xf1\x66\x45\x27\x08\xc7\x55\x65\x01\x6c\x42\x88\x2c\x08\x7b\x02\xe9\xb3\x83\x3a\x4f\x82\x4a\xe0\x99\x00\x2c\xbe\x8d\x17\xa7\x0b\x69\xc5\xba\x08\x0b\x87\x9e\xb2\x48\x65\x7b\xe2\x8a\xa9\x77\x7a\x62\x3d\x67\xd4\xdd\x13\x8f\x37\xa9\x3f\x3b\x61\x49\x35\xb4\x06\x4c\xdd\x45\x20\x37\x6c\x05\x9b\xbf\x13\x32\x52\xb1\xc8\xf5\x4b\xb3\x0c\x13\x77\xef\x40\xfb\x21\xd1\x7e\x30\x60\x97\x32\x87\x1b\x79\x0b\x4d\xf1\x4e\xd2\xc6\xf4\x4e\x85\xdb\xb9\xcd\xce\x39\xbc\x54\x7e\xed\x28\x98\xb6\xfa\xd2\x7f\x7e\x55\x44\x4c\x88\xeb\xb4\x77\xce\xe3\x5d\x10\xb8\x64\xc3\x1d\x17\x0b\x45\x1b\x87\x8c\x13\xab\xed\x9a\x14\x20\x1f\x97\x0b\x5d\x2c\x24\x9d\xc0\x13\xb6\x16\xdc\xd8\x79\x13\x16\xe9\x07\xdc\x8c\xf1\xb8\x2f\x1e\x95\xc7\xe0\x58\x61\x10\x00\xc3\x56\x0a\xf7\x4e\x62\x7c\x0c\x10\x05\x3c\x2a\x10\x60\xd0\x29\x03\x6e\x4d\x15\xe8\xac\xd6\x0d\xf1\x88\x7e\xb0\x3a\x13\x75\x4d\xa7\x50\xe6\x04\x7a\x62\x8f\x81\x62\x56\xaf\x07\xfe\x60\x36\x1e\x6c\x1d\xc2\x40\x82\xcd\x11\x2c\x6e\xc2\xd2\xe2\x3a\xf3\x31\xdc\x90\xec\x1b\x7c\x33\x5d\x8b\xaa\xa7\x23\xa0\x02\xc7\xf9\x2d\xcc\xab\x07\x1d\x56\x5a\xe4\x56\x04\x03\xdb\x8a\xd4\x7c\xdb\x24\x8f\xcf\x32\x9e\x17\x7b\x3b\x7d\xd3\x64\x05\xdc\xf9\x69\x72\x2f\xd8\x2c\xcf\xd5\xe3\x53\xf7\x42\xe7\xd6\xd2\x75\xc3\x3e\x05\xc9\x3e\xf6\x96\xdf\x4a\xcc\x59\x77\x77\x1c\x47\x02\xda\xe5\xf8\x68\xfd\x4e\x2e\x8a\x7c\xbf\x34\x13\x71\x97\x75\xee\x14\x83\x92\x26\x86\x1b\xb9\xe3\xf8\x45\x6b\x2e\x8c\x4e\x7e\xd1\xca\xa8\xfe\x7a\xf8\x45\x5b\xa8\x43\x9b\xfc\xa2\xf3\xab\xf9\xdd\x7c\xf6\x6e\xfe\xff\x6a\x25\xfe\x32\x9b\xdf\xcd\xaf\xfe\xb8\x7c\x7b\x7d\xb3\xbc\xb9\xbc\xbd\xfe\x78\x73\x71\xd9\x4f\x18\xd4\xac\xbd\x37\xc1\xcf\x58\xf8\x9d\x57\xec\x2e\x00\x6a\x60\xb2\x01\xd9\xdf\x24\x1e\x09\xb3\xca\x2c\xe6\x44\x6e\x26\xb0\x50\x5f\xb1\xcb\x3c\x9f\xef\xf8\x46\x7c\x28\xd3\x14\xe0\x54\x98\xd9\x73\x91\x0b\xb8\x78\x4e\xd8\x07\x15\xcf\x83\xf7\x20\x1d\xb1\xb5\x19\xf0\x7d\x1e\xc7\xb9\xd0\x1a\x3f\x3f\xa1\xef\x07\xe0\x21\x97\xea\x48\xe0\x39\xfe\xc0\x93\xd4\xdc\xdf\x5e\xb1\xd7\x3c\xba\x57\xeb\x35\xa6\xcf\x4c\x5c\xe2\x14\xfb\x5c\xaa\x82\x33\xf1\x25\x02\x92\xac\xf6\x79\xf2\x4e\x6d\xbe\x01\x54\x79\x40\x78\xaa\xe3\x92\x02\x22\x61\xcb\xf6\xe3\xbc\x7d\x23\xa0\x56\xbe\xc7\x57\xdf\xe2\x9b\xed\x0e\xca\x22\x7d\x82\xb4\xf9\x77\x6a\xd3\x2e\xd9\x02\xd6\x35\xe9\xcc\x50\x20\x21\x22\x12\x0e\xb5\x61\x3a\x91\xf7\x0b\xf9\xcb\x56\x48\xa6\xca\x1c\xff\x04\xd7\x7c\x63\x66\xa6\xa5\xde\x0a\xd0\x70\x9d\xb0\x47\xc1\x76\x7c\x8f\x66\x33\xdc\x09\x5c\xda\x30\x4c\x19\x38\x45\xcc\xdb\x69\x22\xcd\x6e\x91\x25\x36\x2f\xa1\x3e\xf4\x4f\x71\xe3\xb2\x14\x71\xfc\x74\x06\xd7\xbe\xf3\xb4\x82\xcf\x03\x57\x99\xc7\x4d\x5a\x80\x10\xed\xdc\x20\x63\xa9\xd4\x7d\x99\x79\x32\xc9\x17\x36\x38\x09\xdd\xfd\xa0\x92\x98\xc5\x65\x96\x26\x91\xdb\x77\x1f\x55\xde\xc9\x98\x8b\x09\x34\xc3\x4f\x9d\x7a\x5a\x58\x5f\xc3\x5a\xb2\x73\x02\x24\x5d\x0f\x77\xee\x33\xb3\x07\xb3\x44\x46\x69\x09\x02\x5d\xa5\x16\xf9\x59\x91\x27\x9b\x0d\x18\xe0\x36\xd7\xef\xd7\x4f\x2f\xec\xe9\x0b\x4f\x4f\x6b\x0b\x93\xce\x53\xb5\x49\x22\x9e\x86\xe0\x66\x8f\x8a\x70\xfc\xa5\x76\xd9\x93\x7c\x29\xe4\x41\xd8\x0a\x75\x32\x23\x65\xb9\x00\x0a\xdd\x25\x6c\xe5\x4b\xda\xee\x4e\xa9\xf7\x9a\x99\x0b\x3a\xd6\x2b\x64\x17\xb5\xe1\x05\x7b\xc2\xf9\x6f\x5b\x0d\x2b\x30\x31\x51\xdf\x9a\xa9\x47\x29\x72\xb0\x60\x01\xf6\x61\x5a\x2a\x15\xd8\x26\x4e\xd7\xca\xe1\x93\xad\xae\xdb\xda\x01\xb1\x31\x73\x76\x93\x3c\x08\xf9\xf5\xe9\xa0\x83\x0f\x44\x3c\xda\x8a\xa5\xb5\xcb\x9f\x7a\xcb\x72\x07\xc0\xc8\xcd\xca\x0a\x4c\x84\x5b\xa9\x0b\x6f\xc2\xd5\x09\x6b\xdc\xdc\xbb\x30\x90\xd8\x93\x91\x65\x2a\xb1\x8c\x45\x74\xff\xd5\xb7\x66\x0f\xb2\xb2\x15\x61\x9c\xbd\x11\xd1\x3d\xfb\x78\x33\xc7\x6c\xe0\xa4\x60\x66\x2b\xd0\x5b\x2f\x98\xd3\x79\x77\x2b\xf8\xe6\x19\x98\x9e\x86\x2a\xfe\x78\xae\x0e\xa7\x73\x66\x2a\x44\x80\x28\xc8\x97\x34\x9b\x24\xe5\xd2\x00\x10\x8c\x17\x56\x07\x06\x1c\xf1\x4c\xef\x40\xf6\xa5\x2c\x02\xad\xb4\x94\xaf\x44\xda\x41\x79\x98\xa9\x78\x69\xe3\x24\xa7\x82\x79\x1a\x65\x59\x3f\x06\x45\x1d\x6d\x1e\x03\x37\x16\xeb\x1d\x3d\xc8\xee\x7f\xd4\x01\xbd\x86\x0a\x99\x97\xe1\x5e\xcf\x35\xa4\x77\xaf\x93\x8d\x8d\xb6\x25\x6b\x12\xa7\xc1\x84\x7e\x90\x61\x37\xfb\xa5\x29\xe9\x83\x8a\x09\xa6\xe7\xc8\xcd\x8c\x15\x24\xc8\x7b\xe2\x71\x15\x61\x15\x9c\x54\xbd\x06\xdf\x80\x2e\x04\x8f\x99\x5a\x93\x37\x31\xcb\xd2\x04\x38\x75\x63\xa4\xef\x06\xf6\x0c\x5d\x45\xc7\x87\xa5\xd9\xca\x06\x24\x1f\x1f\x2c\x10\xaf\xf3\x34\xc3\xf6\x2f\xc7\x3b\xc7\x1b\x74\x34\x1d\x33\xea\x14\xf6\x17\xb7\x81\x0f\xb2\x4b\x41\x7d\xa7\xea\xa2\xaf\x5b\x84\xa7\x8a\xc8\xb9\x6c\xaa\x63\x1d\x00\xfd\xbe\xc0\x4d\xaa\x56\x30\xcc\xdd\x90\xbe\x9e\xe3\xc5\xec\xad\x79\x12\x8f\x31\x4e\x6c\x9f\x5c\xbb\x57\xfb\x2a\x78\x6d\xfd\x34\xee\x4b\x76\x92\x32\xe2\x6b\x0f\xf1\x07\xb5\x24\xfc\x43\x9e\x02\x08\x6f\x6a\x17\xdf\x74\x77\x89\x82\xd4\x0a\x60\x4d\xbb\xc3\xa4\xc3\x29\x50\x6d\xcb\x49\x03\xdd\xa4\x75\x19\xb8\x20\xfa\xfb\xf0\x24\x6e\x0e\xdc\x77\x1c\x41\xc7\xdf\xef\x9a\xee\x9a\x78\x88\xaf\x36\xb3\xc1\x4f\xc1\x4a\xe2\xcb\xa0\xf9\x58\x9f\x35\x76\x07\x3d\x65\xc2\x3c\xc7\x7e\x50\x16\xca\x87\x5b\xa0\x3d\x73\x20\x72\x0d\x53\xea\x60\xd3\x9b\xc7\x1d\x50\x0d\x6b\xff\xda\x8d\x65\x04\x00\x78\x14\x04\x39\xcb\x85\x0d\xdc\xed\x45\xe1\x88\x15\x52\x2b\x89\x06\x71\x29\xd7\xea\x2a\xb3\x8c\x25\x8f\x70\xd4\x68\x10\x45\x22\x5b\x3b\x52\xbb\x4c\x49\xc0\x05\x61\x9a\xd8\x42\x52\xe1\x56\xd8\xda\x85\xb6\x2a\xb9\x86\x13\xf2\x28\x62\xe6\x8a\xd0\x2a\x7d\xa0\x18\x66\xa0\xbf\x00\x92\x78\xa6\x82\x17\xe6\x72\xa6\x72\x64\xb8\xb2\x47\x2b\x40\xf1\x6b\xea\xce\xb9\xd8\x24\xba\x10\x61\x7a\x66\xf8\xfe\x93\x09\x71\x56\xbc\x17\x7d\x5d\xdf\x29\xc4\x79\xe8\x1a\x62\xf6\x9c\x11\xf5\xd9\x67\x22\x9e\xbb\xf7\xfa\x27\x43\x2d\x83\xde\x6f\x71\x95\x33\x0c\xe7\x00\x5e\xbf\x34\x72\x6d\x69\xa7\x9c\xe0\x06\x89\x58\x90\xb8\x47\x14\x9a\x21\xda\x94\x3c\xe7\xb2\x10\x42\x2f\x24\x45\x7e\x91\x40\x2f\xa4\x45\xa9\x21\x11\xdd\xe5\x22\x52\xba\x40\x0a\x26\x78\x65\xcd\x93\xb4\xcc\x3b\xef\xfb\x38\x2b\x8f\xe2\x7d\xe8\xeb\xa5\x0b\x28\x96\xb5\x0d\x9a\xcb\x20\x0e\x56\x91\xa3\x2d\xa9\xc7\x6d\xab\x09\xb6\x1d\x4d\xb0\x07\xc6\xf0\xf1\x76\xce\xde\x8e\xa4\xe2\x1f\xf5\x32\x53\x23\x76\xbc\x3f\xff\xa8\x3f\xa8\x8e\x74\x6c\xfd\xb9\xe1\x94\xec\xc1\x2f\x7c\xee\xd2\x92\xe0\xfa\x1e\x42\x7f\x87\x7c\x21\x87\x03\x1c\x7f\xf8\xe1\x70\x80\xb0\x73\xef\x82\x59\xbb\xe5\x32\x4e\x13\xb9\x31\xc7\x50\xf5\x04\xf2\x40\x6b\x73\x27\x29\xec\xe6\xd8\x9d\x55\x07\x49\x2a\xcb\xa8\x91\xe1\x78\xa8\x9f\x6a\xa9\x91\xbd\x60\xc6\xda\x57\xaa\x09\x8b\x6d\x89\x32\xde\x2e\x21\x05\x57\xb7\x60\xbb\xa7\xe0\x3a\xd9\xfc\x0a\x2e\xb8\xef\x9b\x3b\x65\x44\x4b\x91\xce\x2f\x87\xba\x3f\x71\x31\x42\x82\x93\xd9\xcc\x42\xc2\xe8\x85\x24\x81\x67\x8c\x7a\x43\xb8\x13\x79\xc0\x34\xfb\xde\x65\xbd\x7e\xff\x8f\x96\x05\x6a\xcf\xd6\xd0\xd7\x40\xb5\xa6\xa2\xa8\xcc\x21\x24\x4d\x6e\x33\x26\xf0\x6c\xd2\xa3\x08\x4e\xe0\x44\x76\x40\x22\x34\x9f\xda\xac\x07\xe7\x27\xad\x34\xea\x0e\xdc\x63\x28\x55\xed\xce\x42\x52\x20\xca\x75\xc1\x74\x21\xb2\xd6\x5d\xa9\x62\x74\x55\xd5\xd8\x4f\x30\xbb\xbc\x16\xfc\x40\x4b\x7d\xc4\x1e\x3d\x0b\x5c\x19\x7f\xba\xbd\xbe\x62\x19\xdf\x03\x26\xaf\x50\x24\xa3\x0f\x44\x98\xf5\xf5\x7b\x68\x04\xaa\x8d\xaf\x2e\x36\xec\x53\x0b\xee\x6d\xf7\x9b\xd3\x17\x9b\x36\x14\xcc\x19\x9a\x92\x66\x29\xe7\x2a\x3d\xcb\x52\x2e\x03\xd8\xb5\x9e\xb2\xda\xe7\xc3\x38\xbb\x8b\xb8\x11\x92\x09\x2a\x00\xae\x2c\x9a\x0b\x79\xd9\x0a\xcc\xad\x0a\xcc\x9f\x14\x5a\xef\xdc\x23\x7a\x01\x87\xef\x51\xd7\x81\x47\x66\x99\x20\xab\x83\x85\x0b\x38\xc4\x09\xd7\x00\x06\x1d\x31\x50\xfd\x6a\xf8\x0b\x69\xc5\x8e\xd5\xa3\x66\x31\xf2\x5e\x94\x89\xde\x82\x6f\x18\x83\x31\x00\xcc\xa2\xfd\x05\x51\x23\x39\x97\xda\x0c\x28\xf8\x93\xc5\x83\x20\xa7\x52\x25\x10\x3a\x7f\xf3\xce\x61\x2b\x70\x90\x48\x8f\xae\xa3\xeb\x03\xc3\xec\x94\x0b\x4c\xab\x3c\xfb\x61\xb1\x85\xf7\x3c\xeb\xcb\xd8\x3b\xb9\xc4\x43\xa3\xe4\x58\x7f\xea\x56\x27\x08\xd5\x82\x44\x55\x25\x6d\x2f\xec\xbd\x8f\xf2\xc4\xed\xa7\x95\x7d\xfd\xb0\xd0\xc3\xe0\x4b\xd8\xb0\x2c\xcc\x11\x7b\x4f\x40\xc0\xe7\x70\x4d\xce\x5e\x36\xab\x1c\x04\x80\x80\x39\x0c\xbd\x98\x53\x76\x2b\x04\xfb\x04\x3d\x65\x3e\xf6\x89\x04\xe6\x00\xaa\x59\xf0\xa4\x55\xff\x07\x9e\x9e\xcb\xb5\x3a\x6d\x33\xc8\x37\x0d\x28\xe0\x49\xbd\xd2\x5e\xcf\x53\xc1\x86\x90\x46\x2a\x9f\x97\xfb\xa0\xb5\x5d\x07\xa0\x85\x1f\xfc\x9d\x9c\x32\x22\x6d\x4d\xcd\xf9\x0c\x43\x7c\x0c\xbb\x56\x6d\x92\x98\x56\x4e\x90\x31\xfa\x5e\xaa\x47\x89\xb6\x00\x7d\x89\x7d\x67\xd6\x1f\x1c\x60\xe8\xbc\x46\xb3\xa0\xc4\xdd\xf0\x25\x50\x58\xcf\xdc\xbf\xd9\x2d\xc6\xe9\xb0\xce\x20\x58\xa3\xc1\xf8\x21\xa9\x19\xd8\xcd\xbf\x9b\x4d\xd8\xeb\x09\xbb\x98\xb0\xe9\x74\xfa\x72\x82\xb2\xd5\x54\x23\x7c\x05\x51\x7b\x05\xdf\x98\xb2\x49\xc2\x63\x1d\x7c\x00\xd4\x9f\xcc\x61\x65\x99\xda\xb8\x7f\x2a\xf0\x3c\xd8\x26\x60\xfe\x28\x25\xbb\x10\xa6\x21\xda\xaa\xc4\x57\x0a\xe0\xb1\x22\x52\xb9\x05\xd8\xea\x42\xe5\x16\x2c\xf8\xc0\x73\x9e\x48\x48\xab\xe7\x4d\xa8\x34\x7d\x39\x20\xd6\x16\x5f\xf8\x0e\xda\x9f\x48\xc7\x2d\x6a\xba\xe9\xce\xd5\xbf\xd8\x67\x14\x0c\x78\xcc\x93\xa2\x30\xa7\xb3\x5e\xc8\x5b\xf6\xea\x5f\xd8\x2c\xcb\x52\xc1\x66\xec\x6f\xec\x35\x97\x5c\x72\xf6\x9a\xfd\x8d\x5d\x70\x59\xf0\x54\x95\x99\x60\x17\xec\x6f\xa6\xdb\x4c\x79\x57\xca\x1c\x87\xfb\x09\xe3\x4c\x96\x29\x9e\xfa\xdf\x59\x20\xde\x4b\xd7\x2e\xee\x47\x67\x25\x8a\x47\x21\x24\xd3\x6a\x47\x47\xe1\x5f\x5d\x3c\x48\x27\x72\x93\x8a\x82\xe6\x43\x15\x32\x89\x1f\x38\x83\x96\xbe\x5a\x48\xe7\xcb\xfb\xab\xa9\xf1\x5f\xd9\xdf\xd8\x55\x99\xa6\xa6\x4a\x66\xa3\x31\x13\xe9\x15\xb3\x29\x2c\x42\x4e\x1f\x93\xfb\x24\x13\x71\xc2\x21\x89\xc5\xfc\xeb\xfc\x0e\x46\x7b\x59\x7a\xbe\xc2\x70\x4d\x3b\x11\xa0\x53\xb6\x9e\x67\x49\x88\x77\x5a\x50\x76\xf0\x7b\x6e\x7e\xd5\x57\xc7\x5b\x44\x9e\xa5\x95\xd6\x03\x19\xac\x28\xe0\x14\x6a\x4e\x1d\xb5\x05\xd4\x0e\x5b\x5b\x56\xcb\x51\x10\x1e\xea\xa7\x6e\xb2\x20\xa0\xf6\xe4\x77\xc8\x01\x7a\x52\x43\xb7\xdc\x86\x1a\x4e\x85\x62\x00\x6c\x49\x4f\xb3\x34\x28\xa6\xe5\x54\x70\x7e\xae\x2a\xc8\x55\xba\x58\x25\x83\xa4\xf6\x6a\x95\xfd\x48\xbe\x0b\x4c\x0e\x34\xcb\x34\x49\xcf\xcd\x52\x3d\xbf\x52\xd2\x5c\x5b\x75\xb2\x41\x6a\x28\x80\x70\xa1\x46\x9d\x35\x0a\xee\xaa\x26\x6b\xb0\x04\xc0\x3e\x30\x55\x42\x58\x61\x61\x76\x01\x33\x04\xe9\x7e\x21\xcd\x1b\x74\x22\x41\x8a\x41\xe2\x18\x84\xf1\x6b\x56\xd4\x9f\xbe\x45\x1b\x72\x50\x78\xcb\x04\xeb\xcb\x5f\x3e\x61\xc2\x51\xba\xdc\x09\x5e\xf1\xab\x80\x3d\x8f\x4a\xb3\xd4\x2a\x18\x73\x5e\x89\x54\xc9\x8d\x99\x15\x5d\x9b\x80\xda\xf1\xe4\x14\x50\x4f\x58\x05\x2c\xac\xb3\x06\xe6\xb0\xa4\x47\x68\x48\xcc\x39\x99\xc4\xfe\x7e\xaf\xcb\x95\xb1\x23\x9c\x47\xd6\x9d\x86\xd4\xb8\xae\x64\xee\xd3\x62\xfb\x1f\xb5\xc8\x81\xe2\x1a\xd1\x25\xce\xdb\x8f\x07\xa7\x27\x3a\xc1\x16\x0d\x5b\x54\xbd\xa0\xe4\x76\x57\x08\x45\x13\x1a\x69\xed\x03\xe6\xe3\xb7\xc4\x27\x0f\x41\x2d\xbf\x9d\xcd\xdf\xd5\x9e\x6b\xa2\x96\x5b\xa0\xcd\x77\xf3\xf7\x97\x6f\x96\xd7\x1f\xef\x1a\xcf\x99\xd2\xe8\x4f\x07\x80\xcb\x9d\xbd\xf7\x14\xd0\xcd\xcf\xa8\x3b\xb4\x54\x6b\x9b\xc5\x3a\xfc\x4c\x6f\x28\x3f\x0d\x43\x08\x85\x04\xe7\xa1\x42\x52\x73\xe2\x74\xe6\xe2\xcb\x25\x45\x24\x86\x55\xb6\xde\x61\xd7\xf2\x2d\xbe\xfe\x41\xa5\x49\xd4\x0f\x38\xb4\xc7\xd5\x56\x3d\xb6\x20\xb8\x56\x02\x10\xb8\xe4\xff\xa1\x4a\xa1\x85\x5e\x88\xa8\xf0\x11\xb7\x66\xe3\xfe\x57\x83\x9c\x0e\xdf\xc1\xd1\xa3\xec\xba\x0d\xd4\x47\x5d\x0c\x0f\xce\x56\x20\x37\x05\x4e\x7f\xf4\xb5\x42\x1e\x23\xc4\xb6\x23\x4e\x2e\xe8\x4a\xcf\xc3\x06\xfd\xb8\x55\xa9\xb9\x8b\xc9\x98\x88\x62\x17\x32\x13\x79\xa4\x00\x1c\x84\x1c\x04\x8a\x45\xdb\x24\x8d\xbd\x70\xce\x77\x80\xa6\x06\xcc\xe3\x4b\x92\x4a\x14\x2e\xc6\x6c\x8b\xef\x39\x75\xed\xb4\xb3\x62\xed\xa7\x79\xa0\x9e\x0e\x1e\xd9\x37\xed\x7f\x21\x18\x1f\x76\x05\x51\x3b\xd5\xa2\x85\xa6\xd3\x2b\xf5\x19\xe5\xe1\x05\x39\xf5\xb5\x15\x64\xb5\x17\xa7\xa2\x36\xae\x34\xcd\xea\x5d\x09\x84\xbf\x88\x60\x43\xf8\x8b\x16\x50\x9d\x9d\xe0\x68\x8b\x79\xfa\x4d\x1a\xd4\x85\xf4\xf1\xd1\x17\x3a\xb4\xcb\x5a\xc7\x19\xf9\x6c\x2d\x00\x73\xc2\x5e\x54\x1a\xfa\x02\x08\x61\xa5\x82\xef\x51\x0c\xab\xd2\x35\x30\x5d\x27\x2c\x29\x16\x32\xd1\x38\x33\x73\x91\x8a\x07\x53\xbb\xd0\x59\x4c\x48\x1d\x7b\x77\xb6\xcd\x06\x0c\x3f\xb7\xa9\xdf\x4e\xe3\x1f\x16\x61\x1e\x12\x8b\x72\x70\x4c\xc7\x42\x1b\xbb\x11\x24\x51\xc4\x17\xb3\x00\x12\x88\x85\x20\xfc\x23\x16\xd2\xd6\x0f\x50\x21\x28\xe4\xbb\x90\xf3\x35\xe4\xdf\x42\xd6\x6f\x1c\xe3\x2d\xd4\x8a\x64\x38\x96\xb7\x84\x9c\xc3\x8a\xee\xe4\x76\x20\x48\xe9\x13\x57\x92\x78\x10\xf9\xbe\x00\xa7\x2e\xf4\xab\x14\xbc\xd8\xb2\xa4\x98\x00\x3d\x9f\xdd\x29\x17\x92\xc7\x24\xd3\x4e\xc5\x99\xae\x81\x79\xdf\x33\xce\xf4\xfb\x4a\x3d\xf4\x19\xb6\xa7\x62\xd6\x70\x55\x67\x29\x97\x4b\x3c\x41\xbe\x01\x6a\x2d\x10\x61\xed\x0a\x75\x96\xab\xa5\xa3\x14\x7a\x92\x7a\x06\x82\xd8\xa1\x34\xb2\xb1\x63\xed\x87\x26\x38\x19\x3c\xa5\xb8\xbd\x9e\x38\x3f\x0d\xa1\x0b\x72\x66\x23\xb0\xc3\x77\x01\x0f\x68\xe3\x35\x24\x82\x9d\xad\x87\x10\x6d\x76\x06\xfc\x5a\xf1\x49\x43\x46\xbe\x76\x86\xd4\x87\x7d\x3c\x34\xa6\x61\x21\x1e\x05\x8f\x39\x50\xad\xe7\x85\xc8\x74\xfa\x51\x9a\x50\x19\xdb\xda\x20\xdc\x87\x89\x2b\x02\xfd\x70\xce\xcd\xd3\x2e\xb2\x1b\xde\xc3\x54\x0b\x32\xf4\x29\x7d\xd4\xb0\x4f\x0d\xf5\x94\xf8\xbc\x77\xa8\xd7\x94\xcd\x25\xb3\xe6\xde\x84\xbd\xc0\x89\xa5\x5f\x90\x0b\x92\x94\x9a\x29\x76\x1e\xd3\xea\xa1\x4c\xe1\x3a\x14\x03\xf3\x35\xfc\x72\xc3\x48\x50\x2f\xad\xe4\xb3\xf6\xcb\xeb\x04\xf2\x45\x8e\xa1\x04\xc0\x28\xe2\x0a\x0b\xa0\x43\x12\xaf\xdd\x7b\x34\xda\x95\xf7\x66\xfb\x06\xdb\x78\x17\x7b\x6d\x5f\x34\x5d\x94\x95\x74\x9e\xda\xdf\x99\xca\x17\xd2\x96\x46\x2e\x49\x8d\x3a\x56\xf5\xa2\x02\xf8\x3a\xd9\xfc\xc1\x4c\x05\x10\x83\x95\x2e\x03\x45\x3c\xcf\x7d\x5b\xdf\x05\x00\x14\xb1\x12\x5e\x63\x7e\xca\x66\xfe\x6b\xc6\xf0\x30\x13\x7c\x87\xc7\x7c\x9d\x1f\x33\x4d\x4d\xa7\x24\x85\xa5\xe3\x0c\x52\x4b\x74\x09\xa4\xb2\xeb\xd2\x6c\x46\x01\xf3\xee\x42\x9a\xce\x63\xeb\x04\x50\xcb\xd4\x2f\x0b\xf9\x5e\x69\xcb\x64\xa0\x7d\x7f\x58\x0c\x29\x75\xdb\x0b\xa7\xe0\x46\x7f\x78\x03\x87\x36\xf9\xfc\x91\x93\xc8\x1d\x2d\x90\x53\x44\x74\x24\x7b\x55\xe6\xbe\x51\x11\x97\x0b\xf9\x1f\xa6\x7b\x50\x5d\xdc\x49\xf3\xab\x35\x2e\x61\x18\x41\x08\x96\x7c\xc2\x42\xbf\xfb\xc7\x97\x9f\x5e\x62\x0e\x40\xa9\x41\x34\x73\x52\x3d\x40\x1c\x09\x7b\x99\xa6\x10\x89\xb6\x2d\x70\x44\x20\xfe\x13\xbc\x0f\x96\x43\x97\xba\xa5\xac\x9a\x18\x43\x16\x7a\xdf\x0c\xf6\xce\xe7\x19\x8b\x78\x11\x6d\xcf\xac\x2d\x47\xdb\x98\x3d\xfd\x68\xf8\x50\x3d\xcf\x58\x5a\xed\x3c\xe4\xe6\xc2\x99\xef\x1c\x33\x62\x65\xbe\x98\x26\x00\xb0\xe6\xae\x2e\xca\xe3\x88\x5b\x71\x72\x7a\x71\x7c\x6f\xe7\xb9\xc7\xad\x24\x9e\xbf\x71\x92\x97\x5c\xf2\x9d\x88\xd9\x0b\xc8\x56\x7b\x61\x07\x7f\x21\xb3\xd5\x34\xdd\xaf\x0b\xa2\xd7\x32\x9d\x32\x05\xf1\xa8\x03\xa7\xdc\x32\x6e\x5e\x93\x0e\x74\x76\xe7\x45\xab\xdd\xd6\x71\x7d\xe3\xbe\x34\xdc\x60\x41\x1f\x97\xeb\x9d\xdb\x2a\x44\xa8\xca\x62\xcf\xf5\xfd\x84\xad\x72\x2e\x41\xf7\x23\x0e\x8d\x2a\xbf\x3a\xe1\xf2\x8c\xdc\x55\x36\x7d\x45\xf2\x74\x0f\xc8\xf7\xc9\x42\x22\xd1\x17\x30\x42\xef\xa3\x34\x89\xd8\x26\xe7\xd9\xb6\x66\x07\x89\x07\x21\x8b\x4b\x62\xb6\xb0\xf8\xf4\x53\x43\xcb\x8e\x29\xe3\x24\xbe\xc3\x79\xd5\xda\xe1\x9e\x02\xc4\x7b\x58\x31\x49\x88\x6e\xd4\x16\xd4\xea\x26\xf8\x84\x64\xe8\x80\x0b\x8d\xfd\xa5\x5c\xa9\xd4\x92\xc9\xcd\xdf\x30\x95\x83\x8e\x43\xa1\xe8\x4f\x49\xdc\x75\x8a\x25\x32\x16\x5f\x4e\x62\x74\xe8\x3f\x90\xac\x79\x67\x3e\x13\xc8\x05\xd4\x1b\x6b\x81\xff\x19\xb8\xba\xf1\x06\xd7\x78\x4a\xd7\x11\x76\xb3\xb4\xd8\x02\xec\x0d\x01\xd7\xbe\x53\x77\x7c\xcf\xa2\x2d\x97\x9b\xe0\x0a\x0d\x28\x24\x91\xa9\x1c\xf5\x0e\x1f\x80\x3a\x4d\xe5\x36\x63\x96\xf2\x40\x09\xf5\xed\x1c\xde\x08\xb6\x54\x36\xd9\x93\x6f\x36\xb9\xd8\x00\x89\xc1\x42\x56\x32\xd9\x81\x36\xce\x4a\x2d\xe0\x77\xfa\x12\x81\x9f\x86\x4d\xa3\xeb\xd6\x52\xe4\x7b\x97\x46\x49\x62\xa1\xae\xeb\x1a\xdd\x3a\x61\x89\x98\x4e\xd8\x0f\x1e\x60\x2a\x22\x25\x5d\x1e\x66\x47\x12\x5e\xcd\x35\x7d\x60\x2f\x6a\xa1\xdd\x68\xaf\x3b\xfc\xd6\x48\x09\x69\x9d\x34\xbd\x89\xac\x05\x2f\xca\x11\x7b\x25\xc9\x4a\x5f\x98\x97\x6f\xf1\xdd\x5e\x0c\x36\xcf\xcc\xf6\x66\x29\x8f\xcc\xf3\x66\x87\x37\xdf\xf6\x94\xc8\x6d\x7d\x7d\xd0\xd1\x99\xaa\x6e\x47\xe7\x53\x98\x94\x96\xd7\xe2\xb0\xaf\x33\xed\xe0\x6a\xe8\x69\xd3\x58\x57\xa6\x05\xa3\x12\xcc\x5c\xd7\xaf\x5b\x2d\x3b\x40\x96\xab\xb8\x8c\x44\x6c\x56\x2e\xd8\xed\x88\xdc\x70\x94\x11\x95\x4d\xb2\xed\x40\xa8\xf0\xde\x80\xb8\xf8\xd7\xba\x1b\x0f\xa2\x1a\x76\xdd\xff\xb1\xe3\x5e\x6c\x2d\x93\xb6\x4e\x0f\xd7\x27\xf6\x53\x3e\xf2\x9c\x72\x9f\xaf\x12\x04\xab\x3c\xd9\x24\x92\x17\x2a\x67\xdf\xb9\xc4\xd0\x97\x4e\x55\x08\x7a\xf1\x29\xb6\x89\x4a\x17\xe1\x36\xd1\x7e\xf7\x02\x3c\xb3\x88\x97\xe3\x78\xcb\xc6\xb2\x6b\xc3\x24\x35\x4f\xe9\x82\xef\xb2\x90\x72\xd3\x69\x36\x53\xcf\xa4\xd8\x09\xcc\x56\x0c\x7c\x7c\x89\xf6\x39\x58\x0b\x49\x9e\x71\x1c\x37\x95\x87\x9c\xd1\x9d\x67\x73\x56\x16\xcb\x23\x69\x64\xf0\xe5\x71\x0e\x12\x0a\x97\xbf\xe7\x59\x3f\x31\x07\xa7\xab\x31\x26\xa1\x38\x21\x6b\x6b\xa9\x54\xe7\x67\xbf\x2a\xc3\x48\xa2\xd0\x7a\x88\xf7\xe6\x9d\x0d\x68\xf8\x7b\x4b\xe5\x22\x00\x03\x81\x0c\x85\x1a\xac\x0a\xbc\x82\xba\x6d\xcd\x9c\xe2\x96\xcd\xe3\x22\x55\x65\xcc\x68\x53\xa3\x70\x71\x3e\xc5\xd3\x11\x28\x43\xa7\xd3\x2e\xfe\xb4\x91\x6a\xb1\x6e\xff\x81\xf7\xda\x57\x20\xfc\xd6\xb1\x03\xf7\x2e\x7d\xea\xd9\x67\x1b\x7a\xea\x69\x18\x7b\xb7\x1d\x8f\x1a\x7b\xe7\xad\x05\xfe\xb2\x71\x8e\x3c\xb8\x37\x25\x71\x0a\xeb\x2d\x74\x74\xb7\x30\xac\x56\x02\x88\xfa\xfe\xe4\xcf\xd9\x3c\xe1\xfe\x4f\x65\x3c\x17\xb2\x58\xc2\x17\xc7\x7d\x0c\x3e\xf2\x01\x5e\xaf\x18\x4c\x83\x1c\x96\xff\x76\xa7\xd0\x0f\x6d\xc9\x4a\xfe\x9d\xdd\x92\xef\xc5\xec\x57\x09\x80\x1d\xf5\x3d\xfb\x2e\x01\x6c\x4c\x10\xb3\x73\x03\xd7\x31\x5c\xd4\xa0\x23\x7a\x2f\x68\x50\x65\x6b\x1f\xd4\x20\x5f\x7b\x08\xa9\x42\x29\xe4\x86\xa2\x0c\x4f\xb3\xd5\xda\xbf\x05\x04\xe6\x57\x95\x7f\x03\xd9\xa4\x19\xbf\x94\xfd\xa7\xc8\x95\x4f\x5b\x40\xa7\x4a\x58\x70\xaf\xbd\x7e\xbc\xf6\x2a\xda\xe3\xa8\xfa\x19\xca\xde\xc1\x5f\x88\x0f\x06\x6f\xbe\xab\xbd\xbd\x8e\x74\x51\xd9\x8b\x68\xd9\xa1\x71\x30\xa8\x2a\xc1\xc5\x33\xd4\x2c\x48\x6a\x87\x99\x5d\xa0\xe7\x70\xaf\x26\xc6\xc5\x1d\xcf\x08\x87\x46\x90\xd7\x7a\x90\x61\x0a\x8d\xf8\xb7\xbf\xfe\xfb\xb4\x4b\x55\x1b\xaa\x3e\x16\xd6\xe3\x2a\xff\x36\x4f\x84\x8c\x21\x68\xc8\xe3\xa6\xfc\x8e\xac\x78\x91\x2b\xdb\xb3\x99\x86\x4f\x92\xdd\xd7\x7e\xd4\xea\x25\x4e\xa2\xaf\x10\x79\xf6\x9b\xac\x5b\xbe\x95\xb8\x54\x97\x29\xa1\x97\xf1\x5e\xf2\x5d\x53\x87\xfc\x59\xeb\xb8\x4f\x44\x1a\x43\x15\xe9\xeb\x87\xa2\x27\xb1\x88\xee\xc7\xda\x04\x47\x93\x87\x8b\xe8\x9e\xfd\x74\xf7\xfe\x1d\x6a\x45\x26\x7a\x21\xaf\x78\x91\x3c\x88\x8f\x79\xea\xdc\xd6\xc4\x06\x93\xa7\x76\x8d\x54\xc9\x6c\x03\xe2\x14\xcb\x7c\x6b\x0d\x87\x90\x6b\x7c\xb7\x3f\x5b\x95\xd1\xbd\x28\xce\x73\x2e\x63\xb5\xc3\x66\x9c\xeb\x72\xbd\x4e\xbe\x4c\x0b\x9e\x77\x10\x8f\xa3\x1f\xe1\x1b\xda\xb9\x5e\x4e\xa6\xf0\x36\x2f\x9a\xba\x8f\x90\x9d\x48\x22\xc5\x15\xe3\x16\xae\xc0\x39\xdf\x09\x60\x8e\x63\x55\xd2\x7e\x28\x05\x13\xfe\x40\xdb\x4e\x6b\x42\x7a\x2b\x52\xce\xfd\x14\x18\xf7\x9f\x82\x5a\x55\xd5\x9b\x6d\xa5\xbc\x5e\xdc\x8e\xdf\xe3\xfd\x70\x93\x0b\xad\x27\x4c\x2b\xa8\xf1\x42\x5a\xcc\xb4\xcd\xeb\x01\x7c\x06\x70\x4f\xa6\x7b\x16\xa9\x2c\x01\x79\x3d\xd7\xae\xad\x7a\x04\x7f\x72\x98\xde\x06\x8a\xa8\xa5\x2c\x92\x94\xf1\x75\x41\xce\x66\x20\xda\xb6\xc2\x3a\x7a\xba\x90\x10\x32\x8c\xa0\xf9\x10\xca\x77\x61\x02\xd7\x08\xcd\xd6\x3c\x4a\xd2\xa4\x20\xfa\x1f\x48\x86\xe1\xa6\xbd\xe6\x3c\x30\x7d\x99\xf3\x3d\x4f\xfd\xc5\x8a\xa7\xa5\xcf\xe8\x3b\xd3\xa2\x4e\x2f\xf7\xbb\xf0\x7f\x2b\xf7\xdc\xbe\x53\xf7\x84\x0b\xef\x29\x87\x4f\xf3\x4a\xeb\xd4\x5e\xfd\x39\x9e\xc4\x16\x27\x5a\x31\x75\x3d\xeb\xaf\x3b\x7e\xc0\x77\xde\x71\xa9\x9e\x5a\x8d\x9e\xe6\x17\x46\xf4\x5e\xbb\x11\xf6\x95\xdc\x05\x5d\xfc\xc3\x43\xaa\x6f\xbd\xdd\x1f\x94\x4a\x4f\xf5\x78\x13\x03\x4b\xa2\xe4\x12\x64\x2b\x4f\xb9\xae\xe1\x04\x70\x8e\xa3\xf9\x1b\x17\x7b\x75\x84\xbe\x55\xb1\x1b\x82\x05\x51\x15\x60\xa3\x80\x4a\xf4\x20\x86\x75\xd6\x12\x7c\x1f\x89\x7c\x86\x32\x10\xb5\x63\x4d\xe7\xa6\x0b\x3e\xc8\x65\xe7\xbe\x8e\x40\x7a\x58\xab\xe1\x28\x67\x18\x8a\x4c\xd6\x3e\xe5\x1c\x63\x21\x39\xaa\xeb\xc7\xe0\xdb\xb6\x3f\x51\xda\xda\x9c\x4f\x64\x25\x2f\x64\x60\x11\x23\x27\x90\x85\x96\xbb\x5e\x6b\xf3\x97\x55\xa6\xe1\xc9\xfe\xb2\x53\x18\xb0\x7b\x03\x2a\x6f\x42\x2d\x2b\xc0\x04\x44\x6a\xb7\x4a\xa4\x4d\x55\x26\x27\x32\x98\xf2\x33\x4b\x30\xe8\x1c\xfe\xd6\x24\x47\x85\x83\x5a\xdf\x3b\x33\x22\xe4\x6a\x0c\xb7\xac\x43\xd7\xdd\xf0\xfe\xf4\xb4\x64\xdd\x1d\x28\xd5\x7a\x0b\x12\xcd\x78\xfa\xc8\xf7\x1a\xf4\x5e\x85\xd9\x15\xd7\xe8\x38\xad\xd6\x7f\x12\x1c\xef\x96\xbc\x92\xc4\xd3\x4b\x92\x81\xa6\xb6\x24\xc8\xdf\x20\x52\xab\x6c\xeb\x79\x71\x5e\xe8\xf6\xce\xf9\x36\xb1\x90\xbc\x37\x16\x82\xc1\xc8\xff\x19\xe1\x8f\x1e\x27\xeb\x89\xbe\xde\xe0\x98\x44\x8b\x8c\xe0\x22\x90\xc0\x03\xdb\xb1\xf9\xf6\x84\xed\x78\x22\x69\x19\xa0\x7a\x58\x2c\x56\xe5\x66\xd3\xe9\x82\xfc\xf5\xc7\x32\xaa\xeb\xe4\xef\xde\xd7\xdc\xcb\xec\xf4\x14\xde\xd8\xb9\xfd\x12\xba\x87\xcd\xbd\xea\xeb\x38\x60\xbf\xa1\xb7\xbb\x35\xe4\xd4\x98\x44\x4f\xe3\xed\x9e\x0f\xf1\x76\x5b\x8c\x0f\xa4\x5a\xd1\x75\xd5\xe2\x30\x7e\x73\x83\x7f\x1d\x37\xf8\xa0\x49\x81\xf4\x1e\xcb\xa4\x6a\xa0\xf7\xd4\xf0\x48\x96\x30\x47\x86\x09\xb5\x22\x25\x76\x2d\x64\xac\xd9\x8a\x47\xcf\x40\x1b\x06\xa7\xe3\xe9\xfe\xb6\x03\xe0\x92\x5b\xb5\x13\x0c\x3e\xa5\x51\x77\x82\x51\x36\xdb\x04\x50\x8b\xa6\x81\x1e\x91\x41\x78\x0f\x38\x4e\x11\x19\x12\x7b\xa3\xfa\x3b\x29\x1e\x99\x39\xad\x26\x21\x8c\x2b\x18\x1e\x10\x24\x7a\x69\xac\xc3\x0a\xe6\xdb\xa5\xee\xe7\x62\xc3\xf3\x18\x32\x0d\x68\x49\xa6\x3c\xba\x37\xff\x0d\xf5\xa3\x2f\x12\xd4\xcc\x72\xa3\x23\xfc\xd1\x97\x96\xc8\x28\x07\x52\x26\x42\xb5\xf9\xfa\xe1\xeb\x9a\xf1\x28\x57\x1a\x9d\x32\x4e\xc7\x13\x32\x5d\xc1\x80\x7d\x48\xe2\x92\xa7\xf8\xc5\x4e\x4f\x36\xd7\x27\x71\xbd\xcf\x02\xc9\x1d\xf1\x25\x4b\xb9\xac\xae\x49\x6c\x2e\x70\xd5\x24\x3d\x33\xdf\x51\xae\x9d\x52\x95\xd1\xd4\x91\xf3\x40\xed\xd6\x2f\x2b\xb4\x8e\x73\xc1\xe3\x7d\x48\x4c\x95\x48\x06\xb1\x1f\xc6\xe3\x5d\x22\xcd\xd0\x5b\x45\x35\xb7\xbf\x5a\x72\x65\x04\x5c\x82\xf0\x48\x9a\xd6\x96\xbe\x66\x52\x18\x93\x8a\xe7\x49\xba\x07\x2b\x3a\xcb\xc5\x59\xf0\x9d\x60\x7d\x53\xbe\x07\xd0\x44\x13\x89\x42\xa9\xc5\xba\x4c\xd1\xd6\x86\xdb\xa8\x6b\x00\xad\xc3\x8f\xf3\x89\x39\x66\x0b\xa2\xfb\x0f\x3e\x8c\x22\x5a\x4f\x81\x9d\x6f\xc4\xc0\xc6\xc5\x71\x3c\x71\x5a\x0e\x10\xdf\xad\x7a\xb4\x89\x3e\x8f\xdc\x23\x39\xbb\xce\x94\x27\xf3\xdd\xf7\x5b\x5f\xf6\xde\x63\x57\x27\x76\x7e\x5c\x09\xd8\xd0\x6f\x22\x76\x2b\x32\x91\xd0\x1c\xd2\xa1\xf4\xfe\xd0\x52\x63\xbe\x90\x19\x4b\xd8\xb5\xed\xf5\xbe\xea\x0e\x65\xae\x75\x89\x56\x92\x2d\xca\xdf\xff\xfe\x0f\x82\xfd\x1e\x12\xa8\xc8\x0a\xc7\xa8\x0b\x50\xa7\x61\xe9\xb0\x51\xb9\x0f\x08\xe4\x55\x6b\x8c\x08\x6b\x03\x3e\xda\x6c\x65\x80\x0e\xf2\x68\xcb\x74\xb9\x42\x5c\x1c\x27\xc7\x3d\x97\x8e\x99\xf4\x9d\x02\x88\x1b\x9e\x67\xb6\xf6\xff\x4b\xdc\xd4\xc8\xcc\xbe\x90\x99\x42\xf2\x5c\x00\x14\xae\x04\xdb\xf1\xfc\x1e\x84\xf6\x48\x4d\x9d\xf1\x82\x7d\x97\x88\x69\xd5\x69\xfd\xb2\x52\x1f\x0a\x13\x20\x29\x26\xcb\x4b\x29\xad\x72\x08\x33\xe6\x98\xf7\x20\x4f\x16\x72\x55\x86\x37\xae\x8a\x0b\xda\x4f\x2d\x70\x43\xc3\x66\xab\x80\x29\x81\x2a\xc5\x75\xa0\xf2\xce\x06\xf8\xa2\x17\xf2\x99\x9c\xd1\x5d\x6e\xae\x0f\x64\x79\x58\x17\x56\x80\xd6\x86\xe6\x86\xe2\x96\x30\x1c\x38\xed\xe1\x68\xff\x00\x0a\x97\x13\xf6\x53\xf2\x20\x26\xec\x36\xe3\xf9\xfd\x84\xbd\xc1\xa0\xd2\x9f\xd4\xaa\xcd\x73\xd5\x48\xa7\x3f\xd9\x7b\x75\x9c\xf3\x66\xb0\x4c\xbe\xb3\x79\x7f\x69\x6a\xe0\x77\x45\x54\xff\x67\xe2\xbc\x3a\x98\x0e\xfe\xde\xef\xdf\x07\x82\x9f\xbf\x41\xa2\xfe\x2e\xef\x82\xfd\x24\x07\xbf\x0b\xff\xd7\xee\x5f\xd6\xe2\x02\xdb\x93\x76\xb9\x56\xac\xd3\xaf\x2b\xad\x33\x89\xeb\x87\x72\x33\xbb\x73\xd8\x52\xa0\xe4\xd9\xd8\x25\xf6\x8e\x80\x72\xd3\xab\xb6\xbf\x2e\x52\xa5\xcb\xbc\x7f\xf1\xdf\x54\x6b\x6d\xbf\xde\x42\x74\x08\x93\x6d\xb7\x12\x90\xb3\x3d\x14\xd4\x80\x8f\x2d\xff\x43\xad\x96\x80\xe0\x39\x6d\x85\xb7\x15\x67\x65\x6b\x5c\x1c\x88\xaa\xea\x4f\xc8\xdb\x4c\x00\xdf\x8e\x37\x45\xbd\x1b\xbc\x36\xc3\x9c\x43\x60\x21\x2d\xfd\x30\xe6\x0b\xe6\xb9\x00\x9e\x54\x73\xef\x7d\x10\x39\xcb\x78\xee\xc2\xe8\xd6\x22\x0a\x6e\x3e\x1e\x6a\x11\xe6\xf8\x40\xaa\x1e\xdd\xb7\x56\x42\x48\xd7\xdb\x63\x4c\x09\x63\x1d\xd4\x7b\x9f\x30\x54\x8f\x82\x45\x08\xcf\xef\x50\x8e\x6b\xbc\x17\xdc\x05\xc1\xe4\xde\x88\x22\xd8\xcd\x6b\xa6\x45\x65\x69\x56\xe2\x32\xbf\x2a\x1c\x79\x6b\xe4\xb5\x46\x4d\x54\x71\x1b\x0c\x8a\x64\x3d\x85\x97\xf8\x03\x2f\xb6\x78\xa1\xdd\xa9\x82\x24\xfc\x91\x23\x05\xe7\x0b\xfa\x5a\x57\xa9\x5a\x81\x0c\x92\xf9\xa5\xeb\x6e\x18\xd1\xd2\x1e\xd4\x75\xcd\x01\x1b\xb2\x33\x98\xdd\x04\xf2\x0c\x73\xa1\x81\x6e\xa2\x19\x9b\x19\x8a\x7a\x1d\x77\xe9\x6e\x56\xd7\x6c\xfa\x6f\xba\xa5\x55\xdc\xcd\xcf\x2c\x6b\x80\x40\x5e\x1e\x91\x97\x71\x19\xe6\xea\x19\xe3\x80\xa8\x5a\x29\xf8\x89\x6c\x8d\xb5\xf6\x5a\xb5\xdd\x85\x9c\xe1\x2f\xc1\x21\xc0\xbd\x0e\x87\x43\x19\x92\xb0\xa2\x5b\x7f\x98\xbc\xc7\x66\x21\xae\x8d\x3c\x04\x13\xef\xc1\x83\xcb\xc0\x04\x72\xe5\x64\x91\xe4\x82\x49\x88\xbd\x2f\xa4\x2e\x57\x67\x9e\x96\xc1\xdc\xe2\x1e\x80\x4a\x44\x8b\x8c\xc3\x55\x06\xd8\x5a\xce\x5a\x8e\x61\xf4\xc7\x79\x3e\x7d\x4b\x5f\xc6\x53\xda\xfc\x21\x03\x0f\xf3\x82\x5d\xdb\x5d\x39\xe6\xb2\x06\xb7\x68\x9b\x93\x8a\x87\x5d\xdf\x7e\x01\x8a\x1f\x90\xd7\x77\x83\xd8\x81\x6f\x7d\x80\x87\x31\xc0\xa1\x47\x37\x44\x91\x16\xf2\xff\xda\xb3\xa1\x1b\xaa\x3a\x62\xa6\x9b\x9e\x31\x47\x54\x27\x84\xb6\x52\x37\x7b\x85\x0c\x8c\xc0\xee\x4a\x35\xa6\x7c\x5b\xa9\xdc\xa2\x39\x42\x7e\x7b\x45\x49\x98\xf0\xeb\x43\xa2\x03\xb2\x63\xf8\xda\xad\x10\xec\x55\x2e\xd6\xaf\x3e\xe5\x62\xbd\xb4\x23\x3d\x85\x06\x4d\x4d\x8b\x9a\x94\xc7\x03\x27\x87\xce\x94\x6c\xa7\x7e\x3b\x40\xcd\x58\x6b\x12\x96\x13\xb4\x29\x59\x33\x2f\x41\x67\xda\x03\xf9\xef\x22\xae\x73\x31\x37\x6a\xf6\xd5\x8f\xb9\x2e\xfc\xd3\x00\x80\x51\x87\xf8\xd9\xdf\xff\xf1\x56\xe9\xb3\x21\xc7\xdb\x5d\x15\x28\x62\x37\x7b\x2e\xdd\x81\xd7\x0d\x28\xfe\xba\x98\x67\x18\x40\x9d\xf1\x47\x49\x2c\x1e\xa3\x5c\x4f\xc3\x8e\xb5\x76\x11\x79\x73\xac\x35\x90\x5f\x7e\x95\x49\xeb\xe9\x4b\x9c\xd6\xd6\x24\x90\x08\xe6\x69\x1a\x32\xca\xfb\xf8\xd2\x42\x06\x0a\x68\xec\x51\xa4\xa9\x75\xe1\x55\xec\x0d\xe2\x6c\x89\x21\xcd\x54\x4c\x2c\xe5\x04\x91\xb5\x51\x14\xe8\x6c\xc5\x41\x7f\xd2\xe9\xac\x1c\x5a\xcd\x4f\x75\x89\xfc\x95\x65\xdb\x1e\x88\xb7\xe2\x67\x97\xf7\x62\x3f\xba\xae\x07\x74\xed\xe0\xc2\xe4\x77\xd9\x88\xe7\xb9\xc5\x8e\xd3\x57\x99\xb9\x2b\xad\x79\x54\x71\x73\x76\xd4\x73\x2b\xa2\xfb\x4c\x25\x72\xf4\x5e\x14\xd4\xc7\x18\x52\x85\x39\xcf\x7c\x69\xee\x76\x38\xe8\x70\xac\xd8\x93\xd8\x10\x0d\xa0\x02\x0b\x88\xf4\x54\x54\x9c\x39\x85\xcc\xee\x69\xf7\xd4\xfe\x0b\xe1\xcf\x86\x67\xf0\xc5\xb6\xc4\x87\x6a\xa7\x0a\x6f\x71\xec\x54\x78\x10\x79\x23\xa7\x68\x60\x67\x73\x56\x21\x70\x6b\xed\x52\x70\x41\xfe\xe6\x19\xfa\xcd\x33\xf4\x3f\xdc\x33\xf4\x35\xdd\x42\x80\x08\x79\x4e\x9f\x50\x4f\x80\xfc\x84\xe5\xe8\xbe\x7a\xaa\xd8\x35\x5a\xc7\x93\x40\x18\x34\xc8\x9f\x6b\xc2\xdb\x2d\xbd\x42\x01\x92\xd6\xd1\xbd\x90\x9d\x31\x7a\x4b\x8a\xd3\xa9\x7d\xfb\x54\xb0\xcf\x6e\x4e\x9f\xe0\xed\x7e\x8e\x34\x0f\xf0\x21\xca\xd4\x36\x9a\x09\xb3\x4e\xc0\xf6\x34\x0d\x3f\x03\xa8\x94\xca\x1d\xad\xaf\xa6\xdc\x2e\x0c\x46\x22\xf9\x0e\x42\x84\x6a\x44\xb8\x43\x91\x60\x4e\x78\x37\x53\x2a\x6d\x05\x84\x3d\x69\x07\x36\xd2\x43\x86\x76\xde\x1c\x8d\x51\x1d\xc2\xa4\x6c\x2f\xfa\x54\x03\x9f\x98\x80\x59\x08\xa0\x04\x00\xb3\x29\x2e\x21\x43\xcf\x77\xc7\xd4\xe7\xf5\x70\xe7\x70\x21\x64\xd4\x4a\x44\x1c\x54\xf0\x2c\x64\x2d\xe2\x2e\xe7\x22\xa4\xda\x69\x24\x41\xe8\xe6\x77\x3a\xa2\x96\x50\xee\x32\x69\xa3\xfd\x1f\xbb\xb8\x6a\x16\x82\x05\x54\x63\xcd\x2d\x92\xc4\x92\xce\x1d\x12\x3d\xb4\x0c\xbb\xcb\x28\xe5\x7a\xa0\x61\xdd\xba\xef\xcc\xa9\xa0\x0b\x28\x67\xf8\x46\xfa\x13\x24\xa1\xec\x06\x22\x77\x16\x72\xe6\x44\xff\x3c\xf6\xcb\xe1\xd5\x30\x5c\x8a\x48\xbd\xc6\xd0\x20\x93\x9d\xbf\xb9\x4c\x98\x2e\xa3\x2d\x70\xf5\x55\xf7\xa9\x70\xdf\x6a\xae\xd8\xc9\x42\x9a\x0b\x11\xb8\x5a\x76\x1c\xb2\xad\x1f\x8d\xb1\xaa\x93\xff\x14\x0e\x9e\x45\x94\x50\x21\x22\x0b\x2f\x4e\x4a\xb6\xa2\xd7\x2c\x6d\x22\x02\x2c\x3c\xa6\xa4\xcc\x62\x5e\x88\xe9\xc2\xa3\x6d\x12\xf4\x74\x5a\x94\x07\x99\xcc\x3a\x6c\x58\x88\xde\xab\xed\xb4\x69\xb2\x16\xd1\x3e\x6a\xa8\xa0\xf4\x93\x0f\xfc\x76\x6d\xfb\x75\x5d\xdb\x90\x63\x14\x33\xe5\xc6\x74\x2d\x55\xf5\xc6\xbf\x7e\x5a\xe7\x0a\x16\xd4\x44\x8f\xe8\xe7\xaf\x78\xed\x6c\xb1\x81\xc7\xd9\xf3\x83\xef\x41\xfd\xc7\x99\xbf\xd8\xfa\xc3\x3a\x48\xac\x6f\x98\x85\x61\x70\xb1\x08\xa7\x8e\x31\x68\x07\x87\xf5\xbb\xb9\x4b\x7e\x55\xe0\xa4\x21\x17\x57\x63\x71\x3b\xb8\xd2\x95\xb5\xb4\xa5\xc0\xf3\xae\xc7\xe2\x0e\x38\xad\x79\xf1\x42\xbb\x5e\xaf\xee\x80\x16\xf1\xfe\x2e\xd1\xc5\xcf\x35\xc5\xc4\xe3\x24\x17\x9f\xcd\x34\xb5\x55\xc5\x6a\x0e\xb5\xa8\x6e\xaa\x36\x8f\x5a\xdb\x39\x07\x97\x27\xab\x91\x65\xea\x3d\xe6\x1e\xf4\xc9\xf5\xd7\x27\x3c\x9a\x1e\x73\x9e\x65\x22\xb7\x07\x79\xc3\xd6\x02\xc1\x29\xf8\x0a\x28\xc6\x6d\x05\xca\xd6\xd6\x6e\xb9\x66\x2b\xa9\x15\x0d\x8f\x41\xd7\x4d\xdb\x47\xee\xaa\x4c\xd3\xce\x91\x3b\xac\x63\x73\xf5\xf1\xdd\xbb\xe5\xcf\xb3\x77\x1f\x2f\x6d\xf3\x5b\x75\x61\x82\xc7\x3a\xfb\xc4\xd5\x84\xfa\xc4\x2b\xcf\x99\xcf\x0a\x2b\x9d\xab\x7c\xab\xd1\xc9\x55\xa6\x69\x55\x33\x68\x21\x3f\x51\x39\x00\xd3\x46\x3d\x44\xd3\x6f\xac\xb7\xe3\xaa\xdf\x87\xc7\x3e\x99\xc2\x3f\xe1\xbb\x67\xcc\x37\xe2\x15\x28\xdb\x91\x62\x56\x7b\xbf\x52\x0e\xc8\x09\xcb\x01\xc1\xc0\x5d\xcb\xe1\xa9\x55\xd1\x8e\x5b\x1e\x1f\x25\xf0\x31\x8b\xd8\x8a\x99\x3d\xc9\xea\xc0\xbe\xfb\x54\x8d\x53\xbb\xbd\x3c\xc6\x2b\x0d\x94\x3b\x41\x2d\x2b\x50\xe8\xf5\x72\x4f\x0b\x89\x3e\x50\x53\xa7\x42\x75\xd7\x89\xcd\xc9\xbc\x4d\xb9\xdc\x94\x7c\x63\xac\x5b\xfb\xf1\x85\xdc\x25\x9b\x2d\xb2\x4b\x94\x99\xc7\x27\x73\x26\x81\x84\xa4\x36\x85\x6a\xf8\xe4\x44\x2e\x24\xb5\x49\x6e\x7c\xf1\x88\x95\xfd\xd3\xad\x6b\x0e\x81\xd2\xb1\x20\x92\xe3\x92\x0b\x89\x83\x8b\xac\x17\x36\x12\x02\x37\x16\x5e\xd4\xa7\x2e\x87\xd8\x25\x4a\x56\x9b\x3d\x7d\x03\x31\x99\x85\x74\x89\xa9\xe8\x39\xa2\x36\x04\xb2\x0d\x58\xa5\xc3\xfb\x89\x1d\x0c\xbb\x26\xa8\x6e\xed\xb3\xfe\xe4\x33\xc0\x2c\xb8\xe5\x08\xed\xdd\xe6\x36\x36\xd0\x5b\xc8\x83\x8d\xa3\x8b\xad\x00\xb2\x91\xdb\x6b\x63\xdb\x85\xcf\x74\x42\x5b\x55\xb9\x4a\x47\x54\x09\x9f\xef\xad\x14\x6e\xc9\xfd\x95\x1a\x70\x1d\xbe\xa9\x2d\x2d\x33\x4d\xfb\x3e\xbb\x52\xaa\x63\x5c\x9e\x30\xa0\x58\xa9\x14\xbd\x70\xa8\x33\xca\xa8\x38\x66\xbe\x0c\x48\xd1\xab\x77\x91\xdd\x7d\xfa\x2a\x94\x26\xfa\xa8\xea\x78\xfb\x69\x70\x8d\x9c\x85\x40\x87\xdd\xa8\x1d\x96\xce\xb9\xca\x06\xdb\xb1\x4d\x52\x3c\xc9\x8a\xd8\x26\xb8\xbd\x98\xc5\x83\x0a\xb3\x66\xfe\x4f\xdc\x24\x9a\xf8\x91\x9b\x40\x25\xa3\x32\xd7\x66\xbb\xa4\xfd\x8e\x76\x6d\x95\x33\xbe\x90\x56\x0d\xc1\x6e\xc7\x33\x0b\xce\xcd\xdd\x5f\x31\xed\x31\x43\x36\x71\xb0\x58\x0b\xa6\xa4\xb0\xbb\xe1\x42\x5a\xe5\xe3\x09\xe3\x2b\x6d\x05\x85\xb9\xdc\x3b\x95\xdf\xc4\x49\xb8\x71\xc9\x00\xf5\x7c\x78\xcf\xab\x99\x01\x95\x73\xfe\x77\xe6\xff\xfe\xfb\x77\xff\x3f\x00\x00\xff\xff\x27\x67\xe6\x63\x4d\xac\x04\x00") func adminSwaggerJsonBytes() ([]byte, error) { return bindataRead( @@ -93,7 +93,7 @@ func adminSwaggerJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin.swagger.json", size: 305210, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} + info := bindataFileInfo{name: "admin.swagger.json", size: 306253, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/gen/pb-java/flyteidl/core/Tasks.java b/gen/pb-java/flyteidl/core/Tasks.java index a7d7acf1a..30f7fee2a 100644 --- a/gen/pb-java/flyteidl/core/Tasks.java +++ b/gen/pb-java/flyteidl/core/Tasks.java @@ -3305,6 +3305,1578 @@ public flyteidl.core.Tasks.RuntimeMetadata getDefaultInstanceForType() { } + public interface GPUAcceleratorOrBuilder extends + // @@protoc_insertion_point(interface_extends:flyteidl.core.GPUAccelerator) + com.google.protobuf.MessageOrBuilder { + + /** + * string device = 1; + */ + java.lang.String getDevice(); + /** + * string device = 1; + */ + com.google.protobuf.ByteString + getDeviceBytes(); + + /** + * bool unpartitioned = 2; + */ + boolean getUnpartitioned(); + + /** + * string partition_size = 3; + */ + java.lang.String getPartitionSize(); + /** + * string partition_size = 3; + */ + com.google.protobuf.ByteString + getPartitionSizeBytes(); + + public flyteidl.core.Tasks.GPUAccelerator.PartitionSizeValueCase getPartitionSizeValueCase(); + } + /** + *
+   * Metadata associated with the GPU accelerator to allocate to a task
+   * 
+ * + * Protobuf type {@code flyteidl.core.GPUAccelerator} + */ + public static final class GPUAccelerator extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:flyteidl.core.GPUAccelerator) + GPUAcceleratorOrBuilder { + private static final long serialVersionUID = 0L; + // Use GPUAccelerator.newBuilder() to construct. + private GPUAccelerator(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private GPUAccelerator() { + device_ = ""; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private GPUAccelerator( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + java.lang.String s = input.readStringRequireUtf8(); + + device_ = s; + break; + } + case 16: { + partitionSizeValueCase_ = 2; + partitionSizeValue_ = input.readBool(); + break; + } + case 26: { + java.lang.String s = input.readStringRequireUtf8(); + partitionSizeValueCase_ = 3; + partitionSizeValue_ = s; + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return flyteidl.core.Tasks.internal_static_flyteidl_core_GPUAccelerator_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return flyteidl.core.Tasks.internal_static_flyteidl_core_GPUAccelerator_fieldAccessorTable + .ensureFieldAccessorsInitialized( + flyteidl.core.Tasks.GPUAccelerator.class, flyteidl.core.Tasks.GPUAccelerator.Builder.class); + } + + private int partitionSizeValueCase_ = 0; + private java.lang.Object partitionSizeValue_; + public enum PartitionSizeValueCase + implements com.google.protobuf.Internal.EnumLite { + UNPARTITIONED(2), + PARTITION_SIZE(3), + PARTITIONSIZEVALUE_NOT_SET(0); + private final int value; + private PartitionSizeValueCase(int value) { + this.value = value; + } + /** + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static PartitionSizeValueCase valueOf(int value) { + return forNumber(value); + } + + public static PartitionSizeValueCase forNumber(int value) { + switch (value) { + case 2: return UNPARTITIONED; + case 3: return PARTITION_SIZE; + case 0: return PARTITIONSIZEVALUE_NOT_SET; + default: return null; + } + } + public int getNumber() { + return this.value; + } + }; + + public PartitionSizeValueCase + getPartitionSizeValueCase() { + return PartitionSizeValueCase.forNumber( + partitionSizeValueCase_); + } + + public static final int DEVICE_FIELD_NUMBER = 1; + private volatile java.lang.Object device_; + /** + * string device = 1; + */ + public java.lang.String getDevice() { + java.lang.Object ref = device_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + device_ = s; + return s; + } + } + /** + * string device = 1; + */ + public com.google.protobuf.ByteString + getDeviceBytes() { + java.lang.Object ref = device_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + device_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int UNPARTITIONED_FIELD_NUMBER = 2; + /** + * bool unpartitioned = 2; + */ + public boolean getUnpartitioned() { + if (partitionSizeValueCase_ == 2) { + return (java.lang.Boolean) partitionSizeValue_; + } + return false; + } + + public static final int PARTITION_SIZE_FIELD_NUMBER = 3; + /** + * string partition_size = 3; + */ + public java.lang.String getPartitionSize() { + java.lang.Object ref = ""; + if (partitionSizeValueCase_ == 3) { + ref = partitionSizeValue_; + } + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (partitionSizeValueCase_ == 3) { + partitionSizeValue_ = s; + } + return s; + } + } + /** + * string partition_size = 3; + */ + public com.google.protobuf.ByteString + getPartitionSizeBytes() { + java.lang.Object ref = ""; + if (partitionSizeValueCase_ == 3) { + ref = partitionSizeValue_; + } + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + if (partitionSizeValueCase_ == 3) { + partitionSizeValue_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!getDeviceBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, device_); + } + if (partitionSizeValueCase_ == 2) { + output.writeBool( + 2, (boolean)((java.lang.Boolean) partitionSizeValue_)); + } + if (partitionSizeValueCase_ == 3) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, partitionSizeValue_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!getDeviceBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, device_); + } + if (partitionSizeValueCase_ == 2) { + size += com.google.protobuf.CodedOutputStream + .computeBoolSize( + 2, (boolean)((java.lang.Boolean) partitionSizeValue_)); + } + if (partitionSizeValueCase_ == 3) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, partitionSizeValue_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof flyteidl.core.Tasks.GPUAccelerator)) { + return super.equals(obj); + } + flyteidl.core.Tasks.GPUAccelerator other = (flyteidl.core.Tasks.GPUAccelerator) obj; + + if (!getDevice() + .equals(other.getDevice())) return false; + if (!getPartitionSizeValueCase().equals(other.getPartitionSizeValueCase())) return false; + switch (partitionSizeValueCase_) { + case 2: + if (getUnpartitioned() + != other.getUnpartitioned()) return false; + break; + case 3: + if (!getPartitionSize() + .equals(other.getPartitionSize())) return false; + break; + case 0: + default: + } + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + DEVICE_FIELD_NUMBER; + hash = (53 * hash) + getDevice().hashCode(); + switch (partitionSizeValueCase_) { + case 2: + hash = (37 * hash) + UNPARTITIONED_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getUnpartitioned()); + break; + case 3: + hash = (37 * hash) + PARTITION_SIZE_FIELD_NUMBER; + hash = (53 * hash) + getPartitionSize().hashCode(); + break; + case 0: + default: + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static flyteidl.core.Tasks.GPUAccelerator parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.core.Tasks.GPUAccelerator parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.core.Tasks.GPUAccelerator parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.core.Tasks.GPUAccelerator parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.core.Tasks.GPUAccelerator parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.core.Tasks.GPUAccelerator parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.core.Tasks.GPUAccelerator parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static flyteidl.core.Tasks.GPUAccelerator parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static flyteidl.core.Tasks.GPUAccelerator parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static flyteidl.core.Tasks.GPUAccelerator parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static flyteidl.core.Tasks.GPUAccelerator parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static flyteidl.core.Tasks.GPUAccelerator parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(flyteidl.core.Tasks.GPUAccelerator prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+     * Metadata associated with the GPU accelerator to allocate to a task
+     * 
+ * + * Protobuf type {@code flyteidl.core.GPUAccelerator} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:flyteidl.core.GPUAccelerator) + flyteidl.core.Tasks.GPUAcceleratorOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return flyteidl.core.Tasks.internal_static_flyteidl_core_GPUAccelerator_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return flyteidl.core.Tasks.internal_static_flyteidl_core_GPUAccelerator_fieldAccessorTable + .ensureFieldAccessorsInitialized( + flyteidl.core.Tasks.GPUAccelerator.class, flyteidl.core.Tasks.GPUAccelerator.Builder.class); + } + + // Construct using flyteidl.core.Tasks.GPUAccelerator.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + device_ = ""; + + partitionSizeValueCase_ = 0; + partitionSizeValue_ = null; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return flyteidl.core.Tasks.internal_static_flyteidl_core_GPUAccelerator_descriptor; + } + + @java.lang.Override + public flyteidl.core.Tasks.GPUAccelerator getDefaultInstanceForType() { + return flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); + } + + @java.lang.Override + public flyteidl.core.Tasks.GPUAccelerator build() { + flyteidl.core.Tasks.GPUAccelerator result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public flyteidl.core.Tasks.GPUAccelerator buildPartial() { + flyteidl.core.Tasks.GPUAccelerator result = new flyteidl.core.Tasks.GPUAccelerator(this); + result.device_ = device_; + if (partitionSizeValueCase_ == 2) { + result.partitionSizeValue_ = partitionSizeValue_; + } + if (partitionSizeValueCase_ == 3) { + result.partitionSizeValue_ = partitionSizeValue_; + } + result.partitionSizeValueCase_ = partitionSizeValueCase_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof flyteidl.core.Tasks.GPUAccelerator) { + return mergeFrom((flyteidl.core.Tasks.GPUAccelerator)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(flyteidl.core.Tasks.GPUAccelerator other) { + if (other == flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance()) return this; + if (!other.getDevice().isEmpty()) { + device_ = other.device_; + onChanged(); + } + switch (other.getPartitionSizeValueCase()) { + case UNPARTITIONED: { + setUnpartitioned(other.getUnpartitioned()); + break; + } + case PARTITION_SIZE: { + partitionSizeValueCase_ = 3; + partitionSizeValue_ = other.partitionSizeValue_; + onChanged(); + break; + } + case PARTITIONSIZEVALUE_NOT_SET: { + break; + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + flyteidl.core.Tasks.GPUAccelerator parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (flyteidl.core.Tasks.GPUAccelerator) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int partitionSizeValueCase_ = 0; + private java.lang.Object partitionSizeValue_; + public PartitionSizeValueCase + getPartitionSizeValueCase() { + return PartitionSizeValueCase.forNumber( + partitionSizeValueCase_); + } + + public Builder clearPartitionSizeValue() { + partitionSizeValueCase_ = 0; + partitionSizeValue_ = null; + onChanged(); + return this; + } + + + private java.lang.Object device_ = ""; + /** + * string device = 1; + */ + public java.lang.String getDevice() { + java.lang.Object ref = device_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + device_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * string device = 1; + */ + public com.google.protobuf.ByteString + getDeviceBytes() { + java.lang.Object ref = device_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + device_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * string device = 1; + */ + public Builder setDevice( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + device_ = value; + onChanged(); + return this; + } + /** + * string device = 1; + */ + public Builder clearDevice() { + + device_ = getDefaultInstance().getDevice(); + onChanged(); + return this; + } + /** + * string device = 1; + */ + public Builder setDeviceBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + device_ = value; + onChanged(); + return this; + } + + /** + * bool unpartitioned = 2; + */ + public boolean getUnpartitioned() { + if (partitionSizeValueCase_ == 2) { + return (java.lang.Boolean) partitionSizeValue_; + } + return false; + } + /** + * bool unpartitioned = 2; + */ + public Builder setUnpartitioned(boolean value) { + partitionSizeValueCase_ = 2; + partitionSizeValue_ = value; + onChanged(); + return this; + } + /** + * bool unpartitioned = 2; + */ + public Builder clearUnpartitioned() { + if (partitionSizeValueCase_ == 2) { + partitionSizeValueCase_ = 0; + partitionSizeValue_ = null; + onChanged(); + } + return this; + } + + /** + * string partition_size = 3; + */ + public java.lang.String getPartitionSize() { + java.lang.Object ref = ""; + if (partitionSizeValueCase_ == 3) { + ref = partitionSizeValue_; + } + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (partitionSizeValueCase_ == 3) { + partitionSizeValue_ = s; + } + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * string partition_size = 3; + */ + public com.google.protobuf.ByteString + getPartitionSizeBytes() { + java.lang.Object ref = ""; + if (partitionSizeValueCase_ == 3) { + ref = partitionSizeValue_; + } + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + if (partitionSizeValueCase_ == 3) { + partitionSizeValue_ = b; + } + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * string partition_size = 3; + */ + public Builder setPartitionSize( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + partitionSizeValueCase_ = 3; + partitionSizeValue_ = value; + onChanged(); + return this; + } + /** + * string partition_size = 3; + */ + public Builder clearPartitionSize() { + if (partitionSizeValueCase_ == 3) { + partitionSizeValueCase_ = 0; + partitionSizeValue_ = null; + onChanged(); + } + return this; + } + /** + * string partition_size = 3; + */ + public Builder setPartitionSizeBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + partitionSizeValueCase_ = 3; + partitionSizeValue_ = value; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:flyteidl.core.GPUAccelerator) + } + + // @@protoc_insertion_point(class_scope:flyteidl.core.GPUAccelerator) + private static final flyteidl.core.Tasks.GPUAccelerator DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new flyteidl.core.Tasks.GPUAccelerator(); + } + + public static flyteidl.core.Tasks.GPUAccelerator getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public GPUAccelerator parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new GPUAccelerator(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public flyteidl.core.Tasks.GPUAccelerator getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + + } + + public interface ResourceMetadataOrBuilder extends + // @@protoc_insertion_point(interface_extends:flyteidl.core.ResourceMetadata) + com.google.protobuf.MessageOrBuilder { + + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + boolean hasGpuAccelerator(); + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + flyteidl.core.Tasks.GPUAccelerator getGpuAccelerator(); + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + flyteidl.core.Tasks.GPUAcceleratorOrBuilder getGpuAcceleratorOrBuilder(); + + public flyteidl.core.Tasks.ResourceMetadata.AcceleratorValueCase getAcceleratorValueCase(); + } + /** + *
+   * Additional metadata associated with resources to allocate to a task
+   * 
+ * + * Protobuf type {@code flyteidl.core.ResourceMetadata} + */ + public static final class ResourceMetadata extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:flyteidl.core.ResourceMetadata) + ResourceMetadataOrBuilder { + private static final long serialVersionUID = 0L; + // Use ResourceMetadata.newBuilder() to construct. + private ResourceMetadata(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private ResourceMetadata() { + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private ResourceMetadata( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + flyteidl.core.Tasks.GPUAccelerator.Builder subBuilder = null; + if (acceleratorValueCase_ == 1) { + subBuilder = ((flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_).toBuilder(); + } + acceleratorValue_ = + input.readMessage(flyteidl.core.Tasks.GPUAccelerator.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_); + acceleratorValue_ = subBuilder.buildPartial(); + } + acceleratorValueCase_ = 1; + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return flyteidl.core.Tasks.internal_static_flyteidl_core_ResourceMetadata_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return flyteidl.core.Tasks.internal_static_flyteidl_core_ResourceMetadata_fieldAccessorTable + .ensureFieldAccessorsInitialized( + flyteidl.core.Tasks.ResourceMetadata.class, flyteidl.core.Tasks.ResourceMetadata.Builder.class); + } + + private int acceleratorValueCase_ = 0; + private java.lang.Object acceleratorValue_; + public enum AcceleratorValueCase + implements com.google.protobuf.Internal.EnumLite { + GPU_ACCELERATOR(1), + ACCELERATORVALUE_NOT_SET(0); + private final int value; + private AcceleratorValueCase(int value) { + this.value = value; + } + /** + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static AcceleratorValueCase valueOf(int value) { + return forNumber(value); + } + + public static AcceleratorValueCase forNumber(int value) { + switch (value) { + case 1: return GPU_ACCELERATOR; + case 0: return ACCELERATORVALUE_NOT_SET; + default: return null; + } + } + public int getNumber() { + return this.value; + } + }; + + public AcceleratorValueCase + getAcceleratorValueCase() { + return AcceleratorValueCase.forNumber( + acceleratorValueCase_); + } + + public static final int GPU_ACCELERATOR_FIELD_NUMBER = 1; + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + public boolean hasGpuAccelerator() { + return acceleratorValueCase_ == 1; + } + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + public flyteidl.core.Tasks.GPUAccelerator getGpuAccelerator() { + if (acceleratorValueCase_ == 1) { + return (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_; + } + return flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); + } + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + public flyteidl.core.Tasks.GPUAcceleratorOrBuilder getGpuAcceleratorOrBuilder() { + if (acceleratorValueCase_ == 1) { + return (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_; + } + return flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (acceleratorValueCase_ == 1) { + output.writeMessage(1, (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (acceleratorValueCase_ == 1) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof flyteidl.core.Tasks.ResourceMetadata)) { + return super.equals(obj); + } + flyteidl.core.Tasks.ResourceMetadata other = (flyteidl.core.Tasks.ResourceMetadata) obj; + + if (!getAcceleratorValueCase().equals(other.getAcceleratorValueCase())) return false; + switch (acceleratorValueCase_) { + case 1: + if (!getGpuAccelerator() + .equals(other.getGpuAccelerator())) return false; + break; + case 0: + default: + } + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + switch (acceleratorValueCase_) { + case 1: + hash = (37 * hash) + GPU_ACCELERATOR_FIELD_NUMBER; + hash = (53 * hash) + getGpuAccelerator().hashCode(); + break; + case 0: + default: + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static flyteidl.core.Tasks.ResourceMetadata parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.core.Tasks.ResourceMetadata parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.core.Tasks.ResourceMetadata parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.core.Tasks.ResourceMetadata parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.core.Tasks.ResourceMetadata parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.core.Tasks.ResourceMetadata parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.core.Tasks.ResourceMetadata parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static flyteidl.core.Tasks.ResourceMetadata parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static flyteidl.core.Tasks.ResourceMetadata parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static flyteidl.core.Tasks.ResourceMetadata parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static flyteidl.core.Tasks.ResourceMetadata parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static flyteidl.core.Tasks.ResourceMetadata parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(flyteidl.core.Tasks.ResourceMetadata prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+     * Additional metadata associated with resources to allocate to a task
+     * 
+ * + * Protobuf type {@code flyteidl.core.ResourceMetadata} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:flyteidl.core.ResourceMetadata) + flyteidl.core.Tasks.ResourceMetadataOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return flyteidl.core.Tasks.internal_static_flyteidl_core_ResourceMetadata_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return flyteidl.core.Tasks.internal_static_flyteidl_core_ResourceMetadata_fieldAccessorTable + .ensureFieldAccessorsInitialized( + flyteidl.core.Tasks.ResourceMetadata.class, flyteidl.core.Tasks.ResourceMetadata.Builder.class); + } + + // Construct using flyteidl.core.Tasks.ResourceMetadata.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + acceleratorValueCase_ = 0; + acceleratorValue_ = null; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return flyteidl.core.Tasks.internal_static_flyteidl_core_ResourceMetadata_descriptor; + } + + @java.lang.Override + public flyteidl.core.Tasks.ResourceMetadata getDefaultInstanceForType() { + return flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance(); + } + + @java.lang.Override + public flyteidl.core.Tasks.ResourceMetadata build() { + flyteidl.core.Tasks.ResourceMetadata result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public flyteidl.core.Tasks.ResourceMetadata buildPartial() { + flyteidl.core.Tasks.ResourceMetadata result = new flyteidl.core.Tasks.ResourceMetadata(this); + if (acceleratorValueCase_ == 1) { + if (gpuAcceleratorBuilder_ == null) { + result.acceleratorValue_ = acceleratorValue_; + } else { + result.acceleratorValue_ = gpuAcceleratorBuilder_.build(); + } + } + result.acceleratorValueCase_ = acceleratorValueCase_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof flyteidl.core.Tasks.ResourceMetadata) { + return mergeFrom((flyteidl.core.Tasks.ResourceMetadata)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(flyteidl.core.Tasks.ResourceMetadata other) { + if (other == flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance()) return this; + switch (other.getAcceleratorValueCase()) { + case GPU_ACCELERATOR: { + mergeGpuAccelerator(other.getGpuAccelerator()); + break; + } + case ACCELERATORVALUE_NOT_SET: { + break; + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + flyteidl.core.Tasks.ResourceMetadata parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (flyteidl.core.Tasks.ResourceMetadata) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int acceleratorValueCase_ = 0; + private java.lang.Object acceleratorValue_; + public AcceleratorValueCase + getAcceleratorValueCase() { + return AcceleratorValueCase.forNumber( + acceleratorValueCase_); + } + + public Builder clearAcceleratorValue() { + acceleratorValueCase_ = 0; + acceleratorValue_ = null; + onChanged(); + return this; + } + + + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Tasks.GPUAccelerator, flyteidl.core.Tasks.GPUAccelerator.Builder, flyteidl.core.Tasks.GPUAcceleratorOrBuilder> gpuAcceleratorBuilder_; + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + public boolean hasGpuAccelerator() { + return acceleratorValueCase_ == 1; + } + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + public flyteidl.core.Tasks.GPUAccelerator getGpuAccelerator() { + if (gpuAcceleratorBuilder_ == null) { + if (acceleratorValueCase_ == 1) { + return (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_; + } + return flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); + } else { + if (acceleratorValueCase_ == 1) { + return gpuAcceleratorBuilder_.getMessage(); + } + return flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); + } + } + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + public Builder setGpuAccelerator(flyteidl.core.Tasks.GPUAccelerator value) { + if (gpuAcceleratorBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + acceleratorValue_ = value; + onChanged(); + } else { + gpuAcceleratorBuilder_.setMessage(value); + } + acceleratorValueCase_ = 1; + return this; + } + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + public Builder setGpuAccelerator( + flyteidl.core.Tasks.GPUAccelerator.Builder builderForValue) { + if (gpuAcceleratorBuilder_ == null) { + acceleratorValue_ = builderForValue.build(); + onChanged(); + } else { + gpuAcceleratorBuilder_.setMessage(builderForValue.build()); + } + acceleratorValueCase_ = 1; + return this; + } + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + public Builder mergeGpuAccelerator(flyteidl.core.Tasks.GPUAccelerator value) { + if (gpuAcceleratorBuilder_ == null) { + if (acceleratorValueCase_ == 1 && + acceleratorValue_ != flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance()) { + acceleratorValue_ = flyteidl.core.Tasks.GPUAccelerator.newBuilder((flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_) + .mergeFrom(value).buildPartial(); + } else { + acceleratorValue_ = value; + } + onChanged(); + } else { + if (acceleratorValueCase_ == 1) { + gpuAcceleratorBuilder_.mergeFrom(value); + } + gpuAcceleratorBuilder_.setMessage(value); + } + acceleratorValueCase_ = 1; + return this; + } + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + public Builder clearGpuAccelerator() { + if (gpuAcceleratorBuilder_ == null) { + if (acceleratorValueCase_ == 1) { + acceleratorValueCase_ = 0; + acceleratorValue_ = null; + onChanged(); + } + } else { + if (acceleratorValueCase_ == 1) { + acceleratorValueCase_ = 0; + acceleratorValue_ = null; + } + gpuAcceleratorBuilder_.clear(); + } + return this; + } + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + public flyteidl.core.Tasks.GPUAccelerator.Builder getGpuAcceleratorBuilder() { + return getGpuAcceleratorFieldBuilder().getBuilder(); + } + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + public flyteidl.core.Tasks.GPUAcceleratorOrBuilder getGpuAcceleratorOrBuilder() { + if ((acceleratorValueCase_ == 1) && (gpuAcceleratorBuilder_ != null)) { + return gpuAcceleratorBuilder_.getMessageOrBuilder(); + } else { + if (acceleratorValueCase_ == 1) { + return (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_; + } + return flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); + } + } + /** + * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + */ + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Tasks.GPUAccelerator, flyteidl.core.Tasks.GPUAccelerator.Builder, flyteidl.core.Tasks.GPUAcceleratorOrBuilder> + getGpuAcceleratorFieldBuilder() { + if (gpuAcceleratorBuilder_ == null) { + if (!(acceleratorValueCase_ == 1)) { + acceleratorValue_ = flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); + } + gpuAcceleratorBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Tasks.GPUAccelerator, flyteidl.core.Tasks.GPUAccelerator.Builder, flyteidl.core.Tasks.GPUAcceleratorOrBuilder>( + (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_, + getParentForChildren(), + isClean()); + acceleratorValue_ = null; + } + acceleratorValueCase_ = 1; + onChanged();; + return gpuAcceleratorBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:flyteidl.core.ResourceMetadata) + } + + // @@protoc_insertion_point(class_scope:flyteidl.core.ResourceMetadata) + private static final flyteidl.core.Tasks.ResourceMetadata DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new flyteidl.core.Tasks.ResourceMetadata(); + } + + public static flyteidl.core.Tasks.ResourceMetadata getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ResourceMetadata parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new ResourceMetadata(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public flyteidl.core.Tasks.ResourceMetadata getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + + } + public interface TaskMetadataOrBuilder extends // @@protoc_insertion_point(interface_extends:flyteidl.core.TaskMetadata) com.google.protobuf.MessageOrBuilder { @@ -3530,6 +5102,31 @@ java.lang.String getTagsOrThrow( com.google.protobuf.ByteString getPodTemplateNameBytes(); + /** + *
+     * Additional metadata associated with resources to allocate to this task
+     * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + boolean hasResourceMetadata(); + /** + *
+     * Additional metadata associated with resources to allocate to this task
+     * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + flyteidl.core.Tasks.ResourceMetadata getResourceMetadata(); + /** + *
+     * Additional metadata associated with resources to allocate to this task
+     * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + flyteidl.core.Tasks.ResourceMetadataOrBuilder getResourceMetadataOrBuilder(); + public flyteidl.core.Tasks.TaskMetadata.InterruptibleValueCase getInterruptibleValueCase(); } /** @@ -3668,6 +5265,19 @@ private TaskMetadata( podTemplateName_ = s; break; } + case 106: { + flyteidl.core.Tasks.ResourceMetadata.Builder subBuilder = null; + if (resourceMetadata_ != null) { + subBuilder = resourceMetadata_.toBuilder(); + } + resourceMetadata_ = input.readMessage(flyteidl.core.Tasks.ResourceMetadata.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(resourceMetadata_); + resourceMetadata_ = subBuilder.buildPartial(); + } + + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -4122,6 +5732,39 @@ public java.lang.String getPodTemplateName() { } } + public static final int RESOURCE_METADATA_FIELD_NUMBER = 13; + private flyteidl.core.Tasks.ResourceMetadata resourceMetadata_; + /** + *
+     * Additional metadata associated with resources to allocate to this task
+     * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + public boolean hasResourceMetadata() { + return resourceMetadata_ != null; + } + /** + *
+     * Additional metadata associated with resources to allocate to this task
+     * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + public flyteidl.core.Tasks.ResourceMetadata getResourceMetadata() { + return resourceMetadata_ == null ? flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance() : resourceMetadata_; + } + /** + *
+     * Additional metadata associated with resources to allocate to this task
+     * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + public flyteidl.core.Tasks.ResourceMetadataOrBuilder getResourceMetadataOrBuilder() { + return getResourceMetadata(); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -4173,6 +5816,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (!getPodTemplateNameBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 12, podTemplateName_); } + if (resourceMetadata_ != null) { + output.writeMessage(13, getResourceMetadata()); + } unknownFields.writeTo(output); } @@ -4230,6 +5876,10 @@ public int getSerializedSize() { if (!getPodTemplateNameBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(12, podTemplateName_); } + if (resourceMetadata_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(13, getResourceMetadata()); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -4274,6 +5924,11 @@ public boolean equals(final java.lang.Object obj) { other.internalGetTags())) return false; if (!getPodTemplateName() .equals(other.getPodTemplateName())) return false; + if (hasResourceMetadata() != other.hasResourceMetadata()) return false; + if (hasResourceMetadata()) { + if (!getResourceMetadata() + .equals(other.getResourceMetadata())) return false; + } if (!getInterruptibleValueCase().equals(other.getInterruptibleValueCase())) return false; switch (interruptibleValueCase_) { case 8: @@ -4325,6 +5980,10 @@ public int hashCode() { } hash = (37 * hash) + POD_TEMPLATE_NAME_FIELD_NUMBER; hash = (53 * hash) + getPodTemplateName().hashCode(); + if (hasResourceMetadata()) { + hash = (37 * hash) + RESOURCE_METADATA_FIELD_NUMBER; + hash = (53 * hash) + getResourceMetadata().hashCode(); + } switch (interruptibleValueCase_) { case 8: hash = (37 * hash) + INTERRUPTIBLE_FIELD_NUMBER; @@ -4524,6 +6183,12 @@ public Builder clear() { internalGetMutableTags().clear(); podTemplateName_ = ""; + if (resourceMetadataBuilder_ == null) { + resourceMetadata_ = null; + } else { + resourceMetadata_ = null; + resourceMetadataBuilder_ = null; + } interruptibleValueCase_ = 0; interruptibleValue_ = null; return this; @@ -4580,6 +6245,11 @@ public flyteidl.core.Tasks.TaskMetadata buildPartial() { result.tags_ = internalGetTags(); result.tags_.makeImmutable(); result.podTemplateName_ = podTemplateName_; + if (resourceMetadataBuilder_ == null) { + result.resourceMetadata_ = resourceMetadata_; + } else { + result.resourceMetadata_ = resourceMetadataBuilder_.build(); + } result.bitField0_ = to_bitField0_; result.interruptibleValueCase_ = interruptibleValueCase_; onBuilt(); @@ -4662,6 +6332,9 @@ public Builder mergeFrom(flyteidl.core.Tasks.TaskMetadata other) { podTemplateName_ = other.podTemplateName_; onChanged(); } + if (other.hasResourceMetadata()) { + mergeResourceMetadata(other.getResourceMetadata()); + } switch (other.getInterruptibleValueCase()) { case INTERRUPTIBLE: { setInterruptible(other.getInterruptible()); @@ -5751,6 +7424,159 @@ public Builder setPodTemplateNameBytes( onChanged(); return this; } + + private flyteidl.core.Tasks.ResourceMetadata resourceMetadata_; + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Tasks.ResourceMetadata, flyteidl.core.Tasks.ResourceMetadata.Builder, flyteidl.core.Tasks.ResourceMetadataOrBuilder> resourceMetadataBuilder_; + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + public boolean hasResourceMetadata() { + return resourceMetadataBuilder_ != null || resourceMetadata_ != null; + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + public flyteidl.core.Tasks.ResourceMetadata getResourceMetadata() { + if (resourceMetadataBuilder_ == null) { + return resourceMetadata_ == null ? flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance() : resourceMetadata_; + } else { + return resourceMetadataBuilder_.getMessage(); + } + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + public Builder setResourceMetadata(flyteidl.core.Tasks.ResourceMetadata value) { + if (resourceMetadataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + resourceMetadata_ = value; + onChanged(); + } else { + resourceMetadataBuilder_.setMessage(value); + } + + return this; + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + public Builder setResourceMetadata( + flyteidl.core.Tasks.ResourceMetadata.Builder builderForValue) { + if (resourceMetadataBuilder_ == null) { + resourceMetadata_ = builderForValue.build(); + onChanged(); + } else { + resourceMetadataBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + public Builder mergeResourceMetadata(flyteidl.core.Tasks.ResourceMetadata value) { + if (resourceMetadataBuilder_ == null) { + if (resourceMetadata_ != null) { + resourceMetadata_ = + flyteidl.core.Tasks.ResourceMetadata.newBuilder(resourceMetadata_).mergeFrom(value).buildPartial(); + } else { + resourceMetadata_ = value; + } + onChanged(); + } else { + resourceMetadataBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + public Builder clearResourceMetadata() { + if (resourceMetadataBuilder_ == null) { + resourceMetadata_ = null; + onChanged(); + } else { + resourceMetadata_ = null; + resourceMetadataBuilder_ = null; + } + + return this; + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + public flyteidl.core.Tasks.ResourceMetadata.Builder getResourceMetadataBuilder() { + + onChanged(); + return getResourceMetadataFieldBuilder().getBuilder(); + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + public flyteidl.core.Tasks.ResourceMetadataOrBuilder getResourceMetadataOrBuilder() { + if (resourceMetadataBuilder_ != null) { + return resourceMetadataBuilder_.getMessageOrBuilder(); + } else { + return resourceMetadata_ == null ? + flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance() : resourceMetadata_; + } + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 13; + */ + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Tasks.ResourceMetadata, flyteidl.core.Tasks.ResourceMetadata.Builder, flyteidl.core.Tasks.ResourceMetadataOrBuilder> + getResourceMetadataFieldBuilder() { + if (resourceMetadataBuilder_ == null) { + resourceMetadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Tasks.ResourceMetadata, flyteidl.core.Tasks.ResourceMetadata.Builder, flyteidl.core.Tasks.ResourceMetadataOrBuilder>( + getResourceMetadata(), + getParentForChildren(), + isClean()); + resourceMetadata_ = null; + } + return resourceMetadataBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -18595,6 +20421,16 @@ public flyteidl.core.Tasks.Sql getDefaultInstanceForType() { private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_flyteidl_core_RuntimeMetadata_fieldAccessorTable; + private static final com.google.protobuf.Descriptors.Descriptor + internal_static_flyteidl_core_GPUAccelerator_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_flyteidl_core_GPUAccelerator_fieldAccessorTable; + private static final com.google.protobuf.Descriptors.Descriptor + internal_static_flyteidl_core_ResourceMetadata_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_flyteidl_core_ResourceMetadata_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_flyteidl_core_TaskMetadata_descriptor; private static final @@ -18686,72 +20522,79 @@ public flyteidl.core.Tasks.Sql getDefaultInstanceForType() { "ype\030\001 \001(\0162*.flyteidl.core.RuntimeMetadat" + "a.RuntimeType\022\017\n\007version\030\002 \001(\t\022\016\n\006flavor" + "\030\003 \001(\t\"\'\n\013RuntimeType\022\t\n\005OTHER\020\000\022\r\n\tFLYT" + - "E_SDK\020\001\"\316\003\n\014TaskMetadata\022\024\n\014discoverable" + - "\030\001 \001(\010\022/\n\007runtime\030\002 \001(\0132\036.flyteidl.core." + - "RuntimeMetadata\022*\n\007timeout\030\004 \001(\0132\031.googl" + - "e.protobuf.Duration\022-\n\007retries\030\005 \001(\0132\034.f" + - "lyteidl.core.RetryStrategy\022\031\n\021discovery_" + - "version\030\006 \001(\t\022 \n\030deprecated_error_messag" + - "e\030\007 \001(\t\022\027\n\rinterruptible\030\010 \001(\010H\000\022\032\n\022cach" + - "e_serializable\030\t \001(\010\022\026\n\016generates_deck\030\n" + - " \001(\010\0223\n\004tags\030\013 \003(\0132%.flyteidl.core.TaskM" + - "etadata.TagsEntry\022\031\n\021pod_template_name\030\014" + - " \001(\t\032+\n\tTagsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030" + - "\002 \001(\t:\0028\001B\025\n\023interruptible_value\"\220\004\n\014Tas" + - "kTemplate\022%\n\002id\030\001 \001(\0132\031.flyteidl.core.Id" + - "entifier\022\014\n\004type\030\002 \001(\t\022-\n\010metadata\030\003 \001(\013" + - "2\033.flyteidl.core.TaskMetadata\0220\n\tinterfa" + - "ce\030\004 \001(\0132\035.flyteidl.core.TypedInterface\022" + - "\'\n\006custom\030\005 \001(\0132\027.google.protobuf.Struct" + - "\022-\n\tcontainer\030\006 \001(\0132\030.flyteidl.core.Cont" + - "ainerH\000\022(\n\007k8s_pod\030\021 \001(\0132\025.flyteidl.core" + - ".K8sPodH\000\022!\n\003sql\030\022 \001(\0132\022.flyteidl.core.S" + - "qlH\000\022\031\n\021task_type_version\030\007 \001(\005\0228\n\020secur" + - "ity_context\030\010 \001(\0132\036.flyteidl.core.Securi" + - "tyContext\0227\n\006config\030\020 \003(\0132\'.flyteidl.cor" + - "e.TaskTemplate.ConfigEntry\032-\n\013ConfigEntr" + - "y\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001B\010\n\006tar" + - "get\"\'\n\rContainerPort\022\026\n\016container_port\030\001" + - " \001(\r\"\255\003\n\tContainer\022\r\n\005image\030\001 \001(\t\022\017\n\007com" + - "mand\030\002 \003(\t\022\014\n\004args\030\003 \003(\t\022+\n\tresources\030\004 " + - "\001(\0132\030.flyteidl.core.Resources\022(\n\003env\030\005 \003" + - "(\0132\033.flyteidl.core.KeyValuePair\022/\n\006confi" + - "g\030\006 \003(\0132\033.flyteidl.core.KeyValuePairB\002\030\001" + - "\022+\n\005ports\030\007 \003(\0132\034.flyteidl.core.Containe" + - "rPort\0225\n\013data_config\030\t \001(\0132 .flyteidl.co" + - "re.DataLoadingConfig\022;\n\014architecture\030\n \001" + - "(\0162%.flyteidl.core.Container.Architectur" + - "e\"I\n\014Architecture\022\013\n\007UNKNOWN\020\000\022\t\n\005AMD64\020" + - "\001\022\t\n\005ARM64\020\002\022\n\n\006ARM_V6\020\003\022\n\n\006ARM_V7\020\004\"\233\002\n" + - "\nIOStrategy\022=\n\rdownload_mode\030\001 \001(\0162&.fly" + - "teidl.core.IOStrategy.DownloadMode\0229\n\013up" + - "load_mode\030\002 \001(\0162$.flyteidl.core.IOStrate" + - "gy.UploadMode\"L\n\014DownloadMode\022\022\n\016DOWNLOA" + - "D_EAGER\020\000\022\023\n\017DOWNLOAD_STREAM\020\001\022\023\n\017DO_NOT" + - "_DOWNLOAD\020\002\"E\n\nUploadMode\022\022\n\016UPLOAD_ON_E" + - "XIT\020\000\022\020\n\014UPLOAD_EAGER\020\001\022\021\n\rDO_NOT_UPLOAD" + - "\020\002\"\363\001\n\021DataLoadingConfig\022\017\n\007enabled\030\001 \001(" + - "\010\022\022\n\ninput_path\030\002 \001(\t\022\023\n\013output_path\030\003 \001" + - "(\t\022A\n\006format\030\004 \001(\01621.flyteidl.core.DataL" + - "oadingConfig.LiteralMapFormat\022.\n\013io_stra" + - "tegy\030\005 \001(\0132\031.flyteidl.core.IOStrategy\"1\n" + - "\020LiteralMapFormat\022\010\n\004JSON\020\000\022\010\n\004YAML\020\001\022\t\n" + - "\005PROTO\020\002\"\236\001\n\006K8sPod\0222\n\010metadata\030\001 \001(\0132 ." + - "flyteidl.core.K8sObjectMetadata\022)\n\010pod_s" + - "pec\030\002 \001(\0132\027.google.protobuf.Struct\0225\n\013da" + - "ta_config\030\003 \001(\0132 .flyteidl.core.DataLoad" + - "ingConfig\"\374\001\n\021K8sObjectMetadata\022<\n\006label" + - "s\030\001 \003(\0132,.flyteidl.core.K8sObjectMetadat" + - "a.LabelsEntry\022F\n\013annotations\030\002 \003(\01321.fly" + - "teidl.core.K8sObjectMetadata.Annotations" + - "Entry\032-\n\013LabelsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005val" + - "ue\030\002 \001(\t:\0028\001\0322\n\020AnnotationsEntry\022\013\n\003key\030" + - "\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"~\n\003Sql\022\021\n\tstate" + - "ment\030\001 \001(\t\022+\n\007dialect\030\002 \001(\0162\032.flyteidl.c" + - "ore.Sql.Dialect\"7\n\007Dialect\022\r\n\tUNDEFINED\020" + - "\000\022\010\n\004ANSI\020\001\022\010\n\004HIVE\020\002\022\t\n\005OTHER\020\003B6Z4gith" + - "ub.com/flyteorg/flyteidl/gen/pb-go/flyte" + - "idl/coreb\006proto3" + "E_SDK\020\001\"k\n\016GPUAccelerator\022\016\n\006device\030\001 \001(" + + "\t\022\027\n\runpartitioned\030\002 \001(\010H\000\022\030\n\016partition_" + + "size\030\003 \001(\tH\000B\026\n\024partition_size_value\"a\n\020" + + "ResourceMetadata\0228\n\017gpu_accelerator\030\001 \001(" + + "\0132\035.flyteidl.core.GPUAcceleratorH\000B\023\n\021ac" + + "celerator_value\"\212\004\n\014TaskMetadata\022\024\n\014disc" + + "overable\030\001 \001(\010\022/\n\007runtime\030\002 \001(\0132\036.flytei" + + "dl.core.RuntimeMetadata\022*\n\007timeout\030\004 \001(\013" + + "2\031.google.protobuf.Duration\022-\n\007retries\030\005" + + " \001(\0132\034.flyteidl.core.RetryStrategy\022\031\n\021di" + + "scovery_version\030\006 \001(\t\022 \n\030deprecated_erro" + + "r_message\030\007 \001(\t\022\027\n\rinterruptible\030\010 \001(\010H\000" + + "\022\032\n\022cache_serializable\030\t \001(\010\022\026\n\016generate" + + "s_deck\030\n \001(\010\0223\n\004tags\030\013 \003(\0132%.flyteidl.co" + + "re.TaskMetadata.TagsEntry\022\031\n\021pod_templat" + + "e_name\030\014 \001(\t\022:\n\021resource_metadata\030\r \001(\0132" + + "\037.flyteidl.core.ResourceMetadata\032+\n\tTags" + + "Entry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001B\025\n" + + "\023interruptible_value\"\220\004\n\014TaskTemplate\022%\n" + + "\002id\030\001 \001(\0132\031.flyteidl.core.Identifier\022\014\n\004" + + "type\030\002 \001(\t\022-\n\010metadata\030\003 \001(\0132\033.flyteidl." + + "core.TaskMetadata\0220\n\tinterface\030\004 \001(\0132\035.f" + + "lyteidl.core.TypedInterface\022\'\n\006custom\030\005 " + + "\001(\0132\027.google.protobuf.Struct\022-\n\tcontaine" + + "r\030\006 \001(\0132\030.flyteidl.core.ContainerH\000\022(\n\007k" + + "8s_pod\030\021 \001(\0132\025.flyteidl.core.K8sPodH\000\022!\n" + + "\003sql\030\022 \001(\0132\022.flyteidl.core.SqlH\000\022\031\n\021task" + + "_type_version\030\007 \001(\005\0228\n\020security_context\030" + + "\010 \001(\0132\036.flyteidl.core.SecurityContext\0227\n" + + "\006config\030\020 \003(\0132\'.flyteidl.core.TaskTempla" + + "te.ConfigEntry\032-\n\013ConfigEntry\022\013\n\003key\030\001 \001" + + "(\t\022\r\n\005value\030\002 \001(\t:\0028\001B\010\n\006target\"\'\n\rConta" + + "inerPort\022\026\n\016container_port\030\001 \001(\r\"\255\003\n\tCon" + + "tainer\022\r\n\005image\030\001 \001(\t\022\017\n\007command\030\002 \003(\t\022\014" + + "\n\004args\030\003 \003(\t\022+\n\tresources\030\004 \001(\0132\030.flytei" + + "dl.core.Resources\022(\n\003env\030\005 \003(\0132\033.flyteid" + + "l.core.KeyValuePair\022/\n\006config\030\006 \003(\0132\033.fl" + + "yteidl.core.KeyValuePairB\002\030\001\022+\n\005ports\030\007 " + + "\003(\0132\034.flyteidl.core.ContainerPort\0225\n\013dat" + + "a_config\030\t \001(\0132 .flyteidl.core.DataLoadi" + + "ngConfig\022;\n\014architecture\030\n \001(\0162%.flyteid" + + "l.core.Container.Architecture\"I\n\014Archite" + + "cture\022\013\n\007UNKNOWN\020\000\022\t\n\005AMD64\020\001\022\t\n\005ARM64\020\002" + + "\022\n\n\006ARM_V6\020\003\022\n\n\006ARM_V7\020\004\"\233\002\n\nIOStrategy\022" + + "=\n\rdownload_mode\030\001 \001(\0162&.flyteidl.core.I" + + "OStrategy.DownloadMode\0229\n\013upload_mode\030\002 " + + "\001(\0162$.flyteidl.core.IOStrategy.UploadMod" + + "e\"L\n\014DownloadMode\022\022\n\016DOWNLOAD_EAGER\020\000\022\023\n" + + "\017DOWNLOAD_STREAM\020\001\022\023\n\017DO_NOT_DOWNLOAD\020\002\"" + + "E\n\nUploadMode\022\022\n\016UPLOAD_ON_EXIT\020\000\022\020\n\014UPL" + + "OAD_EAGER\020\001\022\021\n\rDO_NOT_UPLOAD\020\002\"\363\001\n\021DataL" + + "oadingConfig\022\017\n\007enabled\030\001 \001(\010\022\022\n\ninput_p" + + "ath\030\002 \001(\t\022\023\n\013output_path\030\003 \001(\t\022A\n\006format" + + "\030\004 \001(\01621.flyteidl.core.DataLoadingConfig" + + ".LiteralMapFormat\022.\n\013io_strategy\030\005 \001(\0132\031" + + ".flyteidl.core.IOStrategy\"1\n\020LiteralMapF" + + "ormat\022\010\n\004JSON\020\000\022\010\n\004YAML\020\001\022\t\n\005PROTO\020\002\"\236\001\n" + + "\006K8sPod\0222\n\010metadata\030\001 \001(\0132 .flyteidl.cor" + + "e.K8sObjectMetadata\022)\n\010pod_spec\030\002 \001(\0132\027." + + "google.protobuf.Struct\0225\n\013data_config\030\003 " + + "\001(\0132 .flyteidl.core.DataLoadingConfig\"\374\001" + + "\n\021K8sObjectMetadata\022<\n\006labels\030\001 \003(\0132,.fl" + + "yteidl.core.K8sObjectMetadata.LabelsEntr" + + "y\022F\n\013annotations\030\002 \003(\01321.flyteidl.core.K" + + "8sObjectMetadata.AnnotationsEntry\032-\n\013Lab" + + "elsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001" + + "\0322\n\020AnnotationsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005val" + + "ue\030\002 \001(\t:\0028\001\"~\n\003Sql\022\021\n\tstatement\030\001 \001(\t\022+" + + "\n\007dialect\030\002 \001(\0162\032.flyteidl.core.Sql.Dial" + + "ect\"7\n\007Dialect\022\r\n\tUNDEFINED\020\000\022\010\n\004ANSI\020\001\022" + + "\010\n\004HIVE\020\002\022\t\n\005OTHER\020\003B6Z4github.com/flyte" + + "org/flyteidl/gen/pb-go/flyteidl/coreb\006pr" + + "oto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { @@ -18789,12 +20632,24 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_RuntimeMetadata_descriptor, new java.lang.String[] { "Type", "Version", "Flavor", }); - internal_static_flyteidl_core_TaskMetadata_descriptor = + internal_static_flyteidl_core_GPUAccelerator_descriptor = getDescriptor().getMessageTypes().get(2); + internal_static_flyteidl_core_GPUAccelerator_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_flyteidl_core_GPUAccelerator_descriptor, + new java.lang.String[] { "Device", "Unpartitioned", "PartitionSize", "PartitionSizeValue", }); + internal_static_flyteidl_core_ResourceMetadata_descriptor = + getDescriptor().getMessageTypes().get(3); + internal_static_flyteidl_core_ResourceMetadata_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_flyteidl_core_ResourceMetadata_descriptor, + new java.lang.String[] { "GpuAccelerator", "AcceleratorValue", }); + internal_static_flyteidl_core_TaskMetadata_descriptor = + getDescriptor().getMessageTypes().get(4); internal_static_flyteidl_core_TaskMetadata_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_TaskMetadata_descriptor, - new java.lang.String[] { "Discoverable", "Runtime", "Timeout", "Retries", "DiscoveryVersion", "DeprecatedErrorMessage", "Interruptible", "CacheSerializable", "GeneratesDeck", "Tags", "PodTemplateName", "InterruptibleValue", }); + new java.lang.String[] { "Discoverable", "Runtime", "Timeout", "Retries", "DiscoveryVersion", "DeprecatedErrorMessage", "Interruptible", "CacheSerializable", "GeneratesDeck", "Tags", "PodTemplateName", "ResourceMetadata", "InterruptibleValue", }); internal_static_flyteidl_core_TaskMetadata_TagsEntry_descriptor = internal_static_flyteidl_core_TaskMetadata_descriptor.getNestedTypes().get(0); internal_static_flyteidl_core_TaskMetadata_TagsEntry_fieldAccessorTable = new @@ -18802,7 +20657,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_core_TaskMetadata_TagsEntry_descriptor, new java.lang.String[] { "Key", "Value", }); internal_static_flyteidl_core_TaskTemplate_descriptor = - getDescriptor().getMessageTypes().get(3); + getDescriptor().getMessageTypes().get(5); internal_static_flyteidl_core_TaskTemplate_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_TaskTemplate_descriptor, @@ -18814,37 +20669,37 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_core_TaskTemplate_ConfigEntry_descriptor, new java.lang.String[] { "Key", "Value", }); internal_static_flyteidl_core_ContainerPort_descriptor = - getDescriptor().getMessageTypes().get(4); + getDescriptor().getMessageTypes().get(6); internal_static_flyteidl_core_ContainerPort_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_ContainerPort_descriptor, new java.lang.String[] { "ContainerPort", }); internal_static_flyteidl_core_Container_descriptor = - getDescriptor().getMessageTypes().get(5); + getDescriptor().getMessageTypes().get(7); internal_static_flyteidl_core_Container_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_Container_descriptor, new java.lang.String[] { "Image", "Command", "Args", "Resources", "Env", "Config", "Ports", "DataConfig", "Architecture", }); internal_static_flyteidl_core_IOStrategy_descriptor = - getDescriptor().getMessageTypes().get(6); + getDescriptor().getMessageTypes().get(8); internal_static_flyteidl_core_IOStrategy_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_IOStrategy_descriptor, new java.lang.String[] { "DownloadMode", "UploadMode", }); internal_static_flyteidl_core_DataLoadingConfig_descriptor = - getDescriptor().getMessageTypes().get(7); + getDescriptor().getMessageTypes().get(9); internal_static_flyteidl_core_DataLoadingConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_DataLoadingConfig_descriptor, new java.lang.String[] { "Enabled", "InputPath", "OutputPath", "Format", "IoStrategy", }); internal_static_flyteidl_core_K8sPod_descriptor = - getDescriptor().getMessageTypes().get(8); + getDescriptor().getMessageTypes().get(10); internal_static_flyteidl_core_K8sPod_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_K8sPod_descriptor, new java.lang.String[] { "Metadata", "PodSpec", "DataConfig", }); internal_static_flyteidl_core_K8sObjectMetadata_descriptor = - getDescriptor().getMessageTypes().get(9); + getDescriptor().getMessageTypes().get(11); internal_static_flyteidl_core_K8sObjectMetadata_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_K8sObjectMetadata_descriptor, @@ -18862,7 +20717,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_core_K8sObjectMetadata_AnnotationsEntry_descriptor, new java.lang.String[] { "Key", "Value", }); internal_static_flyteidl_core_Sql_descriptor = - getDescriptor().getMessageTypes().get(10); + getDescriptor().getMessageTypes().get(12); internal_static_flyteidl_core_Sql_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_Sql_descriptor, diff --git a/gen/pb-java/flyteidl/core/Workflow.java b/gen/pb-java/flyteidl/core/Workflow.java index 9d7cf7e7d..b0b6f79d9 100644 --- a/gen/pb-java/flyteidl/core/Workflow.java +++ b/gen/pb-java/flyteidl/core/Workflow.java @@ -20389,6 +20389,31 @@ public interface TaskNodeOverridesOrBuilder extends * .flyteidl.core.Resources resources = 1; */ flyteidl.core.Tasks.ResourcesOrBuilder getResourcesOrBuilder(); + + /** + *
+     * Additional metadata associated with resources to allocate to this task
+     * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + boolean hasResourceMetadata(); + /** + *
+     * Additional metadata associated with resources to allocate to this task
+     * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + flyteidl.core.Tasks.ResourceMetadata getResourceMetadata(); + /** + *
+     * Additional metadata associated with resources to allocate to this task
+     * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + flyteidl.core.Tasks.ResourceMetadataOrBuilder getResourceMetadataOrBuilder(); } /** *
@@ -20446,6 +20471,19 @@ private TaskNodeOverrides(
 
               break;
             }
+            case 18: {
+              flyteidl.core.Tasks.ResourceMetadata.Builder subBuilder = null;
+              if (resourceMetadata_ != null) {
+                subBuilder = resourceMetadata_.toBuilder();
+              }
+              resourceMetadata_ = input.readMessage(flyteidl.core.Tasks.ResourceMetadata.parser(), extensionRegistry);
+              if (subBuilder != null) {
+                subBuilder.mergeFrom(resourceMetadata_);
+                resourceMetadata_ = subBuilder.buildPartial();
+              }
+
+              break;
+            }
             default: {
               if (!parseUnknownField(
                   input, unknownFields, extensionRegistry, tag)) {
@@ -20511,6 +20549,39 @@ public flyteidl.core.Tasks.ResourcesOrBuilder getResourcesOrBuilder() {
       return getResources();
     }
 
+    public static final int RESOURCE_METADATA_FIELD_NUMBER = 2;
+    private flyteidl.core.Tasks.ResourceMetadata resourceMetadata_;
+    /**
+     * 
+     * Additional metadata associated with resources to allocate to this task
+     * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + public boolean hasResourceMetadata() { + return resourceMetadata_ != null; + } + /** + *
+     * Additional metadata associated with resources to allocate to this task
+     * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + public flyteidl.core.Tasks.ResourceMetadata getResourceMetadata() { + return resourceMetadata_ == null ? flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance() : resourceMetadata_; + } + /** + *
+     * Additional metadata associated with resources to allocate to this task
+     * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + public flyteidl.core.Tasks.ResourceMetadataOrBuilder getResourceMetadataOrBuilder() { + return getResourceMetadata(); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -20528,6 +20599,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (resources_ != null) { output.writeMessage(1, getResources()); } + if (resourceMetadata_ != null) { + output.writeMessage(2, getResourceMetadata()); + } unknownFields.writeTo(output); } @@ -20541,6 +20615,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getResources()); } + if (resourceMetadata_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, getResourceMetadata()); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -20561,6 +20639,11 @@ public boolean equals(final java.lang.Object obj) { if (!getResources() .equals(other.getResources())) return false; } + if (hasResourceMetadata() != other.hasResourceMetadata()) return false; + if (hasResourceMetadata()) { + if (!getResourceMetadata() + .equals(other.getResourceMetadata())) return false; + } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -20576,6 +20659,10 @@ public int hashCode() { hash = (37 * hash) + RESOURCES_FIELD_NUMBER; hash = (53 * hash) + getResources().hashCode(); } + if (hasResourceMetadata()) { + hash = (37 * hash) + RESOURCE_METADATA_FIELD_NUMBER; + hash = (53 * hash) + getResourceMetadata().hashCode(); + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -20719,6 +20806,12 @@ public Builder clear() { resources_ = null; resourcesBuilder_ = null; } + if (resourceMetadataBuilder_ == null) { + resourceMetadata_ = null; + } else { + resourceMetadata_ = null; + resourceMetadataBuilder_ = null; + } return this; } @@ -20750,6 +20843,11 @@ public flyteidl.core.Workflow.TaskNodeOverrides buildPartial() { } else { result.resources_ = resourcesBuilder_.build(); } + if (resourceMetadataBuilder_ == null) { + result.resourceMetadata_ = resourceMetadata_; + } else { + result.resourceMetadata_ = resourceMetadataBuilder_.build(); + } onBuilt(); return result; } @@ -20801,6 +20899,9 @@ public Builder mergeFrom(flyteidl.core.Workflow.TaskNodeOverrides other) { if (other.hasResources()) { mergeResources(other.getResources()); } + if (other.hasResourceMetadata()) { + mergeResourceMetadata(other.getResourceMetadata()); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -20982,6 +21083,159 @@ public flyteidl.core.Tasks.ResourcesOrBuilder getResourcesOrBuilder() { } return resourcesBuilder_; } + + private flyteidl.core.Tasks.ResourceMetadata resourceMetadata_; + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Tasks.ResourceMetadata, flyteidl.core.Tasks.ResourceMetadata.Builder, flyteidl.core.Tasks.ResourceMetadataOrBuilder> resourceMetadataBuilder_; + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + public boolean hasResourceMetadata() { + return resourceMetadataBuilder_ != null || resourceMetadata_ != null; + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + public flyteidl.core.Tasks.ResourceMetadata getResourceMetadata() { + if (resourceMetadataBuilder_ == null) { + return resourceMetadata_ == null ? flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance() : resourceMetadata_; + } else { + return resourceMetadataBuilder_.getMessage(); + } + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + public Builder setResourceMetadata(flyteidl.core.Tasks.ResourceMetadata value) { + if (resourceMetadataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + resourceMetadata_ = value; + onChanged(); + } else { + resourceMetadataBuilder_.setMessage(value); + } + + return this; + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + public Builder setResourceMetadata( + flyteidl.core.Tasks.ResourceMetadata.Builder builderForValue) { + if (resourceMetadataBuilder_ == null) { + resourceMetadata_ = builderForValue.build(); + onChanged(); + } else { + resourceMetadataBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + public Builder mergeResourceMetadata(flyteidl.core.Tasks.ResourceMetadata value) { + if (resourceMetadataBuilder_ == null) { + if (resourceMetadata_ != null) { + resourceMetadata_ = + flyteidl.core.Tasks.ResourceMetadata.newBuilder(resourceMetadata_).mergeFrom(value).buildPartial(); + } else { + resourceMetadata_ = value; + } + onChanged(); + } else { + resourceMetadataBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + public Builder clearResourceMetadata() { + if (resourceMetadataBuilder_ == null) { + resourceMetadata_ = null; + onChanged(); + } else { + resourceMetadata_ = null; + resourceMetadataBuilder_ = null; + } + + return this; + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + public flyteidl.core.Tasks.ResourceMetadata.Builder getResourceMetadataBuilder() { + + onChanged(); + return getResourceMetadataFieldBuilder().getBuilder(); + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + public flyteidl.core.Tasks.ResourceMetadataOrBuilder getResourceMetadataOrBuilder() { + if (resourceMetadataBuilder_ != null) { + return resourceMetadataBuilder_.getMessageOrBuilder(); + } else { + return resourceMetadata_ == null ? + flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance() : resourceMetadata_; + } + } + /** + *
+       * Additional metadata associated with resources to allocate to this task
+       * 
+ * + * .flyteidl.core.ResourceMetadata resource_metadata = 2; + */ + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Tasks.ResourceMetadata, flyteidl.core.Tasks.ResourceMetadata.Builder, flyteidl.core.Tasks.ResourceMetadataOrBuilder> + getResourceMetadataFieldBuilder() { + if (resourceMetadataBuilder_ == null) { + resourceMetadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Tasks.ResourceMetadata, flyteidl.core.Tasks.ResourceMetadata.Builder, flyteidl.core.Tasks.ResourceMetadataOrBuilder>( + getResourceMetadata(), + getParentForChildren(), + isClean()); + resourceMetadata_ = null; + } + return resourceMetadataBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -21205,10 +21459,11 @@ public flyteidl.core.Workflow.TaskNodeOverrides getDefaultInstanceForType() { "re.Binding\022)\n\014failure_node\030\006 \001(\0132\023.flyte" + "idl.core.Node\022B\n\021metadata_defaults\030\007 \001(\013" + "2\'.flyteidl.core.WorkflowMetadataDefault" + - "s\"@\n\021TaskNodeOverrides\022+\n\tresources\030\001 \001(" + - "\0132\030.flyteidl.core.ResourcesB6Z4github.co" + - "m/flyteorg/flyteidl/gen/pb-go/flyteidl/c" + - "oreb\006proto3" + "s\"|\n\021TaskNodeOverrides\022+\n\tresources\030\001 \001(" + + "\0132\030.flyteidl.core.Resources\022:\n\021resource_" + + "metadata\030\002 \001(\0132\037.flyteidl.core.ResourceM" + + "etadataB6Z4github.com/flyteorg/flyteidl/" + + "gen/pb-go/flyteidl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { @@ -21338,7 +21593,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_core_TaskNodeOverrides_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_TaskNodeOverrides_descriptor, - new java.lang.String[] { "Resources", }); + new java.lang.String[] { "Resources", "ResourceMetadata", }); flyteidl.core.Condition.getDescriptor(); flyteidl.core.Execution.getDescriptor(); flyteidl.core.IdentifierOuterClass.getDescriptor(); diff --git a/gen/pb-js/flyteidl.d.ts b/gen/pb-js/flyteidl.d.ts index 7744acd5d..8786c585e 100644 --- a/gen/pb-js/flyteidl.d.ts +++ b/gen/pb-js/flyteidl.d.ts @@ -1886,6 +1886,9 @@ export namespace flyteidl { /** TaskNodeOverrides resources */ resources?: (flyteidl.core.IResources|null); + + /** TaskNodeOverrides resourceMetadata */ + resourceMetadata?: (flyteidl.core.IResourceMetadata|null); } /** Represents a TaskNodeOverrides. */ @@ -1900,6 +1903,9 @@ export namespace flyteidl { /** TaskNodeOverrides resources. */ public resources?: (flyteidl.core.IResources|null); + /** TaskNodeOverrides resourceMetadata. */ + public resourceMetadata?: (flyteidl.core.IResourceMetadata|null); + /** * Creates a new TaskNodeOverrides instance using the specified properties. * @param [properties] Properties to set @@ -5157,6 +5163,128 @@ export namespace flyteidl { } } + /** Properties of a GPUAccelerator. */ + interface IGPUAccelerator { + + /** GPUAccelerator device */ + device?: (string|null); + + /** GPUAccelerator unpartitioned */ + unpartitioned?: (boolean|null); + + /** GPUAccelerator partitionSize */ + partitionSize?: (string|null); + } + + /** Represents a GPUAccelerator. */ + class GPUAccelerator implements IGPUAccelerator { + + /** + * Constructs a new GPUAccelerator. + * @param [properties] Properties to set + */ + constructor(properties?: flyteidl.core.IGPUAccelerator); + + /** GPUAccelerator device. */ + public device: string; + + /** GPUAccelerator unpartitioned. */ + public unpartitioned: boolean; + + /** GPUAccelerator partitionSize. */ + public partitionSize: string; + + /** GPUAccelerator partitionSizeValue. */ + public partitionSizeValue?: ("unpartitioned"|"partitionSize"); + + /** + * Creates a new GPUAccelerator instance using the specified properties. + * @param [properties] Properties to set + * @returns GPUAccelerator instance + */ + public static create(properties?: flyteidl.core.IGPUAccelerator): flyteidl.core.GPUAccelerator; + + /** + * Encodes the specified GPUAccelerator message. Does not implicitly {@link flyteidl.core.GPUAccelerator.verify|verify} messages. + * @param message GPUAccelerator message or plain object to encode + * @param [writer] Writer to encode to + * @returns Writer + */ + public static encode(message: flyteidl.core.IGPUAccelerator, writer?: $protobuf.Writer): $protobuf.Writer; + + /** + * Decodes a GPUAccelerator message from the specified reader or buffer. + * @param reader Reader or buffer to decode from + * @param [length] Message length if known beforehand + * @returns GPUAccelerator + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.GPUAccelerator; + + /** + * Verifies a GPUAccelerator message. + * @param message Plain object to verify + * @returns `null` if valid, otherwise the reason why it is not + */ + public static verify(message: { [k: string]: any }): (string|null); + } + + /** Properties of a ResourceMetadata. */ + interface IResourceMetadata { + + /** ResourceMetadata gpuAccelerator */ + gpuAccelerator?: (flyteidl.core.IGPUAccelerator|null); + } + + /** Represents a ResourceMetadata. */ + class ResourceMetadata implements IResourceMetadata { + + /** + * Constructs a new ResourceMetadata. + * @param [properties] Properties to set + */ + constructor(properties?: flyteidl.core.IResourceMetadata); + + /** ResourceMetadata gpuAccelerator. */ + public gpuAccelerator?: (flyteidl.core.IGPUAccelerator|null); + + /** ResourceMetadata acceleratorValue. */ + public acceleratorValue?: "gpuAccelerator"; + + /** + * Creates a new ResourceMetadata instance using the specified properties. + * @param [properties] Properties to set + * @returns ResourceMetadata instance + */ + public static create(properties?: flyteidl.core.IResourceMetadata): flyteidl.core.ResourceMetadata; + + /** + * Encodes the specified ResourceMetadata message. Does not implicitly {@link flyteidl.core.ResourceMetadata.verify|verify} messages. + * @param message ResourceMetadata message or plain object to encode + * @param [writer] Writer to encode to + * @returns Writer + */ + public static encode(message: flyteidl.core.IResourceMetadata, writer?: $protobuf.Writer): $protobuf.Writer; + + /** + * Decodes a ResourceMetadata message from the specified reader or buffer. + * @param reader Reader or buffer to decode from + * @param [length] Message length if known beforehand + * @returns ResourceMetadata + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ResourceMetadata; + + /** + * Verifies a ResourceMetadata message. + * @param message Plain object to verify + * @returns `null` if valid, otherwise the reason why it is not + */ + public static verify(message: { [k: string]: any }): (string|null); + } + /** Properties of a TaskMetadata. */ interface ITaskMetadata { @@ -5192,6 +5320,9 @@ export namespace flyteidl { /** TaskMetadata podTemplateName */ podTemplateName?: (string|null); + + /** TaskMetadata resourceMetadata */ + resourceMetadata?: (flyteidl.core.IResourceMetadata|null); } /** Represents a TaskMetadata. */ @@ -5236,6 +5367,9 @@ export namespace flyteidl { /** TaskMetadata podTemplateName. */ public podTemplateName: string; + /** TaskMetadata resourceMetadata. */ + public resourceMetadata?: (flyteidl.core.IResourceMetadata|null); + /** TaskMetadata interruptibleValue. */ public interruptibleValue?: "interruptible"; diff --git a/gen/pb-js/flyteidl.js b/gen/pb-js/flyteidl.js index 6a2ae8c72..a30c0b3e5 100644 --- a/gen/pb-js/flyteidl.js +++ b/gen/pb-js/flyteidl.js @@ -4570,6 +4570,7 @@ * @memberof flyteidl.core * @interface ITaskNodeOverrides * @property {flyteidl.core.IResources|null} [resources] TaskNodeOverrides resources + * @property {flyteidl.core.IResourceMetadata|null} [resourceMetadata] TaskNodeOverrides resourceMetadata */ /** @@ -4595,6 +4596,14 @@ */ TaskNodeOverrides.prototype.resources = null; + /** + * TaskNodeOverrides resourceMetadata. + * @member {flyteidl.core.IResourceMetadata|null|undefined} resourceMetadata + * @memberof flyteidl.core.TaskNodeOverrides + * @instance + */ + TaskNodeOverrides.prototype.resourceMetadata = null; + /** * Creates a new TaskNodeOverrides instance using the specified properties. * @function create @@ -4621,6 +4630,8 @@ writer = $Writer.create(); if (message.resources != null && message.hasOwnProperty("resources")) $root.flyteidl.core.Resources.encode(message.resources, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); + if (message.resourceMetadata != null && message.hasOwnProperty("resourceMetadata")) + $root.flyteidl.core.ResourceMetadata.encode(message.resourceMetadata, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); return writer; }; @@ -4645,6 +4656,9 @@ case 1: message.resources = $root.flyteidl.core.Resources.decode(reader, reader.uint32()); break; + case 2: + message.resourceMetadata = $root.flyteidl.core.ResourceMetadata.decode(reader, reader.uint32()); + break; default: reader.skipType(tag & 7); break; @@ -4669,6 +4683,11 @@ if (error) return "resources." + error; } + if (message.resourceMetadata != null && message.hasOwnProperty("resourceMetadata")) { + var error = $root.flyteidl.core.ResourceMetadata.verify(message.resourceMetadata); + if (error) + return "resourceMetadata." + error; + } return null; }; @@ -12264,6 +12283,301 @@ return RuntimeMetadata; })(); + core.GPUAccelerator = (function() { + + /** + * Properties of a GPUAccelerator. + * @memberof flyteidl.core + * @interface IGPUAccelerator + * @property {string|null} [device] GPUAccelerator device + * @property {boolean|null} [unpartitioned] GPUAccelerator unpartitioned + * @property {string|null} [partitionSize] GPUAccelerator partitionSize + */ + + /** + * Constructs a new GPUAccelerator. + * @memberof flyteidl.core + * @classdesc Represents a GPUAccelerator. + * @implements IGPUAccelerator + * @constructor + * @param {flyteidl.core.IGPUAccelerator=} [properties] Properties to set + */ + function GPUAccelerator(properties) { + if (properties) + for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) + if (properties[keys[i]] != null) + this[keys[i]] = properties[keys[i]]; + } + + /** + * GPUAccelerator device. + * @member {string} device + * @memberof flyteidl.core.GPUAccelerator + * @instance + */ + GPUAccelerator.prototype.device = ""; + + /** + * GPUAccelerator unpartitioned. + * @member {boolean} unpartitioned + * @memberof flyteidl.core.GPUAccelerator + * @instance + */ + GPUAccelerator.prototype.unpartitioned = false; + + /** + * GPUAccelerator partitionSize. + * @member {string} partitionSize + * @memberof flyteidl.core.GPUAccelerator + * @instance + */ + GPUAccelerator.prototype.partitionSize = ""; + + // OneOf field names bound to virtual getters and setters + var $oneOfFields; + + /** + * GPUAccelerator partitionSizeValue. + * @member {"unpartitioned"|"partitionSize"|undefined} partitionSizeValue + * @memberof flyteidl.core.GPUAccelerator + * @instance + */ + Object.defineProperty(GPUAccelerator.prototype, "partitionSizeValue", { + get: $util.oneOfGetter($oneOfFields = ["unpartitioned", "partitionSize"]), + set: $util.oneOfSetter($oneOfFields) + }); + + /** + * Creates a new GPUAccelerator instance using the specified properties. + * @function create + * @memberof flyteidl.core.GPUAccelerator + * @static + * @param {flyteidl.core.IGPUAccelerator=} [properties] Properties to set + * @returns {flyteidl.core.GPUAccelerator} GPUAccelerator instance + */ + GPUAccelerator.create = function create(properties) { + return new GPUAccelerator(properties); + }; + + /** + * Encodes the specified GPUAccelerator message. Does not implicitly {@link flyteidl.core.GPUAccelerator.verify|verify} messages. + * @function encode + * @memberof flyteidl.core.GPUAccelerator + * @static + * @param {flyteidl.core.IGPUAccelerator} message GPUAccelerator message or plain object to encode + * @param {$protobuf.Writer} [writer] Writer to encode to + * @returns {$protobuf.Writer} Writer + */ + GPUAccelerator.encode = function encode(message, writer) { + if (!writer) + writer = $Writer.create(); + if (message.device != null && message.hasOwnProperty("device")) + writer.uint32(/* id 1, wireType 2 =*/10).string(message.device); + if (message.unpartitioned != null && message.hasOwnProperty("unpartitioned")) + writer.uint32(/* id 2, wireType 0 =*/16).bool(message.unpartitioned); + if (message.partitionSize != null && message.hasOwnProperty("partitionSize")) + writer.uint32(/* id 3, wireType 2 =*/26).string(message.partitionSize); + return writer; + }; + + /** + * Decodes a GPUAccelerator message from the specified reader or buffer. + * @function decode + * @memberof flyteidl.core.GPUAccelerator + * @static + * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from + * @param {number} [length] Message length if known beforehand + * @returns {flyteidl.core.GPUAccelerator} GPUAccelerator + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + GPUAccelerator.decode = function decode(reader, length) { + if (!(reader instanceof $Reader)) + reader = $Reader.create(reader); + var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.GPUAccelerator(); + while (reader.pos < end) { + var tag = reader.uint32(); + switch (tag >>> 3) { + case 1: + message.device = reader.string(); + break; + case 2: + message.unpartitioned = reader.bool(); + break; + case 3: + message.partitionSize = reader.string(); + break; + default: + reader.skipType(tag & 7); + break; + } + } + return message; + }; + + /** + * Verifies a GPUAccelerator message. + * @function verify + * @memberof flyteidl.core.GPUAccelerator + * @static + * @param {Object.} message Plain object to verify + * @returns {string|null} `null` if valid, otherwise the reason why it is not + */ + GPUAccelerator.verify = function verify(message) { + if (typeof message !== "object" || message === null) + return "object expected"; + var properties = {}; + if (message.device != null && message.hasOwnProperty("device")) + if (!$util.isString(message.device)) + return "device: string expected"; + if (message.unpartitioned != null && message.hasOwnProperty("unpartitioned")) { + properties.partitionSizeValue = 1; + if (typeof message.unpartitioned !== "boolean") + return "unpartitioned: boolean expected"; + } + if (message.partitionSize != null && message.hasOwnProperty("partitionSize")) { + if (properties.partitionSizeValue === 1) + return "partitionSizeValue: multiple values"; + properties.partitionSizeValue = 1; + if (!$util.isString(message.partitionSize)) + return "partitionSize: string expected"; + } + return null; + }; + + return GPUAccelerator; + })(); + + core.ResourceMetadata = (function() { + + /** + * Properties of a ResourceMetadata. + * @memberof flyteidl.core + * @interface IResourceMetadata + * @property {flyteidl.core.IGPUAccelerator|null} [gpuAccelerator] ResourceMetadata gpuAccelerator + */ + + /** + * Constructs a new ResourceMetadata. + * @memberof flyteidl.core + * @classdesc Represents a ResourceMetadata. + * @implements IResourceMetadata + * @constructor + * @param {flyteidl.core.IResourceMetadata=} [properties] Properties to set + */ + function ResourceMetadata(properties) { + if (properties) + for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) + if (properties[keys[i]] != null) + this[keys[i]] = properties[keys[i]]; + } + + /** + * ResourceMetadata gpuAccelerator. + * @member {flyteidl.core.IGPUAccelerator|null|undefined} gpuAccelerator + * @memberof flyteidl.core.ResourceMetadata + * @instance + */ + ResourceMetadata.prototype.gpuAccelerator = null; + + // OneOf field names bound to virtual getters and setters + var $oneOfFields; + + /** + * ResourceMetadata acceleratorValue. + * @member {"gpuAccelerator"|undefined} acceleratorValue + * @memberof flyteidl.core.ResourceMetadata + * @instance + */ + Object.defineProperty(ResourceMetadata.prototype, "acceleratorValue", { + get: $util.oneOfGetter($oneOfFields = ["gpuAccelerator"]), + set: $util.oneOfSetter($oneOfFields) + }); + + /** + * Creates a new ResourceMetadata instance using the specified properties. + * @function create + * @memberof flyteidl.core.ResourceMetadata + * @static + * @param {flyteidl.core.IResourceMetadata=} [properties] Properties to set + * @returns {flyteidl.core.ResourceMetadata} ResourceMetadata instance + */ + ResourceMetadata.create = function create(properties) { + return new ResourceMetadata(properties); + }; + + /** + * Encodes the specified ResourceMetadata message. Does not implicitly {@link flyteidl.core.ResourceMetadata.verify|verify} messages. + * @function encode + * @memberof flyteidl.core.ResourceMetadata + * @static + * @param {flyteidl.core.IResourceMetadata} message ResourceMetadata message or plain object to encode + * @param {$protobuf.Writer} [writer] Writer to encode to + * @returns {$protobuf.Writer} Writer + */ + ResourceMetadata.encode = function encode(message, writer) { + if (!writer) + writer = $Writer.create(); + if (message.gpuAccelerator != null && message.hasOwnProperty("gpuAccelerator")) + $root.flyteidl.core.GPUAccelerator.encode(message.gpuAccelerator, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); + return writer; + }; + + /** + * Decodes a ResourceMetadata message from the specified reader or buffer. + * @function decode + * @memberof flyteidl.core.ResourceMetadata + * @static + * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from + * @param {number} [length] Message length if known beforehand + * @returns {flyteidl.core.ResourceMetadata} ResourceMetadata + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + ResourceMetadata.decode = function decode(reader, length) { + if (!(reader instanceof $Reader)) + reader = $Reader.create(reader); + var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ResourceMetadata(); + while (reader.pos < end) { + var tag = reader.uint32(); + switch (tag >>> 3) { + case 1: + message.gpuAccelerator = $root.flyteidl.core.GPUAccelerator.decode(reader, reader.uint32()); + break; + default: + reader.skipType(tag & 7); + break; + } + } + return message; + }; + + /** + * Verifies a ResourceMetadata message. + * @function verify + * @memberof flyteidl.core.ResourceMetadata + * @static + * @param {Object.} message Plain object to verify + * @returns {string|null} `null` if valid, otherwise the reason why it is not + */ + ResourceMetadata.verify = function verify(message) { + if (typeof message !== "object" || message === null) + return "object expected"; + var properties = {}; + if (message.gpuAccelerator != null && message.hasOwnProperty("gpuAccelerator")) { + properties.acceleratorValue = 1; + { + var error = $root.flyteidl.core.GPUAccelerator.verify(message.gpuAccelerator); + if (error) + return "gpuAccelerator." + error; + } + } + return null; + }; + + return ResourceMetadata; + })(); + core.TaskMetadata = (function() { /** @@ -12281,6 +12595,7 @@ * @property {boolean|null} [generatesDeck] TaskMetadata generatesDeck * @property {Object.|null} [tags] TaskMetadata tags * @property {string|null} [podTemplateName] TaskMetadata podTemplateName + * @property {flyteidl.core.IResourceMetadata|null} [resourceMetadata] TaskMetadata resourceMetadata */ /** @@ -12387,6 +12702,14 @@ */ TaskMetadata.prototype.podTemplateName = ""; + /** + * TaskMetadata resourceMetadata. + * @member {flyteidl.core.IResourceMetadata|null|undefined} resourceMetadata + * @memberof flyteidl.core.TaskMetadata + * @instance + */ + TaskMetadata.prototype.resourceMetadata = null; + // OneOf field names bound to virtual getters and setters var $oneOfFields; @@ -12448,6 +12771,8 @@ writer.uint32(/* id 11, wireType 2 =*/90).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.tags[keys[i]]).ldelim(); if (message.podTemplateName != null && message.hasOwnProperty("podTemplateName")) writer.uint32(/* id 12, wireType 2 =*/98).string(message.podTemplateName); + if (message.resourceMetadata != null && message.hasOwnProperty("resourceMetadata")) + $root.flyteidl.core.ResourceMetadata.encode(message.resourceMetadata, writer.uint32(/* id 13, wireType 2 =*/106).fork()).ldelim(); return writer; }; @@ -12507,6 +12832,9 @@ case 12: message.podTemplateName = reader.string(); break; + case 13: + message.resourceMetadata = $root.flyteidl.core.ResourceMetadata.decode(reader, reader.uint32()); + break; default: reader.skipType(tag & 7); break; @@ -12573,6 +12901,11 @@ if (message.podTemplateName != null && message.hasOwnProperty("podTemplateName")) if (!$util.isString(message.podTemplateName)) return "podTemplateName: string expected"; + if (message.resourceMetadata != null && message.hasOwnProperty("resourceMetadata")) { + var error = $root.flyteidl.core.ResourceMetadata.verify(message.resourceMetadata); + if (error) + return "resourceMetadata." + error; + } return null; }; diff --git a/gen/pb_python/flyteidl/core/tasks_pb2.py b/gen/pb_python/flyteidl/core/tasks_pb2.py index fcafa0a32..f1c09cd7d 100644 --- a/gen/pb_python/flyteidl/core/tasks_pb2.py +++ b/gen/pb_python/flyteidl/core/tasks_pb2.py @@ -19,7 +19,7 @@ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19\x66lyteidl/core/tasks.proto\x12\rflyteidl.core\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xd0\x02\n\tResources\x12\x42\n\x08requests\x18\x01 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntryR\x08requests\x12>\n\x06limits\x18\x02 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntryR\x06limits\x1a`\n\rResourceEntry\x12\x39\n\x04name\x18\x01 \x01(\x0e\x32%.flyteidl.core.Resources.ResourceNameR\x04name\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\"]\n\x0cResourceName\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x07\n\x03\x43PU\x10\x01\x12\x07\n\x03GPU\x10\x02\x12\n\n\x06MEMORY\x10\x03\x12\x0b\n\x07STORAGE\x10\x04\x12\x15\n\x11\x45PHEMERAL_STORAGE\x10\x05\"\xac\x01\n\x0fRuntimeMetadata\x12>\n\x04type\x18\x01 \x01(\x0e\x32*.flyteidl.core.RuntimeMetadata.RuntimeTypeR\x04type\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12\x16\n\x06\x66lavor\x18\x03 \x01(\tR\x06\x66lavor\"\'\n\x0bRuntimeType\x12\t\n\x05OTHER\x10\x00\x12\r\n\tFLYTE_SDK\x10\x01\"\xf5\x04\n\x0cTaskMetadata\x12\"\n\x0c\x64iscoverable\x18\x01 \x01(\x08R\x0c\x64iscoverable\x12\x38\n\x07runtime\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.RuntimeMetadataR\x07runtime\x12\x33\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x07timeout\x12\x36\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategyR\x07retries\x12+\n\x11\x64iscovery_version\x18\x06 \x01(\tR\x10\x64iscoveryVersion\x12\x38\n\x18\x64\x65precated_error_message\x18\x07 \x01(\tR\x16\x64\x65precatedErrorMessage\x12&\n\rinterruptible\x18\x08 \x01(\x08H\x00R\rinterruptible\x12-\n\x12\x63\x61\x63he_serializable\x18\t \x01(\x08R\x11\x63\x61\x63heSerializable\x12%\n\x0egenerates_deck\x18\n \x01(\x08R\rgeneratesDeck\x12\x39\n\x04tags\x18\x0b \x03(\x0b\x32%.flyteidl.core.TaskMetadata.TagsEntryR\x04tags\x12*\n\x11pod_template_name\x18\x0c \x01(\tR\x0fpodTemplateName\x1a\x37\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x15\n\x13interruptible_value\"\x85\x05\n\x0cTaskTemplate\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x12\n\x04type\x18\x02 \x01(\tR\x04type\x12\x37\n\x08metadata\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.TaskMetadataR\x08metadata\x12;\n\tinterface\x18\x04 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterfaceR\tinterface\x12/\n\x06\x63ustom\x18\x05 \x01(\x0b\x32\x17.google.protobuf.StructR\x06\x63ustom\x12\x38\n\tcontainer\x18\x06 \x01(\x0b\x32\x18.flyteidl.core.ContainerH\x00R\tcontainer\x12\x30\n\x07k8s_pod\x18\x11 \x01(\x0b\x32\x15.flyteidl.core.K8sPodH\x00R\x06k8sPod\x12&\n\x03sql\x18\x12 \x01(\x0b\x32\x12.flyteidl.core.SqlH\x00R\x03sql\x12*\n\x11task_type_version\x18\x07 \x01(\x05R\x0ftaskTypeVersion\x12I\n\x10security_context\x18\x08 \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12?\n\x06\x63onfig\x18\x10 \x03(\x0b\x32\'.flyteidl.core.TaskTemplate.ConfigEntryR\x06\x63onfig\x1a\x39\n\x0b\x43onfigEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x08\n\x06target\"6\n\rContainerPort\x12%\n\x0e\x63ontainer_port\x18\x01 \x01(\rR\rcontainerPort\"\xfc\x03\n\tContainer\x12\x14\n\x05image\x18\x01 \x01(\tR\x05image\x12\x18\n\x07\x63ommand\x18\x02 \x03(\tR\x07\x63ommand\x12\x12\n\x04\x61rgs\x18\x03 \x03(\tR\x04\x61rgs\x12\x36\n\tresources\x18\x04 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12-\n\x03\x65nv\x18\x05 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairR\x03\x65nv\x12\x37\n\x06\x63onfig\x18\x06 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairB\x02\x18\x01R\x06\x63onfig\x12\x32\n\x05ports\x18\x07 \x03(\x0b\x32\x1c.flyteidl.core.ContainerPortR\x05ports\x12\x41\n\x0b\x64\x61ta_config\x18\t \x01(\x0b\x32 .flyteidl.core.DataLoadingConfigR\ndataConfig\x12I\n\x0c\x61rchitecture\x18\n \x01(\x0e\x32%.flyteidl.core.Container.ArchitectureR\x0c\x61rchitecture\"I\n\x0c\x41rchitecture\x12\x0b\n\x07UNKNOWN\x10\x00\x12\t\n\x05\x41MD64\x10\x01\x12\t\n\x05\x41RM64\x10\x02\x12\n\n\x06\x41RM_V6\x10\x03\x12\n\n\x06\x41RM_V7\x10\x04\"\xb5\x02\n\nIOStrategy\x12K\n\rdownload_mode\x18\x01 \x01(\x0e\x32&.flyteidl.core.IOStrategy.DownloadModeR\x0c\x64ownloadMode\x12\x45\n\x0bupload_mode\x18\x02 \x01(\x0e\x32$.flyteidl.core.IOStrategy.UploadModeR\nuploadMode\"L\n\x0c\x44ownloadMode\x12\x12\n\x0e\x44OWNLOAD_EAGER\x10\x00\x12\x13\n\x0f\x44OWNLOAD_STREAM\x10\x01\x12\x13\n\x0f\x44O_NOT_DOWNLOAD\x10\x02\"E\n\nUploadMode\x12\x12\n\x0eUPLOAD_ON_EXIT\x10\x00\x12\x10\n\x0cUPLOAD_EAGER\x10\x01\x12\x11\n\rDO_NOT_UPLOAD\x10\x02\"\xa7\x02\n\x11\x44\x61taLoadingConfig\x12\x18\n\x07\x65nabled\x18\x01 \x01(\x08R\x07\x65nabled\x12\x1d\n\ninput_path\x18\x02 \x01(\tR\tinputPath\x12\x1f\n\x0boutput_path\x18\x03 \x01(\tR\noutputPath\x12I\n\x06\x66ormat\x18\x04 \x01(\x0e\x32\x31.flyteidl.core.DataLoadingConfig.LiteralMapFormatR\x06\x66ormat\x12:\n\x0bio_strategy\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.IOStrategyR\nioStrategy\"1\n\x10LiteralMapFormat\x12\x08\n\x04JSON\x10\x00\x12\x08\n\x04YAML\x10\x01\x12\t\n\x05PROTO\x10\x02\"\xbd\x01\n\x06K8sPod\x12<\n\x08metadata\x18\x01 \x01(\x0b\x32 .flyteidl.core.K8sObjectMetadataR\x08metadata\x12\x32\n\x08pod_spec\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructR\x07podSpec\x12\x41\n\x0b\x64\x61ta_config\x18\x03 \x01(\x0b\x32 .flyteidl.core.DataLoadingConfigR\ndataConfig\"\xa9\x02\n\x11K8sObjectMetadata\x12\x44\n\x06labels\x18\x01 \x03(\x0b\x32,.flyteidl.core.K8sObjectMetadata.LabelsEntryR\x06labels\x12S\n\x0b\x61nnotations\x18\x02 \x03(\x0b\x32\x31.flyteidl.core.K8sObjectMetadata.AnnotationsEntryR\x0b\x61nnotations\x1a\x39\n\x0bLabelsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a>\n\x10\x41nnotationsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x92\x01\n\x03Sql\x12\x1c\n\tstatement\x18\x01 \x01(\tR\tstatement\x12\x34\n\x07\x64ialect\x18\x02 \x01(\x0e\x32\x1a.flyteidl.core.Sql.DialectR\x07\x64ialect\"7\n\x07\x44ialect\x12\r\n\tUNDEFINED\x10\x00\x12\x08\n\x04\x41NSI\x10\x01\x12\x08\n\x04HIVE\x10\x02\x12\t\n\x05OTHER\x10\x03\x42\xaa\x01\n\x11\x63om.flyteidl.coreB\nTasksProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19\x66lyteidl/core/tasks.proto\x12\rflyteidl.core\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xd0\x02\n\tResources\x12\x42\n\x08requests\x18\x01 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntryR\x08requests\x12>\n\x06limits\x18\x02 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntryR\x06limits\x1a`\n\rResourceEntry\x12\x39\n\x04name\x18\x01 \x01(\x0e\x32%.flyteidl.core.Resources.ResourceNameR\x04name\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\"]\n\x0cResourceName\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x07\n\x03\x43PU\x10\x01\x12\x07\n\x03GPU\x10\x02\x12\n\n\x06MEMORY\x10\x03\x12\x0b\n\x07STORAGE\x10\x04\x12\x15\n\x11\x45PHEMERAL_STORAGE\x10\x05\"\xac\x01\n\x0fRuntimeMetadata\x12>\n\x04type\x18\x01 \x01(\x0e\x32*.flyteidl.core.RuntimeMetadata.RuntimeTypeR\x04type\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12\x16\n\x06\x66lavor\x18\x03 \x01(\tR\x06\x66lavor\"\'\n\x0bRuntimeType\x12\t\n\x05OTHER\x10\x00\x12\r\n\tFLYTE_SDK\x10\x01\"\x91\x01\n\x0eGPUAccelerator\x12\x16\n\x06\x64\x65vice\x18\x01 \x01(\tR\x06\x64\x65vice\x12&\n\runpartitioned\x18\x02 \x01(\x08H\x00R\runpartitioned\x12\'\n\x0epartition_size\x18\x03 \x01(\tH\x00R\rpartitionSizeB\x16\n\x14partition_size_value\"q\n\x10ResourceMetadata\x12H\n\x0fgpu_accelerator\x18\x01 \x01(\x0b\x32\x1d.flyteidl.core.GPUAcceleratorH\x00R\x0egpuAcceleratorB\x13\n\x11\x61\x63\x63\x65lerator_value\"\xc3\x05\n\x0cTaskMetadata\x12\"\n\x0c\x64iscoverable\x18\x01 \x01(\x08R\x0c\x64iscoverable\x12\x38\n\x07runtime\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.RuntimeMetadataR\x07runtime\x12\x33\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x07timeout\x12\x36\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategyR\x07retries\x12+\n\x11\x64iscovery_version\x18\x06 \x01(\tR\x10\x64iscoveryVersion\x12\x38\n\x18\x64\x65precated_error_message\x18\x07 \x01(\tR\x16\x64\x65precatedErrorMessage\x12&\n\rinterruptible\x18\x08 \x01(\x08H\x00R\rinterruptible\x12-\n\x12\x63\x61\x63he_serializable\x18\t \x01(\x08R\x11\x63\x61\x63heSerializable\x12%\n\x0egenerates_deck\x18\n \x01(\x08R\rgeneratesDeck\x12\x39\n\x04tags\x18\x0b \x03(\x0b\x32%.flyteidl.core.TaskMetadata.TagsEntryR\x04tags\x12*\n\x11pod_template_name\x18\x0c \x01(\tR\x0fpodTemplateName\x12L\n\x11resource_metadata\x18\r \x01(\x0b\x32\x1f.flyteidl.core.ResourceMetadataR\x10resourceMetadata\x1a\x37\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x15\n\x13interruptible_value\"\x85\x05\n\x0cTaskTemplate\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x12\n\x04type\x18\x02 \x01(\tR\x04type\x12\x37\n\x08metadata\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.TaskMetadataR\x08metadata\x12;\n\tinterface\x18\x04 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterfaceR\tinterface\x12/\n\x06\x63ustom\x18\x05 \x01(\x0b\x32\x17.google.protobuf.StructR\x06\x63ustom\x12\x38\n\tcontainer\x18\x06 \x01(\x0b\x32\x18.flyteidl.core.ContainerH\x00R\tcontainer\x12\x30\n\x07k8s_pod\x18\x11 \x01(\x0b\x32\x15.flyteidl.core.K8sPodH\x00R\x06k8sPod\x12&\n\x03sql\x18\x12 \x01(\x0b\x32\x12.flyteidl.core.SqlH\x00R\x03sql\x12*\n\x11task_type_version\x18\x07 \x01(\x05R\x0ftaskTypeVersion\x12I\n\x10security_context\x18\x08 \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12?\n\x06\x63onfig\x18\x10 \x03(\x0b\x32\'.flyteidl.core.TaskTemplate.ConfigEntryR\x06\x63onfig\x1a\x39\n\x0b\x43onfigEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x08\n\x06target\"6\n\rContainerPort\x12%\n\x0e\x63ontainer_port\x18\x01 \x01(\rR\rcontainerPort\"\xfc\x03\n\tContainer\x12\x14\n\x05image\x18\x01 \x01(\tR\x05image\x12\x18\n\x07\x63ommand\x18\x02 \x03(\tR\x07\x63ommand\x12\x12\n\x04\x61rgs\x18\x03 \x03(\tR\x04\x61rgs\x12\x36\n\tresources\x18\x04 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12-\n\x03\x65nv\x18\x05 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairR\x03\x65nv\x12\x37\n\x06\x63onfig\x18\x06 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairB\x02\x18\x01R\x06\x63onfig\x12\x32\n\x05ports\x18\x07 \x03(\x0b\x32\x1c.flyteidl.core.ContainerPortR\x05ports\x12\x41\n\x0b\x64\x61ta_config\x18\t \x01(\x0b\x32 .flyteidl.core.DataLoadingConfigR\ndataConfig\x12I\n\x0c\x61rchitecture\x18\n \x01(\x0e\x32%.flyteidl.core.Container.ArchitectureR\x0c\x61rchitecture\"I\n\x0c\x41rchitecture\x12\x0b\n\x07UNKNOWN\x10\x00\x12\t\n\x05\x41MD64\x10\x01\x12\t\n\x05\x41RM64\x10\x02\x12\n\n\x06\x41RM_V6\x10\x03\x12\n\n\x06\x41RM_V7\x10\x04\"\xb5\x02\n\nIOStrategy\x12K\n\rdownload_mode\x18\x01 \x01(\x0e\x32&.flyteidl.core.IOStrategy.DownloadModeR\x0c\x64ownloadMode\x12\x45\n\x0bupload_mode\x18\x02 \x01(\x0e\x32$.flyteidl.core.IOStrategy.UploadModeR\nuploadMode\"L\n\x0c\x44ownloadMode\x12\x12\n\x0e\x44OWNLOAD_EAGER\x10\x00\x12\x13\n\x0f\x44OWNLOAD_STREAM\x10\x01\x12\x13\n\x0f\x44O_NOT_DOWNLOAD\x10\x02\"E\n\nUploadMode\x12\x12\n\x0eUPLOAD_ON_EXIT\x10\x00\x12\x10\n\x0cUPLOAD_EAGER\x10\x01\x12\x11\n\rDO_NOT_UPLOAD\x10\x02\"\xa7\x02\n\x11\x44\x61taLoadingConfig\x12\x18\n\x07\x65nabled\x18\x01 \x01(\x08R\x07\x65nabled\x12\x1d\n\ninput_path\x18\x02 \x01(\tR\tinputPath\x12\x1f\n\x0boutput_path\x18\x03 \x01(\tR\noutputPath\x12I\n\x06\x66ormat\x18\x04 \x01(\x0e\x32\x31.flyteidl.core.DataLoadingConfig.LiteralMapFormatR\x06\x66ormat\x12:\n\x0bio_strategy\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.IOStrategyR\nioStrategy\"1\n\x10LiteralMapFormat\x12\x08\n\x04JSON\x10\x00\x12\x08\n\x04YAML\x10\x01\x12\t\n\x05PROTO\x10\x02\"\xbd\x01\n\x06K8sPod\x12<\n\x08metadata\x18\x01 \x01(\x0b\x32 .flyteidl.core.K8sObjectMetadataR\x08metadata\x12\x32\n\x08pod_spec\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructR\x07podSpec\x12\x41\n\x0b\x64\x61ta_config\x18\x03 \x01(\x0b\x32 .flyteidl.core.DataLoadingConfigR\ndataConfig\"\xa9\x02\n\x11K8sObjectMetadata\x12\x44\n\x06labels\x18\x01 \x03(\x0b\x32,.flyteidl.core.K8sObjectMetadata.LabelsEntryR\x06labels\x12S\n\x0b\x61nnotations\x18\x02 \x03(\x0b\x32\x31.flyteidl.core.K8sObjectMetadata.AnnotationsEntryR\x0b\x61nnotations\x1a\x39\n\x0bLabelsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a>\n\x10\x41nnotationsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x92\x01\n\x03Sql\x12\x1c\n\tstatement\x18\x01 \x01(\tR\tstatement\x12\x34\n\x07\x64ialect\x18\x02 \x01(\x0e\x32\x1a.flyteidl.core.Sql.DialectR\x07\x64ialect\"7\n\x07\x44ialect\x12\r\n\tUNDEFINED\x10\x00\x12\x08\n\x04\x41NSI\x10\x01\x12\x08\n\x04HIVE\x10\x02\x12\t\n\x05OTHER\x10\x03\x42\xaa\x01\n\x11\x63om.flyteidl.coreB\nTasksProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -48,40 +48,44 @@ _globals['_RUNTIMEMETADATA']._serialized_end=741 _globals['_RUNTIMEMETADATA_RUNTIMETYPE']._serialized_start=702 _globals['_RUNTIMEMETADATA_RUNTIMETYPE']._serialized_end=741 - _globals['_TASKMETADATA']._serialized_start=744 - _globals['_TASKMETADATA']._serialized_end=1373 - _globals['_TASKMETADATA_TAGSENTRY']._serialized_start=1295 - _globals['_TASKMETADATA_TAGSENTRY']._serialized_end=1350 - _globals['_TASKTEMPLATE']._serialized_start=1376 - _globals['_TASKTEMPLATE']._serialized_end=2021 - _globals['_TASKTEMPLATE_CONFIGENTRY']._serialized_start=1954 - _globals['_TASKTEMPLATE_CONFIGENTRY']._serialized_end=2011 - _globals['_CONTAINERPORT']._serialized_start=2023 - _globals['_CONTAINERPORT']._serialized_end=2077 - _globals['_CONTAINER']._serialized_start=2080 - _globals['_CONTAINER']._serialized_end=2588 - _globals['_CONTAINER_ARCHITECTURE']._serialized_start=2515 - _globals['_CONTAINER_ARCHITECTURE']._serialized_end=2588 - _globals['_IOSTRATEGY']._serialized_start=2591 - _globals['_IOSTRATEGY']._serialized_end=2900 - _globals['_IOSTRATEGY_DOWNLOADMODE']._serialized_start=2753 - _globals['_IOSTRATEGY_DOWNLOADMODE']._serialized_end=2829 - _globals['_IOSTRATEGY_UPLOADMODE']._serialized_start=2831 - _globals['_IOSTRATEGY_UPLOADMODE']._serialized_end=2900 - _globals['_DATALOADINGCONFIG']._serialized_start=2903 - _globals['_DATALOADINGCONFIG']._serialized_end=3198 - _globals['_DATALOADINGCONFIG_LITERALMAPFORMAT']._serialized_start=3149 - _globals['_DATALOADINGCONFIG_LITERALMAPFORMAT']._serialized_end=3198 - _globals['_K8SPOD']._serialized_start=3201 - _globals['_K8SPOD']._serialized_end=3390 - _globals['_K8SOBJECTMETADATA']._serialized_start=3393 - _globals['_K8SOBJECTMETADATA']._serialized_end=3690 - _globals['_K8SOBJECTMETADATA_LABELSENTRY']._serialized_start=3569 - _globals['_K8SOBJECTMETADATA_LABELSENTRY']._serialized_end=3626 - _globals['_K8SOBJECTMETADATA_ANNOTATIONSENTRY']._serialized_start=3628 - _globals['_K8SOBJECTMETADATA_ANNOTATIONSENTRY']._serialized_end=3690 - _globals['_SQL']._serialized_start=3693 - _globals['_SQL']._serialized_end=3839 - _globals['_SQL_DIALECT']._serialized_start=3784 - _globals['_SQL_DIALECT']._serialized_end=3839 + _globals['_GPUACCELERATOR']._serialized_start=744 + _globals['_GPUACCELERATOR']._serialized_end=889 + _globals['_RESOURCEMETADATA']._serialized_start=891 + _globals['_RESOURCEMETADATA']._serialized_end=1004 + _globals['_TASKMETADATA']._serialized_start=1007 + _globals['_TASKMETADATA']._serialized_end=1714 + _globals['_TASKMETADATA_TAGSENTRY']._serialized_start=1636 + _globals['_TASKMETADATA_TAGSENTRY']._serialized_end=1691 + _globals['_TASKTEMPLATE']._serialized_start=1717 + _globals['_TASKTEMPLATE']._serialized_end=2362 + _globals['_TASKTEMPLATE_CONFIGENTRY']._serialized_start=2295 + _globals['_TASKTEMPLATE_CONFIGENTRY']._serialized_end=2352 + _globals['_CONTAINERPORT']._serialized_start=2364 + _globals['_CONTAINERPORT']._serialized_end=2418 + _globals['_CONTAINER']._serialized_start=2421 + _globals['_CONTAINER']._serialized_end=2929 + _globals['_CONTAINER_ARCHITECTURE']._serialized_start=2856 + _globals['_CONTAINER_ARCHITECTURE']._serialized_end=2929 + _globals['_IOSTRATEGY']._serialized_start=2932 + _globals['_IOSTRATEGY']._serialized_end=3241 + _globals['_IOSTRATEGY_DOWNLOADMODE']._serialized_start=3094 + _globals['_IOSTRATEGY_DOWNLOADMODE']._serialized_end=3170 + _globals['_IOSTRATEGY_UPLOADMODE']._serialized_start=3172 + _globals['_IOSTRATEGY_UPLOADMODE']._serialized_end=3241 + _globals['_DATALOADINGCONFIG']._serialized_start=3244 + _globals['_DATALOADINGCONFIG']._serialized_end=3539 + _globals['_DATALOADINGCONFIG_LITERALMAPFORMAT']._serialized_start=3490 + _globals['_DATALOADINGCONFIG_LITERALMAPFORMAT']._serialized_end=3539 + _globals['_K8SPOD']._serialized_start=3542 + _globals['_K8SPOD']._serialized_end=3731 + _globals['_K8SOBJECTMETADATA']._serialized_start=3734 + _globals['_K8SOBJECTMETADATA']._serialized_end=4031 + _globals['_K8SOBJECTMETADATA_LABELSENTRY']._serialized_start=3910 + _globals['_K8SOBJECTMETADATA_LABELSENTRY']._serialized_end=3967 + _globals['_K8SOBJECTMETADATA_ANNOTATIONSENTRY']._serialized_start=3969 + _globals['_K8SOBJECTMETADATA_ANNOTATIONSENTRY']._serialized_end=4031 + _globals['_SQL']._serialized_start=4034 + _globals['_SQL']._serialized_end=4180 + _globals['_SQL_DIALECT']._serialized_start=4125 + _globals['_SQL_DIALECT']._serialized_end=4180 # @@protoc_insertion_point(module_scope) diff --git a/gen/pb_python/flyteidl/core/tasks_pb2.pyi b/gen/pb_python/flyteidl/core/tasks_pb2.pyi index e33453ecd..d1516d8d8 100644 --- a/gen/pb_python/flyteidl/core/tasks_pb2.pyi +++ b/gen/pb_python/flyteidl/core/tasks_pb2.pyi @@ -57,8 +57,24 @@ class RuntimeMetadata(_message.Message): flavor: str def __init__(self, type: _Optional[_Union[RuntimeMetadata.RuntimeType, str]] = ..., version: _Optional[str] = ..., flavor: _Optional[str] = ...) -> None: ... +class GPUAccelerator(_message.Message): + __slots__ = ["device", "unpartitioned", "partition_size"] + DEVICE_FIELD_NUMBER: _ClassVar[int] + UNPARTITIONED_FIELD_NUMBER: _ClassVar[int] + PARTITION_SIZE_FIELD_NUMBER: _ClassVar[int] + device: str + unpartitioned: bool + partition_size: str + def __init__(self, device: _Optional[str] = ..., unpartitioned: bool = ..., partition_size: _Optional[str] = ...) -> None: ... + +class ResourceMetadata(_message.Message): + __slots__ = ["gpu_accelerator"] + GPU_ACCELERATOR_FIELD_NUMBER: _ClassVar[int] + gpu_accelerator: GPUAccelerator + def __init__(self, gpu_accelerator: _Optional[_Union[GPUAccelerator, _Mapping]] = ...) -> None: ... + class TaskMetadata(_message.Message): - __slots__ = ["discoverable", "runtime", "timeout", "retries", "discovery_version", "deprecated_error_message", "interruptible", "cache_serializable", "generates_deck", "tags", "pod_template_name"] + __slots__ = ["discoverable", "runtime", "timeout", "retries", "discovery_version", "deprecated_error_message", "interruptible", "cache_serializable", "generates_deck", "tags", "pod_template_name", "resource_metadata"] class TagsEntry(_message.Message): __slots__ = ["key", "value"] KEY_FIELD_NUMBER: _ClassVar[int] @@ -77,6 +93,7 @@ class TaskMetadata(_message.Message): GENERATES_DECK_FIELD_NUMBER: _ClassVar[int] TAGS_FIELD_NUMBER: _ClassVar[int] POD_TEMPLATE_NAME_FIELD_NUMBER: _ClassVar[int] + RESOURCE_METADATA_FIELD_NUMBER: _ClassVar[int] discoverable: bool runtime: RuntimeMetadata timeout: _duration_pb2.Duration @@ -88,7 +105,8 @@ class TaskMetadata(_message.Message): generates_deck: bool tags: _containers.ScalarMap[str, str] pod_template_name: str - def __init__(self, discoverable: bool = ..., runtime: _Optional[_Union[RuntimeMetadata, _Mapping]] = ..., timeout: _Optional[_Union[_duration_pb2.Duration, _Mapping]] = ..., retries: _Optional[_Union[_literals_pb2.RetryStrategy, _Mapping]] = ..., discovery_version: _Optional[str] = ..., deprecated_error_message: _Optional[str] = ..., interruptible: bool = ..., cache_serializable: bool = ..., generates_deck: bool = ..., tags: _Optional[_Mapping[str, str]] = ..., pod_template_name: _Optional[str] = ...) -> None: ... + resource_metadata: ResourceMetadata + def __init__(self, discoverable: bool = ..., runtime: _Optional[_Union[RuntimeMetadata, _Mapping]] = ..., timeout: _Optional[_Union[_duration_pb2.Duration, _Mapping]] = ..., retries: _Optional[_Union[_literals_pb2.RetryStrategy, _Mapping]] = ..., discovery_version: _Optional[str] = ..., deprecated_error_message: _Optional[str] = ..., interruptible: bool = ..., cache_serializable: bool = ..., generates_deck: bool = ..., tags: _Optional[_Mapping[str, str]] = ..., pod_template_name: _Optional[str] = ..., resource_metadata: _Optional[_Union[ResourceMetadata, _Mapping]] = ...) -> None: ... class TaskTemplate(_message.Message): __slots__ = ["id", "type", "metadata", "interface", "custom", "container", "k8s_pod", "sql", "task_type_version", "security_context", "config"] diff --git a/gen/pb_python/flyteidl/core/workflow_pb2.py b/gen/pb_python/flyteidl/core/workflow_pb2.py index 5272c8bab..7f1d4700e 100644 --- a/gen/pb_python/flyteidl/core/workflow_pb2.py +++ b/gen/pb_python/flyteidl/core/workflow_pb2.py @@ -22,7 +22,7 @@ from google.protobuf import duration_pb2 as google_dot_protobuf_dot_duration__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/core/workflow.proto\x12\rflyteidl.core\x1a\x1d\x66lyteidl/core/condition.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x19\x66lyteidl/core/types.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\"{\n\x07IfBlock\x12>\n\tcondition\x18\x01 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\tcondition\x12\x30\n\tthen_node\x18\x02 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x08thenNode\"\xd4\x01\n\x0bIfElseBlock\x12*\n\x04\x63\x61se\x18\x01 \x01(\x0b\x32\x16.flyteidl.core.IfBlockR\x04\x63\x61se\x12,\n\x05other\x18\x02 \x03(\x0b\x32\x16.flyteidl.core.IfBlockR\x05other\x12\x32\n\telse_node\x18\x03 \x01(\x0b\x32\x13.flyteidl.core.NodeH\x00R\x08\x65lseNode\x12,\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x14.flyteidl.core.ErrorH\x00R\x05\x65rrorB\t\n\x07\x64\x65\x66\x61ult\"A\n\nBranchNode\x12\x33\n\x07if_else\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.IfElseBlockR\x06ifElse\"\x97\x01\n\x08TaskNode\x12>\n\x0creference_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\x0breferenceId\x12>\n\toverrides\x18\x02 \x01(\x0b\x32 .flyteidl.core.TaskNodeOverridesR\toverridesB\x0b\n\treference\"\xa6\x01\n\x0cWorkflowNode\x12\x42\n\x0elaunchplan_ref\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\rlaunchplanRef\x12\x45\n\x10sub_workflow_ref\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\x0esubWorkflowRefB\x0b\n\treference\"/\n\x10\x41pproveCondition\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\"\x90\x01\n\x0fSignalCondition\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\x12\x30\n\x14output_variable_name\x18\x03 \x01(\tR\x12outputVariableName\"G\n\x0eSleepCondition\x12\x35\n\x08\x64uration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\"\xc5\x01\n\x08GateNode\x12;\n\x07\x61pprove\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.ApproveConditionH\x00R\x07\x61pprove\x12\x38\n\x06signal\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.SignalConditionH\x00R\x06signal\x12\x35\n\x05sleep\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.SleepConditionH\x00R\x05sleepB\x0b\n\tcondition\"\xbf\x01\n\tArrayNode\x12\'\n\x04node\x18\x01 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x04node\x12 \n\x0bparallelism\x18\x02 \x01(\rR\x0bparallelism\x12%\n\rmin_successes\x18\x03 \x01(\rH\x00R\x0cminSuccesses\x12,\n\x11min_success_ratio\x18\x04 \x01(\x02H\x00R\x0fminSuccessRatioB\x12\n\x10success_criteria\"\xce\x01\n\x0cNodeMetadata\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x33\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x07timeout\x12\x36\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategyR\x07retries\x12&\n\rinterruptible\x18\x06 \x01(\x08H\x00R\rinterruptibleB\x15\n\x13interruptible_value\"/\n\x05\x41lias\x12\x10\n\x03var\x18\x01 \x01(\tR\x03var\x12\x14\n\x05\x61lias\x18\x02 \x01(\tR\x05\x61lias\"\x9f\x04\n\x04Node\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x37\n\x08metadata\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.NodeMetadataR\x08metadata\x12.\n\x06inputs\x18\x03 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x06inputs\x12*\n\x11upstream_node_ids\x18\x04 \x03(\tR\x0fupstreamNodeIds\x12;\n\x0eoutput_aliases\x18\x05 \x03(\x0b\x32\x14.flyteidl.core.AliasR\routputAliases\x12\x36\n\ttask_node\x18\x06 \x01(\x0b\x32\x17.flyteidl.core.TaskNodeH\x00R\x08taskNode\x12\x42\n\rworkflow_node\x18\x07 \x01(\x0b\x32\x1b.flyteidl.core.WorkflowNodeH\x00R\x0cworkflowNode\x12<\n\x0b\x62ranch_node\x18\x08 \x01(\x0b\x32\x19.flyteidl.core.BranchNodeH\x00R\nbranchNode\x12\x36\n\tgate_node\x18\t \x01(\x0b\x32\x17.flyteidl.core.GateNodeH\x00R\x08gateNode\x12\x39\n\narray_node\x18\n \x01(\x0b\x32\x18.flyteidl.core.ArrayNodeH\x00R\tarrayNodeB\x08\n\x06target\"\xfc\x02\n\x10WorkflowMetadata\x12M\n\x12quality_of_service\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceR\x10qualityOfService\x12N\n\non_failure\x18\x02 \x01(\x0e\x32/.flyteidl.core.WorkflowMetadata.OnFailurePolicyR\tonFailure\x12=\n\x04tags\x18\x03 \x03(\x0b\x32).flyteidl.core.WorkflowMetadata.TagsEntryR\x04tags\x1a\x37\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"Q\n\x0fOnFailurePolicy\x12\x14\n\x10\x46\x41IL_IMMEDIATELY\x10\x00\x12(\n$FAIL_AFTER_EXECUTABLE_NODES_COMPLETE\x10\x01\"@\n\x18WorkflowMetadataDefaults\x12$\n\rinterruptible\x18\x01 \x01(\x08R\rinterruptible\"\xa2\x03\n\x10WorkflowTemplate\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12;\n\x08metadata\x18\x02 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowMetadataR\x08metadata\x12;\n\tinterface\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterfaceR\tinterface\x12)\n\x05nodes\x18\x04 \x03(\x0b\x32\x13.flyteidl.core.NodeR\x05nodes\x12\x30\n\x07outputs\x18\x05 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x07outputs\x12\x36\n\x0c\x66\x61ilure_node\x18\x06 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x0b\x66\x61ilureNode\x12T\n\x11metadata_defaults\x18\x07 \x01(\x0b\x32\'.flyteidl.core.WorkflowMetadataDefaultsR\x10metadataDefaults\"K\n\x11TaskNodeOverrides\x12\x36\n\tresources\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresourcesB\xad\x01\n\x11\x63om.flyteidl.coreB\rWorkflowProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/core/workflow.proto\x12\rflyteidl.core\x1a\x1d\x66lyteidl/core/condition.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x19\x66lyteidl/core/types.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\"{\n\x07IfBlock\x12>\n\tcondition\x18\x01 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\tcondition\x12\x30\n\tthen_node\x18\x02 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x08thenNode\"\xd4\x01\n\x0bIfElseBlock\x12*\n\x04\x63\x61se\x18\x01 \x01(\x0b\x32\x16.flyteidl.core.IfBlockR\x04\x63\x61se\x12,\n\x05other\x18\x02 \x03(\x0b\x32\x16.flyteidl.core.IfBlockR\x05other\x12\x32\n\telse_node\x18\x03 \x01(\x0b\x32\x13.flyteidl.core.NodeH\x00R\x08\x65lseNode\x12,\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x14.flyteidl.core.ErrorH\x00R\x05\x65rrorB\t\n\x07\x64\x65\x66\x61ult\"A\n\nBranchNode\x12\x33\n\x07if_else\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.IfElseBlockR\x06ifElse\"\x97\x01\n\x08TaskNode\x12>\n\x0creference_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\x0breferenceId\x12>\n\toverrides\x18\x02 \x01(\x0b\x32 .flyteidl.core.TaskNodeOverridesR\toverridesB\x0b\n\treference\"\xa6\x01\n\x0cWorkflowNode\x12\x42\n\x0elaunchplan_ref\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\rlaunchplanRef\x12\x45\n\x10sub_workflow_ref\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\x0esubWorkflowRefB\x0b\n\treference\"/\n\x10\x41pproveCondition\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\"\x90\x01\n\x0fSignalCondition\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\x12\x30\n\x14output_variable_name\x18\x03 \x01(\tR\x12outputVariableName\"G\n\x0eSleepCondition\x12\x35\n\x08\x64uration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\"\xc5\x01\n\x08GateNode\x12;\n\x07\x61pprove\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.ApproveConditionH\x00R\x07\x61pprove\x12\x38\n\x06signal\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.SignalConditionH\x00R\x06signal\x12\x35\n\x05sleep\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.SleepConditionH\x00R\x05sleepB\x0b\n\tcondition\"\xbf\x01\n\tArrayNode\x12\'\n\x04node\x18\x01 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x04node\x12 \n\x0bparallelism\x18\x02 \x01(\rR\x0bparallelism\x12%\n\rmin_successes\x18\x03 \x01(\rH\x00R\x0cminSuccesses\x12,\n\x11min_success_ratio\x18\x04 \x01(\x02H\x00R\x0fminSuccessRatioB\x12\n\x10success_criteria\"\xce\x01\n\x0cNodeMetadata\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x33\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x07timeout\x12\x36\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategyR\x07retries\x12&\n\rinterruptible\x18\x06 \x01(\x08H\x00R\rinterruptibleB\x15\n\x13interruptible_value\"/\n\x05\x41lias\x12\x10\n\x03var\x18\x01 \x01(\tR\x03var\x12\x14\n\x05\x61lias\x18\x02 \x01(\tR\x05\x61lias\"\x9f\x04\n\x04Node\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x37\n\x08metadata\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.NodeMetadataR\x08metadata\x12.\n\x06inputs\x18\x03 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x06inputs\x12*\n\x11upstream_node_ids\x18\x04 \x03(\tR\x0fupstreamNodeIds\x12;\n\x0eoutput_aliases\x18\x05 \x03(\x0b\x32\x14.flyteidl.core.AliasR\routputAliases\x12\x36\n\ttask_node\x18\x06 \x01(\x0b\x32\x17.flyteidl.core.TaskNodeH\x00R\x08taskNode\x12\x42\n\rworkflow_node\x18\x07 \x01(\x0b\x32\x1b.flyteidl.core.WorkflowNodeH\x00R\x0cworkflowNode\x12<\n\x0b\x62ranch_node\x18\x08 \x01(\x0b\x32\x19.flyteidl.core.BranchNodeH\x00R\nbranchNode\x12\x36\n\tgate_node\x18\t \x01(\x0b\x32\x17.flyteidl.core.GateNodeH\x00R\x08gateNode\x12\x39\n\narray_node\x18\n \x01(\x0b\x32\x18.flyteidl.core.ArrayNodeH\x00R\tarrayNodeB\x08\n\x06target\"\xfc\x02\n\x10WorkflowMetadata\x12M\n\x12quality_of_service\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceR\x10qualityOfService\x12N\n\non_failure\x18\x02 \x01(\x0e\x32/.flyteidl.core.WorkflowMetadata.OnFailurePolicyR\tonFailure\x12=\n\x04tags\x18\x03 \x03(\x0b\x32).flyteidl.core.WorkflowMetadata.TagsEntryR\x04tags\x1a\x37\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"Q\n\x0fOnFailurePolicy\x12\x14\n\x10\x46\x41IL_IMMEDIATELY\x10\x00\x12(\n$FAIL_AFTER_EXECUTABLE_NODES_COMPLETE\x10\x01\"@\n\x18WorkflowMetadataDefaults\x12$\n\rinterruptible\x18\x01 \x01(\x08R\rinterruptible\"\xa2\x03\n\x10WorkflowTemplate\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12;\n\x08metadata\x18\x02 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowMetadataR\x08metadata\x12;\n\tinterface\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterfaceR\tinterface\x12)\n\x05nodes\x18\x04 \x03(\x0b\x32\x13.flyteidl.core.NodeR\x05nodes\x12\x30\n\x07outputs\x18\x05 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x07outputs\x12\x36\n\x0c\x66\x61ilure_node\x18\x06 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x0b\x66\x61ilureNode\x12T\n\x11metadata_defaults\x18\x07 \x01(\x0b\x32\'.flyteidl.core.WorkflowMetadataDefaultsR\x10metadataDefaults\"\x99\x01\n\x11TaskNodeOverrides\x12\x36\n\tresources\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12L\n\x11resource_metadata\x18\x02 \x01(\x0b\x32\x1f.flyteidl.core.ResourceMetadataR\x10resourceMetadataB\xad\x01\n\x11\x63om.flyteidl.coreB\rWorkflowProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -69,6 +69,6 @@ _globals['_WORKFLOWMETADATADEFAULTS']._serialized_end=2962 _globals['_WORKFLOWTEMPLATE']._serialized_start=2965 _globals['_WORKFLOWTEMPLATE']._serialized_end=3383 - _globals['_TASKNODEOVERRIDES']._serialized_start=3385 - _globals['_TASKNODEOVERRIDES']._serialized_end=3460 + _globals['_TASKNODEOVERRIDES']._serialized_start=3386 + _globals['_TASKNODEOVERRIDES']._serialized_end=3539 # @@protoc_insertion_point(module_scope) diff --git a/gen/pb_python/flyteidl/core/workflow_pb2.pyi b/gen/pb_python/flyteidl/core/workflow_pb2.pyi index 95a108abc..ab362cb71 100644 --- a/gen/pb_python/flyteidl/core/workflow_pb2.pyi +++ b/gen/pb_python/flyteidl/core/workflow_pb2.pyi @@ -193,7 +193,9 @@ class WorkflowTemplate(_message.Message): def __init__(self, id: _Optional[_Union[_identifier_pb2.Identifier, _Mapping]] = ..., metadata: _Optional[_Union[WorkflowMetadata, _Mapping]] = ..., interface: _Optional[_Union[_interface_pb2.TypedInterface, _Mapping]] = ..., nodes: _Optional[_Iterable[_Union[Node, _Mapping]]] = ..., outputs: _Optional[_Iterable[_Union[_literals_pb2.Binding, _Mapping]]] = ..., failure_node: _Optional[_Union[Node, _Mapping]] = ..., metadata_defaults: _Optional[_Union[WorkflowMetadataDefaults, _Mapping]] = ...) -> None: ... class TaskNodeOverrides(_message.Message): - __slots__ = ["resources"] + __slots__ = ["resources", "resource_metadata"] RESOURCES_FIELD_NUMBER: _ClassVar[int] + RESOURCE_METADATA_FIELD_NUMBER: _ClassVar[int] resources: _tasks_pb2.Resources - def __init__(self, resources: _Optional[_Union[_tasks_pb2.Resources, _Mapping]] = ...) -> None: ... + resource_metadata: _tasks_pb2.ResourceMetadata + def __init__(self, resources: _Optional[_Union[_tasks_pb2.Resources, _Mapping]] = ..., resource_metadata: _Optional[_Union[_tasks_pb2.ResourceMetadata, _Mapping]] = ...) -> None: ... diff --git a/gen/pb_python/flyteidl/service/flyteadmin/README.md b/gen/pb_python/flyteidl/service/flyteadmin/README.md index fc2ba486a..b2c3c1315 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/README.md +++ b/gen/pb_python/flyteidl/service/flyteadmin/README.md @@ -289,6 +289,7 @@ Class | Method | HTTP request | Description - [CoreEnumType](docs/CoreEnumType.md) - [CoreError](docs/CoreError.md) - [CoreExecutionError](docs/CoreExecutionError.md) + - [CoreGPUAccelerator](docs/CoreGPUAccelerator.md) - [CoreGateNode](docs/CoreGateNode.md) - [CoreIOStrategy](docs/CoreIOStrategy.md) - [CoreIdentifier](docs/CoreIdentifier.md) @@ -316,6 +317,7 @@ Class | Method | HTTP request | Description - [CorePrimitive](docs/CorePrimitive.md) - [CoreQualityOfService](docs/CoreQualityOfService.md) - [CoreQualityOfServiceSpec](docs/CoreQualityOfServiceSpec.md) + - [CoreResourceMetadata](docs/CoreResourceMetadata.md) - [CoreResourceType](docs/CoreResourceType.md) - [CoreResources](docs/CoreResources.md) - [CoreRetryStrategy](docs/CoreRetryStrategy.md) diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py index 4aaa8791f..9933ca13d 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py @@ -180,6 +180,7 @@ from flyteadmin.models.core_enum_type import CoreEnumType from flyteadmin.models.core_error import CoreError from flyteadmin.models.core_execution_error import CoreExecutionError +from flyteadmin.models.core_gpu_accelerator import CoreGPUAccelerator from flyteadmin.models.core_gate_node import CoreGateNode from flyteadmin.models.core_io_strategy import CoreIOStrategy from flyteadmin.models.core_identifier import CoreIdentifier @@ -207,6 +208,7 @@ from flyteadmin.models.core_primitive import CorePrimitive from flyteadmin.models.core_quality_of_service import CoreQualityOfService from flyteadmin.models.core_quality_of_service_spec import CoreQualityOfServiceSpec +from flyteadmin.models.core_resource_metadata import CoreResourceMetadata from flyteadmin.models.core_resource_type import CoreResourceType from flyteadmin.models.core_resources import CoreResources from flyteadmin.models.core_retry_strategy import CoreRetryStrategy diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py index d8a797cdf..f0b4152f2 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py @@ -173,6 +173,7 @@ from flyteadmin.models.core_enum_type import CoreEnumType from flyteadmin.models.core_error import CoreError from flyteadmin.models.core_execution_error import CoreExecutionError +from flyteadmin.models.core_gpu_accelerator import CoreGPUAccelerator from flyteadmin.models.core_gate_node import CoreGateNode from flyteadmin.models.core_io_strategy import CoreIOStrategy from flyteadmin.models.core_identifier import CoreIdentifier @@ -200,6 +201,7 @@ from flyteadmin.models.core_primitive import CorePrimitive from flyteadmin.models.core_quality_of_service import CoreQualityOfService from flyteadmin.models.core_quality_of_service_spec import CoreQualityOfServiceSpec +from flyteadmin.models.core_resource_metadata import CoreResourceMetadata from flyteadmin.models.core_resource_type import CoreResourceType from flyteadmin.models.core_resources import CoreResources from flyteadmin.models.core_retry_strategy import CoreRetryStrategy diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_gpu_accelerator.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_gpu_accelerator.py new file mode 100644 index 000000000..2b4f144d4 --- /dev/null +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_gpu_accelerator.py @@ -0,0 +1,167 @@ +# coding: utf-8 + +""" + flyteidl/service/admin.proto + + No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 + + OpenAPI spec version: version not set + + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class CoreGPUAccelerator(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'device': 'str', + 'unpartitioned': 'bool', + 'partition_size': 'str' + } + + attribute_map = { + 'device': 'device', + 'unpartitioned': 'unpartitioned', + 'partition_size': 'partition_size' + } + + def __init__(self, device=None, unpartitioned=None, partition_size=None): # noqa: E501 + """CoreGPUAccelerator - a model defined in Swagger""" # noqa: E501 + + self._device = None + self._unpartitioned = None + self._partition_size = None + self.discriminator = None + + if device is not None: + self.device = device + if unpartitioned is not None: + self.unpartitioned = unpartitioned + if partition_size is not None: + self.partition_size = partition_size + + @property + def device(self): + """Gets the device of this CoreGPUAccelerator. # noqa: E501 + + + :return: The device of this CoreGPUAccelerator. # noqa: E501 + :rtype: str + """ + return self._device + + @device.setter + def device(self, device): + """Sets the device of this CoreGPUAccelerator. + + + :param device: The device of this CoreGPUAccelerator. # noqa: E501 + :type: str + """ + + self._device = device + + @property + def unpartitioned(self): + """Gets the unpartitioned of this CoreGPUAccelerator. # noqa: E501 + + + :return: The unpartitioned of this CoreGPUAccelerator. # noqa: E501 + :rtype: bool + """ + return self._unpartitioned + + @unpartitioned.setter + def unpartitioned(self, unpartitioned): + """Sets the unpartitioned of this CoreGPUAccelerator. + + + :param unpartitioned: The unpartitioned of this CoreGPUAccelerator. # noqa: E501 + :type: bool + """ + + self._unpartitioned = unpartitioned + + @property + def partition_size(self): + """Gets the partition_size of this CoreGPUAccelerator. # noqa: E501 + + + :return: The partition_size of this CoreGPUAccelerator. # noqa: E501 + :rtype: str + """ + return self._partition_size + + @partition_size.setter + def partition_size(self, partition_size): + """Sets the partition_size of this CoreGPUAccelerator. + + + :param partition_size: The partition_size of this CoreGPUAccelerator. # noqa: E501 + :type: str + """ + + self._partition_size = partition_size + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(CoreGPUAccelerator, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, CoreGPUAccelerator): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_resource_metadata.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_resource_metadata.py new file mode 100644 index 000000000..c97c6c5ce --- /dev/null +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_resource_metadata.py @@ -0,0 +1,117 @@ +# coding: utf-8 + +""" + flyteidl/service/admin.proto + + No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 + + OpenAPI spec version: version not set + + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + +from flyteadmin.models.core_gpu_accelerator import CoreGPUAccelerator # noqa: F401,E501 + + +class CoreResourceMetadata(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'gpu_accelerator': 'CoreGPUAccelerator' + } + + attribute_map = { + 'gpu_accelerator': 'gpu_accelerator' + } + + def __init__(self, gpu_accelerator=None): # noqa: E501 + """CoreResourceMetadata - a model defined in Swagger""" # noqa: E501 + + self._gpu_accelerator = None + self.discriminator = None + + if gpu_accelerator is not None: + self.gpu_accelerator = gpu_accelerator + + @property + def gpu_accelerator(self): + """Gets the gpu_accelerator of this CoreResourceMetadata. # noqa: E501 + + + :return: The gpu_accelerator of this CoreResourceMetadata. # noqa: E501 + :rtype: CoreGPUAccelerator + """ + return self._gpu_accelerator + + @gpu_accelerator.setter + def gpu_accelerator(self, gpu_accelerator): + """Sets the gpu_accelerator of this CoreResourceMetadata. + + + :param gpu_accelerator: The gpu_accelerator of this CoreResourceMetadata. # noqa: E501 + :type: CoreGPUAccelerator + """ + + self._gpu_accelerator = gpu_accelerator + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(CoreResourceMetadata, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, CoreResourceMetadata): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_metadata.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_metadata.py index fdc8331bb..b7b8ff510 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_metadata.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_metadata.py @@ -16,6 +16,7 @@ import six +from flyteadmin.models.core_resource_metadata import CoreResourceMetadata # noqa: F401,E501 from flyteadmin.models.core_retry_strategy import CoreRetryStrategy # noqa: F401,E501 from flyteadmin.models.core_runtime_metadata import CoreRuntimeMetadata # noqa: F401,E501 @@ -44,7 +45,8 @@ class CoreTaskMetadata(object): 'cache_serializable': 'bool', 'generates_deck': 'bool', 'tags': 'dict(str, str)', - 'pod_template_name': 'str' + 'pod_template_name': 'str', + 'resource_metadata': 'CoreResourceMetadata' } attribute_map = { @@ -58,10 +60,11 @@ class CoreTaskMetadata(object): 'cache_serializable': 'cache_serializable', 'generates_deck': 'generates_deck', 'tags': 'tags', - 'pod_template_name': 'pod_template_name' + 'pod_template_name': 'pod_template_name', + 'resource_metadata': 'resource_metadata' } - def __init__(self, discoverable=None, runtime=None, timeout=None, retries=None, discovery_version=None, deprecated_error_message=None, interruptible=None, cache_serializable=None, generates_deck=None, tags=None, pod_template_name=None): # noqa: E501 + def __init__(self, discoverable=None, runtime=None, timeout=None, retries=None, discovery_version=None, deprecated_error_message=None, interruptible=None, cache_serializable=None, generates_deck=None, tags=None, pod_template_name=None, resource_metadata=None): # noqa: E501 """CoreTaskMetadata - a model defined in Swagger""" # noqa: E501 self._discoverable = None @@ -75,6 +78,7 @@ def __init__(self, discoverable=None, runtime=None, timeout=None, retries=None, self._generates_deck = None self._tags = None self._pod_template_name = None + self._resource_metadata = None self.discriminator = None if discoverable is not None: @@ -99,6 +103,8 @@ def __init__(self, discoverable=None, runtime=None, timeout=None, retries=None, self.tags = tags if pod_template_name is not None: self.pod_template_name = pod_template_name + if resource_metadata is not None: + self.resource_metadata = resource_metadata @property def discoverable(self): @@ -347,6 +353,27 @@ def pod_template_name(self, pod_template_name): self._pod_template_name = pod_template_name + @property + def resource_metadata(self): + """Gets the resource_metadata of this CoreTaskMetadata. # noqa: E501 + + + :return: The resource_metadata of this CoreTaskMetadata. # noqa: E501 + :rtype: CoreResourceMetadata + """ + return self._resource_metadata + + @resource_metadata.setter + def resource_metadata(self, resource_metadata): + """Sets the resource_metadata of this CoreTaskMetadata. + + + :param resource_metadata: The resource_metadata of this CoreTaskMetadata. # noqa: E501 + :type: CoreResourceMetadata + """ + + self._resource_metadata = resource_metadata + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_node_overrides.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_node_overrides.py index 7320a6d6e..deb795553 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_node_overrides.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_node_overrides.py @@ -16,6 +16,7 @@ import six +from flyteadmin.models.core_resource_metadata import CoreResourceMetadata # noqa: F401,E501 from flyteadmin.models.core_resources import CoreResources # noqa: F401,E501 @@ -33,21 +34,26 @@ class CoreTaskNodeOverrides(object): and the value is json key in definition. """ swagger_types = { - 'resources': 'CoreResources' + 'resources': 'CoreResources', + 'resource_metadata': 'CoreResourceMetadata' } attribute_map = { - 'resources': 'resources' + 'resources': 'resources', + 'resource_metadata': 'resource_metadata' } - def __init__(self, resources=None): # noqa: E501 + def __init__(self, resources=None, resource_metadata=None): # noqa: E501 """CoreTaskNodeOverrides - a model defined in Swagger""" # noqa: E501 self._resources = None + self._resource_metadata = None self.discriminator = None if resources is not None: self.resources = resources + if resource_metadata is not None: + self.resource_metadata = resource_metadata @property def resources(self): @@ -72,6 +78,27 @@ def resources(self, resources): self._resources = resources + @property + def resource_metadata(self): + """Gets the resource_metadata of this CoreTaskNodeOverrides. # noqa: E501 + + + :return: The resource_metadata of this CoreTaskNodeOverrides. # noqa: E501 + :rtype: CoreResourceMetadata + """ + return self._resource_metadata + + @resource_metadata.setter + def resource_metadata(self, resource_metadata): + """Sets the resource_metadata of this CoreTaskNodeOverrides. + + + :param resource_metadata: The resource_metadata of this CoreTaskNodeOverrides. # noqa: E501 + :type: CoreResourceMetadata + """ + + self._resource_metadata = resource_metadata + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_gpu_accelerator.py b/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_gpu_accelerator.py new file mode 100644 index 000000000..aa99885e5 --- /dev/null +++ b/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_gpu_accelerator.py @@ -0,0 +1,40 @@ +# coding: utf-8 + +""" + flyteidl/service/admin.proto + + No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 + + OpenAPI spec version: version not set + + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +from __future__ import absolute_import + +import unittest + +import flyteadmin +from flyteadmin.models.core_gpu_accelerator import CoreGPUAccelerator # noqa: E501 +from flyteadmin.rest import ApiException + + +class TestCoreGPUAccelerator(unittest.TestCase): + """CoreGPUAccelerator unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testCoreGPUAccelerator(self): + """Test CoreGPUAccelerator""" + # FIXME: construct object with mandatory attributes with example values + # model = flyteadmin.models.core_gpu_accelerator.CoreGPUAccelerator() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_resource_metadata.py b/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_resource_metadata.py new file mode 100644 index 000000000..c99a8ec41 --- /dev/null +++ b/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_resource_metadata.py @@ -0,0 +1,40 @@ +# coding: utf-8 + +""" + flyteidl/service/admin.proto + + No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 + + OpenAPI spec version: version not set + + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +from __future__ import absolute_import + +import unittest + +import flyteadmin +from flyteadmin.models.core_resource_metadata import CoreResourceMetadata # noqa: E501 +from flyteadmin.rest import ApiException + + +class TestCoreResourceMetadata(unittest.TestCase): + """CoreResourceMetadata unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testCoreResourceMetadata(self): + """Test CoreResourceMetadata""" + # FIXME: construct object with mandatory attributes with example values + # model = flyteadmin.models.core_resource_metadata.CoreResourceMetadata() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/gen/pb_rust/flyteidl.core.rs b/gen/pb_rust/flyteidl.core.rs index ae1ce0882..34a1c6c8a 100644 --- a/gen/pb_rust/flyteidl.core.rs +++ b/gen/pb_rust/flyteidl.core.rs @@ -1022,6 +1022,42 @@ pub mod runtime_metadata { } } } +/// Metadata associated with the GPU accelerator to allocate to a task +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GpuAccelerator { + #[prost(string, tag="1")] + pub device: ::prost::alloc::string::String, + #[prost(oneof="gpu_accelerator::PartitionSizeValue", tags="2, 3")] + pub partition_size_value: ::core::option::Option, +} +/// Nested message and enum types in `GPUAccelerator`. +pub mod gpu_accelerator { + #[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum PartitionSizeValue { + #[prost(bool, tag="2")] + Unpartitioned(bool), + #[prost(string, tag="3")] + PartitionSize(::prost::alloc::string::String), + } +} +/// Additional metadata associated with resources to allocate to a task +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ResourceMetadata { + #[prost(oneof="resource_metadata::AcceleratorValue", tags="1")] + pub accelerator_value: ::core::option::Option, +} +/// Nested message and enum types in `ResourceMetadata`. +pub mod resource_metadata { + #[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum AcceleratorValue { + #[prost(message, tag="1")] + GpuAccelerator(super::GpuAccelerator), + } +} /// Task Metadata #[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] @@ -1059,6 +1095,9 @@ pub struct TaskMetadata { /// identically as, the default PodTemplate configured in FlytePropeller. #[prost(string, tag="12")] pub pod_template_name: ::prost::alloc::string::String, + /// Additional metadata associated with resources to allocate to this task + #[prost(message, optional, tag="13")] + pub resource_metadata: ::core::option::Option, // For interruptible we will populate it at the node level but require it be part of TaskMetadata // for a user to set the value. // We are using oneof instead of bool because otherwise we would be unable to distinguish between value being @@ -2315,6 +2354,9 @@ pub struct TaskNodeOverrides { /// A customizable interface to convey resources requested for a task container. #[prost(message, optional, tag="1")] pub resources: ::core::option::Option, + /// Additional metadata associated with resources to allocate to this task + #[prost(message, optional, tag="2")] + pub resource_metadata: ::core::option::Option, } /// Adjacency list for the workflow. This is created as part of the compilation process. Every process after the compilation /// step uses this created ConnectionSet diff --git a/protos/flyteidl/core/tasks.proto b/protos/flyteidl/core/tasks.proto index 808c196d1..72573d585 100644 --- a/protos/flyteidl/core/tasks.proto +++ b/protos/flyteidl/core/tasks.proto @@ -61,6 +61,22 @@ message RuntimeMetadata { string flavor = 3; } +// Metadata associated with the GPU accelerator to allocate to a task +message GPUAccelerator { + string device = 1; + oneof partition_size_value { + bool unpartitioned = 2; + string partition_size = 3; + } +} + +// Additional metadata associated with resources to allocate to a task +message ResourceMetadata { + oneof accelerator_value { + GPUAccelerator gpu_accelerator = 1; + } +} + // Task Metadata message TaskMetadata { // Indicates whether the system should attempt to lookup this task's output to avoid duplication of work. @@ -106,6 +122,9 @@ message TaskMetadata { // task creates a k8s Pod. If this value is set, the specified PodTemplate will be used instead of, but applied // identically as, the default PodTemplate configured in FlytePropeller. string pod_template_name = 12; + + // Additional metadata associated with resources to allocate to this task + ResourceMetadata resource_metadata = 13; } // A Task structure that uniquely identifies a task in the system diff --git a/protos/flyteidl/core/workflow.proto b/protos/flyteidl/core/workflow.proto index 37d39182e..ed6c589f8 100644 --- a/protos/flyteidl/core/workflow.proto +++ b/protos/flyteidl/core/workflow.proto @@ -279,4 +279,7 @@ message WorkflowTemplate { message TaskNodeOverrides { // A customizable interface to convey resources requested for a task container. Resources resources = 1; + + // Additional metadata associated with resources to allocate to this task + core.ResourceMetadata resource_metadata = 2; } From b130a81f1b922b13c40b91115a17d3f0d529dd42 Mon Sep 17 00:00:00 2001 From: ByronHsu Date: Thu, 21 Sep 2023 14:14:51 -0700 Subject: [PATCH 6/8] [flyteidl] Support attribute access on promises (#439) * init Signed-off-by: byhsu * fix typo Signed-off-by: byhsu --------- Signed-off-by: byhsu Co-authored-by: byhsu --- gen/pb-cpp/flyteidl/core/literals.pb.cc | 2 +- gen/pb-cpp/flyteidl/core/types.pb.cc | 515 +++++- gen/pb-cpp/flyteidl/core/types.pb.h | 338 +++- gen/pb-go/flyteidl/core/types.pb.go | 224 ++- gen/pb-go/flyteidl/core/types.pb.validate.go | 90 + gen/pb-go/flyteidl/service/admin.swagger.json | 18 + .../flyteidl/service/flyteadmin/README.md | 1 + .../service/flyteadmin/api/swagger.yaml | 1512 +++++++++++++--- .../flyteadmin/model_core_output_reference.go | 1 + .../model_core_promise_attribute.go | 15 + gen/pb-go/flyteidl/service/openapi.go | 4 +- gen/pb-java/flyteidl/core/Types.java | 1530 ++++++++++++++--- gen/pb-js/flyteidl.d.ts | 67 + gen/pb-js/flyteidl.js | 175 ++ gen/pb_python/flyteidl/core/types_pb2.py | 14 +- gen/pb_python/flyteidl/core/types_pb2.pyi | 14 +- .../flyteidl/service/flyteadmin/README.md | 1 + .../service/flyteadmin/flyteadmin/__init__.py | 1 + .../flyteadmin/flyteadmin/models/__init__.py | 1 + .../models/core_output_reference.py | 34 +- .../models/core_promise_attribute.py | 141 ++ .../test/test_core_promise_attribute.py | 40 + gen/pb_rust/flyteidl.core.rs | 30 + protos/flyteidl/core/types.proto | 20 + 24 files changed, 4205 insertions(+), 583 deletions(-) create mode 100644 gen/pb-go/flyteidl/service/flyteadmin/model_core_promise_attribute.go create mode 100644 gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_promise_attribute.py create mode 100644 gen/pb_python/flyteidl/service/flyteadmin/test/test_core_promise_attribute.py diff --git a/gen/pb-cpp/flyteidl/core/literals.pb.cc b/gen/pb-cpp/flyteidl/core/literals.pb.cc index 05cd47e49..f2e2d8198 100644 --- a/gen/pb-cpp/flyteidl/core/literals.pb.cc +++ b/gen/pb-cpp/flyteidl/core/literals.pb.cc @@ -29,7 +29,7 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::pro extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::protobuf::internal::SCCInfo<9> scc_info_Literal_flyteidl_2fcore_2fliterals_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_BlobType_flyteidl_2fcore_2ftypes_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Error_flyteidl_2fcore_2ftypes_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_OutputReference_flyteidl_2fcore_2ftypes_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_OutputReference_flyteidl_2fcore_2ftypes_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_SchemaType_flyteidl_2fcore_2ftypes_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<6> scc_info_LiteralType_flyteidl_2fcore_2ftypes_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2fduration_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Duration_google_2fprotobuf_2fduration_2eproto; diff --git a/gen/pb-cpp/flyteidl/core/types.pb.cc b/gen/pb-cpp/flyteidl/core/types.pb.cc index 2e082c62d..95c215475 100644 --- a/gen/pb-cpp/flyteidl/core/types.pb.cc +++ b/gen/pb-cpp/flyteidl/core/types.pb.cc @@ -18,6 +18,7 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_BlobType_flyteidl_2fcore_2ftypes_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_EnumType_flyteidl_2fcore_2ftypes_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_PromiseAttribute_flyteidl_2fcore_2ftypes_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_SchemaType_SchemaColumn_flyteidl_2fcore_2ftypes_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_TypeStructure_flyteidl_2fcore_2ftypes_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_SchemaType_flyteidl_2fcore_2ftypes_2eproto; @@ -78,6 +79,12 @@ class OutputReferenceDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; } _OutputReference_default_instance_; +class PromiseAttributeDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed _instance; + ::google::protobuf::internal::ArenaStringPtr string_value_; + ::google::protobuf::int32 int_value_; +} _PromiseAttribute_default_instance_; class ErrorDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; @@ -219,8 +226,23 @@ static void InitDefaultsOutputReference_flyteidl_2fcore_2ftypes_2eproto() { ::flyteidl::core::OutputReference::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<0> scc_info_OutputReference_flyteidl_2fcore_2ftypes_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsOutputReference_flyteidl_2fcore_2ftypes_2eproto}, {}}; +::google::protobuf::internal::SCCInfo<1> scc_info_OutputReference_flyteidl_2fcore_2ftypes_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsOutputReference_flyteidl_2fcore_2ftypes_2eproto}, { + &scc_info_PromiseAttribute_flyteidl_2fcore_2ftypes_2eproto.base,}}; + +static void InitDefaultsPromiseAttribute_flyteidl_2fcore_2ftypes_2eproto() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::flyteidl::core::_PromiseAttribute_default_instance_; + new (ptr) ::flyteidl::core::PromiseAttribute(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::flyteidl::core::PromiseAttribute::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_PromiseAttribute_flyteidl_2fcore_2ftypes_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsPromiseAttribute_flyteidl_2fcore_2ftypes_2eproto}, {}}; static void InitDefaultsError_flyteidl_2fcore_2ftypes_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -245,10 +267,11 @@ void InitDefaults_flyteidl_2fcore_2ftypes_2eproto() { ::google::protobuf::internal::InitSCC(&scc_info_TypeAnnotation_flyteidl_2fcore_2ftypes_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_LiteralType_flyteidl_2fcore_2ftypes_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_OutputReference_flyteidl_2fcore_2ftypes_2eproto.base); + ::google::protobuf::internal::InitSCC(&scc_info_PromiseAttribute_flyteidl_2fcore_2ftypes_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_Error_flyteidl_2fcore_2ftypes_2eproto.base); } -::google::protobuf::Metadata file_level_metadata_flyteidl_2fcore_2ftypes_2eproto[12]; +::google::protobuf::Metadata file_level_metadata_flyteidl_2fcore_2ftypes_2eproto[13]; const ::google::protobuf::EnumDescriptor* file_level_enum_descriptors_flyteidl_2fcore_2ftypes_2eproto[3]; constexpr ::google::protobuf::ServiceDescriptor const** file_level_service_descriptors_flyteidl_2fcore_2ftypes_2eproto = nullptr; @@ -337,6 +360,15 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fcore_2ftypes_2eproto::of ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::flyteidl::core::OutputReference, node_id_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::OutputReference, var_), + PROTOBUF_FIELD_OFFSET(::flyteidl::core::OutputReference, attr_path_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::flyteidl::core::PromiseAttribute, _internal_metadata_), + ~0u, // no _extensions_ + PROTOBUF_FIELD_OFFSET(::flyteidl::core::PromiseAttribute, _oneof_case_[0]), + ~0u, // no _weak_field_map_ + offsetof(::flyteidl::core::PromiseAttributeDefaultTypeInternal, string_value_), + offsetof(::flyteidl::core::PromiseAttributeDefaultTypeInternal, int_value_), + PROTOBUF_FIELD_OFFSET(::flyteidl::core::PromiseAttribute, value_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::core::Error, _internal_metadata_), ~0u, // no _extensions_ @@ -357,7 +389,8 @@ static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SE { 54, -1, sizeof(::flyteidl::core::TypeAnnotation)}, { 60, -1, sizeof(::flyteidl::core::LiteralType)}, { 77, -1, sizeof(::flyteidl::core::OutputReference)}, - { 84, -1, sizeof(::flyteidl::core::Error)}, + { 85, -1, sizeof(::flyteidl::core::PromiseAttribute)}, + { 93, -1, sizeof(::flyteidl::core::Error)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { @@ -372,13 +405,14 @@ static ::google::protobuf::Message const * const file_default_instances[] = { reinterpret_cast(&::flyteidl::core::_TypeAnnotation_default_instance_), reinterpret_cast(&::flyteidl::core::_LiteralType_default_instance_), reinterpret_cast(&::flyteidl::core::_OutputReference_default_instance_), + reinterpret_cast(&::flyteidl::core::_PromiseAttribute_default_instance_), reinterpret_cast(&::flyteidl::core::_Error_default_instance_), }; ::google::protobuf::internal::AssignDescriptorsTable assign_descriptors_table_flyteidl_2fcore_2ftypes_2eproto = { {}, AddDescriptors_flyteidl_2fcore_2ftypes_2eproto, "flyteidl/core/types.proto", schemas, file_default_instances, TableStruct_flyteidl_2fcore_2ftypes_2eproto::offsets, - file_level_metadata_flyteidl_2fcore_2ftypes_2eproto, 12, file_level_enum_descriptors_flyteidl_2fcore_2ftypes_2eproto, file_level_service_descriptors_flyteidl_2fcore_2ftypes_2eproto, + file_level_metadata_flyteidl_2fcore_2ftypes_2eproto, 13, file_level_enum_descriptors_flyteidl_2fcore_2ftypes_2eproto, file_level_service_descriptors_flyteidl_2fcore_2ftypes_2eproto, }; const char descriptor_table_protodef_flyteidl_2fcore_2ftypes_2eproto[] = @@ -419,19 +453,23 @@ const char descriptor_table_protodef_flyteidl_2fcore_2ftypes_2eproto[] = " \001(\0132\027.google.protobuf.Struct\0221\n\nannotat" "ion\030\t \001(\0132\035.flyteidl.core.TypeAnnotation" "\022/\n\tstructure\030\013 \001(\0132\034.flyteidl.core.Type" - "StructureB\006\n\004type\"/\n\017OutputReference\022\017\n\007" - "node_id\030\001 \001(\t\022\013\n\003var\030\002 \001(\t\"0\n\005Error\022\026\n\016f" - "ailed_node_id\030\001 \001(\t\022\017\n\007message\030\002 \001(\t*\206\001\n" - "\nSimpleType\022\010\n\004NONE\020\000\022\013\n\007INTEGER\020\001\022\t\n\005FL" - "OAT\020\002\022\n\n\006STRING\020\003\022\013\n\007BOOLEAN\020\004\022\014\n\010DATETI" - "ME\020\005\022\014\n\010DURATION\020\006\022\n\n\006BINARY\020\007\022\t\n\005ERROR\020" - "\010\022\n\n\006STRUCT\020\tB6Z4github.com/flyteorg/fly" - "teidl/gen/pb-go/flyteidl/coreb\006proto3" + "StructureB\006\n\004type\"c\n\017OutputReference\022\017\n\007" + "node_id\030\001 \001(\t\022\013\n\003var\030\002 \001(\t\0222\n\tattr_path\030" + "\003 \003(\0132\037.flyteidl.core.PromiseAttribute\"H" + "\n\020PromiseAttribute\022\026\n\014string_value\030\001 \001(\t" + "H\000\022\023\n\tint_value\030\002 \001(\005H\000B\007\n\005value\"0\n\005Erro" + "r\022\026\n\016failed_node_id\030\001 \001(\t\022\017\n\007message\030\002 \001" + "(\t*\206\001\n\nSimpleType\022\010\n\004NONE\020\000\022\013\n\007INTEGER\020\001" + "\022\t\n\005FLOAT\020\002\022\n\n\006STRING\020\003\022\013\n\007BOOLEAN\020\004\022\014\n\010" + "DATETIME\020\005\022\014\n\010DURATION\020\006\022\n\n\006BINARY\020\007\022\t\n\005" + "ERROR\020\010\022\n\n\006STRUCT\020\tB6Z4github.com/flyteo" + "rg/flyteidl/gen/pb-go/flyteidl/coreb\006pro" + "to3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2ftypes_2eproto = { false, InitDefaults_flyteidl_2fcore_2ftypes_2eproto, descriptor_table_protodef_flyteidl_2fcore_2ftypes_2eproto, - "flyteidl/core/types.proto", &assign_descriptors_table_flyteidl_2fcore_2ftypes_2eproto, 1797, + "flyteidl/core/types.proto", &assign_descriptors_table_flyteidl_2fcore_2ftypes_2eproto, 1923, }; void AddDescriptors_flyteidl_2fcore_2ftypes_2eproto() { @@ -4577,6 +4615,7 @@ class OutputReference::HasBitSetters { #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int OutputReference::kNodeIdFieldNumber; const int OutputReference::kVarFieldNumber; +const int OutputReference::kAttrPathFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 OutputReference::OutputReference() @@ -4586,7 +4625,8 @@ OutputReference::OutputReference() } OutputReference::OutputReference(const OutputReference& from) : ::google::protobuf::Message(), - _internal_metadata_(nullptr) { + _internal_metadata_(nullptr), + attr_path_(from.attr_path_) { _internal_metadata_.MergeFrom(from._internal_metadata_); node_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.node_id().size() > 0) { @@ -4631,6 +4671,7 @@ void OutputReference::Clear() { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + attr_path_.Clear(); node_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); var_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); @@ -4681,6 +4722,22 @@ const char* OutputReference::_InternalParse(const char* begin, const char* end, ptr += size; break; } + // repeated .flyteidl.core.PromiseAttribute attr_path = 3; + case 3: { + if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; + do { + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + parser_till_end = ::flyteidl::core::PromiseAttribute::_InternalParse; + object = msg->add_attr_path(); + if (size > end - ptr) goto len_delim_till_end; + ptr += size; + GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( + {parser_till_end, object}, ptr - size, ptr)); + if (ptr >= end) break; + } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 26 && (ptr += 1)); + break; + } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -4745,6 +4802,17 @@ bool OutputReference::MergePartialFromCodedStream( break; } + // repeated .flyteidl.core.PromiseAttribute attr_path = 3; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, add_attr_path())); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -4792,6 +4860,15 @@ void OutputReference::SerializeWithCachedSizes( 2, this->var(), output); } + // repeated .flyteidl.core.PromiseAttribute attr_path = 3; + for (unsigned int i = 0, + n = static_cast(this->attr_path_size()); i < n; i++) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 3, + this->attr_path(static_cast(i)), + output); + } + if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -4827,6 +4904,14 @@ ::google::protobuf::uint8* OutputReference::InternalSerializeWithCachedSizesToAr 2, this->var(), target); } + // repeated .flyteidl.core.PromiseAttribute attr_path = 3; + for (unsigned int i = 0, + n = static_cast(this->attr_path_size()); i < n; i++) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 3, this->attr_path(static_cast(i)), target); + } + if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -4848,6 +4933,17 @@ size_t OutputReference::ByteSizeLong() const { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // repeated .flyteidl.core.PromiseAttribute attr_path = 3; + { + unsigned int count = static_cast(this->attr_path_size()); + total_size += 1UL * count; + for (unsigned int i = 0; i < count; i++) { + total_size += + ::google::protobuf::internal::WireFormatLite::MessageSize( + this->attr_path(static_cast(i))); + } + } + // string node_id = 1; if (this->node_id().size() > 0) { total_size += 1 + @@ -4889,6 +4985,7 @@ void OutputReference::MergeFrom(const OutputReference& from) { ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; + attr_path_.MergeFrom(from.attr_path_); if (from.node_id().size() > 0) { node_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.node_id_); @@ -4924,6 +5021,7 @@ void OutputReference::Swap(OutputReference* other) { void OutputReference::InternalSwap(OutputReference* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); + CastToBase(&attr_path_)->InternalSwap(CastToBase(&other->attr_path_)); node_id_.Swap(&other->node_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); var_.Swap(&other->var_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), @@ -4936,6 +5034,390 @@ ::google::protobuf::Metadata OutputReference::GetMetadata() const { } +// =================================================================== + +void PromiseAttribute::InitAsDefaultInstance() { + ::flyteidl::core::_PromiseAttribute_default_instance_.string_value_.UnsafeSetDefault( + &::google::protobuf::internal::GetEmptyStringAlreadyInited()); + ::flyteidl::core::_PromiseAttribute_default_instance_.int_value_ = 0; +} +class PromiseAttribute::HasBitSetters { + public: +}; + +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int PromiseAttribute::kStringValueFieldNumber; +const int PromiseAttribute::kIntValueFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +PromiseAttribute::PromiseAttribute() + : ::google::protobuf::Message(), _internal_metadata_(nullptr) { + SharedCtor(); + // @@protoc_insertion_point(constructor:flyteidl.core.PromiseAttribute) +} +PromiseAttribute::PromiseAttribute(const PromiseAttribute& from) + : ::google::protobuf::Message(), + _internal_metadata_(nullptr) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + clear_has_value(); + switch (from.value_case()) { + case kStringValue: { + set_string_value(from.string_value()); + break; + } + case kIntValue: { + set_int_value(from.int_value()); + break; + } + case VALUE_NOT_SET: { + break; + } + } + // @@protoc_insertion_point(copy_constructor:flyteidl.core.PromiseAttribute) +} + +void PromiseAttribute::SharedCtor() { + ::google::protobuf::internal::InitSCC( + &scc_info_PromiseAttribute_flyteidl_2fcore_2ftypes_2eproto.base); + clear_has_value(); +} + +PromiseAttribute::~PromiseAttribute() { + // @@protoc_insertion_point(destructor:flyteidl.core.PromiseAttribute) + SharedDtor(); +} + +void PromiseAttribute::SharedDtor() { + if (has_value()) { + clear_value(); + } +} + +void PromiseAttribute::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const PromiseAttribute& PromiseAttribute::default_instance() { + ::google::protobuf::internal::InitSCC(&::scc_info_PromiseAttribute_flyteidl_2fcore_2ftypes_2eproto.base); + return *internal_default_instance(); +} + + +void PromiseAttribute::clear_value() { +// @@protoc_insertion_point(one_of_clear_start:flyteidl.core.PromiseAttribute) + switch (value_case()) { + case kStringValue: { + value_.string_value_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + break; + } + case kIntValue: { + // No need to clear + break; + } + case VALUE_NOT_SET: { + break; + } + } + _oneof_case_[0] = VALUE_NOT_SET; +} + + +void PromiseAttribute::Clear() { +// @@protoc_insertion_point(message_clear_start:flyteidl.core.PromiseAttribute) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + clear_value(); + _internal_metadata_.Clear(); +} + +#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER +const char* PromiseAttribute::_InternalParse(const char* begin, const char* end, void* object, + ::google::protobuf::internal::ParseContext* ctx) { + auto msg = static_cast(object); + ::google::protobuf::int32 size; (void)size; + int depth; (void)depth; + ::google::protobuf::uint32 tag; + ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; + auto ptr = begin; + while (ptr < end) { + ptr = ::google::protobuf::io::Parse32(ptr, &tag); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + switch (tag >> 3) { + // string string_value = 1; + case 1: { + if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + ctx->extra_parse_data().SetFieldName("flyteidl.core.PromiseAttribute.string_value"); + object = msg->mutable_string_value(); + if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { + parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; + goto string_till_end; + } + GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); + ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); + ptr += size; + break; + } + // int32 int_value = 2; + case 2: { + if (static_cast<::google::protobuf::uint8>(tag) != 16) goto handle_unusual; + msg->set_int_value(::google::protobuf::internal::ReadVarint(&ptr)); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + break; + } + default: { + handle_unusual: + if ((tag & 7) == 4 || tag == 0) { + ctx->EndGroup(tag); + return ptr; + } + auto res = UnknownFieldParse(tag, {_InternalParse, msg}, + ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); + ptr = res.first; + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); + if (res.second) return ptr; + } + } // switch + } // while + return ptr; +string_till_end: + static_cast<::std::string*>(object)->clear(); + static_cast<::std::string*>(object)->reserve(size); + goto len_delim_till_end; +len_delim_till_end: + return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, + {parser_till_end, object}, size); +} +#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER +bool PromiseAttribute::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:flyteidl.core.PromiseAttribute) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string string_value = 1; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_string_value())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->string_value().data(), static_cast(this->string_value().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "flyteidl.core.PromiseAttribute.string_value")); + } else { + goto handle_unusual; + } + break; + } + + // int32 int_value = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == (16 & 0xFF)) { + clear_value(); + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( + input, &value_.int_value_))); + set_has_int_value(); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:flyteidl.core.PromiseAttribute) + return true; +failure: + // @@protoc_insertion_point(parse_failure:flyteidl.core.PromiseAttribute) + return false; +#undef DO_ +} +#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + +void PromiseAttribute::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:flyteidl.core.PromiseAttribute) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string string_value = 1; + if (has_string_value()) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->string_value().data(), static_cast(this->string_value().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.PromiseAttribute.string_value"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->string_value(), output); + } + + // int32 int_value = 2; + if (has_int_value()) { + ::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->int_value(), output); + } + + if (_internal_metadata_.have_unknown_fields()) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + _internal_metadata_.unknown_fields(), output); + } + // @@protoc_insertion_point(serialize_end:flyteidl.core.PromiseAttribute) +} + +::google::protobuf::uint8* PromiseAttribute::InternalSerializeWithCachedSizesToArray( + ::google::protobuf::uint8* target) const { + // @@protoc_insertion_point(serialize_to_array_start:flyteidl.core.PromiseAttribute) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string string_value = 1; + if (has_string_value()) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->string_value().data(), static_cast(this->string_value().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.PromiseAttribute.string_value"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->string_value(), target); + } + + // int32 int_value = 2; + if (has_int_value()) { + target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->int_value(), target); + } + + if (_internal_metadata_.have_unknown_fields()) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields(), target); + } + // @@protoc_insertion_point(serialize_to_array_end:flyteidl.core.PromiseAttribute) + return target; +} + +size_t PromiseAttribute::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:flyteidl.core.PromiseAttribute) + size_t total_size = 0; + + if (_internal_metadata_.have_unknown_fields()) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + _internal_metadata_.unknown_fields()); + } + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + switch (value_case()) { + // string string_value = 1; + case kStringValue: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->string_value()); + break; + } + // int32 int_value = 2; + case kIntValue: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::Int32Size( + this->int_value()); + break; + } + case VALUE_NOT_SET: { + break; + } + } + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void PromiseAttribute::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.core.PromiseAttribute) + GOOGLE_DCHECK_NE(&from, this); + const PromiseAttribute* source = + ::google::protobuf::DynamicCastToGenerated( + &from); + if (source == nullptr) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.core.PromiseAttribute) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.core.PromiseAttribute) + MergeFrom(*source); + } +} + +void PromiseAttribute::MergeFrom(const PromiseAttribute& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.core.PromiseAttribute) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + switch (from.value_case()) { + case kStringValue: { + set_string_value(from.string_value()); + break; + } + case kIntValue: { + set_int_value(from.int_value()); + break; + } + case VALUE_NOT_SET: { + break; + } + } +} + +void PromiseAttribute::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.core.PromiseAttribute) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void PromiseAttribute::CopyFrom(const PromiseAttribute& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.core.PromiseAttribute) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool PromiseAttribute::IsInitialized() const { + return true; +} + +void PromiseAttribute::Swap(PromiseAttribute* other) { + if (other == this) return; + InternalSwap(other); +} +void PromiseAttribute::InternalSwap(PromiseAttribute* other) { + using std::swap; + _internal_metadata_.Swap(&other->_internal_metadata_); + swap(value_, other->value_); + swap(_oneof_case_[0], other->_oneof_case_[0]); +} + +::google::protobuf::Metadata PromiseAttribute::GetMetadata() const { + ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftypes_2eproto); + return ::file_level_metadata_flyteidl_2fcore_2ftypes_2eproto[kIndexInFileMessages]; +} + + // =================================================================== void Error::InitAsDefaultInstance() { @@ -5344,6 +5826,9 @@ template<> PROTOBUF_NOINLINE ::flyteidl::core::LiteralType* Arena::CreateMaybeMe template<> PROTOBUF_NOINLINE ::flyteidl::core::OutputReference* Arena::CreateMaybeMessage< ::flyteidl::core::OutputReference >(Arena* arena) { return Arena::CreateInternal< ::flyteidl::core::OutputReference >(arena); } +template<> PROTOBUF_NOINLINE ::flyteidl::core::PromiseAttribute* Arena::CreateMaybeMessage< ::flyteidl::core::PromiseAttribute >(Arena* arena) { + return Arena::CreateInternal< ::flyteidl::core::PromiseAttribute >(arena); +} template<> PROTOBUF_NOINLINE ::flyteidl::core::Error* Arena::CreateMaybeMessage< ::flyteidl::core::Error >(Arena* arena) { return Arena::CreateInternal< ::flyteidl::core::Error >(arena); } diff --git a/gen/pb-cpp/flyteidl/core/types.pb.h b/gen/pb-cpp/flyteidl/core/types.pb.h index 83eedacc8..8c2df9db1 100644 --- a/gen/pb-cpp/flyteidl/core/types.pb.h +++ b/gen/pb-cpp/flyteidl/core/types.pb.h @@ -43,7 +43,7 @@ struct TableStruct_flyteidl_2fcore_2ftypes_2eproto { PROTOBUF_SECTION_VARIABLE(protodesc_cold); static const ::google::protobuf::internal::AuxillaryParseTableField aux[] PROTOBUF_SECTION_VARIABLE(protodesc_cold); - static const ::google::protobuf::internal::ParseTable schema[12] + static const ::google::protobuf::internal::ParseTable schema[13] PROTOBUF_SECTION_VARIABLE(protodesc_cold); static const ::google::protobuf::internal::FieldMetadata field_metadata[]; static const ::google::protobuf::internal::SerializationTable serialization_table[]; @@ -67,6 +67,9 @@ extern LiteralTypeDefaultTypeInternal _LiteralType_default_instance_; class OutputReference; class OutputReferenceDefaultTypeInternal; extern OutputReferenceDefaultTypeInternal _OutputReference_default_instance_; +class PromiseAttribute; +class PromiseAttributeDefaultTypeInternal; +extern PromiseAttributeDefaultTypeInternal _PromiseAttribute_default_instance_; class SchemaType; class SchemaTypeDefaultTypeInternal; extern SchemaTypeDefaultTypeInternal _SchemaType_default_instance_; @@ -97,6 +100,7 @@ template<> ::flyteidl::core::EnumType* Arena::CreateMaybeMessage<::flyteidl::cor template<> ::flyteidl::core::Error* Arena::CreateMaybeMessage<::flyteidl::core::Error>(Arena*); template<> ::flyteidl::core::LiteralType* Arena::CreateMaybeMessage<::flyteidl::core::LiteralType>(Arena*); template<> ::flyteidl::core::OutputReference* Arena::CreateMaybeMessage<::flyteidl::core::OutputReference>(Arena*); +template<> ::flyteidl::core::PromiseAttribute* Arena::CreateMaybeMessage<::flyteidl::core::PromiseAttribute>(Arena*); template<> ::flyteidl::core::SchemaType* Arena::CreateMaybeMessage<::flyteidl::core::SchemaType>(Arena*); template<> ::flyteidl::core::SchemaType_SchemaColumn* Arena::CreateMaybeMessage<::flyteidl::core::SchemaType_SchemaColumn>(Arena*); template<> ::flyteidl::core::StructuredDatasetType* Arena::CreateMaybeMessage<::flyteidl::core::StructuredDatasetType>(Arena*); @@ -1736,6 +1740,18 @@ class OutputReference final : // accessors ------------------------------------------------------- + // repeated .flyteidl.core.PromiseAttribute attr_path = 3; + int attr_path_size() const; + void clear_attr_path(); + static const int kAttrPathFieldNumber = 3; + ::flyteidl::core::PromiseAttribute* mutable_attr_path(int index); + ::google::protobuf::RepeatedPtrField< ::flyteidl::core::PromiseAttribute >* + mutable_attr_path(); + const ::flyteidl::core::PromiseAttribute& attr_path(int index) const; + ::flyteidl::core::PromiseAttribute* add_attr_path(); + const ::google::protobuf::RepeatedPtrField< ::flyteidl::core::PromiseAttribute >& + attr_path() const; + // string node_id = 1; void clear_node_id(); static const int kNodeIdFieldNumber = 1; @@ -1769,6 +1785,7 @@ class OutputReference final : class HasBitSetters; ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::RepeatedPtrField< ::flyteidl::core::PromiseAttribute > attr_path_; ::google::protobuf::internal::ArenaStringPtr node_id_; ::google::protobuf::internal::ArenaStringPtr var_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -1776,6 +1793,157 @@ class OutputReference final : }; // ------------------------------------------------------------------- +class PromiseAttribute final : + public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.core.PromiseAttribute) */ { + public: + PromiseAttribute(); + virtual ~PromiseAttribute(); + + PromiseAttribute(const PromiseAttribute& from); + + inline PromiseAttribute& operator=(const PromiseAttribute& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + PromiseAttribute(PromiseAttribute&& from) noexcept + : PromiseAttribute() { + *this = ::std::move(from); + } + + inline PromiseAttribute& operator=(PromiseAttribute&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor() { + return default_instance().GetDescriptor(); + } + static const PromiseAttribute& default_instance(); + + enum ValueCase { + kStringValue = 1, + kIntValue = 2, + VALUE_NOT_SET = 0, + }; + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const PromiseAttribute* internal_default_instance() { + return reinterpret_cast( + &_PromiseAttribute_default_instance_); + } + static constexpr int kIndexInFileMessages = + 11; + + void Swap(PromiseAttribute* other); + friend void swap(PromiseAttribute& a, PromiseAttribute& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline PromiseAttribute* New() const final { + return CreateMaybeMessage(nullptr); + } + + PromiseAttribute* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const PromiseAttribute& from); + void MergeFrom(const PromiseAttribute& from); + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + static const char* _InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx); + ::google::protobuf::internal::ParseFunc _ParseFunc() const final { return _InternalParse; } + #else + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(PromiseAttribute* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return nullptr; + } + inline void* MaybeArenaPtr() const { + return nullptr; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string string_value = 1; + private: + bool has_string_value() const; + public: + void clear_string_value(); + static const int kStringValueFieldNumber = 1; + const ::std::string& string_value() const; + void set_string_value(const ::std::string& value); + #if LANG_CXX11 + void set_string_value(::std::string&& value); + #endif + void set_string_value(const char* value); + void set_string_value(const char* value, size_t size); + ::std::string* mutable_string_value(); + ::std::string* release_string_value(); + void set_allocated_string_value(::std::string* string_value); + + // int32 int_value = 2; + private: + bool has_int_value() const; + public: + void clear_int_value(); + static const int kIntValueFieldNumber = 2; + ::google::protobuf::int32 int_value() const; + void set_int_value(::google::protobuf::int32 value); + + void clear_value(); + ValueCase value_case() const; + // @@protoc_insertion_point(class_scope:flyteidl.core.PromiseAttribute) + private: + class HasBitSetters; + void set_has_string_value(); + void set_has_int_value(); + + inline bool has_value() const; + inline void clear_has_value(); + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + union ValueUnion { + ValueUnion() {} + ::google::protobuf::internal::ArenaStringPtr string_value_; + ::google::protobuf::int32 int_value_; + } value_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + ::google::protobuf::uint32 _oneof_case_[1]; + + friend struct ::TableStruct_flyteidl_2fcore_2ftypes_2eproto; +}; +// ------------------------------------------------------------------- + class Error final : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.core.Error) */ { public: @@ -1814,7 +1982,7 @@ class Error final : &_Error_default_instance_); } static constexpr int kIndexInFileMessages = - 11; + 12; void Swap(Error* other); friend void swap(Error& a, Error& b) { @@ -3194,6 +3362,170 @@ inline void OutputReference::set_allocated_var(::std::string* var) { // @@protoc_insertion_point(field_set_allocated:flyteidl.core.OutputReference.var) } +// repeated .flyteidl.core.PromiseAttribute attr_path = 3; +inline int OutputReference::attr_path_size() const { + return attr_path_.size(); +} +inline void OutputReference::clear_attr_path() { + attr_path_.Clear(); +} +inline ::flyteidl::core::PromiseAttribute* OutputReference::mutable_attr_path(int index) { + // @@protoc_insertion_point(field_mutable:flyteidl.core.OutputReference.attr_path) + return attr_path_.Mutable(index); +} +inline ::google::protobuf::RepeatedPtrField< ::flyteidl::core::PromiseAttribute >* +OutputReference::mutable_attr_path() { + // @@protoc_insertion_point(field_mutable_list:flyteidl.core.OutputReference.attr_path) + return &attr_path_; +} +inline const ::flyteidl::core::PromiseAttribute& OutputReference::attr_path(int index) const { + // @@protoc_insertion_point(field_get:flyteidl.core.OutputReference.attr_path) + return attr_path_.Get(index); +} +inline ::flyteidl::core::PromiseAttribute* OutputReference::add_attr_path() { + // @@protoc_insertion_point(field_add:flyteidl.core.OutputReference.attr_path) + return attr_path_.Add(); +} +inline const ::google::protobuf::RepeatedPtrField< ::flyteidl::core::PromiseAttribute >& +OutputReference::attr_path() const { + // @@protoc_insertion_point(field_list:flyteidl.core.OutputReference.attr_path) + return attr_path_; +} + +// ------------------------------------------------------------------- + +// PromiseAttribute + +// string string_value = 1; +inline bool PromiseAttribute::has_string_value() const { + return value_case() == kStringValue; +} +inline void PromiseAttribute::set_has_string_value() { + _oneof_case_[0] = kStringValue; +} +inline void PromiseAttribute::clear_string_value() { + if (has_string_value()) { + value_.string_value_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + clear_has_value(); + } +} +inline const ::std::string& PromiseAttribute::string_value() const { + // @@protoc_insertion_point(field_get:flyteidl.core.PromiseAttribute.string_value) + if (has_string_value()) { + return value_.string_value_.GetNoArena(); + } + return *&::google::protobuf::internal::GetEmptyStringAlreadyInited(); +} +inline void PromiseAttribute::set_string_value(const ::std::string& value) { + // @@protoc_insertion_point(field_set:flyteidl.core.PromiseAttribute.string_value) + if (!has_string_value()) { + clear_value(); + set_has_string_value(); + value_.string_value_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + value_.string_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:flyteidl.core.PromiseAttribute.string_value) +} +#if LANG_CXX11 +inline void PromiseAttribute::set_string_value(::std::string&& value) { + // @@protoc_insertion_point(field_set:flyteidl.core.PromiseAttribute.string_value) + if (!has_string_value()) { + clear_value(); + set_has_string_value(); + value_.string_value_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + value_.string_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:flyteidl.core.PromiseAttribute.string_value) +} +#endif +inline void PromiseAttribute::set_string_value(const char* value) { + GOOGLE_DCHECK(value != nullptr); + if (!has_string_value()) { + clear_value(); + set_has_string_value(); + value_.string_value_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + value_.string_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(value)); + // @@protoc_insertion_point(field_set_char:flyteidl.core.PromiseAttribute.string_value) +} +inline void PromiseAttribute::set_string_value(const char* value, size_t size) { + if (!has_string_value()) { + clear_value(); + set_has_string_value(); + value_.string_value_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + value_.string_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string( + reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:flyteidl.core.PromiseAttribute.string_value) +} +inline ::std::string* PromiseAttribute::mutable_string_value() { + if (!has_string_value()) { + clear_value(); + set_has_string_value(); + value_.string_value_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + // @@protoc_insertion_point(field_mutable:flyteidl.core.PromiseAttribute.string_value) + return value_.string_value_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* PromiseAttribute::release_string_value() { + // @@protoc_insertion_point(field_release:flyteidl.core.PromiseAttribute.string_value) + if (has_string_value()) { + clear_has_value(); + return value_.string_value_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } else { + return nullptr; + } +} +inline void PromiseAttribute::set_allocated_string_value(::std::string* string_value) { + if (has_value()) { + clear_value(); + } + if (string_value != nullptr) { + set_has_string_value(); + value_.string_value_.UnsafeSetDefault(string_value); + } + // @@protoc_insertion_point(field_set_allocated:flyteidl.core.PromiseAttribute.string_value) +} + +// int32 int_value = 2; +inline bool PromiseAttribute::has_int_value() const { + return value_case() == kIntValue; +} +inline void PromiseAttribute::set_has_int_value() { + _oneof_case_[0] = kIntValue; +} +inline void PromiseAttribute::clear_int_value() { + if (has_int_value()) { + value_.int_value_ = 0; + clear_has_value(); + } +} +inline ::google::protobuf::int32 PromiseAttribute::int_value() const { + // @@protoc_insertion_point(field_get:flyteidl.core.PromiseAttribute.int_value) + if (has_int_value()) { + return value_.int_value_; + } + return 0; +} +inline void PromiseAttribute::set_int_value(::google::protobuf::int32 value) { + if (!has_int_value()) { + clear_value(); + set_has_int_value(); + } + value_.int_value_ = value; + // @@protoc_insertion_point(field_set:flyteidl.core.PromiseAttribute.int_value) +} + +inline bool PromiseAttribute::has_value() const { + return value_case() != VALUE_NOT_SET; +} +inline void PromiseAttribute::clear_has_value() { + _oneof_case_[0] = VALUE_NOT_SET; +} +inline PromiseAttribute::ValueCase PromiseAttribute::value_case() const { + return PromiseAttribute::ValueCase(_oneof_case_[0]); +} // ------------------------------------------------------------------- // Error @@ -3329,6 +3661,8 @@ inline void Error::set_allocated_message(::std::string* message) { // ------------------------------------------------------------------- +// ------------------------------------------------------------------- + // @@protoc_insertion_point(namespace_scope) diff --git a/gen/pb-go/flyteidl/core/types.pb.go b/gen/pb-go/flyteidl/core/types.pb.go index 6c376be1d..7ed48e95d 100644 --- a/gen/pb-go/flyteidl/core/types.pb.go +++ b/gen/pb-go/flyteidl/core/types.pb.go @@ -779,10 +779,11 @@ type OutputReference struct { // Node id must exist at the graph layer. NodeId string `protobuf:"bytes,1,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty"` // Variable name must refer to an output variable for the node. - Var string `protobuf:"bytes,2,opt,name=var,proto3" json:"var,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Var string `protobuf:"bytes,2,opt,name=var,proto3" json:"var,omitempty"` + AttrPath []*PromiseAttribute `protobuf:"bytes,3,rep,name=attr_path,json=attrPath,proto3" json:"attr_path,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *OutputReference) Reset() { *m = OutputReference{} } @@ -824,6 +825,93 @@ func (m *OutputReference) GetVar() string { return "" } +func (m *OutputReference) GetAttrPath() []*PromiseAttribute { + if m != nil { + return m.AttrPath + } + return nil +} + +type PromiseAttribute struct { + // Types that are valid to be assigned to Value: + // *PromiseAttribute_StringValue + // *PromiseAttribute_IntValue + Value isPromiseAttribute_Value `protobuf_oneof:"value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PromiseAttribute) Reset() { *m = PromiseAttribute{} } +func (m *PromiseAttribute) String() string { return proto.CompactTextString(m) } +func (*PromiseAttribute) ProtoMessage() {} +func (*PromiseAttribute) Descriptor() ([]byte, []int) { + return fileDescriptor_51e8add38f4caaed, []int{9} +} + +func (m *PromiseAttribute) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PromiseAttribute.Unmarshal(m, b) +} +func (m *PromiseAttribute) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PromiseAttribute.Marshal(b, m, deterministic) +} +func (m *PromiseAttribute) XXX_Merge(src proto.Message) { + xxx_messageInfo_PromiseAttribute.Merge(m, src) +} +func (m *PromiseAttribute) XXX_Size() int { + return xxx_messageInfo_PromiseAttribute.Size(m) +} +func (m *PromiseAttribute) XXX_DiscardUnknown() { + xxx_messageInfo_PromiseAttribute.DiscardUnknown(m) +} + +var xxx_messageInfo_PromiseAttribute proto.InternalMessageInfo + +type isPromiseAttribute_Value interface { + isPromiseAttribute_Value() +} + +type PromiseAttribute_StringValue struct { + StringValue string `protobuf:"bytes,1,opt,name=string_value,json=stringValue,proto3,oneof"` +} + +type PromiseAttribute_IntValue struct { + IntValue int32 `protobuf:"varint,2,opt,name=int_value,json=intValue,proto3,oneof"` +} + +func (*PromiseAttribute_StringValue) isPromiseAttribute_Value() {} + +func (*PromiseAttribute_IntValue) isPromiseAttribute_Value() {} + +func (m *PromiseAttribute) GetValue() isPromiseAttribute_Value { + if m != nil { + return m.Value + } + return nil +} + +func (m *PromiseAttribute) GetStringValue() string { + if x, ok := m.GetValue().(*PromiseAttribute_StringValue); ok { + return x.StringValue + } + return "" +} + +func (m *PromiseAttribute) GetIntValue() int32 { + if x, ok := m.GetValue().(*PromiseAttribute_IntValue); ok { + return x.IntValue + } + return 0 +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*PromiseAttribute) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*PromiseAttribute_StringValue)(nil), + (*PromiseAttribute_IntValue)(nil), + } +} + // Represents an error thrown from a node. type Error struct { // The node id that threw the error. @@ -839,7 +927,7 @@ func (m *Error) Reset() { *m = Error{} } func (m *Error) String() string { return proto.CompactTextString(m) } func (*Error) ProtoMessage() {} func (*Error) Descriptor() ([]byte, []int) { - return fileDescriptor_51e8add38f4caaed, []int{9} + return fileDescriptor_51e8add38f4caaed, []int{10} } func (m *Error) XXX_Unmarshal(b []byte) error { @@ -889,70 +977,76 @@ func init() { proto.RegisterType((*TypeAnnotation)(nil), "flyteidl.core.TypeAnnotation") proto.RegisterType((*LiteralType)(nil), "flyteidl.core.LiteralType") proto.RegisterType((*OutputReference)(nil), "flyteidl.core.OutputReference") + proto.RegisterType((*PromiseAttribute)(nil), "flyteidl.core.PromiseAttribute") proto.RegisterType((*Error)(nil), "flyteidl.core.Error") } func init() { proto.RegisterFile("flyteidl/core/types.proto", fileDescriptor_51e8add38f4caaed) } var fileDescriptor_51e8add38f4caaed = []byte{ - // 934 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0xdd, 0x6e, 0xe3, 0x44, - 0x14, 0x8e, 0x9b, 0x5f, 0x9f, 0xa4, 0x59, 0x6b, 0xa0, 0xd4, 0xad, 0x16, 0xa9, 0x58, 0x2b, 0x54, - 0xad, 0xb4, 0x09, 0x4a, 0x51, 0xd1, 0x22, 0x56, 0x22, 0x69, 0x4d, 0x13, 0x6d, 0x36, 0x41, 0x53, - 0x17, 0x09, 0x2e, 0x88, 0xc6, 0xc9, 0x24, 0x6b, 0xc9, 0xf6, 0x44, 0xf6, 0xb8, 0x22, 0x2f, 0xc0, - 0x7b, 0x70, 0xc5, 0x4b, 0x70, 0xcf, 0x2d, 0x8f, 0x84, 0x66, 0xfc, 0x17, 0x9b, 0x50, 0xf5, 0x6e, - 0x8e, 0xcf, 0xf7, 0x7d, 0x33, 0x73, 0xce, 0x37, 0x33, 0x86, 0xb3, 0xb5, 0xbb, 0xe3, 0xd4, 0x59, - 0xb9, 0xfd, 0x25, 0x0b, 0x68, 0x9f, 0xef, 0xb6, 0x34, 0xec, 0x6d, 0x03, 0xc6, 0x19, 0x3a, 0x4e, - 0x53, 0x3d, 0x91, 0x3a, 0x7f, 0xb9, 0x61, 0x6c, 0xe3, 0xd2, 0xbe, 0x4c, 0xda, 0xd1, 0xba, 0x1f, - 0xf2, 0x20, 0x5a, 0xf2, 0x18, 0x6c, 0xfc, 0x71, 0x04, 0x70, 0xbf, 0xfc, 0x48, 0x3d, 0x62, 0xed, - 0xb6, 0x14, 0x7d, 0x0f, 0xcd, 0x25, 0x73, 0x23, 0xcf, 0x0f, 0xf5, 0xea, 0x45, 0xf5, 0xb2, 0x3d, - 0xf8, 0xb2, 0x57, 0x50, 0xeb, 0xe5, 0xd8, 0x64, 0x78, 0x23, 0xe1, 0x38, 0xa5, 0x9d, 0xff, 0xa3, - 0x40, 0x67, 0x3f, 0x83, 0x10, 0xd4, 0x7c, 0xe2, 0x51, 0x5d, 0xb9, 0x50, 0x2e, 0x55, 0x2c, 0xc7, - 0xe8, 0x3d, 0xd4, 0xc4, 0x8a, 0xf5, 0xa3, 0x0b, 0xe5, 0xb2, 0x3b, 0xf8, 0xe6, 0x79, 0x73, 0x14, - 0x02, 0x91, 0xc5, 0x52, 0xc4, 0x58, 0x80, 0x56, 0xce, 0xa0, 0x36, 0x34, 0x27, 0x33, 0xcb, 0xbc, - 0x33, 0xb1, 0x56, 0x41, 0x2a, 0xd4, 0x7f, 0x98, 0xce, 0x87, 0x96, 0xa6, 0x20, 0x80, 0xc6, 0xbd, - 0x85, 0x27, 0xb3, 0x3b, 0xed, 0x48, 0x60, 0x46, 0xf3, 0xf9, 0xd4, 0x1c, 0xce, 0xb4, 0x2a, 0xea, - 0x40, 0xeb, 0x76, 0x68, 0x99, 0xd6, 0xe4, 0x83, 0xa9, 0xd5, 0x64, 0xf4, 0x80, 0x87, 0xd6, 0x64, - 0x3e, 0xd3, 0xea, 0xc6, 0xdf, 0x47, 0x70, 0x72, 0x2f, 0x8b, 0x16, 0x05, 0x74, 0x75, 0x4b, 0x38, - 0x09, 0x29, 0x97, 0xd3, 0x4c, 0xf3, 0x72, 0x29, 0xb2, 0x5c, 0x83, 0xf2, 0x56, 0x0e, 0xd1, 0x7a, - 0xc9, 0xb8, 0x54, 0x3a, 0xf4, 0x19, 0x34, 0xd6, 0x2c, 0xf0, 0x08, 0x97, 0x75, 0x51, 0x71, 0x12, - 0xa1, 0xaf, 0xe0, 0x53, 0xfa, 0x1b, 0xa7, 0x81, 0x4f, 0xdc, 0x45, 0x28, 0x77, 0xba, 0x90, 0xd5, - 0xab, 0x4a, 0x14, 0x4a, 0x73, 0x7b, 0x6d, 0x1c, 0xc0, 0x49, 0x99, 0x61, 0xef, 0x38, 0x0d, 0xf5, - 0xda, 0x85, 0x72, 0xd9, 0xc1, 0x9f, 0x14, 0x29, 0x23, 0x91, 0x3a, 0xb7, 0xe1, 0xb8, 0xb0, 0xae, - 0x83, 0x8d, 0x7b, 0x07, 0x1d, 0xd7, 0xe1, 0x34, 0x20, 0xee, 0x22, 0x6b, 0x60, 0x7b, 0x70, 0x5e, - 0xda, 0xf5, 0x34, 0x86, 0xc8, 0x1e, 0xb5, 0xdd, 0x3c, 0x30, 0xfe, 0x54, 0xa0, 0x35, 0x72, 0x99, - 0x2d, 0x17, 0x99, 0x6f, 0x57, 0x29, 0x6c, 0x17, 0x43, 0x77, 0xe5, 0x78, 0xd4, 0x0f, 0x1d, 0xe6, - 0x13, 0xd7, 0xe1, 0xbb, 0xc4, 0x26, 0xaf, 0x4b, 0xb3, 0xa4, 0x42, 0x72, 0x70, 0x5b, 0x60, 0xe0, - 0x92, 0x82, 0xd1, 0x07, 0xf4, 0x5f, 0x94, 0x74, 0xc3, 0x64, 0x76, 0x37, 0x35, 0xb5, 0x0a, 0x3a, - 0x06, 0xf5, 0xc3, 0xc3, 0xd4, 0x9a, 0xfc, 0x38, 0xc4, 0x96, 0xa6, 0x18, 0x06, 0xb4, 0x4c, 0x3f, - 0xf2, 0xd2, 0x85, 0x3e, 0x12, 0x37, 0xa2, 0x71, 0x93, 0x55, 0x9c, 0x44, 0xc6, 0x0d, 0xa8, 0x0f, - 0xbe, 0xc3, 0x62, 0xc7, 0x5d, 0x43, 0xeb, 0x91, 0x04, 0x0e, 0xf1, 0x79, 0xea, 0x85, 0xa7, 0xaa, - 0x92, 0x61, 0x8d, 0x2f, 0xe0, 0x58, 0x7c, 0xc9, 0x8c, 0x82, 0x34, 0xa8, 0x72, 0xb2, 0x49, 0x6a, - 0x22, 0x86, 0xc6, 0x7b, 0xe8, 0x0a, 0xc8, 0xd0, 0xf7, 0x19, 0x27, 0xdc, 0x61, 0x3e, 0x7a, 0x0b, - 0x6d, 0x92, 0x45, 0xa1, 0xc4, 0xb6, 0x07, 0xa7, 0xbd, 0xf8, 0xa4, 0xf7, 0xd2, 0x93, 0x9e, 0xb8, - 0x0f, 0xef, 0x63, 0x8d, 0xbf, 0xea, 0xd0, 0xde, 0x5b, 0x09, 0xba, 0x82, 0x46, 0xe8, 0x78, 0x5b, - 0x37, 0xee, 0x73, 0x77, 0x70, 0x56, 0x76, 0xb0, 0x4c, 0x0a, 0xe8, 0xb8, 0x82, 0x13, 0xa8, 0x24, - 0x49, 0xeb, 0x24, 0x06, 0x38, 0xfb, 0xdf, 0x13, 0x2c, 0x49, 0x32, 0x42, 0x26, 0xbc, 0x58, 0x32, - 0xd7, 0xa5, 0x4b, 0xb1, 0x90, 0xdc, 0xc1, 0x4f, 0x16, 0x6a, 0x5c, 0xc1, 0xdd, 0x9c, 0x24, 0x17, - 0x3c, 0x82, 0xae, 0x47, 0xb6, 0x0b, 0xd9, 0x83, 0x58, 0xa5, 0xf6, 0x0c, 0x95, 0x8e, 0x47, 0xb6, - 0x3f, 0x09, 0x8a, 0xd4, 0x78, 0x03, 0x35, 0xdb, 0x65, 0xb6, 0x5e, 0x4f, 0x0a, 0x77, 0xd8, 0x58, - 0xe3, 0x0a, 0x96, 0x30, 0x74, 0x0d, 0x2a, 0xf5, 0x23, 0x2f, 0x9e, 0xad, 0x79, 0x90, 0x93, 0x9a, - 0x65, 0x5c, 0xc1, 0x2d, 0x9a, 0x1a, 0xe7, 0x57, 0x38, 0x0d, 0xb3, 0x0b, 0x60, 0xb1, 0x8a, 0x4f, - 0x57, 0xac, 0xd2, 0x92, 0x2a, 0xaf, 0x9e, 0x73, 0x5d, 0x8c, 0x2b, 0xf8, 0x24, 0x3c, 0x78, 0xfd, - 0xbc, 0x05, 0x88, 0xfc, 0xac, 0x98, 0x20, 0x25, 0xf5, 0x92, 0x64, 0xe6, 0xd0, 0x71, 0x05, 0xab, - 0x51, 0x66, 0xd7, 0x2b, 0x68, 0x79, 0x94, 0x13, 0xb1, 0x26, 0xbd, 0xf1, 0xb4, 0x7d, 0x32, 0x20, - 0x7a, 0x07, 0x90, 0x5b, 0x49, 0x57, 0x25, 0xed, 0xf3, 0xd2, 0x7c, 0x45, 0xa7, 0xe2, 0x3d, 0x02, - 0xfa, 0x16, 0xd4, 0x6c, 0x1f, 0x7a, 0x5b, 0xb2, 0x5f, 0x1e, 0x60, 0x67, 0x45, 0xc0, 0x39, 0x7c, - 0xd4, 0x88, 0x5f, 0x0c, 0xe3, 0x3b, 0x78, 0x31, 0x8f, 0xf8, 0x36, 0xe2, 0x98, 0xae, 0x69, 0x40, - 0xfd, 0x25, 0x45, 0xa7, 0xd0, 0xf4, 0xd9, 0x8a, 0x2e, 0x9c, 0x55, 0x7a, 0x91, 0x88, 0x70, 0xb2, - 0x12, 0x27, 0xe9, 0x91, 0x04, 0xc9, 0x65, 0x2a, 0x86, 0xc6, 0x1d, 0xd4, 0xcd, 0x20, 0x60, 0x01, - 0x7a, 0x05, 0xdd, 0x35, 0x71, 0x5c, 0xba, 0x5a, 0x14, 0xa9, 0x9d, 0xf8, 0xeb, 0x2c, 0x16, 0xd0, - 0xa1, 0xe9, 0xd1, 0x30, 0x24, 0x1b, 0x9a, 0x88, 0xa4, 0xe1, 0xeb, 0xdf, 0x15, 0x80, 0xfc, 0x64, - 0xa0, 0x16, 0xd4, 0x66, 0xf3, 0x99, 0xb8, 0x46, 0xf6, 0x1e, 0x1e, 0x25, 0x7f, 0x78, 0x8e, 0xf6, - 0x1e, 0x9e, 0xea, 0xfe, 0xc3, 0x53, 0x2b, 0x3c, 0x3c, 0xf5, 0xc2, 0xc3, 0xd3, 0x10, 0xa4, 0xd1, - 0x64, 0x36, 0xc4, 0x3f, 0x6b, 0x4d, 0xa1, 0x65, 0x62, 0x3c, 0xc7, 0x5a, 0x2b, 0xd1, 0x7a, 0xb8, - 0xb1, 0x34, 0x75, 0x74, 0xfd, 0xcb, 0xd7, 0x1b, 0x87, 0x7f, 0x8c, 0xec, 0xde, 0x92, 0x79, 0x7d, - 0x59, 0x4c, 0x16, 0x6c, 0xfa, 0xd9, 0xdf, 0xc1, 0x86, 0xfa, 0xfd, 0xad, 0xfd, 0x66, 0xc3, 0xfa, - 0x85, 0x1f, 0x06, 0xbb, 0x21, 0xbb, 0x7c, 0xf5, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x10, 0x1f, - 0xce, 0xb9, 0x48, 0x08, 0x00, 0x00, + // 1013 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0xdd, 0x6e, 0xe3, 0x36, + 0x13, 0xb5, 0xe2, 0x5f, 0x8d, 0x1d, 0xaf, 0xc0, 0xef, 0x4b, 0xa3, 0x04, 0xbb, 0x68, 0xaa, 0x2e, + 0x8a, 0x60, 0x81, 0xb5, 0x0b, 0xa7, 0x48, 0xb1, 0x45, 0x17, 0xa8, 0x9d, 0xa8, 0xb1, 0xb1, 0x5e, + 0x3b, 0x60, 0x94, 0x02, 0xed, 0x45, 0x0d, 0xca, 0x66, 0x1c, 0x01, 0x92, 0x68, 0x48, 0x54, 0xd0, + 0xf4, 0x01, 0xfa, 0x1e, 0xbd, 0xea, 0x4b, 0xf4, 0xbe, 0xb7, 0x7d, 0xa4, 0x82, 0xd4, 0x9f, 0xa5, + 0xba, 0x41, 0xee, 0x38, 0x9a, 0x73, 0x86, 0x33, 0xc3, 0x43, 0x8e, 0xe0, 0xe8, 0xce, 0x7d, 0xe4, + 0xd4, 0x59, 0xb9, 0xfd, 0x25, 0x0b, 0x68, 0x9f, 0x3f, 0x6e, 0x68, 0xd8, 0xdb, 0x04, 0x8c, 0x33, + 0xb4, 0x9f, 0xba, 0x7a, 0xc2, 0x75, 0xfc, 0x72, 0xcd, 0xd8, 0xda, 0xa5, 0x7d, 0xe9, 0xb4, 0xa3, + 0xbb, 0x7e, 0xc8, 0x83, 0x68, 0xc9, 0x63, 0xb0, 0xf1, 0xfb, 0x1e, 0xc0, 0xcd, 0xf2, 0x9e, 0x7a, + 0xc4, 0x7a, 0xdc, 0x50, 0xf4, 0x1d, 0x34, 0x97, 0xcc, 0x8d, 0x3c, 0x3f, 0xd4, 0xab, 0x27, 0xd5, + 0xd3, 0xf6, 0xe0, 0x8b, 0x5e, 0x21, 0x5a, 0x2f, 0xc7, 0x26, 0xcb, 0x0b, 0x09, 0xc7, 0x29, 0xed, + 0xf8, 0x6f, 0x05, 0x3a, 0xdb, 0x1e, 0x84, 0xa0, 0xe6, 0x13, 0x8f, 0xea, 0xca, 0x89, 0x72, 0xaa, + 0x62, 0xb9, 0x46, 0x1f, 0xa0, 0x26, 0x32, 0xd6, 0xf7, 0x4e, 0x94, 0xd3, 0xee, 0xe0, 0xeb, 0xe7, + 0xed, 0x51, 0x30, 0x84, 0x17, 0xcb, 0x20, 0xc6, 0x02, 0xb4, 0xb2, 0x07, 0xb5, 0xa1, 0x39, 0x99, + 0x59, 0xe6, 0x95, 0x89, 0xb5, 0x0a, 0x52, 0xa1, 0xfe, 0xfd, 0x74, 0x3e, 0xb4, 0x34, 0x05, 0x01, + 0x34, 0x6e, 0x2c, 0x3c, 0x99, 0x5d, 0x69, 0x7b, 0x02, 0x33, 0x9a, 0xcf, 0xa7, 0xe6, 0x70, 0xa6, + 0x55, 0x51, 0x07, 0x5a, 0x97, 0x43, 0xcb, 0xb4, 0x26, 0x1f, 0x4d, 0xad, 0x26, 0xad, 0x5b, 0x3c, + 0xb4, 0x26, 0xf3, 0x99, 0x56, 0x37, 0xfe, 0xda, 0x83, 0x83, 0x1b, 0xd9, 0xb4, 0x28, 0xa0, 0xab, + 0x4b, 0xc2, 0x49, 0x48, 0xb9, 0xdc, 0x66, 0x9a, 0xb7, 0x4b, 0x91, 0xed, 0x1a, 0x94, 0x4b, 0xd9, + 0x45, 0xeb, 0x25, 0xeb, 0x52, 0xeb, 0xd0, 0x27, 0xd0, 0xb8, 0x63, 0x81, 0x47, 0xb8, 0xec, 0x8b, + 0x8a, 0x13, 0x0b, 0x7d, 0x09, 0xff, 0xa7, 0xbf, 0x70, 0x1a, 0xf8, 0xc4, 0x5d, 0x84, 0xb2, 0xd2, + 0x85, 0xec, 0x5e, 0x55, 0xa2, 0x50, 0xea, 0xdb, 0x3a, 0xc6, 0x01, 0x1c, 0x94, 0x19, 0xf6, 0x23, + 0xa7, 0xa1, 0x5e, 0x3b, 0x51, 0x4e, 0x3b, 0xf8, 0x7f, 0x45, 0xca, 0x48, 0xb8, 0x8e, 0x6d, 0xd8, + 0x2f, 0xe4, 0xb5, 0xf3, 0xe0, 0xde, 0x43, 0xc7, 0x75, 0x38, 0x0d, 0x88, 0xbb, 0xc8, 0x0e, 0xb0, + 0x3d, 0x38, 0x2e, 0x55, 0x3d, 0x8d, 0x21, 0xf2, 0x8c, 0xda, 0x6e, 0x6e, 0x18, 0x7f, 0x28, 0xd0, + 0x1a, 0xb9, 0xcc, 0x96, 0x49, 0xe6, 0xe5, 0x2a, 0x85, 0x72, 0x31, 0x74, 0x57, 0x8e, 0x47, 0xfd, + 0xd0, 0x61, 0x3e, 0x71, 0x1d, 0xfe, 0x98, 0xc8, 0xe4, 0x4d, 0x69, 0x97, 0x34, 0x90, 0x5c, 0x5c, + 0x16, 0x18, 0xb8, 0x14, 0xc1, 0xe8, 0x03, 0xfa, 0x37, 0x4a, 0xaa, 0x61, 0x32, 0xbb, 0x9a, 0x9a, + 0x5a, 0x05, 0xed, 0x83, 0xfa, 0xf1, 0x76, 0x6a, 0x4d, 0xae, 0x87, 0xd8, 0xd2, 0x14, 0xc3, 0x80, + 0x96, 0xe9, 0x47, 0x5e, 0x9a, 0xe8, 0x03, 0x71, 0x23, 0x1a, 0x1f, 0xb2, 0x8a, 0x13, 0xcb, 0xb8, + 0x00, 0xf5, 0xd6, 0x77, 0x58, 0xac, 0xb8, 0x73, 0x68, 0x3d, 0x90, 0xc0, 0x21, 0x3e, 0x4f, 0xb5, + 0xf0, 0x54, 0x57, 0x32, 0xac, 0xf1, 0x19, 0xec, 0x8b, 0x2f, 0x99, 0x50, 0x90, 0x06, 0x55, 0x4e, + 0xd6, 0x49, 0x4f, 0xc4, 0xd2, 0xf8, 0x00, 0x5d, 0x01, 0x19, 0xfa, 0x3e, 0xe3, 0x84, 0x3b, 0xcc, + 0x47, 0xef, 0xa0, 0x4d, 0x32, 0x2b, 0x94, 0xd8, 0xf6, 0xe0, 0xb0, 0x17, 0xdf, 0xf4, 0x5e, 0x7a, + 0xd3, 0x13, 0xf5, 0xe1, 0x6d, 0xac, 0xf1, 0x67, 0x1d, 0xda, 0x5b, 0x99, 0xa0, 0x33, 0x68, 0x84, + 0x8e, 0xb7, 0x71, 0xe3, 0x73, 0xee, 0x0e, 0x8e, 0xca, 0x0a, 0x96, 0x4e, 0x01, 0x1d, 0x57, 0x70, + 0x02, 0x95, 0x24, 0x29, 0x9d, 0x44, 0x00, 0x47, 0xff, 0x79, 0x83, 0x25, 0x49, 0x5a, 0xc8, 0x84, + 0x17, 0x4b, 0xe6, 0xba, 0x74, 0x29, 0x12, 0xc9, 0x15, 0xfc, 0x64, 0xa3, 0xc6, 0x15, 0xdc, 0xcd, + 0x49, 0x32, 0xe1, 0x11, 0x74, 0x3d, 0xb2, 0x59, 0xc8, 0x33, 0x88, 0xa3, 0xd4, 0x9e, 0x11, 0xa5, + 0xe3, 0x91, 0xcd, 0x0f, 0x82, 0x22, 0x63, 0xbc, 0x85, 0x9a, 0xed, 0x32, 0x5b, 0xaf, 0x27, 0x8d, + 0xdb, 0x2d, 0xac, 0x71, 0x05, 0x4b, 0x18, 0x3a, 0x07, 0x95, 0xfa, 0x91, 0x17, 0xef, 0xd6, 0xdc, + 0xc9, 0x49, 0xc5, 0x32, 0xae, 0xe0, 0x16, 0x4d, 0x85, 0xf3, 0x33, 0x1c, 0x86, 0xd9, 0x03, 0xb0, + 0x58, 0xc5, 0xb7, 0x2b, 0x8e, 0xd2, 0x92, 0x51, 0x5e, 0x3f, 0xe7, 0xb9, 0x18, 0x57, 0xf0, 0x41, + 0xb8, 0xf3, 0xf9, 0x79, 0x07, 0x10, 0xf9, 0x59, 0x33, 0x41, 0x86, 0xd4, 0x4b, 0x21, 0x33, 0x85, + 0x8e, 0x2b, 0x58, 0x8d, 0x32, 0xb9, 0x9e, 0x41, 0xcb, 0xa3, 0x9c, 0x88, 0x9c, 0xf4, 0xc6, 0xd3, + 0xf2, 0xc9, 0x80, 0xe8, 0x3d, 0x40, 0x2e, 0x25, 0x5d, 0x95, 0xb4, 0x57, 0xa5, 0xfd, 0x8a, 0x4a, + 0xc5, 0x5b, 0x04, 0xf4, 0x0d, 0xa8, 0x59, 0x1d, 0x7a, 0x5b, 0xb2, 0x5f, 0xee, 0x60, 0x67, 0x4d, + 0xc0, 0x39, 0x7c, 0xd4, 0x88, 0x27, 0x86, 0xf1, 0x2b, 0xbc, 0x98, 0x47, 0x7c, 0x13, 0x71, 0x4c, + 0xef, 0x68, 0x40, 0xfd, 0x25, 0x45, 0x87, 0xd0, 0xf4, 0xd9, 0x8a, 0x2e, 0x9c, 0x55, 0xfa, 0x90, + 0x08, 0x73, 0xb2, 0x12, 0x37, 0xe9, 0x81, 0x04, 0xc9, 0x63, 0x2a, 0x96, 0xe8, 0x5b, 0x50, 0x09, + 0xe7, 0xc1, 0x62, 0x43, 0xf8, 0x7d, 0x32, 0xe0, 0x3e, 0x2d, 0x65, 0x70, 0x1d, 0x30, 0xcf, 0x09, + 0xe9, 0x90, 0xf3, 0xc0, 0xb1, 0x23, 0x4e, 0x71, 0x4b, 0x30, 0xae, 0x09, 0xbf, 0x17, 0x83, 0xa6, + 0xec, 0x45, 0x9f, 0x43, 0x27, 0xe4, 0x81, 0xe3, 0xaf, 0x63, 0x41, 0xc6, 0x19, 0x8c, 0x2b, 0xb8, + 0x1d, 0x7f, 0x95, 0x92, 0x43, 0xaf, 0x40, 0x75, 0x7c, 0x9e, 0x20, 0x44, 0x3a, 0x75, 0x21, 0x13, + 0xc7, 0xe7, 0xd2, 0x3d, 0x6a, 0x42, 0x5d, 0xba, 0x8c, 0x2b, 0xa8, 0x9b, 0x41, 0xc0, 0x02, 0xf4, + 0x1a, 0xba, 0x77, 0xc4, 0x71, 0xe9, 0x6a, 0x51, 0xac, 0xac, 0x13, 0x7f, 0x9d, 0xc5, 0xf5, 0xe9, + 0xd0, 0xf4, 0x68, 0x18, 0x92, 0x35, 0x4d, 0x6a, 0x4c, 0xcd, 0x37, 0xbf, 0x29, 0x00, 0xf9, 0xc5, + 0x45, 0x2d, 0xa8, 0xcd, 0xe6, 0x33, 0xf1, 0xca, 0x6d, 0xcd, 0x45, 0x25, 0x9f, 0x8b, 0x7b, 0x5b, + 0x73, 0xb1, 0xba, 0x3d, 0x17, 0x6b, 0x85, 0xb9, 0x58, 0x2f, 0xcc, 0xc5, 0x86, 0x20, 0x8d, 0x26, + 0xb3, 0x21, 0xfe, 0x51, 0x6b, 0x8a, 0x58, 0x26, 0xc6, 0x73, 0xac, 0xb5, 0x92, 0x58, 0xb7, 0x17, + 0x96, 0xa6, 0x8e, 0xce, 0x7f, 0xfa, 0x6a, 0xed, 0xf0, 0xfb, 0xc8, 0xee, 0x2d, 0x99, 0xd7, 0x97, + 0x9d, 0x66, 0xc1, 0xba, 0x9f, 0xfd, 0xbc, 0xac, 0xa9, 0xdf, 0xdf, 0xd8, 0x6f, 0xd7, 0xac, 0x5f, + 0xf8, 0x9f, 0xb1, 0x1b, 0x52, 0x84, 0x67, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x0f, 0xdf, 0x9e, + 0xdf, 0xe7, 0x08, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/types.pb.validate.go b/gen/pb-go/flyteidl/core/types.pb.validate.go index 285202560..99165e6f2 100644 --- a/gen/pb-go/flyteidl/core/types.pb.validate.go +++ b/gen/pb-go/flyteidl/core/types.pb.validate.go @@ -754,6 +754,21 @@ func (m *OutputReference) Validate() error { // no validation rules for Var + for idx, item := range m.GetAttrPath() { + _, _ = idx, item + + if v, ok := interface{}(item).(interface{ Validate() error }); ok { + if err := v.Validate(); err != nil { + return OutputReferenceValidationError{ + field: fmt.Sprintf("AttrPath[%v]", idx), + reason: "embedded message failed validation", + cause: err, + } + } + } + + } + return nil } @@ -811,6 +826,81 @@ var _ interface { ErrorName() string } = OutputReferenceValidationError{} +// Validate checks the field values on PromiseAttribute with the rules defined +// in the proto definition for this message. If any rules are violated, an +// error is returned. +func (m *PromiseAttribute) Validate() error { + if m == nil { + return nil + } + + switch m.Value.(type) { + + case *PromiseAttribute_StringValue: + // no validation rules for StringValue + + case *PromiseAttribute_IntValue: + // no validation rules for IntValue + + } + + return nil +} + +// PromiseAttributeValidationError is the validation error returned by +// PromiseAttribute.Validate if the designated constraints aren't met. +type PromiseAttributeValidationError struct { + field string + reason string + cause error + key bool +} + +// Field function returns field value. +func (e PromiseAttributeValidationError) Field() string { return e.field } + +// Reason function returns reason value. +func (e PromiseAttributeValidationError) Reason() string { return e.reason } + +// Cause function returns cause value. +func (e PromiseAttributeValidationError) Cause() error { return e.cause } + +// Key function returns key value. +func (e PromiseAttributeValidationError) Key() bool { return e.key } + +// ErrorName returns error name. +func (e PromiseAttributeValidationError) ErrorName() string { return "PromiseAttributeValidationError" } + +// Error satisfies the builtin error interface +func (e PromiseAttributeValidationError) Error() string { + cause := "" + if e.cause != nil { + cause = fmt.Sprintf(" | caused by: %v", e.cause) + } + + key := "" + if e.key { + key = "key for " + } + + return fmt.Sprintf( + "invalid %sPromiseAttribute.%s: %s%s", + key, + e.field, + e.reason, + cause) +} + +var _ error = PromiseAttributeValidationError{} + +var _ interface { + Field() string + Reason() string + Key() bool + Cause() error + ErrorName() string +} = PromiseAttributeValidationError{} + // Validate checks the field values on Error with the rules defined in the // proto definition for this message. If any rules are violated, an error is returned. func (m *Error) Validate() error { diff --git a/gen/pb-go/flyteidl/service/admin.swagger.json b/gen/pb-go/flyteidl/service/admin.swagger.json index a5010cac3..42644b11e 100644 --- a/gen/pb-go/flyteidl/service/admin.swagger.json +++ b/gen/pb-go/flyteidl/service/admin.swagger.json @@ -6489,6 +6489,12 @@ "var": { "type": "string", "description": "Variable name must refer to an output variable for the node." + }, + "attr_path": { + "type": "array", + "items": { + "$ref": "#/definitions/corePromiseAttribute" + } } }, "description": "A reference to an output produced by a node. The type can be retrieved -and validated- from\nthe underlying interface of the node." @@ -6553,6 +6559,18 @@ }, "title": "Primitive Types" }, + "corePromiseAttribute": { + "type": "object", + "properties": { + "string_value": { + "type": "string" + }, + "int_value": { + "type": "integer", + "format": "int32" + } + } + }, "coreQualityOfService": { "type": "object", "properties": { diff --git a/gen/pb-go/flyteidl/service/flyteadmin/README.md b/gen/pb-go/flyteidl/service/flyteadmin/README.md index 871b43048..fe41c45f5 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/README.md +++ b/gen/pb-go/flyteidl/service/flyteadmin/README.md @@ -266,6 +266,7 @@ Class | Method | HTTP request | Description - [CoreParameter](docs/CoreParameter.md) - [CoreParameterMap](docs/CoreParameterMap.md) - [CorePrimitive](docs/CorePrimitive.md) + - [CorePromiseAttribute](docs/CorePromiseAttribute.md) - [CoreQualityOfService](docs/CoreQualityOfService.md) - [CoreQualityOfServiceSpec](docs/CoreQualityOfServiceSpec.md) - [CoreResourceMetadata](docs/CoreResourceMetadata.md) diff --git a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml index 88bb0d42a..25bdcdcfe 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml +++ b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml @@ -7883,6 +7883,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -8048,6 +8053,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -8806,9 +8816,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -8983,6 +8993,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -9148,6 +9163,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -9941,9 +9961,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -10118,6 +10138,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -10283,6 +10308,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -11075,9 +11105,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -11252,6 +11282,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -11417,6 +11452,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -11757,6 +11797,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -11922,6 +11967,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -12680,9 +12730,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -12857,6 +12907,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -13022,6 +13077,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -13815,9 +13875,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -13992,6 +14052,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -14157,6 +14222,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -14949,9 +15019,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -15126,6 +15196,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -15291,6 +15366,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -15556,8 +15636,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -15589,7 +15669,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -15824,8 +15904,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -15857,7 +15937,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -16169,6 +16249,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -16334,6 +16419,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -17092,9 +17182,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -17269,6 +17359,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -17434,6 +17529,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -18227,9 +18327,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -18404,6 +18504,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -18569,6 +18674,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -19361,9 +19471,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -19538,6 +19648,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -19703,6 +19818,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -21011,8 +21131,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -21044,7 +21164,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -21295,8 +21415,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -21328,7 +21448,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -21992,8 +22112,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -22025,7 +22145,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -22270,8 +22390,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -22303,7 +22423,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -22729,6 +22849,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -22894,6 +23019,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -23652,9 +23782,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -23829,6 +23959,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -23994,6 +24129,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -24787,9 +24927,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -24964,6 +25104,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -25129,6 +25274,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -25921,9 +26071,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -26098,6 +26248,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -26263,6 +26418,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -26603,6 +26763,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -26768,6 +26933,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -27526,9 +27696,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -27703,6 +27873,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -27868,6 +28043,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -28661,9 +28841,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -28838,6 +29018,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -29003,6 +29188,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -29795,9 +29985,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -29972,6 +30162,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -30137,6 +30332,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -30402,8 +30602,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -30435,7 +30635,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -30670,8 +30870,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -30703,7 +30903,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -31015,6 +31215,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -31180,6 +31385,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -31938,9 +32148,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -32115,6 +32325,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -32280,6 +32495,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -33073,9 +33293,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -33250,6 +33470,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -33415,6 +33640,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -34207,9 +34437,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -34384,6 +34614,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -34549,6 +34784,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -35174,6 +35414,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -35339,6 +35584,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -36097,9 +36347,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -36274,6 +36524,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -36439,6 +36694,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -37232,9 +37492,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -37409,6 +37669,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -37574,6 +37839,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -38366,9 +38636,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -38543,6 +38813,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -38708,6 +38983,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -39048,6 +39328,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -39213,6 +39498,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -39971,9 +40261,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -40148,6 +40438,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -40313,6 +40608,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -41106,9 +41406,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -41283,6 +41583,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -41448,6 +41753,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -42240,9 +42550,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -42417,6 +42727,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -42582,6 +42897,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -42847,8 +43167,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -42880,7 +43200,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -43115,8 +43435,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -43148,7 +43468,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -43460,6 +43780,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -43625,6 +43950,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -44383,9 +44713,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -44560,6 +44890,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -44725,6 +45060,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -45518,9 +45858,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -45695,6 +46035,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -45860,6 +46205,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -46652,9 +47002,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -46829,6 +47179,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -46994,6 +47349,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -47566,6 +47926,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -47731,6 +48096,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -48489,9 +48859,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -48666,6 +49036,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -48831,6 +49206,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -49624,9 +50004,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -49801,6 +50181,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -49966,6 +50351,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -50758,9 +51148,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -50935,6 +51325,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -51100,6 +51495,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -51440,6 +51840,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -51605,6 +52010,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -52363,9 +52773,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -52540,6 +52950,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -52705,6 +53120,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -53498,9 +53918,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -53675,6 +54095,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -53840,6 +54265,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -54632,9 +55062,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -54809,6 +55239,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -54974,6 +55409,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -55239,8 +55679,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -55272,7 +55712,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -55507,8 +55947,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -55540,7 +55980,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -55852,6 +56292,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -56017,6 +56462,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -56775,9 +57225,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -56952,6 +57402,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -57117,6 +57572,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -57910,9 +58370,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -58087,6 +58547,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -58252,6 +58717,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -59044,9 +59514,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -59221,6 +59691,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -59386,6 +59861,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -59737,6 +60217,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -59902,6 +60387,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -60660,9 +61150,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -60837,6 +61327,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -61002,6 +61497,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -61795,9 +62295,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -61972,6 +62472,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -62137,6 +62642,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -62929,9 +63439,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -63106,6 +63616,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -63271,6 +63786,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -63611,6 +64131,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -63776,6 +64301,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -64534,9 +65064,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -64711,6 +65241,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -64876,6 +65411,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -65669,9 +66209,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -65846,6 +66386,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -66011,6 +66556,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -66803,9 +67353,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -66980,6 +67530,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -67145,6 +67700,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -67410,8 +67970,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -67443,7 +68003,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -67678,8 +68238,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -67711,7 +68271,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -68023,6 +68583,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -68188,6 +68753,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -68946,9 +69516,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -69123,6 +69693,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -69288,6 +69863,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -70081,9 +70661,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -70258,6 +70838,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -70423,6 +71008,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -71215,9 +71805,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -71392,6 +71982,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -71557,6 +72152,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -71871,9 +72471,9 @@ definitions: \ configurable parallelism (separate from the parent\nworkflow) and can be configured\ \ to succeed when a certain number of sub-nodes succeed." example: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 coreBinary: type: "object" properties: @@ -72007,6 +72607,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -72190,6 +72795,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -73593,8 +74203,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -73626,7 +74236,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -73950,6 +74560,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -74115,6 +74730,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -74873,9 +75493,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -75050,6 +75670,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -75215,6 +75840,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -76008,9 +76638,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -76185,6 +76815,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -76350,6 +76985,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -77142,9 +77782,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -77319,6 +77959,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -77484,6 +78129,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -77851,6 +78501,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -78016,6 +78671,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -78774,9 +79434,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -78951,6 +79611,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -79116,6 +79781,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -79909,9 +80579,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -80086,6 +80756,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -80251,6 +80926,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -81043,9 +81723,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -81220,6 +81900,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -81385,6 +82070,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -81725,6 +82415,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -81890,6 +82585,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -82648,9 +83348,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -82825,6 +83525,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -82990,6 +83695,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -83783,9 +84493,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -83960,6 +84670,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -84125,6 +84840,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -84917,9 +85637,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -85094,6 +85814,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -85259,6 +85984,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -85524,8 +86254,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -85557,7 +86287,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -85792,8 +86522,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -85825,7 +86555,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -86137,6 +86867,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -86302,6 +87037,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -87060,9 +87800,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -87237,6 +87977,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -87402,6 +88147,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -88195,9 +88945,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -88372,6 +89122,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -88537,6 +89292,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -89329,9 +90089,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -89506,6 +90266,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -89671,6 +90436,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -90029,8 +90799,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -90050,7 +90820,7 @@ definitions: \ be a valid port number, 0 < x < 65536." description: "Defines port properties for a container." example: - container_port: 5 + container_port: 2 coreDataLoadingConfig: type: "object" properties: @@ -92322,9 +93092,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -92499,6 +93269,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -92664,6 +93439,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -93021,9 +93801,18 @@ definitions: var: type: "string" description: "Variable name must refer to an output variable for the node." + attr_path: + type: "array" + items: + $ref: "#/definitions/corePromiseAttribute" description: "A reference to an output produced by a node. The type can be retrieved\ \ -and validated- from\nthe underlying interface of the node." example: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" coreParameter: @@ -93411,6 +94200,17 @@ definitions: boolean: true float_value: 1.4658129805029452 integer: "integer" + corePromiseAttribute: + type: "object" + properties: + string_value: + type: "string" + int_value: + type: "integer" + format: "int32" + example: + string_value: "string_value" + int_value: 6 coreQualityOfService: type: "object" properties: @@ -94310,8 +95110,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -94343,7 +95143,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -95218,6 +96018,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -95383,6 +96188,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -96141,9 +96951,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -96318,6 +97128,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -96483,6 +97298,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -97276,9 +98096,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -97453,6 +98273,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -97618,6 +98443,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -98410,9 +99240,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -98587,6 +99417,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -98752,6 +99587,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -99372,6 +100212,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -99537,6 +100382,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -100295,9 +101145,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -100472,6 +101322,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -100637,6 +101492,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -101430,9 +102290,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -101607,6 +102467,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -101772,6 +102637,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -102564,9 +103434,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -102741,6 +103611,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -102906,6 +103781,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -103246,6 +104126,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -103411,6 +104296,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -104169,9 +105059,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -104346,6 +105236,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -104511,6 +105406,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -105304,9 +106204,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -105481,6 +106381,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -105646,6 +106551,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -106438,9 +107348,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -106615,6 +107525,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -106780,6 +107695,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -107045,8 +107965,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -107078,7 +107998,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -107313,8 +108233,8 @@ definitions: - value: "value" key: "key" ports: - - container_port: 5 - - container_port: 5 + - container_port: 2 + - container_port: 2 config: - value: "value" key: "key" @@ -107346,7 +108266,7 @@ definitions: generates_deck: true tags: key: "tags" - task_type_version: 2 + task_type_version: 7 custom: fields: key: @@ -107658,6 +108578,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -107823,6 +108748,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -108581,9 +109511,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -108758,6 +109688,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -108923,6 +109858,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -109716,9 +110656,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -109893,6 +110833,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -110058,6 +111003,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -110850,9 +111800,9 @@ definitions: var: "var" operator: {} array_node: - min_successes: 1 - parallelism: 6 - min_success_ratio: 5.962134 + min_successes: 5 + parallelism: 1 + min_success_ratio: 5.637377 metadata: retries: retries: 0 @@ -111027,6 +111977,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: @@ -111192,6 +112147,11 @@ definitions: null_value: {} bool_value: true promise: + attr_path: + - string_value: "string_value" + int_value: 6 + - string_value: "string_value" + int_value: 6 var: "var" node_id: "node_id" collection: diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_core_output_reference.go b/gen/pb-go/flyteidl/service/flyteadmin/model_core_output_reference.go index 9d05e33eb..469e79f2d 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/model_core_output_reference.go +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_core_output_reference.go @@ -15,4 +15,5 @@ type CoreOutputReference struct { NodeId string `json:"node_id,omitempty"` // Variable name must refer to an output variable for the node. Var_ string `json:"var,omitempty"` + AttrPath []CorePromiseAttribute `json:"attr_path,omitempty"` } diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_core_promise_attribute.go b/gen/pb-go/flyteidl/service/flyteadmin/model_core_promise_attribute.go new file mode 100644 index 000000000..2c6ab252f --- /dev/null +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_core_promise_attribute.go @@ -0,0 +1,15 @@ +/* + * flyteidl/service/admin.proto + * + * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + * + * API version: version not set + * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) + */ + +package flyteadmin + +type CorePromiseAttribute struct { + StringValue string `json:"string_value,omitempty"` + IntValue int32 `json:"int_value,omitempty"` +} diff --git a/gen/pb-go/flyteidl/service/openapi.go b/gen/pb-go/flyteidl/service/openapi.go index 5489b12ea..d0a894342 100644 --- a/gen/pb-go/flyteidl/service/openapi.go +++ b/gen/pb-go/flyteidl/service/openapi.go @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x5d\x23\xbd\xdf\xde\x6c\xdc\x71\xcc\xab\xb4\xf3\x41\x25\x4c\x1f\xca\x4d\xa7\xa0\x40\xca\xa2\xaa\xa6\xb3\xf5\x79\xf5\xbd\x24\xe6\x00\x32\x36\x7c\x1c\x73\x22\x03\x23\x3e\xf2\xb6\xb8\x84\x4e\x89\x96\x3e\x46\x4c\x93\x71\xe8\x70\x30\x00\xdb\x0e\x6f\x5b\x77\x1a\x09\x2e\xa5\x8d\xbc\x37\xed\x2c\xcf\x9f\xda\xa2\x96\x9f\x41\x09\x3f\xbf\xbe\x1a\xd7\xab\xfa\x05\xcf\x5c\x7d\x3f\xfb\xb0\x31\xc9\xbe\xb5\xa9\x95\xd5\xfc\x8a\xb5\x58\xa3\x9e\xdf\xf1\xe9\xc5\xb9\x2f\x62\x55\xe9\xba\x5e\xd0\x2f\x44\x56\x6f\x2f\xe9\x57\x9f\x71\x50\xdc\xaf\xd2\xc4\x92\xf2\x7e\xab\x37\xab\x1c\xef\xbb\x0d\x6c\x5e\x65\xeb\x57\xf2\x87\x32\xcd\xac\x0a\x4b\xdf\xd1\x36\xb5\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x76\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\xb5\xad\x58\xcf\xe3\x75\x6f\x61\xd2\x77\x11\xc6\xfc\x7a\x39\xcc\xc9\xa2\x88\xda\x93\x56\x76\x73\x25\xb8\x5b\xec\xfe\x13\xe2\x21\xe1\x5b\x37\x74\xdb\x24\x45\x0f\x1d\x25\x08\x96\x36\x1c\x03\x72\xf9\x2a\x79\x3e\x6b\x98\x87\xfd\x98\x4d\x36\xf0\xa1\x2f\xc2\x10\x5c\x35\xb6\xae\x58\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\x63\x7e\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\x01\x07\xa6\x67\x30\x8f\x49\x9a\x6a\x05\x1e\x54\x13\xc6\x0f\x79\xe6\x74\x96\xd2\x5b\x50\x41\x83\x4e\xf5\x8d\x15\x84\x2b\xe8\x2f\xd8\x21\xf9\x4c\xa5\xd2\x72\x45\x43\xac\xa6\x6b\x04\x24\x1e\xa8\xab\x35\x27\xf6\x86\x1b\x7d\x18\x7c\x77\x7d\x7b\x3f\x3c\x1b\x7d\x28\xa2\xf3\x5d\xfa\x99\x47\x84\x72\x00\xff\x9c\x8d\x98\x0f\xa8\xf5\x00\xc8\xb0\x97\x08\xc7\x71\x81\x6c\x60\x95\x48\x23\xb3\x2d\xe5\xc8\xc1\xa9\x58\x19\x4a\xbb\xa4\x99\x07\xc8\x41\xda\xd7\x93\xb5\xc4\x75\x56\x3a\x39\x26\x93\x6a\x49\xca\xcb\x8e\x2e\x9b\x10\xbb\x55\x19\x5d\x9b\x28\x07\x2e\xc8\xc8\xb3\xd3\x95\xe0\x76\x3e\xc6\xe6\x12\x5e\x8f\xdb\xb9\x0d\xd9\x60\x53\x3f\xd2\xcf\x24\xbe\x6d\x91\xaa\x76\x92\xd1\xd2\x29\x12\xb0\x71\x17\x72\x46\xd7\xd1\xf8\xfd\x54\x1e\xf4\x77\xdd\xd9\xd2\x75\x01\xc9\x56\xc0\xab\x02\xb6\xaa\x42\x18\x45\x44\x28\x4c\x19\x9a\xc2\xc1\x66\xd1\x02\x01\x60\x07\x01\x1f\xf6\x1f\x51\x4a\x19\x20\x07\x2c\x5b\xda\x87\xf2\x3c\xd6\x10\x5a\x2f\xcf\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\x83\x9f\x97\xca\xaa\x95\x16\x96\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xc6\x89\x26\x0b\x45\x1e\x6e\x2f\xb6\x92\xef\x9a\x9d\x65\xad\x18\xe1\xa1\x74\xd5\x8c\x88\xd0\xe5\xd3\x98\x44\xab\x50\x4c\xbb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x32\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\x76\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x8d\x93\x66\x87\xb2\x24\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\x47\xa6\x42\xfc\x40\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x11\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\x06\x37\xe7\x0d\x6b\x7d\x51\x75\x21\x7d\x59\xe5\x6c\x12\xef\xcd\xda\x35\x48\x52\x90\x9e\xb8\x17\xa8\x48\x76\xa6\xdb\xc1\x20\x19\xa7\xff\x4d\x39\x92\x60\x1f\xd0\x7a\x9b\x54\x86\x52\xda\xf1\x0a\x60\xde\xf5\x32\xf1\x8a\x65\x58\x13\xf4\x28\x1c\x90\x4d\x03\x09\x81\x7e\xea\x31\xc6\x07\x21\xf0\x0f\x37\x05\x73\x6d\x6c\xc1\xce\xc0\x90\x8a\xd9\x74\x41\x43\xfa\xd1\x50\xb4\x07\xcb\x00\xf8\x0f\x57\x90\xd1\xc5\x06\xdb\xdc\xf5\x70\xba\x21\xb5\xad\x07\xa0\x54\x8c\xcf\x99\xbf\x2d\x16\x35\xce\xb0\xb5\x3b\x80\x12\xe5\x2a\x25\x34\x15\xd6\x3b\x1a\xb1\x20\x60\x45\x1a\xb5\x47\x9f\x11\x57\x9c\x04\x2a\xde\x32\x00\xb6\x86\x24\x1d\x2f\xfc\x94\x76\xa0\x9a\x22\xaf\xe6\xe5\xf2\x22\xb5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\xa0\x33\xad\xab\x38\x04\xc7\x6a\xa5\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xcd\xaa\xfe\x39\x23\xd1\x26\x10\x32\x37\x58\xe0\x94\x28\x22\x96\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x2a\x48\x18\x3f\x8b\xb5\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x35\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x6d\xe7\xf4\x3a\x50\x28\xf7\x35\x50\x91\x52\xb8\xd0\x9e\x60\xa0\xac\x1e\x65\x1b\xf8\xc9\x2a\x5e\xba\x13\xde\xed\x32\x1c\x5c\x0a\x6d\xe5\x50\x95\x72\x27\x80\x4a\x40\xa5\x32\x38\x20\xcd\x00\x26\x20\xb4\x34\x45\x48\x06\x6e\x3f\x0b\x6f\x57\x18\x74\xad\x64\x55\x2d\x2e\x55\x59\xae\x15\x3c\x6e\x57\xe0\x0e\xbd\x44\xb3\x6b\x89\x66\x15\x29\x97\xa2\x6b\x35\x75\x12\x51\xc1\x99\xb1\x45\x9f\x2d\x40\x40\x79\x82\x90\x7b\x64\xaf\x48\x5b\x39\x16\xae\x7e\xca\xfc\xbf\xca\x1c\xdc\x11\x75\x48\xaa\x4d\x49\x95\x47\x81\x0b\x0a\x3c\x50\x49\x28\x0d\xd8\xb8\x1a\x18\xad\x09\x83\x34\x56\xfe\xf3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x07\xf0\x16\xc0\x20\xc8\x7c\x92\x52\x85\x70\x30\xc3\x92\x49\xf2\xc0\x9e\x67\xfd\x01\xcc\xb8\x31\xcf\xbe\x09\xa2\x67\xc5\xa1\xd9\xc0\xbe\x56\x34\xb2\x6d\x2a\x7d\x10\xd3\xfc\xb2\xc9\xf4\x81\xc6\x13\x6a\x98\x8d\x67\xae\xcf\xa6\x47\xcd\xd6\x06\x0b\x1a\x0a\xc8\xae\x54\xaa\xca\xdd\x62\x0d\x3d\x2b\x32\xe9\x8b\x8d\xe8\x94\x4a\x5f\xbc\xbe\x8b\x5c\xfa\xb6\x32\x65\xcb\x72\x2b\xdd\x27\x2d\xf6\x6f\x97\xb3\xab\xb8\x0b\x9c\x0f\x25\xa5\x9b\x56\x49\x69\xdf\x50\xcd\x8a\x84\x80\xcd\xc3\xcb\xd7\x51\x07\x8b\xfc\xac\x90\x8a\x82\x74\xcb\x32\x26\x0c\xa9\x72\x7e\xc6\x15\xe4\xd4\x44\x50\xc2\xbd\x96\xe7\x39\x62\xcd\x12\xc8\x72\x9e\xb8\x6d\x8a\xc6\x4e\xd1\xcf\x82\xf3\xe7\x66\x61\x2d\x5a\x3f\xf9\x20\x37\xa3\x2c\xdb\x62\xec\x55\x11\xb3\x70\xf1\xb5\x05\x27\x69\xc1\x63\x93\x84\xe3\x86\x53\xd9\x3c\xf4\x5a\x02\xc5\xca\x73\x61\x2f\xdd\x1d\xaa\x76\x35\xee\xdc\x39\xdf\xc4\xcb\xc8\x96\x1b\xbb\x80\x69\xa7\xc6\x57\x3c\xb5\x9b\x14\x99\x05\x50\xd1\x9d\x41\xa1\x56\xd1\x09\x74\xe3\x07\xe0\xdd\xb5\x43\xc7\x26\xd2\xc5\x03\x74\x57\xb6\xa4\x34\x61\x5b\xbc\xff\x05\x26\xbd\x6e\x61\xe0\xc0\xdb\x28\x6c\xb4\x2f\x0d\xed\x06\x50\x11\xd8\x06\x49\x56\xf8\xb0\x17\xed\x72\x16\x13\xc1\x08\x56\xf3\xd7\xcb\xb1\x38\xdd\xd6\x38\x1d\x8c\xef\x65\xf3\x2d\x4e\x77\x52\x15\x3e\x1c\x6e\xb9\x42\xfa\xca\x71\xea\xd7\xbb\xd8\x89\x6c\xe8\x81\xaf\x11\x5c\x53\x1c\x1b\x8c\x86\x01\x04\xcd\x3a\x54\xba\x55\x1a\x46\xb3\x32\xf7\x32\x09\x29\x0d\x56\x9f\x5a\x2a\x8a\x3e\xec\x61\x65\xe5\x15\x4b\xf2\x45\x64\x7e\xbc\x7c\x32\xc2\xb2\x1a\xce\x79\x90\x9f\x00\x85\xb4\x15\xa6\xcc\x72\xaf\x65\x29\x09\x5a\xa2\x4c\x71\x53\x16\xc2\xde\xe7\xb7\x7c\xf1\xe9\x2d\x7d\xb2\x43\x9f\xec\xd0\xb0\x47\x7d\xb2\x03\x42\xfb\x96\xec\xb0\x4a\x01\x5d\x66\xfe\xf4\x1e\x39\xa8\xb5\x59\x2a\x70\x63\xf6\x77\x85\x16\xb9\x79\x40\xbf\xb3\x20\x86\xd1\x50\xf6\x17\xfb\x43\x63\x40\x54\xed\xb3\xea\x6c\x43\x6b\x26\x5b\x54\x9d\x02\x58\xc4\x89\x45\xa1\xb3\xe1\xca\x65\xeb\xd3\x32\x43\xe9\x88\x7d\xcf\x9f\xc9\x13\x11\x07\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xe8\x18\x38\x08\x25\x40\x73\x13\x05\x81\xd1\x15\x4e\x49\x6c\xea\x1d\x06\x41\x8d\xd6\x5c\x6b\x1d\xad\x4d\x60\xab\x80\x1b\x6a\xb6\xc1\x45\x4d\x8c\x98\x09\x34\x34\xc1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x37\xf0\xef\x8e\xd0\xbd\xbe\x9f\xa8\x2c\x8f\x37\xc0\x5e\x6b\x1b\xdb\x88\xcd\x04\xcf\x33\x6f\x41\xe3\x13\x53\xf8\xd6\xc4\x3e\xd5\xdd\xc0\x30\x18\xe7\x03\x8e\x70\xac\x35\xf1\xe5\x84\xf3\x26\x31\xa8\x1b\x01\x18\x85\x04\xa4\x8f\xa1\x0f\xac\xb3\x81\xee\xc6\x7b\x1b\xc0\xb6\x2c\x83\x61\x7f\x21\xd7\xf2\x19\x91\x60\x13\xf2\x36\xf7\x52\x16\x79\x19\xa9\xa0\x71\x9c\xcb\x2c\xa2\xde\x6b\xe1\x2c\xfb\xcd\x20\x08\x45\xe7\x36\xe2\xcb\xa4\xa8\xda\x7b\xe2\xc5\x6c\xa5\x9d\x63\x67\xdb\xf8\xc5\x4d\x2e\x32\x0e\x92\x58\xb2\x70\xa0\x0d\x16\xe7\x2d\xe3\x59\x6e\xa2\xda\x68\x18\xe4\xd4\x48\xd9\x54\xaa\x4b\xac\xa2\xb9\xe6\xdc\x05\xde\xd9\x8e\xa2\xfd\x0a\xae\xfc\xb2\xf6\xd3\x86\x19\x9c\x86\xbd\xb7\x38\x14\x3a\xd8\xd3\xcd\xbd\xef\x82\xeb\x9d\x24\x91\xea\xfe\x8c\xd3\xcd\x96\xb3\x0e\xac\xa2\xee\x13\xfb\x44\x4f\x74\x15\x15\xad\x1a\x7f\x37\xda\x2a\xd7\xdb\xda\x79\x1c\xe1\x16\x00\x32\x67\x16\xae\xab\x78\xd1\xd6\x67\x6d\x71\xfe\x0b\xba\x59\x0e\x90\xc5\xc8\x7f\xd2\xe2\x88\xb7\xb7\xa6\x38\xd3\x4a\x84\xe2\xfa\x96\x14\x33\x23\xc7\x9a\x28\x59\x84\x51\x2e\xa8\x3b\xfb\x95\x8c\xf0\x76\xea\x00\xfb\xe4\x71\x58\x4f\x29\xc2\x41\xa9\x39\xe3\xee\xc7\x91\xca\xb1\x0f\x4b\x04\x9a\x70\x25\xd0\x4d\xf6\xbb\x73\xab\x0b\x27\xde\x35\xec\xe9\x4a\xc2\xde\x62\x97\x71\x13\xba\x61\xa7\x93\x46\xd9\x2c\x80\x46\x6c\xb6\x11\x77\xa9\x7c\xd0\xf8\x65\xb7\xea\x0d\x8d\x9f\x3a\xd9\x67\x93\x6f\x97\x40\x37\x6d\x1c\x99\x5d\x8a\x72\xb7\x61\xb0\x56\x7a\x0a\x41\x2b\xad\xfd\x0e\xb0\x67\x29\xb8\xe9\xb1\x95\xa6\xfe\xcb\xff\x65\x2a\x65\x99\xa5\xf9\x2f\xc4\xc5\x88\x99\xdf\x0f\x7c\x95\x0a\xfd\x42\x01\xff\x8a\x53\x52\x00\x64\x8a\x32\x94\x1e\x00\x8a\x58\x28\x34\x03\xf5\xeb\x41\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xe8\x01\xcf\xcc\x52\xcc\xf0\x0c\x80\x85\x0f\x20\x2e\x0e\xc4\xd5\x42\x15\x31\x24\x6d\xaa\x1d\x02\xb7\xd2\xcc\xd2\x66\xdb\x16\x55\x7f\xa1\x4f\x23\xca\x5a\x5c\xd3\x22\xb8\xa2\x99\xfa\x6f\x6d\xff\x9b\x49\xec\xf7\x83\xbb\x1f\xc6\xb7\xc3\xbb\xeb\x87\xdb\xd3\x92\xd8\x7e\x7a\xf1\x70\x77\x3f\xbc\x6d\x7c\x56\x64\xaa\xfe\xf5\x61\xf8\xd0\xf2\xc8\x35\x70\x31\xf8\x6e\x58\x2a\xa1\xfd\xd7\x87\xc1\xc5\xf9\xfd\xcf\xe3\xeb\x8f\xe3\xbb\xe1\xed\x8f\xe7\xa7\xc3\xf1\xdd\xcd\xf0\xf4\xfc\xe3\xf9\xe9\x40\x7f\x19\xbe\x7b\x73\xf1\xf0\xe9\xfc\x6a\xec\x82\x8e\xc3\x47\x3f\x5d\xdf\xfe\xf0\xf1\xe2\xfa\xa7\x71\xd0\xe5\xf5\xd5\xc7\xf3\x4f\x4d\xb3\x18\xdc\xdd\x9d\x7f\xba\xba\x1c\x5e\x2d\x2f\xd5\xdd\xbc\x1a\xad\x55\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xae\x8b\x1b\x43\x8f\x87\x07\xee\x2f\x53\x58\xfb\x50\xb3\x40\xe7\x15\x2b\xb8\xc7\x88\x79\xb7\xa5\xbf\x54\x15\x9e\x49\x97\x78\x5c\x1a\xed\x09\x1a\xc0\x59\x01\x85\xa1\xd4\x29\xe4\x35\xf8\x91\x3a\x47\x37\xd0\x61\x42\x53\x0a\x3e\x6f\x74\x88\xaa\x1b\x5e\x6e\xd0\xce\x09\x86\x60\xbd\x76\xf1\xb2\xd3\x20\xab\x39\xcd\x40\x29\x27\xc8\x71\x68\x62\xcc\x09\x06\x79\x76\xc1\x70\x4a\xa3\x6a\x02\x06\x80\xaf\xa2\x02\x68\xa4\xda\x62\x89\xc0\xca\x2d\xcf\x09\xfa\xe1\x2f\xc5\xa0\xc0\x83\x61\x35\xef\xbc\x56\x4f\xcf\x3e\x10\xb9\x59\xd5\x55\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\xeb\x76\x83\xbb\x29\x67\x01\xd8\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd0\x1d\x00\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xc5\xf7\x09\x99\xe3\x27\xca\x5d\xf1\x0a\x53\xe3\x03\xd6\xd1\x8a\x56\xe8\x10\xb5\x1e\x94\x13\x34\x88\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xb0\x3c\xec\x10\x1f\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xbb\x87\x72\xa9\xb3\xc3\xf2\xdd\xbb\xc5\xf5\xaf\x57\x70\xec\x48\x79\xbc\x91\x30\x70\x8f\xe5\xa3\x63\xcd\xab\x04\x02\x07\xaa\xb3\x5d\x8f\x16\x5d\xa7\x6b\xa7\x7e\x65\xc7\x70\xd0\x36\xeb\xb3\x15\x13\x7a\x45\x97\x6e\xc6\x49\xa5\x70\x57\xe7\xfe\x4a\x85\xbf\x1a\x3b\xdb\xa9\xb7\xa7\x59\x1a\x83\x23\x39\xf6\xf4\xbf\xc6\x3c\x6e\xe0\xd3\x6b\xff\xe5\x52\x91\x6d\x1c\xac\xdb\xba\x3e\xa0\x5a\x8a\xae\xf5\x03\x2d\xa5\xc3\x1d\x81\x3b\x75\x17\x06\xa1\xec\x02\x8d\xc0\xdd\x87\x29\xb3\xc5\x78\x88\xf7\x47\xb9\xf2\xd3\xfa\x1c\xfb\x02\x71\x78\xc2\x9f\x4a\xca\x65\x4a\xa4\xc4\x2d\x70\x25\x81\x49\x6c\x1b\xc6\xe0\x4f\xa8\xfd\xb0\x23\x3d\xb9\x33\x79\xaf\xbf\x5a\x66\xf4\xb9\x0d\x35\x63\x37\x51\x2d\xb0\xc6\x2e\xce\x16\x5d\x9b\x6c\x3b\xcd\x5f\x0e\x8a\x50\x1a\x2e\x82\x08\xa3\x36\xf7\x4f\x47\xb3\x5a\x75\xc1\x1a\x6b\x2c\x85\x2e\xbc\xf5\x23\x70\x82\xd6\x37\xc6\xc3\xb6\x7e\x15\x5c\x5e\x9f\x35\xa8\xae\xe4\xef\x0c\xeb\x4f\x47\x3c\x4d\x8d\x5c\x50\xb2\xa5\x1e\x20\x6c\x92\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\x71\x30\x62\xcf\xc1\x86\x94\xc2\x80\x07\x61\x4b\x80\x25\xfa\x59\x1f\x37\xfa\x54\x0a\xae\x06\x91\x91\x42\xa4\x6f\x40\x08\xc6\x21\x58\x14\x8f\x5a\x41\xe0\xc1\x7e\x6d\x41\xea\x1b\x54\x0a\xac\xac\x6f\x5b\xbd\x40\x3f\xb7\xa0\x4c\xdf\x16\x9a\x72\xd7\x21\x04\x95\x02\x9b\x46\xb0\x83\x42\x81\xaf\x0a\xee\xed\x93\x35\x4d\x6e\x6f\x3a\xb1\x08\x15\x7a\xba\x6e\xb5\x7f\xef\x66\xf4\x7b\xe3\x77\xc8\x5b\x20\x4d\x82\xd6\x3c\xbe\x37\x3a\xd4\x32\xab\x4b\xb5\xb7\x81\x18\x12\x1d\x1a\xcc\xc0\xaf\x20\xce\x72\x70\x73\xfe\xd5\x01\xfa\x2a\xcc\x35\xfb\x6a\xa3\x03\x68\xc7\x6d\x8b\x05\x82\x36\x55\x4a\x38\x28\x1f\x3b\xd8\xab\xca\x49\xb4\x7b\x66\x0f\x22\x6a\x3b\x87\xfa\xcb\xd2\x37\xe0\x9c\x86\xe2\x77\xc6\x7f\xeb\xc3\x9d\xad\x0b\xc8\xc8\xb8\x54\x36\xac\x5d\x3c\x62\x93\x45\xd5\xc9\x73\xe0\xbd\x3c\x9d\x4f\xe9\xd6\x05\xdd\x74\x7b\xf5\xe4\xe4\x1d\x87\xe1\x2e\xbf\x0f\x56\xa4\x3b\x0f\x4c\xc4\x35\x9f\x06\x5c\xac\x2d\x4a\xa1\x8f\x5f\x6f\x9a\x55\xc9\x5e\xe6\x16\xb3\x71\x53\x56\xc9\x3f\xef\x8d\xdc\x3a\x04\x7d\x0f\x9a\x56\xc4\xc6\xfb\xb7\x08\xd7\x3d\x95\xbd\x2c\x95\xed\x22\xdf\xa1\x3c\xb8\xf5\x2f\xd0\x53\x23\xc7\x05\xcd\x38\x83\xab\x56\x26\x3c\x83\x2f\x55\xfd\x5b\x5d\x2e\x77\x4d\x9f\x6f\xb0\x26\xab\x9d\xbe\x77\x26\x70\xc0\xb8\x5d\xeb\x63\xad\x0e\x75\xa0\x6c\x09\x22\x4e\x4d\x6e\xa3\xa2\x29\x39\x40\x9c\x25\x8b\x20\xd8\xc1\x9e\x57\x20\x37\x13\xa3\x34\x27\x54\xb8\x4e\x2c\xc2\xe0\x5a\xc9\xf0\x6b\x4a\xe3\x6d\x34\xb2\x45\xa4\xc9\xd5\xe0\x72\x78\x36\x1e\x5e\xdd\x9f\xdf\xff\xdc\x80\x1e\x59\x7e\xec\x00\x24\x83\x17\xee\x7e\xbe\xbb\x1f\x5e\x8e\x3f\x0d\xaf\x86\xb7\x83\xfb\x15\xe0\x92\xcb\x3a\x6b\x03\x2e\xcc\x65\x93\xfa\xb6\x0e\x78\xa1\x33\xf3\x36\xf4\x5e\x87\x98\x0c\x3a\xa1\xa4\x05\x66\xd2\x24\xfe\xb3\x98\x08\x14\x93\x27\x92\xf0\xac\x30\xab\x36\x2e\x58\x80\x3f\xd9\xd0\xfe\x32\x0c\x4a\x68\xb3\xba\xc6\x27\xc8\x54\x7a\x0b\x8a\xdd\xfa\x06\x41\xe4\xc3\x82\xb0\xaf\x14\x22\x9f\xb3\x84\x46\x54\x05\x89\x81\x5c\x58\xf7\x8a\x71\x1f\x42\x74\xea\x0a\xe2\xda\x59\x34\xca\xce\x75\xfe\xd0\x93\x5e\xd7\xf6\xfd\x89\xf2\x78\x68\x2b\xcb\x07\xed\x40\xb1\x6f\x71\x1a\xd7\xe0\xda\x36\x18\xdd\x4b\x98\x07\xea\x19\x3a\x36\xb9\xaf\x05\xca\xad\x79\x90\xab\x6f\xc3\x65\x71\x32\xa5\x73\xbd\x3c\x50\xa6\x1b\xa5\xbe\x71\xb8\x4b\xa9\xac\xe6\x0e\x70\x37\x6c\xec\xfa\x9a\x01\x0b\xb5\x6a\x31\xcc\xc4\x9c\x62\x24\x48\xca\x95\x56\xc0\x4c\x44\xc0\x81\x16\xaa\x28\x4e\xe8\xaf\x80\x50\x25\xc8\x51\x10\x41\xe1\x70\xbd\x0a\xf7\x81\x45\x8f\x38\x1a\xb1\xb3\xe1\xcd\xed\xf0\x54\x33\xa4\x23\xf4\x20\x01\x7c\xaa\x34\xf5\x33\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xb6\x60\x30\x22\x04\x17\xdd\xf9\x83\xef\x6f\x08\xdf\x35\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb5\x26\x72\x90\x33\xb0\xf3\x94\xac\x5b\xfc\x5c\x5a\x91\x10\x7c\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x7c\x67\xf7\xf9\x95\xfa\xbc\x81\x6f\x97\xcd\xf3\x1e\x42\xec\xa4\x2a\xb0\x40\x0d\x5c\xa8\xaf\x79\x53\x99\x67\xab\xa8\x28\xde\x02\xa8\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x38\x6c\x68\x69\xab\x07\xcd\xac\x7b\x54\xf5\x9a\xe1\x94\xe7\x0c\x94\x06\x08\x63\x6d\x18\x8c\xcc\x08\x53\x2b\x06\xf3\x56\x30\x2c\x95\xa1\xee\x2f\x12\x4b\xc3\x40\xdb\xc0\x58\x9a\xfc\x49\x50\x78\x79\xbd\x6b\xd9\x05\xe5\x95\x9c\x4a\xfa\x50\xf9\xfb\xb9\x59\xcb\xc6\xf2\x71\xeb\xee\xee\xb1\x7c\x5c\xdd\x55\x4c\xa2\xc7\x75\x2f\x9b\x6a\x66\x66\x62\xeb\x56\xd7\x8c\x7d\x0b\xfd\xd4\x16\x66\x81\x72\xe5\xd1\x23\xfa\xfe\xfe\xf2\x02\x4d\xa9\x96\x7b\xf5\xb5\x72\x85\xb5\x8c\xfd\x20\x12\x67\x17\xb6\xb6\xd5\x5c\x24\xfe\xee\x85\x8d\x77\xa2\x54\x20\x25\xe8\x1b\x0d\xcf\x88\x33\xf6\x0a\x8b\xb5\x57\x29\xcc\x22\x30\x8b\x79\x6a\xe6\x71\x2c\xf3\xe9\x94\x7e\x3e\x52\x58\x7c\xd3\xb2\x1e\x26\xaa\x62\xfc\x77\x3e\x19\xeb\x11\x6d\x79\x11\x37\x35\x87\x6c\x39\x65\xbf\x6c\x76\x66\x67\xe6\xdd\xff\xcb\x27\x90\xeb\x9e\x09\x0e\xf8\x7f\xe0\x9d\xb3\x91\x0a\xf6\x15\x47\x49\x47\xc8\x25\x50\x95\x20\x4e\x22\x2e\x04\xb1\x29\xf2\xa6\xb2\x68\x86\x85\xa2\x60\xad\x75\x10\x29\x25\x6c\xfc\x62\x8b\xc2\x82\xdf\x73\x5c\xe0\x50\x4f\x08\x01\x07\x4f\x46\x93\xf5\x94\xde\xd3\x92\x6f\xb2\x72\x02\x6d\xe4\xa9\x45\xcd\x04\x83\xcc\x4a\x11\x6b\xf8\x44\x98\xda\x89\x7e\x02\x4d\x34\x24\xed\x77\xf3\x32\x98\x02\x9f\xe7\x67\xc5\xe5\xe6\x42\x7a\xc3\xa8\x26\x25\x30\xdc\xf3\x36\x51\xca\xba\xd4\xdb\x1c\xfd\x4f\x9d\x7d\xc7\xf0\x6a\x7d\x5d\x56\x84\xc6\xdb\xd5\x2e\x0a\x7d\x17\x61\xad\x0e\xd8\x7f\x43\x18\x1f\x49\x8c\x15\x23\x80\x8f\xb0\xca\x69\x75\xcf\x4d\x9f\x9a\xb6\x2a\x5d\xae\xdc\xf2\x0d\x30\x6b\x4a\xcd\x7c\x22\x90\xd2\xb9\x8b\x40\xf4\x75\x52\xf7\x61\x20\x0f\x22\x81\x10\xea\xa5\x56\x2c\x53\x64\x5c\x73\x3e\x2f\xd9\xe1\x0e\x32\xba\x19\x8c\x16\x1a\x49\x26\x48\xa4\xaf\xb2\x13\x74\x93\x10\x2d\x79\xe5\x5a\xfa\xca\x93\xc4\xe1\x7b\x2d\x97\x0e\xd7\xc2\xa4\x7b\xf1\x79\x05\xba\xc7\x92\x89\x39\x7c\xbb\xe5\x33\x0b\xd6\x60\xf7\x80\x0b\xc1\xfa\x82\x09\x19\x0c\x89\x65\x2d\x12\x38\xfc\xc2\xc4\xcd\x82\x29\x09\x97\x2e\x32\xfa\xab\x66\xbf\x82\xc8\x39\x6f\x4d\x72\x0c\x67\xfb\x32\x73\x70\x4b\xf9\x82\x93\x70\xf7\x61\x5b\x5c\x75\x07\xb9\xa6\x72\x07\x96\x44\x9c\x65\x53\xf4\xb5\x1f\x7c\xf4\x87\x45\x5b\xb5\x77\xab\x1d\x1a\xdc\x92\x85\xa9\x2d\x44\x3e\x2b\x5c\x17\x85\x32\xb3\x30\xbe\x57\xff\x79\x61\x40\x2e\x52\x02\xa8\x92\x45\xcd\x39\xa4\xef\xda\xb6\x2d\xd6\xf3\x1c\xe7\x62\x2d\x48\x8a\x02\xb3\x7c\x1d\xce\x6d\x93\x51\x8a\x61\xe9\x45\x68\x66\x97\xb6\x94\x04\x88\xd1\x36\xd4\x48\x96\x70\xe0\x2c\xd9\x98\x65\x6c\x54\xf1\xda\x99\xf2\xb6\x6e\x35\x90\x92\x0b\x51\xe6\xa5\xbc\x6b\x25\x0a\x2c\x4d\xa0\x47\x16\x5b\x1f\x59\xcc\xd6\x15\xf1\xb4\x07\x38\x80\x4a\x40\xe2\x7f\xe1\x40\xab\x0a\x0e\xd6\xe8\xbd\x2a\xf3\xa9\xb4\x3b\x9d\xd2\x9c\x4a\x5f\x68\x5e\x72\xb6\xa5\x07\x4e\x4f\x66\x31\x86\xc4\xd1\x6d\xa2\x70\x4a\xf3\x37\xde\x03\x68\x93\xc4\xc8\xa0\x17\x18\xdc\x63\xbb\x76\xde\x73\x92\x61\x41\x98\x1a\xb1\x5b\x3d\x0a\xf3\x45\x11\x89\xe1\xe2\x70\x1c\x16\x3d\x54\xac\x9d\x22\x6c\xbf\x82\x45\x6f\x0b\x84\x93\x63\xf3\x12\xa8\xa6\x2f\x98\x64\xff\x9d\x79\xc7\x60\x1e\x58\xcc\x1f\x3d\x55\x3a\x2d\xd4\x78\x2d\x40\x46\x73\x0a\x90\x03\x31\x91\xf6\x42\xa2\xca\x62\x4a\x78\xf1\x3b\x27\x0e\x7d\x19\x3e\xf3\xfc\xab\x89\x61\x3b\x43\x01\x73\x06\x3a\x39\x62\x41\x1f\x4b\xc0\x3a\x8d\xb2\xbe\xa1\x2a\x01\xfb\x4c\x63\xef\xf8\x82\x7f\x9a\x1d\xe2\x82\xce\x28\x0b\x4a\x26\xd9\xe9\xa5\x38\x03\xf3\xae\x39\x83\x7c\xea\xef\xb4\x7b\x9b\x65\x70\x04\x23\xfe\x9f\xff\xfe\xdb\x11\x6d\xf3\x7e\xc8\xb1\x5d\x81\x7d\xd8\xc9\xf5\xb6\x25\xdc\xf9\x00\x45\xa4\x05\x9d\x22\xd0\x69\x65\x29\x73\xa2\xf8\xd5\x5e\x6e\x9a\x68\xb8\x9a\x1b\x77\x6f\x99\xdc\xc1\x37\x22\xf2\xe5\x55\x04\x02\x16\x57\x04\x04\x14\x5e\xdf\x20\xe8\xd6\xd5\x88\x30\xc1\x92\xba\xfd\xca\x85\x52\x61\x50\x01\x98\xdf\x36\xc1\x89\x73\x2c\x5f\x2e\x02\xa5\xb1\xb6\x91\x31\x1a\x87\x77\xe4\xaa\x58\x14\x33\x48\x93\xd4\xa8\x77\x25\x97\x44\x98\x03\xed\x51\x9f\x2c\xf1\x84\x50\x85\x10\x8a\xb8\xc2\xa5\x46\x52\x4c\xd7\x0a\x9b\xd7\xef\x37\x03\x29\x96\x6c\xea\x78\x46\xc4\x38\xce\x4b\x31\xd2\xab\xda\xbe\xd1\x1f\x9d\xe5\x6a\xb1\xba\x7d\x99\xe0\x7a\x6d\x97\x65\xe0\x95\xfa\xfd\x96\x66\x57\x0b\x86\x41\x24\x4b\x59\x38\x6c\x81\x86\x24\x15\x68\x48\x1b\x5a\x59\xb2\x04\xc0\x45\xc3\x14\x20\xc7\x15\x0a\x83\xbd\x89\x0c\x80\x35\x8c\x1c\x4d\xf2\xc2\x72\xe2\x4b\x02\xc4\x47\x23\xf6\xd1\xd4\xd4\x00\x65\xc6\x0c\x20\x82\xbc\x16\xf2\x39\xe3\x92\x94\x12\xad\x1a\x60\xfe\x6d\xa2\xa4\x1d\x46\xb3\x4c\x5a\x7c\xb4\xbd\x48\xfa\xe6\x20\x9f\xf5\x0d\xaf\x4f\xb9\x99\x02\xb7\x92\x7a\x22\x9a\x51\x4d\x3b\xe3\xc6\x93\xf6\x72\xa5\x66\x8b\xd0\x25\x80\x7b\x52\xc9\xe2\x00\xf9\xe9\x55\x08\x22\x21\x4f\x04\xac\xc6\x30\xc6\xb0\x98\x43\xd9\x7c\xd5\xc2\x4e\x56\x1d\xa0\x22\xcb\x11\xd8\x02\x8a\xab\x23\x28\xe7\x82\x35\xd1\x62\x39\xcb\x65\xeb\x84\xac\xa6\xf8\x8b\x35\xa4\xd0\x41\x58\xd4\x62\x41\x14\x22\x9f\x15\xb1\x65\x2f\xef\x5d\xca\x5c\x3d\xca\x1e\x35\x67\xfd\xb4\x8b\x48\x2f\x5e\x80\x78\xe0\x12\xa5\x5d\x4e\x60\xec\xee\x7d\x9b\x23\x37\xc7\x2c\xb6\x89\x9f\x56\x96\xd6\x32\x05\xcc\xce\xd8\x96\x7c\x48\xbc\x4d\x5f\x0c\xd0\xc0\x4d\x9b\x06\xb6\x1c\x2e\x32\xa7\x17\x69\xc9\x1c\xa2\x08\xb8\xd0\x02\x6a\xce\x14\x4d\x34\x71\xd8\x31\x68\xad\x39\x67\x1e\x8f\x0f\x02\xb8\xdb\x20\xdf\xa8\x94\x94\xcd\xc6\x76\x25\x5d\x0e\x63\xb7\x8b\xa1\x4c\x53\x97\xa6\x29\xf3\xe3\x77\xae\xa1\xe5\xb6\x63\x43\xd6\x00\xc7\xe5\xb2\x27\x41\xb0\x66\xdc\x4d\xc6\xe2\xa8\xb9\xa4\xcb\x31\x8d\xcd\x52\x50\x53\x5d\x19\x26\xba\x8e\x79\x19\xc4\xba\x3a\x5c\x41\x71\x85\x48\x9b\x11\x69\xf2\x9c\x20\x20\x5d\xb5\xa4\x7c\xca\xd6\x54\xcf\x73\xe6\x45\x34\x5b\xdb\xc9\x27\xb4\x57\xb2\x46\xb1\xeb\xce\x46\xdd\xe3\x24\x99\xe0\xe8\xd1\x2b\x1b\x5e\xe5\xe6\xc2\x61\xe3\x6b\x01\x15\x8a\x7f\x19\xe2\xd2\x03\x8d\x40\xba\x09\x9d\x62\x06\xb0\xc6\x0e\xbb\xe8\xdc\xac\x9a\x45\x02\x33\x08\x45\x66\xf4\x26\x84\x3f\x26\x59\xc2\x17\x69\xcb\x7d\x56\xcd\x94\xdb\x26\x20\xa5\x2d\x51\x6f\xa7\x57\x59\x85\xe9\xad\x7d\x99\xd5\xd2\x6e\x76\x00\x9f\xb4\x06\x97\xfc\x94\xf0\x09\x58\x0e\xad\x96\xed\x52\x49\x82\x8c\x86\xea\x79\x5e\x37\xc1\xa5\x7a\x22\xa9\xcc\x12\xbc\x58\xd6\x83\x49\xad\x78\xd9\x7d\x33\xa9\xf8\xab\x8d\x60\xdd\x83\x92\x1b\x3f\x7f\x09\xa0\xde\x0b\x27\x09\x98\x77\x0d\xff\xaa\x18\x93\x4c\x4e\xdb\x91\xf1\xc5\x2a\x3e\x62\x0a\xcf\xdc\xe6\x5a\xe1\x92\x3f\x33\x22\xe4\x9c\x66\xa5\xa2\x80\x5b\x47\x41\x5b\x8a\xb6\xff\x31\x31\xbf\x6b\xf0\x4e\x9e\x1d\x1a\x20\x0e\x4d\x1f\x32\xc3\x51\x61\xfc\x8b\x12\x2c\x25\x9d\x2e\x02\xfc\x0c\x1f\x50\x0a\x59\x4a\x65\x6d\x39\xa8\xc3\xd5\xc4\x68\xcc\xf8\x76\x93\x40\xbe\x7d\xf2\xdc\x43\xf9\xf8\xd1\x38\x04\x2a\xd3\xf7\x49\x1d\x2c\xc5\xdd\xd4\x16\x34\xa5\x15\x70\xd5\x64\xca\x6f\x96\xf0\xbd\x14\xe3\xa6\xdd\x8c\x50\x08\x93\x76\xd8\x56\x91\xf1\xb8\x16\x21\xe6\x8b\x2a\x65\x0c\xc2\xe6\x6b\xc5\xc9\x99\x3f\x35\x71\x7a\x4c\x0c\x80\x0e\x28\x3e\x3e\x40\x72\x2b\x2c\xa9\x2e\x74\x71\x46\x12\xb2\x93\xc0\xe2\x0d\x88\xa4\xea\xb5\x0f\xc8\x63\x29\x69\x14\x58\xfa\xab\x8d\x0b\x1b\xc4\x3b\xb7\x20\xd2\x34\x0f\xfd\x27\x33\x50\x1b\xf2\xdc\xb4\x8b\x60\xff\x82\x55\xee\xaa\xbb\x34\x41\xdb\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\xfb\x48\x6a\x6f\x1c\x19\x5c\x1b\xd7\x27\xd2\x25\x8a\x61\xe5\x01\xd8\x88\x03\xd5\xf9\x74\x37\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe2\xde\xd7\xf1\x7f\x4f\x34\xb1\xb3\xbc\x86\x1d\xad\x7e\xf3\x21\x5f\xef\xd4\xde\x11\x25\xdd\x95\x50\x43\x0b\xb4\x9b\xb3\x87\x5b\xb0\x1f\xc7\xd2\x08\xae\x5f\xbc\xdc\xb2\x35\x16\x80\x1d\x99\xcd\x88\xff\x0d\x09\x54\x66\x8e\xb1\xfd\xc2\x67\xbf\x97\x70\x9f\x70\x09\x2b\xcf\xac\xd1\xdb\x73\xbd\x2a\x69\x7f\xe9\xa2\xd7\xfa\x34\x5e\x1d\x55\x41\xdd\xbd\x3c\xb8\x9e\x3c\xe8\xb0\x24\xf7\xf0\xf2\x6f\x3b\x06\xfb\x79\xff\xec\x81\x70\x58\xbb\x12\x77\x27\x22\xbe\x23\x32\xd9\x0b\x49\xb1\xb6\x15\xaf\x25\x2f\x1e\x3a\x30\x9f\x02\x1a\x67\x7f\xb7\x68\x3f\x4e\xf2\xad\x75\x03\xbd\xdc\x05\xbb\x9a\x5e\x76\x42\x1f\x80\x6b\x89\x21\xfd\x37\xb7\x85\x32\xe0\xf0\x06\x21\x63\x35\xdf\xc3\x8a\x60\x3c\x3b\xbc\x4e\x61\x78\xb5\xe5\x7c\x89\xed\xb5\xb9\x5e\x9d\x37\xf7\x25\x49\x6d\xdd\xb1\xec\x42\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x3e\x26\xb6\xdb\x2d\xda\x80\x20\xe3\xb6\x6c\x97\x87\xac\xa9\xba\xd9\xf6\xd9\xea\x2e\x95\x6d\x9c\x09\x32\xa5\x9f\x37\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\xd4\x4b\x03\xf7\x0c\xd4\x57\x0b\xe2\xf6\xec\x4a\xdb\x9a\x4a\x23\x56\x24\x00\xda\xec\xbf\x47\xb2\x40\x5c\x94\x7e\xda\x14\xeb\x70\xf7\xb5\xdd\xcc\xbe\xce\x95\xca\xe4\xc9\xf1\xf1\x8c\xaa\x79\x3e\x39\x8a\x78\x6a\xc2\xcd\xb9\x98\x99\x3f\x8e\xa9\x94\x39\x91\xc7\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\xd0\x63\xea\x7e\xa7\xf2\x96\x13\x2c\xb7\x8b\xec\x71\x99\x5a\x2f\x9c\xb1\x1b\x74\xe3\x72\x24\xf5\x37\x52\xe1\x34\x0b\xa3\x47\x4d\x75\x34\xa9\x70\x51\x93\x01\xd2\xef\xf4\x34\xd1\x1c\x67\x19\x61\xed\x66\x07\x93\x4f\xb9\x05\xeb\x71\x19\x99\x76\x84\xe4\x73\x96\x60\x56\x46\x19\x80\x02\x43\x82\x44\x84\x29\x9b\x01\x5f\xd4\x4b\x06\x6a\x34\x48\x37\x86\xff\xaf\x97\x71\x07\x73\xa4\xb2\xa8\x1c\xe6\x86\x63\xab\x78\xba\xda\x8e\x38\x58\xba\x6a\xe5\xd4\x62\xed\x88\x5b\xb5\x65\xb9\x78\x77\xf5\xfa\xd9\xeb\x57\x6e\x11\x9c\x8d\xc9\x67\xcd\xe4\xe4\xa6\xb8\x54\x0f\x92\x48\x34\xf8\xe9\x0e\xc9\x05\x53\xf8\xf3\x09\xba\xa4\x0c\x04\xd8\xef\x79\x2e\x24\x3a\xc3\x8b\x43\x3e\x3d\x4c\x39\x53\x73\x74\x09\xff\x6b\x7f\x7a\x26\xe4\x11\xfd\x4c\xb0\xb0\xfc\xc1\x56\x5e\xf3\x45\xbc\x35\x09\x89\x9c\x49\x44\x9e\xf4\x09\xfd\xc3\x7f\xa2\xd4\xb4\x7c\x82\xbe\x3d\xfe\xc3\x7f\xa2\xdf\xc1\xff\xff\xff\xd1\xef\x5a\x34\xfd\xf5\x90\xad\xa0\x3e\xef\x6d\xd9\x9d\x7b\x50\x59\xa9\x0d\x4a\x96\x9f\x0a\x5e\xec\x54\x63\xcb\x8f\x34\x7a\xe4\xd3\xe9\x58\x13\x86\xc9\x57\x1b\x63\x51\x43\x45\xde\x10\x26\x94\xda\x02\xcb\xa6\x60\x5b\x51\x2a\xc5\x76\x6a\x80\x0d\x1c\xbb\x96\x79\x51\x60\x16\x82\x88\x4a\x45\x7b\xa9\x84\xaf\x48\xac\xb9\xea\x3a\xa7\xc3\x59\xf7\x5c\x8e\xb3\xb3\xe0\x84\x40\x20\x61\xd1\x70\x1f\xf8\x17\x46\xb1\x9a\x40\x1f\xbb\x90\x8d\xc7\xa1\x16\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\xd6\x3a\x5f\x1d\x2a\x79\xc7\xc5\x56\xfa\xd6\x23\xa9\xc5\x6c\x77\x2c\x0b\xe4\x4a\xd5\x86\xe5\xeb\x21\x11\x9a\x0b\x0f\xd7\x6b\xec\x22\xb6\x78\xe0\x6a\x2b\x26\x15\x26\xb8\xac\xdb\xa1\xd7\x53\x3f\xf3\x9f\xac\x1a\x26\x44\x9a\xb9\xb7\x8b\xb2\x68\x30\x5a\x2d\x22\x69\x96\xd8\x30\xe2\x06\x4c\xbf\x55\x1b\x7a\xe7\x61\x1c\xa0\x71\x08\x7b\x84\x94\x0f\xe6\x24\x5b\x9b\x27\xdf\xbc\x9f\xb9\x88\xc8\x29\xdf\x2e\xec\x35\xa1\xac\x16\x2f\xdf\xbd\xe2\x8e\x5f\xbd\x0b\x5b\x5b\xc9\xc1\xde\xf2\xb8\x50\x16\x8c\x5b\xc0\x16\x5b\x08\xf0\x36\xcb\xb3\x01\xdc\xb6\x5d\x40\x3a\xd6\x4a\x00\x6c\xc1\xb5\x8d\xe1\xb8\x60\x78\xae\x82\x44\xa5\x70\x84\xc0\x9a\x17\x2e\x89\x5d\x83\xa0\xa2\xad\xc7\x11\x14\x43\x29\x22\x95\x2a\x45\xc7\xb1\xa9\x08\x22\x36\x84\xe4\x34\x75\x89\x0e\x90\xc0\x10\x94\xa9\xe6\xba\x3d\x49\xc4\xe1\x14\x47\x94\xcd\x0e\x02\x34\x46\x40\x46\x08\xaf\x83\x26\x22\xbd\xc7\xf2\x71\xb7\x81\x86\x5b\xd7\x69\xa4\x71\x51\x2b\xcc\xe2\xa7\x18\xc7\x06\xad\x41\xd1\x29\x2c\x1f\xdb\x00\x84\x6a\xe8\x65\x4b\x46\xe7\x97\xc2\x61\x9e\x2d\x1b\x9f\xcb\xb4\x26\xa1\x3e\x05\xa5\x09\x5c\xe5\x60\x8b\x65\xe8\x12\xdb\xb0\x07\x1b\xa9\x82\x78\x2e\x19\xbf\x9c\x73\xa1\xc6\x1b\xc2\x9f\x56\xb3\xc5\x19\x39\x4c\x00\xb7\x84\x3f\x11\xf1\x44\xc9\x73\x19\x45\x74\x1d\x5a\x34\x46\xb3\x20\xaa\x0e\x60\x26\xd3\x8c\x43\x0a\xcd\x14\xa5\x98\x2d\x0c\xa3\xd4\xcc\x05\xcb\x47\xe9\xeb\x95\x22\x99\xe2\x24\x39\x40\x82\xe4\xd2\xd4\xf1\x95\x24\x99\x1e\xba\x8a\x0f\x31\x4a\xf8\x8c\x46\x38\x41\x93\x84\x47\x8f\x72\xc4\xb4\xa0\xc0\x66\x86\x49\x65\x82\x47\x44\xca\x40\xb2\x2a\x92\xb6\x6d\x2a\x1d\x14\x2b\x55\x44\xa4\x94\x51\xa9\x68\xe4\x44\xa6\x02\x7b\xc1\x94\xcc\x8e\x30\x98\x84\x21\x31\x11\x86\xab\x25\x3d\x62\x30\x28\x73\x66\x6b\x03\xc1\x75\x6d\xa1\xe5\x5c\x90\x78\xdb\x01\xda\x01\x52\x9e\xa3\x90\xb1\x2a\x1f\xc8\x15\x47\xea\xd4\x7e\x06\xc7\x78\x19\x09\xdc\x96\x4f\x94\x27\x48\x7f\xd2\x4a\xe8\x3d\x10\x53\xee\x43\xe0\x4b\x92\x8b\x8f\x0c\xdf\x33\xe0\x2e\x18\x72\x0b\x5c\xd7\x2a\x9a\xd6\xab\x08\x22\x0f\x94\xa3\xaa\x7a\xcd\x29\x8b\x92\x3c\xf6\x05\x09\xb5\x08\xf0\xa4\x89\xc4\x2d\x8f\x5e\x7b\x2d\x28\x1c\x20\x2c\xd1\x33\x49\x12\xfd\x5f\x13\x01\x7f\xe8\xeb\x03\x68\x96\x6c\x6a\x38\x40\x27\x8e\x4b\xb7\x51\xd4\xde\x81\x30\xde\x60\x35\x37\xa9\xed\x29\x57\xa6\x16\xa4\x01\x61\x74\xf6\x2d\x83\xda\x37\x49\xf8\x04\x4e\x3a\xe0\x33\xba\xd4\xd8\x20\xad\x2e\x8f\x22\x42\x62\x12\xa3\xaf\x83\x83\xeb\x61\x17\xbe\x69\x46\x0b\x2c\xad\xc8\x1e\x60\x33\x56\x0d\x6b\xad\x08\x8d\xe5\x72\x66\x47\xe8\xa6\x82\x3f\x12\x96\x29\xc7\x55\x34\xaa\x83\xda\x16\xbe\x0d\x9e\x63\x65\x12\x2f\xb7\x43\x6b\xe2\x39\x96\xfa\xdc\x01\x9e\x63\x65\x9e\x2d\xb1\xfb\x7c\xf6\xa2\x39\xc7\x7a\x52\x17\xbc\x7b\x22\x98\xc1\xc1\x32\x77\x67\x89\x04\xdd\x81\x5c\x34\x11\xe2\x7e\x61\x55\x56\x8a\xfe\xbd\x2d\x56\x65\x65\x30\xfb\x8c\x55\x59\x19\xea\xfe\x62\x55\x36\x0c\xb4\x03\x56\xa5\x71\xee\x8f\x35\x51\x77\x63\x0a\x90\xd8\x32\xc9\xa7\x77\x90\xea\xbd\x74\x8c\xa7\x26\x70\xc0\x5c\x63\xee\x8e\xb6\xd0\xcd\x30\x5a\x9b\x03\xd9\x16\x0e\x55\x71\x42\xac\x4b\x7b\xde\xfb\x46\xa5\xd1\xd0\xd6\x33\xbb\x1f\x84\xd6\x6e\xb0\x43\x46\x38\xb3\x39\xe5\x6d\x15\x55\xf6\x27\x7b\x76\x33\x18\x50\x80\xda\x2b\xb1\xfc\x4e\x40\x59\x97\x95\xe2\x04\x73\xfe\x6c\x0b\x04\x01\x19\x1a\xa2\x6c\x25\x41\xe8\x74\x6c\x95\xb6\xb6\x95\xa3\x4c\x91\x59\x55\xa7\x2d\x0e\x0d\x65\xea\x4f\x7f\x5c\xc9\x89\x0c\x92\xa0\x53\x0f\x83\x12\x01\xde\xd9\x61\x9f\x91\x18\x45\x73\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x14\x53\xa7\x48\xe5\xd2\xb8\x96\xa8\x1c\xb1\x12\xf4\xe6\x11\xfa\x08\x75\x4f\x71\x9a\x69\xfd\xcb\xcf\x8f\x6a\x4a\x1a\xe5\xdf\x7e\xfb\x27\x82\xbe\x45\x29\xc1\xac\xa4\xc3\x82\xda\xa4\xaf\x3e\x80\xaa\x53\x73\x32\x62\x8d\x5b\x81\x86\x9f\x4d\x29\x25\x17\xef\x77\xce\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd9\x29\x7c\xd9\x18\x00\xeb\x6e\xec\x7a\x1b\x0f\xe0\x1e\x39\x94\xa4\x04\x61\xd4\xe0\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\x1e\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x0e\x80\x12\xf2\x68\x6e\x1c\xab\x5a\x67\xc1\xb6\x2e\xc3\x13\x95\xb9\x56\x68\xa1\x2d\x57\x06\x42\x2a\x6c\xa0\x97\xe6\x14\xfa\xd1\xea\x37\x81\xaf\xc2\x2c\x39\xd4\x4d\x8b\x0a\xd1\x51\x2b\x3c\xbf\x23\x3a\x6a\x89\xaa\x7a\x74\x54\x8f\x8e\x5a\x5f\x97\x7d\x44\x47\xad\xec\x79\x37\x74\xd4\xa6\x2d\xdf\x00\x1d\xb5\xd4\xcc\x17\x83\x8e\x5a\x59\xd1\x2f\x06\x1d\xb5\x32\xaf\x1e\x1d\xf5\xcb\x43\x47\xdd\x12\xff\xb3\x99\x17\x1b\x7c\x25\x45\xd9\x62\x6d\x22\xfb\x4a\xa2\xf3\x6b\x4d\x60\xd1\x63\x39\xa8\xcd\x5f\x57\xdb\x63\x8e\x36\x33\xa1\xf5\x30\x47\x1b\x55\xf5\x76\x56\xb7\x2d\xc0\x13\x28\x06\xaf\x8c\x39\x5a\x9a\x40\x1f\x5f\xb9\x7e\x7c\x65\x23\xf1\xd9\xbe\xf5\xf0\x5c\xd0\x65\xf5\x42\xee\x88\x3a\x5a\xda\x9f\x4e\x91\x98\x20\xba\xef\x80\x12\x5f\x56\x9a\xbf\x2f\x1d\xf2\x95\xb2\x7c\xb8\x8a\xd2\xe2\x1f\x6b\x09\xcf\xa1\xc5\x19\x25\x3c\xf4\xff\xf7\x94\xbb\x41\x64\x70\x65\x79\xbd\x5f\xc5\xd0\x62\x07\x52\xed\x4c\xa1\x4e\x2b\xdd\x4d\xa2\xac\x4b\x9e\x5c\xd3\xc5\xec\x06\x71\x97\x91\xa8\xc5\xc6\x4c\x53\xba\xab\x66\x57\x5d\x64\x1e\x0b\x0b\x14\xf2\x5a\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x5a\x63\x9b\x6a\x23\xdc\xc6\x55\x9a\xe5\x9d\x03\x62\x82\x55\x9d\x6d\xf6\x59\x4a\x52\x2e\x56\x05\x56\x35\x7e\x69\x2b\xba\x6c\xf2\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xdd\x46\xba\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xce\xdb\xbd\xed\x36\x5b\xcc\xcc\x35\x1d\x42\x0e\x33\x78\xb9\xc1\xcd\xbe\x54\x72\x77\x03\x7d\x37\xc6\x74\xf8\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x4e\x15\x5f\xd9\x7a\xc7\x6b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\xeb\x07\x78\xb4\xa0\xa6\xd6\x97\x07\x22\x73\x24\x11\x87\xa1\x66\x50\x1a\x4c\x7d\xbd\x4a\x54\xe2\x34\xca\x2d\x88\x24\x17\xad\x51\xa6\x5d\x0c\xda\x91\xca\x71\x02\x9a\x44\x58\xa4\xb1\xba\xa9\x93\x45\x43\xda\x63\x37\x8f\x09\x65\xea\xcf\xff\xb1\xd6\x6e\x6a\xd5\xca\xae\x1b\x14\x96\xc2\x51\x44\xa4\xb1\xb1\xdb\x28\x64\x3c\xe1\x4f\x50\x53\x6a\x9b\x5d\xd5\x47\x59\xcf\x5b\x33\x78\x0f\x45\x1c\x17\xa4\x6e\xc4\x85\xb9\xe0\xf9\x6c\xee\x6c\x48\xfa\xcc\xe8\xa9\x35\xed\xe5\x8f\x35\x1b\xf9\xda\x7b\xf9\x5d\x4e\x93\xcd\x2c\x74\x77\xa5\x6a\x5b\x9f\xce\xef\x91\x9c\xfb\xd3\x3a\x81\x66\x1b\x37\xb6\x3e\xe8\xee\x7d\xda\x6f\xbd\xbf\x06\xba\x39\x70\xf0\x9b\x53\x9e\x24\xe0\x69\x90\x24\x7d\x0a\x8b\xe4\x87\xdd\xc3\x84\xef\xe9\x7a\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x49\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x4d\x36\xb6\x9f\xea\x85\x4e\xde\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x5b\x92\x57\x0e\x1c\x5c\x31\x8f\x7d\x0d\x1e\xac\x30\x3b\x1f\xcb\x57\x5c\x33\x2e\x70\xc8\x28\x3e\x03\xbd\xc4\x23\x36\x28\xe5\x53\xb8\x82\xd0\x93\x45\x11\x90\x6d\x74\x88\x90\x99\x41\x39\x09\x6b\x58\x01\x37\x9a\xfe\x0b\x34\x1d\x03\x5e\x6b\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x10\x47\x8b\x28\xa1\x51\xa0\x33\xcf\x04\xce\xe6\x4d\x1c\xcf\xed\x7c\x8f\xba\xf3\x56\xa8\x3b\x6d\x75\x97\xd6\x89\xdb\x76\x74\xc5\x70\x4a\x7a\x34\xa0\x26\x34\xa0\x03\x8f\x77\xc1\x8a\x0a\x52\x6f\x08\xa3\x50\x3f\x77\x3d\x24\xd0\x1b\x40\x02\x6d\x72\xf8\x0a\xbc\x9f\xd2\xb1\xeb\x61\x8a\x3e\x74\x82\x29\xf2\x97\xe0\x5e\x21\xcf\xb4\x9f\xc7\x37\x46\x34\xa9\x0f\xec\x2d\x61\x89\x1a\xc4\x85\x75\xe4\xa6\x65\xb8\x44\xcb\xe8\xa2\xd3\xba\xbc\x2d\x4a\xd0\x7a\x2b\xb3\x16\x00\x50\xe3\xdd\xb5\x27\x70\x40\xed\xdb\xb0\x27\xe7\x66\x97\x59\x2d\xeb\x95\xc8\x0c\x33\x5b\xd6\x51\xb0\xd6\x4b\x72\xf1\xf4\xf0\xbe\x12\x5d\x8a\x5a\x62\x9b\x25\xbb\x0c\x9c\x0f\x9a\x08\x34\xe7\x49\xec\x40\x28\xfc\x6a\xf9\x0e\x7c\x26\x80\x5f\x20\xb7\x19\x50\xd3\x1b\xb4\xad\xa2\x20\xd8\xb2\x94\x16\xbf\x89\x30\xdc\x1d\x30\x9a\x5d\x58\x11\x3c\x27\xd9\xc4\x7e\xb0\x52\x16\x91\x65\xf3\xf7\x92\x31\x96\x56\x08\xac\xe6\xcd\xc3\x5c\x69\xf7\x5d\x31\xb8\x65\xa2\x47\x60\x1c\x14\x4d\x15\x2d\x0d\x9d\xc1\xd3\x27\xea\x0c\x11\x38\xec\x71\xa9\x97\xce\xcd\xae\x93\xa7\xae\x4a\x2c\x1b\x04\x83\xd5\x2a\xb7\x6d\x0f\x0e\x94\xe2\xcf\xe3\x0c\x0b\x9c\x24\x24\xa1\x32\x7d\xb1\x60\xe0\xd3\xb2\xbb\x56\x9f\x55\xc1\x8d\x89\x88\xe5\xe9\xc4\x90\xa2\x1b\x88\xad\x17\xa9\x38\x12\x39\x0b\xa1\xcd\x9e\x6b\x45\xf5\x73\xb8\x17\xc0\xaa\x14\xcd\xa1\x38\xe9\x14\x53\xc1\x88\x6c\x2d\x05\x49\xa2\x5c\x50\xb5\x18\xdb\xca\x9a\xdd\x0f\xdc\x9d\xfd\xf2\xd4\x7e\xb8\xdc\xc3\xed\xb2\xfa\x5d\x7f\xbe\x92\x67\x46\x04\x94\x09\x72\x05\x6f\x82\xea\xa1\x16\xb5\x81\xf8\x5a\x43\x10\xfe\x5c\xbb\xb6\xdb\x02\x87\xf1\xf3\x38\xc8\xa8\x1a\x47\x55\xe2\x58\x75\x58\x9b\x70\xa7\x96\x4d\xf2\x85\x91\x97\x5a\xbc\xc8\x2f\x50\x65\xc4\xa6\x4d\x98\xa6\xf5\x80\x03\x57\x30\xd8\x2b\x8b\x8d\x09\x52\xde\xad\x52\xd5\x32\x4e\x8b\xf5\xd3\x14\x7c\xb4\x64\xb0\x83\xe0\xab\x0e\x23\x0e\x3a\xd9\xd1\xb0\xf5\x41\x17\x22\xcf\x14\x9d\xd4\xa1\x6d\xd4\xee\xaa\x8e\x0e\x12\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x34\x62\x03\x89\x9e\x09\x62\xc4\x42\x48\x34\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x03\xdd\x30\x54\x2d\x55\x1c\x82\x3f\x31\x7a\x16\x38\xcb\x88\x18\x31\x9b\xc5\x01\x0e\x17\xce\x13\xd3\x7e\x5b\x88\xab\x5d\x03\x32\x8e\x70\x34\x7f\xa5\x3d\xc2\x90\x8c\x13\xcd\x49\xec\xf2\x85\xcb\xdb\xe3\xe6\x6d\x0c\xd6\x6b\x6c\xd6\xf9\xd4\x95\xcf\x3a\xb0\x9d\x24\x91\xe6\x28\xbe\x9a\x72\x46\x84\x1e\xb5\xa6\xe1\x27\xc2\x10\x9d\xba\x71\xd8\xd8\x1d\xf4\x0c\x9e\x29\x4d\xfa\x4f\x98\x26\x26\x01\xdf\x75\xed\x84\x40\x63\x7e\x1f\x31\xe3\xee\x66\x51\x29\x43\x95\x32\x2a\xe7\x9a\x53\xe7\xe0\x93\x04\x35\xa3\x2d\x71\x86\x3d\xad\x73\x9a\x87\xfa\xf5\xe5\x1c\xf4\x89\x0a\xce\x52\x48\x92\xb1\xb8\x4c\x6e\xf9\x24\x51\xfe\x78\x34\xa6\x38\xae\x94\x88\xe3\x58\x96\x8d\x9f\x46\xad\xa4\xbf\x96\xcc\x2e\x87\xa5\xac\xc0\x28\x80\x15\x82\x20\x4e\x57\x59\x6c\x99\xfc\xdb\xa7\x36\xd4\x53\x1b\x9a\xd7\x66\x1f\xd3\x1b\xfc\x21\x5e\x37\xc5\xa1\x6d\xfb\x77\x21\xd9\xee\x30\xd5\xe1\x8d\x73\x02\x5e\x26\x1d\xe0\x6d\xf3\x37\x5e\x22\x75\xa3\x4f\x70\x78\xc3\x04\x87\xce\x96\xda\x72\x6c\x76\xfb\xb1\x5d\x2b\x39\x60\x05\x98\x53\x53\x2f\x97\x44\x09\x1a\xc9\x5d\xf0\x07\x99\xe1\x8e\x51\x6d\xa0\x05\x66\x2b\xa4\x26\xfd\x82\x77\x42\x42\x9c\x98\xaf\xf3\x37\x11\x04\x3f\xc6\xfc\xb9\x66\xab\x93\x21\x9a\xc6\x25\xd7\x62\x8f\x20\x11\x95\xa4\x14\xc9\x42\x25\x62\x44\x5a\x63\x27\x1e\xb1\x39\x25\x02\x8b\x68\x0e\xd9\x8d\xc5\xc6\x98\x2c\x59\x03\x68\x64\x62\x19\x42\x6f\xd3\x1a\x9b\xde\x61\xdd\xab\x16\x26\x8f\x4f\x67\xf7\x5c\x8f\x24\x35\x9f\x78\x61\xc6\x4a\x19\xa1\x49\xae\xd3\xf6\x6f\x1b\x88\xef\x17\xfb\x45\x83\xf1\x7d\x30\x51\xf0\x45\xc7\x80\xfc\x82\x1a\xfa\xa0\xfc\x17\x0a\xca\x6f\x58\xe2\xf5\x02\xf3\x37\x32\xf9\xbd\x7e\xcc\xb0\xeb\xf9\x35\xe2\x86\x57\x05\x6d\xe5\x93\xf1\x8b\x1f\xbd\xc6\x39\x77\x3d\x81\x3f\x79\xa2\x30\x12\xb1\xd0\x74\x36\x21\x71\x0c\x9c\x56\x71\x5b\x29\xba\xa0\x1d\x67\x1e\xd0\x77\x2f\x96\x9a\xd8\x71\xc2\xd9\x4c\xd2\xd8\x80\xad\x64\x18\x2a\xb6\x86\xc6\x0b\x00\x17\x80\xfd\x4d\x12\x22\x9c\x57\x42\xa0\xaf\x25\x65\x16\x4d\xd1\xff\x16\x73\x22\xd9\x57\xca\x18\x0b\x30\x5b\xa0\x47\xc6\x9f\x13\x12\xcf\x60\x87\xaa\x83\x39\x44\x94\x1c\x20\xaa\xfc\x67\x02\xd0\x08\x78\xae\x46\x7a\xec\x10\x6b\x66\x34\x00\x62\xbf\x0d\x6a\xa2\xfb\x66\xbe\x39\x42\xe8\x9c\xa1\x29\x8e\xd4\x01\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\xf4\x31\xe3\x0d\x9d\x37\x9f\x0d\xc7\x1d\x34\xb9\x0e\x12\x8a\xb7\x8a\xad\x7b\xc2\xdb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xab\xad\xb3\x32\x95\x75\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x9d\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xa6\x4d\xcb\xf4\x8d\x47\x4e\x39\x33\x0e\xc2\xad\xe4\x4e\x3a\x63\x38\x59\xd3\xc6\x51\x5b\xb9\xba\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xca\x7c\x43\x79\x0f\xa3\x98\x64\x84\xc5\x84\x45\x0b\x20\x11\x06\xc8\x39\x82\xe1\x04\x61\xf8\x0e\x27\x47\xe8\xcc\xe4\xd7\x78\x09\xcf\x5e\xeb\x70\xa1\xa7\x98\xd1\xa9\xd6\x13\xc0\x08\x6b\x47\x39\x62\x66\x98\xce\x07\x12\x14\xed\xf7\x2b\xd6\xb4\x33\xfa\x06\xb9\xda\x12\x95\x98\x95\xbf\x47\xcb\x2f\x1c\xe8\x6d\xd9\xee\xe8\xe6\x5c\x0d\x02\x99\x4f\x0e\xe1\xdf\xa5\x84\x33\x07\xd4\x53\xa0\xc8\x90\x84\x80\x39\xd0\x7a\xbc\xe0\x62\x6c\x03\x96\xdb\x85\xdf\x6e\x45\x1e\x47\xd0\x47\x49\xa9\x49\x29\xa3\x69\x9e\x06\xce\x3b\x53\xb1\x20\xb2\xf6\x4b\x93\x89\x91\x69\x3d\x20\x72\xe0\xe5\x48\x5f\xae\x6c\x81\x66\xf4\x89\xb0\x11\xcb\x38\x65\xea\x08\x5d\x71\x45\x82\x12\x11\x06\x3a\x8a\x67\x8a\xa6\x06\xed\x54\x10\x7d\x0e\x0c\x28\x36\x00\x4d\xce\xb1\x3a\x40\x71\x0e\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xec\x0c\xc4\x47\x8b\x11\x33\x37\xdd\x14\xd3\x24\x17\xc4\xca\xac\xd8\xe4\xc5\x14\x43\x2e\x46\x66\x91\xd0\x82\x49\xa4\x74\x36\x57\x7a\x8b\xb4\x8c\x67\xfd\x8d\x73\xcd\x8d\xf8\x88\x4d\x08\xc2\x28\xe3\x92\x2a\xfa\xe4\xfd\x97\x74\x8a\xb0\x94\x60\x41\x39\x42\x67\x25\xfb\x3f\x95\xa0\x7a\xb7\xc5\xd5\x52\x36\xb6\xb6\xe7\xf6\x7c\x9c\xad\x37\xb2\xd4\x8b\x5d\x65\x3c\x91\x3c\xc9\x55\xe8\x82\x6d\xde\xdb\xc2\x34\xee\x80\xfb\xc1\x40\xcc\xa7\x23\xe6\xe8\x5a\x1e\xa1\x81\x44\x92\xeb\x5d\x92\x66\x2b\x23\x41\x15\x11\xd4\xa0\x38\x11\x65\x36\xc1\x9f\x53\x7f\x06\x52\x2c\x1e\xb5\x08\x15\x5a\xe0\x0d\xa6\x68\xc9\xda\x31\x31\x12\x12\xc0\x5a\x85\xdb\x01\xa6\x7f\xc4\x38\x3b\x64\x64\x86\x57\xed\xc8\x88\x95\xb6\x04\x7d\x4d\xa7\x85\x42\xda\xe6\x73\x0c\xd6\x6e\x0c\x91\x4f\x6d\xbb\x64\x3a\x6e\xdb\xa4\x69\xc2\xf1\x0a\xb7\xf1\xb4\x38\xf4\xe8\xef\x7c\x62\xc6\xa8\xf5\x7e\xae\x40\x0a\xd4\xea\xd5\x94\x0b\x32\xc7\x2c\x3e\x70\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\xac\x75\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x61\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x1b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x0d\x04\xbf\x24\x5f\x2b\xb9\x2a\x70\xfb\x2d\xda\x6a\x9a\x28\xbc\xaa\xcc\xc8\x1a\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x34\x62\xe7\xea\x2b\xa9\x45\x74\xce\x66\xfa\xa2\x89\x9f\xa8\x2c\x8a\x9c\x44\x9c\xc9\x3c\x25\xc2\x76\xa1\x6f\x64\x4d\x91\xb6\x40\x00\x76\x32\x94\x1e\x9b\xde\xfb\x27\x9c\xd0\xd8\x15\xe2\xd1\x3f\x9a\x33\xa7\x47\x29\x9d\x47\xb1\x21\x24\xcc\x6e\x6e\xac\xd7\xea\xcd\xc4\xfa\x1f\x43\xc9\x1d\xa5\x85\x90\x8f\xad\xad\xfe\xb8\x2a\xe2\xdb\x55\x5f\x22\xde\x4f\x6a\x93\x42\xcb\x05\x23\xbb\x0a\x67\xab\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x16\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbe\xb5\x67\x5b\x96\x89\x90\x11\x4e\xea\x3b\xbc\xc4\xde\x6c\xde\x5f\xae\x04\xd8\xe3\x66\xda\x5e\x9a\xf4\x1b\xf1\x24\x59\xa7\x84\x49\x65\xe6\xa7\xc5\xe7\xcb\x47\x54\xf4\xa3\x37\xc0\xed\x05\x9c\x1a\x73\x79\xe3\xc4\x9a\x52\xa4\xb2\xbb\x14\xbe\x64\xd4\xb0\x85\x65\xad\x23\xc6\xa7\x50\xe4\x26\x69\x8b\xea\xca\x04\x4f\xe9\x3a\x28\xcb\x26\xd0\xe9\xd6\xd9\xc5\x57\x58\x19\x9c\xf5\x1c\x44\x53\x43\x5e\xb6\x47\xc8\xd7\xc3\x56\xdc\x5c\x72\x86\x52\x9c\x6d\xb4\xe0\xab\xbc\x42\x03\x94\x1a\x97\x9c\x5d\x3d\xc0\x5b\x24\x50\x2f\x06\x16\xf9\x19\x2f\x8a\xd4\xe8\x36\xfc\x5c\xb6\x16\x39\x3c\xe8\xd7\xcf\xd9\x94\xaf\x71\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x5d\xce\xe3\x69\x13\x51\xaf\x7d\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x9d\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf9\x52\x5d\x96\xe8\x70\xe7\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\x69\x6e\xf5\x15\xd6\xcc\x1e\x92\x4e\x8b\xb5\x25\x76\xc3\x7a\x38\xc0\xae\x47\x8f\xfa\xdb\x7c\x42\x57\x16\x39\xe8\xbe\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x9f\x37\x18\x38\x5d\x82\x98\x0f\xa8\x32\xa1\xf2\x4e\x7a\xca\x05\x0d\x0a\x83\x3a\x19\x09\x51\x28\x50\x12\x3a\x79\x02\x85\x1e\x4c\x8b\x73\xfe\x6c\xa2\xd3\x05\xd5\x3c\xcb\x08\xab\x0a\xcc\x3d\x9a\x17\x50\x6b\x2d\x31\xc6\x26\xff\x01\x37\x31\x83\xd8\xd6\x3e\x2e\x46\xd5\xb2\xa5\xbb\x28\xf1\xd4\x3d\xff\xce\xf5\x7a\xaf\xbf\xa8\xef\x4d\xe3\x08\xef\xcb\xad\xaf\x3d\x3a\x2f\xe5\xaf\x1f\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\x67\x3f\x1c\x3f\x9c\x23\xa2\x22\x94\xd0\x47\x32\x62\x91\x7c\x3a\xd0\xe2\xf1\x3f\x72\xa2\xf4\xcf\x2d\x1e\x01\x9a\x12\x26\x81\x13\x50\x55\xc3\x1e\x6a\x5e\x48\xb7\x30\xfa\xbf\x67\xe5\xef\x97\x90\x7c\x2d\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x03\xc5\x18\x5b\xe4\xb0\xa9\x1a\xe6\x06\xe9\x42\xec\xef\x39\x5b\x53\xe8\x3a\x2d\x3e\x0a\x46\xd1\x22\xd3\xa5\x19\x06\xac\xeb\xf5\xf2\x90\xcc\x37\x8d\xad\xaf\x62\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x34\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\x9a\xb8\x84\xc0\x2c\x9a\x6f\x6b\x42\xa6\xd3\x31\x49\xd6\x91\x44\xcf\xa7\xc3\x44\x6a\xfa\x8e\x1e\x5b\x4e\xe7\x26\x35\x1b\x8b\xc9\xd8\x4a\xb4\xa6\xee\x13\x2a\x4c\xd0\x38\x31\x15\xe5\x08\x02\x1f\x65\x35\x7b\xcc\x00\x44\xe8\x5d\xb4\x92\xba\x71\x51\x9a\xb4\x0d\x1f\x92\x0d\xbd\x20\xac\x46\x4c\xe4\x0c\x8a\x4d\xf8\x88\x05\x8c\x0a\xbc\xf0\xc8\xf9\x0f\xac\x37\x67\xa6\xd9\x84\x81\xe3\x36\x2f\x6b\xfd\x8c\xe7\x12\x6c\x35\x29\x51\xfa\x82\xfa\x1a\xea\xc0\x9a\x90\xa1\x03\x94\x09\x9a\x82\xb9\x55\x7e\xd3\xb0\x75\xa7\x58\xe1\x84\xcf\x06\x42\xd1\x29\x8e\xd4\x3d\xde\x4a\x03\xc7\xb6\x99\x4d\xc3\x4f\xdd\x30\xd0\xf9\x99\x5e\xfc\x19\x61\x44\xc0\x44\xb5\x4e\xde\x7c\x84\xe1\xc9\x46\x9c\x1b\xac\x6c\xd6\x30\x2a\xbd\xc5\x02\xe7\x8a\xa7\x5a\xbf\xc5\x49\xb2\x38\x30\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x97\xbb\xc9\x2e\xee\x29\x8e\xe6\xe4\x0e\xaa\x22\x37\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\x27\xe8\x7f\x8a\x39\x9e\x0e\x4e\xbf\x1f\x8e\xcf\xce\xef\x06\xdf\x5d\x0c\xcf\x82\xf9\xd8\x27\x97\xe7\x77\x77\xf5\x5f\xbf\x3f\xbf\xaf\xff\x78\x73\x7d\xf3\x70\x31\xb8\x6f\x6a\xe5\xe2\xfa\xfa\x87\x87\x9b\xf1\xc7\xc1\xf9\xc5\xc3\xed\xb0\xe1\xd3\x87\xfb\xf6\x87\x77\x3f\x9c\xdf\xdc\x0c\xcf\xdc\xaa\xfc\x2d\x38\x5d\x60\x3d\x86\xd4\x8b\xe6\x69\x54\x0f\xe0\x21\x2a\xbf\x78\x82\x1e\xaa\xa5\x0f\x6c\x2c\xb2\xc1\xb1\x78\xc6\x52\xf3\x30\x08\x85\x1f\x31\xe4\x3e\xd7\x8b\xd2\xf6\xa9\x09\xd7\x89\xe6\x04\x25\x9c\x3f\xe6\x99\x65\x6d\x26\x3e\x8c\x71\x63\xf8\x21\x32\x68\xed\xfb\xf3\xfb\x93\x7a\x09\x06\xdf\x58\x80\x98\xe5\xce\x00\x8c\x0b\x3b\x76\x0a\xb6\x14\x07\xcd\x5f\x58\x6f\x83\x1e\xfc\xce\x2c\xeb\xc7\xb4\x86\x99\xaa\x74\x13\xc7\xb6\xe8\xaf\x9b\x58\xd0\x70\x79\x5f\x97\xad\xa6\x5f\x0e\x53\x7b\x0a\x4d\x48\x84\x73\x13\xd4\xa4\xef\x29\x21\xb8\x08\x07\x5c\xd0\xc3\xee\x1a\xb5\x74\xd4\xd8\x60\x65\xcf\xf4\xc4\xe5\x23\xcd\x32\x12\x7f\xa8\xcb\x2f\xe5\xea\xb0\xb6\x26\x39\x9f\xa2\xe0\x4c\x6a\xbd\x1e\x74\x7e\x57\x38\x65\xbe\xf0\x9e\x34\x08\xdc\x28\x42\x59\x00\xc8\x59\xdf\x09\xbe\xb0\x05\x05\xd7\x18\x56\xe8\x99\x40\x4a\x75\x6e\x2b\x47\x19\xdd\x5b\x9f\x6d\xe8\xce\xd8\xb4\x5d\x1d\xb8\x52\xaa\x75\x2b\x33\xde\x85\xc0\xad\xbf\x97\xa4\x89\x11\x6f\x91\x17\x7b\x66\x1a\x05\xee\xec\x62\xde\x60\xc4\x2d\xc1\x0d\xee\x36\x68\xb0\x90\x2f\x91\xaf\xea\x37\xd2\x8a\xcb\x42\xb3\xed\x2e\xe3\x71\x58\x20\x25\x80\xeb\xee\x03\x2b\x81\x20\xaf\x5c\xab\x7b\x1e\xe3\x85\x26\x0e\x88\x35\x96\x79\x96\x71\xa1\x50\x4b\x1b\xc6\x8d\x6f\xc6\x07\x77\x8e\x9d\x87\xe7\x71\xd0\x88\x96\x30\x64\x43\x2d\x8d\x6e\xf0\x08\x76\x5d\x0b\xc6\x11\x06\xc8\x82\x22\xe8\xeb\x1e\xa5\x25\x95\xba\x44\xa1\x4d\xc2\xef\x36\x19\x06\x99\xbe\xe0\xbb\x96\xe1\x6b\xea\xfd\xda\xb5\xd0\xb8\xe5\x09\x99\xaa\x71\xa3\xd7\x67\x89\x81\x53\xb7\xc8\xda\x10\x65\xe8\x6c\xbe\x83\x16\xbb\x6b\x09\x7f\xb4\x81\x3d\x5a\x35\x08\x2c\x04\x82\x73\x65\xe4\xd3\x42\x87\x41\x6e\x35\xc1\xbc\x60\x3b\xb5\xb9\x60\x5e\x08\xd4\x32\xbf\xf1\x87\xfa\xb4\xa9\xa3\x11\x1b\x42\x00\x45\xa1\x88\xb8\x14\x31\xd0\x02\x56\xca\xff\xa5\xa2\xa3\xaf\x1a\xad\xd9\x8e\xf0\x5a\xd0\xbd\xad\x97\x9f\x2c\x50\x51\x58\xb6\xf4\x5d\x97\xd3\x63\xac\xde\x4e\x04\x34\x13\xb6\x65\xdc\x15\xc9\xac\x65\xde\xcc\xb3\x88\xf4\x81\xf8\x30\xdd\xd5\x11\xfa\xc9\x59\x7e\x20\xf0\xb5\xa8\xc9\x6c\x63\x37\x12\xbc\x70\xa0\x90\x4d\x0b\xbb\x0b\x9c\xc5\x5d\x87\xc2\x2e\x5f\x60\x0f\xe8\xd4\xb0\xca\x25\x05\x9c\x31\x63\x91\x5d\x23\xed\xe3\xd4\x7f\x74\x47\x96\x47\x05\x7c\x84\x32\x9c\x36\xb2\x0a\x84\x0e\x96\x2c\xfe\x97\xd9\x2c\x93\x89\xea\x0a\x6b\xd9\xb2\x88\xd6\x83\xaa\xcf\x0f\x78\x00\x4d\xa2\x2a\x9a\xd2\x24\x01\x39\xe0\x08\x0d\xa0\x3c\x30\x24\x72\xea\xab\xd0\x05\x58\xd0\x19\xe3\xab\x72\xcc\x5a\x88\x29\x0a\x88\xe9\xae\x9d\x98\x24\x50\x53\x91\xc7\xbf\x1b\x8a\xda\x01\xa6\x8b\xe6\x2d\xb8\x8e\x88\xdd\x1d\xc9\x65\x0d\xe5\xfd\x2d\xa2\xa3\x6b\xc3\x0d\x3e\xfc\x57\xf3\xd0\x3f\xe5\x58\x60\xa6\x20\xe6\xd7\x8a\xee\x82\x04\xa9\x47\xe4\x33\xc4\x67\x30\x63\x08\x86\x9f\xc2\xcd\x75\x2e\x7f\x08\xf7\x42\x34\x3e\x40\xf4\x88\x1c\x41\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\x56\x8b\x65\x3c\x42\x83\x44\x72\xfb\x05\x61\x51\x02\xe5\xb8\x83\xf0\x64\x4f\xf9\xd6\xad\x34\x59\x80\x82\x02\x5b\x59\x34\xcf\xed\x83\xe0\x43\x28\x32\x06\x3e\xf1\x04\x4e\x7a\xf1\xfb\xef\x79\x66\xbc\x15\x6d\x71\x12\x2f\x58\xce\xa1\x76\x0d\xbd\xd8\x26\x99\x52\x81\xcb\x36\x08\xde\x80\x8d\x29\x62\x4c\x03\x04\x16\xf4\x35\x56\x28\x21\x58\x2a\xf4\x87\x6f\xd6\x8a\x0d\x71\x13\x2c\xb8\xab\x3d\xbe\x45\xa2\x98\x4b\x35\x08\x85\x3b\xdf\x31\xd4\x8e\xc3\x42\x21\x8c\x18\x79\x0e\x23\x4b\x39\x04\x03\xbb\x82\x70\x24\xc8\x6d\x35\xf1\x64\x26\x33\x1f\xb2\x35\x8c\xca\xd4\xc2\x47\x1c\xdc\xb1\x75\x9f\xda\x61\x35\x50\x96\x55\x9e\x6c\x88\x27\x40\x72\x15\x41\xff\x73\xac\x46\xcc\x72\x56\x17\x36\x12\xa4\x79\x0d\x92\xa4\x1c\x68\x8f\x21\x97\x84\xe9\x09\x43\x7d\xf6\x23\xbf\x40\x57\xa0\x7e\xf9\x68\xe7\x92\x9d\xae\x38\x2c\x26\x1e\xcf\xe3\x1d\x85\x6d\x37\x4a\x3b\x4d\xf6\xe5\x57\x14\x82\x1b\xba\xbf\x30\x85\xf2\x3b\x08\xc3\xa4\x69\xc8\x2b\x0e\x56\xdd\xa6\xbf\x44\x36\xde\x75\x07\xdd\x45\xe5\x66\xfb\x38\x5c\xb3\xcf\xbc\xc1\xdc\xde\xb2\xb9\x81\x6c\xb1\x8d\x02\xee\xc3\xee\x5f\xcb\xe3\x5b\x1a\xfa\x79\x0c\x49\x7f\xab\xb9\x60\x91\x44\xe7\x58\x87\x89\xbd\x8e\x83\x9c\x9e\x20\x85\x00\x82\xff\x1c\xe3\xb3\x6f\xb6\x78\x5e\xb3\xf7\x3d\xfd\x83\x62\xfe\x6e\x2a\x3e\x08\xae\x3e\xf1\x76\x61\x6f\x10\xff\x1d\x47\x10\xe9\x0f\x3d\xb9\x1c\x83\x3a\x20\x93\x83\xb1\xc6\x60\xcc\x6f\x14\x0f\x33\xc1\x23\x22\xe5\x11\x1a\xc2\x45\x63\xff\x89\xf0\xd4\x39\x24\x82\x97\x47\x4c\x6b\x26\x0e\xbf\x25\x68\xbf\x4c\xe2\x4d\x27\xc0\x80\xc1\x6d\xe5\xcb\x49\x57\xd7\x28\x69\xd3\x26\x1c\x16\x1d\xb4\x01\x65\x0d\xd0\x70\x76\x82\x62\x1e\x3d\x12\x71\x2c\x48\x4c\xe5\x09\xf8\xd6\x55\xab\x53\x2f\xd5\xda\xf6\xd6\x92\x46\x5b\xa0\xc0\x8a\xa4\xb8\x53\xd3\xbf\x0d\xb0\x76\xe1\xb5\x07\x88\x4e\x41\x9d\x70\x39\x19\x26\x08\xd9\xc1\xdd\x10\xa6\xc4\x02\xe2\xfa\xbd\x29\xab\xb2\x10\x4e\xd3\xd0\x42\x5b\x5b\x36\x91\xd8\x45\x0c\xce\x86\xd3\xbe\x9f\x13\x49\x5c\xc0\x81\x99\x94\xe2\x36\x96\xd9\xb0\x8b\x0c\xab\xb9\x84\xd4\xd5\xf2\x1a\x58\xa5\x0b\x3e\xd5\x2b\x84\x33\x88\x57\x30\x56\x8a\xe2\x23\x9f\x60\x29\x15\x4d\x92\x11\x63\x84\xc4\x12\x41\x96\xe9\x57\x8d\x19\xf2\xfa\xd3\x03\x84\xe3\x18\xfd\xef\xaf\x3f\x5e\xfc\x7c\x3f\x1c\x9f\x5f\x81\xd1\xfa\xfc\x62\xf8\xcd\x81\xff\xf1\xfa\xe1\xde\xff\x6a\x2c\x2c\x4f\x44\xa0\x14\x3f\x82\x8a\xc7\x24\xb1\xc9\x13\x64\xc4\xc2\x91\x3a\xec\x00\xfd\x44\x12\x17\xe9\x6a\xc5\x14\x0f\xa1\x68\xf7\xb0\xb5\x62\xb1\xb1\xf9\xad\xa1\xfc\xde\xfa\x4f\x96\xd3\xa0\x23\x1e\xdf\x85\x13\x03\x21\x47\x06\xcb\x20\x99\xdc\xea\xbe\x05\xc1\x11\x36\xa3\xac\x2d\x1e\x8f\xb0\xa7\x97\x14\xe2\x7f\x20\x8b\x1f\xb5\x7a\x7d\x83\xa9\xe8\x4c\x7b\xcd\x68\x40\xee\xc4\x68\x3d\x1d\xcb\xea\xa1\x92\x46\x16\x36\xd9\x36\xad\x31\x9f\x4d\x40\x70\x6f\x3e\x5d\x0b\x2f\x45\x3e\x2b\xe1\x50\x2a\x7c\x3e\x87\x83\x72\xf2\x17\x4d\x41\x83\x23\x76\x7f\x7d\x76\x7d\x82\x48\x82\x27\x1c\x42\xf9\x6d\x48\x90\x6b\xc2\x2e\x58\xc4\xd3\xa0\xa1\x12\x42\xc9\x01\xca\x0a\x84\x92\xd0\x88\x76\x64\xda\x58\x81\x54\x92\x71\x51\xc7\xf7\xd8\xad\x0a\x68\x27\x7b\xc3\x45\x97\xeb\x5f\xbf\x06\x4b\xc7\x33\xad\xc8\x55\x38\xaf\xbd\x9b\xa7\x04\x9b\x5a\xfa\xc6\x2d\x64\x6d\xf9\x36\x80\x35\x49\x4a\xf5\x14\xf5\xc1\x91\x47\xd6\x05\x5f\xbc\xc9\x19\xfa\xe1\x2f\x12\x4d\x72\x35\x62\xe5\x36\x38\x43\x83\x9f\xee\xd0\x77\x58\x45\xf3\x6f\x46\xec\x5a\xab\x99\x3f\xfc\xa5\x05\x4a\x69\x6d\x74\x42\xbd\x26\x67\x58\xe1\x0b\x8e\x63\xca\x66\x4d\xd0\x84\x45\xfd\x98\xe1\xfd\xe0\x04\x5d\x5b\x1d\xbe\xc8\x04\xf1\x29\xc1\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x65\xf8\x36\xa3\x99\xc1\x85\x35\x62\xf7\x06\x93\x51\x73\x55\xaa\x50\xc6\x6d\x0d\x23\xad\x95\x19\xb4\x4a\xec\x32\xa4\x48\xb2\x40\x7a\x75\x80\x8c\xfd\x66\x58\x79\x0c\xe4\x99\x3a\xb3\x1f\x31\x50\xd0\x7d\x6e\x4a\xc2\x23\x9c\x40\x4c\xde\x61\x60\xd3\xd3\x6a\x3b\xcf\x21\x3f\xdc\x14\x3d\x5f\x94\x43\x67\x3d\x64\x81\x17\xca\xc2\x8d\x02\x03\x00\xec\xa3\xf5\xc6\xa6\x5c\x73\x1c\x83\xc5\x06\xc6\xb7\xc4\xac\x8e\xfe\xd0\x63\xb3\x99\x65\xd1\x4f\x7d\xda\x16\xcf\x99\xc3\x22\x89\xc0\x7c\xcf\x16\x10\xbe\x0d\x45\x47\x38\x84\x7e\x14\xdc\xd9\x12\x65\x6d\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\x58\xcf\x15\xcb\x33\x1b\xd8\x68\x65\xfd\x4c\x90\x43\x9f\x01\x15\x97\xd6\x54\xdf\xb0\x47\xe8\x36\x54\xaf\x63\x1e\xe5\xa9\x43\x56\x86\xec\xa9\xa2\xac\x7c\x49\xe2\x31\x17\xfb\x2a\x8a\x07\x94\x16\x45\x20\x7d\xbc\xb3\x7e\x6c\x08\x66\x10\x7e\x5a\x97\xd4\xdb\x05\x5f\xe0\x1d\xdb\x45\xad\x99\x86\xc6\x59\xb9\xa5\x52\x6b\x5b\xe7\x25\x5e\x15\xe8\xaf\x5c\x80\xb0\x45\x3e\x67\x1c\x8c\xdc\x26\x3d\x8b\xc7\x5f\x49\x74\x7e\xa3\x25\x20\xad\xf1\xfa\x33\x98\x4b\x65\x82\xcb\x20\x5d\xc7\x7c\x6d\xd2\x05\x0e\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x9d\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x3a\xa7\xda\x62\x17\xec\x01\x6c\x5b\xfe\x4d\x50\x1e\x83\xd8\x21\x3c\xb3\x27\x5c\x86\x27\x13\x95\x8e\x66\x11\x49\x20\x89\x3a\x28\x73\x08\x2f\xec\x5a\x89\xfe\x7f\x2d\x01\x2b\x1b\xeb\xa3\xb2\x59\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xf0\x33\xd6\x9c\xfb\xc0\xc2\x68\x99\x8f\x8c\xe7\x65\x8a\x23\x83\x0a\x2a\xd1\xd7\x9f\x4f\xf4\x6f\x07\x68\x71\x02\x41\xa4\x07\xe8\xd7\x13\x8b\x96\x83\x85\x1a\xeb\x9f\xbe\x71\xb2\xb6\x6d\x02\x06\x4d\x25\xfa\xea\xf8\x09\x0b\x53\x33\xfa\xd8\x8c\xe8\x2b\xcb\x59\x7d\x5d\xbc\x50\x36\x4f\x38\x7f\xb4\x01\xb6\xb5\x0f\x8f\x1d\xf0\x1a\x90\xb7\xf7\x9b\x98\xad\xf7\x89\xf9\x0a\x1d\xc2\x0b\x04\x1d\x65\x13\x74\xf4\x77\xc9\x19\x3a\x5a\xe0\x34\xb1\xbf\xba\xa7\x36\xfe\x17\x4b\x9b\x13\x17\xfb\x20\x9f\x64\x61\x2c\xa5\xdf\x25\x7c\x02\xb3\xba\x74\x33\x35\x11\xb4\x30\xd0\xe2\xf6\x29\x2e\x2c\x3b\x11\x97\x88\x0a\xf8\x41\x29\x57\xe6\x15\xe0\x71\x4d\xb3\xfa\xec\x87\xf4\xdf\xc6\x2f\x0c\x8b\xe2\x92\xf8\x8c\x71\xd8\x47\xaf\xe9\x46\x3f\xa3\xaf\x2d\x0b\xfa\x46\xdf\x31\x36\x5c\xd9\x2c\x43\x53\x07\x0b\xdf\xc1\xcf\x41\x07\x94\x21\x93\x96\xb9\xe4\xcb\x5f\x8f\x8f\x8e\x8e\xfc\xd7\x90\xb5\xfe\xff\x22\xaa\x24\x49\xa6\xa6\x25\x77\x83\x2d\x46\xec\xd2\x15\x5e\x70\xc6\xeb\x02\xd2\x31\x13\x5c\xf1\x88\x27\xe8\xb0\x30\xe8\xc6\x3c\x92\xe8\xdf\xb5\x58\x1b\x2c\x25\xfc\xa8\xf5\xb8\x16\x18\x58\x83\xf4\xfc\x4a\x87\xca\x1a\xc4\xab\xc7\x2a\x44\x71\xf3\x8a\x2d\x96\x61\x15\x0f\xa0\x05\x4d\x39\xc7\x16\xe9\x4d\x08\xfd\x32\xf9\xac\xe0\x51\x0b\x90\x5e\x63\x28\x7b\xf3\x4d\x59\x63\xb7\x05\x9e\x9e\x21\xeb\x96\x05\xb0\x78\x57\x96\x33\x98\x79\x1e\x84\xee\x13\x7d\xb9\xb0\xb0\x14\x80\xcc\xd3\x14\x8b\xc5\x71\x71\xda\xea\xc4\x59\x20\xad\x01\x8f\x49\xdc\x02\x80\x0b\x37\xb1\x47\xcb\x46\x31\x58\xf1\xd2\xdd\x68\xfe\xec\x46\x50\xcb\x30\x40\x2c\x20\x2c\xe2\xb1\xa5\xeb\x22\xfb\xb4\x2c\xb1\xf8\x77\xea\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\xb7\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x86\x7b\xf4\xfc\xfa\xce\x7d\xd3\xfd\xd2\x85\x75\x28\x8b\xec\x38\x09\xf1\xf1\xd8\x0c\x09\xfc\x5c\x5c\xbf\x10\xdb\x61\xac\x33\xb9\xcf\xcd\x35\xff\x3e\xe5\x37\x34\xd1\xb7\x16\xd0\xf8\xd1\x88\x95\x7e\x3e\x40\x24\xa1\x29\x65\x3e\xb6\xce\x30\x77\x3e\x35\xd2\xf3\x23\x55\x7a\xcb\x64\xfc\xa8\x39\x98\xc3\x75\x0a\x54\xaa\x01\x5b\x38\xd2\xf1\x8e\x29\x6b\x81\xc8\xa5\x1e\x57\xa1\xa3\x6b\x61\x56\x37\x71\x68\x05\x52\x1a\x10\x1e\x9c\xdf\x11\xd3\xad\xb9\xb3\x54\x84\x0b\x07\xed\x05\xcd\x1d\x3a\x40\xfc\x80\x03\x40\x1f\xa5\x98\x5f\x2f\xff\x36\x08\x28\x43\x96\xa7\xdb\x26\x9b\xd8\xf0\xe1\xb7\x32\xd3\xdd\x08\xe2\x6e\x2a\x9b\xb8\x44\x58\x9e\xba\x03\xb5\x06\xc5\x0d\xad\xf8\x13\x93\x28\xc1\x06\xa9\x46\x37\x04\x91\x8f\x07\xc6\x41\x9a\x05\x7d\x99\xeb\xc5\x74\x63\x6a\xec\x24\x84\x7d\x6d\xfe\xfd\x0d\xb2\x77\xc3\xb7\x07\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\x3e\x00\x65\xb4\xd6\x1f\x96\xc0\x04\x60\xd4\x4d\x14\xa0\x99\xf0\x56\xb9\x46\x10\x05\x3b\x66\x3c\x26\xdb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x96\x4e\x4b\xa4\x5c\xd3\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x2d\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x6d\x37\x21\x6a\x40\x2b\xea\x74\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x9c\xb3\x29\x3f\xb1\x3a\xd5\x05\x65\x8f\x86\xe2\x5f\x6a\x8f\x0c\x20\x36\x89\x4b\x30\x6e\xae\x4a\x2b\xcc\xe1\x10\x51\x16\x25\x39\x5c\x7c\x52\xe1\xe8\xd1\x80\x7a\xb7\x19\x7d\xf5\x37\xe3\xd5\xc9\x94\x2d\x12\x53\x9e\x24\xb6\xdb\xe2\x02\x2d\xca\x58\x3f\x51\x8c\x30\x7a\xb8\x3d\x6f\xee\xfb\x91\xd6\x9d\x39\xcd\xb7\x67\x99\x40\xe0\x7f\x7e\xa0\x6b\xc5\x5d\x56\x60\xf1\x48\x89\xd4\xbd\x71\xa9\x0d\x74\x55\x13\xe9\xa7\x9b\x87\x41\x14\x91\xa4\xe6\xd2\x5f\xdf\x83\x4c\x9e\x68\xb4\x8a\x08\x1a\x57\x2c\x67\x1e\xd5\x69\x6b\x05\xb8\xd9\x8e\xeb\x9a\x1f\x4b\xfa\x6b\xf7\x21\xd6\x56\xdf\x53\x88\x0f\xab\x0f\x12\x29\x7c\x72\xea\xa7\x9b\x07\x20\x17\xbb\xa6\x56\x3c\xe4\x26\x2b\x00\xaa\x75\xf8\x80\x9f\xd2\x4e\x60\x45\xb6\xcd\x49\x33\x68\x6c\x6b\xc4\x4c\xd6\x60\xee\x96\xda\xf1\xb7\xc4\x88\x2b\xf0\xdd\x20\x48\xab\x1d\xac\x2e\x0c\x9b\x83\x87\x6b\xa0\x68\xc0\xfb\xdd\xe6\x53\x79\x77\xc5\x74\x96\x0f\x33\x21\x64\x0d\xdc\x87\x3b\xfd\x7a\xc7\x41\x96\x5e\x5d\x36\xc6\x67\x6c\xea\x60\xd4\xe1\x97\x63\x2b\x63\xaf\x73\xed\x39\x72\x34\x8a\x8e\xf4\xd9\x3a\x7e\x24\x2e\x20\xca\x4b\xc5\xae\xdf\x99\x25\xf4\xb0\xcc\x86\xb7\x95\x37\xb0\xa0\x40\x81\xd8\x32\x80\x45\x0b\xc2\xff\x1f\x7b\x5f\xd7\xdc\x36\x92\x9d\x7d\xbf\xbf\xa2\xab\x72\xe1\xf1\xfb\x52\xd4\xce\x6c\x25\x35\x71\x55\x2e\x68\x59\xde\xe1\xae\x2d\x79\x25\x79\x66\xf3\x86\x29\xba\x09\x34\x49\x44\x60\x37\x8c\x06\x24\x33\xd9\xfc\xf7\xb7\xfa\x9c\xd3\x1f\xf8\x24\x40\x4a\xf6\x64\x33\x17\xc9\x8e\x45\xa0\xd1\xdf\x7d\xfa\x9c\xe7\x3c\xcf\x72\x37\x98\xda\xcf\x7f\xf8\x0d\xbd\xfc\xbe\x41\xf4\xe7\x97\x3c\xe4\x53\x3a\x0a\x9b\x1d\x97\x66\x8f\xb5\x5f\xed\x70\x07\xa3\x6d\x7e\x54\x95\x3e\x66\x47\x55\x08\xbf\x38\x50\x81\x92\x3e\x65\x4b\x79\xc4\x88\x08\x4f\xd1\xe3\x57\x6c\xc1\x19\xe4\x95\x9b\xcc\xd9\x52\x75\x0a\xa1\xca\x53\xca\xf3\x0d\x5e\x55\xb5\x28\xf4\xcb\x96\x11\xf6\xd9\x27\x27\x8c\xf0\x11\xea\xb8\x61\x04\x1a\x2e\x42\x7d\x2b\xcd\xd5\xb2\x4a\xf3\xea\xec\x23\xa7\x33\x1d\x70\x18\xfa\x94\x98\x48\xe5\xc8\x89\x1e\x9b\xb5\xd2\xcd\x5e\x73\xa2\x4a\xfa\x15\xdf\x39\x6e\x06\xab\xd5\x4c\x99\x76\x58\xb9\x95\x00\x86\xe2\xee\x3a\x9c\x2c\x87\x1e\x56\x81\xe4\x49\xbb\x6a\xb0\x90\x33\xfb\x88\xe7\x59\x33\x57\xe4\x1c\xaf\x42\x80\xd4\x45\x5c\x3a\xdc\x74\xb9\xef\x75\x6a\x5c\x47\x23\xc6\xa6\xd1\xd6\x15\xdd\xcd\x4d\xdb\x9d\x46\xa4\xdd\xe4\xd8\x54\x7b\x75\xb3\x1e\x44\xde\x06\x16\x1c\xf1\xf1\x5b\xdb\x44\x2a\xca\xf6\x65\xdb\x87\x0f\xdf\x6a\x2d\x77\x07\x15\x04\x69\x02\x84\x85\x43\x34\x6f\xba\xf7\xd3\xd4\xd3\xf5\xd5\x3e\xd6\x5c\xad\xc5\x49\xbb\x71\xc2\x77\xcb\x5c\x75\x0b\x8b\x0d\xe8\x26\x5b\x44\xc5\xd3\xb6\x45\xa1\x91\x3d\xfb\x5c\xf2\x14\x0f\x37\x49\xd3\xd1\x56\x1b\x2e\x2d\x3f\xfc\x13\x9b\xc1\xe9\xc3\xde\xc3\xbe\x08\x50\x0b\x28\xad\x50\x2c\xd9\x65\x22\xd7\x4a\xf2\x4e\x85\xbd\xfb\x1f\xf5\x92\x54\x82\x96\x3c\x8a\x54\xd9\x54\x04\x1a\xd1\x92\x96\xd2\xc2\x46\x71\x76\x5f\xae\x44\x2e\x05\xaa\x08\xc2\x73\xcc\x3e\x37\xa8\xba\x8a\x97\xc5\xf6\x87\x65\x94\x26\x83\xa5\x8b\x20\xcf\x6b\x66\x5e\xbb\xc0\xb7\xfa\x1a\x50\x29\xbf\x52\x75\xc9\xf0\x37\x86\xbf\x4d\xd9\x6b\x1e\xdd\x0b\x19\xb3\x2c\x2d\x37\x09\xd1\x3a\xc0\x09\x05\xdb\x65\xe0\x28\xaf\x36\x0c\x6d\x0b\x2c\xdf\x1c\x43\x0b\xb9\xe3\xf7\x48\x27\x4c\x46\x64\xc4\xd3\x4e\x52\x30\x77\xc1\x59\x26\xcd\xb9\x7b\x70\xb4\xdc\x79\xd8\x2c\xa6\x3e\xf7\x74\x89\x59\x2e\x8f\x5b\x45\xd8\x80\xca\xfd\x6a\xc4\xc2\x75\xb3\xb5\xc1\xbe\x63\x19\x12\x9c\x9e\x24\x55\x06\x57\x2f\x38\xde\x81\x12\xbb\x94\x8c\x03\x81\xcf\x0b\xcd\xca\xcc\xda\x67\xe0\x11\x4e\x21\x3e\x8f\x43\x60\x7e\xc8\x12\x73\x5f\xde\x8a\x85\x04\xcc\x33\x73\xcd\x6b\xc8\x8e\x31\xe1\xa1\x49\x6d\x5b\xc3\x1a\xe9\x2b\x4e\x8b\x36\x37\x18\xb5\x0f\xcc\xd3\x81\x78\xee\x62\x2b\xe4\xf2\x08\x62\xe7\xe1\x83\x56\xc1\x6e\x93\x19\xec\x3c\xeb\xae\x0b\x4b\x99\x90\x94\x17\x05\x53\x42\xd6\xd2\x64\x5d\x33\xa3\x13\xcd\x34\x2f\x12\x6d\xf6\xb2\xd6\x1e\xf7\xa4\x21\xa7\xf4\x3a\x1f\xc7\x54\xd2\xc2\x52\x52\xeb\x0b\x97\x1f\x32\x65\x6f\xc1\x1f\x19\xdc\x0c\x94\xe3\xfc\xe8\xda\xb0\x8a\xad\xe8\x24\xbf\x7c\x0a\x60\x95\x6d\x41\xf0\x7c\xaf\x9b\xd9\xe5\x02\x4d\xd9\xcc\xc7\x81\x90\xf5\x04\x23\x3c\x07\x5a\x24\x52\x2d\x8e\x99\x7c\x83\x5c\xa6\x80\x95\x80\x09\xc4\xc0\x92\xd2\xe6\xef\x9e\xcb\xdf\x55\xf3\x11\xd2\x6d\xf9\xbd\x90\x7d\x7e\xb1\xe1\x35\x44\xc7\x65\xaf\x4b\xc0\x79\x44\x15\x3a\x45\x8f\xa9\xe0\xf0\x65\xe7\x89\x66\x92\xf5\xb9\xe9\x72\x73\x0d\x89\xee\x29\xc9\x07\xfd\xe2\x44\x55\xf3\xb8\x55\x3a\x5c\x67\x76\xfc\xf0\x26\x9b\x97\x8e\xaf\x1d\x92\xa4\x5c\x07\x23\x3a\x4a\xaa\x90\xc9\x06\x6a\xed\x16\x29\xfa\xfc\xdd\x78\x33\xbb\x85\x42\x37\x40\x3c\xd1\x16\xd5\x5c\xcd\x7f\xfe\x51\x5f\xc3\x8a\x7d\x0a\xce\x84\x76\x81\xdc\xd3\xf3\x15\x8e\x8c\xd4\x38\x24\x9e\x57\xd7\xe5\xb1\x63\xf9\xc8\x54\xcc\xfc\xf4\x1a\x2f\xa5\xfb\xed\x9b\x55\x93\xe0\x1d\xd4\xb6\x43\x33\xfb\x7d\x00\xe7\x60\xab\x32\x41\x35\xfb\x8a\x41\xa8\xac\xc5\x01\x4c\xd4\x70\xfc\x27\xda\x9d\x27\xed\x73\xec\x83\x8a\x4f\x99\x58\xe3\x89\x0d\x9b\xf3\x7a\x00\xda\x5b\xb7\xa9\xef\xf7\xf4\x44\xa6\xba\x71\xba\xf1\x72\xb8\x5e\x3d\x00\x33\x56\xe5\xfa\x16\x74\x5e\xba\xb8\x43\x02\x09\x04\x9b\x0c\x68\xc6\xd9\x7c\xc6\xa5\xa6\x74\x0d\x0a\xc5\xf9\xfd\xf1\xcf\xd9\x9f\x6e\xaf\xaf\xce\x76\x3c\xd7\x5b\x0e\xb9\xd9\xb6\xac\x89\x95\xce\xc3\xeb\xb1\x8d\x3f\x26\x72\x21\xcf\xd8\x46\x4d\x30\xda\xfd\x8a\x6d\x8b\x22\xd3\xaf\xce\xcf\x37\x49\xb1\x2d\x57\xd3\x48\xed\xce\x7d\xd7\x9c\xf3\x2c\x39\x5f\xa5\x6a\x75\x9e\x0b\xc0\x3b\x9f\x7d\x3f\xfd\xe1\x7b\x18\x99\xf3\x87\xef\xcf\x21\xc6\x39\xdd\xa8\x7f\x78\xf7\xc3\x3f\xff\xe1\x9f\x4c\xc1\xd9\xbe\xd8\x2a\xf9\x8a\x42\xe9\xbd\x65\x9f\xa1\x55\x7e\x8e\xaf\xd4\xbe\xf2\xcf\xd3\xdf\x87\xd5\xa0\x47\x77\x2a\x16\xa9\x3e\x7f\xf8\x7e\x69\x07\x66\x9a\xed\x7f\x43\x08\x7f\x33\x84\xf0\x7d\x52\xfc\x86\x10\xfe\xa6\x08\xe1\xe1\x16\x8e\xdb\x63\x80\x72\xd5\xef\x8f\xe6\xef\x6e\x8f\xb4\xae\xf7\x43\xfb\x50\xcb\xe1\x10\xe6\x6f\x9c\x70\x44\xdc\x8b\x51\x57\xec\x5a\x73\xdd\xd5\xa1\xc3\xc5\x36\x56\xf6\xa0\xd3\x98\x1f\x95\xae\x0e\x78\x9c\x24\x02\x4a\x6d\x74\x09\x66\x3c\x69\xc3\xfd\x12\xee\xec\x94\xfe\x7b\x4e\x72\xf8\xa7\x66\x85\xa7\xe6\x1e\xc9\x08\x9f\xe2\xdb\x16\x25\xa7\x1e\x2d\x13\xfc\x53\xf0\xa7\x0f\x54\xd4\x75\xb4\xd0\x38\x79\xa0\x2e\xb6\x5e\x1d\xd5\xd8\x72\x7d\x1c\xdc\x72\x86\xe4\x8b\x2e\x4e\x87\x58\xb5\x44\xdb\x0f\xda\x83\xc3\xf2\x59\x80\x5c\x3b\xd1\x66\x65\x65\x9e\x29\x2d\xf4\x94\xbd\xad\x69\x4e\x7a\x08\xe9\xcd\xdb\x0b\xf6\xfd\x8f\xff\xfc\x87\x85\xfc\xae\xe5\xdc\x86\xfd\x5e\xe5\x1b\x42\xb4\xc2\x69\xbd\xe3\xba\x10\xf9\x79\xbe\x8e\xce\x71\x97\x3b\x37\xef\x9f\xd1\x47\xcf\xd4\xfa\xcc\x91\x43\x9f\x11\x4f\xee\x74\x17\x8f\xa3\x7a\xa8\x4c\x3d\x3c\x6b\xe8\xa0\xd1\x70\x28\x21\x29\x94\x5a\x3b\x19\x00\xcc\x38\x42\xc5\x10\xb5\x6e\xf9\x8f\xd7\xa9\x5a\xe9\x97\x8e\x8a\x8e\x6b\xfb\x0d\xcf\x0d\xd5\xbd\x34\x9f\x86\x27\xde\x4e\x91\xe7\x74\x54\xd8\xbd\x24\xbc\x8e\x8c\xe9\xf8\xf6\xc5\xe6\x8f\x7b\x64\xc6\xe0\xb9\x2a\xa5\xe5\xd9\x56\x52\xa8\x35\xe0\x29\xc1\x12\xb6\x78\x11\xf0\xd5\x9a\x93\xd6\xb3\x60\xe4\x22\xc3\x03\x06\xa2\x0a\xdd\xdd\x7d\x22\xd7\xfc\xa1\x7e\x7e\x0e\xae\xf9\x53\xfb\x9d\x36\x94\x6f\xd4\xe1\xa7\x82\x3a\x71\x29\x8d\x41\x55\x98\xe7\x0f\x46\x50\xdd\x3e\xe0\x75\xa0\x3c\xad\x73\xc6\x73\x30\xd2\xc4\x59\xa1\xce\x80\x3e\x08\x48\x69\x50\xfd\xa1\x0b\x56\x01\x91\xe7\x31\xc7\xa4\x79\x7e\x40\x3d\xd1\x30\xff\x12\x54\x94\x6c\x12\x8d\x64\xaa\x04\x8e\x4b\xa4\x14\x39\xc5\xd4\x0e\x9e\xa8\x23\xe3\xd2\xe1\x50\xf6\x63\xe3\x02\x85\xf1\x80\x99\xdf\x65\x46\xf0\x60\x13\x98\x32\xb0\x3e\xb7\x6a\xa7\x8c\x39\xa3\x4a\x1d\xfc\x88\xb7\x17\x38\x84\x3b\x6d\xaf\x1d\xcf\x90\x2e\xf0\xdb\xb5\xc6\x2c\x2d\xf3\x13\x3a\xf5\xc2\x87\x46\x89\x9d\xac\xaa\xf2\x0e\x07\xea\xef\x78\xf9\xfb\xe7\x0d\xa0\x1e\x50\x31\x10\x44\x7b\x89\x6d\x3b\xf9\x4f\x73\xaf\x31\x53\xca\xdd\x14\xdc\xc9\x8d\x20\x1d\x64\xc5\x0c\xf1\x62\xd6\x9a\xef\xcc\x5b\x2f\x77\x23\xc7\xc0\xc1\xbd\x87\x0c\x00\x97\x08\x80\xb6\xc8\xe7\xb3\x56\xe8\x73\xd7\xba\xb4\x12\xb9\xf1\xd2\x32\xb7\x8e\xab\xea\xad\x2b\x80\x48\x5a\x9b\xf5\xf6\xc4\x57\x80\x93\xc7\x3e\xc6\x0d\xc1\xda\x16\x5d\x70\xc2\xf1\x8b\x11\xa4\x6e\xc6\xf4\x1d\x7c\x04\x27\x67\xa3\x07\x83\xb5\xd0\xd5\x81\xe3\x5c\x6c\x7d\x1e\xab\xb6\xc4\x0a\xe4\x0a\xf4\x79\x54\xa6\x96\x8d\xcb\xa3\x7b\xf1\xc1\xeb\x81\xef\x33\x31\x61\xab\x12\x7e\xbf\xba\xbe\x0b\xd1\x1a\x09\xb6\xf6\x2c\xda\x8a\xe8\x1e\x1c\x26\x78\xe4\x39\xf9\x4c\xe2\x25\x5c\x48\x2f\xc2\x56\x28\x0b\x3d\xd8\x3b\x5e\x7a\xa7\xcd\xa0\x72\x16\x27\x3a\x4b\xf9\x1e\x82\xbc\x12\x33\x26\x7c\x80\xd8\xa5\x1a\x99\xad\xe0\x90\xbf\x78\xf8\x48\x9b\x51\x99\xf9\xf7\xc6\xf6\x25\xcf\x57\x49\x91\xf3\x7c\xcf\x7c\x67\x36\xf7\x03\xa6\xc5\x8e\xcb\x22\x89\x16\x72\x27\xb8\x0c\x51\x79\x14\xe4\x36\x9d\x1c\x2b\x41\xcc\xcd\xeb\xb5\x88\x0a\x4f\xfd\x08\xc6\xbb\xeb\xa9\x43\x6b\x70\x5c\xdb\xdd\xca\xeb\x6d\xfa\x4f\x89\x44\xa2\x81\x64\x07\x98\x4f\x9a\x43\x74\x34\x1e\x19\xbc\x01\xd1\x3e\x3a\x72\xed\x65\x10\xfe\x65\xe7\x14\x5b\x89\xe2\x51\x00\xb3\x01\xa5\x62\xb6\xd9\xf8\x27\x0b\x37\x9c\xa6\xc3\xdc\xae\x60\x1d\x20\xc1\x70\x81\x85\x60\x32\x47\xc1\x24\x6b\x5c\x4a\x2f\x28\x39\x14\xbc\x3d\x2f\xc8\x6f\xf5\x02\x8e\x69\x73\x7b\xcc\x1f\x44\xbc\x90\x55\x82\x2b\xb2\x19\xfd\x82\x63\x5e\x92\xec\x69\x76\x1b\xdb\xc7\x83\x7c\xf9\x97\x40\xea\xe1\xe9\x3c\x5d\xfa\x63\x8f\x44\x1a\x36\xfa\x39\x6f\x55\x56\x9d\x31\xb4\xee\x07\x40\xb2\x84\xb6\x92\x43\xa4\x50\x58\xc1\x53\xb8\x49\xe9\xe8\x7b\x90\xdb\xcf\x01\x60\xc9\x2f\xd9\xf0\x74\xb6\x95\xb1\x90\x36\xaf\x7d\x5d\xa6\xc8\xd7\xda\x25\xda\x46\x6c\x5e\x36\x07\xe7\xdb\xe5\x62\x39\xbf\x1a\x0b\x54\xde\x1c\xec\x21\x00\x23\xe3\x5e\x67\x67\xbd\x90\x1a\xa5\xc1\xad\xc0\x13\x38\x9e\x37\xa2\x80\xd3\x3c\x2e\x53\x4c\xd3\x06\x8f\x39\x30\x83\xf1\x34\x65\x49\xa1\x17\xd2\x11\x99\x21\x2d\x3d\xec\xb0\xd6\xa5\x6e\xb5\x81\xa5\x53\x18\x86\x9f\xb9\x04\x3b\x2c\x89\x92\xa2\x01\xe1\xde\x87\xa2\x28\x59\x26\x38\x66\x15\xe2\xb0\x2d\x64\x78\xe7\xaa\x0f\x02\xa5\xe0\x81\x5a\xfc\x53\x64\xc3\xf5\x20\xf2\x41\x62\x7f\xf4\x90\x4c\xd9\x0c\x5b\x67\x2e\x5c\x56\xef\x14\x6b\x4b\x4c\x06\x84\xb4\x34\xb7\x9a\x42\x5b\x1f\xb9\xbf\xb7\x42\x8e\x44\x54\xa6\x3c\x4f\x41\x1d\x60\x5d\xa6\x2c\x59\x07\xd2\xad\x30\x06\x48\x63\x65\x86\x2b\x52\x70\x56\x5b\x2f\xb9\xe6\x3b\x11\x64\xd0\x93\x7b\x27\x0d\x30\x14\xc8\xcd\x8d\xc1\x79\x53\xd6\xcb\x29\x7b\x53\xd7\xfa\x87\x35\x11\xd0\x5f\x26\x1a\xb7\x3f\x57\xdf\x20\xf9\x13\x5a\x67\xaa\xa8\xa4\x59\x91\x6e\xd5\x75\x8c\x20\xd0\xe8\x8f\x03\x68\x58\x11\x85\x7e\xd4\x70\x6b\xf2\xb7\x79\xb5\x06\xdb\x70\x0b\xa2\xa3\x82\xf6\x54\x18\x59\xc9\x90\x3a\xf4\x88\x8a\x3a\x6a\xd6\x96\xca\xee\x7a\x94\x62\x61\x1c\x47\x56\x35\xd0\x5d\x1a\x5f\xd1\x60\xe6\x84\x70\x9c\x21\x3d\xbb\xe1\xc5\x58\x6c\x8e\x4b\xc6\x19\x5f\xd1\x56\x1c\xd4\x90\x6a\xc2\xee\x31\xb2\x9e\x4e\x1e\xfb\x88\x8a\x3a\x11\x6e\xaf\xcc\x00\x5b\x85\xe0\xd1\xb6\x9a\xcd\x6a\x39\x27\x5d\x0b\xf4\x42\xd2\x61\x37\x3e\x11\x77\xe6\xe7\x1c\x48\x4f\x31\x53\xfd\x29\xbb\x96\x02\x91\x73\x6a\x1d\x1c\x2a\x54\x01\xd2\xa8\x02\xda\x7f\x19\x88\x81\xa7\x89\xbc\xb7\x24\x1f\x66\xc9\x4d\x18\xf7\xa5\xc3\xae\x87\xd3\x06\x77\x91\x0e\x5b\xb2\x4d\x24\xe3\x04\xf3\x72\x58\xaa\x6c\xfb\x9d\x3f\x00\xa0\x8e\xdf\x01\xda\xda\x31\x7c\x58\x7a\x91\xe4\xee\x16\x57\x51\x7b\x0f\x51\xa3\x45\x52\xec\x0f\xf5\xef\x87\x6d\x15\x85\x38\x42\x52\xea\xe3\xd5\x9b\xcb\xb7\xf3\xab\xaa\x0e\xd4\x5f\x3e\x5e\x7e\xac\xfe\xe5\xe6\xe3\xd5\xd5\xfc\xea\x8f\xe1\x9f\x6e\x3f\x5e\x5c\x5c\x5e\xbe\xa9\x3e\xf7\x76\x36\x7f\x57\x7b\xce\xfc\xa9\xfa\xd0\xec\xf5\xf5\x4d\x4d\x79\xca\xca\x46\x05\x7f\xba\x9b\xbf\xbf\x7c\xb3\xbc\xfe\x58\x11\xaf\x7a\xf3\xaf\x57\xb3\xf7\xf3\x8b\x65\x4b\x7d\x6e\x2e\x2f\xae\x7f\xbe\xbc\x39\xa0\x3d\xe5\xdb\xdb\xda\xa5\x4f\x01\x1f\x3b\x5a\x89\x6c\xc6\xd6\x79\x22\x64\x9c\xee\x11\x7b\x6f\x6f\xb6\x35\x30\x6d\x78\xf6\x26\x3b\xa1\xca\x53\x20\xf4\x77\x5b\xc1\xd4\x83\xc8\x81\x8f\x04\x4b\xa3\xe4\x65\xae\xef\x3b\xd9\x2a\x8b\xbc\x19\x15\xe8\xcd\x14\x2a\xf2\xbd\xcb\x45\xeb\xab\x8e\xe7\xb2\xa2\x8f\xb0\x4c\xe4\x7d\x75\x01\xcb\x28\x2f\xb3\x22\x59\x75\x27\x45\x8c\x4e\x71\x1d\x7a\xf7\x46\xe6\xc5\x76\x9a\x9a\xab\xf6\x8d\xb1\x92\x1b\x70\x0a\xf0\x18\x4a\x38\x56\x60\xcf\xbd\x6d\xc1\x9a\x59\xb9\x4a\x93\x88\x25\x71\xdd\x9f\x82\x29\x6c\xe8\x32\xae\x13\xb4\x66\x22\x07\x53\xd5\xdc\x00\xb2\x5c\x9c\xf1\xb2\xd8\x5a\xed\x7f\x97\xc9\x88\x84\xa9\x22\xca\x05\xc6\x02\x84\x06\x27\x2d\x2a\xab\x05\x5f\x82\xca\x50\x2e\x7d\x0c\xb4\x3d\xd3\x80\x2c\xbf\x23\x46\x80\x6f\x62\xe9\x23\x9c\xa4\xf8\x7c\x6f\xd7\x50\x8d\x13\x5d\x97\xd5\x86\x13\x1e\x7f\xb4\xfa\x6c\xa6\xdd\x66\xa7\x76\xfa\x64\x38\xc8\x36\x77\xa3\xbd\x19\x87\xe6\x58\x38\x51\xaa\xc9\x0c\x54\x3a\xfd\x74\x91\x0b\x38\x44\x08\x0a\x60\xfd\x17\x00\x5d\xa1\x5c\x0f\x48\xf1\x30\x57\xb5\x95\xd8\xf2\x74\x8d\x16\x87\x19\x1a\xbf\xae\x9a\x53\xf4\x4e\xdd\x0b\x79\x83\x03\xf6\x4d\xb6\x43\x89\x37\x1f\xcf\xae\xe0\x3c\x42\xde\x85\x69\xea\x68\x67\x95\xcd\x75\x03\x63\xaa\xc0\x7b\x42\xf0\x33\xa6\x74\x78\xee\x64\x9b\x26\xb7\x5e\x27\x5f\x4c\x81\x0b\x29\x5a\xd9\x63\x01\x2f\x64\x79\xae\xdc\xbe\x0c\xd8\x28\x24\x0b\xba\x17\x12\x94\xdd\x50\xf8\xf9\xe0\x9c\x1d\xe7\x3f\x6f\x8e\x45\x8f\x43\x1f\x7c\x7e\x49\x45\xf0\x2e\x8c\xf2\xd8\x7e\x2a\x30\xc7\x66\xca\xde\x10\x05\x8a\xf9\xcb\xc5\xbb\xf9\xe5\xd5\xdd\xf2\xe2\xe6\xf2\xcd\xe5\xd5\xdd\x7c\xf6\xee\x76\xe8\xf2\x7b\x8a\xbc\xa8\xda\xea\xab\xa7\x07\xb9\x1d\xe2\x9c\x56\x9e\x4f\xcf\x75\x8d\xf2\xcb\x0e\x86\xe4\x70\xed\x93\x38\x5b\xc6\x89\x8e\xcc\xf1\xb7\x5f\x0a\x19\x03\xed\xf6\x51\x53\xb5\xbd\xa8\x7a\x2b\xdc\x13\xcc\x3d\x61\x77\x10\x3c\xed\x1e\xec\x8c\x76\xbf\x03\xea\x0e\xdc\x90\xb9\x30\x8b\x3f\x36\xf7\x03\x77\xda\x4c\x0f\x6b\xad\x98\xe2\x4e\x6b\x5b\xb5\x88\x7a\x9b\xb0\xbe\x89\xd6\x25\x37\xfb\xa3\x7d\x0c\x20\x87\x1d\xbd\x42\x5c\x88\x21\xf7\x77\x12\xe8\xd6\xb2\x44\x2f\xe4\x8e\xcb\x98\x17\x2a\xdf\x77\x34\x71\xd8\xe6\x19\x2e\x9b\xea\x16\x1a\x1e\xd9\x52\x88\xd8\x8e\x02\x3e\xca\x65\x7d\x2a\x21\x43\xf8\xdd\xf5\x9f\x2f\xaf\x6e\x97\x97\x57\x3f\x2f\x3f\xdc\x5c\xbe\x9d\xff\xd5\x21\x21\x33\xae\xdb\x74\x2a\xb3\x5c\x98\xdd\xc5\x12\xae\xb4\xee\x2f\x28\x1e\x69\xcb\x21\xc1\xb0\x64\xbd\x90\x76\x67\xc9\x7d\xf1\xdb\x5c\x95\x9b\x6d\x7b\x41\xf5\x5a\x7e\x98\xdd\xfd\x74\x54\x35\x81\x0e\x0b\x15\xe6\x70\xb5\x35\x11\xa1\xc9\x9a\xf6\x3d\x84\x91\xd6\xaa\x07\xa4\x6e\xf0\x68\x5b\x94\xa1\x63\x47\x3b\xea\xf6\xd2\xdc\xb4\x7a\x8d\xff\x96\xc7\xbb\x26\xd0\x5d\xb0\x6f\x56\x8e\x11\x40\x28\xa3\x50\x69\xa3\xb4\x57\x2d\x7f\xab\x9c\x60\x3f\x9c\xa5\x62\xb3\x11\x31\x4e\xaf\x7a\xc1\xe4\x83\xa3\x2d\x30\xf2\xe7\x7a\x5b\x2f\x92\x94\xe0\x09\x07\xb3\xc3\x7b\x0d\xdf\xc0\x3f\xb8\x57\xda\xf7\x8a\x0b\x2b\x57\x1e\x29\xa9\x0b\x2e\x3b\x02\xc9\x0f\x4d\x84\xe6\xa0\xad\xe8\x3a\x67\x2e\xf9\x89\x1c\x26\x36\x64\xe0\xd7\x41\x17\xe0\xe5\x74\x5c\xa8\xab\xc7\x8d\xc8\x52\x1e\x09\x97\xc3\x80\x5c\x84\x70\xaf\x3f\x26\x80\x47\x82\x8d\x92\xfc\x2d\x81\x90\x63\xa0\xee\xde\x32\x05\xc0\x73\x7b\x63\xf7\xe3\xe7\x77\xad\xf4\x5e\xdc\x88\x81\x0c\x1c\xcd\xa8\x98\x45\xd0\x77\xf4\x45\x81\x0c\x5d\x27\x2c\x79\xd4\x74\xa8\x7d\xf9\x67\x1a\x78\xbc\x33\x57\x1d\xdd\xdc\x72\xfc\xb9\xe9\xe1\x4c\xc7\xba\xbf\xf0\xd0\x68\xcd\xaa\xb7\x00\x5f\x72\x96\xab\xb8\x8c\x2c\xf7\x0e\x14\xeb\xf1\x35\xe4\x4e\xb3\xc7\x7b\xcc\xce\xcc\x30\xd3\x15\x49\xc4\x67\x80\x9c\x5f\xc8\xae\x60\x96\xdd\x81\x3a\x9c\x6c\x1f\xec\x99\x79\xca\xd8\xb7\xf4\x7e\xf7\xb2\xb0\x9d\x3d\x2c\x83\x95\xd9\xc7\xc1\xd4\xec\x80\x27\xd1\xb8\xac\x38\x46\xaa\xab\xc6\x40\x17\xd5\x86\xdb\xd3\xc7\xa1\xa8\x86\x81\x50\xaa\xa9\x29\x78\x40\x6f\xb9\x46\xbb\xb9\x88\xb6\xd5\x8a\x43\x6b\xaa\x44\x81\xf5\xea\x3a\x3b\xf4\x34\xff\xc4\xa0\x78\xd5\x04\x6f\xf4\x09\x79\x90\x2b\xa2\x6f\x4e\xc1\x72\xdc\xc4\x0f\x4d\x33\x77\x75\xc2\x5d\x17\x36\xac\x94\x97\x32\xda\xb2\x2c\xe5\x98\xb5\xbd\xe5\x1a\xa7\xb4\x05\x6d\xf0\x55\x92\x26\x05\xd0\xe1\x60\x2c\xb1\xd6\xc3\xe6\x3e\xc5\xf3\x7b\xcb\x05\xcc\x3d\xf7\x51\xdf\xa4\x3f\x11\x1c\xeb\x5a\xf5\x55\xe1\xb1\x7e\xc9\x06\x6f\xf4\x46\x22\xfd\xb4\x24\x68\xac\x1f\x0e\xb3\xe3\xc1\xb4\xf4\x6d\x19\x37\xb2\x54\xe2\x87\xfa\xeb\x95\xfe\x6e\x31\x13\xc6\x43\x43\x88\xe4\x7e\xc4\x36\x5f\xa7\xc0\x6f\x5d\x59\xeb\x54\xf1\x0e\x19\x66\x5b\x36\x32\xda\x77\x95\x1d\xab\x72\xd5\xc5\xa1\x8c\xb5\xea\x2f\xbd\x2f\xea\x60\xd7\xed\x53\x79\x25\xc3\x0d\x90\x17\xa2\x48\xc6\x39\x56\x82\x46\xf3\x42\x9c\xc1\xeb\xed\x85\x53\x2a\xdf\xe0\x36\x37\x26\x9a\xd7\x55\x71\xd6\x11\x80\xf6\x9a\xb3\xeb\x2f\x25\x37\x5b\xc3\xf5\xfa\x16\xf9\x59\x4e\x99\x64\x45\xd2\x9c\x61\xed\x2b\xb1\xfe\xd5\xbb\x6a\x48\x27\x9c\x03\x83\xb3\x5f\xdb\x5a\x73\x6b\xde\x1e\xbe\x20\xe7\x15\xd7\x4d\x96\x27\x0a\x78\x4a\xd4\x1a\x59\xff\xba\xc9\x26\x5b\xbf\x7b\x42\x4f\x7e\x2e\x45\x29\xcc\xdc\x5f\x95\xf1\xa6\xe9\x59\x1d\x61\x9d\xf9\x26\x6d\xd5\x23\xdb\x95\xd1\x96\xd9\xc2\x59\x2c\x52\xbe\xaf\x34\x0d\xec\xa5\x42\x01\xc1\xe3\x28\xeb\x2c\xe0\xeb\x8c\x4a\x5d\xa8\x1d\x80\x5a\x7d\xb9\x79\x29\x61\xc2\x33\x5e\x14\x79\xb2\x2a\x8b\x56\x00\x9c\x65\x34\x7b\x8a\x28\xd0\x26\x2b\x97\xbc\x95\x00\xf4\xc0\x1c\xaa\x11\x87\x0e\x59\x65\xb3\x96\x74\xef\x3a\x81\xa6\xd7\xff\x1a\x48\x9b\x59\xa1\x77\x3b\x32\xb6\x78\xfb\xe1\xf2\x62\xfe\x76\x5e\x0b\xec\xcd\x6e\xff\x1c\xfe\xfb\x97\xeb\x9b\x3f\xbf\x7d\x77\xfd\x4b\xf8\xb7\x77\xb3\x8f\x57\x17\x3f\x2d\x3f\xbc\x9b\x5d\x55\xc2\x7f\xb3\xbb\xd9\xed\xe5\xdd\x81\x08\x5f\xf3\xab\xdd\xb3\x92\x07\xec\x73\x16\x73\x6c\x09\xd1\xed\x45\x9f\xbe\xfa\x8a\xcd\x2c\x17\x5f\x85\x2d\xd2\x46\x69\x01\xd6\x81\xf2\xe0\x14\xcc\x7d\xc3\x0b\x7e\xc1\x0b\x9e\xaa\xcd\x94\xcd\x18\x21\xb2\x11\x69\xaf\x4d\xcf\x13\x51\x99\x99\xaa\x58\x84\x31\x9f\x22\x7f\x89\xf6\x8a\x8f\x6a\x4d\x14\x81\xa9\x08\xb5\x01\x6c\x5a\xd9\x42\x5e\x3e\x08\x59\x94\x40\x5c\xce\xd3\x94\xd1\x67\xed\x03\x41\xca\xbc\xad\xa5\x4e\x76\x49\xca\x73\x2f\xce\x77\x4d\x65\xc1\xed\xc5\xd6\xd5\x31\x24\x35\xf3\xb1\xed\x4d\xea\xe3\x9c\x41\xbd\x2f\xde\xcd\x61\x3e\x45\x85\x55\x9e\xb1\x1f\x5f\x48\xa4\xa0\xa3\x2f\xee\x38\x64\x7f\x14\x8a\x5c\x9b\xf8\x79\x7a\xb8\x7b\x22\xea\x53\x96\xa3\x0d\x02\x3c\x17\xc2\xcc\x55\xd2\xfe\xc7\xa5\x2c\xf2\xfd\x60\x23\xef\x0e\xd2\x9d\x35\x18\xea\x04\x26\xab\x0a\xf6\xa1\xe7\x89\xd9\xd2\xaf\xc0\xf2\xb3\x48\x47\x0a\x8c\xb8\xf8\x07\x02\x4b\x3a\x2e\x23\xa9\x39\x91\x7f\xad\xfd\x10\x32\xd2\x40\x2f\xac\x54\x29\x63\x4d\xb0\xb7\x5d\x22\xcf\x77\xfc\xcb\x4b\xdb\x52\x64\x78\x70\xb2\x19\xc0\xde\x25\x52\x73\x2d\xdb\x9b\x1d\xbf\xbf\xbb\x16\xb2\xa7\xbf\x0e\x9b\xce\xf6\x98\x81\x3b\xa0\xbf\xb0\x23\x80\xef\x41\xec\xdb\xc6\xaf\x21\x7d\x84\x20\x41\x5a\xf0\x50\x48\x96\x0b\xf3\xa0\x43\x07\xa6\x08\xfa\x74\xff\x86\x2c\x80\x8a\x3c\x63\xfb\x41\x16\x06\xdc\x4f\x5a\x36\xad\xa1\xfe\x67\xd0\xae\xa2\x2f\x99\x31\xc3\xc0\xbf\xf5\x39\x53\xd6\x03\x45\x34\xcd\x60\xfd\x87\x5a\xb1\x35\xa4\x00\x91\xfc\x7a\x2e\x20\xc6\x00\x43\x61\xc9\xd6\x81\xe3\xa9\x81\x26\xb0\x53\x20\x15\x1a\x3c\xef\xd2\xdc\x3d\xc5\xe7\x92\x82\xa7\xdf\xff\x7e\x9c\xd1\x51\xe4\x7b\x66\x85\x3d\x1a\x27\xae\x33\x6c\xa0\x5e\xa5\x4c\xda\x88\xdf\x6e\x4a\x69\xec\x92\xa7\xb0\x38\x86\x07\x16\x6b\x1f\xa5\x7f\x1e\xcc\xd2\xb1\x3e\xf1\x1c\x9f\x7f\x36\x1e\xcf\x9f\x6b\xf4\x9d\xf4\x39\xc0\x84\x53\xe9\xe1\x81\xb6\xe2\xd1\xfd\x23\xcf\x63\x74\x9c\x02\x10\x64\xca\x7e\x52\x8f\xe2\x41\xe4\x13\x16\x89\xbc\xe0\xc4\x9d\xa5\x21\x12\x0e\x0b\x8a\xca\x59\x48\x48\x91\x40\x22\x32\x09\xca\xf5\x45\xb2\xd9\x9a\xcb\x75\x80\x63\x50\xb9\xd9\x8e\x0a\xa4\x4d\xcc\x44\x44\x6c\x45\x1d\x1d\xb0\x4e\xf9\x43\xd3\xe0\x3b\x86\x66\x81\xcd\x5d\x9e\xa7\x0d\x14\x5a\x01\x8b\x3e\xe4\x09\x75\x18\x6d\x9a\xc8\x2f\x33\x61\x1b\x95\x72\xb9\x99\x4e\xa7\x4c\x14\xd1\xf4\xe5\xa8\x89\x4e\x05\x86\xa1\x47\x87\x6f\x4e\x95\xd2\x22\xdd\x3b\x86\x1d\x97\x81\x02\x90\xc7\x2f\x85\x90\x3a\x41\xff\x4f\xcb\xf4\xbf\xad\xbb\xe5\xbf\x6e\x14\xa3\xfd\xda\x3e\x3a\xbf\xb1\xa3\x1c\xd0\xc3\x1a\x51\x12\x3e\xdf\x7e\x0d\x3d\x2a\x5f\xb7\xbd\x2c\xa9\xe4\xd8\x24\xd4\x9f\x55\x97\xba\xfb\x51\xc4\x77\xad\x25\x11\x4b\xc8\x51\x89\x7b\xed\x7d\xd6\xc8\xa5\x3c\x21\x8d\xb2\x27\x23\x72\x64\x32\x64\xcb\xba\x6b\x59\x16\xb5\xe1\x1e\xbd\x2c\x0e\x4b\x74\xb4\x36\x68\x64\xb2\xa9\xcf\x0a\x1f\x63\x3a\x61\xbe\x5a\xba\x87\x1b\x97\x4b\x3d\x05\x37\x7b\x1c\x84\x09\x2a\x51\x10\xb8\xd3\xfa\x30\x8a\x63\x6f\x0a\xa2\x26\xba\x50\x39\xdf\x08\xb6\x13\x71\x52\xee\x5a\x37\x1b\x57\xdd\x53\x80\x77\x2a\x2d\x77\xdd\x3c\x7a\xa7\x1a\xd0\xbe\x92\xf8\x5f\x17\xf0\xb9\xc1\x06\xf4\xcc\x61\xca\xad\x52\x12\xd5\x17\x63\x02\xd4\xd7\xe6\xa4\xcc\x13\x0d\x8c\x8f\xc7\xe4\x1c\xba\x62\xb0\x68\x08\x5d\xee\x33\xf4\x2d\x54\x46\xf7\xcc\x86\xba\xe8\x15\x8d\xa3\x0a\xf1\xce\xee\x43\xa1\x0e\xe7\x1b\xef\x7c\xc9\x55\xd9\x60\xbb\x19\x14\x62\x06\xb3\x31\xe0\x61\x27\xbc\x11\x14\x48\xa0\x88\x42\xb1\xb5\xcd\x62\xbb\x17\x01\x2f\x58\x0c\x0c\xed\x8f\x48\x32\xf3\xe7\x1f\xb5\x85\x4f\x10\xc2\xc5\x5b\x2c\x85\xff\x08\x06\x4a\x1e\xbe\xb7\xc0\x26\x6c\x21\x16\x01\xec\x5d\x31\x97\x45\x6b\x01\x1e\xf7\x07\x65\xe1\x2b\x3f\xf3\x32\x6d\x7f\x9c\xca\x87\x47\x51\x77\x6b\xf6\xcb\x2d\xc3\xae\x26\x2e\xef\xbc\xaf\xa2\x41\x21\x87\xa1\x55\xd0\x5d\xcb\x23\x2c\xc1\xca\x38\x60\xa7\x5b\x32\x77\xd3\xed\xa2\x88\xb6\xde\xf2\xa8\x0a\x68\x93\xa8\x22\xb5\x73\xe7\xd9\xc9\x11\xb5\x1a\xc2\xff\x92\x8d\x54\xa1\xb0\x86\x92\x02\x22\x56\x66\x03\x52\x61\xb1\x2c\x29\x0e\x63\xac\x46\x52\x76\x1d\x9a\x6a\x85\x42\xec\x0c\xb5\xb3\x12\x78\x84\x2b\x45\x82\x44\x3f\x16\xa0\x8a\x77\x22\xd2\xe8\xab\xb3\x56\x57\xa9\x13\x16\xb2\xfa\xa9\x46\x27\x59\x10\x54\x92\x0b\x24\x9b\xd5\xc6\x7a\x2b\x92\x07\xb3\x50\x9b\xd3\xda\x4d\x50\xd8\x01\x9a\x73\x6f\x21\xb1\xda\x01\x63\xed\xbd\xd8\xeb\x50\x10\x90\x66\x14\xeb\x9a\x90\x89\x69\x0f\x8d\xd7\xe1\xa1\x80\x8e\x5b\x52\x0b\x76\x83\xb1\x89\xf8\xd1\xf7\xe6\xe5\x1e\x74\x65\xa3\x70\x33\x07\x7d\x9a\xa0\xf7\x29\xd2\x36\xe1\xfb\x99\xc6\xd0\x03\xa8\x00\x1e\x17\x02\xe0\xc2\x9c\x0f\xb8\xf8\x9a\xfb\xed\x42\x12\xa9\x75\x70\xc8\x99\x0d\xa7\x39\x6c\x94\xbb\x8c\x54\xba\xfb\x0a\xef\x0a\xf0\x0e\x5a\x0e\xc6\xea\x27\x6d\x10\xd6\xea\xc9\x2e\x24\x7c\x1a\xb3\x3b\xad\x0f\xaf\xf5\x83\x47\xa2\xf2\x68\x70\x3b\x91\x78\x41\x0a\x15\x3e\x49\xd4\x7b\xa8\x2c\x89\xb7\x9f\x48\x98\xee\x9b\xc9\x56\x10\x9c\x85\xc0\xdd\x5e\x5e\xdc\x5c\xde\x7d\x35\xa4\x9e\x85\xc9\x8d\x86\xea\xd9\x7a\xbe\xb9\x7c\x3b\xfb\xf8\xee\x6e\xf9\x66\x7e\xf3\x1c\x58\x3d\xfa\xe9\x08\xb0\xde\x2d\x71\xe5\x5f\x28\x59\x88\x2f\x27\x9d\xc9\x79\x29\x97\x7c\x44\xd2\x88\x53\xcb\xe8\x33\x77\xb0\xd0\x26\xd7\xbf\x23\xe2\x27\xe2\x47\x3c\xd1\x1c\xb5\xff\xda\x3b\x0d\xd7\x49\x9a\x42\x0e\xad\x73\xaf\x53\x7e\x96\xe9\x54\xd8\x7f\x2c\xd7\x25\xed\xa9\x0b\xb9\xaa\x48\x31\x80\xcb\x6f\x6b\x2e\xc1\x98\x3d\x9b\x99\x0e\xc8\x13\xc8\x4d\xec\x93\x03\xd8\x24\x52\xf8\x6a\xa0\x0a\x74\x29\x59\x27\x87\x33\x0d\xe2\x73\xa6\x48\x93\xe1\x35\xd4\xd6\xb4\x33\xae\x32\x3f\xad\xf9\x69\x7f\x74\x2d\xc4\x45\x9c\x48\x34\x4c\x2b\xab\xf9\xb6\x7d\xea\x9e\xfb\x25\x00\xfd\x6e\x46\x92\x43\x0c\x02\x84\x96\xfd\x40\xd2\x40\xa0\x4c\x90\x0f\x4e\xdc\x27\x08\x29\x52\xeb\x5a\x3f\x9b\xad\xd0\xf4\x75\x02\x91\x0a\x4e\xb4\x20\x51\x5a\xea\x42\xe4\xe4\x36\x99\xfd\x72\xbb\x90\xaf\xcd\xf1\xf5\x92\x4e\x21\x92\x92\xc1\x4f\x20\xa0\x45\x55\xbe\x6f\x2d\x94\x70\x07\xfb\x0e\x7d\xd4\x3b\xc1\xa5\x46\x11\xfc\x34\x15\xb9\x9f\x19\x58\x1f\x21\x62\x12\x42\x04\x1e\x54\xff\x3e\xe9\xa0\x2b\x58\xb5\xa6\xbe\xf4\x2b\x29\x81\xd7\xe7\x53\x57\x8a\x36\x60\x75\x9f\x73\xe6\xb4\xa4\x8c\x0c\x9d\x45\x04\x73\x6e\x9d\x44\xd5\x04\x8e\x41\x73\xe9\x0e\x8b\xfb\x6d\x2a\x3d\xe1\x54\x1a\x70\xae\x87\xa7\x04\xdb\x2a\xb3\x81\x3a\x9d\x15\x1f\x73\x77\x14\x11\x29\x80\xc1\x4c\x37\xb6\x9e\x3a\x35\xad\xc1\x13\x4e\x1d\x14\x17\x3c\x0d\xdb\x3a\x6b\xe1\xa2\xf1\xa2\x56\x36\xb6\xd3\x2b\x63\xf8\x3c\x9c\x6f\x33\x0b\x3e\x94\xaa\xb0\xec\x0d\x0e\xef\x47\xe0\x45\xf3\x80\xa3\x0d\xe9\xad\x23\x51\x71\x58\x2b\x65\x79\xa2\x14\xd8\x5d\x08\x92\xac\xe4\xb3\x62\x2d\xc2\x4c\x78\x9b\xfd\xee\xd8\x33\xc6\x4c\xbe\xe3\xc5\x26\xab\x73\xce\x31\x31\x1e\x05\x76\xb8\xba\xbe\xba\x0c\xa1\x0a\xf3\xab\xbb\xcb\x3f\x5e\xde\x54\x32\xa1\xdf\x5d\xcf\x2a\xd9\xcc\xb7\x77\x37\xb5\x24\xe6\xd7\xd7\xd7\xef\x2e\x1b\x98\x87\xcb\xbb\xf9\xfb\x4a\xe1\x6f\x3e\xde\xcc\xee\xe6\xd7\x95\xe7\x5e\xcf\xaf\x66\x37\xff\x1a\xfe\xe5\xf2\xe6\xe6\xfa\xa6\xf6\xbd\x8f\x17\xfd\xe8\x89\x4a\x33\xda\xdd\x3f\x3e\x38\x1b\x90\x52\xb6\x2e\xe3\xaa\x18\xe7\x09\xab\x78\x20\x22\xed\xd0\x74\xb4\x89\xce\x71\xc8\x55\x8f\x0b\xc3\x54\x75\xd4\xac\x7b\x7a\xf5\xd0\x4a\xd7\x65\xfc\xb4\x6d\xcf\x9c\x6a\xcb\xa7\x40\x08\xf6\x1a\x80\xee\x2b\x35\xc7\xad\x2e\x20\x1b\x0c\xbb\x36\x83\x08\xd6\x86\x77\x6a\xe7\xc8\xf8\xd9\x6b\x6a\xbf\x71\xa8\x9e\x9e\x04\xe9\x00\x97\xcc\x53\xf1\x48\xf4\x55\x3a\xf8\x98\x4d\xd3\x4e\x62\x6b\x28\xd8\x1f\x83\x83\x1b\x9a\x61\x66\x4e\x30\x1d\xbb\x64\x1e\xdb\x13\x3e\xfa\x79\xcb\xc6\xd6\x9f\x3e\xd2\xac\x7b\x8d\xe4\x62\x44\xbd\x81\x6c\x68\x4c\xbd\xef\xb8\xbe\x1f\x5b\x6f\xfa\x48\xb3\xde\x60\xf6\x1d\x55\x6f\x70\x78\x17\xed\x04\x24\x23\x36\xb1\xb0\x98\x6a\xf5\x5c\x76\xb4\x7b\x24\x50\x53\x1d\x56\x47\xb3\x00\x9e\xf7\x7a\x99\xf1\xe1\x81\x0c\xa8\x8d\x5b\xae\xbc\xc6\xc7\x7d\x0b\xbf\x42\x0b\x57\xb9\xe0\xf7\xb1\x7a\xa4\xf1\xa8\xc3\x64\xd9\xa0\xdd\xbc\xda\x41\x66\x0f\xb7\x47\x04\xa8\xe1\x9b\x4f\x22\x4a\xcd\x17\x0f\x30\xb9\x84\x18\xa5\xd1\x06\x0b\x64\x40\xeb\x14\x2e\x40\x9a\x23\xfd\xe8\x2c\x24\x5a\xf3\x6d\x52\xa2\x66\x54\x4d\x8d\x88\x74\x01\x9a\xea\x6c\x68\x0c\xae\xeb\x60\x60\x29\xb1\xa3\xcc\x01\x4c\xb7\xca\xe1\xce\x04\x1d\x92\x48\x70\x26\xe7\xe6\xc2\x93\x8b\x28\xd1\x22\x90\x53\x6a\x3d\xb1\x3f\x9f\x26\xbe\x50\xf0\xa2\xd5\xed\x3a\xd8\x1f\xce\xa3\xa2\xe4\x29\xfb\x5c\x8a\x7c\x4f\xdc\x75\xe8\xab\xc4\xbf\x44\x5c\x62\x06\x49\x21\x76\x19\xe4\x43\x87\xa9\x0f\x0b\xf9\x0b\x00\x25\x70\x08\x5e\x68\xf6\x47\x80\x3c\xd8\x87\xe9\x10\xde\xf1\x02\xce\xe2\xbf\xe0\x37\xdc\x6f\xd3\x85\xac\xc8\x93\x04\x6f\x55\x94\x4a\xa6\x0b\x69\xf5\x01\x62\x15\xe9\x29\xdc\xf8\xa6\x2a\xdf\x9c\x93\xb2\xae\x99\xec\xea\x7e\xa5\xd4\xfd\xb9\x90\xe7\xe0\x93\x2a\xce\x79\x59\xa8\x73\x80\x4b\xe1\xf8\xeb\x73\x2b\xc0\x69\x15\x4c\xf5\xf9\x36\x79\x10\xf0\xff\xa6\xdb\x62\x97\xfe\x83\xce\xb6\x5f\xce\x36\x69\x7e\x66\xde\x3d\x0b\xdf\x3d\xb3\xef\x9e\xd9\x77\xcf\xcc\x6b\xf8\xff\xb2\x3d\x86\x77\xc4\x17\x6e\xce\xb2\xc9\x42\x26\x52\x8b\xbc\x00\xeb\xe7\x31\x4f\x0a\xaf\x03\xb3\x67\x2f\xfe\xeb\xbf\xd8\x34\xe7\x8f\x98\x4b\xf8\x86\x17\xfc\x03\xfa\x17\xff\xfb\xbf\x5f\x40\x40\x15\x93\x7d\x32\x9e\x7f\x2e\x45\xb1\x90\x5a\x98\x45\xc8\xfe\xcf\x42\x42\x04\x76\xb7\x5f\x16\xe8\x77\x45\x1f\x64\xac\xd9\xbf\x60\x99\x73\xe4\x71\x8c\xb5\x29\xa9\x23\xcd\x20\xe1\x69\x8b\x66\x73\x87\x8b\xfe\x73\xfa\x86\x9e\x1f\xb1\xac\x3f\xa7\xd5\x55\x6d\x95\x48\xf4\xe7\x14\x0e\xd0\x54\x71\x0b\xd6\x62\x6e\xf2\xc2\x3d\x99\x2a\xd7\xb6\x46\x1a\xd0\x80\x67\x0d\xd3\xb7\xaf\x95\x5b\xe4\x92\xb6\x9e\xfb\xc6\x36\x02\xb1\x02\x1f\x87\x80\xe8\x79\x62\x56\xc8\x2d\x7a\x42\xc1\x72\xc3\x96\x83\x4d\x4a\xa1\x73\x57\x1e\x3a\x2e\xf4\x1f\x5e\x9d\x9f\x4f\xd8\x46\xc3\xff\xac\x3e\xc3\xff\x00\x7a\xe8\xa9\xe8\x50\x1b\x9d\xe9\x80\x70\xcd\x51\x3e\x3c\x12\x4f\x81\xa2\xfb\x1a\x0c\xdc\xb5\x69\xfa\xba\x94\x71\x2a\x7c\x6a\x64\x25\x24\x92\x2a\xab\x19\x8f\x8e\xb1\xba\xd6\x09\x8c\xf1\x4a\x44\xdc\x6c\x7c\x8d\x6f\x23\xb8\x54\xad\x0b\x21\xd1\x1b\x96\x7b\x29\x34\x8e\x9e\x2b\x30\x8b\x01\x0a\xc9\x0b\x82\x9c\x0b\xf8\x23\x7c\x04\x28\xad\x27\xf5\x9f\xd8\x5e\x95\xc4\xce\x0c\x9c\xa3\xb1\x88\x52\xa0\xc0\xb7\xbc\x2b\x2c\x17\x45\x99\x4b\xc6\x59\xc6\x65\xcc\x35\xcc\xc0\x75\x0e\xd1\xce\x9c\xf1\x66\x45\x27\x08\xc7\x55\x65\x01\x6c\x42\x88\x2c\x08\x7b\x02\xe9\xb3\x83\x3a\x4f\x82\x4a\xe0\x99\x00\x2c\xbe\x8d\x17\xa7\x0b\x69\xc5\xba\x08\x0b\x87\x9e\xb2\x48\x65\x7b\xe2\x8a\xa9\x77\x7a\x62\x3d\x67\xd4\xdd\x13\x8f\x37\xa9\x3f\x3b\x61\x49\x35\xb4\x06\x4c\xdd\x45\x20\x37\x6c\x05\x9b\xbf\x13\x32\x52\xb1\xc8\xf5\x4b\xb3\x0c\x13\x77\xef\x40\xfb\x21\xd1\x7e\x30\x60\x97\x32\x87\x1b\x79\x0b\x4d\xf1\x4e\xd2\xc6\xf4\x4e\x85\xdb\xb9\xcd\xce\x39\xbc\x54\x7e\xed\x28\x98\xb6\xfa\xd2\x7f\x7e\x55\x44\x4c\x88\xeb\xb4\x77\xce\xe3\x5d\x10\xb8\x64\xc3\x1d\x17\x0b\x45\x1b\x87\x8c\x13\xab\xed\x9a\x14\x20\x1f\x97\x0b\x5d\x2c\x24\x9d\xc0\x13\xb6\x16\xdc\xd8\x79\x13\x16\xe9\x07\xdc\x8c\xf1\xb8\x2f\x1e\x95\xc7\xe0\x58\x61\x10\x00\xc3\x56\x0a\xf7\x4e\x62\x7c\x0c\x10\x05\x3c\x2a\x10\x60\xd0\x29\x03\x6e\x4d\x15\xe8\xac\xd6\x0d\xf1\x88\x7e\xb0\x3a\x13\x75\x4d\xa7\x50\xe6\x04\x7a\x62\x8f\x81\x62\x56\xaf\x07\xfe\x60\x36\x1e\x6c\x1d\xc2\x40\x82\xcd\x11\x2c\x6e\xc2\xd2\xe2\x3a\xf3\x31\xdc\x90\xec\x1b\x7c\x33\x5d\x8b\xaa\xa7\x23\xa0\x02\xc7\xf9\x2d\xcc\xab\x07\x1d\x56\x5a\xe4\x56\x04\x03\xdb\x8a\xd4\x7c\xdb\x24\x8f\xcf\x32\x9e\x17\x7b\x3b\x7d\xd3\x64\x05\xdc\xf9\x69\x72\x2f\xd8\x2c\xcf\xd5\xe3\x53\xf7\x42\xe7\xd6\xd2\x75\xc3\x3e\x05\xc9\x3e\xf6\x96\xdf\x4a\xcc\x59\x77\x77\x1c\x47\x02\xda\xe5\xf8\x68\xfd\x4e\x2e\x8a\x7c\xbf\x34\x13\x71\x97\x75\xee\x14\x83\x92\x26\x86\x1b\xb9\xe3\xf8\x45\x6b\x2e\x8c\x4e\x7e\xd1\xca\xa8\xfe\x7a\xf8\x45\x5b\xa8\x43\x9b\xfc\xa2\xf3\xab\xf9\xdd\x7c\xf6\x6e\xfe\xff\x6a\x25\xfe\x32\x9b\xdf\xcd\xaf\xfe\xb8\x7c\x7b\x7d\xb3\xbc\xb9\xbc\xbd\xfe\x78\x73\x71\xd9\x4f\x18\xd4\xac\xbd\x37\xc1\xcf\x58\xf8\x9d\x57\xec\x2e\x00\x6a\x60\xb2\x01\xd9\xdf\x24\x1e\x09\xb3\xca\x2c\xe6\x44\x6e\x26\xb0\x50\x5f\xb1\xcb\x3c\x9f\xef\xf8\x46\x7c\x28\xd3\x14\xe0\x54\x98\xd9\x73\x91\x0b\xb8\x78\x4e\xd8\x07\x15\xcf\x83\xf7\x20\x1d\xb1\xb5\x19\xf0\x7d\x1e\xc7\xb9\xd0\x1a\x3f\x3f\xa1\xef\x07\xe0\x21\x97\xea\x48\xe0\x39\xfe\xc0\x93\xd4\xdc\xdf\x5e\xb1\xd7\x3c\xba\x57\xeb\x35\xa6\xcf\x4c\x5c\xe2\x14\xfb\x5c\xaa\x82\x33\xf1\x25\x02\x92\xac\xf6\x79\xf2\x4e\x6d\xbe\x01\x54\x79\x40\x78\xaa\xe3\x92\x02\x22\x61\xcb\xf6\xe3\xbc\x7d\x23\xa0\x56\xbe\xc7\x57\xdf\xe2\x9b\xed\x0e\xca\x22\x7d\x82\xb4\xf9\x77\x6a\xd3\x2e\xd9\x02\xd6\x35\xe9\xcc\x50\x20\x21\x22\x12\x0e\xb5\x61\x3a\x91\xf7\x0b\xf9\xcb\x56\x48\xa6\xca\x1c\xff\x04\xd7\x7c\x63\x66\xa6\xa5\xde\x0a\xd0\x70\x9d\xb0\x47\xc1\x76\x7c\x8f\x66\x33\xdc\x09\x5c\xda\x30\x4c\x19\x38\x45\xcc\xdb\x69\x22\xcd\x6e\x91\x25\x36\x2f\xa1\x3e\xf4\x4f\x71\xe3\xb2\x14\x71\xfc\x74\x06\xd7\xbe\xf3\xb4\x82\xcf\x03\x57\x99\xc7\x4d\x5a\x80\x10\xed\xdc\x20\x63\xa9\xd4\x7d\x99\x79\x32\xc9\x17\x36\x38\x09\xdd\xfd\xa0\x92\x98\xc5\x65\x96\x26\x91\xdb\x77\x1f\x55\xde\xc9\x98\x8b\x09\x34\xc3\x4f\x9d\x7a\x5a\x58\x5f\xc3\x5a\xb2\x73\x02\x24\x5d\x0f\x77\xee\x33\xb3\x07\xb3\x44\x46\x69\x09\x02\x5d\xa5\x16\xf9\x59\x91\x27\x9b\x0d\x18\xe0\x36\xd7\xef\xd7\x4f\x2f\xec\xe9\x0b\x4f\x4f\x6b\x0b\x93\xce\x53\xb5\x49\x22\x9e\x86\xe0\x66\x8f\x8a\x70\xfc\xa5\x76\xd9\x93\x7c\x29\xe4\x41\xd8\x0a\x75\x32\x23\x65\xb9\x00\x0a\xdd\x25\x6c\xe5\x4b\xda\xee\x4e\xa9\xf7\x9a\x99\x0b\x3a\xd6\x2b\x64\x17\xb5\xe1\x05\x7b\xc2\xf9\x6f\x5b\x0d\x2b\x30\x31\x51\xdf\x9a\xa9\x47\x29\x72\xb0\x60\x01\xf6\x61\x5a\x2a\x15\xd8\x26\x4e\xd7\xca\xe1\x93\xad\xae\xdb\xda\x01\xb1\x31\x73\x76\x93\x3c\x08\xf9\xf5\xe9\xa0\x83\x0f\x44\x3c\xda\x8a\xa5\xb5\xcb\x9f\x7a\xcb\x72\x07\xc0\xc8\xcd\xca\x0a\x4c\x84\x5b\xa9\x0b\x6f\xc2\xd5\x09\x6b\xdc\xdc\xbb\x30\x90\xd8\x93\x91\x65\x2a\xb1\x8c\x45\x74\xff\xd5\xb7\x66\x0f\xb2\xb2\x15\x61\x9c\xbd\x11\xd1\x3d\xfb\x78\x33\xc7\x6c\xe0\xa4\x60\x66\x2b\xd0\x5b\x2f\x98\xd3\x79\x77\x2b\xf8\xe6\x19\x98\x9e\x86\x2a\xfe\x78\xae\x0e\xa7\x73\x66\x2a\x44\x80\x28\xc8\x97\x34\x9b\x24\xe5\xd2\x00\x10\x8c\x17\x56\x07\x06\x1c\xf1\x4c\xef\x40\xf6\xa5\x2c\x02\xad\xb4\x94\xaf\x44\xda\x41\x79\x98\xa9\x78\x69\xe3\x24\xa7\x82\x79\x1a\x65\x59\x3f\x06\x45\x1d\x6d\x1e\x03\x37\x16\xeb\x1d\x3d\xc8\xee\x7f\xd4\x01\xbd\x86\x0a\x99\x97\xe1\x5e\xcf\x35\xa4\x77\xaf\x93\x8d\x8d\xb6\x25\x6b\x12\xa7\xc1\x84\x7e\x90\x61\x37\xfb\xa5\x29\xe9\x83\x8a\x09\xa6\xe7\xc8\xcd\x8c\x15\x24\xc8\x7b\xe2\x71\x15\x61\x15\x9c\x54\xbd\x06\xdf\x80\x2e\x04\x8f\x99\x5a\x93\x37\x31\xcb\xd2\x04\x38\x75\x63\xa4\xef\x06\xf6\x0c\x5d\x45\xc7\x87\xa5\xd9\xca\x06\x24\x1f\x1f\x2c\x10\xaf\xf3\x34\xc3\xf6\x2f\xc7\x3b\xc7\x1b\x74\x34\x1d\x33\xea\x14\xf6\x17\xb7\x81\x0f\xb2\x4b\x41\x7d\xa7\xea\xa2\xaf\x5b\x84\xa7\x8a\xc8\xb9\x6c\xaa\x63\x1d\x00\xfd\xbe\xc0\x4d\xaa\x56\x30\xcc\xdd\x90\xbe\x9e\xe3\xc5\xec\xad\x79\x12\x8f\x31\x4e\x6c\x9f\x5c\xbb\x57\xfb\x2a\x78\x6d\xfd\x34\xee\x4b\x76\x92\x32\xe2\x6b\x0f\xf1\x07\xb5\x24\xfc\x43\x9e\x02\x08\x6f\x6a\x17\xdf\x74\x77\x89\x82\xd4\x0a\x60\x4d\xbb\xc3\xa4\xc3\x29\x50\x6d\xcb\x49\x03\xdd\xa4\x75\x19\xb8\x20\xfa\xfb\xf0\x24\x6e\x0e\xdc\x77\x1c\x41\xc7\xdf\xef\x9a\xee\x9a\x78\x88\xaf\x36\xb3\xc1\x4f\xc1\x4a\xe2\xcb\xa0\xf9\x58\x9f\x35\x76\x07\x3d\x65\xc2\x3c\xc7\x7e\x50\x16\xca\x87\x5b\xa0\x3d\x73\x20\x72\x0d\x53\xea\x60\xd3\x9b\xc7\x1d\x50\x0d\x6b\xff\xda\x8d\x65\x04\x00\x78\x14\x04\x39\xcb\x85\x0d\xdc\xed\x45\xe1\x88\x15\x52\x2b\x89\x06\x71\x29\xd7\xea\x2a\xb3\x8c\x25\x8f\x70\xd4\x68\x10\x45\x22\x5b\x3b\x52\xbb\x4c\x49\xc0\x05\x61\x9a\xd8\x42\x52\xe1\x56\xd8\xda\x85\xb6\x2a\xb9\x86\x13\xf2\x28\x62\xe6\x8a\xd0\x2a\x7d\xa0\x18\x66\xa0\xbf\x00\x92\x78\xa6\x82\x17\xe6\x72\xa6\x72\x64\xb8\xb2\x47\x2b\x40\xf1\x6b\xea\xce\xb9\xd8\x24\xba\x10\x61\x7a\x66\xf8\xfe\x93\x09\x71\x56\xbc\x17\x7d\x5d\xdf\x29\xc4\x79\xe8\x1a\x62\xf6\x9c\x11\xf5\xd9\x67\x22\x9e\xbb\xf7\xfa\x27\x43\x2d\x83\xde\x6f\x71\x95\x33\x0c\xe7\x00\x5e\xbf\x34\x72\x6d\x69\xa7\x9c\xe0\x06\x89\x58\x90\xb8\x47\x14\x9a\x21\xda\x94\x3c\xe7\xb2\x10\x42\x2f\x24\x45\x7e\x91\x40\x2f\xa4\x45\xa9\x21\x11\xdd\xe5\x22\x52\xba\x40\x0a\x26\x78\x65\xcd\x93\xb4\xcc\x3b\xef\xfb\x38\x2b\x8f\xe2\x7d\xe8\xeb\xa5\x0b\x28\x96\xb5\x0d\x9a\xcb\x20\x0e\x56\x91\xa3\x2d\xa9\xc7\x6d\xab\x09\xb6\x1d\x4d\xb0\x07\xc6\xf0\xf1\x76\xce\xde\x8e\xa4\xe2\x1f\xf5\x32\x53\x23\x76\xbc\x3f\xff\xa8\x3f\xa8\x8e\x74\x6c\xfd\xb9\xe1\x94\xec\xc1\x2f\x7c\xee\xd2\x92\xe0\xfa\x1e\x42\x7f\x87\x7c\x21\x87\x03\x1c\x7f\xf8\xe1\x70\x80\xb0\x73\xef\x82\x59\xbb\xe5\x32\x4e\x13\xb9\x31\xc7\x50\xf5\x04\xf2\x40\x6b\x73\x27\x29\xec\xe6\xd8\x9d\x55\x07\x49\x2a\xcb\xa8\x91\xe1\x78\xa8\x9f\x6a\xa9\x91\xbd\x60\xc6\xda\x57\xaa\x09\x8b\x6d\x89\x32\xde\x2e\x21\x05\x57\xb7\x60\xbb\xa7\xe0\x3a\xd9\xfc\x0a\x2e\xb8\xef\x9b\x3b\x65\x44\x4b\x91\xce\x2f\x87\xba\x3f\x71\x31\x42\x82\x93\xd9\xcc\x42\xc2\xe8\x85\x24\x81\x67\x8c\x7a\x43\xb8\x13\x79\xc0\x34\xfb\xde\x65\xbd\x7e\xff\x8f\x96\x05\x6a\xcf\xd6\xd0\xd7\x40\xb5\xa6\xa2\xa8\xcc\x21\x24\x4d\x6e\x33\x26\xf0\x6c\xd2\xa3\x08\x4e\xe0\x44\x76\x40\x22\x34\x9f\xda\xac\x07\xe7\x27\xad\x34\xea\x0e\xdc\x63\x28\x55\xed\xce\x42\x52\x20\xca\x75\xc1\x74\x21\xb2\xd6\x5d\xa9\x62\x74\x55\xd5\xd8\x4f\x30\xbb\xbc\x16\xfc\x40\x4b\x7d\xc4\x1e\x3d\x0b\x5c\x19\x7f\xba\xbd\xbe\x62\x19\xdf\x03\x26\xaf\x50\x24\xa3\x0f\x44\x98\xf5\xf5\x7b\x68\x04\xaa\x8d\xaf\x2e\x36\xec\x53\x0b\xee\x6d\xf7\x9b\xd3\x17\x9b\x36\x14\xcc\x19\x9a\x92\x66\x29\xe7\x2a\x3d\xcb\x52\x2e\x03\xd8\xb5\x9e\xb2\xda\xe7\xc3\x38\xbb\x8b\xb8\x11\x92\x09\x2a\x00\xae\x2c\x9a\x0b\x79\xd9\x0a\xcc\xad\x0a\xcc\x9f\x14\x5a\xef\xdc\x23\x7a\x01\x87\xef\x51\xd7\x81\x47\x66\x99\x20\xab\x83\x85\x0b\x38\xc4\x09\xd7\x00\x06\x1d\x31\x50\xfd\x6a\xf8\x0b\x69\xc5\x8e\xd5\xa3\x66\x31\xf2\x5e\x94\x89\xde\x82\x6f\x18\x83\x31\x00\xcc\xa2\xfd\x05\x51\x23\x39\x97\xda\x0c\x28\xf8\x93\xc5\x83\x20\xa7\x52\x25\x10\x3a\x7f\xf3\xce\x61\x2b\x70\x90\x48\x8f\xae\xa3\xeb\x03\xc3\xec\x94\x0b\x4c\xab\x3c\xfb\x61\xb1\x85\xf7\x3c\xeb\xcb\xd8\x3b\xb9\xc4\x43\xa3\xe4\x58\x7f\xea\x56\x27\x08\xd5\x82\x44\x55\x25\x6d\x2f\xec\xbd\x8f\xf2\xc4\xed\xa7\x95\x7d\xfd\xb0\xd0\xc3\xe0\x4b\xd8\xb0\x2c\xcc\x11\x7b\x4f\x40\xc0\xe7\x70\x4d\xce\x5e\x36\xab\x1c\x04\x80\x80\x39\x0c\xbd\x98\x53\x76\x2b\x04\xfb\x04\x3d\x65\x3e\xf6\x89\x04\xe6\x00\xaa\x59\xf0\xa4\x55\xff\x07\x9e\x9e\xcb\xb5\x3a\x6d\x33\xc8\x37\x0d\x28\xe0\x49\xbd\xd2\x5e\xcf\x53\xc1\x86\x90\x46\x2a\x9f\x97\xfb\xa0\xb5\x5d\x07\xa0\x85\x1f\xfc\x9d\x9c\x32\x22\x6d\x4d\xcd\xf9\x0c\x43\x7c\x0c\xbb\x56\x6d\x92\x98\x56\x4e\x90\x31\xfa\x5e\xaa\x47\x89\xb6\x00\x7d\x89\x7d\x67\xd6\x1f\x1c\x60\xe8\xbc\x46\xb3\xa0\xc4\xdd\xf0\x25\x50\x58\xcf\xdc\xbf\xd9\x2d\xc6\xe9\xb0\xce\x20\x58\xa3\xc1\xf8\x21\xa9\x19\xd8\xcd\xbf\x9b\x4d\xd8\xeb\x09\xbb\x98\xb0\xe9\x74\xfa\x72\x82\xb2\xd5\x54\x23\x7c\x05\x51\x7b\x05\xdf\x98\xb2\x49\xc2\x63\x1d\x7c\x00\xd4\x9f\xcc\x61\x65\x99\xda\xb8\x7f\x2a\xf0\x3c\xd8\x26\x60\xfe\x28\x25\xbb\x10\xa6\x21\xda\xaa\xc4\x57\x0a\xe0\xb1\x22\x52\xb9\x05\xd8\xea\x42\xe5\x16\x2c\xf8\xc0\x73\x9e\x48\x48\xab\xe7\x4d\xa8\x34\x7d\x39\x20\xd6\x16\x5f\xf8\x0e\xda\x9f\x48\xc7\x2d\x6a\xba\xe9\xce\xd5\xbf\xd8\x67\x14\x0c\x78\xcc\x93\xa2\x30\xa7\xb3\x5e\xc8\x5b\xf6\xea\x5f\xd8\x2c\xcb\x52\xc1\x66\xec\x6f\xec\x35\x97\x5c\x72\xf6\x9a\xfd\x8d\x5d\x70\x59\xf0\x54\x95\x99\x60\x17\xec\x6f\xa6\xdb\x4c\x79\x57\xca\x1c\x87\xfb\x09\xe3\x4c\x96\x29\x9e\xfa\xdf\x59\x20\xde\x4b\xd7\x2e\xee\x47\x67\x25\x8a\x47\x21\x24\xd3\x6a\x47\x47\xe1\x5f\x5d\x3c\x48\x27\x72\x93\x8a\x82\xe6\x43\x15\x32\x89\x1f\x38\x83\x96\xbe\x5a\x48\xe7\xcb\xfb\xab\xa9\xf1\x5f\xd9\xdf\xd8\x55\x99\xa6\xa6\x4a\x66\xa3\x31\x13\xe9\x15\xb3\x29\x2c\x42\x4e\x1f\x93\xfb\x24\x13\x71\xc2\x21\x89\xc5\xfc\xeb\xfc\x0e\x46\x7b\x59\x7a\xbe\xc2\x70\x4d\x3b\x11\xa0\x53\xb6\x9e\x67\x49\x88\x77\x5a\x50\x76\xf0\x7b\x6e\x7e\xd5\x57\xc7\x5b\x44\x9e\xa5\x95\xd6\x03\x19\xac\x28\xe0\x14\x6a\x4e\x1d\xb5\x05\xd4\x0e\x5b\x5b\x56\xcb\x51\x10\x1e\xea\xa7\x6e\xb2\x20\xa0\xf6\xe4\x77\xc8\x01\x7a\x52\x43\xb7\xdc\x86\x1a\x4e\x85\x62\x00\x6c\x49\x4f\xb3\x34\x28\xa6\xe5\x54\x70\x7e\xae\x2a\xc8\x55\xba\x58\x25\x83\xa4\xf6\x6a\x95\xfd\x48\xbe\x0b\x4c\x0e\x34\xcb\x34\x49\xcf\xcd\x52\x3d\xbf\x52\xd2\x5c\x5b\x75\xb2\x41\x6a\x28\x80\x70\xa1\x46\x9d\x35\x0a\xee\xaa\x26\x6b\xb0\x04\xc0\x3e\x30\x55\x42\x58\x61\x61\x76\x01\x33\x04\xe9\x7e\x21\xcd\x1b\x74\x22\x41\x8a\x41\xe2\x18\x84\xf1\x6b\x56\xd4\x9f\xbe\x45\x1b\x72\x50\x78\xcb\x04\xeb\xcb\x5f\x3e\x61\xc2\x51\xba\xdc\x09\x5e\xf1\xab\x80\x3d\x8f\x4a\xb3\xd4\x2a\x18\x73\x5e\x89\x54\xc9\x8d\x99\x15\x5d\x9b\x80\xda\xf1\xe4\x14\x50\x4f\x58\x05\x2c\xac\xb3\x06\xe6\xb0\xa4\x47\x68\x48\xcc\x39\x99\xc4\xfe\x7e\xaf\xcb\x95\xb1\x23\x9c\x47\xd6\x9d\x86\xd4\xb8\xae\x64\xee\xd3\x62\xfb\x1f\xb5\xc8\x81\xe2\x1a\xd1\x25\xce\xdb\x8f\x07\xa7\x27\x3a\xc1\x16\x0d\x5b\x54\xbd\xa0\xe4\x76\x57\x08\x45\x13\x1a\x69\xed\x03\xe6\xe3\xb7\xc4\x27\x0f\x41\x2d\xbf\x9d\xcd\xdf\xd5\x9e\x6b\xa2\x96\x5b\xa0\xcd\x77\xf3\xf7\x97\x6f\x96\xd7\x1f\xef\x1a\xcf\x99\xd2\xe8\x4f\x07\x80\xcb\x9d\xbd\xf7\x14\xd0\xcd\xcf\xa8\x3b\xb4\x54\x6b\x9b\xc5\x3a\xfc\x4c\x6f\x28\x3f\x0d\x43\x08\x85\x04\xe7\xa1\x42\x52\x73\xe2\x74\xe6\xe2\xcb\x25\x45\x24\x86\x55\xb6\xde\x61\xd7\xf2\x2d\xbe\xfe\x41\xa5\x49\xd4\x0f\x38\xb4\xc7\xd5\x56\x3d\xb6\x20\xb8\x56\x02\x10\xb8\xe4\xff\xa1\x4a\xa1\x85\x5e\x88\xa8\xf0\x11\xb7\x66\xe3\xfe\x57\x83\x9c\x0e\xdf\xc1\xd1\xa3\xec\xba\x0d\xd4\x47\x5d\x0c\x0f\xce\x56\x20\x37\x05\x4e\x7f\xf4\xb5\x42\x1e\x23\xc4\xb6\x23\x4e\x2e\xe8\x4a\xcf\xc3\x06\xfd\xb8\x55\xa9\xb9\x8b\xc9\x98\x88\x62\x17\x32\x13\x79\xa4\x00\x1c\x84\x1c\x04\x8a\x45\xdb\x24\x8d\xbd\x70\xce\x77\x80\xa6\x06\xcc\xe3\x4b\x92\x4a\x14\x2e\xc6\x6c\x8b\xef\x39\x75\xed\xb4\xb3\x62\xed\xa7\x79\xa0\x9e\x0e\x1e\xd9\x37\xed\x7f\x21\x18\x1f\x76\x05\x51\x3b\xd5\xa2\x85\xa6\xd3\x2b\xf5\x19\xe5\xe1\x05\x39\xf5\xb5\x15\x64\xb5\x17\xa7\xa2\x36\xae\x34\xcd\xea\x5d\x09\x84\xbf\x88\x60\x43\xf8\x8b\x16\x50\x9d\x9d\xe0\x68\x8b\x79\xfa\x4d\x1a\xd4\x85\xf4\xf1\xd1\x17\x3a\xb4\xcb\x5a\xc7\x19\xf9\x6c\x2d\x00\x73\xc2\x5e\x54\x1a\xfa\x02\x08\x61\xa5\x82\xef\x51\x0c\xab\xd2\x35\x30\x5d\x27\x2c\x29\x16\x32\xd1\x38\x33\x73\x91\x8a\x07\x53\xbb\xd0\x59\x4c\x48\x1d\x7b\x77\xb6\xcd\x06\x0c\x3f\xb7\xa9\xdf\x4e\xe3\x1f\x16\x61\x1e\x12\x8b\x72\x70\x4c\xc7\x42\x1b\xbb\x11\x24\x51\xc4\x17\xb3\x00\x12\x88\x85\x20\xfc\x23\x16\xd2\xd6\x0f\x50\x21\x28\xe4\xbb\x90\xf3\x35\xe4\xdf\x42\xd6\x6f\x1c\xe3\x2d\xd4\x8a\x64\x38\x96\xb7\x84\x9c\xc3\x8a\xee\xe4\x76\x20\x48\xe9\x13\x57\x92\x78\x10\xf9\xbe\x00\xa7\x2e\xf4\xab\x14\xbc\xd8\xb2\xa4\x98\x00\x3d\x9f\xdd\x29\x17\x92\xc7\x24\xd3\x4e\xc5\x99\xae\x81\x79\xdf\x33\xce\xf4\xfb\x4a\x3d\xf4\x19\xb6\xa7\x62\xd6\x70\x55\x67\x29\x97\x4b\x3c\x41\xbe\x01\x6a\x2d\x10\x61\xed\x0a\x75\x96\xab\xa5\xa3\x14\x7a\x92\x7a\x06\x82\xd8\xa1\x34\xb2\xb1\x63\xed\x87\x26\x38\x19\x3c\xa5\xb8\xbd\x9e\x38\x3f\x0d\xa1\x0b\x72\x66\x23\xb0\xc3\x77\x01\x0f\x68\xe3\x35\x24\x82\x9d\xad\x87\x10\x6d\x76\x06\xfc\x5a\xf1\x49\x43\x46\xbe\x76\x86\xd4\x87\x7d\x3c\x34\xa6\x61\x21\x1e\x05\x8f\x39\x50\xad\xe7\x85\xc8\x74\xfa\x51\x9a\x50\x19\xdb\xda\x20\xdc\x87\x89\x2b\x02\xfd\x70\xce\xcd\xd3\x2e\xb2\x1b\xde\xc3\x54\x0b\x32\xf4\x29\x7d\xd4\xb0\x4f\x0d\xf5\x94\xf8\xbc\x77\xa8\xd7\x94\xcd\x25\xb3\xe6\xde\x84\xbd\xc0\x89\xa5\x5f\x90\x0b\x92\x94\x9a\x29\x76\x1e\xd3\xea\xa1\x4c\xe1\x3a\x14\x03\xf3\x35\xfc\x72\xc3\x48\x50\x2f\xad\xe4\xb3\xf6\xcb\xeb\x04\xf2\x45\x8e\xa1\x04\xc0\x28\xe2\x0a\x0b\xa0\x43\x12\xaf\xdd\x7b\x34\xda\x95\xf7\x66\xfb\x06\xdb\x78\x17\x7b\x6d\x5f\x34\x5d\x94\x95\x74\x9e\xda\xdf\x99\xca\x17\xd2\x96\x46\x2e\x49\x8d\x3a\x56\xf5\xa2\x02\xf8\x3a\xd9\xfc\xc1\x4c\x05\x10\x83\x95\x2e\x03\x45\x3c\xcf\x7d\x5b\xdf\x05\x00\x14\xb1\x12\x5e\x63\x7e\xca\x66\xfe\x6b\xc6\xf0\x30\x13\x7c\x87\xc7\x7c\x9d\x1f\x33\x4d\x4d\xa7\x24\x85\xa5\xe3\x0c\x52\x4b\x74\x09\xa4\xb2\xeb\xd2\x6c\x46\x01\xf3\xee\x42\x9a\xce\x63\xeb\x04\x50\xcb\xd4\x2f\x0b\xf9\x5e\x69\xcb\x64\xa0\x7d\x7f\x58\x0c\x29\x75\xdb\x0b\xa7\xe0\x46\x7f\x78\x03\x87\x36\xf9\xfc\x91\x93\xc8\x1d\x2d\x90\x53\x44\x74\x24\x7b\x55\xe6\xbe\x51\x11\x97\x0b\xf9\x1f\xa6\x7b\x50\x5d\xdc\x49\xf3\xab\x35\x2e\x61\x18\x41\x08\x96\x7c\xc2\x42\xbf\xfb\xc7\x97\x9f\x5e\x62\x0e\x40\xa9\x41\x34\x73\x52\x3d\x40\x1c\x09\x7b\x99\xa6\x10\x89\xb6\x2d\x70\x44\x20\xfe\x13\xbc\x0f\x96\x43\x97\xba\xa5\xac\x9a\x18\x43\x16\x7a\xdf\x0c\xf6\xce\xe7\x19\x8b\x78\x11\x6d\xcf\xac\x2d\x47\xdb\x98\x3d\xfd\x68\xf8\x50\x3d\xcf\x58\x5a\xed\x3c\xe4\xe6\xc2\x99\xef\x1c\x33\x62\x65\xbe\x98\x26\x00\xb0\xe6\xae\x2e\xca\xe3\x88\x5b\x71\x72\x7a\x71\x7c\x6f\xe7\xb9\xc7\xad\x24\x9e\xbf\x71\x92\x97\x5c\xf2\x9d\x88\xd9\x0b\xc8\x56\x7b\x61\x07\x7f\x21\xb3\xd5\x34\xdd\xaf\x0b\xa2\xd7\x32\x9d\x32\x05\xf1\xa8\x03\xa7\xdc\x32\x6e\x5e\x93\x0e\x74\x76\xe7\x45\xab\xdd\xd6\x71\x7d\xe3\xbe\x34\xdc\x60\x41\x1f\x97\xeb\x9d\xdb\x2a\x44\xa8\xca\x62\xcf\xf5\xfd\x84\xad\x72\x2e\x41\xf7\x23\x0e\x8d\x2a\xbf\x3a\xe1\xf2\x8c\xdc\x55\x36\x7d\x45\xf2\x74\x0f\xc8\xf7\xc9\x42\x22\xd1\x17\x30\x42\xef\xa3\x34\x89\xd8\x26\xe7\xd9\xb6\x66\x07\x89\x07\x21\x8b\x4b\x62\xb6\xb0\xf8\xf4\x53\x43\xcb\x8e\x29\xe3\x24\xbe\xc3\x79\xd5\xda\xe1\x9e\x02\xc4\x7b\x58\x31\x49\x88\x6e\xd4\x16\xd4\xea\x26\xf8\x84\x64\xe8\x80\x0b\x8d\xfd\xa5\x5c\xa9\xd4\x92\xc9\xcd\xdf\x30\x95\x83\x8e\x43\xa1\xe8\x4f\x49\xdc\x75\x8a\x25\x32\x16\x5f\x4e\x62\x74\xe8\x3f\x90\xac\x79\x67\x3e\x13\xc8\x05\xd4\x1b\x6b\x81\xff\x19\xb8\xba\xf1\x06\xd7\x78\x4a\xd7\x11\x76\xb3\xb4\xd8\x02\xec\x0d\x01\xd7\xbe\x53\x77\x7c\xcf\xa2\x2d\x97\x9b\xe0\x0a\x0d\x28\x24\x91\xa9\x1c\xf5\x0e\x1f\x80\x3a\x4d\xe5\x36\x63\x96\xf2\x40\x09\xf5\xed\x1c\xde\x08\xb6\x54\x36\xd9\x93\x6f\x36\xb9\xd8\x00\x89\xc1\x42\x56\x32\xd9\x81\x36\xce\x4a\x2d\xe0\x77\xfa\x12\x81\x9f\x86\x4d\xa3\xeb\xd6\x52\xe4\x7b\x97\x46\x49\x62\xa1\xae\xeb\x1a\xdd\x3a\x61\x89\x98\x4e\xd8\x0f\x1e\x60\x2a\x22\x25\x5d\x1e\x66\x47\x12\x5e\xcd\x35\x7d\x60\x2f\x6a\xa1\xdd\x68\xaf\x3b\xfc\xd6\x48\x09\x69\x9d\x34\xbd\x89\xac\x05\x2f\xca\x11\x7b\x25\xc9\x4a\x5f\x98\x97\x6f\xf1\xdd\x5e\x0c\x36\xcf\xcc\xf6\x66\x29\x8f\xcc\xf3\x66\x87\x37\xdf\xf6\x94\xc8\x6d\x7d\x7d\xd0\xd1\x99\xaa\x6e\x47\xe7\x53\x98\x94\x96\xd7\xe2\xb0\xaf\x33\xed\xe0\x6a\xe8\x69\xd3\x58\x57\xa6\x05\xa3\x12\xcc\x5c\xd7\xaf\x5b\x2d\x3b\x40\x96\xab\xb8\x8c\x44\x6c\x56\x2e\xd8\xed\x88\xdc\x70\x94\x11\x95\x4d\xb2\xed\x40\xa8\xf0\xde\x80\xb8\xf8\xd7\xba\x1b\x0f\xa2\x1a\x76\xdd\xff\xb1\xe3\x5e\x6c\x2d\x93\xb6\x4e\x0f\xd7\x27\xf6\x53\x3e\xf2\x9c\x72\x9f\xaf\x12\x04\xab\x3c\xd9\x24\x92\x17\x2a\x67\xdf\xb9\xc4\xd0\x97\x4e\x55\x08\x7a\xf1\x29\xb6\x89\x4a\x17\xe1\x36\xd1\x7e\xf7\x02\x3c\xb3\x88\x97\xe3\x78\xcb\xc6\xb2\x6b\xc3\x24\x35\x4f\xe9\x82\xef\xb2\x90\x72\xd3\x69\x36\x53\xcf\xa4\xd8\x09\xcc\x56\x0c\x7c\x7c\x89\xf6\x39\x58\x0b\x49\x9e\x71\x1c\x37\x95\x87\x9c\xd1\x9d\x67\x73\x56\x16\xcb\x23\x69\x64\xf0\xe5\x71\x0e\x12\x0a\x97\xbf\xe7\x59\x3f\x31\x07\xa7\xab\x31\x26\xa1\x38\x21\x6b\x6b\xa9\x54\xe7\x67\xbf\x2a\xc3\x48\xa2\xd0\x7a\x88\xf7\xe6\x9d\x0d\x68\xf8\x7b\x4b\xe5\x22\x00\x03\x81\x0c\x85\x1a\xac\x0a\xbc\x82\xba\x6d\xcd\x9c\xe2\x96\xcd\xe3\x22\x55\x65\xcc\x68\x53\xa3\x70\x71\x3e\xc5\xd3\x11\x28\x43\xa7\xd3\x2e\xfe\xb4\x91\x6a\xb1\x6e\xff\x81\xf7\xda\x57\x20\xfc\xd6\xb1\x03\xf7\x2e\x7d\xea\xd9\x67\x1b\x7a\xea\x69\x18\x7b\xb7\x1d\x8f\x1a\x7b\xe7\xad\x05\xfe\xb2\x71\x8e\x3c\xb8\x37\x25\x71\x0a\xeb\x2d\x74\x74\xb7\x30\xac\x56\x02\x88\xfa\xfe\xe4\xcf\xd9\x3c\xe1\xfe\x4f\x65\x3c\x17\xb2\x58\xc2\x17\xc7\x7d\x0c\x3e\xf2\x01\x5e\xaf\x18\x4c\x83\x1c\x96\xff\x76\xa7\xd0\x0f\x6d\xc9\x4a\xfe\x9d\xdd\x92\xef\xc5\xec\x57\x09\x80\x1d\xf5\x3d\xfb\x2e\x01\x6c\x4c\x10\xb3\x73\x03\xd7\x31\x5c\xd4\xa0\x23\x7a\x2f\x68\x50\x65\x6b\x1f\xd4\x20\x5f\x7b\x08\xa9\x42\x29\xe4\x86\xa2\x0c\x4f\xb3\xd5\xda\xbf\x05\x04\xe6\x57\x95\x7f\x03\xd9\xa4\x19\xbf\x94\xfd\xa7\xc8\x95\x4f\x5b\x40\xa7\x4a\x58\x70\xaf\xbd\x7e\xbc\xf6\x2a\xda\xe3\xa8\xfa\x19\xca\xde\xc1\x5f\x88\x0f\x06\x6f\xbe\xab\xbd\xbd\x8e\x74\x51\xd9\x8b\x68\xd9\xa1\x71\x30\xa8\x2a\xc1\xc5\x33\xd4\x2c\x48\x6a\x87\x99\x5d\xa0\xe7\x70\xaf\x26\xc6\xc5\x1d\xcf\x08\x87\x46\x90\xd7\x7a\x90\x61\x0a\x8d\xf8\xb7\xbf\xfe\xfb\xb4\x4b\x55\x1b\xaa\x3e\x16\xd6\xe3\x2a\xff\x36\x4f\x84\x8c\x21\x68\xc8\xe3\xa6\xfc\x8e\xac\x78\x91\x2b\xdb\xb3\x99\x86\x4f\x92\xdd\xd7\x7e\xd4\xea\x25\x4e\xa2\xaf\x10\x79\xf6\x9b\xac\x5b\xbe\x95\xb8\x54\x97\x29\xa1\x97\xf1\x5e\xf2\x5d\x53\x87\xfc\x59\xeb\xb8\x4f\x44\x1a\x43\x15\xe9\xeb\x87\xa2\x27\xb1\x88\xee\xc7\xda\x04\x47\x93\x87\x8b\xe8\x9e\xfd\x74\xf7\xfe\x1d\x6a\x45\x26\x7a\x21\xaf\x78\x91\x3c\x88\x8f\x79\xea\xdc\xd6\xc4\x06\x93\xa7\x76\x8d\x54\xc9\x6c\x03\xe2\x14\xcb\x7c\x6b\x0d\x87\x90\x6b\x7c\xb7\x3f\x5b\x95\xd1\xbd\x28\xce\x73\x2e\x63\xb5\xc3\x66\x9c\xeb\x72\xbd\x4e\xbe\x4c\x0b\x9e\x77\x10\x8f\xa3\x1f\xe1\x1b\xda\xb9\x5e\x4e\xa6\xf0\x36\x2f\x9a\xba\x8f\x90\x9d\x48\x22\xc5\x15\xe3\x16\xae\xc0\x39\xdf\x09\x60\x8e\x63\x55\xd2\x7e\x28\x05\x13\xfe\x40\xdb\x4e\x6b\x42\x7a\x2b\x52\xce\xfd\x14\x18\xf7\x9f\x82\x5a\x55\xd5\x9b\x6d\xa5\xbc\x5e\xdc\x8e\xdf\xe3\xfd\x70\x93\x0b\xad\x27\x4c\x2b\xa8\xf1\x42\x5a\xcc\xb4\xcd\xeb\x01\x7c\x06\x70\x4f\xa6\x7b\x16\xa9\x2c\x01\x79\x3d\xd7\xae\xad\x7a\x04\x7f\x72\x98\xde\x06\x8a\xa8\xa5\x2c\x92\x94\xf1\x75\x41\xce\x66\x20\xda\xb6\xc2\x3a\x7a\xba\x90\x10\x32\x8c\xa0\xf9\x10\xca\x77\x61\x02\xd7\x08\xcd\xd6\x3c\x4a\xd2\xa4\x20\xfa\x1f\x48\x86\xe1\xa6\xbd\xe6\x3c\x30\x7d\x99\xf3\x3d\x4f\xfd\xc5\x8a\xa7\xa5\xcf\xe8\x3b\xd3\xa2\x4e\x2f\xf7\xbb\xf0\x7f\x2b\xf7\xdc\xbe\x53\xf7\x84\x0b\xef\x29\x87\x4f\xf3\x4a\xeb\xd4\x5e\xfd\x39\x9e\xc4\x16\x27\x5a\x31\x75\x3d\xeb\xaf\x3b\x7e\xc0\x77\xde\x71\xa9\x9e\x5a\x8d\x9e\xe6\x17\x46\xf4\x5e\xbb\x11\xf6\x95\xdc\x05\x5d\xfc\xc3\x43\xaa\x6f\xbd\xdd\x1f\x94\x4a\x4f\xf5\x78\x13\x03\x4b\xa2\xe4\x12\x64\x2b\x4f\xb9\xae\xe1\x04\x70\x8e\xa3\xf9\x1b\x17\x7b\x75\x84\xbe\x55\xb1\x1b\x82\x05\x51\x15\x60\xa3\x80\x4a\xf4\x20\x86\x75\xd6\x12\x7c\x1f\x89\x7c\x86\x32\x10\xb5\x63\x4d\xe7\xa6\x0b\x3e\xc8\x65\xe7\xbe\x8e\x40\x7a\x58\xab\xe1\x28\x67\x18\x8a\x4c\xd6\x3e\xe5\x1c\x63\x21\x39\xaa\xeb\xc7\xe0\xdb\xb6\x3f\x51\xda\xda\x9c\x4f\x64\x25\x2f\x64\x60\x11\x23\x27\x90\x85\x96\xbb\x5e\x6b\xf3\x97\x55\xa6\xe1\xc9\xfe\xb2\x53\x18\xb0\x7b\x03\x2a\x6f\x42\x2d\x2b\xc0\x04\x44\x6a\xb7\x4a\xa4\x4d\x55\x26\x27\x32\x98\xf2\x33\x4b\x30\xe8\x1c\xfe\xd6\x24\x47\x85\x83\x5a\xdf\x3b\x33\x22\xe4\x6a\x0c\xb7\xac\x43\xd7\xdd\xf0\xfe\xf4\xb4\x64\xdd\x1d\x28\xd5\x7a\x0b\x12\xcd\x78\xfa\xc8\xf7\x1a\xf4\x5e\x85\xd9\x15\xd7\xe8\x38\xad\xd6\x7f\x12\x1c\xef\x96\xbc\x92\xc4\xd3\x4b\x92\x81\xa6\xb6\x24\xc8\xdf\x20\x52\xab\x6c\xeb\x79\x71\x5e\xe8\xf6\xce\xf9\x36\xb1\x90\xbc\x37\x16\x82\xc1\xc8\xff\x19\xe1\x8f\x1e\x27\xeb\x89\xbe\xde\xe0\x98\x44\x8b\x8c\xe0\x22\x90\xc0\x03\xdb\xb1\xf9\xf6\x84\xed\x78\x22\x69\x19\xa0\x7a\x58\x2c\x56\xe5\x66\xd3\xe9\x82\xfc\xf5\xc7\x32\xaa\xeb\xe4\xef\xde\xd7\xdc\xcb\xec\xf4\x14\xde\xd8\xb9\xfd\x12\xba\x87\xcd\xbd\xea\xeb\x38\x60\xbf\xa1\xb7\xbb\x35\xe4\xd4\x98\x44\x4f\xe3\xed\x9e\x0f\xf1\x76\x5b\x8c\x0f\xa4\x5a\xd1\x75\xd5\xe2\x30\x7e\x73\x83\x7f\x1d\x37\xf8\xa0\x49\x81\xf4\x1e\xcb\xa4\x6a\xa0\xf7\xd4\xf0\x48\x96\x30\x47\x86\x09\xb5\x22\x25\x76\x2d\x64\xac\xd9\x8a\x47\xcf\x40\x1b\x06\xa7\xe3\xe9\xfe\xb6\x03\xe0\x92\x5b\xb5\x13\x0c\x3e\xa5\x51\x77\x82\x51\x36\xdb\x04\x50\x8b\xa6\x81\x1e\x91\x41\x78\x0f\x38\x4e\x11\x19\x12\x7b\xa3\xfa\x3b\x29\x1e\x99\x39\xad\x26\x21\x8c\x2b\x18\x1e\x10\x24\x7a\x69\xac\xc3\x0a\xe6\xdb\xa5\xee\xe7\x62\xc3\xf3\x18\x32\x0d\x68\x49\xa6\x3c\xba\x37\xff\x0d\xf5\xa3\x2f\x12\xd4\xcc\x72\xa3\x23\xfc\xd1\x97\x96\xc8\x28\x07\x52\x26\x42\xb5\xf9\xfa\xe1\xeb\x9a\xf1\x28\x57\x1a\x9d\x32\x4e\xc7\x13\x32\x5d\xc1\x80\x7d\x48\xe2\x92\xa7\xf8\xc5\x4e\x4f\x36\xd7\x27\x71\xbd\xcf\x02\xc9\x1d\xf1\x25\x4b\xb9\xac\xae\x49\x6c\x2e\x70\xd5\x24\x3d\x33\xdf\x51\xae\x9d\x52\x95\xd1\xd4\x91\xf3\x40\xed\xd6\x2f\x2b\xb4\x8e\x73\xc1\xe3\x7d\x48\x4c\x95\x48\x06\xb1\x1f\xc6\xe3\x5d\x22\xcd\xd0\x5b\x45\x35\xb7\xbf\x5a\x72\x65\x04\x5c\x82\xf0\x48\x9a\xd6\x96\xbe\x66\x52\x18\x93\x8a\xe7\x49\xba\x07\x2b\x3a\xcb\xc5\x59\xf0\x9d\x60\x7d\x53\xbe\x07\xd0\x44\x13\x89\x42\xa9\xc5\xba\x4c\xd1\xd6\x86\xdb\xa8\x6b\x00\xad\xc3\x8f\xf3\x89\x39\x66\x0b\xa2\xfb\x0f\x3e\x8c\x22\x5a\x4f\x81\x9d\x6f\xc4\xc0\xc6\xc5\x71\x3c\x71\x5a\x0e\x10\xdf\xad\x7a\xb4\x89\x3e\x8f\xdc\x23\x39\xbb\xce\x94\x27\xf3\xdd\xf7\x5b\x5f\xf6\xde\x63\x57\x27\x76\x7e\x5c\x09\xd8\xd0\x6f\x22\x76\x2b\x32\x91\xd0\x1c\xd2\xa1\xf4\xfe\xd0\x52\x63\xbe\x90\x19\x4b\xd8\xb5\xed\xf5\xbe\xea\x0e\x65\xae\x75\x89\x56\x92\x2d\xca\xdf\xff\xfe\x0f\x82\xfd\x1e\x12\xa8\xc8\x0a\xc7\xa8\x0b\x50\xa7\x61\xe9\xb0\x51\xb9\x0f\x08\xe4\x55\x6b\x8c\x08\x6b\x03\x3e\xda\x6c\x65\x80\x0e\xf2\x68\xcb\x74\xb9\x42\x5c\x1c\x27\xc7\x3d\x97\x8e\x99\xf4\x9d\x02\x88\x1b\x9e\x67\xb6\xf6\xff\x4b\xdc\xd4\xc8\xcc\xbe\x90\x99\x42\xf2\x5c\x00\x14\xae\x04\xdb\xf1\xfc\x1e\x84\xf6\x48\x4d\x9d\xf1\x82\x7d\x97\x88\x69\xd5\x69\xfd\xb2\x52\x1f\x0a\x13\x20\x29\x26\xcb\x4b\x29\xad\x72\x08\x33\xe6\x98\xf7\x20\x4f\x16\x72\x55\x86\x37\xae\x8a\x0b\xda\x4f\x2d\x70\x43\xc3\x66\xab\x80\x29\x81\x2a\xc5\x75\xa0\xf2\xce\x06\xf8\xa2\x17\xf2\x99\x9c\xd1\x5d\x6e\xae\x0f\x64\x79\x58\x17\x56\x80\xd6\x86\xe6\x86\xe2\x96\x30\x1c\x38\xed\xe1\x68\xff\x00\x0a\x97\x13\xf6\x53\xf2\x20\x26\xec\x36\xe3\xf9\xfd\x84\xbd\xc1\xa0\xd2\x9f\xd4\xaa\xcd\x73\xd5\x48\xa7\x3f\xd9\x7b\x75\x9c\xf3\x66\xb0\x4c\xbe\xb3\x79\x7f\x69\x6a\xe0\x77\x45\x54\xff\x67\xe2\xbc\x3a\x98\x0e\xfe\xde\xef\xdf\x07\x82\x9f\xbf\x41\xa2\xfe\x2e\xef\x82\xfd\x24\x07\xbf\x0b\xff\xd7\xee\x5f\xd6\xe2\x02\xdb\x93\x76\xb9\x56\xac\xd3\xaf\x2b\xad\x33\x89\xeb\x87\x72\x33\xbb\x73\xd8\x52\xa0\xe4\xd9\xd8\x25\xf6\x8e\x80\x72\xd3\xab\xb6\xbf\x2e\x52\xa5\xcb\xbc\x7f\xf1\xdf\x54\x6b\x6d\xbf\xde\x42\x74\x08\x93\x6d\xb7\x12\x90\xb3\x3d\x14\xd4\x80\x8f\x2d\xff\x43\xad\x96\x80\xe0\x39\x6d\x85\xb7\x15\x67\x65\x6b\x5c\x1c\x88\xaa\xea\x4f\xc8\xdb\x4c\x00\xdf\x8e\x37\x45\xbd\x1b\xbc\x36\xc3\x9c\x43\x60\x21\x2d\xfd\x30\xe6\x0b\xe6\xb9\x00\x9e\x54\x73\xef\x7d\x10\x39\xcb\x78\xee\xc2\xe8\xd6\x22\x0a\x6e\x3e\x1e\x6a\x11\xe6\xf8\x40\xaa\x1e\xdd\xb7\x56\x42\x48\xd7\xdb\x63\x4c\x09\x63\x1d\xd4\x7b\x9f\x30\x54\x8f\x82\x45\x08\xcf\xef\x50\x8e\x6b\xbc\x17\xdc\x05\xc1\xe4\xde\x88\x22\xd8\xcd\x6b\xa6\x45\x65\x69\x56\xe2\x32\xbf\x2a\x1c\x79\x6b\xe4\xb5\x46\x4d\x54\x71\x1b\x0c\x8a\x64\x3d\x85\x97\xf8\x03\x2f\xb6\x78\xa1\xdd\xa9\x82\x24\xfc\x91\x23\x05\xe7\x0b\xfa\x5a\x57\xa9\x5a\x81\x0c\x92\xf9\xa5\xeb\x6e\x18\xd1\xd2\x1e\xd4\x75\xcd\x01\x1b\xb2\x33\x98\xdd\x04\xf2\x0c\x73\xa1\x81\x6e\xa2\x19\x9b\x19\x8a\x7a\x1d\x77\xe9\x6e\x56\xd7\x6c\xfa\x6f\xba\xa5\x55\xdc\xcd\xcf\x2c\x6b\x80\x40\x5e\x1e\x91\x97\x71\x19\xe6\xea\x19\xe3\x80\xa8\x5a\x29\xf8\x89\x6c\x8d\xb5\xf6\x5a\xb5\xdd\x85\x9c\xe1\x2f\xc1\x21\xc0\xbd\x0e\x87\x43\x19\x92\xb0\xa2\x5b\x7f\x98\xbc\xc7\x66\x21\xae\x8d\x3c\x04\x13\xef\xc1\x83\xcb\xc0\x04\x72\xe5\x64\x91\xe4\x82\x49\x88\xbd\x2f\xa4\x2e\x57\x67\x9e\x96\xc1\xdc\xe2\x1e\x80\x4a\x44\x8b\x8c\xc3\x55\x06\xd8\x5a\xce\x5a\x8e\x61\xf4\xc7\x79\x3e\x7d\x4b\x5f\xc6\x53\xda\xfc\x21\x03\x0f\xf3\x82\x5d\xdb\x5d\x39\xe6\xb2\x06\xb7\x68\x9b\x93\x8a\x87\x5d\xdf\x7e\x01\x8a\x1f\x90\xd7\x77\x83\xd8\x81\x6f\x7d\x80\x87\x31\xc0\xa1\x47\x37\x44\x91\x16\xf2\xff\xda\xb3\xa1\x1b\xaa\x3a\x62\xa6\x9b\x9e\x31\x47\x54\x27\x84\xb6\x52\x37\x7b\x85\x0c\x8c\xc0\xee\x4a\x35\xa6\x7c\x5b\xa9\xdc\xa2\x39\x42\x7e\x7b\x45\x49\x98\xf0\xeb\x43\xa2\x03\xb2\x63\xf8\xda\xad\x10\xec\x55\x2e\xd6\xaf\x3e\xe5\x62\xbd\xb4\x23\x3d\x85\x06\x4d\x4d\x8b\x9a\x94\xc7\x03\x27\x87\xce\x94\x6c\xa7\x7e\x3b\x40\xcd\x58\x6b\x12\x96\x13\xb4\x29\x59\x33\x2f\x41\x67\xda\x03\xf9\xef\x22\xae\x73\x31\x37\x6a\xf6\xd5\x8f\xb9\x2e\xfc\xd3\x00\x80\x51\x87\xf8\xd9\xdf\xff\xf1\x56\xe9\xb3\x21\xc7\xdb\x5d\x15\x28\x62\x37\x7b\x2e\xdd\x81\xd7\x0d\x28\xfe\xba\x98\x67\x18\x40\x9d\xf1\x47\x49\x2c\x1e\xa3\x5c\x4f\xc3\x8e\xb5\x76\x11\x79\x73\xac\x35\x90\x5f\x7e\x95\x49\xeb\xe9\x4b\x9c\xd6\xd6\x24\x90\x08\xe6\x69\x1a\x32\xca\xfb\xf8\xd2\x42\x06\x0a\x68\xec\x51\xa4\xa9\x75\xe1\x55\xec\x0d\xe2\x6c\x89\x21\xcd\x54\x4c\x2c\xe5\x04\x91\xb5\x51\x14\xe8\x6c\xc5\x41\x7f\xd2\xe9\xac\x1c\x5a\xcd\x4f\x75\x89\xfc\x95\x65\xdb\x1e\x88\xb7\xe2\x67\x97\xf7\x62\x3f\xba\xae\x07\x74\xed\xe0\xc2\xe4\x77\xd9\x88\xe7\xb9\xc5\x8e\xd3\x57\x99\xb9\x2b\xad\x79\x54\x71\x73\x76\xd4\x73\x2b\xa2\xfb\x4c\x25\x72\xf4\x5e\x14\xd4\xc7\x18\x52\x85\x39\xcf\x7c\x69\xee\x76\x38\xe8\x70\xac\xd8\x93\xd8\x10\x0d\xa0\x02\x0b\x88\xf4\x54\x54\x9c\x39\x85\xcc\xee\x69\xf7\xd4\xfe\x0b\xe1\xcf\x86\x67\xf0\xc5\xb6\xc4\x87\x6a\xa7\x0a\x6f\x71\xec\x54\x78\x10\x79\x23\xa7\x68\x60\x67\x73\x56\x21\x70\x6b\xed\x52\x70\x41\xfe\xe6\x19\xfa\xcd\x33\xf4\x3f\xdc\x33\xf4\x35\xdd\x42\x80\x08\x79\x4e\x9f\x50\x4f\x80\xfc\x84\xe5\xe8\xbe\x7a\xaa\xd8\x35\x5a\xc7\x93\x40\x18\x34\xc8\x9f\x6b\xc2\xdb\x2d\xbd\x42\x01\x92\xd6\xd1\xbd\x90\x9d\x31\x7a\x4b\x8a\xd3\xa9\x7d\xfb\x54\xb0\xcf\x6e\x4e\x9f\xe0\xed\x7e\x8e\x34\x0f\xf0\x21\xca\xd4\x36\x9a\x09\xb3\x4e\xc0\xf6\x34\x0d\x3f\x03\xa8\x94\xca\x1d\xad\xaf\xa6\xdc\x2e\x0c\x46\x22\xf9\x0e\x42\x84\x6a\x44\xb8\x43\x91\x60\x4e\x78\x37\x53\x2a\x6d\x05\x84\x3d\x69\x07\x36\xd2\x43\x86\x76\xde\x1c\x8d\x51\x1d\xc2\xa4\x6c\x2f\xfa\x54\x03\x9f\x98\x80\x59\x08\xa0\x04\x00\xb3\x29\x2e\x21\x43\xcf\x77\xc7\xd4\xe7\xf5\x70\xe7\x70\x21\x64\xd4\x4a\x44\x1c\x54\xf0\x2c\x64\x2d\xe2\x2e\xe7\x22\xa4\xda\x69\x24\x41\xe8\xe6\x77\x3a\xa2\x96\x50\xee\x32\x69\xa3\xfd\x1f\xbb\xb8\x6a\x16\x82\x05\x54\x63\xcd\x2d\x92\xc4\x92\xce\x1d\x12\x3d\xb4\x0c\xbb\xcb\x28\xe5\x7a\xa0\x61\xdd\xba\xef\xcc\xa9\xa0\x0b\x28\x67\xf8\x46\xfa\x13\x24\xa1\xec\x06\x22\x77\x16\x72\xe6\x44\xff\x3c\xf6\xcb\xe1\xd5\x30\x5c\x8a\x48\xbd\xc6\xd0\x20\x93\x9d\xbf\xb9\x4c\x98\x2e\xa3\x2d\x70\xf5\x55\xf7\xa9\x70\xdf\x6a\xae\xd8\xc9\x42\x9a\x0b\x11\xb8\x5a\x76\x1c\xb2\xad\x1f\x8d\xb1\xaa\x93\xff\x14\x0e\x9e\x45\x94\x50\x21\x22\x0b\x2f\x4e\x4a\xb6\xa2\xd7\x2c\x6d\x22\x02\x2c\x3c\xa6\xa4\xcc\x62\x5e\x88\xe9\xc2\xa3\x6d\x12\xf4\x74\x5a\x94\x07\x99\xcc\x3a\x6c\x58\x88\xde\xab\xed\xb4\x69\xb2\x16\xd1\x3e\x6a\xa8\xa0\xf4\x93\x0f\xfc\x76\x6d\xfb\x75\x5d\xdb\x90\x63\x14\x33\xe5\xc6\x74\x2d\x55\xf5\xc6\xbf\x7e\x5a\xe7\x0a\x16\xd4\x44\x8f\xe8\xe7\xaf\x78\xed\x6c\xb1\x81\xc7\xd9\xf3\x83\xef\x41\xfd\xc7\x99\xbf\xd8\xfa\xc3\x3a\x48\xac\x6f\x98\x85\x61\x70\xb1\x08\xa7\x8e\x31\x68\x07\x87\xf5\xbb\xb9\x4b\x7e\x55\xe0\xa4\x21\x17\x57\x63\x71\x3b\xb8\xd2\x95\xb5\xb4\xa5\xc0\xf3\xae\xc7\xe2\x0e\x38\xad\x79\xf1\x42\xbb\x5e\xaf\xee\x80\x16\xf1\xfe\x2e\xd1\xc5\xcf\x35\xc5\xc4\xe3\x24\x17\x9f\xcd\x34\xb5\x55\xc5\x6a\x0e\xb5\xa8\x6e\xaa\x36\x8f\x5a\xdb\x39\x07\x97\x27\xab\x91\x65\xea\x3d\xe6\x1e\xf4\xc9\xf5\xd7\x27\x3c\x9a\x1e\x73\x9e\x65\x22\xb7\x07\x79\xc3\xd6\x02\xc1\x29\xf8\x0a\x28\xc6\x6d\x05\xca\xd6\xd6\x6e\xb9\x66\x2b\xa9\x15\x0d\x8f\x41\xd7\x4d\xdb\x47\xee\xaa\x4c\xd3\xce\x91\x3b\xac\x63\x73\xf5\xf1\xdd\xbb\xe5\xcf\xb3\x77\x1f\x2f\x6d\xf3\x5b\x75\x61\x82\xc7\x3a\xfb\xc4\xd5\x84\xfa\xc4\x2b\xcf\x99\xcf\x0a\x2b\x9d\xab\x7c\xab\xd1\xc9\x55\xa6\x69\x55\x33\x68\x21\x3f\x51\x39\x00\xd3\x46\x3d\x44\xd3\x6f\xac\xb7\xe3\xaa\xdf\x87\xc7\x3e\x99\xc2\x3f\xe1\xbb\x67\xcc\x37\xe2\x15\x28\xdb\x91\x62\x56\x7b\xbf\x52\x0e\xc8\x09\xcb\x01\xc1\xc0\x5d\xcb\xe1\xa9\x55\xd1\x8e\x5b\x1e\x1f\x25\xf0\x31\x8b\xd8\x8a\x99\x3d\xc9\xea\xc0\xbe\xfb\x54\x8d\x53\xbb\xbd\x3c\xc6\x2b\x0d\x94\x3b\x41\x2d\x2b\x50\xe8\xf5\x72\x4f\x0b\x89\x3e\x50\x53\xa7\x42\x75\xd7\x89\xcd\xc9\xbc\x4d\xb9\xdc\x94\x7c\x63\xac\x5b\xfb\xf1\x85\xdc\x25\x9b\x2d\xb2\x4b\x94\x99\xc7\x27\x73\x26\x81\x84\xa4\x36\x85\x6a\xf8\xe4\x44\x2e\x24\xb5\x49\x6e\x7c\xf1\x88\x95\xfd\xd3\xad\x6b\x0e\x81\xd2\xb1\x20\x92\xe3\x92\x0b\x89\x83\x8b\xac\x17\x36\x12\x02\x37\x16\x5e\xd4\xa7\x2e\x87\xd8\x25\x4a\x56\x9b\x3d\x7d\x03\x31\x99\x85\x74\x89\xa9\xe8\x39\xa2\x36\x04\xb2\x0d\x58\xa5\xc3\xfb\x89\x1d\x0c\xbb\x26\xa8\x6e\xed\xb3\xfe\xe4\x33\xc0\x2c\xb8\xe5\x08\xed\xdd\xe6\x36\x36\xd0\x5b\xc8\x83\x8d\xa3\x8b\xad\x00\xb2\x91\xdb\x6b\x63\xdb\x85\xcf\x74\x42\x5b\x55\xb9\x4a\x47\x54\x09\x9f\xef\xad\x14\x6e\xc9\xfd\x95\x1a\x70\x1d\xbe\xa9\x2d\x2d\x33\x4d\xfb\x3e\xbb\x52\xaa\x63\x5c\x9e\x30\xa0\x58\xa9\x14\xbd\x70\xa8\x33\xca\xa8\x38\x66\xbe\x0c\x48\xd1\xab\x77\x91\xdd\x7d\xfa\x2a\x94\x26\xfa\xa8\xea\x78\xfb\x69\x70\x8d\x9c\x85\x40\x87\xdd\xa8\x1d\x96\xce\xb9\xca\x06\xdb\xb1\x4d\x52\x3c\xc9\x8a\xd8\x26\xb8\xbd\x98\xc5\x83\x0a\xb3\x66\xfe\x4f\xdc\x24\x9a\xf8\x91\x9b\x40\x25\xa3\x32\xd7\x66\xbb\xa4\xfd\x8e\x76\x6d\x95\x33\xbe\x90\x56\x0d\xc1\x6e\xc7\x33\x0b\xce\xcd\xdd\x5f\x31\xed\x31\x43\x36\x71\xb0\x58\x0b\xa6\xa4\xb0\xbb\xe1\x42\x5a\xe5\xe3\x09\xe3\x2b\x6d\x05\x85\xb9\xdc\x3b\x95\xdf\xc4\x49\xb8\x71\xc9\x00\xf5\x7c\x78\xcf\xab\x99\x01\x95\x73\xfe\x77\xe6\xff\xfe\xfb\x77\xff\x3f\x00\x00\xff\xff\x27\x67\xe6\x63\x4d\xac\x04\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x5d\x23\xbd\xdf\xde\x6c\xdc\x71\xcc\xab\xb4\xf3\x41\x25\x4c\x1f\xca\x4d\xa7\xa0\x40\xca\xa2\xaa\xa6\xb3\xf5\x79\xf5\xbd\x24\xe6\x00\x32\x36\x7c\x1c\x73\x22\x03\x23\x3e\xf2\xb6\xb8\x84\x4e\x89\x96\x3e\x46\x4c\x93\x71\xe8\x70\x30\x00\xdb\x0e\x6f\x5b\x77\x1a\x09\x2e\xa5\x8d\xbc\x37\xed\x2c\xcf\x9f\xda\xa2\x96\x9f\x41\x09\x3f\xbf\xbe\x1a\xd7\xab\xfa\x05\xcf\x5c\x7d\x3f\xfb\xb0\x31\xc9\xbe\xb5\xa9\x95\xd5\xfc\x8a\xb5\x58\xa3\x9e\xdf\xf1\xe9\xc5\xb9\x2f\x62\x55\xe9\xba\x5e\xd0\x2f\x44\x56\x6f\x2f\xe9\x57\x9f\x71\x50\xdc\xaf\xd2\xc4\x92\xf2\x7e\xab\x37\xab\x1c\xef\xbb\x0d\x6c\x5e\x65\xeb\x57\xf2\x87\x32\xcd\xac\x0a\x4b\xdf\xd1\x36\xb5\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x76\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\xb5\xad\x58\xcf\xe3\x75\x6f\x61\xd2\x77\x11\xc6\xfc\x7a\x39\xcc\xc9\xa2\x88\xda\x93\x56\x76\x73\x25\xb8\x5b\xec\xfe\x13\xe2\x21\xe1\x5b\x37\x74\xdb\x24\x45\x0f\x1d\x25\x08\x96\x36\x1c\x03\x72\xf9\x2a\x79\x3e\x6b\x98\x87\xfd\x98\x4d\x36\xf0\xa1\x2f\xc2\x10\x5c\x35\xb6\xae\x58\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\x63\x7e\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\x01\x07\xa6\x67\x30\x8f\x49\x9a\x6a\x05\x1e\x54\x13\xc6\x0f\x79\xe6\x74\x96\xd2\x5b\x50\x41\x83\x4e\xf5\x8d\x15\x84\x2b\xe8\x2f\xd8\x21\xf9\x4c\xa5\xd2\x72\x45\x43\xac\xa6\x6b\x04\x24\x1e\xa8\xab\x35\x27\xf6\x86\x1b\x7d\x18\x7c\x77\x7d\x7b\x3f\x3c\x1b\x7d\x28\xa2\xf3\x5d\xfa\x99\x47\x84\x72\x00\xff\x9c\x8d\x98\x0f\xa8\xf5\x00\xc8\xb0\x97\x08\xc7\x71\x81\x6c\x60\x95\x48\x23\xb3\x2d\xe5\xc8\xc1\xa9\x58\x19\x4a\xbb\xa4\x99\x07\xc8\x41\xda\xd7\x93\xb5\xc4\x75\x56\x3a\x39\x26\x93\x6a\x49\xca\xcb\x8e\x2e\x9b\x10\xbb\x55\x19\x5d\x9b\x28\x07\x2e\xc8\xc8\xb3\xd3\x95\xe0\x76\x3e\xc6\xe6\x12\x5e\x8f\xdb\xb9\x0d\xd9\x60\x53\x3f\xd2\xcf\x24\xbe\x6d\x91\xaa\x76\x92\xd1\xd2\x29\x12\xb0\x71\x17\x72\x46\xd7\xd1\xf8\xfd\x54\x1e\xf4\x77\xdd\xd9\xd2\x75\x01\xc9\x56\xc0\xab\x02\xb6\xaa\x42\x18\x45\x44\x28\x4c\x19\x9a\xc2\xc1\x66\xd1\x02\x01\x60\x07\x01\x1f\xf6\x1f\x51\x4a\x19\x20\x07\x2c\x5b\xda\x87\xf2\x3c\xd6\x10\x5a\x2f\xcf\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\x83\x9f\x97\xca\xaa\x95\x16\x96\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xc6\x89\x26\x0b\x45\x1e\x6e\x2f\xb6\x92\xef\x9a\x9d\x65\xad\x18\xe1\xa1\x74\xd5\x8c\x88\xd0\xe5\xd3\x98\x44\xab\x50\x4c\xbb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x32\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\x76\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x8d\x93\x66\x87\xb2\x24\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\x47\xa6\x42\xfc\x40\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x11\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\x06\x37\xe7\x0d\x6b\x7d\x51\x75\x21\x7d\x59\xe5\x6c\x12\xef\xcd\xda\x35\x48\x52\x90\x9e\xb8\x17\xa8\x48\x76\xa6\xdb\xc1\x20\x19\xa7\xff\x4d\x39\x92\x60\x1f\xd0\x7a\x9b\x54\x86\x52\xda\xf1\x0a\x60\xde\xf5\x32\xf1\x8a\x65\x58\x13\xf4\x28\x1c\x90\x4d\x03\x09\x81\x7e\xea\x31\xc6\x07\x21\xf0\x0f\x37\x05\x73\x6d\x6c\xc1\xce\xc0\x90\x8a\xd9\x74\x41\x43\xfa\xd1\x50\xb4\x07\xcb\x00\xf8\x0f\x57\x90\xd1\xc5\x06\xdb\xdc\xf5\x70\xba\x21\xb5\xad\x07\xa0\x54\x8c\xcf\x99\xbf\x2d\x16\x35\xce\xb0\xb5\x3b\x80\x12\xe5\x2a\x25\x34\x15\xd6\x3b\x1a\xb1\x20\x60\x45\x1a\xb5\x47\x9f\x11\x57\x9c\x04\x2a\xde\x32\x00\xb6\x86\x24\x1d\x2f\xfc\x94\x76\xa0\x9a\x22\xaf\xe6\xe5\xf2\x22\xb5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\xa0\x33\xad\xab\x38\x04\xc7\x6a\xa5\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xcd\xaa\xfe\x39\x23\xd1\x26\x10\x32\x37\x58\xe0\x94\x28\x22\x96\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x2a\x48\x18\x3f\x8b\xb5\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x35\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x6d\xe7\xf4\x3a\x50\x28\xf7\x35\x50\x91\x52\xb8\xd0\x9e\x60\xa0\xac\x1e\x65\x1b\xf8\xc9\x2a\x5e\xba\x13\xde\xed\x32\x1c\x5c\x0a\x6d\xe5\x50\x95\x72\x27\x80\x4a\x40\xa5\x32\x38\x20\xcd\x00\x26\x20\xb4\x34\x45\x48\x06\x6e\x3f\x0b\x6f\x57\x18\x74\xad\x64\x55\x2d\x2e\x55\x59\xae\x15\x3c\x6e\x57\xe0\x0e\xbd\x44\xb3\x6b\x89\x66\x15\x29\x97\xa2\x6b\x35\x75\x12\x51\xc1\x99\xb1\x45\x9f\x2d\x40\x40\x79\x82\x90\x7b\x64\xaf\x48\x5b\x39\x16\xae\x7e\xca\xfc\xbf\xca\x1c\xdc\x11\x75\x48\xaa\x4d\x49\x95\x47\x81\x0b\x0a\x3c\x50\x49\x28\x0d\xd8\xb8\x1a\x18\xad\x09\x83\x34\x56\xfe\xf3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x07\xf0\x16\xc0\x20\xc8\x7c\x92\x52\x85\x70\x30\xc3\x92\x49\xf2\xc0\x9e\x67\xfd\x01\xcc\xb8\x31\xcf\xbe\x09\xa2\x67\xc5\xa1\xd9\xc0\xbe\x56\x34\xb2\x6d\x2a\x7d\x10\xd3\xfc\xb2\xc9\xf4\x81\xc6\x13\x6a\x98\x8d\x67\xae\xcf\xa6\x47\xcd\xd6\x06\x0b\x1a\x0a\xc8\xae\x54\xaa\xca\xdd\x62\x0d\x3d\x2b\x32\xe9\x8b\x8d\xe8\x94\x4a\x5f\xbc\xbe\x8b\x5c\xfa\xb6\x32\x65\xcb\x72\x2b\xdd\x27\x2d\xf6\x6f\x97\xb3\xab\xb8\x0b\x9c\x0f\x25\xa5\x9b\x56\x49\x69\xdf\x50\xcd\x8a\x84\x80\xcd\xc3\xcb\xd7\x51\x07\x8b\xfc\xac\x90\x8a\x82\x74\xcb\x32\x26\x0c\xa9\x72\x7e\xc6\x15\xe4\xd4\x44\x50\xc2\xbd\x96\xe7\x39\x62\xcd\x12\xc8\x72\x9e\xb8\x6d\x8a\xc6\x4e\xd1\xcf\x82\xf3\xe7\x66\x61\x2d\x5a\x3f\xf9\x20\x37\xa3\x2c\xdb\x62\xec\x55\x11\xb3\x70\xf1\xb5\x05\x27\x69\xc1\x63\x93\x84\xe3\x86\x53\xd9\x3c\xf4\x5a\x02\xc5\xca\x73\x61\x2f\xdd\x1d\xaa\x76\x35\xee\xdc\x39\xdf\xc4\xcb\xc8\x96\x1b\xbb\x80\x69\xa7\xc6\x57\x3c\xb5\x9b\x14\x99\x05\x50\xd1\x9d\x41\xa1\x56\xd1\x09\x74\xe3\x07\xe0\xdd\xb5\x43\xc7\x26\xd2\xc5\x03\x74\x57\xb6\xa4\x34\x61\x5b\xbc\xff\x05\x26\xbd\x6e\x61\xe0\xc0\xdb\x28\x6c\xb4\x2f\x0d\xed\x06\x50\x11\xd8\x06\x49\x56\xf8\xb0\x17\xed\x72\x16\x13\xc1\x08\x56\xf3\xd7\xcb\xb1\x38\xdd\xd6\x38\x1d\x8c\xef\x65\xf3\x2d\x4e\x77\x52\x15\x3e\x1c\x6e\xb9\x42\xfa\xca\x71\xea\xd7\xbb\xd8\x89\x6c\xe8\x81\xaf\x11\x5c\x53\x1c\x1b\x8c\x86\x01\x04\xcd\x3a\x54\xba\x55\x1a\x46\xb3\x32\xf7\x32\x09\x29\x0d\x56\x9f\x5a\x2a\x8a\x3e\xec\x61\x65\xe5\x15\x4b\xf2\x45\x64\x7e\xbc\x7c\x32\xc2\xb2\x1a\xce\x79\x90\x9f\x00\x85\xb4\x15\xa6\xcc\x72\xaf\x65\x29\x09\x5a\xa2\x4c\x71\x53\x16\xc2\xde\xe7\xb7\x7c\xf1\xe9\x2d\x7d\xb2\x43\x9f\xec\xd0\xb0\x47\x7d\xb2\x03\x42\xfb\x96\xec\xb0\x4a\x01\x5d\x66\xfe\xf4\x1e\x39\xa8\xb5\x59\x2a\x70\x63\xf6\x77\x85\x16\xb9\x79\x40\xbf\xb3\x20\x86\xd1\x50\xf6\x17\xfb\x43\x63\x40\x54\xed\xb3\xea\x6c\x43\x6b\x26\x5b\x54\x9d\x02\x58\xc4\x89\x45\xa1\xb3\xe1\xca\x65\xeb\xd3\x32\x43\xe9\x88\x7d\xcf\x9f\xc9\x13\x11\x07\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xe8\x18\x38\x08\x25\x40\x73\x13\x05\x81\xd1\x15\x4e\x49\x6c\xea\x1d\x06\x41\x8d\xd6\x5c\x6b\x1d\xad\x4d\x60\xab\x80\x1b\x6a\xb6\xc1\x45\x4d\x8c\x98\x09\x34\x34\xc1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x37\xf0\xef\x8e\xd0\xbd\xbe\x9f\xa8\x2c\x8f\x37\xc0\x5e\x6b\x1b\xdb\x88\xcd\x04\xcf\x33\x6f\x41\xe3\x13\x53\xf8\xd6\xc4\x3e\xd5\xdd\xc0\x30\x18\xe7\x03\x8e\x70\xac\x35\xf1\xe5\x84\xf3\x26\x31\xa8\x1b\x01\x18\x85\x04\xa4\x8f\xa1\x0f\xac\xb3\x81\xee\xc6\x7b\x1b\xc0\xb6\x2c\x83\x61\x7f\x21\xd7\xf2\x19\x91\x60\x13\xf2\x36\xf7\x52\x16\x79\x19\xa9\xa0\x71\x9c\xcb\x2c\xa2\xde\x6b\xe1\x2c\xfb\xcd\x20\x08\x45\xe7\x36\xe2\xcb\xa4\xa8\xda\x7b\xe2\xc5\x6c\xa5\x9d\x63\x67\xdb\xf8\xc5\x4d\x2e\x32\x0e\x92\x58\xb2\x70\xa0\x0d\x16\xe7\x2d\xe3\x59\x6e\xa2\xda\x68\x18\xe4\xd4\x48\xd9\x54\xaa\x4b\xac\xa2\xb9\xe6\xdc\x05\xde\xd9\x8e\xa2\xfd\x0a\xae\xfc\xb2\xf6\xd3\x86\x19\x9c\x86\xbd\xb7\x38\x14\x3a\xd8\xd3\xcd\xbd\xef\x82\xeb\x9d\x24\x91\xea\xfe\x8c\xd3\xcd\x96\xb3\x0e\xac\xa2\xee\x13\xfb\x44\x4f\x74\x15\x15\xad\x1a\x7f\x37\xda\x2a\xd7\xdb\xda\x79\x1c\xe1\x16\x00\x32\x67\x16\xae\xab\x78\xd1\xd6\x67\x6d\x71\xfe\x0b\xba\x59\x0e\x90\xc5\xc8\x7f\xd2\xe2\x88\xb7\xb7\xa6\x38\xd3\x4a\x84\xe2\xfa\x96\x14\x33\x23\xc7\x9a\x28\x59\x84\x51\x2e\xa8\x3b\xfb\x95\x8c\xf0\x76\xea\x00\xfb\xe4\x71\x58\x4f\x29\xc2\x41\xa9\x39\xe3\xee\xc7\x91\xca\xb1\x0f\x4b\x04\x9a\x70\x25\xd0\x4d\xf6\xbb\x73\xab\x0b\x27\xde\x35\xec\xe9\x4a\xc2\xde\x62\x97\x71\x13\xba\x61\xa7\x93\x46\xd9\x2c\x80\x46\x6c\xb6\x11\x77\xa9\x7c\xd0\xf8\x65\xb7\xea\x0d\x8d\x9f\x3a\xd9\x67\x93\x6f\x97\x40\x37\x6d\x1c\x99\x5d\x8a\x72\xb7\x61\xb0\x56\x7a\x0a\x41\x2b\xad\xfd\x0e\xb0\x67\x29\xb8\xe9\xb1\x95\xa6\xfe\xcb\xff\x65\x2a\x65\x99\xa5\xf9\x2f\xc4\xc5\x88\x99\xdf\x0f\x7c\x95\x0a\xfd\x42\x01\xff\x8a\x53\x52\x00\x64\x8a\x32\x94\x1e\x00\x8a\x58\x28\x34\x03\xf5\xeb\x41\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xe8\x01\xcf\xcc\x52\xcc\xf0\x0c\x80\x85\x0f\x20\x2e\x0e\xc4\xd5\x42\x15\x31\x24\x6d\xaa\x1d\x02\xb7\xd2\xcc\xd2\x66\xdb\x16\x55\x7f\xa1\x4f\x23\xca\x5a\x5c\xd3\x22\xb8\xa2\x99\xfa\x6f\x6d\xff\x9b\x49\xec\xf7\x83\xbb\x1f\xc6\xb7\xc3\xbb\xeb\x87\xdb\xd3\x92\xd8\x7e\x7a\xf1\x70\x77\x3f\xbc\x6d\x7c\x56\x64\xaa\xfe\xf5\x61\xf8\xd0\xf2\xc8\x35\x70\x31\xf8\x6e\x58\x2a\xa1\xfd\xd7\x87\xc1\xc5\xf9\xfd\xcf\xe3\xeb\x8f\xe3\xbb\xe1\xed\x8f\xe7\xa7\xc3\xf1\xdd\xcd\xf0\xf4\xfc\xe3\xf9\xe9\x40\x7f\x19\xbe\x7b\x73\xf1\xf0\xe9\xfc\x6a\xec\x82\x8e\xc3\x47\x3f\x5d\xdf\xfe\xf0\xf1\xe2\xfa\xa7\x71\xd0\xe5\xf5\xd5\xc7\xf3\x4f\x4d\xb3\x18\xdc\xdd\x9d\x7f\xba\xba\x1c\x5e\x2d\x2f\xd5\xdd\xbc\x1a\xad\x55\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xae\x8b\x1b\x43\x8f\x87\x07\xee\x2f\x53\x58\xfb\x50\xb3\x40\xe7\x15\x2b\xb8\xc7\x88\x79\xb7\xa5\xbf\x54\x15\x9e\x49\x97\x78\x5c\x1a\xed\x09\x1a\xc0\x59\x01\x85\xa1\xd4\x29\xe4\x35\xf8\x91\x3a\x47\x37\xd0\x61\x42\x53\x0a\x3e\x6f\x74\x88\xaa\x1b\x5e\x6e\xd0\xce\x09\x86\x60\xbd\x76\xf1\xb2\xd3\x20\xab\x39\xcd\x40\x29\x27\xc8\x71\x68\x62\xcc\x09\x06\x79\x76\xc1\x70\x4a\xa3\x6a\x02\x06\x80\xaf\xa2\x02\x68\xa4\xda\x62\x89\xc0\xca\x2d\xcf\x09\xfa\xe1\x2f\xc5\xa0\xc0\x83\x61\x35\xef\xbc\x56\x4f\xcf\x3e\x10\xb9\x59\xd5\x55\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\xeb\x76\x83\xbb\x29\x67\x01\xd8\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd0\x1d\x00\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xc5\xf7\x09\x99\xe3\x27\xca\x5d\xf1\x0a\x53\xe3\x03\xd6\xd1\x8a\x56\xe8\x10\xb5\x1e\x94\x13\x34\x88\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xb0\x3c\xec\x10\x1f\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xbb\x87\x72\xa9\xb3\xc3\xf2\xdd\xbb\xc5\xf5\xaf\x57\x70\xec\x48\x79\xbc\x91\x30\x70\x8f\xe5\xa3\x63\xcd\xab\x04\x02\x07\xaa\xb3\x5d\x8f\x16\x5d\xa7\x6b\xa7\x7e\x65\xc7\x70\xd0\x36\xeb\xb3\x15\x13\x7a\x45\x97\x6e\xc6\x49\xa5\x70\x57\xe7\xfe\x4a\x85\xbf\x1a\x3b\xdb\xa9\xb7\xa7\x59\x1a\x83\x23\x39\xf6\xf4\xbf\xc6\x3c\x6e\xe0\xd3\x6b\xff\xe5\x52\x91\x6d\x1c\xac\xdb\xba\x3e\xa0\x5a\x8a\xae\xf5\x03\x2d\xa5\xc3\x1d\x81\x3b\x75\x17\x06\xa1\xec\x02\x8d\xc0\xdd\x87\x29\xb3\xc5\x78\x88\xf7\x47\xb9\xf2\xd3\xfa\x1c\xfb\x02\x71\x78\xc2\x9f\x4a\xca\x65\x4a\xa4\xc4\x2d\x70\x25\x81\x49\x6c\x1b\xc6\xe0\x4f\xa8\xfd\xb0\x23\x3d\xb9\x33\x79\xaf\xbf\x5a\x66\xf4\xb9\x0d\x35\x63\x37\x51\x2d\xb0\xc6\x2e\xce\x16\x5d\x9b\x6c\x3b\xcd\x5f\x0e\x8a\x50\x1a\x2e\x82\x08\xa3\x36\xf7\x4f\x47\xb3\x5a\x75\xc1\x1a\x6b\x2c\x85\x2e\xbc\xf5\x23\x70\x82\xd6\x37\xc6\xc3\xb6\x7e\x15\x5c\x5e\x9f\x35\xa8\xae\xe4\xef\x0c\xeb\x4f\x47\x3c\x4d\x8d\x5c\x50\xb2\xa5\x1e\x20\x6c\x92\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\x71\x30\x62\xcf\xc1\x86\x94\xc2\x80\x07\x61\x4b\x80\x25\xfa\x59\x1f\x37\xfa\x54\x0a\xae\x06\x91\x91\x42\xa4\x6f\x40\x08\xc6\x21\x58\x14\x8f\x5a\x41\xe0\xc1\x7e\x6d\x41\xea\x1b\x54\x0a\xac\xac\x6f\x5b\xbd\x40\x3f\xb7\xa0\x4c\xdf\x16\x9a\x72\xd7\x21\x04\x95\x02\x9b\x46\xb0\x83\x42\x81\xaf\x0a\xee\xed\x93\x35\x4d\x6e\x6f\x3a\xb1\x08\x15\x7a\xba\x6e\xb5\x7f\xef\x66\xf4\x7b\xe3\x77\xc8\x5b\x20\x4d\x82\xd6\x3c\xbe\x37\x3a\xd4\x32\xab\x4b\xb5\xb7\x81\x18\x12\x1d\x1a\xcc\xc0\xaf\x20\xce\x72\x70\x73\xfe\xd5\x01\xfa\x2a\xcc\x35\xfb\x6a\xa3\x03\x68\xc7\x6d\x8b\x05\x82\x36\x55\x4a\x38\x28\x1f\x3b\xd8\xab\xca\x49\xb4\x7b\x66\x0f\x22\x6a\x3b\x87\xfa\xcb\xd2\x37\xe0\x9c\x86\xe2\x77\xc6\x7f\xeb\xc3\x9d\xad\x0b\xc8\xc8\xb8\x54\x36\xac\x5d\x3c\x62\x93\x45\xd5\xc9\x73\xe0\xbd\x3c\x9d\x4f\xe9\xd6\x05\xdd\x74\x7b\xf5\xe4\xe4\x1d\x87\xe1\x2e\xbf\x0f\x56\xa4\x3b\x0f\x4c\xc4\x35\x9f\x06\x5c\xac\x2d\x4a\xa1\x8f\x5f\x6f\x9a\x55\xc9\x5e\xe6\x16\xb3\x71\x53\x56\xc9\x3f\xef\x8d\xdc\x3a\x04\x7d\x0f\x9a\x56\xc4\xc6\xfb\xb7\x08\xd7\x3d\x95\xbd\x2c\x95\xed\x22\xdf\xa1\x3c\xb8\xf5\x2f\xd0\x53\x23\xc7\x05\xcd\x38\x83\xab\x56\x26\x3c\x83\x2f\x55\xfd\x5b\x5d\x2e\x77\x4d\x9f\x6f\xb0\x26\xab\x9d\xbe\x77\x26\x70\xc0\xb8\x5d\xeb\x63\xad\x0e\x75\xa0\x6c\x09\x22\x4e\x4d\x6e\xa3\xa2\x29\x39\x40\x9c\x25\x8b\x20\xd8\xc1\x9e\x57\x20\x37\x13\xa3\x34\x27\x54\xb8\x4e\x2c\xc2\xe0\x5a\xc9\xf0\x6b\x4a\xe3\x6d\x34\xb2\x45\xa4\xc9\xd5\xe0\x72\x78\x36\x1e\x5e\xdd\x9f\xdf\xff\xdc\x80\x1e\x59\x7e\xec\x00\x24\x83\x17\xee\x7e\xbe\xbb\x1f\x5e\x8e\x3f\x0d\xaf\x86\xb7\x83\xfb\x15\xe0\x92\xcb\x3a\x6b\x03\x2e\xcc\x65\x93\xfa\xb6\x0e\x78\xa1\x33\xf3\x36\xf4\x5e\x87\x98\x0c\x3a\xa1\xa4\x05\x66\xd2\x24\xfe\xb3\x98\x08\x14\x93\x27\x92\xf0\xac\x30\xab\x36\x2e\x58\x80\x3f\xd9\xd0\xfe\x32\x0c\x4a\x68\xb3\xba\xc6\x27\xc8\x54\x7a\x0b\x8a\xdd\xfa\x06\x41\xe4\xc3\x82\xb0\xaf\x14\x22\x9f\xb3\x84\x46\x54\x05\x89\x81\x5c\x58\xf7\x8a\x71\x1f\x42\x74\xea\x0a\xe2\xda\x59\x34\xca\xce\x75\xfe\xd0\x93\x5e\xd7\xf6\xfd\x89\xf2\x78\x68\x2b\xcb\x07\xed\x40\xb1\x6f\x71\x1a\xd7\xe0\xda\x36\x18\xdd\x4b\x98\x07\xea\x19\x3a\x36\xb9\xaf\x05\xca\xad\x79\x90\xab\x6f\xc3\x65\x71\x32\xa5\x73\xbd\x3c\x50\xa6\x1b\xa5\xbe\x71\xb8\x4b\xa9\xac\xe6\x0e\x70\x37\x6c\xec\xfa\x9a\x01\x0b\xb5\x6a\x31\xcc\xc4\x9c\x62\x24\x48\xca\x95\x56\xc0\x4c\x44\xc0\x81\x16\xaa\x28\x4e\xe8\xaf\x80\x50\x25\xc8\x51\x10\x41\xe1\x70\xbd\x0a\xf7\x81\x45\x8f\x38\x1a\xb1\xb3\xe1\xcd\xed\xf0\x54\x33\xa4\x23\xf4\x20\x01\x7c\xaa\x34\xf5\x33\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xb6\x60\x30\x22\x04\x17\xdd\xf9\x83\xef\x6f\x08\xdf\x35\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb5\x26\x72\x90\x33\xb0\xf3\x94\xac\x5b\xfc\x5c\x5a\x91\x10\x7c\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x7c\x67\xf7\xf9\x95\xfa\xbc\x81\x6f\x97\xcd\xf3\x1e\x42\xec\xa4\x2a\xb0\x40\x0d\x5c\xa8\xaf\x79\x53\x99\x67\xab\xa8\x28\xde\x02\xa8\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x38\x6c\x68\x69\xab\x07\xcd\xac\x7b\x54\xf5\x9a\xe1\x94\xe7\x0c\x94\x06\x08\x63\x6d\x18\x8c\xcc\x08\x53\x2b\x06\xf3\x56\x30\x2c\x95\xa1\xee\x2f\x12\x4b\xc3\x40\xdb\xc0\x58\x9a\xfc\x49\x50\x78\x79\xbd\x6b\xd9\x05\xe5\x95\x9c\x4a\xfa\x50\xf9\xfb\xb9\x59\xcb\xc6\xf2\x71\xeb\xee\xee\xb1\x7c\x5c\xdd\x55\x4c\xa2\xc7\x75\x2f\x9b\x6a\x66\x66\x62\xeb\x56\xd7\x8c\x7d\x0b\xfd\xd4\x16\x66\x81\x72\xe5\xd1\x23\xfa\xfe\xfe\xf2\x02\x4d\xa9\x96\x7b\xf5\xb5\x72\x85\xb5\x8c\xfd\x20\x12\x67\x17\xb6\xb6\xd5\x5c\x24\xfe\xee\x85\x8d\x77\xa2\x54\x20\x25\xe8\x1b\x0d\xcf\x88\x33\xf6\x0a\x8b\xb5\x57\x29\xcc\x22\x30\x8b\x79\x6a\xe6\x71\x2c\xf3\xe9\x94\x7e\x3e\x52\x58\x7c\xd3\xb2\x1e\x26\xaa\x62\xfc\x77\x3e\x19\xeb\x11\x6d\x79\x11\x37\x35\x87\x6c\x39\x65\xbf\x6c\x76\x66\x67\xe6\xdd\xff\xcb\x27\x90\xeb\x9e\x09\x0e\xf8\x7f\xe0\x9d\xb3\x91\x0a\xf6\x15\x47\x49\x47\xc8\x25\x50\x95\x20\x4e\x22\x2e\x04\xb1\x29\xf2\xa6\xb2\x68\x86\x85\xa2\x60\xad\x75\x10\x29\x25\x6c\xfc\x62\x8b\xc2\x82\xdf\x73\x5c\xe0\x50\x4f\x08\x01\x07\x4f\x46\x93\xf5\x94\xde\xd3\x92\x6f\xb2\x72\x02\x6d\xe4\xa9\x45\xcd\x04\x83\xcc\x4a\x11\x6b\xf8\x44\x98\xda\x89\x7e\x02\x4d\x34\x24\xed\x77\xf3\x32\x98\x02\x9f\xe7\x67\xc5\xe5\xe6\x42\x7a\xc3\xa8\x26\x25\x30\xdc\xf3\x36\x51\xca\xba\xd4\xdb\x1c\xfd\x4f\x9d\x7d\xc7\xf0\x6a\x7d\x5d\x56\x84\xc6\xdb\xd5\x2e\x0a\x7d\x17\x61\xad\x0e\xd8\x7f\x43\x18\x1f\x49\x8c\x15\x23\x80\x8f\xb0\xca\x69\x75\xcf\x4d\x9f\x9a\xb6\x2a\x5d\xae\xdc\xf2\x0d\x30\x6b\x4a\xcd\x7c\x22\x90\xd2\xb9\x8b\x40\xf4\x75\x52\xf7\x61\x20\x0f\x22\x81\x10\xea\xa5\x56\x2c\x53\x64\x5c\x73\x3e\x2f\xd9\xe1\x0e\x32\xba\x19\x8c\x16\x1a\x49\x26\x48\xa4\xaf\xb2\x13\x74\x93\x10\x2d\x79\xe5\x5a\xfa\xca\x93\xc4\xe1\x7b\x2d\x97\x0e\xd7\xc2\xa4\x7b\xf1\x79\x05\xba\xc7\x92\x89\x39\x7c\xbb\xe5\x33\x0b\xd6\x60\xf7\x80\x0b\xc1\xfa\x82\x09\x19\x0c\x89\x65\x2d\x12\x38\xfc\xc2\xc4\xcd\x82\x29\x09\x97\x2e\x32\xfa\xab\x66\xbf\x82\xc8\x39\x6f\x4d\x72\x0c\x67\xfb\x32\x73\x70\x4b\xf9\x82\x93\x70\xf7\x61\x5b\x5c\x75\x07\xb9\xa6\x72\x07\x96\x44\x9c\x65\x53\xf4\xb5\x1f\x7c\xf4\x87\x45\x5b\xb5\x77\xab\x1d\x1a\xdc\x92\x85\xa9\x2d\x44\x3e\x2b\x5c\x17\x85\x32\xb3\x30\xbe\x57\xff\x79\x61\x40\x2e\x52\x02\xa8\x92\x45\xcd\x39\xa4\xef\xda\xb6\x2d\xd6\xf3\x1c\xe7\x62\x2d\x48\x8a\x02\xb3\x7c\x1d\xce\x6d\x93\x51\x8a\x61\xe9\x45\x68\x66\x97\xb6\x94\x04\x88\xd1\x36\xd4\x48\x96\x70\xe0\x2c\xd9\x98\x65\x6c\x54\xf1\xda\x99\xf2\xb6\x6e\x35\x90\x92\x0b\x51\xe6\xa5\xbc\x6b\x25\x0a\x2c\x4d\xa0\x47\x16\x5b\x1f\x59\xcc\xd6\x15\xf1\xb4\x07\x38\x80\x4a\x40\xe2\x7f\xe1\x40\xab\x0a\x0e\xd6\xe8\xbd\x2a\xf3\xa9\xb4\x3b\x9d\xd2\x9c\x4a\x5f\x68\x5e\x72\xb6\xa5\x07\x4e\x4f\x66\x31\x86\xc4\xd1\x6d\xa2\x70\x4a\xf3\x37\xde\x03\x68\x93\xc4\xc8\xa0\x17\x18\xdc\x63\xbb\x76\xde\x73\x92\x61\x41\x98\x1a\xb1\x5b\x3d\x0a\xf3\x45\x11\x89\xe1\xe2\x70\x1c\x16\x3d\x54\xac\x9d\x22\x6c\xbf\x82\x45\x6f\x0b\x84\x93\x63\xf3\x12\xa8\xa6\x2f\x98\x64\xff\x9d\x79\xc7\x60\x1e\x58\xcc\x1f\x3d\x55\x3a\x2d\xd4\x78\x2d\x40\x46\x73\x0a\x90\x03\x31\x91\xf6\x42\xa2\xca\x62\x4a\x78\xf1\x3b\x27\x0e\x7d\x19\x3e\xf3\xfc\xab\x89\x61\x3b\x43\x01\x73\x06\x3a\x39\x62\x41\x1f\x4b\xc0\x3a\x8d\xb2\xbe\xa1\x2a\x01\xfb\x4c\x63\xef\xf8\x82\x7f\x9a\x1d\xe2\x82\xce\x28\x0b\x4a\x26\xd9\xe9\xa5\x38\x03\xf3\xae\x39\x83\x7c\xea\xef\xb4\x7b\x9b\x65\x70\x04\x23\xfe\x9f\xff\xfe\xdb\x11\x6d\xf3\x7e\xc8\xb1\x5d\x81\x7d\xd8\xc9\xf5\xb6\x25\xdc\xf9\x00\x45\xa4\x05\x9d\x22\xd0\x69\x65\x29\x73\xa2\xf8\xd5\x5e\x6e\x9a\x68\xb8\x9a\x1b\x77\x6f\x99\xdc\xc1\x37\x22\xf2\xe5\x55\x04\x02\x16\x57\x04\x04\x14\x5e\xdf\x20\xe8\xd6\xd5\x88\x30\xc1\x92\xba\xfd\xca\x85\x52\x61\x50\x01\x98\xdf\x36\xc1\x89\x73\x2c\x5f\x2e\x02\xa5\xb1\xb6\x91\x31\x1a\x87\x77\xe4\xaa\x58\x14\x33\x48\x93\xd4\xa8\x77\x25\x97\x44\x98\x03\xed\x51\x9f\x2c\xf1\x84\x50\x85\x10\x8a\xb8\xc2\xa5\x46\x52\x4c\xd7\x0a\x9b\xd7\xef\x37\x03\x29\x96\x6c\xea\x78\x46\xc4\x38\xce\x4b\x31\xd2\xab\xda\xbe\xd1\x1f\x9d\xe5\x6a\xb1\xba\x7d\x99\xe0\x7a\x6d\x97\x65\xe0\x95\xfa\xfd\x96\x66\x57\x0b\x86\x41\x24\x4b\x59\x38\x6c\x81\x86\x24\x15\x68\x48\x1b\x5a\x59\xb2\x04\xc0\x45\xc3\x14\x20\xc7\x15\x0a\x83\xbd\x89\x0c\x80\x35\x8c\x1c\x4d\xf2\xc2\x72\xe2\x4b\x02\xc4\x47\x23\xf6\xd1\xd4\xd4\x00\x65\xc6\x0c\x20\x82\xbc\x16\xf2\x39\xe3\x92\x94\x12\xad\x1a\x60\xfe\x6d\xa2\xa4\x1d\x46\xb3\x4c\x5a\x7c\xb4\xbd\x48\xfa\xe6\x20\x9f\xf5\x0d\xaf\x4f\xb9\x99\x02\xb7\x92\x7a\x22\x9a\x51\x4d\x3b\xe3\xc6\x93\xf6\x72\xa5\x66\x8b\xd0\x25\x80\x7b\x52\xc9\xe2\x00\xf9\xe9\x55\x08\x22\x21\x4f\x04\xac\xc6\x30\xc6\xb0\x98\x43\xd9\x7c\xd5\xc2\x4e\x56\x1d\xa0\x22\xcb\x11\xd8\x02\x8a\xab\x23\x28\xe7\x82\x35\xd1\x62\x39\xcb\x65\xeb\x84\xac\xa6\xf8\x8b\x35\xa4\xd0\x41\x58\xd4\x62\x41\x14\x22\x9f\x15\xb1\x65\x2f\xef\x5d\xca\x5c\x3d\xca\x1e\x35\x67\xfd\xb4\x8b\x48\x2f\x5e\x80\x78\xe0\x12\xa5\x5d\x4e\x60\xec\xee\x7d\x9b\x23\x37\xc7\x2c\xb6\x89\x9f\x56\x96\xd6\x32\x05\xcc\xce\xd8\x96\x7c\x48\xbc\x4d\x5f\x0c\xd0\xc0\x4d\x9b\x06\xb6\x1c\x2e\x32\xa7\x17\x69\xc9\x1c\xa2\x08\xb8\xd0\x02\x6a\xce\x14\x4d\x34\x71\xd8\x31\x68\xad\x39\x67\x1e\x8f\x0f\x02\xb8\xdb\x20\xdf\xa8\x94\x94\xcd\xc6\x76\x25\x5d\x0e\x63\xb7\x8b\xa1\x4c\x53\x97\xa6\x29\xf3\xe3\x77\xae\xa1\xe5\xb6\x63\x43\xd6\x00\xc7\xe5\xb2\x27\x41\xb0\x66\xdc\x4d\xc6\xe2\xa8\xb9\xa4\xcb\x31\x8d\xcd\x52\x50\x53\x5d\x19\x26\xba\x8e\x79\x19\xc4\xba\x3a\x5c\x41\x71\x85\x48\x9b\x11\x69\xf2\x9c\x20\x20\x5d\xb5\xa4\x7c\xca\xd6\x54\xcf\x73\xe6\x45\x34\x5b\xdb\xc9\x27\xb4\x57\xb2\x46\xb1\xeb\xce\x46\xdd\xe3\x24\x99\xe0\xe8\xd1\x2b\x1b\x5e\xe5\xe6\xc2\x61\xe3\x6b\x01\x15\x8a\x7f\x19\xe2\xd2\x03\x8d\x40\xba\x09\x9d\x62\x06\xb0\xc6\x0e\xbb\xe8\xdc\xac\x9a\x45\x02\x33\x08\x45\x66\xf4\x26\x84\x3f\x26\x59\xc2\x17\x69\xcb\x7d\x56\xcd\x94\xdb\x26\x20\xa5\x2d\x51\x6f\xa7\x57\x59\x85\xe9\xad\x7d\x99\xd5\xd2\x6e\x76\x00\x9f\xb4\x06\x97\xfc\x94\xf0\x09\x58\x0e\xad\x96\xed\x52\x49\x82\x8c\x86\xea\x79\x5e\x37\xc1\xa5\x7a\x22\xa9\xcc\x12\xbc\x58\xd6\x83\x49\xad\x78\xd9\x7d\x33\xa9\xf8\xab\x8d\x60\xdd\x83\x92\x1b\x3f\x7f\x09\xa0\xde\x0b\x27\x09\x98\x77\x0d\xff\xaa\x18\x93\x4c\x4e\xdb\x91\xf1\xc5\x2a\x3e\x62\x0a\xcf\xdc\xe6\x5a\xe1\x92\x3f\x33\x22\xe4\x9c\x66\xa5\xa2\x80\x5b\x47\x41\x5b\x8a\xb6\xff\x31\x31\xbf\x6b\xf0\x4e\x9e\x1d\x1a\x20\x0e\x4d\x1f\x32\xc3\x51\x61\xfc\x8b\x12\x2c\x25\x9d\x2e\x02\xfc\x0c\x1f\x50\x0a\x59\x4a\x65\x6d\x39\xa8\xc3\xd5\xc4\x68\xcc\xf8\x76\x93\x40\xbe\x7d\xf2\xdc\x43\xf9\xf8\xd1\x38\x04\x2a\xd3\xf7\x49\x1d\x2c\xc5\xdd\xd4\x16\x34\xa5\x15\x70\xd5\x64\xca\x6f\x96\xf0\xbd\x14\xe3\xa6\xdd\x8c\x50\x08\x93\x76\xd8\x56\x91\xf1\xb8\x16\x21\xe6\x8b\x2a\x65\x0c\xc2\xe6\x6b\xc5\xc9\x99\x3f\x35\x71\x7a\x4c\x0c\x80\x0e\x28\x3e\x3e\x40\x72\x2b\x2c\xa9\x2e\x74\x71\x46\x12\xb2\x93\xc0\xe2\x0d\x88\xa4\xea\xb5\x0f\xc8\x63\x29\x69\x14\x58\xfa\xab\x8d\x0b\x1b\xc4\x3b\xb7\x20\xd2\x34\x0f\xfd\x27\x33\x50\x1b\xf2\xdc\xb4\x8b\x60\xff\x82\x55\xee\xaa\xbb\x34\x41\xdb\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\xfb\x48\x6a\x6f\x1c\x19\x5c\x1b\xd7\x27\xd2\x25\x8a\x61\xe5\x01\xd8\x88\x03\xd5\xf9\x74\x37\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe2\xde\xd7\xf1\x7f\x4f\x34\xb1\xb3\xbc\x86\x1d\xad\x7e\xf3\x21\x5f\xef\xd4\xde\x11\x25\xdd\x95\x50\x43\x0b\xb4\x9b\xb3\x87\x5b\xb0\x1f\xc7\xd2\x08\xae\x5f\xbc\xdc\xb2\x35\x16\x80\x1d\x99\xcd\x88\xff\x0d\x09\x54\x66\x8e\xb1\xfd\xc2\x67\xbf\x97\x70\x9f\x70\x09\x2b\xcf\xac\xd1\xdb\x73\xbd\x2a\x69\x7f\xe9\xa2\xd7\xfa\x34\x5e\x1d\x55\x41\xdd\xbd\x3c\xb8\x9e\x3c\xe8\xb0\x24\xf7\xf0\xf2\x6f\x3b\x06\xfb\x79\xff\xec\x81\x70\x58\xbb\x12\x77\x27\x22\xbe\x23\x32\xd9\x0b\x49\xb1\xb6\x15\xaf\x25\x2f\x1e\x3a\x30\x9f\x02\x1a\x67\x7f\xb7\x68\x3f\x4e\xf2\xad\x75\x03\xbd\xdc\x05\xbb\x9a\x5e\x76\x42\x1f\x80\x6b\x89\x21\xfd\x37\xb7\x85\x32\xe0\xf0\x06\x21\x63\x35\xdf\xc3\x8a\x60\x3c\x3b\xbc\x4e\x61\x78\xb5\xe5\x7c\x89\xed\xb5\xb9\x5e\x9d\x37\xf7\x25\x49\x6d\xdd\xb1\xec\x42\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x3e\x26\xb6\xdb\x2d\xda\x80\x20\xe3\xb6\x6c\x97\x87\xac\xa9\xba\xd9\xf6\xd9\xea\x2e\x95\x6d\x9c\x09\x32\xa5\x9f\x37\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\xd4\x4b\x03\xf7\x0c\xd4\x57\x0b\xe2\xf6\xec\x4a\xdb\x9a\x4a\x23\x56\x24\x00\xda\xec\xbf\x47\xb2\x40\x5c\x94\x7e\xda\x14\xeb\x70\xf7\xb5\xdd\xcc\xbe\xce\x95\xca\xe4\xc9\xf1\xf1\x8c\xaa\x79\x3e\x39\x8a\x78\x6a\xc2\xcd\xb9\x98\x99\x3f\x8e\xa9\x94\x39\x91\xc7\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\xd0\x63\xea\x7e\xa7\xf2\x96\x13\x2c\xb7\x8b\xec\x71\x99\x5a\x2f\x9c\xb1\x1b\x74\xe3\x72\x24\xf5\x37\x52\xe1\x34\x0b\xa3\x47\x4d\x75\x34\xa9\x70\x51\x93\x01\xd2\xef\xf4\x34\xd1\x1c\x67\x19\x61\xed\x66\x07\x93\x4f\xb9\x05\xeb\x71\x19\x99\x76\x84\xe4\x73\x96\x60\x56\x46\x19\x80\x02\x43\x82\x44\x84\x29\x9b\x01\x5f\xd4\x4b\x06\x6a\x34\x48\x37\x86\xff\xaf\x97\x71\x07\x73\xa4\xb2\xa8\x1c\xe6\x86\x63\xab\x78\xba\xda\x8e\x38\x58\xba\x6a\xe5\xd4\x62\xed\x88\x5b\xb5\x65\xb9\x78\x77\xf5\xfa\xd9\xeb\x57\x6e\x11\x9c\x8d\xc9\x67\xcd\xe4\xe4\xa6\xb8\x54\x0f\x92\x48\x34\xf8\xe9\x0e\xc9\x05\x53\xf8\xf3\x09\xba\xa4\x0c\x04\xd8\xef\x79\x2e\x24\x3a\xc3\x8b\x43\x3e\x3d\x4c\x39\x53\x73\x74\x09\xff\x6b\x7f\x7a\x26\xe4\x11\xfd\x4c\xb0\xb0\xfc\xc1\x56\x5e\xf3\x45\xbc\x35\x09\x89\x9c\x49\x44\x9e\xf4\x09\xfd\xc3\x7f\xa2\xd4\xb4\x7c\x82\xbe\x3d\xfe\xc3\x7f\xa2\xdf\xc1\xff\xff\xff\xd1\xef\x5a\x34\xfd\xf5\x90\xad\xa0\x3e\xef\x6d\xd9\x9d\x7b\x50\x59\xa9\x0d\x4a\x96\x9f\x0a\x5e\xec\x54\x63\xcb\x8f\x34\x7a\xe4\xd3\xe9\x58\x13\x86\xc9\x57\x1b\x63\x51\x43\x45\xde\x10\x26\x94\xda\x02\xcb\xa6\x60\x5b\x51\x2a\xc5\x76\x6a\x80\x0d\x1c\xbb\x96\x79\x51\x60\x16\x82\x88\x4a\x45\x7b\xa9\x84\xaf\x48\xac\xb9\xea\x3a\xa7\xc3\x59\xf7\x5c\x8e\xb3\xb3\xe0\x84\x40\x20\x61\xd1\x70\x1f\xf8\x17\x46\xb1\x9a\x40\x1f\xbb\x90\x8d\xc7\xa1\x16\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\xd6\x3a\x5f\x1d\x2a\x79\xc7\xc5\x56\xfa\xd6\x23\xa9\xc5\x6c\x77\x2c\x0b\xe4\x4a\xd5\x86\xe5\xeb\x21\x11\x9a\x0b\x0f\xd7\x6b\xec\x22\xb6\x78\xe0\x6a\x2b\x26\x15\x26\xb8\xac\xdb\xa1\xd7\x53\x3f\xf3\x9f\xac\x1a\x26\x44\x9a\xb9\xb7\x8b\xb2\x68\x30\x5a\x2d\x22\x69\x96\xd8\x30\xe2\x06\x4c\xbf\x55\x1b\x7a\xe7\x61\x1c\xa0\x71\x08\x7b\x84\x94\x0f\xe6\x24\x5b\x9b\x27\xdf\xbc\x9f\xb9\x88\xc8\x29\xdf\x2e\xec\x35\xa1\xac\x16\x2f\xdf\xbd\xe2\x8e\x5f\xbd\x0b\x5b\x5b\xc9\xc1\xde\xf2\xb8\x50\x16\x8c\x5b\xc0\x16\x5b\x08\xf0\x36\xcb\xb3\x01\xdc\xb6\x5d\x40\x3a\xd6\x4a\x00\x6c\xc1\xb5\x8d\xe1\xb8\x60\x78\xae\x82\x44\xa5\x70\x84\xc0\x9a\x17\x2e\x89\x5d\x83\xa0\xa2\xad\xc7\x11\x14\x43\x29\x22\x95\x2a\x45\xc7\xb1\xa9\x08\x22\x36\x84\xe4\x34\x75\x89\x0e\x90\xc0\x10\x94\xa9\xe6\xba\x3d\x49\xc4\xe1\x14\x47\x94\xcd\x0e\x02\x34\x46\x40\x46\x08\xaf\x83\x26\x22\xbd\xc7\xf2\x71\xb7\x81\x86\x5b\xd7\x69\xa4\x71\x51\x2b\xcc\xe2\xa7\x18\xc7\x06\xad\x41\xd1\x29\x2c\x1f\xdb\x00\x84\x6a\xe8\x65\x4b\x46\xe7\x97\xc2\x61\x9e\x2d\x1b\x9f\xcb\xb4\x26\xa1\x3e\x05\xa5\x09\x5c\xe5\x60\x8b\x65\xe8\x12\xdb\xb0\x07\x1b\xa9\x82\x78\x2e\x19\xbf\x9c\x73\xa1\xc6\x1b\xc2\x9f\x56\xb3\xc5\x19\x39\x4c\x00\xb7\x84\x3f\x11\xf1\x44\xc9\x73\x19\x45\x74\x1d\x5a\x34\x46\xb3\x20\xaa\x0e\x60\x26\xd3\x8c\x43\x0a\xcd\x14\xa5\x98\x2d\x0c\xa3\xd4\xcc\x05\xcb\x47\xe9\xeb\x95\x22\x99\xe2\x24\x39\x40\x82\xe4\xd2\xd4\xf1\x95\x24\x99\x1e\xba\x8a\x0f\x31\x4a\xf8\x8c\x46\x38\x41\x93\x84\x47\x8f\x72\xc4\xb4\xa0\xc0\x66\x86\x49\x65\x82\x47\x44\xca\x40\xb2\x2a\x92\xb6\x6d\x2a\x1d\x14\x2b\x55\x44\xa4\x94\x51\xa9\x68\xe4\x44\xa6\x02\x7b\xc1\x94\xcc\x8e\x30\x98\x84\x21\x31\x11\x86\xab\x25\x3d\x62\x30\x28\x73\x66\x6b\x03\xc1\x75\x6d\xa1\xe5\x5c\x90\x78\xdb\x01\xda\x01\x52\x9e\xa3\x90\xb1\x2a\x1f\xc8\x15\x47\xea\xd4\x7e\x06\xc7\x78\x19\x09\xdc\x96\x4f\x94\x27\x48\x7f\xd2\x4a\xe8\x3d\x10\x53\xee\x43\xe0\x4b\x92\x8b\x8f\x0c\xdf\x33\xe0\x2e\x18\x72\x0b\x5c\xd7\x2a\x9a\xd6\xab\x08\x22\x0f\x94\xa3\xaa\x7a\xcd\x29\x8b\x92\x3c\xf6\x05\x09\xb5\x08\xf0\xa4\x89\xc4\x2d\x8f\x5e\x7b\x2d\x28\x1c\x20\x2c\xd1\x33\x49\x12\xfd\x5f\x13\x01\x7f\xe8\xeb\x03\x68\x96\x6c\x6a\x38\x40\x27\x8e\x4b\xb7\x51\xd4\xde\x81\x30\xde\x60\x35\x37\xa9\xed\x29\x57\xa6\x16\xa4\x01\x61\x74\xf6\x2d\x83\xda\x37\x49\xf8\x04\x4e\x3a\xe0\x33\xba\xd4\xd8\x20\xad\x2e\x8f\x22\x42\x62\x12\xa3\xaf\x83\x83\xeb\x61\x17\xbe\x69\x46\x0b\x2c\xad\xc8\x1e\x60\x33\x56\x0d\x6b\xad\x08\x8d\xe5\x72\x66\x47\xe8\xa6\x82\x3f\x12\x96\x29\xc7\x55\x34\xaa\x83\xda\x16\xbe\x0d\x9e\x63\x65\x12\x2f\xb7\x43\x6b\xe2\x39\x96\xfa\xdc\x01\x9e\x63\x65\x9e\x2d\xb1\xfb\x7c\xf6\xa2\x39\xc7\x7a\x52\x17\xbc\x7b\x22\x98\xc1\xc1\x32\x77\x67\x89\x04\xdd\x81\x5c\x34\x11\xe2\x7e\x61\x55\x56\x8a\xfe\xbd\x2d\x56\x65\x65\x30\xfb\x8c\x55\x59\x19\xea\xfe\x62\x55\x36\x0c\xb4\x03\x56\xa5\x71\xee\x8f\x35\x51\x77\x63\x0a\x90\xd8\x32\xc9\xa7\x77\x90\xea\xbd\x74\x8c\xa7\x26\x70\xc0\x5c\x63\xee\x8e\xb6\xd0\xcd\x30\x5a\x9b\x03\xd9\x16\x0e\x55\x71\x42\xac\x4b\x7b\xde\xfb\x46\xa5\xd1\xd0\xd6\x33\xbb\x1f\x84\xd6\x6e\xb0\x43\x46\x38\xb3\x39\xe5\x6d\x15\x55\xf6\x27\x7b\x76\x33\x18\x50\x80\xda\x2b\xb1\xfc\x4e\x40\x59\x97\x95\xe2\x04\x73\xfe\x6c\x0b\x04\x01\x19\x1a\xa2\x6c\x25\x41\xe8\x74\x6c\x95\xb6\xb6\x95\xa3\x4c\x91\x59\x55\xa7\x2d\x0e\x0d\x65\xea\x4f\x7f\x5c\xc9\x89\x0c\x92\xa0\x53\x0f\x83\x12\x01\xde\xd9\x61\x9f\x91\x18\x45\x73\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x14\x53\xa7\x48\xe5\xd2\xb8\x96\xa8\x1c\xb1\x12\xf4\xe6\x11\xfa\x08\x75\x4f\x71\x9a\x69\xfd\xcb\xcf\x8f\x6a\x4a\x1a\xe5\xdf\x7e\xfb\x27\x82\xbe\x45\x29\xc1\xac\xa4\xc3\x82\xda\xa4\xaf\x3e\x80\xaa\x53\x73\x32\x62\x8d\x5b\x81\x86\x9f\x4d\x29\x25\x17\xef\x77\xce\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd9\x29\x7c\xd9\x18\x00\xeb\x6e\xec\x7a\x1b\x0f\xe0\x1e\x39\x94\xa4\x04\x61\xd4\xe0\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\x1e\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x0e\x80\x12\xf2\x68\x6e\x1c\xab\x5a\x67\xc1\xb6\x2e\xc3\x13\x95\xb9\x56\x68\xa1\x2d\x57\x06\x42\x2a\x6c\xa0\x97\xe6\x14\xfa\xd1\xea\x37\x81\xaf\xc2\x2c\x39\xd4\x4d\x8b\x0a\xd1\x51\x2b\x3c\xbf\x23\x3a\x6a\x89\xaa\x7a\x74\x54\x8f\x8e\x5a\x5f\x97\x7d\x44\x47\xad\xec\x79\x37\x74\xd4\xa6\x2d\xdf\x00\x1d\xb5\xd4\xcc\x17\x83\x8e\x5a\x59\xd1\x2f\x06\x1d\xb5\x32\xaf\x1e\x1d\xf5\xcb\x43\x47\xdd\x12\xff\xb3\x99\x17\x1b\x7c\x25\x45\xd9\x62\x6d\x22\xfb\x4a\xa2\xf3\x6b\x4d\x60\xd1\x63\x39\xa8\xcd\x5f\x57\xdb\x63\x8e\x36\x33\xa1\xf5\x30\x47\x1b\x55\xf5\x76\x56\xb7\x2d\xc0\x13\x28\x06\xaf\x8c\x39\x5a\x9a\x40\x1f\x5f\xb9\x7e\x7c\x65\x23\xf1\xd9\xbe\xf5\xf0\x5c\xd0\x65\xf5\x42\xee\x88\x3a\x5a\xda\x9f\x4e\x91\x98\x20\xba\xef\x80\x12\x5f\x56\x9a\xbf\x2f\x1d\xf2\x95\xb2\x7c\xb8\x8a\xd2\xe2\x1f\x6b\x09\xcf\xa1\xc5\x19\x25\x3c\xf4\xff\xf7\x94\xbb\x41\x64\x70\x65\x79\xbd\x5f\xc5\xd0\x62\x07\x52\xed\x4c\xa1\x4e\x2b\xdd\x4d\xa2\xac\x4b\x9e\x5c\xd3\xc5\xec\x06\x71\x97\x91\xa8\xc5\xc6\x4c\x53\xba\xab\x66\x57\x5d\x64\x1e\x0b\x0b\x14\xf2\x5a\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x5a\x63\x9b\x6a\x23\xdc\xc6\x55\x9a\xe5\x9d\x03\x62\x82\x55\x9d\x6d\xf6\x59\x4a\x52\x2e\x56\x05\x56\x35\x7e\x69\x2b\xba\x6c\xf2\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xdd\x46\xba\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xce\xdb\xbd\xed\x36\x5b\xcc\xcc\x35\x1d\x42\x0e\x33\x78\xb9\xc1\xcd\xbe\x54\x72\x77\x03\x7d\x37\xc6\x74\xf8\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x4e\x15\x5f\xd9\x7a\xc7\x6b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\xeb\x07\x78\xb4\xa0\xa6\xd6\x97\x07\x22\x73\x24\x11\x87\xa1\x66\x50\x1a\x4c\x7d\xbd\x4a\x54\xe2\x34\xca\x2d\x88\x24\x17\xad\x51\xa6\x5d\x0c\xda\x91\xca\x71\x02\x9a\x44\x58\xa4\xb1\xba\xa9\x93\x45\x43\xda\x63\x37\x8f\x09\x65\xea\xcf\xff\xb1\xd6\x6e\x6a\xd5\xca\xae\x1b\x14\x96\xc2\x51\x44\xa4\xb1\xb1\xdb\x28\x64\x3c\xe1\x4f\x50\x53\x6a\x9b\x5d\xd5\x47\x59\xcf\x5b\x33\x78\x0f\x45\x1c\x17\xa4\x6e\xc4\x85\xb9\xe0\xf9\x6c\xee\x6c\x48\xfa\xcc\xe8\xa9\x35\xed\xe5\x8f\x35\x1b\xf9\xda\x7b\xf9\x5d\x4e\x93\xcd\x2c\x74\x77\xa5\x6a\x5b\x9f\xce\xef\x91\x9c\xfb\xd3\x3a\x81\x66\x1b\x37\xb6\x3e\xe8\xee\x7d\xda\x6f\xbd\xbf\x06\xba\x39\x70\xf0\x9b\x53\x9e\x24\xe0\x69\x90\x24\x7d\x0a\x8b\xe4\x87\xdd\xc3\x84\xef\xe9\x7a\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x49\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x4d\x36\xb6\x9f\xea\x85\x4e\xde\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x5b\x92\x57\x0e\x1c\x5c\x31\x8f\x7d\x0d\x1e\xac\x30\x3b\x1f\xcb\x57\x5c\x33\x2e\x70\xc8\x28\x3e\x03\xbd\xc4\x23\x36\x28\xe5\x53\xb8\x82\xd0\x93\x45\x11\x90\x6d\x74\x88\x90\x99\x41\x39\x09\x6b\x58\x01\x37\x9a\xfe\x0b\x34\x1d\x03\x5e\x6b\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x10\x47\x8b\x28\xa1\x51\xa0\x33\xcf\x04\xce\xe6\x4d\x1c\xcf\xed\x7c\x8f\xba\xf3\x56\xa8\x3b\x6d\x75\x97\xd6\x89\xdb\x76\x74\xc5\x70\x4a\x7a\x34\xa0\x26\x34\xa0\x03\x8f\x77\xc1\x8a\x0a\x52\x6f\x08\xa3\x50\x3f\x77\x3d\x24\xd0\x1b\x40\x02\x6d\x72\xf8\x0a\xbc\x9f\xd2\xb1\xeb\x61\x8a\x3e\x74\x82\x29\xf2\x97\xe0\x5e\x21\xcf\xb4\x9f\xc7\x37\x46\x34\xa9\x0f\xec\x2d\x61\x89\x1a\xc4\x85\x75\xe4\xa6\x65\xb8\x44\xcb\xe8\xa2\xd3\xba\xbc\x2d\x4a\xd0\x7a\x2b\xb3\x16\x00\x50\xe3\xdd\xb5\x27\x70\x40\xed\xdb\xb0\x27\xe7\x66\x97\x59\x2d\xeb\x95\xc8\x0c\x33\x5b\xd6\x51\xb0\xd6\x4b\x72\xf1\xf4\xf0\xbe\x12\x5d\x8a\x5a\x62\x9b\x25\xbb\x0c\x9c\x0f\x9a\x08\x34\xe7\x49\xec\x40\x28\xfc\x6a\xf9\x0e\x7c\x26\x80\x5f\x20\xb7\x19\x50\xd3\x1b\xb4\xad\xa2\x20\xd8\xb2\x94\x16\xbf\x89\x30\xdc\x1d\x30\x9a\x5d\x58\x11\x3c\x27\xd9\xc4\x7e\xb0\x52\x16\x91\x65\xf3\xf7\x92\x31\x96\x56\x08\xac\xe6\xcd\xc3\x5c\x69\xf7\x5d\x31\xb8\x65\xa2\x47\x60\x1c\x14\x4d\x15\x2d\x0d\x9d\xc1\xd3\x27\xea\x0c\x11\x38\xec\x71\xa9\x97\xce\xcd\xae\x93\xa7\xae\x4a\x2c\x1b\x04\x83\xd5\x2a\xb7\x6d\x0f\x0e\x94\xe2\xcf\xe3\x0c\x0b\x9c\x24\x24\xa1\x32\x7d\xb1\x60\xe0\xd3\xb2\xbb\x56\x9f\x55\xc1\x8d\x89\x88\xe5\xe9\xc4\x90\xa2\x1b\x88\xad\x17\xa9\x38\x12\x39\x0b\xa1\xcd\x9e\x6b\x45\xf5\x73\xb8\x17\xc0\xaa\x14\xcd\xa1\x38\xe9\x14\x53\xc1\x88\x6c\x2d\x05\x49\xa2\x5c\x50\xb5\x18\xdb\xca\x9a\xdd\x0f\xdc\x9d\xfd\xf2\xd4\x7e\xb8\xdc\xc3\xed\xb2\xfa\x5d\x7f\xbe\x92\x67\x46\x04\x94\x09\x72\x05\x6f\x82\xea\xa1\x16\xb5\x81\xf8\x5a\x43\x10\xfe\x5c\xbb\xb6\xdb\x02\x87\xf1\xf3\x38\xc8\xa8\x1a\x47\x55\xe2\x58\x75\x58\x9b\x70\xa7\x96\x4d\xf2\x85\x91\x97\x5a\xbc\xc8\x2f\x50\x65\xc4\xa6\x4d\x98\xa6\xf5\x80\x03\x57\x30\xd8\x2b\x8b\x8d\x09\x52\xde\xad\x52\xd5\x32\x4e\x8b\xf5\xd3\x14\x7c\xb4\x64\xb0\x83\xe0\xab\x0e\x23\x0e\x3a\xd9\xd1\xb0\xf5\x41\x17\x22\xcf\x14\x9d\xd4\xa1\x6d\xd4\xee\xaa\x8e\x0e\x12\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x34\x62\x03\x89\x9e\x09\x62\xc4\x42\x48\x34\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x03\xdd\x30\x54\x2d\x55\x1c\x82\x3f\x31\x7a\x16\x38\xcb\x88\x18\x31\x9b\xc5\x01\x0e\x17\xce\x13\xd3\x7e\x5b\x88\xab\x5d\x03\x32\x8e\x70\x34\x7f\xa5\x3d\xc2\x90\x8c\x13\xcd\x49\xec\xf2\x85\xcb\xdb\xe3\xe6\x6d\x0c\xd6\x6b\x6c\xd6\xf9\xd4\x95\xcf\x3a\xb0\x9d\x24\x91\xe6\x28\xbe\x9a\x72\x46\x84\x1e\xb5\xa6\xe1\x27\xc2\x10\x9d\xba\x71\xd8\xd8\x1d\xf4\x0c\x9e\x29\x4d\xfa\x4f\x98\x26\x26\x01\xdf\x75\xed\x84\x40\x63\x7e\x1f\x31\xe3\xee\x66\x51\x29\x43\x95\x32\x2a\xe7\x9a\x53\xe7\xe0\x93\x04\x35\xa3\x2d\x71\x86\x3d\xad\x73\x9a\x87\xfa\xf5\xe5\x1c\xf4\x89\x0a\xce\x52\x48\x92\xb1\xb8\x4c\x6e\xf9\x24\x51\xfe\x78\x34\xa6\x38\xae\x94\x88\xe3\x58\x96\x8d\x9f\x46\xad\xa4\xbf\x96\xcc\x2e\x87\xa5\xac\xc0\x28\x80\x15\x82\x20\x4e\x57\x59\x6c\x99\xfc\xdb\xa7\x36\xd4\x53\x1b\x9a\xd7\x66\x1f\xd3\x1b\xfc\x21\x5e\x37\xc5\xa1\x6d\xfb\x77\x21\xd9\xee\x30\xd5\xe1\x8d\x73\x02\x5e\x26\x1d\xe0\x6d\xf3\x37\x5e\x22\x75\xa3\x4f\x70\x78\xc3\x04\x87\xce\x96\xda\x72\x6c\x76\xfb\xb1\x5d\x2b\x39\x60\x05\x98\x53\x53\x2f\x97\x44\x09\x1a\xc9\x5d\xf0\x07\x99\xe1\x8e\x51\x6d\xa0\x05\x66\x2b\xa4\x26\xfd\x82\x77\x42\x42\x9c\x98\xaf\xf3\x37\x11\x04\x3f\xc6\xfc\xb9\x66\xab\x93\x21\x9a\xc6\x25\xd7\x62\x8f\x20\x11\x95\xa4\x14\xc9\x42\x25\x62\x44\x5a\x63\x27\x1e\xb1\x39\x25\x02\x8b\x68\x0e\xd9\x8d\xc5\xc6\x98\x2c\x59\x03\x68\x64\x62\x19\x42\x6f\xd3\x1a\x9b\xde\x61\xdd\xab\x16\x26\x8f\x4f\x67\xf7\x5c\x8f\x24\x35\x9f\x78\x61\xc6\x4a\x19\xa1\x49\xae\xd3\xf6\x6f\x1b\x88\xef\x17\xfb\x45\x83\xf1\x7d\x30\x51\xf0\x45\xc7\x80\xfc\x82\x1a\xfa\xa0\xfc\x17\x0a\xca\x6f\x58\xe2\xf5\x02\xf3\x37\x32\xf9\xbd\x7e\xcc\xb0\xeb\xf9\x35\xe2\x86\x57\x05\x6d\xe5\x93\xf1\x8b\x1f\xbd\xc6\x39\x77\x3d\x81\x3f\x79\xa2\x30\x12\xb1\xd0\x74\x36\x21\x71\x0c\x9c\x56\x71\x5b\x29\xba\xa0\x1d\x67\x1e\xd0\x77\x2f\x96\x9a\xd8\x71\xc2\xd9\x4c\xd2\xd8\x80\xad\x64\x18\x2a\xb6\x86\xc6\x0b\x00\x17\x80\xfd\x4d\x12\x22\x9c\x57\x42\xa0\xaf\x25\x65\x16\x4d\xd1\xff\x16\x73\x22\xd9\x57\xca\x18\x0b\x30\x5b\xa0\x47\xc6\x9f\x13\x12\xcf\x60\x87\xaa\x83\x39\x44\x94\x1c\x20\xaa\xfc\x67\x02\xd0\x08\x78\xae\x46\x7a\xec\x10\x6b\x66\x34\x00\x62\xbf\x0d\x6a\xa2\xfb\x66\xbe\x39\x42\xe8\x9c\xa1\x29\x8e\xd4\x01\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\xf4\x31\xe3\x0d\x9d\x37\x9f\x0d\xc7\x1d\x34\xb9\x0e\x12\x8a\xb7\x8a\xad\x7b\xc2\xdb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xab\xad\xb3\x32\x95\x75\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x9d\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xa6\x4d\xcb\xf4\x8d\x47\x4e\x39\x33\x0e\xc2\xad\xe4\x4e\x3a\x63\x38\x59\xd3\xc6\x51\x5b\xb9\xba\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xca\x7c\x43\x79\x0f\xa3\x98\x64\x84\xc5\x84\x45\x0b\x20\x11\x06\xc8\x39\x82\xe1\x04\x61\xf8\x0e\x27\x47\xe8\xcc\xe4\xd7\x78\x09\xcf\x5e\xeb\x70\xa1\xa7\x98\xd1\xa9\xd6\x13\xc0\x08\x6b\x47\x39\x62\x66\x98\xce\x07\x12\x14\xed\xf7\x2b\xd6\xb4\x33\xfa\x06\xb9\xda\x12\x95\x98\x95\xbf\x47\xcb\x2f\x1c\xe8\x6d\xd9\xee\xe8\xe6\x5c\x0d\x02\x99\x4f\x0e\xe1\xdf\xa5\x84\x33\x07\xd4\x53\xa0\xc8\x90\x84\x80\x39\xd0\x7a\xbc\xe0\x62\x6c\x03\x96\xdb\x85\xdf\x6e\x45\x1e\x47\xd0\x47\x49\xa9\x49\x29\xa3\x69\x9e\x06\xce\x3b\x53\xb1\x20\xb2\xf6\x4b\x93\x89\x91\x69\x3d\x20\x72\xe0\xe5\x48\x5f\xae\x6c\x81\x66\xf4\x89\xb0\x11\xcb\x38\x65\xea\x08\x5d\x71\x45\x82\x12\x11\x06\x3a\x8a\x67\x8a\xa6\x06\xed\x54\x10\x7d\x0e\x0c\x28\x36\x00\x4d\xce\xb1\x3a\x40\x71\x0e\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xec\x0c\xc4\x47\x8b\x11\x33\x37\xdd\x14\xd3\x24\x17\xc4\xca\xac\xd8\xe4\xc5\x14\x43\x2e\x46\x66\x91\xd0\x82\x49\xa4\x74\x36\x57\x7a\x8b\xb4\x8c\x67\xfd\x8d\x73\xcd\x8d\xf8\x88\x4d\x08\xc2\x28\xe3\x92\x2a\xfa\xe4\xfd\x97\x74\x8a\xb0\x94\x60\x41\x39\x42\x67\x25\xfb\x3f\x95\xa0\x7a\xb7\xc5\xd5\x52\x36\xb6\xb6\xe7\xf6\x7c\x9c\xad\x37\xb2\xd4\x8b\x5d\x65\x3c\x91\x3c\xc9\x55\xe8\x82\x6d\xde\xdb\xc2\x34\xee\x80\xfb\xc1\x40\xcc\xa7\x23\xe6\xe8\x5a\x1e\xa1\x81\x44\x92\xeb\x5d\x92\x66\x2b\x23\x41\x15\x11\xd4\xa0\x38\x11\x65\x36\xc1\x9f\x53\x7f\x06\x52\x2c\x1e\xb5\x08\x15\x5a\xe0\x0d\xa6\x68\xc9\xda\x31\x31\x12\x12\xc0\x5a\x85\xdb\x01\xa6\x7f\xc4\x38\x3b\x64\x64\x86\x57\xed\xc8\x88\x95\xb6\x04\x7d\x4d\xa7\x85\x42\xda\xe6\x73\x0c\xd6\x6e\x0c\x91\x4f\x6d\xbb\x64\x3a\x6e\xdb\xa4\x69\xc2\xf1\x0a\xb7\xf1\xb4\x38\xf4\xe8\xef\x7c\x62\xc6\xa8\xf5\x7e\xae\x40\x0a\xd4\xea\xd5\x94\x0b\x32\xc7\x2c\x3e\x70\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\xac\x75\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x61\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x1b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x0d\x04\xbf\x24\x5f\x2b\xb9\x2a\x70\xfb\x2d\xda\x6a\x9a\x28\xbc\xaa\xcc\xc8\x1a\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x34\x62\xe7\xea\x2b\xa9\x45\x74\xce\x66\xfa\xa2\x89\x9f\xa8\x2c\x8a\x9c\x44\x9c\xc9\x3c\x25\xc2\x76\xa1\x6f\x64\x4d\x91\xb6\x40\x00\x76\x32\x94\x1e\x9b\xde\xfb\x27\x9c\xd0\xd8\x15\xe2\xd1\x3f\x9a\x33\xa7\x47\x29\x9d\x47\xb1\x21\x24\xcc\x6e\x6e\xac\xd7\xea\xcd\xc4\xfa\x1f\x43\xc9\x1d\xa5\x85\x90\x8f\xad\xad\xfe\xb8\x2a\xe2\xdb\x55\x5f\x22\xde\x4f\x6a\x93\x42\xcb\x05\x23\xbb\x0a\x67\xab\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x16\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbe\xb5\x67\x5b\x96\x89\x90\x11\x4e\xea\x3b\xbc\xc4\xde\x6c\xde\x5f\xae\x04\xd8\xe3\x66\xda\x5e\x9a\xf4\x1b\xf1\x24\x59\xa7\x84\x49\x65\xe6\xa7\xc5\xe7\xcb\x47\x54\xf4\xa3\x37\xc0\xed\x05\x9c\x1a\x73\x79\xe3\xc4\x9a\x52\xa4\xb2\xbb\x14\xbe\x64\xd4\xb0\x85\x65\xad\x23\xc6\xa7\x50\xe4\x26\x69\x8b\xea\xca\x04\x4f\xe9\x3a\x28\xcb\x26\xd0\xe9\xd6\xd9\xc5\x57\x58\x19\x9c\xf5\x1c\x44\x53\x43\x5e\xb6\x47\xc8\xd7\xc3\x56\xdc\x5c\x72\x86\x52\x9c\x6d\xb4\xe0\xab\xbc\x42\x03\x94\x1a\x97\x9c\x5d\x3d\xc0\x5b\x24\x50\x2f\x06\x16\xf9\x19\x2f\x8a\xd4\xe8\x36\xfc\x5c\xb6\x16\x39\x3c\xe8\xd7\xcf\xd9\x94\xaf\x71\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x5d\xce\xe3\x69\x13\x51\xaf\x7d\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x9d\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf9\x52\x5d\x96\xe8\x70\xe7\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\x69\x6e\xf5\x15\xd6\xcc\x1e\x92\x4e\x8b\xb5\x25\x76\xc3\x7a\x38\xc0\xae\x47\x8f\xfa\xdb\x7c\x42\x57\x16\x39\xe8\xbe\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x9f\x37\x18\x38\x5d\x82\x98\x0f\xa8\x32\xa1\xf2\x4e\x7a\xca\x05\x0d\x0a\x83\x3a\x19\x09\x51\x28\x50\x12\x3a\x79\x02\x85\x1e\x4c\x8b\x73\xfe\x6c\xa2\xd3\x05\xd5\x3c\xcb\x08\xab\x0a\xcc\x3d\x9a\x17\x50\x6b\x2d\x31\xc6\x26\xff\x01\x37\x31\x83\xd8\xd6\x3e\x2e\x46\xd5\xb2\xa5\xbb\x28\xf1\xd4\x3d\xff\xce\xf5\x7a\xaf\xbf\xa8\xef\x4d\xe3\x08\xef\xcb\xad\xaf\x3d\x3a\x2f\xe5\xaf\x1f\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\x67\x3f\x1c\x3f\x9c\x23\xa2\x22\x94\xd0\x47\x32\x62\x91\x7c\x3a\xd0\xe2\xf1\x3f\x72\xa2\xf4\xcf\x2d\x1e\x01\x9a\x12\x26\x81\x13\x50\x55\xc3\x1e\x6a\x5e\x48\xb7\x30\xfa\xbf\x67\xe5\xef\x97\x90\x7c\x2d\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x03\xc5\x18\x5b\xe4\xb0\xa9\x1a\xe6\x06\xe9\x42\xec\xef\x39\x5b\x53\xe8\x3a\x2d\x3e\x0a\x46\xd1\x22\xd3\xa5\x19\x06\xac\xeb\xf5\xf2\x90\xcc\x37\x8d\xad\xaf\x62\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x34\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\x9a\xb8\x84\xc0\x2c\x9a\x6f\x6b\x42\xa6\xd3\x31\x49\xd6\x91\x44\xcf\xa7\xc3\x44\x6a\xfa\x8e\x1e\x5b\x4e\xe7\x26\x35\x1b\x8b\xc9\xd8\x4a\xb4\xa6\xee\x13\x2a\x4c\xd0\x38\x31\x15\xe5\x08\x02\x1f\x65\x35\x7b\xcc\x00\x44\xe8\x5d\xb4\x92\xba\x71\x51\x9a\xb4\x0d\x1f\x92\x0d\xbd\x20\xac\x46\x4c\xe4\x0c\x8a\x4d\xf8\x88\x05\x8c\x0a\xbc\xf0\xc8\xf9\x0f\xac\x37\x67\xa6\xd9\x84\x81\xe3\x36\x2f\x6b\xfd\x8c\xe7\x12\x6c\x35\x29\x51\xfa\x82\xfa\x1a\xea\xc0\x9a\x90\xa1\x03\x94\x09\x9a\x82\xb9\x55\x7e\xd3\xb0\x75\xa7\x58\xe1\x84\xcf\x06\x42\xd1\x29\x8e\xd4\x3d\xde\x4a\x03\xc7\xb6\x99\x4d\xc3\x4f\xdd\x30\xd0\xf9\x99\x5e\xfc\x19\x61\x44\xc0\x44\xb5\x4e\xde\x7c\x84\xe1\xc9\x46\x9c\x1b\xac\x6c\xd6\x30\x2a\xbd\xc5\x02\xe7\x8a\xa7\x5a\xbf\xc5\x49\xb2\x38\x30\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x97\xbb\xc9\x2e\xee\x29\x8e\xe6\xe4\x0e\xaa\x22\x37\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\x27\xe8\x7f\x8a\x39\x9e\x0e\x4e\xbf\x1f\x8e\xcf\xce\xef\x06\xdf\x5d\x0c\xcf\x82\xf9\xd8\x27\x97\xe7\x77\x77\xf5\x5f\xbf\x3f\xbf\xaf\xff\x78\x73\x7d\xf3\x70\x31\xb8\x6f\x6a\xe5\xe2\xfa\xfa\x87\x87\x9b\xf1\xc7\xc1\xf9\xc5\xc3\xed\xb0\xe1\xd3\x87\xfb\xf6\x87\x77\x3f\x9c\xdf\xdc\x0c\xcf\xdc\xaa\xfc\x2d\x38\x5d\x60\x3d\x86\xd4\x8b\xe6\x69\x54\x0f\xe0\x21\x2a\xbf\x78\x82\x1e\xaa\xa5\x0f\x6c\x2c\xb2\xc1\xb1\x78\xc6\x52\xf3\x30\x08\x85\x1f\x31\xe4\x3e\xd7\x8b\xd2\xf6\xa9\x09\xd7\x89\xe6\x04\x25\x9c\x3f\xe6\x99\x65\x6d\x26\x3e\x8c\x71\x63\xf8\x21\x32\x68\xed\xfb\xf3\xfb\x93\x7a\x09\x06\xdf\x58\x80\x98\xe5\xce\x00\x8c\x0b\x3b\x76\x0a\xb6\x14\x07\xcd\x5f\x58\x6f\x83\x1e\xfc\xce\x2c\xeb\xc7\xb4\x86\x99\xaa\x74\x13\xc7\xb6\xe8\xaf\x9b\x58\xd0\x70\x79\x5f\x97\xad\xa6\x5f\x0e\x53\x7b\x0a\x4d\x48\x84\x73\x13\xd4\xa4\xef\x29\x21\xb8\x08\x07\x5c\xd0\xc3\xee\x1a\xb5\x74\xd4\xd8\x60\x65\xcf\xf4\xc4\xe5\x23\xcd\x32\x12\x7f\xa8\xcb\x2f\xe5\xea\xb0\xb6\x26\x39\x9f\xa2\xe0\x4c\x6a\xbd\x1e\x74\x7e\x57\x38\x65\xbe\xf0\x9e\x34\x08\xdc\x28\x42\x59\x00\xc8\x59\xdf\x09\xbe\xb0\x05\x05\xd7\x18\x56\xe8\x99\x40\x4a\x75\x6e\x2b\x47\x19\xdd\x5b\x9f\x6d\xe8\xce\xd8\xb4\x5d\x1d\xb8\x52\xaa\x75\x2b\x33\xde\x85\xc0\xad\xbf\x97\xa4\x89\x11\x6f\x91\x17\x7b\x66\x1a\x05\xee\xec\x62\xde\x60\xc4\x2d\xc1\x0d\xee\x36\x68\xb0\x90\x2f\x91\xaf\xea\x37\xd2\x8a\xcb\x42\xb3\xed\x2e\xe3\x71\x58\x20\x25\x80\xeb\xee\x03\x2b\x81\x20\xaf\x5c\xab\x7b\x1e\xe3\x85\x26\x0e\x88\x35\x96\x79\x96\x71\xa1\x50\x4b\x1b\xc6\x8d\x6f\xc6\x07\x77\x8e\x9d\x87\xe7\x71\xd0\x88\x96\x30\x64\x43\x2d\x8d\x6e\xf0\x08\x76\x5d\x0b\xc6\x11\x06\xc8\x82\x22\xe8\xeb\x1e\xa5\x25\x95\xba\x44\xa1\x4d\xc2\xef\x36\x19\x06\x99\xbe\xe0\xbb\x96\xe1\x6b\xea\xfd\xda\xb5\xd0\xb8\xe5\x09\x99\xaa\x71\xa3\xd7\x67\x89\x81\x53\xb7\xc8\xda\x10\x65\xe8\x6c\xbe\x83\x16\xbb\x6b\x09\x7f\xb4\x81\x3d\x5a\x35\x08\x2c\x04\x82\x73\x65\xe4\xd3\x42\x87\x41\x6e\x35\xc1\xbc\x60\x3b\xb5\xb9\x60\x5e\x08\xd4\x32\xbf\xf1\x87\xfa\xb4\xa9\xa3\x11\x1b\x42\x00\x45\xa1\x88\xb8\x14\x31\xd0\x02\x56\xca\xff\xa5\xa2\xa3\xaf\x1a\xad\xd9\x8e\xf0\x5a\xd0\xbd\xad\x97\x9f\x2c\x50\x51\x58\xb6\xf4\x5d\x97\xd3\x63\xac\xde\x4e\x04\x34\x13\xb6\x65\xdc\x15\xc9\xac\x65\xde\xcc\xb3\x88\xf4\x81\xf8\x30\xdd\xd5\x11\xfa\xc9\x59\x7e\x20\xf0\xb5\xa8\xc9\x6c\x63\x37\x12\xbc\x70\xa0\x90\x4d\x0b\xbb\x0b\x9c\xc5\x5d\x87\xc2\x2e\x5f\x60\x0f\xe8\xd4\xb0\xca\x25\x05\x9c\x31\x63\x91\x5d\x23\xed\xe3\xd4\x7f\x74\x47\x96\x47\x05\x7c\x84\x32\x9c\x36\xb2\x0a\x84\x0e\x96\x2c\xfe\x97\xd9\x2c\x93\x89\xea\x0a\x6b\xd9\xb2\x88\xd6\x83\xaa\xcf\x0f\x78\x00\x4d\xa2\x2a\x9a\xd2\x24\x01\x39\xe0\x08\x0d\xa0\x3c\x30\x24\x72\xea\xab\xd0\x05\x58\xd0\x19\xe3\xab\x72\xcc\x5a\x88\x29\x0a\x88\xe9\xae\x9d\x98\x24\x50\x53\x91\xc7\xbf\x1b\x8a\xda\x01\xa6\x8b\xe6\x2d\xb8\x8e\x88\xdd\x1d\xc9\x65\x0d\xe5\xfd\x2d\xa2\xa3\x6b\xc3\x0d\x3e\xfc\x57\xf3\xd0\x3f\xe5\x58\x60\xa6\x20\xe6\xd7\x8a\xee\x82\x04\xa9\x47\xe4\x33\xc4\x67\x30\x63\x08\x86\x9f\xc2\xcd\x75\x2e\x7f\x08\xf7\x42\x34\x3e\x40\xf4\x88\x1c\x41\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\x56\x8b\x65\x3c\x42\x83\x44\x72\xfb\x05\x61\x51\x02\xe5\xb8\x83\xf0\x64\x4f\xf9\xd6\xad\x34\x59\x80\x82\x02\x5b\x59\x34\xcf\xed\x83\xe0\x43\x28\x32\x06\x3e\xf1\x04\x4e\x7a\xf1\xfb\xef\x79\x66\xbc\x15\x6d\x71\x12\x2f\x58\xce\xa1\x76\x0d\xbd\xd8\x26\x99\x52\x81\xcb\x36\x08\xde\x80\x8d\x29\x62\x4c\x03\x04\x16\xf4\x35\x56\x28\x21\x58\x2a\xf4\x87\x6f\xd6\x8a\x0d\x71\x13\x2c\xb8\xab\x3d\xbe\x45\xa2\x98\x4b\x35\x08\x85\x3b\xdf\x31\xd4\x8e\xc3\x42\x21\x8c\x18\x79\x0e\x23\x4b\x39\x04\x03\xbb\x82\x70\x24\xc8\x6d\x35\xf1\x64\x26\x33\x1f\xb2\x35\x8c\xca\xd4\xc2\x47\x1c\xdc\xb1\x75\x9f\xda\x61\x35\x50\x96\x55\x9e\x6c\x88\x27\x40\x72\x15\x41\xff\x73\xac\x46\xcc\x72\x56\x17\x36\x12\xa4\x79\x0d\x92\xa4\x1c\x68\x8f\x21\x97\x84\xe9\x09\x43\x7d\xf6\x23\xbf\x40\x57\xa0\x7e\xf9\x68\xe7\x92\x9d\xae\x38\x2c\x26\x1e\xcf\xe3\x1d\x85\x6d\x37\x4a\x3b\x4d\xf6\xe5\x57\x14\x82\x1b\xba\xbf\x30\x85\xf2\x3b\x08\xc3\xa4\x69\xc8\x2b\x0e\x56\xdd\xa6\xbf\x44\x36\xde\x75\x07\xdd\x45\xe5\x66\xfb\x38\x5c\xb3\xcf\xbc\xc1\xdc\xde\xb2\xb9\x81\x6c\xb1\x8d\x02\xee\xc3\xee\x5f\xcb\xe3\x5b\x1a\xfa\x79\x0c\x49\x7f\xab\xb9\x60\x91\x44\xe7\x58\x87\x89\xbd\x8e\x83\x9c\x9e\x20\x85\x00\x82\xff\x1c\xe3\xb3\x6f\xb6\x78\x5e\xb3\xf7\x3d\xfd\x83\x62\xfe\x6e\x2a\x3e\x08\xae\x3e\xf1\x76\x61\x6f\x10\xff\x1d\x47\x10\xe9\x0f\x3d\xb9\x1c\x83\x3a\x20\x93\x83\xb1\xc6\x60\xcc\x6f\x14\x0f\x33\xc1\x23\x22\xe5\x11\x1a\xc2\x45\x63\xff\x89\xf0\xd4\x39\x24\x82\x97\x47\x4c\x6b\x26\x0e\xbf\x25\x68\xbf\x4c\xe2\x4d\x27\xc0\x80\xc1\x6d\xe5\xcb\x49\x57\xd7\x28\x69\xd3\x26\x1c\x16\x1d\xb4\x01\x65\x0d\xd0\x70\x76\x82\x62\x1e\x3d\x12\x71\x2c\x48\x4c\xe5\x09\xf8\xd6\x55\xab\x53\x2f\xd5\xda\xf6\xd6\x92\x46\x5b\xa0\xc0\x8a\xa4\xb8\x53\xd3\xbf\x0d\xb0\x76\xe1\xb5\x07\x88\x4e\x41\x9d\x70\x39\x19\x26\x08\xd9\xc1\xdd\x10\xa6\xc4\x02\xe2\xfa\xbd\x29\xab\xb2\x10\x4e\xd3\xd0\x42\x5b\x5b\x36\x91\xd8\x45\x0c\xce\x86\xd3\xbe\x9f\x13\x49\x5c\xc0\x81\x99\x94\xe2\x36\x96\xd9\xb0\x8b\x0c\xab\xb9\x84\xd4\xd5\xf2\x1a\x58\xa5\x0b\x3e\xd5\x2b\x84\x33\x88\x57\x30\x56\x8a\xe2\x23\x9f\x60\x29\x15\x4d\x92\x11\x63\x84\xc4\x12\x41\x96\xe9\x57\x8d\x19\xf2\xfa\xd3\x03\x84\xe3\x18\xfd\xef\xaf\x3f\x5e\xfc\x7c\x3f\x1c\x9f\x5f\x81\xd1\xfa\xfc\x62\xf8\xcd\x81\xff\xf1\xfa\xe1\xde\xff\x6a\x2c\x2c\x4f\x44\xa0\x14\x3f\x82\x8a\xc7\x24\xb1\xc9\x13\x64\xc4\xc2\x91\x3a\xec\x00\xfd\x44\x12\x17\xe9\x6a\xc5\x14\x0f\xa1\x68\xf7\xb0\xb5\x62\xb1\xb1\xf9\xad\xa1\xfc\xde\xfa\x4f\x96\xd3\xa0\x23\x1e\xdf\x85\x13\x03\x21\x47\x06\xcb\x20\x99\xdc\xea\xbe\x05\xc1\x11\x36\xa3\xac\x2d\x1e\x8f\xb0\xa7\x97\x14\xe2\x7f\x20\x8b\x1f\xb5\x7a\x7d\x83\xa9\xe8\x4c\x7b\xcd\x68\x40\xee\xc4\x68\x3d\x1d\xcb\xea\xa1\x92\x46\x16\x36\xd9\x36\xad\x31\x9f\x4d\x40\x70\x6f\x3e\x5d\x0b\x2f\x45\x3e\x2b\xe1\x50\x2a\x7c\x3e\x87\x83\x72\xf2\x17\x4d\x41\x83\x23\x76\x7f\x7d\x76\x7d\x82\x48\x82\x27\x1c\x42\xf9\x6d\x48\x90\x6b\xc2\x2e\x58\xc4\xd3\xa0\xa1\x12\x42\xc9\x01\xca\x0a\x84\x92\xd0\x88\x76\x64\xda\x58\x81\x54\x92\x71\x51\xc7\xf7\xd8\xad\x0a\x68\x27\x7b\xc3\x45\x97\xeb\x5f\xbf\x06\x4b\xc7\x33\xad\xc8\x55\x38\xaf\xbd\x9b\xa7\x04\x9b\x5a\xfa\xc6\x2d\x64\x6d\xf9\x36\x80\x35\x49\x4a\xf5\x14\xf5\xc1\x91\x47\xd6\x05\x5f\xbc\xc9\x19\xfa\xe1\x2f\x12\x4d\x72\x35\x62\xe5\x36\x38\x43\x83\x9f\xee\xd0\x77\x58\x45\xf3\x6f\x46\xec\x5a\xab\x99\x3f\xfc\xa5\x05\x4a\x69\x6d\x74\x42\xbd\x26\x67\x58\xe1\x0b\x8e\x63\xca\x66\x4d\xd0\x84\x45\xfd\x98\xe1\xfd\xe0\x04\x5d\x5b\x1d\xbe\xc8\x04\xf1\x29\xc1\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x65\xf8\x36\xa3\x99\xc1\x85\x35\x62\xf7\x06\x93\x51\x73\x55\xaa\x50\xc6\x6d\x0d\x23\xad\x95\x19\xb4\x4a\xec\x32\xa4\x48\xb2\x40\x7a\x75\x80\x8c\xfd\x66\x58\x79\x0c\xe4\x99\x3a\xb3\x1f\x31\x50\xd0\x7d\x6e\x4a\xc2\x23\x9c\x40\x4c\xde\x61\x60\xd3\xd3\x6a\x3b\xcf\x21\x3f\xdc\x14\x3d\x5f\x94\x43\x67\x3d\x64\x81\x17\xca\xc2\x8d\x02\x03\x00\xec\xa3\xf5\xc6\xa6\x5c\x73\x1c\x83\xc5\x06\xc6\xb7\xc4\xac\x8e\xfe\xd0\x63\xb3\x99\x65\xd1\x4f\x7d\xda\x16\xcf\x99\xc3\x22\x89\xc0\x7c\xcf\x16\x10\xbe\x0d\x45\x47\x38\x84\x7e\x14\xdc\xd9\x12\x65\x6d\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\x58\xcf\x15\xcb\x33\x1b\xd8\x68\x65\xfd\x4c\x90\x43\x9f\x01\x15\x97\xd6\x54\xdf\xb0\x47\xe8\x36\x54\xaf\x63\x1e\xe5\xa9\x43\x56\x86\xec\xa9\xa2\xac\x7c\x49\xe2\x31\x17\xfb\x2a\x8a\x07\x94\x16\x45\x20\x7d\xbc\xb3\x7e\x6c\x08\x66\x10\x7e\x5a\x97\xd4\xdb\x05\x5f\xe0\x1d\xdb\x45\xad\x99\x86\xc6\x59\xb9\xa5\x52\x6b\x5b\xe7\x25\x5e\x15\xe8\xaf\x5c\x80\xb0\x45\x3e\x67\x1c\x8c\xdc\x26\x3d\x8b\xc7\x5f\x49\x74\x7e\xa3\x25\x20\xad\xf1\xfa\x33\x98\x4b\x65\x82\xcb\x20\x5d\xc7\x7c\x6d\xd2\x05\x0e\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x9d\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x3a\xa7\xda\x62\x17\xec\x01\x6c\x5b\xfe\x4d\x50\x1e\x83\xd8\x21\x3c\xb3\x27\x5c\x86\x27\x13\x95\x8e\x66\x11\x49\x20\x89\x3a\x28\x73\x08\x2f\xec\x5a\x89\xfe\x7f\x2d\x01\x2b\x1b\xeb\xa3\xb2\x59\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xf0\x33\xd6\x9c\xfb\xc0\xc2\x68\x99\x8f\x8c\xe7\x65\x8a\x23\x83\x0a\x2a\xd1\xd7\x9f\x4f\xf4\x6f\x07\x68\x71\x02\x41\xa4\x07\xe8\xd7\x13\x8b\x96\x83\x85\x1a\xeb\x9f\xbe\x71\xb2\xb6\x6d\x02\x06\x4d\x25\xfa\xea\xf8\x09\x0b\x53\x33\xfa\xd8\x8c\xe8\x2b\xcb\x59\x7d\x5d\xbc\x50\x36\x4f\x38\x7f\xb4\x01\xb6\xb5\x0f\x8f\x1d\xf0\x1a\x90\xb7\xf7\x9b\x98\xad\xf7\x89\xf9\x0a\x1d\xc2\x0b\x04\x1d\x65\x13\x74\xf4\x77\xc9\x19\x3a\x5a\xe0\x34\xb1\xbf\xba\xa7\x36\xfe\x17\x4b\x9b\x13\x17\xfb\x20\x9f\x64\x61\x2c\xa5\xdf\x25\x7c\x02\xb3\xba\x74\x33\x35\x11\xb4\x30\xd0\xe2\xf6\x29\x2e\x2c\x3b\x11\x97\x88\x0a\xf8\x41\x29\x57\xe6\x15\xe0\x71\x4d\xb3\xfa\xec\x87\xf4\xdf\xc6\x2f\x0c\x8b\xe2\x92\xf8\x8c\x71\xd8\x47\xaf\xe9\x46\x3f\xa3\xaf\x2d\x0b\xfa\x46\xdf\x31\x36\x5c\xd9\x2c\x43\x53\x07\x0b\xdf\xc1\xcf\x41\x07\x94\x21\x93\x96\xb9\xe4\xcb\x5f\x8f\x8f\x8e\x8e\xfc\xd7\x90\xb5\xfe\xff\x22\xaa\x24\x49\xa6\xa6\x25\x77\x83\x2d\x46\xec\xd2\x15\x5e\x70\xc6\xeb\x02\xd2\x31\x13\x5c\xf1\x88\x27\xe8\xb0\x30\xe8\xc6\x3c\x92\xe8\xdf\xb5\x58\x1b\x2c\x25\xfc\xa8\xf5\xb8\x16\x18\x58\x83\xf4\xfc\x4a\x87\xca\x1a\xc4\xab\xc7\x2a\x44\x71\xf3\x8a\x2d\x96\x61\x15\x0f\xa0\x05\x4d\x39\xc7\x16\xe9\x4d\x08\xfd\x32\xf9\xac\xe0\x51\x0b\x90\x5e\x63\x28\x7b\xf3\x4d\x59\x63\xb7\x05\x9e\x9e\x21\xeb\x96\x05\xb0\x78\x57\x96\x33\x98\x79\x1e\x84\xee\x13\x7d\xb9\xb0\xb0\x14\x80\xcc\xd3\x14\x8b\xc5\x71\x71\xda\xea\xc4\x59\x20\xad\x01\x8f\x49\xdc\x02\x80\x0b\x37\xb1\x47\xcb\x46\x31\x58\xf1\xd2\xdd\x68\xfe\xec\x46\x50\xcb\x30\x40\x2c\x20\x2c\xe2\xb1\xa5\xeb\x22\xfb\xb4\x2c\xb1\xf8\x77\xea\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\xb7\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x86\x7b\xf4\xfc\xfa\xce\x7d\xd3\xfd\xd2\x85\x75\x28\x8b\xec\x38\x09\xf1\xf1\xd8\x0c\x09\xfc\x5c\x5c\xbf\x10\xdb\x61\xac\x33\xb9\xcf\xcd\x35\xff\x3e\xe5\x37\x34\xd1\xb7\x16\xd0\xf8\xd1\x88\x95\x7e\x3e\x40\x24\xa1\x29\x65\x3e\xb6\xce\x30\x77\x3e\x35\xd2\xf3\x23\x55\x7a\xcb\x64\xfc\xa8\x39\x98\xc3\x75\x0a\x54\xaa\x01\x5b\x38\xd2\xf1\x8e\x29\x6b\x81\xc8\xa5\x1e\x57\xa1\xa3\x6b\x61\x56\x37\x71\x68\x05\x52\x1a\x10\x1e\x9c\xdf\x11\xd3\xad\xb9\xb3\x54\x84\x0b\x07\xed\x05\xcd\x1d\x3a\x40\xfc\x80\x03\x40\x1f\xa5\x98\x5f\x2f\xff\x36\x08\x28\x43\x96\xa7\xdb\x26\x9b\xd8\xf0\xe1\xb7\x32\xd3\xdd\x08\xe2\x6e\x2a\x9b\xb8\x44\x58\x9e\xba\x03\xb5\x06\xc5\x0d\xad\xf8\x13\x93\x28\xc1\x06\xa9\x46\x37\x04\x91\x8f\x07\xc6\x41\x9a\x05\x7d\x99\xeb\xc5\x74\x63\x6a\xec\x24\x84\x7d\x6d\xfe\xfd\x0d\xb2\x77\xc3\xb7\x07\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\x3e\x00\x65\xb4\xd6\x1f\x96\xc0\x04\x60\xd4\x4d\x14\xa0\x99\xf0\x56\xb9\x46\x10\x05\x3b\x66\x3c\x26\xdb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x96\x4e\x4b\xa4\x5c\xd3\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x2d\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x6d\x37\x21\x6a\x40\x2b\xea\x74\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x9c\xb3\x29\x3f\xb1\x3a\xd5\x05\x65\x8f\x86\xe2\x5f\x6a\x8f\x0c\x20\x36\x89\x4b\x30\x6e\xae\x4a\x2b\xcc\xe1\x10\x51\x16\x25\x39\x5c\x7c\x52\xe1\xe8\xd1\x80\x7a\xb7\x19\x7d\xf5\x37\xe3\xd5\xc9\x94\x2d\x12\x53\x9e\x24\xb6\xdb\xe2\x02\x2d\xca\x58\x3f\x51\x8c\x30\x7a\xb8\x3d\x6f\xee\xfb\x91\xd6\x9d\x39\xcd\xb7\x67\x99\x40\xe0\x7f\x7e\xa0\x6b\xc5\x5d\x56\x60\xf1\x48\x89\xd4\xbd\x71\xa9\x0d\x74\x55\x13\xe9\xa7\x9b\x87\x41\x14\x91\xa4\xe6\xd2\x5f\xdf\x83\x4c\x9e\x68\xb4\x8a\x08\x1a\x57\x2c\x67\x1e\xd5\x69\x6b\x05\xb8\xd9\x8e\xeb\x9a\x1f\x4b\xfa\x6b\xf7\x21\xd6\x56\xdf\x53\x88\x0f\xab\x0f\x12\x29\x7c\x72\xea\xa7\x9b\x07\x20\x17\xbb\xa6\x56\x3c\xe4\x26\x2b\x00\xaa\x75\xf8\x80\x9f\xd2\x4e\x60\x45\xb6\xcd\x49\x33\x68\x6c\x6b\xc4\x4c\xd6\x60\xee\x96\xda\xf1\xb7\xc4\x88\x2b\xf0\xdd\x20\x48\xab\x1d\xac\x2e\x0c\x9b\x83\x87\x6b\xa0\x68\xc0\xfb\xdd\xe6\x53\x79\x77\xc5\x74\x96\x0f\x33\x21\x64\x0d\xdc\x87\x3b\xfd\x7a\xc7\x41\x96\x5e\x5d\x36\xc6\x67\x6c\xea\x60\xd4\xe1\x97\x63\x2b\x63\xaf\x73\xed\x39\x72\x34\x8a\x8e\xf4\xd9\x3a\x7e\x24\x2e\x20\xca\x4b\xc5\xae\xdf\x99\x25\xf4\xb0\xcc\x86\xb7\x95\x37\xb0\xa0\x40\x81\xd8\x32\x80\x45\x0b\xc2\xff\x1f\x7b\xdf\xd6\xdc\x46\x92\x9c\xfb\xbe\xbf\xa2\x22\xfc\xa0\xd1\x39\x20\xb8\x33\x1b\x76\x8c\x15\xe1\x07\x88\xa2\x76\xb0\x2b\x91\x5a\x92\x9a\x59\x1f\xc3\x01\x15\xba\x0b\x40\x99\x8d\xaa\x56\x5f\x48\xc1\x5e\xff\xf7\x13\x95\x99\x75\xe9\x2b\xba\x01\x52\x1a\xaf\xe7\xc1\xde\x11\xd1\x5d\x5d\xf7\xca\xca\xfc\xf2\xfb\x96\xbb\xc1\xd4\x7e\xfe\xc3\x6f\xe8\xe5\xf7\x0d\xa2\x3f\xbf\xe4\x21\x9f\xd2\x51\xd8\xec\xb8\x32\x7b\xac\xfd\x6a\x87\x3b\x18\x6d\xf3\xa3\xaa\xf4\x31\x3d\xaa\x42\xf8\xc5\x81\x0a\x94\xf4\x29\x5b\xca\x23\x46\x44\x78\x82\x1e\xbf\x62\x0b\xce\x20\xaf\xdc\x64\xce\x96\xaa\x53\x08\x55\x9e\x12\x9e\x6d\xf0\xaa\x9a\x8b\x22\x7f\xd9\x32\xc2\x3e\xfb\xe4\x84\x11\x3e\x42\x1d\x37\x8c\x40\xc3\x45\xa8\x6f\xa5\xb9\x5a\x56\x69\x5e\x9d\x7d\xe4\x74\xa6\x03\x0e\x43\x9f\x12\x13\xe9\x0c\x39\xd1\x63\xb3\x56\xba\xd9\x6b\x4e\x54\x49\xbf\xe2\x3b\xc7\xcd\x60\xb5\x9a\x29\xd3\x0e\x2b\xb7\x12\xc0\x50\xdc\x5d\x87\x93\xe5\xd0\xc3\x2a\x90\x3c\x69\x57\x0d\x16\x6a\x66\x1f\xf1\x3c\x6b\xe6\x8a\x9c\xe1\x55\x08\x90\xba\x88\x4b\x87\x9b\x2e\xf7\xbd\x4e\x8d\xeb\x68\xc4\xd8\x34\xda\xba\xa2\xbb\xb9\x69\xbb\xd3\x88\xb4\x9b\x1c\x9b\x6a\xaf\x6e\xd6\x83\xc8\xda\xc0\x82\x23\x3e\x7e\x6b\x9b\x48\x45\xd9\xbe\x6c\xfb\xf0\xe1\x5b\xad\xe5\xee\xa0\x82\x20\x4d\x80\xb0\x70\x88\xe6\x4d\xf6\x7e\x9a\x7a\xba\xbe\xda\xc7\x9a\xab\xb5\x38\x69\x37\x96\x7c\xb7\xcc\x74\xb7\xb0\xd8\x80\x6e\xb2\x45\x54\x3c\x6d\x5b\x14\x1a\xd9\xb3\xcf\x25\x4f\xf0\x70\x53\x34\x1d\x6d\xb5\xe1\xd2\xf2\xc3\x3f\xb1\x19\x9c\x3e\xec\x3d\xec\x8b\x00\xb5\x80\xd2\x0a\xcd\xe4\x2e\x15\x59\xae\x15\xef\x54\xd8\xbb\xff\x31\x5f\x92\x4a\xd0\x92\x47\x91\x2e\x9b\x8a\x40\x23\x5a\xd2\x52\x5a\xd8\x28\xce\xee\xcb\x95\xc8\x94\x40\x15\x41\x78\x8e\xd9\xe7\x06\x55\x57\xf3\xb2\xd8\xfe\xb0\x8c\x12\x39\x58\xba\x08\xf2\xbc\x66\xe6\xb5\x0b\x7c\xab\xaf\x01\x95\xf2\x2b\x55\x57\x0c\x7f\x63\xf8\xdb\x94\xbd\xe6\xd1\xbd\x50\x31\x4b\x93\x72\x23\x89\xd6\x01\x4e\x28\xd8\x2e\x03\x47\x79\xb5\x61\x68\x5b\x60\xf9\xe6\x18\x5a\xa8\x1d\xbf\x47\x3a\x61\x32\x22\x23\x9e\x74\x92\x82\xb9\x0b\xce\x52\x36\xe7\xee\xc1\xd1\x72\xe7\x61\xb3\x98\xfa\xdc\xcb\x4b\xcc\x72\x79\xdc\x6a\xc2\x06\x54\xee\x57\x23\x16\xae\x9b\xad\x0d\xf6\x1d\xcb\x90\xe0\xf4\x24\xa9\x32\xb8\x7a\xc1\xf1\x0e\x94\xd8\xa5\x62\x1c\x08\x7c\x5e\xe4\xac\x4c\xad\x7d\x06\x1e\xe1\x04\xe2\xf3\x38\x04\xe6\x87\x54\x9a\xfb\xf2\x56\x2c\x14\x60\x9e\x99\x6b\x5e\x43\x76\x8c\x09\x0f\x4d\x6a\xdb\x1a\xd6\x48\x5f\x71\x5a\xb4\xb9\xc1\xa8\x7d\x60\x9e\x0e\xc4\x73\x17\x5b\xa1\x96\x47\x10\x3b\x0f\x1f\xb4\x0a\x76\x9b\xcc\x60\xe7\x59\x77\x5d\x58\x2a\x49\x52\x5e\x14\x4c\x09\x59\x4b\xe5\xba\x66\x46\xcb\x9c\xe5\xbc\x90\xb9\xd9\xcb\x5a\x7b\xdc\x93\x86\x9c\xd2\xeb\x7c\x1c\x53\x49\x0b\x4b\x49\xad\x2f\x5c\x7e\xc8\x94\xbd\x05\x7f\x64\x70\x33\xd0\x8e\xf3\xa3\x6b\xc3\x2a\xb6\xa2\x93\xfc\xf2\x29\x80\x55\xb6\x05\xc1\xf3\xbd\x6e\x66\x97\x0b\x34\x65\x33\x1f\x07\x42\xd6\x13\x8c\xf0\x1c\x68\x91\x48\x72\x71\xcc\xe4\x1b\xe4\x32\x05\xac\x04\x4c\x20\x06\x96\x54\x6e\xfe\xee\xb9\xfc\x5d\x35\x1f\x21\xdd\x96\xdf\x0b\xd5\xe7\x17\x1b\x5e\x43\x74\x5c\xf6\xba\x04\x9c\x47\x54\xa3\x53\xf4\x98\x0a\x0e\x5f\x76\x9e\x68\x46\xae\xcf\x4d\x97\x9b\x6b\x48\x74\x4f\x49\x3e\xe8\x17\x27\xaa\x9a\xc7\xad\xce\xc3\x75\x66\xc7\x0f\x6f\xb2\x59\xe9\xf8\xda\x21\x49\xca\x75\x30\xa2\xa3\x94\x0e\x99\x6c\xa0\xd6\x6e\x91\xa2\xcf\xdf\x8d\x37\xb3\x5b\x28\x74\x03\xc4\x13\x6d\x51\xcd\xd5\xfc\xe7\x1f\xf3\x6b\x58\xb1\x4f\xc1\x99\xd0\x2e\x90\x7b\x7a\xbe\xc2\x91\x91\x1a\x87\xc4\xf3\xea\xba\x3c\x76\x2c\x1f\xa9\x8e\x99\x9f\x5e\xe3\xa5\x74\xbf\x7d\xb3\x6a\x12\xbc\x83\xda\x76\x68\x66\xbf\x0f\xe0\x1c\x6c\x55\x4a\x54\xb3\xaf\x18\x84\xda\x5a\x1c\xc0\x44\x0d\xc7\xbf\xcc\xdd\x79\xd2\x3e\xc7\x3e\xe8\xf8\x94\x89\x35\x9e\xd8\xb0\x39\xaf\x07\xa0\xbd\xf3\x36\xf5\xfd\x9e\x9e\x48\x75\x37\x4e\x37\x5e\x0e\xd7\xab\x07\x60\xc6\xaa\x5c\xdf\x82\xce\x4b\x17\x77\x48\x20\x81\x60\x93\x01\xcd\x38\x9b\xcf\xb8\xd4\x94\xae\x41\xa1\x38\xbf\x3f\xfe\x39\xfb\xd3\xed\xf5\xd5\xd9\x8e\x67\xf9\x96\x43\x6e\xb6\x2d\x6b\x62\xa5\xf3\xf0\x7a\x6c\xe3\x8f\x52\x2d\xd4\x19\xdb\xe8\x09\x46\xbb\x5f\xb1\x6d\x51\xa4\xf9\xab\xf3\xf3\x8d\x2c\xb6\xe5\x6a\x1a\xe9\xdd\xb9\xef\x9a\x73\x9e\xca\xf3\x55\xa2\x57\xe7\x99\x00\xbc\xf3\xd9\xf7\xd3\x1f\xbe\x87\x91\x39\x7f\xf8\xfe\x1c\x62\x9c\xd3\x8d\xfe\x87\x77\x3f\xfc\xf3\x1f\xfe\xc9\x14\x9c\xee\x8b\xad\x56\xaf\x28\x94\xde\x5b\xf6\x19\x5a\xe5\xe7\xf8\x4a\xed\x2b\xff\x3c\xfd\x7d\x58\x0d\x7a\x74\xa7\x63\x91\xe4\xe7\x0f\xdf\x2f\xed\xc0\x4c\xd3\xfd\x6f\x08\xe1\x6f\x86\x10\xbe\x97\xc5\x6f\x08\xe1\x6f\x8a\x10\x1e\x6e\xe1\xb8\x3d\x06\x28\x57\xfd\xfe\x68\xfe\xee\xf6\x48\xeb\x7a\x3f\xb4\x0f\xb5\x1c\x0e\x61\xfe\xc6\x09\x47\xc4\xbd\x18\x75\xc5\xae\x35\xd7\x5d\x1d\x3a\x5c\x6c\x63\x65\x0f\x3a\x8d\xf9\x51\xe9\xea\x80\xc7\x91\x11\x50\x6a\xa3\x4b\x30\xe5\xb2\x0d\xf7\x4b\xb8\xb3\x53\xfa\xef\x39\xc9\xe1\x9f\x9a\x15\x9e\x9a\x7b\x24\x23\x7c\x82\x6f\x5b\x94\x9c\x7e\xb4\x4c\xf0\x4f\xc1\x9f\x3e\x50\x51\xd7\xd1\x42\xe3\xe4\x81\xba\xd8\x7a\x75\x54\x63\xcb\xf3\xe3\xe0\x96\x33\x24\x5f\x74\x71\x3a\xc4\xaa\xc9\xdc\x7e\xd0\x1e\x1c\x96\xcf\x02\xe4\xda\x89\x36\x2b\x2d\xb3\x54\xe7\x22\x9f\xb2\xb7\x35\xcd\x49\x0f\x21\xbd\x79\x7b\xc1\xbe\xff\xf1\x9f\xff\xb0\x50\xdf\xb5\x9c\xdb\xb0\xdf\xeb\x6c\x43\x88\x56\x38\xad\x77\x3c\x2f\x44\x76\x9e\xad\xa3\x73\xdc\xe5\xce\xcd\xfb\x67\xf4\xd1\x33\xbd\x3e\x73\xe4\xd0\x67\xc4\x93\x3b\xdd\xc5\xe3\xa8\x1e\x2a\x53\x0f\xcf\x1a\x3a\x68\x72\x38\x94\x90\x14\x4a\xaf\x9d\x0c\x00\x66\x1c\xa1\x62\x88\x5e\xb7\xfc\xc7\xeb\x44\xaf\xf2\x97\x8e\x8a\x8e\xe7\xf6\x1b\x9e\x1b\xaa\x7b\x69\x3e\x0d\x4f\xbc\x9d\x22\xcf\xe9\xa8\xb0\x7b\x49\x78\x1d\x19\xd3\xf1\xed\x8b\xcd\x1f\xf7\xc8\x8c\xc1\x33\x5d\x2a\xcb\xb3\xad\x95\xd0\x6b\xc0\x53\x82\x25\x6c\xf1\x22\xe0\xab\x35\x27\xad\x67\xc1\xc8\x44\x8a\x07\x0c\x44\x15\xba\xbb\xfb\x44\xae\xf9\x43\xfd\xfc\x1c\x5c\xf3\xa7\xf6\x3b\x6d\x28\xdf\xa8\xc3\x4f\x05\x75\xe2\x52\x1a\x83\xaa\x30\xcf\x1f\x8c\xa0\xba\x7d\xc0\xeb\x40\x79\x5a\xe7\x94\x67\x60\xa4\x89\xb3\x42\x9f\x01\x7d\x10\x90\xd2\xa0\xfa\x43\x17\xac\x02\x22\xcf\x63\x8e\x49\xf3\xfc\x80\x7a\xa2\x61\xfe\x25\xa8\x28\xd9\x24\x39\x92\xa9\x12\x38\x4e\x2a\x25\x32\x8a\xa9\x1d\x3c\x51\x47\xc6\xa5\xc3\xa1\xec\xc7\xc6\x05\x0a\xe3\x01\x33\xbf\xcb\x8c\xe0\xc1\x26\x30\x65\x60\x7d\x6e\xf5\x4e\x1b\x73\x46\x97\x79\xf0\x23\xde\x5e\xe0\x10\xee\xb4\xbd\x76\x3c\x45\xba\xc0\x6f\xd7\x1a\xb3\xb4\xcc\x4f\xe8\xd4\x0b\x1f\x1a\x25\x76\xb2\xaa\xca\x3b\x1c\xa8\xbf\xe3\xe5\xef\x9f\x37\x80\x7a\x40\xc5\x40\x10\xed\x25\xb6\x6d\xf9\x9f\xe6\x5e\x63\xa6\x94\xbb\x29\xb8\x93\x1b\x41\x3a\xc8\x8a\x19\xe2\xc5\xac\x35\xdf\x99\xb7\x5e\xee\x46\x8e\x81\x83\x7b\x0f\x19\x00\xae\x10\x00\x6d\x91\xcf\x67\xad\xd0\xe7\xae\x75\x69\x25\x72\xe3\xa5\x65\x6e\x1d\x57\xd5\x5b\x57\x00\x91\xb4\x36\xeb\xed\x89\xaf\x00\x27\x8f\x7d\x8c\x1b\x82\xb5\x2d\xba\xe0\x84\xe3\x17\x23\x48\xdd\x8c\xe9\x3b\xf8\x08\x4e\xce\x46\x0f\x06\x6b\xa1\xab\x03\xc7\xb9\xd8\xfa\x3c\x56\x6d\x89\x15\xc8\x15\xe8\xf3\xa8\x4c\x2d\x1b\x97\x47\xf7\xe2\x83\xd7\x03\xdf\xa7\x62\xc2\x56\x25\xfc\x7e\x75\x7d\x17\xa2\x35\x24\xb6\xf6\x2c\xda\x8a\xe8\x1e\x1c\x26\x78\xe4\x39\xf9\x4c\xe2\x25\x5c\x28\x2f\xc2\x56\x68\x0b\x3d\xd8\x3b\x5e\x7a\xa7\xcd\xa0\x33\x16\xcb\x3c\x4d\xf8\x1e\x82\xbc\x0a\x33\x26\x7c\x80\xd8\xa5\x1a\x99\xad\xe0\x90\xbf\x78\xf8\x48\x9b\x51\x99\xf9\xf7\xc6\xf6\x25\xcf\x56\xb2\xc8\x78\xb6\x67\xbe\x33\x9b\xfb\x01\xcb\xc5\x8e\xab\x42\x46\x0b\xb5\x13\x5c\x85\xa8\x3c\x0a\x72\x9b\x4e\x8e\xb5\x20\xe6\xe6\xf5\x5a\x44\x85\xa7\x7e\x04\xe3\xdd\xf5\xd4\xa1\x35\x38\xae\xed\x6e\xe5\xf5\x36\xfd\x27\xa9\x90\x68\x40\xee\x00\xf3\x49\x73\x88\x8e\xc6\x23\x83\x37\x20\xda\x47\x47\xae\xbd\x0c\xc2\xbf\xec\x9c\x62\x2b\x51\x3c\x0a\x60\x36\xa0\x54\xcc\x36\x1b\xff\x64\xe1\x86\xd3\x74\x98\xdb\x15\xac\x03\x24\x18\x2e\xb0\x10\x4c\xe6\x28\x98\x54\x8d\x4b\xe9\x05\x25\x87\x82\xb7\xe7\x05\xf9\xad\x5e\xc0\x31\x6d\x6e\x8f\xd9\x83\x88\x17\xaa\x4a\x70\x45\x36\xa3\x5f\x70\xcc\x4b\x92\x3d\xcd\x6e\x63\xfb\x78\x90\x2f\xff\x12\x48\x3d\x3c\x9d\xa7\x4b\x7f\xec\x91\x48\xc3\x46\x3f\xe7\xad\xca\xaa\x33\x86\xd6\xfd\x00\x48\x96\xc8\xad\xe4\x10\x29\x14\x56\xf0\x14\x6e\x52\x3a\xfa\x1e\xe4\xf6\x73\x00\x58\xf2\x4b\x36\x3c\x9d\x6d\x65\x2c\x94\xcd\x6b\x5f\x97\x09\xf2\xb5\x76\x89\xb6\x11\x9b\x97\xcd\xc1\xf9\x76\xb9\x58\xce\xaf\xc6\x02\x95\x37\x07\x7b\x08\xc0\xc8\xb8\xd7\xd9\x59\x2f\x54\x8e\xd2\xe0\x56\xe0\x09\x1c\xcf\x1b\x51\xc0\x69\x1e\x97\x09\xa6\x69\x83\xc7\x1c\x98\xc1\x78\x92\x30\x59\xe4\x0b\xe5\x88\xcc\x90\x96\x1e\x76\x58\xeb\x52\xb7\xda\xc0\xca\x29\x0c\xc3\xcf\x5c\x81\x1d\x26\x23\x59\x34\x20\xdc\xfb\x50\x14\x25\x4d\x05\xc7\xac\x42\x1c\xb6\x85\x0a\xef\x5c\xf5\x41\xa0\x14\x3c\x50\x8b\x7f\x8a\x6c\xb8\x1e\x44\x3e\x48\xec\x8f\x1e\x92\x29\x9b\x61\xeb\xcc\x85\xcb\xea\x9d\x62\x6d\x89\xc9\x80\x90\x96\xe6\x56\x53\xe4\xd6\x47\xee\xef\xad\x90\x23\x11\x95\x09\xcf\x12\x50\x07\x58\x97\x09\x93\xeb\x40\xba\x15\xc6\x00\x69\xac\xcc\x70\x45\x1a\xce\x6a\xeb\x25\xcf\xf9\x4e\x04\x19\xf4\xe4\xde\x49\x02\x0c\x05\x72\x73\x63\x70\xde\x94\xf5\x72\xca\xde\xd4\xb5\xfe\x61\x4d\x04\xf4\x97\x32\xc7\xed\xcf\xd5\x37\x48\xfe\x84\xd6\x99\x2a\x6a\x65\x56\xa4\x5b\x75\x1d\x23\x08\x34\xfa\xe3\x00\x1a\x56\x44\xa1\x1f\x35\xdc\x9a\xfc\x6d\x5e\xad\xc1\x36\xdc\x82\xe8\xa8\xa0\x3d\x15\x46\x56\x32\xa4\x0e\x3d\xa2\xa2\x8e\x9a\xb5\xa5\xb2\xbb\x1e\xa5\x58\x18\xc7\x91\x55\x0d\x74\x97\xc6\x57\x34\x98\x39\x21\x1c\x67\x48\xcf\x6e\x78\x31\x16\x9b\xe3\x92\x71\xc6\x57\xb4\x15\x07\x35\xa4\x9a\xb0\x7b\x8c\xac\xa7\x93\xc7\x3e\xa2\xa2\x4e\x84\xdb\x2b\x33\xc0\x56\x21\x78\xb4\xad\x66\xb3\x5a\xce\x49\xd7\x82\x7c\xa1\xe8\xb0\x1b\x9f\x88\x3b\xf3\x73\x0e\xa4\xa7\x98\xa9\xfe\x94\x5d\x2b\x81\xc8\x39\xbd\x0e\x0e\x15\xaa\x00\x69\x54\x01\xed\xbf\x0a\xc4\xc0\x13\xa9\xee\x2d\xc9\x87\x59\x72\x13\xc6\x7d\xe9\xb0\xeb\xe1\xb4\xc1\x5d\xa4\xc3\x96\x6c\x13\xc9\x38\xc1\xbc\x1c\x96\x2a\xdb\x7e\xe7\x0f\x00\xa8\xe3\x77\x80\xb6\x76\x0c\x1f\x96\x5e\x24\xb9\xbb\xc5\x55\xd4\xde\x43\xd4\x68\x21\x8b\xfd\xa1\xfe\xfd\xb0\xad\xa2\x10\x47\x48\x4a\x7d\xbc\x7a\x73\xf9\x76\x7e\x55\xd5\x81\xfa\xcb\xc7\xcb\x8f\xd5\xbf\xdc\x7c\xbc\xba\x9a\x5f\xfd\x31\xfc\xd3\xed\xc7\x8b\x8b\xcb\xcb\x37\xd5\xe7\xde\xce\xe6\xef\x6a\xcf\x99\x3f\x55\x1f\x9a\xbd\xbe\xbe\xa9\x29\x4f\x59\xd9\xa8\xe0\x4f\x77\xf3\xf7\x97\x6f\x96\xd7\x1f\x2b\xe2\x55\x6f\xfe\xf5\x6a\xf6\x7e\x7e\xb1\x6c\xa9\xcf\xcd\xe5\xc5\xf5\xcf\x97\x37\x07\xb4\xa7\x7c\x7b\x5b\xbb\xf4\x29\xe0\x63\x47\x2b\x91\xcd\xd8\x3a\x93\x42\xc5\xc9\x1e\xb1\xf7\xf6\x66\x5b\x03\xd3\x86\x67\xaf\xdc\x09\x5d\x9e\x02\xa1\xbf\xdb\x0a\xa6\x1f\x44\x06\x7c\x24\x58\x1a\x25\x2f\xf3\xfc\xbe\x93\xad\xb2\xc8\x9a\x51\x81\xde\x4c\xa1\x22\xdb\xbb\x5c\xb4\xbe\xea\x78\x2e\x2b\xfa\x08\x4b\x45\xd6\x57\x17\xb0\x8c\xb2\x32\x2d\xe4\xaa\x3b\x29\x62\x74\x8a\xeb\xd0\xbb\x37\x32\x2f\xb6\xd3\xd4\x5c\xb5\x6f\x8c\x95\xdc\x80\x53\x80\xc7\x50\xc2\xb1\x02\x7b\xee\x6d\x0b\xd6\x4c\xcb\x55\x22\x23\x26\xe3\xba\x3f\x05\x53\xd8\xd0\x65\x5c\x27\x68\x4d\x45\x06\xa6\xaa\xb9\x01\xa4\x99\x38\xe3\x65\xb1\xb5\xda\xff\x2e\x93\x11\x09\x53\x45\x94\x09\x8c\x05\x88\x1c\x9c\xb4\xa8\xac\x16\x7c\x09\x2a\x43\xb9\xf4\x31\xd0\xf6\x4c\x03\xb2\xfc\x8e\x18\x01\xbe\x89\xa5\x8f\x70\x92\xe2\xf3\xbd\x5d\x43\x35\x96\x79\x5d\x56\x1b\x4e\x78\xfc\xd1\xea\xb3\x99\x76\x9b\x9d\xda\xe9\x93\xe1\x20\xdb\xdc\x8d\xf6\x66\x1c\x9a\x63\xe1\x44\xa9\x26\x33\x50\xe9\xf4\xd3\x45\x26\xe0\x10\x21\x28\x80\xf5\x5f\x00\x74\x85\x72\x3d\x20\xc5\xc3\x5c\xd5\x56\x62\xcb\x93\x35\x5a\x1c\x66\x68\xfc\xba\x6a\x4e\xd1\x3b\x7d\x2f\xd4\x0d\x0e\xd8\x37\xd9\x0e\x15\xde\x7c\x3c\xbb\x82\xf3\x08\x79\x17\xa6\xa9\xa3\x9d\x55\x36\xd7\x0d\x8c\xa9\x02\xef\x09\xc1\xcf\x98\xd2\xe1\xb9\x93\x6d\x9a\xdc\x7a\x2d\xbf\x98\x02\x17\x4a\xb4\xb2\xc7\x02\x5e\xc8\xf2\x5c\xb9\x7d\x19\xb0\x51\x48\x16\x74\x2f\x14\x28\xbb\xa1\xf0\xf3\xc1\x39\x3b\xce\x7f\xde\x1c\x8b\x1e\x87\x3e\xf8\xfc\x64\x45\xf0\x2e\x8c\xf2\xd8\x7e\x2a\x30\xc7\x66\xca\xde\x10\x05\x8a\xf9\xcb\xc5\xbb\xf9\xe5\xd5\xdd\xf2\xe2\xe6\xf2\xcd\xe5\xd5\xdd\x7c\xf6\xee\x76\xe8\xf2\x7b\x8a\xbc\xa8\xda\xea\xab\xa7\x07\xb9\x1d\xe2\x9c\x56\x9e\x4f\xcf\x75\x8d\xf2\xcb\x0e\x86\xe4\x70\xed\x65\x9c\x2e\x63\x99\x47\xe6\xf8\xdb\x2f\x85\x8a\x81\x76\xfb\xa8\xa9\xda\x5e\x54\xbd\x15\xee\x09\xe6\x9e\xb0\x3b\x08\x9e\x76\x0f\x76\x46\xbb\xdf\x01\x75\x07\x6e\xc8\x4c\x98\xc5\x1f\x9b\xfb\x81\x3b\x6d\xa6\x87\xb5\x56\x4c\x71\xa7\xb5\xad\x5a\x44\xbd\x4d\x58\x5f\x99\xe7\x25\x37\xfb\xa3\x7d\x0c\x20\x87\x1d\xbd\x42\x5c\x88\x21\xf7\xb7\x0c\x74\x6b\x99\xcc\x17\x6a\xc7\x55\xcc\x0b\x9d\xed\x3b\x9a\x38\x6c\xf3\x0c\x97\x4d\x75\x0b\x0d\x8f\x6c\x25\x44\x6c\x47\x01\x1f\xe5\xaa\x3e\x95\x90\x21\xfc\xee\xfa\xcf\x97\x57\xb7\xcb\xcb\xab\x9f\x97\x1f\x6e\x2e\xdf\xce\xff\xea\x90\x90\x29\xcf\xdb\x74\x2a\xd3\x4c\x98\xdd\xc5\x12\xae\xb4\xee\x2f\x28\x1e\x69\xcb\x21\xc1\x30\xb9\x5e\x28\xbb\xb3\x64\xbe\xf8\x6d\xa6\xcb\xcd\xb6\xbd\xa0\x7a\x2d\x3f\xcc\xee\x7e\x3a\xaa\x9a\x40\x87\x85\x0a\x73\xb8\xda\x9a\x88\x50\xb9\xa6\x7d\x0f\x61\xa4\xb5\xea\x01\xa9\x1b\x3c\xda\x16\x65\xe8\xd8\xd1\x8e\xba\xbd\x34\x37\xad\x5e\xe3\xbf\xe5\xf1\xae\x09\x74\x17\xec\x9b\x95\x63\x04\x10\xca\x28\x54\xda\x28\xed\x55\xcb\xdf\x2a\x27\xd8\x0f\x67\x89\xd8\x6c\x44\x8c\xd3\xab\x5e\x30\xf9\xe0\x68\x0b\x8c\xfc\xb9\xde\xd6\x8b\x24\x25\x78\xc2\xc1\xec\xf0\x5e\xc3\x37\xf0\x0f\xee\x95\xf6\xbd\xe2\xc2\xca\x95\x47\x5a\xe5\x05\x57\x1d\x81\xe4\x87\x26\x42\x73\xd0\x56\x74\x9d\x31\x97\xfc\x44\x0e\x13\x1b\x32\xf0\xeb\xa0\x0b\xf0\x72\x3a\x2e\xd4\xd5\xe3\x46\xa4\x09\x8f\x84\xcb\x61\x40\x2e\x42\xb8\xd7\x1f\x13\xc0\x23\xc1\x46\x45\xfe\x96\x40\xc8\x31\x50\x77\x6f\x99\x02\xe0\xb9\xbd\xb1\xfb\xf1\xf3\xbb\x56\x7a\x2f\x6e\xc4\x40\x06\x8e\x66\x54\xcc\x22\xe8\x3b\xfa\xa2\x40\x86\xae\x13\x96\x3c\x6a\x3a\xd4\xbe\xfc\x33\x0d\x3c\xde\x99\xab\x8e\x6e\x6e\x39\xfe\xdc\xf4\x70\xa6\x63\x9f\xbf\xb0\x28\xb2\x5e\x5a\xd0\xa7\x08\x47\x7c\xc8\xf4\x4e\xe6\x62\x56\x14\x99\x5c\x95\xa1\x2e\xe2\x48\xc0\x5c\xe5\x72\xe2\x1b\x9c\x66\x3a\x2e\x23\x4b\x09\x04\xad\xf5\xb0\x1f\xf2\xf2\x59\xab\x23\x66\x67\x66\xf6\xd1\xcd\x4d\xc4\x67\x00\xe8\x5f\xa8\xae\x18\x9b\xdd\x18\x3b\x7c\x7f\x1f\xec\x51\x7e\xca\x94\x6c\x99\x14\xdd\x9d\x69\xe7\xc0\xb0\xc4\x5a\x66\x1f\x07\x0b\xb8\x03\x35\x45\xd3\x65\xc5\x31\x80\x5e\xb5\x51\xba\x18\x40\xdc\x51\x33\x0e\xdc\x35\x0c\x1b\x53\xcd\x98\x41\xbb\x61\xcb\x73\x34\xe7\x8b\x68\x5b\xad\x38\xb4\xa6\xca\x5f\x58\xaf\xae\x33\x8f\x4f\x73\x9b\x0c\x0a\xa3\x4d\xd0\xd1\x20\xc9\xb1\x5d\xd1\xa2\x73\xc2\x9a\xe3\xbc\xdd\xa1\xc5\xe8\x6e\x74\x78\x18\xc0\x3e\x9a\xf0\x52\x45\x5b\x96\x26\x1c\x93\xc9\xb7\x3c\xc7\x29\x6d\xb1\x24\x7c\x25\x13\x59\x00\x4b\x0f\x86\x38\x6b\x3d\x6c\xae\x79\x3c\xbb\xb7\x14\xc5\xdc\x53\x32\xf5\x4d\xfa\x13\x31\xbb\xae\x55\x5f\x15\xb5\xeb\x97\x6c\xb8\x0d\x0d\x9b\x96\x84\xd8\xf5\xc3\x61\x36\x62\x98\x96\xbe\x2d\xe3\x46\x96\x4a\xfc\x50\x7f\xbd\xd2\xdf\x2d\xd6\xcb\x78\xc4\x0a\x71\xef\x8f\x38\x7d\xea\xcc\xfc\xad\x2b\x6b\x9d\x68\xde\xa1\x0e\x6d\xcb\x46\xa2\xfd\xae\xb2\x63\x5d\xae\xba\xa8\x9d\xb1\x56\xfd\xa5\xf7\x05\x43\xec\xba\x7d\x2a\x67\x69\xb8\x01\xf2\x42\x14\x72\x9c\xbf\x27\x68\x34\x2f\xc4\x19\xbc\xde\x5e\x38\x65\x18\x0e\x6e\x73\x63\xa2\x79\xb9\x17\x67\xb4\x01\x96\xb0\x6d\x76\xd5\x4e\xe7\x53\x30\xe1\x27\x8e\x97\x54\x07\xa6\xd2\x61\x05\x89\x3f\xfc\xd0\xd2\x2d\x8d\x46\xff\xa5\xe4\x66\x3f\xbc\x5e\xdf\x22\x57\xce\x29\x8d\x2e\x64\x73\x59\xb5\x6f\x3f\xf5\xaf\xde\x55\xc3\x6b\xe1\xc4\x1f\x9c\x89\xdc\xd6\x9a\x5b\xf3\xf6\xf0\x5d\x68\x5e\x71\xa3\xa5\x99\xd4\xc0\x19\xa3\xd7\xc8\xc0\xd8\x4d\xfc\xd9\xfa\xdd\x13\x7a\xf2\x73\x29\x4a\x61\x26\xd0\xaa\x8c\x37\x4d\x2f\xf7\x08\x4b\xd9\x37\x69\xab\x1f\xd9\xae\x8c\xb6\xcc\x16\xce\x62\x91\xf0\x7d\xa5\x69\x60\x24\x16\x1a\xc8\x36\x47\x51\x67\x05\xdc\xa9\x51\x99\x17\x7a\x07\x00\x63\x5f\x6e\x56\x2a\x58\xe5\x8c\xdb\xd5\xd5\xb6\xbf\x5b\x76\xb9\xa7\x88\xc8\x6d\xd2\x72\xc9\x5b\xc9\x58\x0f\xcc\xa1\x1a\x89\xeb\x90\xad\x65\xd6\x92\x7a\x5f\x27\x33\xf5\x5a\x6c\x03\x29\x4c\x2b\x54\x7b\x47\xc6\x79\x6f\x3f\x5c\x5e\xcc\xdf\xce\x6b\x41\xd6\xd9\xed\x9f\xc3\x7f\xff\x72\x7d\xf3\xe7\xb7\xef\xae\x7f\x09\xff\xf6\x6e\xf6\xf1\xea\xe2\xa7\xe5\x87\x77\xb3\xab\x4a\x28\x76\x76\x37\xbb\xbd\xbc\x3b\x10\x6d\x6d\x7e\xb5\x7b\x56\xf2\x80\x09\xd0\xe2\xbf\x2d\x39\xbd\x75\xba\xd0\x57\x5f\xb1\x99\xe5\x45\xac\x30\x77\xda\x88\x39\x40\x6c\x50\xaa\x9d\x02\xeb\x6f\x78\xc1\x2f\x78\xc1\x13\xbd\x99\xb2\x19\x23\x74\x3c\x66\x3d\xe4\xa6\xe7\x89\x34\xce\x4c\x55\x2c\xc2\xd8\x8c\x91\x77\x68\x78\xf5\x4d\xbd\x26\xba\xc6\x44\x84\x3a\x0d\x36\xc5\x6f\xa1\x2e\x1f\x84\x2a\x4a\x20\x91\xe7\x49\xc2\xe8\xb3\xf6\x81\x80\xbe\xc0\xd6\x32\x97\x3b\x99\xf0\xcc\x0b\x25\x5e\x53\x59\x70\x65\xb3\x75\x75\x6c\x55\xcd\xdc\x78\x7b\xab\xfd\x38\x67\x50\xef\x8b\x77\x73\x98\x4f\x51\x61\x55\x80\xec\xc7\x17\x0a\xe9\x00\xe9\x8b\x3b\x0e\x99\x38\x85\x26\x37\x33\x7e\x9e\x1e\xee\x9e\x88\xf9\x29\xcb\xd1\x06\x64\x9e\xeb\x7a\xed\x2a\x69\xff\xe3\x52\x15\xd9\x7e\xb0\x65\x7b\x07\xa9\xe7\x39\xdc\x4e\x08\xd8\x57\x15\x4f\x44\x2f\x20\xb3\xa5\x5f\x81\xb9\x6b\x51\xa7\x14\xa4\x72\xb1\x28\x04\xf9\x74\xdc\xc0\x12\x63\x86\xfc\x5a\xfb\x21\x64\x07\x82\x5e\x58\xe9\x52\xc5\x39\x41\x10\x77\x52\x9d\xef\xf8\x97\x97\xb6\xa5\xc8\xb6\xe1\x24\x4c\x80\x49\x4d\x24\xe6\x2e\xba\x37\x3b\x7e\x7f\x77\x2d\x54\x4f\x7f\x1d\xbe\x2f\xd8\x63\x06\x2e\xbe\xde\x4b\x81\x60\xca\x07\xb1\x6f\x1b\xbf\x86\x0c\x15\x02\x36\x69\xc1\x43\x21\x69\x26\xcc\x83\x0e\xa9\x99\x20\x00\xd7\xfd\x1b\x32\x32\x2a\x52\x99\xed\x07\x59\x08\x7e\x38\x69\xd9\xb4\xc2\x2e\x86\x5b\x81\x83\x75\xc4\xe8\x4b\x66\xcc\x10\x84\x61\xfd\xff\x94\x81\x42\xd1\x65\x33\x58\xff\xa1\x57\x6c\x0d\xe9\x58\x24\x85\x9f\x09\x88\xf7\xc0\x50\x58\xe2\x7b\xe0\xdb\x6a\x20\x3b\xec\x14\x48\x44\x0e\x51\x10\x65\x2e\xdc\xe2\x73\x49\x81\xec\xef\x7f\x3f\xce\xe8\x28\xb2\x3d\xb3\x22\x2b\x8d\x13\xd7\x19\x36\x50\xaf\x52\xc9\x36\x12\xbe\x9b\x52\x19\xbb\xe4\x29\x2c\x8e\xe1\x41\xde\xda\x47\xe9\x9f\x07\x33\xa6\x6c\x7c\x22\xc3\xe7\x9f\x8d\x53\xf5\xe7\x1a\x95\x2a\x7d\x0e\xf0\xf9\x54\x7a\x78\xa0\xad\x78\x74\xff\xc8\xb3\x18\x9d\xd8\x00\xca\x99\xb2\x9f\xf4\xa3\x78\x10\xd9\x84\x45\x22\x2b\x38\xf1\x98\xe5\x80\x4a\x80\x05\x45\xe5\x2c\x14\xa4\xab\x20\x29\x9c\xca\xcb\x4c\xb0\x42\x6e\xb6\x85\xc8\x42\x4c\x89\xce\xcc\x76\x54\x20\x85\x65\x2a\x22\x62\x8e\xea\xe8\x80\x75\xc2\x1f\x9a\x06\xdf\x31\x94\x17\x6c\xee\x72\x6e\x6d\xd0\xd6\x8a\x89\xf4\xa1\x80\xa8\xc3\x68\xd3\x44\xae\x9f\x09\xdb\xe8\x84\xab\xcd\x74\x3a\x65\xa2\x88\xa6\x2f\x47\x4d\x74\x2a\x30\x0c\x03\x3b\xac\x79\xa2\x75\x2e\x92\xbd\x63\x3b\x72\xd9\x40\x00\x3f\xfd\x52\x08\x95\x4b\x74\x7a\xb5\x4c\xff\xdb\x7a\x88\xe4\xeb\x46\x94\xda\x7d\x15\xa3\x73\x4d\x3b\xca\x01\x6d\xb2\x11\x25\xe1\xf3\xed\xd7\xd0\xa3\x72\xa7\xdb\xcb\x52\x5a\x8d\x4d\x08\xfe\x59\x77\x29\xed\x1f\x45\x42\xd8\x5a\x12\x31\xb6\x1c\x95\x44\xd9\xde\x67\x8d\xbc\xd6\x13\x52\x5a\x7b\xb2\x53\x47\x26\xa6\x0e\xf1\x8a\xdc\xd6\x87\x7b\xf4\xb2\x38\x2c\x97\xd2\xda\xa0\x91\x89\xbf\x3e\x43\x7f\x8c\xe9\x84\xb9\x83\xc9\x1e\x6e\x5c\x2e\x0d\x18\x62\x0b\x71\x10\x1b\xa9\x84\x7e\xe0\x4e\xeb\x63\x47\x8e\x49\x2b\x08\x15\xe5\x85\xce\xf8\x46\xb0\x9d\x88\x65\xb9\x6b\xdd\x6c\x5c\x75\x4f\x01\x41\xea\xa4\xdc\x75\x73\x1a\x9e\x6a\x40\xfb\x4a\xe2\x7f\x5d\xc0\xe7\x06\x1b\xd0\x33\x87\xef\xb7\xaa\x55\x54\x5f\x0c\x84\x50\x5f\x9b\x93\x32\x93\x39\xb0\x6f\x1e\x93\xff\xe9\x8a\xc1\xa2\x21\x8c\xbc\x4f\xd1\xb7\x50\x19\xdd\x33\x1b\xdf\xa3\x57\x72\x1c\x55\x88\x3d\x77\x1f\x0a\x75\x68\xe5\x78\xe7\x4b\xa6\xcb\x06\xf3\xd0\xa0\x70\x3f\x98\x8d\x01\x27\x3e\x61\xbf\xa0\x40\x02\xa8\x14\x9a\xad\x6d\x46\xe1\xbd\x08\x38\xda\x62\x60\xcb\x7f\x44\xc2\x9f\x3f\xff\x98\x5b\x28\x0b\xa1\x8d\xbc\xc5\x52\xf8\x8f\x60\x74\xe8\xe1\x7b\x0b\x32\xc3\x16\x62\x11\xc0\xa4\x16\x73\x55\xb4\x16\xe0\x31\x98\x50\x16\xbe\xf2\x33\x2f\x93\xf6\xc7\xa9\x7c\x78\x14\x35\xd0\x66\xbf\xdc\x32\xec\x6a\xe2\x55\xcf\xfa\x2a\x1a\x14\x72\x18\xe6\x06\xdd\xb5\x3c\xc2\x12\xac\x8c\x03\x76\xba\x25\xd6\x37\xdd\x2e\x8a\x68\xeb\x2d\x8f\xaa\x98\x39\x09\x5c\x52\x3b\x77\x9e\x29\x1e\x11\xc4\x21\x14\x53\x6e\x94\x0e\x45\x4e\xb4\x12\x10\xa6\x33\x1b\x90\x0e\x8b\x65\xb2\x38\x8c\x77\x1b\x49\x9f\x76\x68\xaa\x15\x1a\x71\x4c\xd4\xce\x4a\xb4\x15\xae\x14\x12\x49\x97\x2c\x58\x18\xef\x44\xa4\x97\x58\x67\x10\xaf\xd2\x58\x2c\x54\xf5\x53\x8d\x4e\xb2\x80\x34\x99\x09\x24\xfe\xcd\x8d\xf5\x56\xc8\x07\xb3\x50\x9b\xd3\xda\x4d\x50\xd8\x01\x9a\x73\x6f\xa1\xb0\xda\x01\x7b\xf0\xbd\xd8\xe7\xa1\x38\x23\xcd\x28\xd6\x35\x21\xa5\x69\x0f\x8d\xd7\xe1\xa1\x80\x8e\x5b\x52\x0b\x76\x83\x71\xa2\xf8\xd1\xf7\xe6\xe5\x1e\xa4\x6b\xa3\x70\x33\x07\x7d\xca\xa6\xf7\x29\xd2\x36\xe1\xfb\x99\xc6\xd0\x83\xd9\x00\xaa\x18\x82\x11\xc3\xfc\x1b\xb8\xf8\x9a\xfb\xed\x42\x11\xc1\x78\x70\xc8\x99\x0d\xa7\x39\x6c\x94\x47\x8e\xb4\xc6\xfb\x0a\x07\x0e\x70\x40\x5a\x3e\xcc\xea\x27\x6d\xe4\xd9\x6a\xfb\x2e\x14\x7c\x1a\x33\x6d\xad\x0f\xaf\xf5\x83\x47\x22\x24\x69\x70\x3b\x51\x91\x41\x3a\x1b\x3e\x49\x34\x88\xa8\xf2\x89\xb7\x9f\x48\x98\xee\x9b\xa9\x56\x40\xa2\x85\x23\xde\x5e\x5e\xdc\x5c\xde\x7d\x35\xd4\xa4\x85\x2c\x8e\x86\x4d\xda\x7a\xbe\xb9\x7c\x3b\xfb\xf8\xee\x6e\xf9\x66\x7e\xf3\x1c\xb8\x49\xfa\xe9\x08\xe0\xe4\x2d\xe9\x16\x5c\x68\x55\x88\x2f\x27\x9d\xc9\x59\xa9\x96\x7c\x44\x02\x8f\x53\x2e\xe9\x33\x77\xb0\xd0\xa6\xee\x82\x13\x45\x20\x12\x4e\x3c\xd1\x9c\xcc\xc2\xda\x3b\x0d\xd7\x32\x49\x20\x9f\xd9\xb9\xd7\x29\x57\xce\x74\x2a\xec\x3f\x96\x77\x94\xf6\xd4\x85\x5a\x55\x64\x31\xc0\xe5\xb7\x35\x97\x60\xcc\x64\x4e\x4d\x07\x64\x12\xf2\x44\xfb\xa4\x19\x36\x52\x09\x5f\x0d\x54\xe4\x2e\x15\xeb\xe4\xd3\xa6\x41\x7c\x4e\x7c\x18\x19\x5e\x43\x6d\x4d\x3b\xe3\x2a\xf3\xd3\x9a\x9f\xf6\x47\xd7\x42\x5c\xc4\x52\xa1\x61\x5a\x59\xcd\xb7\xed\x53\xf7\xdc\x2f\x01\xe8\x77\x33\x92\x1c\x62\x10\x20\x7a\xed\x07\x92\x06\x02\x25\x9b\x7c\x70\xe2\x5e\x22\x8e\x4a\xaf\x6b\xfd\x6c\xb6\x42\xd3\xd7\x12\x22\x15\x9c\x28\x5a\xa2\xa4\xcc\x0b\x91\x91\xdb\x64\xf6\xcb\xed\x42\xbd\x36\xc7\xd7\x4b\x3a\x85\x48\xd6\x07\x3f\x81\x28\x1e\x5d\xf9\xbe\xb5\x50\xc2\x1d\xec\x3b\xf4\x51\xef\x04\x57\x39\x83\xa5\x91\x24\x22\xf3\x33\x03\xeb\x23\x44\x4c\xa2\x94\xc0\x49\xeb\xdf\x27\x4d\x7a\x0d\xab\xd6\xd4\x97\x7e\x25\x55\xf6\xfa\x7c\xea\x4a\x97\x07\xdc\xf4\x73\xce\x9c\x96\xf4\x9d\xa1\xb3\x88\x20\xe7\xad\x93\xa8\x9a\x4c\x33\x68\x2e\xdd\x61\x71\xbf\x4d\xa5\x27\x9c\x4a\x03\xce\xf5\xf0\x94\x60\x5b\x6d\x36\x50\xa7\x79\xe3\x63\xee\x8e\xae\x23\x01\x04\x9c\xe9\xc6\xd6\x53\xa7\xa6\xfb\x78\x0a\x10\x06\x8a\x3a\x0d\x67\x3c\x6b\xe1\x05\xf2\x02\x63\x36\xb6\xd3\x2b\x29\xf9\x3c\xfc\x7b\x33\x8b\xb8\x54\xba\xb0\x4c\x1a\x0e\xe4\x48\x88\x4d\xf3\x80\xa3\x70\xe9\xad\x23\xd1\xa2\x58\x2b\x65\x79\xa2\x2c\xdb\x5d\x88\x0c\xad\xe4\x16\x63\x2d\x42\x56\x02\xcb\x44\xe0\x98\x4c\xc6\x4c\xbe\xe3\x85\x3f\xab\x73\xce\xb1\x62\x1e\x05\x76\xb8\xba\xbe\xba\x0c\xa1\x0a\xf3\xab\xbb\xcb\x3f\x5e\xde\x54\xb2\xd2\xdf\x5d\xcf\x2a\x99\xe5\xb7\x77\x37\xb5\x84\xf2\xd7\xd7\xd7\xef\x2e\x1b\x98\x87\xcb\xbb\xf9\xfb\x4a\xe1\x6f\x3e\xde\xcc\xee\xe6\xd7\x95\xe7\x5e\xcf\xaf\x66\x37\xff\x1a\xfe\xe5\xf2\xe6\xe6\xfa\xa6\xf6\xbd\x8f\x17\xfd\xe8\x89\x4a\x33\xda\xdd\x3f\x3e\x38\x1b\x10\x84\xb6\x2e\xe3\xaa\x30\xea\x09\xab\x78\x20\x0c\xef\xd0\x74\xb4\x49\xe7\x71\xa8\x1b\x80\x0b\xc3\x54\x75\xd4\xac\x7b\x7a\x25\xd7\x4a\xd7\xa5\xfc\xb4\x6d\xcf\x9c\x6a\xcb\xa7\x80\x45\xf6\x1a\x80\xee\x2b\x35\xc7\x6d\x5e\x40\x66\x1e\x76\x6d\x0a\x11\xac\x0d\xef\xd4\x31\x52\xf1\xb3\xd7\xd4\x7e\xe3\x50\x3d\x3d\x21\xd5\x01\x5e\x9f\xa7\xe2\xf4\xe8\xab\x74\xf0\x31\x9b\x32\x2f\x63\x6b\x28\xd8\x1f\x83\x83\x1b\x9a\x61\x66\x4e\x30\x1d\xbb\x24\x37\xdb\x93\x6f\xfa\x39\xe4\xc6\xd6\x9f\x3e\xd2\xac\x7b\x8d\x70\x64\x44\xbd\x81\xf8\x69\x4c\xbd\xef\x78\x7e\x3f\xb6\xde\xf4\x91\x66\xbd\xc1\xec\x3b\xaa\xde\xe0\xf0\x2e\xda\xc9\x60\x46\x6c\x62\x61\x31\xd5\xea\xb9\x4c\x75\xf7\x48\xa0\x6c\x3b\xac\x8e\x66\x01\x3c\xef\xf5\x32\xe5\xc3\x03\x19\x50\x1b\xb7\x5c\x79\x8d\x1b\xfd\x16\x7e\x85\x16\xae\x32\xc1\xef\x63\xfd\x48\xe3\x51\x87\xc9\xb2\x41\xbb\x79\xb5\x83\xcc\x1e\x6e\x8f\x88\x22\xa3\x08\x14\xa2\xd4\x7c\xf1\x00\x93\x93\xc4\xee\x8d\x36\x58\x20\xc9\x5a\xa7\xd3\x01\x02\x23\xe5\x47\x67\xa1\xd0\x9a\x6f\x93\x75\x35\xa3\x6a\x6a\x44\x04\x18\xd0\x54\x67\x43\x63\x70\x3d\x0f\x06\x96\xb2\x59\xca\x0c\xc0\x74\xab\x0c\xee\x4c\xd0\x21\x52\x81\x33\x39\x33\x17\x9e\x4c\x44\x32\x17\x81\xb4\x55\xeb\x89\xfd\xf9\x34\x21\x8c\x82\x17\xad\x6e\xd7\xc1\xfe\x70\x1e\x15\x25\x4f\xd8\xe7\x52\x64\x7b\xe2\x11\x44\x5f\x25\xfe\x25\xe2\x0a\xd3\x66\x0a\xb1\x4b\x21\x37\x3d\xcc\xf7\x58\xa8\x5f\x00\x28\x81\x43\xf0\x22\x67\x7f\x04\xc8\x83\x7d\x98\x0e\xe1\x1d\x2f\xe0\x2c\xfe\x0b\x7e\xc3\xfd\x36\x5d\xa8\x8a\x54\x4c\xf0\x56\x45\x35\x66\xba\x50\x56\xab\x21\xd6\x51\x3e\x85\x1b\xdf\x54\x67\x9b\x73\x52\x39\x36\x93\x5d\xdf\xaf\xb4\xbe\x3f\x17\xea\x1c\x7c\x52\xc5\x39\x2f\x0b\x7d\x0e\x70\x29\x1c\xff\xfc\xdc\x8a\xa1\x5a\x35\xd9\xfc\x7c\x2b\x1f\x04\xfc\xbf\xe9\xb6\xd8\x25\xff\x90\xa7\xdb\x2f\x67\x9b\x24\x3b\x33\xef\x9e\x85\xef\x9e\xd9\x77\xcf\xec\xbb\x67\xe6\x35\xfc\x7f\xe9\x1e\xc3\x3b\xe2\x0b\x37\x67\xd9\x64\xa1\xa4\xca\x45\x56\x80\xf5\xf3\x98\xc9\xc2\x6b\xf2\xec\xd9\x8b\xff\xfa\x2f\x36\xcd\xf8\x23\xe6\x75\xbe\xe1\x05\xff\x80\xfe\xc5\xff\xfe\xef\x17\x10\x50\xc5\x0c\xa7\x94\x67\x9f\x4b\x51\x2c\x54\x2e\xcc\x22\x64\xff\x67\xa1\x20\x02\xbb\xdb\x2f\x0b\xf4\xbb\xa2\x0f\x32\xce\xd9\xbf\x60\x99\x73\xe4\xd4\x8c\x73\x53\x52\x47\x6e\x85\xe4\x49\x8b\x7e\x76\x87\x8b\xfe\x73\xf2\x86\x9e\x1f\xb1\xac\x3f\x27\xd5\x55\x6d\x55\x61\xf2\xcf\x09\x1c\xa0\x89\xe6\x16\xac\xc5\xdc\xe4\x85\x7b\x32\x55\xae\x6d\x8d\x34\xa0\x01\xcf\x1a\xa6\x6f\x5f\x2b\xb7\xc8\xeb\x6d\x3d\xf7\x8d\x6d\x04\x62\x05\x3e\x0e\x01\xd1\x73\x69\x56\xc8\x2d\x7a\x42\xc1\x72\xc3\x96\x83\x4d\x4a\xa1\x73\x57\x1e\x3a\x2e\xf2\x3f\xbc\x3a\x3f\x9f\xb0\x4d\x0e\xff\xb3\xfa\x0c\xff\x03\xe8\xa1\xa7\xa2\xa6\x6d\x74\xa6\x03\xc2\x35\x47\xf9\xf0\x48\x3c\x05\x8a\xee\x6b\xb0\xa1\xd7\xa6\xe9\xeb\x52\xc5\x89\xf0\xf9\xa0\x95\x90\x48\xa2\xad\x7e\x3f\x3a\xc6\xea\xba\x33\x30\xc6\x2b\x11\x71\xb3\xf1\x35\xbe\x8d\xe0\x52\xbd\x2e\x84\x42\x6f\x58\xe6\x65\xe9\x38\x7a\xae\xc0\x2c\x06\x28\x24\x2f\x08\x72\x2e\xe0\x8f\xf0\x11\xa0\x17\x9f\xd4\x7f\x62\x7b\x5d\x12\x53\x36\xf0\xbf\xc6\x22\x4a\x40\x8e\xc0\x72\xe0\xb0\x4c\x14\x65\xa6\x18\x67\x29\x57\x31\xcf\x61\x06\xae\x33\x88\x76\x66\x8c\x37\x2b\x3a\x41\x38\xae\x2e\x0b\x60\x76\x42\x64\x41\xd8\x13\x48\x65\x1e\xd4\x79\x12\x54\x02\xcf\x04\x60\x54\x6e\xbc\x38\x5d\x28\x2b\x9c\x46\x58\x38\xf4\x94\x45\x3a\xdd\x13\x6f\x4f\xbd\xd3\xa5\xf5\x9c\x51\x77\x4f\x3c\xde\xa4\xfe\xec\x84\xc9\x6a\x68\x0d\x58\xd3\x8b\x40\xfa\xd9\x8a\x67\x7f\x27\x54\xa4\x63\x91\xe5\x2f\xcd\x32\x94\xee\xde\x81\xf6\x83\xcc\xfd\x60\xc0\x2e\x65\x0e\x37\xf2\x16\x9a\xe2\x9d\xbc\x90\xe9\x9d\x0a\xcf\x76\x9b\x9d\x73\x78\xa9\xfc\xda\x51\x30\x6d\xf5\xa5\xff\xfc\xaa\x88\x98\x10\xd7\x69\xef\x9c\xc7\xbb\x20\x70\xc9\x86\x3b\x2e\x16\x8a\x36\x0e\x19\x27\x56\x67\x57\x16\x20\xe5\x97\x89\xbc\x58\x28\x3a\x81\x27\x6c\x2d\xb8\xb1\xf3\x26\x2c\xca\x1f\x70\x33\xc6\xe3\xbe\x78\xd4\x1e\x83\x63\x45\x5a\x00\x0c\x5b\x29\xdc\x3b\x89\xf1\x31\x40\x14\xf0\xa8\x40\x80\x41\xa7\x24\xbb\x35\x55\xa0\xb3\x5a\x37\xc4\x23\xfa\xc1\x6a\x7e\xd4\xf5\xb5\x42\xc9\x19\xe8\x89\x3d\x06\x8a\x59\xbd\x1e\xf8\x83\xd9\x78\xb0\x75\x08\x03\x09\x36\x47\xb0\xb8\x09\x4b\x8b\xeb\xcc\xc7\x70\x43\xe2\x75\xf0\xcd\x74\x2d\xaa\x9e\x8e\x80\x0a\x1c\xe7\xb7\x30\xaf\x1e\x74\x58\xe5\x22\xb3\x82\x24\xd8\x56\xa4\x49\xdc\xca\x2c\x3e\x4b\x79\x56\xec\xed\xf4\x4d\xe4\x0a\x74\x0c\x12\x79\x2f\xd8\x2c\xcb\xf4\xe3\x53\xf7\x42\xe7\xd6\xd2\x75\xc3\x3e\x05\xc9\x3e\xf6\x96\xdf\x4a\x92\x5a\x77\x77\x1c\x47\xc8\xda\xe5\xf8\x68\xfd\x4e\x26\x8a\x6c\xbf\x34\x13\x71\x97\x76\xee\x14\x83\x92\x26\x86\x1b\xb9\xe3\xb8\x5e\x6b\x2e\x8c\x4e\xae\xd7\xca\xa8\xfe\x7a\xb8\x5e\x5b\x68\x5c\x9b\x5c\xaf\xf3\xab\xf9\xdd\x7c\xf6\x6e\xfe\xff\x6a\x25\xfe\x32\x9b\xdf\xcd\xaf\xfe\xb8\x7c\x7b\x7d\xb3\xbc\xb9\xbc\xbd\xfe\x78\x73\x71\xd9\x4f\xde\xd4\xac\xbd\x37\xc1\xcf\x58\xf8\x9d\x57\xec\x2e\x00\x6a\x60\xb2\x01\xd9\xdf\x24\xe4\x09\xb3\xca\x2c\x66\xa9\x36\x13\x58\xa8\xaf\xd8\x65\x96\xcd\x77\x7c\x23\x3e\x94\x49\x02\x70\x2a\xcc\xec\xb9\xc8\x04\x5c\x3c\x27\xec\x83\x8e\xe7\xc1\x7b\x90\x8e\xd8\xda\x0c\xf8\x3e\x8f\xe3\x4c\xe4\x39\x7e\x7e\x42\xdf\x0f\xc0\x43\x2e\xd5\x91\xc0\x73\xfc\x81\xcb\xc4\xdc\xdf\x5e\xb1\xd7\x3c\xba\xd7\xeb\x35\xa6\xcf\x4c\x5c\xe2\x14\xfb\x5c\xea\x82\x33\xf1\x25\x02\xc2\xb2\xf6\x79\xf2\x4e\x6f\xbe\x01\x54\x79\x40\x78\xaa\xe3\x92\x02\x82\x6d\xcb\xf6\xe3\xbc\x7d\x23\xa0\x56\xbe\xc7\x57\xdf\xe2\x9b\xed\x0e\xca\x22\x79\x02\xae\x80\x77\x7a\xd3\x2e\x9f\x03\xd6\x35\x69\xfe\x50\x20\x21\x22\xe6\x11\xbd\x61\xb9\x54\xf7\x0b\xf5\xcb\x56\x28\xa6\xcb\x0c\xff\x04\xd7\x7c\x63\x66\x26\x65\xbe\x15\xa0\xa7\x3b\x61\x8f\x82\xed\xf8\x1e\xcd\x66\xb8\x13\xb8\xb4\x61\x98\x32\x70\x8a\x98\xb7\x13\xa9\xcc\x6e\x91\x4a\x9b\x97\x50\x1f\xfa\xa7\xb8\x71\x59\xba\x3e\x7e\x3a\x9b\x6e\xdf\x79\x5a\xc1\xe7\x81\xab\xcc\xe3\x26\x2d\x40\x88\x76\x6e\x90\x14\xd5\xfa\xbe\x4c\x3d\xb1\xe7\x0b\x1b\x9c\x84\xee\x7e\xd0\x32\x66\x71\x99\x26\x32\x72\xfb\xee\xa3\xce\x3a\xd9\x8b\x31\x81\x66\xf8\xa9\x53\x4f\x0b\xeb\x6b\x58\x4b\x76\x4e\x80\xa4\xeb\xe1\x31\x7e\x66\x26\x67\x26\x55\x94\x94\x20\x96\x56\xe6\x22\x3b\x2b\x32\xb9\xd9\x80\x01\x6e\x73\xfd\x7e\xfd\x54\xcf\x9e\x4a\xf2\xf4\xb4\xb6\x30\xe9\x3c\xd1\x1b\x19\xf1\x24\x04\x37\x7b\x54\x84\xe3\x92\xb5\xcb\x9e\xa4\x64\x21\x0f\xc2\x56\xa8\x93\x0e\x2a\xcd\x04\xd0\x19\x2f\x61\x2b\x5f\xd2\x76\x77\x4a\xbd\xd7\xcc\x5c\xd0\xb1\x5e\x21\xd3\xab\x0d\x2f\xd8\x13\xce\x7f\xdb\xea\x89\x81\x89\x89\x5a\xe3\x4c\x3f\x2a\x91\x81\x05\x0b\xb0\x0f\xd3\x52\xa5\xc1\x36\x71\x1a\x63\x0e\x9f\x6c\x35\xf6\xd6\x0e\x88\x8d\x99\xb3\x1b\xf9\x20\xd4\xd7\xa7\xe6\x0e\x3e\x10\xf1\x68\x2b\x96\xd6\x2e\x7f\xea\x2d\xcb\x1d\x00\x23\x37\x2b\x2b\xf6\x11\x6e\xa5\x2e\xbc\x09\x57\x27\xac\x71\x73\xef\xc2\x40\x62\x4f\x46\x96\xa9\xc4\x32\x16\xd1\xfd\x57\xdf\x9a\x3d\xc8\xca\x56\x84\x71\xf6\x46\x44\xf7\xec\xe3\xcd\x1c\xb3\x81\x65\xc1\xcc\x56\x90\x6f\xbd\x78\x51\xe7\xdd\xad\xe0\x9b\x67\xa0\xb7\x1a\xaa\xbe\xe4\xb9\x3a\x9c\xe6\x9c\xa9\x10\x01\xa2\x20\x5f\xd2\x6c\x92\x94\x4b\x03\x40\x30\x5e\x58\x4d\x1e\x70\xc4\xb3\x7c\x07\x12\x3c\x65\x11\xe8\xd6\x25\x7c\x25\x92\x0e\xfa\xc9\x54\xc7\x4b\x1b\x27\x39\x15\xcc\xd3\x28\xcb\xfa\x31\x28\xea\x68\xf3\x18\xb8\xb1\x58\xef\xe8\x41\x76\xff\x63\x1e\xd0\x6b\xe8\x90\x05\x1b\xee\xf5\x3c\x87\xf4\xee\xb5\xdc\xd8\x68\x9b\x5c\x93\x50\x10\x26\xf4\x83\x24\xbe\xd9\x2f\x4d\x49\x1f\x74\x4c\x30\x3d\xc7\xe8\x66\xac\x20\x41\xde\x13\x8f\xab\x08\xab\x60\x71\x80\xf0\x5d\xb3\x22\x04\x8f\x99\x5e\x93\x37\x31\x4d\x13\x09\xfc\xc6\x31\x52\xa9\x03\x7b\x46\x5e\x45\xc7\x87\xa5\xd9\xca\x06\x24\x1f\x1f\x2c\x10\xaf\xf3\x34\xc3\xf6\x2f\xc7\x3b\xc7\x1b\x74\x34\x1d\x33\xea\x14\xf6\x17\xb7\x81\x0f\xb2\x4b\x41\x09\xa9\xea\xa2\xaf\x5b\x84\xa7\x0a\xfa\xb9\x6c\xaa\x63\x1d\x00\xfd\xbe\xc0\x4d\xa2\x57\x30\xcc\xdd\x90\xbe\x9e\xe3\xc5\xec\xad\x99\x8c\xc7\x18\x27\xb6\x4f\xae\xdd\xab\x7d\x15\xbc\xb6\x7e\x1a\xf7\x25\x3b\x49\x19\x71\xe7\x87\xf8\x83\x5a\x12\xfe\x21\x4f\x01\x84\x37\x73\x17\xdf\x74\x77\x89\x82\x94\x23\x60\x4d\xbb\xc3\xa4\xc3\x29\x50\x6d\xcb\x49\x03\xdd\xa4\x75\x19\xb8\x20\xfa\xfb\xf0\x24\x6e\x0e\xdc\x77\x1c\x41\xc7\xdf\xef\x9a\xee\x9a\x78\x88\xaf\x36\xb3\xc1\x4f\xc1\x4a\xe2\xcb\xa0\xf9\x58\x9f\x35\x76\x07\x3d\x65\xc2\x3c\xc7\x7e\x50\x16\xda\x87\x5b\xa0\x3d\x73\x60\xaf\x0d\x53\xea\x60\xd3\x9b\xc7\x1d\x50\x0d\x6b\xff\xda\x8d\x65\x04\x00\x78\x14\x04\x39\xcd\x84\x0d\xdc\xed\x45\xe1\x88\x15\x12\x2b\x4f\x07\x71\x29\xd7\xea\x2a\xb3\x8c\x25\x8f\x70\xd4\x68\x10\x45\x22\x5b\x3b\xd2\xbb\x54\x2b\xc0\x05\x61\x9a\xd8\x42\x51\xe1\x56\x64\xdc\x85\xb6\x2a\xb9\x86\x13\xf2\x28\x62\xe6\x8a\xc8\x75\xf2\x40\x31\xcc\x40\x0b\x03\xe4\x09\x4d\x05\x2f\xcc\xe5\x4c\x67\xc8\x70\x65\x8f\x56\x80\xe2\xd7\x94\xb6\x33\xb1\x91\x79\x21\xc2\xf4\xcc\xf0\xfd\x27\x13\x45\xad\x78\x2f\xfa\xba\xbe\x53\x14\xf5\xd0\x35\xc4\xec\x39\x23\xea\xb3\x4f\x45\x3c\x77\xef\xf5\x4f\x86\x5a\x06\xbd\xdf\xe2\x2a\x67\x18\xce\x01\xbc\x7e\xe5\xc8\xb5\x95\x3b\x15\x0b\x37\x48\xc4\x82\xc4\x3d\xa2\xd0\x0c\xd1\xa6\xe4\x19\x57\x85\x10\xf9\x42\x51\xe4\x17\x09\xf4\x42\x5a\x94\x1a\x12\xd1\x5d\x2e\x22\x9d\x17\x48\xc1\x04\xaf\xac\xb9\x4c\xca\xac\xf3\xbe\x8f\xb3\xf2\x28\xde\x87\xbe\x5e\xba\x80\x62\x59\xdb\xa0\xb9\x0c\xe2\x60\x15\x39\xda\x92\x7a\xdc\xb6\x9a\x60\xdb\xd1\x04\x7b\x60\x0c\x1f\x6f\xe7\xec\xed\x48\x2a\xfe\x31\x5f\xa6\x7a\xc4\x8e\xf7\xe7\x1f\xf3\x0f\xba\x23\x1d\x3b\xff\xdc\x70\x4a\xf6\xe0\x17\x3e\x77\xe9\x7a\xf0\xfc\x1e\x42\x7f\x87\x7c\x21\x83\xb8\x41\x0f\x06\x08\x3b\xf7\x2e\x98\xb5\x5b\xae\xe2\x44\xaa\x8d\x39\x86\xaa\x27\x90\x07\x5a\x9b\x3b\x49\x61\x37\xc7\xee\xac\x3a\x48\x52\x59\x46\x8d\x0c\xc7\x43\xfd\x54\x4b\x8d\xec\x05\x33\xd6\xbe\x52\x4d\x58\x6c\x4b\x94\xf1\x76\x09\xa9\xe9\xba\x05\xdb\x3d\x05\xd7\x72\xf3\x2b\xb8\xe0\xbe\x6f\xee\x94\x11\x2d\x45\x3a\xbf\x1c\xea\xfe\xc4\xc5\x08\x09\x4e\x66\x33\x0b\x59\xb2\x17\x8a\xc4\xb6\x31\xea\x0d\xe1\x4e\xe4\x01\xcb\xd9\xf7\x2e\xeb\xf5\xfb\x7f\xb4\x2c\x50\x7b\xb6\x86\xbe\x06\xaa\x35\x1d\x45\x65\x06\x21\x69\x72\x9b\x31\x81\x67\x53\x3e\x8a\xe0\x04\x4e\x64\x07\x24\x42\xf3\xa9\xcd\x7a\x70\x7e\xd2\x4a\xa3\xee\xc0\x3d\x86\xb2\xe1\xee\x2c\x24\x35\xa8\x2c\x2f\x58\x5e\x88\xb4\x75\x57\xaa\x18\x5d\x55\x65\xfc\x13\xcc\x2e\xaf\xcb\x3f\xd0\x52\x1f\xb1\x47\xcf\x02\x57\xc6\x9f\x6e\xaf\xaf\x58\xca\xf7\x80\xc9\x2b\x34\xc3\x47\x81\x08\xb3\xbe\x7e\x0f\x8d\x40\xb5\xf1\xd5\xc5\x86\x7d\x6a\xc1\xbd\xed\x7e\x73\xfa\x62\xd3\x86\x82\x39\x43\x53\xd2\x2c\xe5\x4c\x27\x67\x69\xc2\x55\x00\xbb\xce\xa7\xac\xf6\xf9\x30\xce\xee\x22\x6e\x84\x64\x82\x0a\x80\x2b\x8b\xe6\x42\x56\xb6\x02\x73\xab\x62\xff\x27\x85\xd6\x3b\xf7\x88\x5e\xc0\xe1\x7b\xd4\xd8\xe0\x91\x59\x26\xc8\xea\x60\xe1\x02\x0e\x71\xc2\x73\x00\x83\x8e\x18\xa8\x9f\xa4\x42\x25\x30\xb9\x33\x46\x26\x01\x3f\xa0\x78\x88\x76\x5a\xe1\x69\xfd\x98\xb3\x18\x79\x2f\x4a\x99\x6f\xc1\x37\x8c\xc1\x18\x00\x66\xd1\xfe\x82\xa8\x91\x8c\xab\xdc\x0c\x28\xf8\x93\xc5\x83\x20\xa7\x52\x25\x10\x3a\x7f\xf3\xce\x61\x2b\x70\x90\x48\x1b\xb0\xa3\xeb\x03\xc3\xec\x94\x0b\x4c\xab\x54\xfe\x61\x85\x89\xf7\x3c\xed\xcb\xd8\x3b\xb9\xc4\x43\xa3\xe4\x58\x7f\xea\x56\x27\x88\x06\x83\x5c\x58\x25\x6d\x2f\xec\xbd\x8f\xea\xc4\xed\xa7\x95\x85\xfc\xb0\xba\xc5\xe0\x4b\xd8\xb0\x2c\xcc\x11\x7b\x4f\x40\xc0\xe7\x70\x4d\xce\x5e\x36\xab\x1c\xc4\x98\x80\x39\x0c\xbd\x98\x53\x76\x2b\x04\xfb\x04\x3d\x65\x3e\xf6\x89\xc4\xfe\x00\xaa\x59\x70\xd9\xaa\xc5\x04\x4f\xcf\xd5\x5a\x9f\xb6\x19\x64\x9b\x06\x14\xf0\xa4\x5e\x69\xaf\xe7\xa9\x60\x43\x48\x23\x55\xcf\xcb\x7d\xd0\xda\xae\x03\xd0\xc2\x0f\xfe\x4e\x4e\x19\x91\xb6\xa6\xe6\x7c\x86\x21\x3e\x86\x5d\xab\x36\x49\x4c\x2b\x27\xc8\x18\x7d\xaf\xf4\xa3\x42\x5b\x80\xbe\xc4\xbe\x33\xeb\x0f\x0e\x30\x74\x5e\xa3\x59\x50\xe2\x6e\xf8\x12\x28\xac\x67\xee\xdf\xec\x16\xe3\x74\x58\x67\x50\xe9\xc9\xc1\xf8\x21\x7d\x1d\xd8\xcd\xbf\x9b\x4d\xd8\xeb\x09\xbb\x98\xb0\xe9\x74\xfa\x72\x82\x12\xe2\x54\x23\x7c\x05\x51\x7b\x05\xdf\x98\xb2\x49\xb7\x64\x1d\x7c\x00\x94\xb8\xcc\x61\x65\x99\xda\xb8\x7f\x2a\xf0\x3c\xd8\x26\x60\xfe\x28\x25\xbb\x10\xa6\x21\xda\x6a\xe9\x2b\x05\xf0\x58\x11\xe9\xcc\x02\x6c\xf3\x42\x67\x16\x2c\xf8\xc0\x33\x2e\x15\xa4\xd5\xf3\x26\x54\x9a\xbe\x1c\x10\x6b\x8b\x2f\x7c\x07\xed\x97\xca\x71\x8b\x9a\x6e\xba\x73\xf5\x2f\xf6\x29\x05\x03\x1e\x33\x59\x14\xe6\x74\xce\x17\xea\x96\xbd\xfa\x17\x36\x4b\xd3\x44\xb0\x19\xfb\x1b\x7b\xcd\x15\x57\x9c\xbd\x66\x7f\x63\x17\x5c\x15\x3c\xd1\x65\x2a\xd8\x05\xfb\x9b\xe9\x36\x53\xde\x95\x36\xc7\xe1\x7e\xc2\x38\x53\x65\x82\xa7\xfe\x77\x16\x88\xf7\xd2\xb5\x8b\xfb\xd1\x59\x89\xe2\x51\x08\xc5\x72\xbd\xa3\xa3\xf0\xaf\x2e\x1e\x94\x4b\xb5\x49\x44\x41\xf3\xa1\x0a\x99\xc4\x0f\x9c\x41\x4b\x5f\x2d\x94\xf3\xe5\xfd\xd5\xd4\xf8\xaf\xec\x6f\xec\xaa\x4c\x12\x53\x25\xb3\xd1\x98\x89\xf4\x8a\xd9\x14\x16\xa1\xa6\x8f\xf2\x5e\xa6\x22\x96\x1c\x92\x58\xcc\xbf\xce\xef\x60\xb4\x97\xa5\xe7\x2b\x0c\xd7\xb4\x53\x3e\x3a\x65\xeb\x79\x96\x84\x78\xa7\xcb\x65\x07\xbf\xe7\xe6\x57\x7d\x75\xbc\x45\xe4\x59\x5a\x69\x3d\x90\xc1\x8a\xaa\x55\xa1\xfe\xd7\x51\x5b\x40\xed\xb0\xb5\x65\xb5\x1c\x05\xe1\xa1\x7e\xea\x26\x0b\x62\x76\x4f\x7e\x87\x1c\x20\xa2\x35\x74\xcb\x6d\x48\x00\x55\x28\x06\xc0\x96\xf4\x34\x4b\x83\x62\x5a\x4e\xfa\xe7\xe7\xaa\x9a\x5f\xa5\x8b\xb5\x1c\x24\x7b\x58\xab\xec\x47\xf2\x5d\x60\x72\xa0\x59\xa6\x32\x39\x37\x4b\xf5\xfc\x4a\x2b\x73\x6d\xcd\xe5\x06\xa9\xa1\x00\xc2\x85\x7a\x81\xd6\x28\xb8\xab\x9a\xac\xc1\x12\x00\xfb\xc0\x54\x09\x61\x85\x85\xd9\x05\xcc\x10\x24\xfb\x85\x32\x6f\xd0\x89\x04\x29\x06\xd2\x31\x08\xe3\xd7\x88\xa0\xd7\x7e\x8b\x36\xe4\xa0\xf0\x96\x09\xd6\x97\xbf\x7c\xc2\x84\xa3\x74\xb9\x13\xbc\xe2\x57\x01\x7b\x1e\x95\x66\xa9\x55\x30\xe6\xbc\x12\x89\x56\x1b\x33\x2b\xba\x36\x01\xbd\xe3\xf2\x14\x50\x4f\x58\x05\x2c\xac\xb3\x06\xe6\xb0\xa4\x47\x68\x48\xcc\x39\x29\x63\x7f\xbf\xcf\xcb\x95\xb1\x23\x9c\x47\xd6\x9d\x86\xd4\xb8\xae\x64\xee\xd3\x62\xfb\x1f\x73\x91\x01\xc5\x35\xa2\x4b\x9c\xb7\x1f\x0f\x4e\x4f\x74\x82\x2d\x1a\xb6\xa8\x7a\x41\xc9\xed\xae\x10\x8a\x26\x34\xd2\xda\x07\xcc\xc7\x6f\x89\x4f\x1e\x82\x5a\x7e\x3b\x9b\xbf\xab\x3d\xd7\x44\x2d\xb7\x40\x9b\xef\xe6\xef\x2f\xdf\x2c\xaf\x3f\xde\x35\x9e\x33\xa5\xd1\x9f\x0e\x00\x97\x3b\x7b\xef\x29\xa0\x9b\x9f\x51\x77\x68\xa9\xd7\x36\x8b\x75\xf8\x99\xde\x50\x7e\x1a\x86\x10\x0a\x09\xce\x43\x85\xa4\xe6\xc4\xe9\xcc\xc5\x57\x4b\x8a\x48\x0c\xab\x6c\xbd\xc3\xae\xd5\x5b\x7c\xfd\x83\x4e\x64\xd4\x0f\x38\xb4\xc7\xd5\x56\x3f\xb6\x20\xb8\x56\x02\x10\xb8\xe4\xff\xa1\x4a\xa1\x85\x5e\x88\xa8\xf0\x11\xb7\x66\xe3\xfe\x57\x83\x9c\x0e\xdf\xc1\xd1\xa3\xec\xba\x0d\x94\x60\x5d\x0c\x0f\xce\x56\x20\x37\x05\x4e\x7f\xf4\xb5\x42\x1e\x23\xc4\xb6\x23\x4e\x2e\xe8\x4a\xcf\xc3\x06\xfd\xb8\xd5\x89\xb9\x8b\xa9\x98\x88\x62\x17\x2a\x15\x59\xa4\x01\x1c\x84\x1c\x04\x9a\x45\x5b\x99\xc4\x5e\x38\xe7\x3b\x40\x53\x03\xe6\xf1\x25\xe9\x43\x0a\x17\x63\xb6\xc5\xf7\x9c\xba\x76\xda\x59\xe1\xfc\xd3\x3c\x50\x4f\x07\x8f\xec\x9b\xf6\xbf\x10\x8c\x0f\xbb\x82\xa8\x9d\x6a\xd1\x42\xd3\xe9\x95\xfa\x8c\xf2\xf0\x82\xb4\xfd\xda\xaa\xd0\xda\x8b\x53\x51\x1b\x57\x9a\x66\xf5\xae\x04\xc2\x5f\x44\xb0\x21\xfc\x25\x17\x50\x9d\x9d\xe0\x68\x8b\x79\xfa\x4d\x1a\xd4\x85\xf2\xf1\xd1\x17\x79\x68\x97\xb5\x8e\x33\xf2\xd9\x5a\x00\xe6\x84\xbd\xa8\x34\xf4\x05\x10\xc2\x2a\x0d\xdf\xa3\x18\x56\xa5\x6b\x60\xba\x4e\x98\x2c\x16\x4a\xe6\x38\x33\x33\x91\x88\x07\x53\xbb\xd0\x59\x4c\x48\x1d\x7b\x77\xb6\xcd\x06\x0c\x3f\xb7\xa9\xdf\x34\x6d\x68\x11\x66\x21\xb1\x28\x07\xc7\x74\x2c\x72\x63\x37\x82\x24\x8a\xf8\x62\x16\x80\x84\x58\x08\xc2\x3f\x62\xa1\x6c\xfd\x00\x15\x82\xa2\xca\x0b\x35\x5f\x43\xfe\x2d\x64\xfd\xc6\x31\xde\x42\xad\x48\x86\x63\x79\x93\xe4\x1c\xd6\x74\x27\xb7\x03\x41\xf2\xa6\xb8\x92\xc4\x83\xc8\xf6\x05\x38\x75\xa1\x5f\x95\xe0\xc5\x96\xc9\x62\x02\xf4\x7c\x76\xa7\x5c\x28\x1e\x93\x64\x3e\x15\x67\xba\x06\xe6\x7d\xcf\x38\xd3\xef\x2b\xfd\xd0\x67\xd8\x9e\x8a\x59\xc3\x55\x9d\x26\x5c\x2d\xf1\x04\xf9\x06\xa8\xb5\x40\x79\xb6\x2b\xd4\x59\xae\x96\x8e\x52\xe8\x49\xea\x19\x88\x93\x87\x7a\xd0\xc6\x8e\xb5\x1f\x9a\xe0\x64\xf0\x94\xe2\xf6\x7a\xe2\xfc\x34\x84\x2e\xc8\x98\x8d\xc0\x0e\xdf\x05\x3c\xa0\x8d\xd7\x90\x08\x76\xb6\x1e\x42\xb4\xd9\x19\xf0\x6b\xc5\x27\x0d\x19\xf9\xda\x19\x52\x1f\xf6\xf1\xd0\x98\x86\x85\x78\x14\x3c\xe6\x40\xb5\x9e\x17\x22\xd3\xe9\x47\x69\x42\x65\x6c\x6b\x83\x70\x1f\x26\xae\x08\xf4\xc3\x39\x37\x4f\xbb\xb2\x70\x78\x0f\xd3\x2d\xc8\xd0\xa7\xf4\x51\xc3\x3e\x35\xd4\x53\xe2\xf3\xde\xa1\x5e\x53\x36\x57\xcc\x9a\x7b\x13\xf6\x02\x27\x56\xfe\x82\x5c\x90\x24\x4f\x4d\xb1\xf3\x98\x56\x0f\x65\x0a\xd7\xa1\x18\x98\xaf\xe1\x97\x1b\x46\x82\x7a\x69\x25\x9f\xb5\x5f\x5e\x4b\xc8\x17\x39\x86\x12\x00\xa3\x88\x2b\x2c\x80\x0e\x49\xbc\x76\xef\xd1\x68\xd7\xde\x9b\xed\x1b\x6c\xe3\x5d\xec\xb5\x7d\xd1\x74\x51\x5a\xd2\x79\x6a\x7f\x67\x3a\x5b\x28\x5b\x1a\xb9\x24\x73\xd4\xb1\xaa\x17\x15\xc0\xd7\xc9\xe6\x0f\x66\x2a\x80\x18\xac\x74\x19\x28\xe2\x79\xee\xdb\xfa\x2e\x00\xa0\x88\x95\xf0\xc2\xfa\x53\x36\xf3\x5f\x33\x86\x87\x99\xe0\x3b\x3c\xe6\xeb\xfc\x98\x49\x62\x3a\x45\x16\x96\x8e\x33\x48\x2d\xc9\x4b\x20\x95\x5d\x97\x66\x33\x0a\x98\x77\x17\xca\x74\x1e\x5b\x4b\x40\x2d\x53\xbf\x2c\xd4\x7b\x9d\x5b\x26\x83\xdc\xf7\x87\xc5\x90\x52\xb7\xbd\x70\x0a\x6e\xf4\x87\x37\x70\x68\x93\xcf\x1f\x39\x89\xdc\xd1\x02\x39\x45\x44\x47\xb2\xd7\x65\xe6\x1b\x15\x71\xb5\x50\xff\x61\xba\x07\x25\xd5\x95\x1d\x56\xbd\xc6\x25\x0c\x23\x08\xc1\x92\x4f\x58\xe8\x77\xff\xf8\xf2\xd3\x4b\xcc\x01\x28\x73\x10\xcd\x9c\x54\x0f\x10\x47\xc2\x5e\x26\x09\x44\xa2\x6d\x0b\x1c\x11\x88\xff\x04\xef\x83\xe5\xd0\xa5\x6e\xa9\xaa\x26\xc6\x90\x85\xde\x37\x83\xbd\xf3\x79\xc6\x22\x5e\x44\xdb\x33\x6b\xcb\xd1\x36\x66\x4f\x3f\x1a\x3e\x54\xcf\x33\x96\x56\x3b\x0f\xb9\xb9\x70\x66\x3b\xc7\x8c\x58\x99\x2f\xa6\x09\x00\xac\xb9\xab\x8b\xf2\x38\xe2\x56\x9c\x9c\x08\x0b\xa8\xda\x79\xee\x71\x2b\x89\xe7\x6f\x9c\xe4\x25\x57\x7c\x27\x62\xf6\x02\xb2\xd5\x5e\xd8\xc1\x5f\xa8\x74\x35\x4d\xf6\xeb\x82\xe8\xb5\x4c\xa7\x4c\x41\x3c\xea\xc0\x29\xb7\x8c\x9b\xd7\xa4\x03\x9d\xdd\x79\xd1\x6a\xb7\x75\x5c\xdf\xb8\x2f\x0d\x37\x58\xd0\xc7\xe5\x7a\xe7\xb6\x0a\x11\xaa\xb2\xd8\xf3\xfc\x7e\xc2\x56\x19\x57\xa0\xfb\x11\x87\x46\x95\x5f\x9d\x70\x79\x46\xee\x2a\x9b\xbe\xa2\x78\xb2\x07\xe4\xfb\x64\xa1\x90\xe8\x0b\x18\xa1\xf7\x51\x22\x23\xb6\xc9\x78\xba\xad\xd9\x41\xe2\x41\xa8\xe2\x92\x98\x2d\x2c\x3e\xfd\xd4\xd0\xb2\x63\xca\x38\x89\xef\x70\x5e\xb5\x76\xb8\xa7\x00\xf1\x1e\x56\x4c\x12\xa2\x1b\xb5\x05\xb5\xba\x09\x3e\x21\x19\x3a\xe0\x42\x63\x7f\x29\x57\x3a\xb1\x64\x72\xf3\x37\x4c\x67\xa0\xe3\x50\x68\xfa\x93\x8c\xbb\x4e\x31\xa9\x62\xf1\xe5\x24\x46\x87\xfe\x03\xc9\x9a\x77\xe6\x33\x81\x5c\x40\xbd\xb1\x16\xf8\x9f\x82\xab\x1b\x6f\x70\x8d\xa7\xf2\x3a\xc2\x6e\x96\x14\x5b\x80\xbd\x21\xe0\xda\x77\xea\x8e\xef\x59\xb4\xe5\x6a\x13\x5c\xa1\x01\x85\x24\x52\x9d\xa1\xde\xe1\x03\x50\xa7\xe9\xcc\x66\xcc\x52\x1e\x28\xa1\xbe\x9d\xc3\x1b\xc1\x96\xda\x26\x7b\xf2\xcd\x26\x13\x1b\x20\x31\x58\xa8\x4a\x26\x3b\xd0\xc6\x59\xa9\x05\xfc\x4e\x5f\x22\xf0\xd3\xb0\x69\x74\xdd\x5a\x8a\x6c\xef\xd2\x28\x49\x2c\xd4\x75\x5d\xa3\x5b\x27\x4c\x8a\xe9\x84\xfd\xe0\x01\xa6\x22\xd2\xca\xe5\x61\x76\x24\xe1\xd5\x5c\xd3\x07\xf6\xa2\x16\xda\x8d\xf6\xba\xc3\x6f\x8d\x94\x90\xd6\x49\xd3\x9b\xc8\x5a\xf0\xa2\x1c\xb1\x57\x92\xac\xf4\x85\x79\xf9\x16\xdf\xed\xc5\x60\xf3\xd4\x6c\x6f\x96\xf2\xc8\x3c\x6f\x76\x78\xf3\x6d\x4f\x89\xdc\xd6\xd7\x07\x1d\x9d\x89\xee\x76\x74\x3e\x85\x49\x69\x79\x2d\x0e\xfb\x3a\x93\x0e\xae\x86\x9e\x36\x8d\x75\x65\x5a\x30\x2a\xc1\xcc\xf3\xfa\x75\xab\x65\x07\x48\x33\x1d\x97\x91\x88\xcd\xca\x05\xbb\x1d\x91\x1b\x8e\x32\xa2\xb2\x49\xb6\x1d\x08\x15\xde\x1b\x10\x17\xff\x5a\x77\xe3\x41\x54\xc3\xae\xfb\x3f\x76\xdc\x8b\xad\x65\xd2\xd6\xe9\xe1\xfa\xc4\x7e\xca\x46\x9e\x53\xee\xf3\x55\x82\x60\x9d\xc9\x8d\x54\xbc\xd0\x19\xfb\xce\x25\x86\xbe\x74\xaa\x42\xd0\x8b\x4f\xb1\x4d\x54\xba\x08\xb7\x89\xf6\xbb\x17\xe0\x99\x45\xbc\x1c\xc7\x5b\x36\x96\x5d\x1b\x26\xa9\x79\x2a\x2f\xf8\x2e\x0d\x29\x37\x9d\x66\x33\xf5\x4c\x82\x9d\xc0\x6c\xc5\xc0\xc7\x27\x73\x9f\x83\xb5\x50\xe4\x19\xc7\x71\xd3\x59\xc8\x19\xdd\x79\x36\xa7\x65\xb1\x3c\x92\x46\x06\x5f\x1e\xe7\x20\xa1\x70\xf9\x7b\x9e\xf6\x13\x73\x70\xba\x1a\x63\x12\x8a\x13\xb2\xb6\x96\x4a\x75\x7e\xf6\xab\x32\x8c\x24\x0a\xad\x87\x78\x6f\xde\xd9\x80\x86\xbf\xb7\x54\x2e\x02\x30\x10\xc8\x50\x98\x83\x55\x81\x57\x50\xb7\xad\x99\x53\xdc\xb2\x79\x5c\x24\xba\x8c\x19\x6d\x6a\x14\x2e\xce\xa6\x78\x3a\x02\x65\xe8\x74\xda\xc5\x9f\x36\x52\x2d\xd6\xed\x3f\xf0\x5e\xfb\x0a\x84\xdf\x3a\x76\xe0\xde\xa5\x4f\x3d\xfb\x6c\x43\x4f\x3d\x0d\x63\xef\xb6\xe3\x51\x63\xef\xbc\xb5\xc0\x5f\x36\xce\x91\x07\xf7\x26\x19\x27\xb0\xde\x42\x47\x77\x0b\xc3\x6a\x25\x80\x98\xdf\x9f\xfc\x39\x9b\x27\xdc\xff\xa9\x94\x67\x42\x15\x4b\xf8\xe2\xb8\x8f\xc1\x47\x3e\xc0\xeb\x15\x83\x69\x90\xc3\xf2\xdf\xee\x34\xfa\xa1\x2d\x59\xc9\xbf\xb3\x5b\xf2\xbd\x98\xfd\x4a\x02\xd8\x31\xbf\x67\xdf\x49\xc0\xc6\x04\x31\x3b\x37\x70\x1d\xc3\x45\x0d\x3a\xa2\xf7\x82\x06\x55\xb6\xf6\x41\x0d\xf2\xb5\x87\x90\x2a\x94\x42\x6e\x28\xca\xf0\x34\x5b\xad\xfd\x5b\x40\x60\x7e\x55\xf9\x37\x90\x4d\x9a\xf1\x4b\xd8\x7f\x8a\x4c\xfb\xb4\x05\x74\xaa\x84\x05\xf7\xda\xeb\xc7\x6b\xaf\xa2\x3d\x8e\xaa\x9f\xa1\xec\x1d\xfc\x85\xf8\x60\xf0\xe6\xbb\xda\xdb\xeb\x48\x17\x95\xbd\x88\x96\x1d\x1a\x07\x83\xaa\x12\x5c\x3c\x43\xcd\x02\x59\x3b\xcc\xec\x02\x3d\x87\x7b\x35\x31\x2e\xee\x78\x4a\x38\x34\x82\xbc\xd6\x83\x0c\x53\x68\xc4\xbf\xfd\xf5\xdf\xa7\x5d\xaa\xda\x50\xf5\xb1\xb0\x1e\x57\xf9\xb7\x99\x14\x2a\x86\xa0\x21\x8f\x9b\xf2\x3b\xaa\xe2\x45\xae\x6c\xcf\x66\x1a\x3e\x49\x76\x5f\xfb\x51\x9b\x2f\x71\x12\x7d\x85\xc8\xb3\xdf\x64\xdd\xf2\xad\xc4\xa5\xba\x4c\x89\x7c\x19\xef\x15\xdf\x35\x75\xc8\x9f\xb5\x8e\x7b\x29\x92\x18\xaa\x48\x5f\x3f\x14\x3d\x89\x45\x74\x3f\xd6\x26\x38\x9a\x3c\x5c\x44\xf7\xec\xa7\xbb\xf7\xef\x50\x2b\x52\xe6\x0b\x75\xc5\x0b\xf9\x20\x3e\x66\x89\x73\x5b\x13\x1b\x4c\x96\xd8\x35\x52\x25\xb3\x0d\x88\x53\x2c\xf3\xad\x35\x1c\x42\xae\xf1\xdd\xfe\x6c\x55\x46\xf7\xa2\x38\xcf\xb8\x8a\xf5\x0e\x9b\x71\x9e\x97\xeb\xb5\xfc\x32\x2d\x78\xd6\x41\x3c\x8e\x7e\x84\x6f\x68\xe7\x7a\x39\x99\xc2\xdb\xbc\x68\xea\x3e\x42\x76\x22\x89\x14\x57\x8c\x5b\xb8\x02\x67\x7c\x27\x80\x39\x8e\x55\x49\xfb\xa1\x14\x4c\xf8\x03\x6d\xbb\x3c\x27\xa4\xb7\x26\xe5\xdc\x4f\x81\x71\xff\x29\xa8\x55\x55\xbd\xd9\x56\xca\xeb\xc5\xed\xf8\x3d\xde\x0f\x37\x99\xc8\xf3\x09\xcb\x35\xd4\x78\xa1\x2c\x66\xda\xe6\xf5\x00\x3e\x03\xb8\x27\x93\x3d\x8b\x74\x2a\x41\x5e\xcf\xb5\x6b\xab\x1f\xc1\x9f\x1c\xa6\xb7\x81\x22\x6a\xa9\x0a\x99\x30\xbe\x2e\xc8\xd9\x0c\x44\xdb\x56\x58\x27\x9f\x2e\x14\x84\x0c\x23\x68\x3e\x84\xf2\x5d\x98\xc0\x35\x22\x67\x6b\x1e\xc9\x44\x16\x44\xff\x03\xc9\x30\xdc\xb4\xd7\x9c\x07\xa6\x2f\x33\xbe\xe7\x89\xbf\x58\xf1\xa4\xf4\x19\x7d\x67\xb9\xa8\xd3\xcb\xfd\x2e\xfc\xdf\xca\x3d\xb7\xef\xd4\x3d\xe1\xc2\x7b\xca\xe1\xd3\xbc\xd2\x3a\xb5\x57\x7f\x8e\xcb\xd8\xe2\x44\x2b\xa6\xae\x67\xfd\x75\xc7\x0f\xf8\xce\x3b\x2e\xd5\x53\xab\xd1\xd3\xfc\xc2\x88\xde\x6b\x37\xc2\xbe\x92\xbb\xa0\x8b\x7f\x78\x48\xf5\xad\xb7\xfb\x83\xd6\xc9\xa9\x1e\x6f\x62\x60\x91\x5a\x2d\x41\xb6\xf2\x94\xeb\x1a\x4e\x00\xe7\x38\x9a\xbf\x71\xb1\x57\x47\xe8\x5b\x15\xbb\x21\x58\x10\x55\x01\x36\x0a\xa8\x44\x0f\x62\x38\x4f\x5b\x82\xef\x23\x91\xcf\x50\x06\xa2\x76\xac\xe9\xdc\x74\xc1\x07\xb9\xec\xdc\xd7\x11\x48\x0f\x6b\x35\x1c\xe5\x0c\x43\x91\xc9\xda\xa7\x9c\x63\x2c\x24\x47\x75\xfd\x18\x7c\xdb\xf6\x27\x4a\x5b\x9b\xf3\x89\xac\xe4\x85\x0a\x2c\x62\xe4\x04\xb2\xd0\x72\xd7\x6b\x6d\xfe\xb2\xca\x34\x3c\xd9\x5f\x76\x0a\x03\x76\x6f\x40\xe5\x4d\xa8\x65\x05\x98\x80\x48\xef\x56\x52\xd9\x54\x65\x72\x22\x83\x29\x3f\xb3\x04\x83\xce\xe1\x6f\x4d\x72\x54\x38\xa8\xf5\xbd\x33\x23\x42\xae\xc6\x70\xcb\x3a\x74\xdd\x0d\xef\x4f\x4f\x4b\xd6\xdd\x81\x52\xad\xb7\x40\xe6\x8c\x27\x8f\x7c\x9f\x83\xde\xab\x30\xbb\xe2\x1a\x1d\xa7\xd5\xfa\x4f\x82\xe3\xdd\x92\x57\x92\x78\x7a\x49\x32\xd0\xd4\x16\x89\xfc\x0d\x22\xb1\xca\xb6\x9e\x17\xe7\x45\xde\xde\x39\xdf\x26\x16\x92\xf5\xc6\x42\x30\x18\xf9\x3f\x23\xfc\xd1\xe3\x64\x3d\xd1\xd7\x1b\x1c\x93\x68\x91\x11\x5c\x04\x12\x78\x60\x3b\x36\xdf\x9e\xb0\x1d\x97\x8a\x96\x01\xaa\x87\xc5\x62\x55\x6e\x36\x9d\x2e\xc8\x5f\x7f\x2c\xa3\xba\x4e\xfe\xee\x7d\xcd\xbd\xcc\x4e\x4f\xe1\x8d\x9d\xdb\x2f\xa1\x7b\xd8\xdc\xab\xbe\x8e\x03\xf6\x1b\x7a\xbb\x5b\x43\x4e\x8d\x49\xf4\x34\xde\xee\xf9\x10\x6f\xb7\xc5\xf8\x40\xaa\x15\x5d\x57\x2d\x0e\xe3\x37\x37\xf8\xd7\x71\x83\x0f\x9a\x14\x48\xef\xb1\x94\x55\x03\xbd\xa7\x86\x47\xb2\x84\x39\x32\x4c\xa8\x15\x29\xb1\xe7\x42\xc5\x39\x5b\xf1\xe8\x19\x68\xc3\xe0\x74\x3c\xdd\xdf\x76\x00\x5c\x72\xab\x77\x82\xc1\xa7\x72\xd4\x9d\x60\x94\xcd\x36\x01\xd4\xa2\x69\xa0\x47\x64\x10\xde\x03\x8e\x53\x44\x86\xc4\xde\xa8\xfe\x4e\x89\x47\x66\x4e\xab\x49\x08\xe3\x0a\x86\x07\x04\x89\x5e\x1a\xeb\xb0\x82\xf9\x76\xa9\xfb\x99\xd8\xf0\x2c\x86\x4c\x03\x5a\x92\x09\x8f\xee\xcd\x7f\x43\xfd\xe8\x8b\x04\x35\xb3\xdc\xe8\x08\x7f\xf4\xa5\x49\x15\x65\x40\xca\x44\xa8\x36\x5f\x3f\x7c\x3d\x67\x3c\xca\x74\x8e\x4e\x19\xa7\xe3\x09\x99\xae\x60\xc0\x3e\xc8\xb8\xe4\x09\x7e\xb1\xd3\x93\xcd\xf3\x93\xb8\xde\x67\x81\xe4\x8e\xf8\x92\x26\x5c\x55\xd7\x24\x36\x17\xb8\x6a\x64\xcf\xcc\x77\x94\x6b\xa7\x54\x65\x34\x75\xe4\x3c\x50\xbb\xf5\xcb\x0a\xad\xe3\x4c\xf0\x78\x1f\x12\x53\x49\xc5\x20\xf6\xc3\x78\xbc\x93\xca\x0c\xbd\x55\x54\x73\xfb\xab\x25\x57\x46\xc0\x25\x08\x8f\x24\x49\x6d\xe9\xe7\x4c\x09\x63\x52\xf1\x4c\x26\x7b\xb0\xa2\xd3\x4c\x9c\x05\xdf\x09\xd6\x37\xe5\x7b\x00\x4d\x34\x91\x28\x94\xb9\x58\x97\x09\xda\xda\x70\x1b\x75\x0d\xa0\x75\xf8\x71\x3e\x31\xc7\x6c\x41\x74\xff\xc1\x87\x51\x44\xeb\x29\xb0\xf3\x8d\x18\xd8\xb8\x38\x8e\x27\x4e\xcb\x00\xe2\xbb\xd5\x8f\x36\xd1\xe7\x91\x7b\x24\x67\xd7\x99\xf2\x64\xbe\xfb\x7e\xeb\xcb\xde\x7b\xec\xea\xc4\xce\x8f\x2b\x01\x1b\xfa\x4d\xc4\x6e\x45\x4a\x05\xcd\x21\x1d\x4a\xef\x0f\x2d\x73\xcc\x17\x32\x63\x09\xbb\xb6\xbd\xde\x57\xdd\xa1\xcc\xb5\x4e\xe6\x5a\xb1\x45\xf9\xfb\xdf\xff\x41\xb0\xdf\x43\x02\x15\x59\xe1\x18\x75\x01\xea\x34\x2c\x1d\x36\x2a\xf7\x01\x81\xbc\x6a\x8d\x11\x61\x6d\xc0\x47\x9b\xad\x0c\xd0\x41\x1e\x6d\x59\x5e\xae\x10\x17\xc7\xc9\x71\xcf\x95\x63\x26\x7d\xa7\x01\xe2\x86\xe7\x99\xad\xfd\xff\x12\x37\x35\x32\xb3\x2f\x54\xaa\x91\x3c\x17\x00\x85\x2b\xc1\x76\x3c\xbb\x07\xa1\x3d\x52\x53\x67\xbc\x60\xdf\x49\x31\xad\x3a\xad\x5f\x56\xea\x43\x61\x02\x24\xc5\x64\x59\xa9\x94\x55\x0e\x61\xc6\x1c\xf3\x1e\xe4\xc9\x42\xad\xca\xf0\xc6\x55\x71\x41\xfb\xa9\x05\x6e\x68\xd8\x6c\x35\x30\x25\x50\xa5\x78\x1e\xa8\xbc\xb3\x01\xbe\xe8\x85\x7a\x26\x67\x74\x97\x9b\xeb\x03\x59\x1e\xd6\x85\x15\xa0\xb5\xa1\xb9\xa1\xb8\x25\x0c\x07\x4e\x7b\x38\xda\x3f\x80\xc2\xe5\x84\xfd\x24\x1f\xc4\x84\xdd\xa6\x3c\xbb\x9f\xb0\x37\x18\x54\xfa\x93\x5e\xb5\x79\xae\x1a\xe9\xf4\x27\x7b\xaf\x8e\x73\xde\x0c\x96\xc9\x77\x36\xef\x2f\x4d\x0d\xfc\xae\x88\xea\xff\x4c\x9c\x57\x07\xd3\xc1\xdf\xfb\xfd\xfb\x40\xf0\xf3\x37\x48\xd4\xdf\xe5\x5d\xb0\x9f\xe4\xe0\x77\xe1\xff\xda\xfd\xcb\x5a\x5c\x60\x7b\xd2\x2e\xd7\x8a\x75\xfa\x75\xa5\x75\xca\xb8\x7e\x28\x37\xb3\x3b\x87\x2d\x05\x4a\x9e\x8d\x5d\x62\xef\x08\x28\x37\xbd\x6a\xfb\xeb\x22\xd1\x79\x99\xf5\x2f\xfe\x9b\x6a\xad\xed\xd7\x5b\x88\x0e\x61\xb2\xed\x56\x02\x72\xb6\x87\x82\x1a\xf0\xb1\xe5\x7f\xe8\xd5\x12\x10\x3c\xa7\xad\xf0\xb6\xe2\xac\x6c\x8d\x8b\x03\x51\x55\xfd\x09\x79\x9b\x0a\xe0\xdb\xf1\xa6\xa8\x77\x83\xd7\x66\x98\x73\x08\x2c\x94\xa5\x1f\xc6\x7c\xc1\x2c\x13\xc0\x93\x6a\xee\xbd\x0f\x22\x63\x29\xcf\x5c\x18\xdd\x5a\x44\xc1\xcd\xc7\x43\x2d\xc2\x1c\x1f\x48\xd5\xa3\xfb\xd6\x4a\x08\xe5\x7a\x7b\x8c\x29\x61\xac\x83\x7a\xef\x13\x86\xea\x51\xb0\x08\xe1\xf9\x1d\xca\x71\x8d\xf7\x82\xbb\x20\x98\xdc\x1b\x51\x04\xbb\x79\xcd\xb4\xa8\x2c\xcd\x4a\x5c\xe6\x57\x85\x23\x6f\x8d\xbc\xd6\xa8\x89\x2a\x6e\x83\x41\x91\xac\xa7\xf0\x12\x7f\xe0\xc5\x16\x2f\xb4\x3b\x5d\x90\x84\x3f\x72\xa4\xe0\x7c\x41\x5f\xeb\x2a\xd1\x2b\x90\x41\x32\xbf\x74\xdd\x0d\x23\x5a\xda\x83\xba\xae\x39\x60\x43\x76\x06\xb3\x9b\x40\x9e\x61\x26\x72\xa0\x9b\x68\xc6\x66\x86\xa2\x5e\xc7\x5d\xba\x9b\xd5\x35\x9b\xfe\x9b\x6e\x69\x15\x77\xf3\x33\xcb\x1a\x20\x90\x97\x47\xe4\x65\x5c\x86\xb9\x7a\xc6\x38\x20\xaa\x56\x0a\x7e\x22\x5b\x63\xad\xbd\x56\x6d\x77\xa1\x66\xf8\x4b\x70\x08\x70\xaf\xc3\xe1\x50\x86\x24\xac\xe8\xd6\x1f\x26\xef\xb1\x59\x88\x6b\x23\x0f\xc1\xc4\x7b\xf0\xe0\x32\x30\x81\x5c\x39\x55\xc8\x4c\x30\x05\xb1\xf7\x85\xca\xcb\xd5\x99\xa7\x65\x30\xb7\xb8\x07\xa0\x12\xc9\x45\xca\xe1\x2a\x03\x6c\x2d\x67\x2d\xc7\x30\xfa\xe3\x3c\x9f\xbe\xa5\x2f\xe3\x09\x6d\xfe\x90\x81\x87\x79\xc1\xae\xed\xae\x1c\x73\x59\x83\x5b\xb4\xcd\x49\xc5\xc3\xae\x6f\xbf\x00\xc5\x0f\xc8\xeb\xbb\x41\xec\xc0\xb7\x3e\xc0\xc3\x18\xe0\xd0\xa3\x1b\xa2\x48\x0b\xf5\x7f\xed\xd9\xd0\x0d\x55\x1d\x31\xd3\x4d\xcf\x98\x23\xaa\x13\x42\x5b\xa9\x9b\xbd\x42\x06\x46\x60\x77\xa5\x1a\x53\xbe\xad\x54\x6e\xd1\x1c\x21\xbf\xbd\xa6\x24\x4c\xf8\xf5\x41\xe6\x01\xd9\x31\x7c\xed\x56\x08\xf6\x2a\x13\xeb\x57\x9f\x32\xb1\x5e\xda\x91\x9e\x42\x83\xa6\xa6\x45\x4d\xca\xe3\x81\x93\x23\x4f\xb5\x6a\xa7\x7e\x3b\x40\xcd\x58\x6b\x12\x96\x13\xb4\x49\xae\x99\x97\xa0\x33\xed\x81\xfc\x77\x11\xd7\xb9\x98\x1b\x35\xfb\xea\xc7\x5c\x17\xfe\x69\x00\xc0\xa8\x43\xfc\xec\xef\xff\x78\xab\xf4\xd9\x90\xe3\xed\xae\x0a\x14\xb1\x9b\x3d\x57\xee\xc0\xeb\x06\x14\x7f\x5d\xcc\x33\x0c\x60\x9e\xf2\x47\x45\x2c\x1e\xa3\x5c\x4f\xc3\x8e\xb5\x76\x11\x79\x73\xac\x35\x90\x5f\x7e\x95\x29\xeb\xe9\x93\x4e\x6b\x6b\x12\x48\x04\xf3\x24\x09\x19\xe5\x7d\x7c\x69\xa1\x02\x05\x34\xf6\x28\x92\xc4\xba\xf0\x2a\xf6\x06\x71\xb6\xc4\x90\x66\x2a\x26\x96\x72\x82\xc8\xda\x28\x0a\x74\xb6\xe2\xa0\x3f\xe9\x74\x56\x0e\xad\xe6\xa7\xba\x44\xfe\xca\xb2\x6d\x0f\xc4\x5b\xf1\xb3\xcb\x7b\xb1\x1f\x5d\xd7\x03\xba\x76\x70\x61\xf2\xbb\x6c\xc4\xb3\xcc\x62\xc7\xe9\xab\xcc\xdc\x95\xd6\x3c\xaa\xb8\x39\x3b\xea\xb9\x15\xd1\x7d\xaa\xa5\x1a\xbd\x17\x05\xf5\x31\x86\x54\x61\xce\x33\x5f\x9a\xbb\x1d\x0e\x3a\x1c\x2b\xf6\x24\x36\x24\x07\x50\x81\x05\x44\x7a\x2a\x2a\xce\x9c\x42\x66\xf7\xb4\x7b\x6a\xff\x85\xf0\x67\xc3\x33\xf8\x62\x5b\xe2\x43\xb5\x53\x85\xb7\x38\x76\x2a\x3c\x88\xbc\x91\x53\x34\xb0\xb3\x39\xab\x10\xb8\xb5\x76\x29\xb8\x20\x7f\xf3\x0c\xfd\xe6\x19\xfa\x1f\xee\x19\xfa\x9a\x6e\x21\x40\x84\x3c\xa7\x4f\xa8\x27\x40\x7e\xc2\x72\x74\x5f\x3d\x55\xec\x1a\xad\xe3\x49\x20\x0c\x1a\xe4\xcf\x35\xe1\xed\x96\x5e\xa1\x00\x49\xeb\xe8\x5e\xa8\xce\x18\xbd\x25\xc5\xe9\xd4\xbe\x7d\x2a\xd8\x67\x37\xa7\x4f\xf0\x76\x3f\x47\x9a\x07\xf8\x10\x65\x6a\x1b\xcd\x84\x59\x27\x60\x7b\x9a\x86\x9f\x01\x54\x4a\x67\x8e\xd6\x37\xa7\xdc\x2e\x0c\x46\x22\xf9\x0e\x42\x84\x6a\x44\xb8\x43\x91\x60\x4e\x78\x37\xd5\x3a\x69\x05\x84\x3d\x69\x07\x36\xd2\x43\x86\x76\xde\x1c\x8d\xd1\x3c\x84\x49\xd9\x5e\xf4\xa9\x06\x3e\x31\x01\xb3\x10\x40\x09\x00\x66\x53\x5c\x42\x86\x9e\xef\x8e\xa9\xcf\xeb\xe1\xce\xe1\x42\xc8\xa8\x95\x88\x38\xa8\xe0\x59\xc8\x5a\xc4\x5d\xce\x45\x48\xb5\xd3\x48\x82\xc8\x9b\xdf\xe9\x88\x5a\x42\xb9\x4b\xd9\x46\xfb\x3f\x76\x71\xd5\x2c\x04\x0b\xa8\xc6\x9a\x5b\x24\x89\x25\x9d\x3b\x24\x7a\x68\x19\x76\x97\x51\xc2\xf3\x81\x86\x75\xeb\xbe\x33\xa7\x82\x2e\xa0\x9c\xe1\x1b\xe9\x4f\x90\x84\xb2\x1b\x88\xdc\x59\xa8\x99\x13\xfd\xf3\xd8\x2f\x87\x57\xc3\x70\x29\x22\xf5\x1a\x43\x83\x4c\x76\xfe\xe6\x32\x61\x79\x19\x6d\x81\xab\xaf\xba\x4f\x85\xfb\x56\x73\xc5\x4e\x16\xca\x5c\x88\xc0\xd5\xb2\xe3\x90\x6d\xfd\x68\x8c\xd5\x5c\xfe\xa7\x70\xf0\x2c\xa2\x84\x0a\x11\x59\x78\x71\xd2\xaa\x15\xbd\x66\x69\x13\x11\x60\xe1\x31\x25\x65\x1a\xf3\x42\x4c\x17\x1e\x6d\x23\xd1\xd3\x69\x51\x1e\x64\x32\xe7\x61\xc3\x42\xf4\x5e\x6d\xa7\x4d\xe4\x5a\x44\xfb\xa8\xa1\x82\xd2\x4f\x3e\xf0\xdb\xb5\xed\xd7\x75\x6d\x43\x8e\x51\xcc\x94\x1b\xd3\xb5\x54\xd5\x1b\xff\xfa\x69\x9d\x2b\x58\x50\x93\x7c\x44\x3f\x7f\xc5\x6b\x67\x8b\x0d\x3c\xce\x9e\x1f\x7c\x0f\xea\x3f\xce\xfc\xc5\xd6\x1f\xd6\x41\x62\x7d\xc3\x2c\x0c\x83\x8b\x45\x38\x75\x8c\x41\x3b\x38\xac\xdf\xcd\x5d\xf2\xab\x02\x27\x0d\xb9\xb8\x1a\x8b\xdb\xc1\x95\xae\xac\xa5\xad\x04\x9e\x77\x3d\x16\x77\xc0\x69\xcd\x8b\x17\xb9\xeb\xf5\xea\x0e\x68\x11\xef\xef\x64\x5e\xfc\x5c\x53\x4c\x3c\x4e\x72\xf1\xd9\x4c\x53\x5b\x55\xac\xe6\x50\x8b\xea\xa6\x6a\xf3\xe8\xb5\x9d\x73\x70\x79\xb2\x1a\x59\xa6\xde\x63\xee\x41\x9f\x5c\x7f\x7d\xc2\xa3\xe9\x31\xe3\x69\x2a\x32\x7b\x90\x37\x6c\x2d\x10\x9c\x82\xaf\x80\x62\xdc\x56\xa0\x6c\x6d\xed\x96\x6b\xb6\x92\x5a\xd1\xf0\x18\x74\xdd\xb4\x7d\xe4\xae\xca\x24\xe9\x1c\xb9\xc3\x3a\x36\x57\x1f\xdf\xbd\x5b\xfe\x3c\x7b\xf7\xf1\xd2\x36\xbf\x55\x17\x26\x78\xac\xb3\x4f\x5c\x4d\xa8\x4f\xbc\xf2\x9c\xf9\xac\xb0\xd2\xb9\xda\xb7\x1a\x9d\x5c\x65\x92\x54\x35\x83\x16\xea\x13\x95\x03\x30\x6d\xd4\x43\x34\xfd\xc6\x7a\x3b\xae\xfa\x7d\x78\xec\x93\x29\xfc\x13\xbe\x7b\xc6\x7c\x23\x5e\x81\xb2\x1d\x29\x66\xb5\xf7\x2b\xe5\x80\x9c\xb0\x1c\x10\x0c\xdc\xb5\x1c\x9e\x5a\x15\xed\xb8\xe5\xf1\x51\x01\x1f\xb3\x88\xad\x98\xd9\x93\xac\x0e\xec\xbb\x4f\xd5\x38\xb5\xdb\xcb\x63\xbc\xd2\x40\xb9\x13\xd4\xb2\x02\x85\x5e\x2f\xf7\xb4\x50\xe8\x03\x35\x75\x2a\x74\x77\x9d\xd8\x9c\xcc\xdb\x84\xab\x4d\xc9\x37\xc6\xba\xb5\x1f\x5f\xa8\x9d\xdc\x6c\x91\x5d\xa2\x4c\x3d\x3e\x99\x33\x05\x24\x24\xb5\x29\x54\xc3\x27\x4b\xb5\x50\xd4\x26\xb5\xf1\xc5\x23\x56\xf6\x4f\xb7\xae\x39\x04\x4a\xc7\x82\x48\x8e\x4b\x2d\x14\x0e\x2e\xb2\x5e\xd8\x48\x08\xdc\x58\x78\x51\x9f\xba\x1c\x62\x97\x28\x59\x6d\xf6\xf4\x0d\xc4\x64\x16\xca\x25\xa6\xa2\xe7\x88\xda\x10\xc8\x36\x60\x95\x0e\xef\x27\x76\x30\xec\x9a\xa0\xba\xb5\xcf\xfa\x93\xcf\x00\xb3\xe0\x96\x23\xb4\x77\x9b\xdb\xd8\x40\x6f\x21\x0f\x36\x8e\x2e\xb6\x02\xc8\x46\x6e\xaf\x8d\x6d\x17\x3e\xd3\x09\x6d\xd5\xe5\x2a\x19\x51\x25\x7c\xbe\xb7\x52\xb8\x25\xf7\x57\x6a\xc0\x75\xf8\xa6\xb6\xb4\xcc\x34\xed\xfb\xec\x4a\xeb\x8e\x71\x79\xc2\x80\x62\xa5\x52\xf4\xc2\xa1\xce\x28\xa3\xe2\x98\xf9\x32\x20\x45\xaf\xde\x45\x76\xf7\xe9\xab\x50\x22\xf3\xa3\xaa\xe3\xed\xa7\xc1\x35\x72\x16\x02\x1d\x76\xa3\x76\x58\x3a\xe7\x2a\x1b\x6c\xc7\x36\x49\xf1\x24\x2b\x62\x2b\x71\x7b\x31\x8b\x07\x15\x66\xcd\xfc\x9f\xb8\x49\x34\xf1\x23\x37\x81\x4a\x46\x65\x96\x9b\xed\x92\xf6\x3b\xda\xb5\x75\xc6\xf8\x42\x59\x35\x04\xbb\x1d\xcf\x2c\x38\x37\x73\x7f\xc5\xb4\xc7\x14\xd9\xc4\xc1\x62\x2d\x98\x56\xc2\xee\x86\x0b\x65\x95\x8f\x27\x8c\xaf\x72\x2b\x28\xcc\xd5\xde\xa9\xfc\x4a\x27\xe1\xc6\x15\x03\xd4\xf3\xe1\x3d\xaf\x66\x06\x54\xce\xf9\xdf\x99\xff\xfb\xef\xdf\xfd\xff\x00\x00\x00\xff\xff\x6b\x5a\x06\xc7\xd9\xad\x04\x00") func adminSwaggerJsonBytes() ([]byte, error) { return bindataRead( @@ -93,7 +93,7 @@ func adminSwaggerJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin.swagger.json", size: 306253, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} + info := bindataFileInfo{name: "admin.swagger.json", size: 306649, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/gen/pb-java/flyteidl/core/Types.java b/gen/pb-java/flyteidl/core/Types.java index 227d63ac7..7bb789ee0 100644 --- a/gen/pb-java/flyteidl/core/Types.java +++ b/gen/pb-java/flyteidl/core/Types.java @@ -11212,6 +11212,30 @@ public interface OutputReferenceOrBuilder extends */ com.google.protobuf.ByteString getVarBytes(); + + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + java.util.List + getAttrPathList(); + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + flyteidl.core.Types.PromiseAttribute getAttrPath(int index); + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + int getAttrPathCount(); + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + java.util.List + getAttrPathOrBuilderList(); + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + flyteidl.core.Types.PromiseAttributeOrBuilder getAttrPathOrBuilder( + int index); } /** *
@@ -11233,6 +11257,7 @@ private OutputReference(com.google.protobuf.GeneratedMessageV3.Builder builde
     private OutputReference() {
       nodeId_ = "";
       var_ = "";
+      attrPath_ = java.util.Collections.emptyList();
     }
 
     @java.lang.Override
@@ -11271,6 +11296,15 @@ private OutputReference(
               var_ = s;
               break;
             }
+            case 26: {
+              if (!((mutable_bitField0_ & 0x00000004) != 0)) {
+                attrPath_ = new java.util.ArrayList();
+                mutable_bitField0_ |= 0x00000004;
+              }
+              attrPath_.add(
+                  input.readMessage(flyteidl.core.Types.PromiseAttribute.parser(), extensionRegistry));
+              break;
+            }
             default: {
               if (!parseUnknownField(
                   input, unknownFields, extensionRegistry, tag)) {
@@ -11286,6 +11320,9 @@ private OutputReference(
         throw new com.google.protobuf.InvalidProtocolBufferException(
             e).setUnfinishedMessage(this);
       } finally {
+        if (((mutable_bitField0_ & 0x00000004) != 0)) {
+          attrPath_ = java.util.Collections.unmodifiableList(attrPath_);
+        }
         this.unknownFields = unknownFields.build();
         makeExtensionsImmutable();
       }
@@ -11303,6 +11340,7 @@ private OutputReference(
               flyteidl.core.Types.OutputReference.class, flyteidl.core.Types.OutputReference.Builder.class);
     }
 
+    private int bitField0_;
     public static final int NODE_ID_FIELD_NUMBER = 1;
     private volatile java.lang.Object nodeId_;
     /**
@@ -11374,19 +11412,1102 @@ public java.lang.String getVar() {
      * string var = 2;
      */
     public com.google.protobuf.ByteString
-        getVarBytes() {
-      java.lang.Object ref = var_;
+        getVarBytes() {
+      java.lang.Object ref = var_;
+      if (ref instanceof java.lang.String) {
+        com.google.protobuf.ByteString b = 
+            com.google.protobuf.ByteString.copyFromUtf8(
+                (java.lang.String) ref);
+        var_ = b;
+        return b;
+      } else {
+        return (com.google.protobuf.ByteString) ref;
+      }
+    }
+
+    public static final int ATTR_PATH_FIELD_NUMBER = 3;
+    private java.util.List attrPath_;
+    /**
+     * repeated .flyteidl.core.PromiseAttribute attr_path = 3;
+     */
+    public java.util.List getAttrPathList() {
+      return attrPath_;
+    }
+    /**
+     * repeated .flyteidl.core.PromiseAttribute attr_path = 3;
+     */
+    public java.util.List 
+        getAttrPathOrBuilderList() {
+      return attrPath_;
+    }
+    /**
+     * repeated .flyteidl.core.PromiseAttribute attr_path = 3;
+     */
+    public int getAttrPathCount() {
+      return attrPath_.size();
+    }
+    /**
+     * repeated .flyteidl.core.PromiseAttribute attr_path = 3;
+     */
+    public flyteidl.core.Types.PromiseAttribute getAttrPath(int index) {
+      return attrPath_.get(index);
+    }
+    /**
+     * repeated .flyteidl.core.PromiseAttribute attr_path = 3;
+     */
+    public flyteidl.core.Types.PromiseAttributeOrBuilder getAttrPathOrBuilder(
+        int index) {
+      return attrPath_.get(index);
+    }
+
+    private byte memoizedIsInitialized = -1;
+    @java.lang.Override
+    public final boolean isInitialized() {
+      byte isInitialized = memoizedIsInitialized;
+      if (isInitialized == 1) return true;
+      if (isInitialized == 0) return false;
+
+      memoizedIsInitialized = 1;
+      return true;
+    }
+
+    @java.lang.Override
+    public void writeTo(com.google.protobuf.CodedOutputStream output)
+                        throws java.io.IOException {
+      if (!getNodeIdBytes().isEmpty()) {
+        com.google.protobuf.GeneratedMessageV3.writeString(output, 1, nodeId_);
+      }
+      if (!getVarBytes().isEmpty()) {
+        com.google.protobuf.GeneratedMessageV3.writeString(output, 2, var_);
+      }
+      for (int i = 0; i < attrPath_.size(); i++) {
+        output.writeMessage(3, attrPath_.get(i));
+      }
+      unknownFields.writeTo(output);
+    }
+
+    @java.lang.Override
+    public int getSerializedSize() {
+      int size = memoizedSize;
+      if (size != -1) return size;
+
+      size = 0;
+      if (!getNodeIdBytes().isEmpty()) {
+        size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, nodeId_);
+      }
+      if (!getVarBytes().isEmpty()) {
+        size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, var_);
+      }
+      for (int i = 0; i < attrPath_.size(); i++) {
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(3, attrPath_.get(i));
+      }
+      size += unknownFields.getSerializedSize();
+      memoizedSize = size;
+      return size;
+    }
+
+    @java.lang.Override
+    public boolean equals(final java.lang.Object obj) {
+      if (obj == this) {
+       return true;
+      }
+      if (!(obj instanceof flyteidl.core.Types.OutputReference)) {
+        return super.equals(obj);
+      }
+      flyteidl.core.Types.OutputReference other = (flyteidl.core.Types.OutputReference) obj;
+
+      if (!getNodeId()
+          .equals(other.getNodeId())) return false;
+      if (!getVar()
+          .equals(other.getVar())) return false;
+      if (!getAttrPathList()
+          .equals(other.getAttrPathList())) return false;
+      if (!unknownFields.equals(other.unknownFields)) return false;
+      return true;
+    }
+
+    @java.lang.Override
+    public int hashCode() {
+      if (memoizedHashCode != 0) {
+        return memoizedHashCode;
+      }
+      int hash = 41;
+      hash = (19 * hash) + getDescriptor().hashCode();
+      hash = (37 * hash) + NODE_ID_FIELD_NUMBER;
+      hash = (53 * hash) + getNodeId().hashCode();
+      hash = (37 * hash) + VAR_FIELD_NUMBER;
+      hash = (53 * hash) + getVar().hashCode();
+      if (getAttrPathCount() > 0) {
+        hash = (37 * hash) + ATTR_PATH_FIELD_NUMBER;
+        hash = (53 * hash) + getAttrPathList().hashCode();
+      }
+      hash = (29 * hash) + unknownFields.hashCode();
+      memoizedHashCode = hash;
+      return hash;
+    }
+
+    public static flyteidl.core.Types.OutputReference parseFrom(
+        java.nio.ByteBuffer data)
+        throws com.google.protobuf.InvalidProtocolBufferException {
+      return PARSER.parseFrom(data);
+    }
+    public static flyteidl.core.Types.OutputReference parseFrom(
+        java.nio.ByteBuffer data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        throws com.google.protobuf.InvalidProtocolBufferException {
+      return PARSER.parseFrom(data, extensionRegistry);
+    }
+    public static flyteidl.core.Types.OutputReference parseFrom(
+        com.google.protobuf.ByteString data)
+        throws com.google.protobuf.InvalidProtocolBufferException {
+      return PARSER.parseFrom(data);
+    }
+    public static flyteidl.core.Types.OutputReference parseFrom(
+        com.google.protobuf.ByteString data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        throws com.google.protobuf.InvalidProtocolBufferException {
+      return PARSER.parseFrom(data, extensionRegistry);
+    }
+    public static flyteidl.core.Types.OutputReference parseFrom(byte[] data)
+        throws com.google.protobuf.InvalidProtocolBufferException {
+      return PARSER.parseFrom(data);
+    }
+    public static flyteidl.core.Types.OutputReference parseFrom(
+        byte[] data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        throws com.google.protobuf.InvalidProtocolBufferException {
+      return PARSER.parseFrom(data, extensionRegistry);
+    }
+    public static flyteidl.core.Types.OutputReference parseFrom(java.io.InputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
+    }
+    public static flyteidl.core.Types.OutputReference parseFrom(
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
+    }
+    public static flyteidl.core.Types.OutputReference parseDelimitedFrom(java.io.InputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input);
+    }
+    public static flyteidl.core.Types.OutputReference parseDelimitedFrom(
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
+    }
+    public static flyteidl.core.Types.OutputReference parseFrom(
+        com.google.protobuf.CodedInputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
+    }
+    public static flyteidl.core.Types.OutputReference parseFrom(
+        com.google.protobuf.CodedInputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
+    }
+
+    @java.lang.Override
+    public Builder newBuilderForType() { return newBuilder(); }
+    public static Builder newBuilder() {
+      return DEFAULT_INSTANCE.toBuilder();
+    }
+    public static Builder newBuilder(flyteidl.core.Types.OutputReference prototype) {
+      return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
+    }
+    @java.lang.Override
+    public Builder toBuilder() {
+      return this == DEFAULT_INSTANCE
+          ? new Builder() : new Builder().mergeFrom(this);
+    }
+
+    @java.lang.Override
+    protected Builder newBuilderForType(
+        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
+      Builder builder = new Builder(parent);
+      return builder;
+    }
+    /**
+     * 
+     * A reference to an output produced by a node. The type can be retrieved -and validated- from
+     * the underlying interface of the node.
+     * 
+ * + * Protobuf type {@code flyteidl.core.OutputReference} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:flyteidl.core.OutputReference) + flyteidl.core.Types.OutputReferenceOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return flyteidl.core.Types.internal_static_flyteidl_core_OutputReference_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return flyteidl.core.Types.internal_static_flyteidl_core_OutputReference_fieldAccessorTable + .ensureFieldAccessorsInitialized( + flyteidl.core.Types.OutputReference.class, flyteidl.core.Types.OutputReference.Builder.class); + } + + // Construct using flyteidl.core.Types.OutputReference.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getAttrPathFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + nodeId_ = ""; + + var_ = ""; + + if (attrPathBuilder_ == null) { + attrPath_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000004); + } else { + attrPathBuilder_.clear(); + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return flyteidl.core.Types.internal_static_flyteidl_core_OutputReference_descriptor; + } + + @java.lang.Override + public flyteidl.core.Types.OutputReference getDefaultInstanceForType() { + return flyteidl.core.Types.OutputReference.getDefaultInstance(); + } + + @java.lang.Override + public flyteidl.core.Types.OutputReference build() { + flyteidl.core.Types.OutputReference result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public flyteidl.core.Types.OutputReference buildPartial() { + flyteidl.core.Types.OutputReference result = new flyteidl.core.Types.OutputReference(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + result.nodeId_ = nodeId_; + result.var_ = var_; + if (attrPathBuilder_ == null) { + if (((bitField0_ & 0x00000004) != 0)) { + attrPath_ = java.util.Collections.unmodifiableList(attrPath_); + bitField0_ = (bitField0_ & ~0x00000004); + } + result.attrPath_ = attrPath_; + } else { + result.attrPath_ = attrPathBuilder_.build(); + } + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof flyteidl.core.Types.OutputReference) { + return mergeFrom((flyteidl.core.Types.OutputReference)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(flyteidl.core.Types.OutputReference other) { + if (other == flyteidl.core.Types.OutputReference.getDefaultInstance()) return this; + if (!other.getNodeId().isEmpty()) { + nodeId_ = other.nodeId_; + onChanged(); + } + if (!other.getVar().isEmpty()) { + var_ = other.var_; + onChanged(); + } + if (attrPathBuilder_ == null) { + if (!other.attrPath_.isEmpty()) { + if (attrPath_.isEmpty()) { + attrPath_ = other.attrPath_; + bitField0_ = (bitField0_ & ~0x00000004); + } else { + ensureAttrPathIsMutable(); + attrPath_.addAll(other.attrPath_); + } + onChanged(); + } + } else { + if (!other.attrPath_.isEmpty()) { + if (attrPathBuilder_.isEmpty()) { + attrPathBuilder_.dispose(); + attrPathBuilder_ = null; + attrPath_ = other.attrPath_; + bitField0_ = (bitField0_ & ~0x00000004); + attrPathBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getAttrPathFieldBuilder() : null; + } else { + attrPathBuilder_.addAllMessages(other.attrPath_); + } + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + flyteidl.core.Types.OutputReference parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (flyteidl.core.Types.OutputReference) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + private java.lang.Object nodeId_ = ""; + /** + *
+       * Node id must exist at the graph layer.
+       * 
+ * + * string node_id = 1; + */ + public java.lang.String getNodeId() { + java.lang.Object ref = nodeId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + nodeId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+       * Node id must exist at the graph layer.
+       * 
+ * + * string node_id = 1; + */ + public com.google.protobuf.ByteString + getNodeIdBytes() { + java.lang.Object ref = nodeId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + nodeId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+       * Node id must exist at the graph layer.
+       * 
+ * + * string node_id = 1; + */ + public Builder setNodeId( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + nodeId_ = value; + onChanged(); + return this; + } + /** + *
+       * Node id must exist at the graph layer.
+       * 
+ * + * string node_id = 1; + */ + public Builder clearNodeId() { + + nodeId_ = getDefaultInstance().getNodeId(); + onChanged(); + return this; + } + /** + *
+       * Node id must exist at the graph layer.
+       * 
+ * + * string node_id = 1; + */ + public Builder setNodeIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + nodeId_ = value; + onChanged(); + return this; + } + + private java.lang.Object var_ = ""; + /** + *
+       * Variable name must refer to an output variable for the node.
+       * 
+ * + * string var = 2; + */ + public java.lang.String getVar() { + java.lang.Object ref = var_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + var_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+       * Variable name must refer to an output variable for the node.
+       * 
+ * + * string var = 2; + */ + public com.google.protobuf.ByteString + getVarBytes() { + java.lang.Object ref = var_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + var_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+       * Variable name must refer to an output variable for the node.
+       * 
+ * + * string var = 2; + */ + public Builder setVar( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + var_ = value; + onChanged(); + return this; + } + /** + *
+       * Variable name must refer to an output variable for the node.
+       * 
+ * + * string var = 2; + */ + public Builder clearVar() { + + var_ = getDefaultInstance().getVar(); + onChanged(); + return this; + } + /** + *
+       * Variable name must refer to an output variable for the node.
+       * 
+ * + * string var = 2; + */ + public Builder setVarBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + var_ = value; + onChanged(); + return this; + } + + private java.util.List attrPath_ = + java.util.Collections.emptyList(); + private void ensureAttrPathIsMutable() { + if (!((bitField0_ & 0x00000004) != 0)) { + attrPath_ = new java.util.ArrayList(attrPath_); + bitField0_ |= 0x00000004; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + flyteidl.core.Types.PromiseAttribute, flyteidl.core.Types.PromiseAttribute.Builder, flyteidl.core.Types.PromiseAttributeOrBuilder> attrPathBuilder_; + + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public java.util.List getAttrPathList() { + if (attrPathBuilder_ == null) { + return java.util.Collections.unmodifiableList(attrPath_); + } else { + return attrPathBuilder_.getMessageList(); + } + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public int getAttrPathCount() { + if (attrPathBuilder_ == null) { + return attrPath_.size(); + } else { + return attrPathBuilder_.getCount(); + } + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public flyteidl.core.Types.PromiseAttribute getAttrPath(int index) { + if (attrPathBuilder_ == null) { + return attrPath_.get(index); + } else { + return attrPathBuilder_.getMessage(index); + } + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public Builder setAttrPath( + int index, flyteidl.core.Types.PromiseAttribute value) { + if (attrPathBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAttrPathIsMutable(); + attrPath_.set(index, value); + onChanged(); + } else { + attrPathBuilder_.setMessage(index, value); + } + return this; + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public Builder setAttrPath( + int index, flyteidl.core.Types.PromiseAttribute.Builder builderForValue) { + if (attrPathBuilder_ == null) { + ensureAttrPathIsMutable(); + attrPath_.set(index, builderForValue.build()); + onChanged(); + } else { + attrPathBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public Builder addAttrPath(flyteidl.core.Types.PromiseAttribute value) { + if (attrPathBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAttrPathIsMutable(); + attrPath_.add(value); + onChanged(); + } else { + attrPathBuilder_.addMessage(value); + } + return this; + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public Builder addAttrPath( + int index, flyteidl.core.Types.PromiseAttribute value) { + if (attrPathBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAttrPathIsMutable(); + attrPath_.add(index, value); + onChanged(); + } else { + attrPathBuilder_.addMessage(index, value); + } + return this; + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public Builder addAttrPath( + flyteidl.core.Types.PromiseAttribute.Builder builderForValue) { + if (attrPathBuilder_ == null) { + ensureAttrPathIsMutable(); + attrPath_.add(builderForValue.build()); + onChanged(); + } else { + attrPathBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public Builder addAttrPath( + int index, flyteidl.core.Types.PromiseAttribute.Builder builderForValue) { + if (attrPathBuilder_ == null) { + ensureAttrPathIsMutable(); + attrPath_.add(index, builderForValue.build()); + onChanged(); + } else { + attrPathBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public Builder addAllAttrPath( + java.lang.Iterable values) { + if (attrPathBuilder_ == null) { + ensureAttrPathIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, attrPath_); + onChanged(); + } else { + attrPathBuilder_.addAllMessages(values); + } + return this; + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public Builder clearAttrPath() { + if (attrPathBuilder_ == null) { + attrPath_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + } else { + attrPathBuilder_.clear(); + } + return this; + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public Builder removeAttrPath(int index) { + if (attrPathBuilder_ == null) { + ensureAttrPathIsMutable(); + attrPath_.remove(index); + onChanged(); + } else { + attrPathBuilder_.remove(index); + } + return this; + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public flyteidl.core.Types.PromiseAttribute.Builder getAttrPathBuilder( + int index) { + return getAttrPathFieldBuilder().getBuilder(index); + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public flyteidl.core.Types.PromiseAttributeOrBuilder getAttrPathOrBuilder( + int index) { + if (attrPathBuilder_ == null) { + return attrPath_.get(index); } else { + return attrPathBuilder_.getMessageOrBuilder(index); + } + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public java.util.List + getAttrPathOrBuilderList() { + if (attrPathBuilder_ != null) { + return attrPathBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(attrPath_); + } + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public flyteidl.core.Types.PromiseAttribute.Builder addAttrPathBuilder() { + return getAttrPathFieldBuilder().addBuilder( + flyteidl.core.Types.PromiseAttribute.getDefaultInstance()); + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public flyteidl.core.Types.PromiseAttribute.Builder addAttrPathBuilder( + int index) { + return getAttrPathFieldBuilder().addBuilder( + index, flyteidl.core.Types.PromiseAttribute.getDefaultInstance()); + } + /** + * repeated .flyteidl.core.PromiseAttribute attr_path = 3; + */ + public java.util.List + getAttrPathBuilderList() { + return getAttrPathFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + flyteidl.core.Types.PromiseAttribute, flyteidl.core.Types.PromiseAttribute.Builder, flyteidl.core.Types.PromiseAttributeOrBuilder> + getAttrPathFieldBuilder() { + if (attrPathBuilder_ == null) { + attrPathBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + flyteidl.core.Types.PromiseAttribute, flyteidl.core.Types.PromiseAttribute.Builder, flyteidl.core.Types.PromiseAttributeOrBuilder>( + attrPath_, + ((bitField0_ & 0x00000004) != 0), + getParentForChildren(), + isClean()); + attrPath_ = null; + } + return attrPathBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:flyteidl.core.OutputReference) + } + + // @@protoc_insertion_point(class_scope:flyteidl.core.OutputReference) + private static final flyteidl.core.Types.OutputReference DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new flyteidl.core.Types.OutputReference(); + } + + public static flyteidl.core.Types.OutputReference getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public OutputReference parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new OutputReference(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public flyteidl.core.Types.OutputReference getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + + } + + public interface PromiseAttributeOrBuilder extends + // @@protoc_insertion_point(interface_extends:flyteidl.core.PromiseAttribute) + com.google.protobuf.MessageOrBuilder { + + /** + * string string_value = 1; + */ + java.lang.String getStringValue(); + /** + * string string_value = 1; + */ + com.google.protobuf.ByteString + getStringValueBytes(); + + /** + * int32 int_value = 2; + */ + int getIntValue(); + + public flyteidl.core.Types.PromiseAttribute.ValueCase getValueCase(); + } + /** + * Protobuf type {@code flyteidl.core.PromiseAttribute} + */ + public static final class PromiseAttribute extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:flyteidl.core.PromiseAttribute) + PromiseAttributeOrBuilder { + private static final long serialVersionUID = 0L; + // Use PromiseAttribute.newBuilder() to construct. + private PromiseAttribute(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private PromiseAttribute() { + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private PromiseAttribute( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + java.lang.String s = input.readStringRequireUtf8(); + valueCase_ = 1; + value_ = s; + break; + } + case 16: { + valueCase_ = 2; + value_ = input.readInt32(); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return flyteidl.core.Types.internal_static_flyteidl_core_PromiseAttribute_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return flyteidl.core.Types.internal_static_flyteidl_core_PromiseAttribute_fieldAccessorTable + .ensureFieldAccessorsInitialized( + flyteidl.core.Types.PromiseAttribute.class, flyteidl.core.Types.PromiseAttribute.Builder.class); + } + + private int valueCase_ = 0; + private java.lang.Object value_; + public enum ValueCase + implements com.google.protobuf.Internal.EnumLite { + STRING_VALUE(1), + INT_VALUE(2), + VALUE_NOT_SET(0); + private final int value; + private ValueCase(int value) { + this.value = value; + } + /** + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static ValueCase valueOf(int value) { + return forNumber(value); + } + + public static ValueCase forNumber(int value) { + switch (value) { + case 1: return STRING_VALUE; + case 2: return INT_VALUE; + case 0: return VALUE_NOT_SET; + default: return null; + } + } + public int getNumber() { + return this.value; + } + }; + + public ValueCase + getValueCase() { + return ValueCase.forNumber( + valueCase_); + } + + public static final int STRING_VALUE_FIELD_NUMBER = 1; + /** + * string string_value = 1; + */ + public java.lang.String getStringValue() { + java.lang.Object ref = ""; + if (valueCase_ == 1) { + ref = value_; + } + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (valueCase_ == 1) { + value_ = s; + } + return s; + } + } + /** + * string string_value = 1; + */ + public com.google.protobuf.ByteString + getStringValueBytes() { + java.lang.Object ref = ""; + if (valueCase_ == 1) { + ref = value_; + } if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); - var_ = b; + if (valueCase_ == 1) { + value_ = b; + } return b; } else { return (com.google.protobuf.ByteString) ref; } } + public static final int INT_VALUE_FIELD_NUMBER = 2; + /** + * int32 int_value = 2; + */ + public int getIntValue() { + if (valueCase_ == 2) { + return (java.lang.Integer) value_; + } + return 0; + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -11401,11 +12522,12 @@ public final boolean isInitialized() { @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { - if (!getNodeIdBytes().isEmpty()) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, nodeId_); + if (valueCase_ == 1) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, value_); } - if (!getVarBytes().isEmpty()) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, var_); + if (valueCase_ == 2) { + output.writeInt32( + 2, (int)((java.lang.Integer) value_)); } unknownFields.writeTo(output); } @@ -11416,11 +12538,13 @@ public int getSerializedSize() { if (size != -1) return size; size = 0; - if (!getNodeIdBytes().isEmpty()) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, nodeId_); + if (valueCase_ == 1) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, value_); } - if (!getVarBytes().isEmpty()) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, var_); + if (valueCase_ == 2) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size( + 2, (int)((java.lang.Integer) value_)); } size += unknownFields.getSerializedSize(); memoizedSize = size; @@ -11432,15 +12556,24 @@ public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof flyteidl.core.Types.OutputReference)) { + if (!(obj instanceof flyteidl.core.Types.PromiseAttribute)) { return super.equals(obj); } - flyteidl.core.Types.OutputReference other = (flyteidl.core.Types.OutputReference) obj; + flyteidl.core.Types.PromiseAttribute other = (flyteidl.core.Types.PromiseAttribute) obj; - if (!getNodeId() - .equals(other.getNodeId())) return false; - if (!getVar() - .equals(other.getVar())) return false; + if (!getValueCase().equals(other.getValueCase())) return false; + switch (valueCase_) { + case 1: + if (!getStringValue() + .equals(other.getStringValue())) return false; + break; + case 2: + if (getIntValue() + != other.getIntValue()) return false; + break; + case 0: + default: + } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -11452,78 +12585,86 @@ public int hashCode() { } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + NODE_ID_FIELD_NUMBER; - hash = (53 * hash) + getNodeId().hashCode(); - hash = (37 * hash) + VAR_FIELD_NUMBER; - hash = (53 * hash) + getVar().hashCode(); + switch (valueCase_) { + case 1: + hash = (37 * hash) + STRING_VALUE_FIELD_NUMBER; + hash = (53 * hash) + getStringValue().hashCode(); + break; + case 2: + hash = (37 * hash) + INT_VALUE_FIELD_NUMBER; + hash = (53 * hash) + getIntValue(); + break; + case 0: + default: + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } - public static flyteidl.core.Types.OutputReference parseFrom( + public static flyteidl.core.Types.PromiseAttribute parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static flyteidl.core.Types.OutputReference parseFrom( + public static flyteidl.core.Types.PromiseAttribute parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static flyteidl.core.Types.OutputReference parseFrom( + public static flyteidl.core.Types.PromiseAttribute parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static flyteidl.core.Types.OutputReference parseFrom( + public static flyteidl.core.Types.PromiseAttribute parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static flyteidl.core.Types.OutputReference parseFrom(byte[] data) + public static flyteidl.core.Types.PromiseAttribute parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static flyteidl.core.Types.OutputReference parseFrom( + public static flyteidl.core.Types.PromiseAttribute parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static flyteidl.core.Types.OutputReference parseFrom(java.io.InputStream input) + public static flyteidl.core.Types.PromiseAttribute parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static flyteidl.core.Types.OutputReference parseFrom( + public static flyteidl.core.Types.PromiseAttribute parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } - public static flyteidl.core.Types.OutputReference parseDelimitedFrom(java.io.InputStream input) + public static flyteidl.core.Types.PromiseAttribute parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static flyteidl.core.Types.OutputReference parseDelimitedFrom( + public static flyteidl.core.Types.PromiseAttribute parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static flyteidl.core.Types.OutputReference parseFrom( + public static flyteidl.core.Types.PromiseAttribute parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static flyteidl.core.Types.OutputReference parseFrom( + public static flyteidl.core.Types.PromiseAttribute parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -11536,7 +12677,7 @@ public static flyteidl.core.Types.OutputReference parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(flyteidl.core.Types.OutputReference prototype) { + public static Builder newBuilder(flyteidl.core.Types.PromiseAttribute prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override @@ -11552,31 +12693,26 @@ protected Builder newBuilderForType( return builder; } /** - *
-     * A reference to an output produced by a node. The type can be retrieved -and validated- from
-     * the underlying interface of the node.
-     * 
- * - * Protobuf type {@code flyteidl.core.OutputReference} + * Protobuf type {@code flyteidl.core.PromiseAttribute} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:flyteidl.core.OutputReference) - flyteidl.core.Types.OutputReferenceOrBuilder { + // @@protoc_insertion_point(builder_implements:flyteidl.core.PromiseAttribute) + flyteidl.core.Types.PromiseAttributeOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return flyteidl.core.Types.internal_static_flyteidl_core_OutputReference_descriptor; + return flyteidl.core.Types.internal_static_flyteidl_core_PromiseAttribute_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return flyteidl.core.Types.internal_static_flyteidl_core_OutputReference_fieldAccessorTable + return flyteidl.core.Types.internal_static_flyteidl_core_PromiseAttribute_fieldAccessorTable .ensureFieldAccessorsInitialized( - flyteidl.core.Types.OutputReference.class, flyteidl.core.Types.OutputReference.Builder.class); + flyteidl.core.Types.PromiseAttribute.class, flyteidl.core.Types.PromiseAttribute.Builder.class); } - // Construct using flyteidl.core.Types.OutputReference.newBuilder() + // Construct using flyteidl.core.Types.PromiseAttribute.newBuilder() private Builder() { maybeForceBuilderInitialization(); } @@ -11594,27 +12730,25 @@ private void maybeForceBuilderInitialization() { @java.lang.Override public Builder clear() { super.clear(); - nodeId_ = ""; - - var_ = ""; - + valueCase_ = 0; + value_ = null; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return flyteidl.core.Types.internal_static_flyteidl_core_OutputReference_descriptor; + return flyteidl.core.Types.internal_static_flyteidl_core_PromiseAttribute_descriptor; } @java.lang.Override - public flyteidl.core.Types.OutputReference getDefaultInstanceForType() { - return flyteidl.core.Types.OutputReference.getDefaultInstance(); + public flyteidl.core.Types.PromiseAttribute getDefaultInstanceForType() { + return flyteidl.core.Types.PromiseAttribute.getDefaultInstance(); } @java.lang.Override - public flyteidl.core.Types.OutputReference build() { - flyteidl.core.Types.OutputReference result = buildPartial(); + public flyteidl.core.Types.PromiseAttribute build() { + flyteidl.core.Types.PromiseAttribute result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } @@ -11622,10 +12756,15 @@ public flyteidl.core.Types.OutputReference build() { } @java.lang.Override - public flyteidl.core.Types.OutputReference buildPartial() { - flyteidl.core.Types.OutputReference result = new flyteidl.core.Types.OutputReference(this); - result.nodeId_ = nodeId_; - result.var_ = var_; + public flyteidl.core.Types.PromiseAttribute buildPartial() { + flyteidl.core.Types.PromiseAttribute result = new flyteidl.core.Types.PromiseAttribute(this); + if (valueCase_ == 1) { + result.value_ = value_; + } + if (valueCase_ == 2) { + result.value_ = value_; + } + result.valueCase_ = valueCase_; onBuilt(); return result; } @@ -11664,23 +12803,30 @@ public Builder addRepeatedField( } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof flyteidl.core.Types.OutputReference) { - return mergeFrom((flyteidl.core.Types.OutputReference)other); + if (other instanceof flyteidl.core.Types.PromiseAttribute) { + return mergeFrom((flyteidl.core.Types.PromiseAttribute)other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(flyteidl.core.Types.OutputReference other) { - if (other == flyteidl.core.Types.OutputReference.getDefaultInstance()) return this; - if (!other.getNodeId().isEmpty()) { - nodeId_ = other.nodeId_; - onChanged(); - } - if (!other.getVar().isEmpty()) { - var_ = other.var_; - onChanged(); + public Builder mergeFrom(flyteidl.core.Types.PromiseAttribute other) { + if (other == flyteidl.core.Types.PromiseAttribute.getDefaultInstance()) return this; + switch (other.getValueCase()) { + case STRING_VALUE: { + valueCase_ = 1; + value_ = other.value_; + onChanged(); + break; + } + case INT_VALUE: { + setIntValue(other.getIntValue()); + break; + } + case VALUE_NOT_SET: { + break; + } } this.mergeUnknownFields(other.unknownFields); onChanged(); @@ -11697,11 +12843,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - flyteidl.core.Types.OutputReference parsedMessage = null; + flyteidl.core.Types.PromiseAttribute parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (flyteidl.core.Types.OutputReference) e.getUnfinishedMessage(); + parsedMessage = (flyteidl.core.Types.PromiseAttribute) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -11710,182 +12856,129 @@ public Builder mergeFrom( } return this; } + private int valueCase_ = 0; + private java.lang.Object value_; + public ValueCase + getValueCase() { + return ValueCase.forNumber( + valueCase_); + } + + public Builder clearValue() { + valueCase_ = 0; + value_ = null; + onChanged(); + return this; + } + - private java.lang.Object nodeId_ = ""; /** - *
-       * Node id must exist at the graph layer.
-       * 
- * - * string node_id = 1; + * string string_value = 1; */ - public java.lang.String getNodeId() { - java.lang.Object ref = nodeId_; + public java.lang.String getStringValue() { + java.lang.Object ref = ""; + if (valueCase_ == 1) { + ref = value_; + } if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - nodeId_ = s; + if (valueCase_ == 1) { + value_ = s; + } return s; } else { return (java.lang.String) ref; } } /** - *
-       * Node id must exist at the graph layer.
-       * 
- * - * string node_id = 1; + * string string_value = 1; */ public com.google.protobuf.ByteString - getNodeIdBytes() { - java.lang.Object ref = nodeId_; + getStringValueBytes() { + java.lang.Object ref = ""; + if (valueCase_ == 1) { + ref = value_; + } if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); - nodeId_ = b; + if (valueCase_ == 1) { + value_ = b; + } return b; } else { return (com.google.protobuf.ByteString) ref; } } /** - *
-       * Node id must exist at the graph layer.
-       * 
- * - * string node_id = 1; + * string string_value = 1; */ - public Builder setNodeId( + public Builder setStringValue( java.lang.String value) { if (value == null) { throw new NullPointerException(); } - - nodeId_ = value; + valueCase_ = 1; + value_ = value; onChanged(); return this; } /** - *
-       * Node id must exist at the graph layer.
-       * 
- * - * string node_id = 1; + * string string_value = 1; */ - public Builder clearNodeId() { - - nodeId_ = getDefaultInstance().getNodeId(); - onChanged(); + public Builder clearStringValue() { + if (valueCase_ == 1) { + valueCase_ = 0; + value_ = null; + onChanged(); + } return this; } /** - *
-       * Node id must exist at the graph layer.
-       * 
- * - * string node_id = 1; + * string string_value = 1; */ - public Builder setNodeIdBytes( + public Builder setStringValueBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); - - nodeId_ = value; + valueCase_ = 1; + value_ = value; onChanged(); return this; } - private java.lang.Object var_ = ""; - /** - *
-       * Variable name must refer to an output variable for the node.
-       * 
- * - * string var = 2; - */ - public java.lang.String getVar() { - java.lang.Object ref = var_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - var_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } /** - *
-       * Variable name must refer to an output variable for the node.
-       * 
- * - * string var = 2; + * int32 int_value = 2; */ - public com.google.protobuf.ByteString - getVarBytes() { - java.lang.Object ref = var_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - var_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; + public int getIntValue() { + if (valueCase_ == 2) { + return (java.lang.Integer) value_; } + return 0; } /** - *
-       * Variable name must refer to an output variable for the node.
-       * 
- * - * string var = 2; - */ - public Builder setVar( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - var_ = value; - onChanged(); - return this; - } - /** - *
-       * Variable name must refer to an output variable for the node.
-       * 
- * - * string var = 2; + * int32 int_value = 2; */ - public Builder clearVar() { - - var_ = getDefaultInstance().getVar(); + public Builder setIntValue(int value) { + valueCase_ = 2; + value_ = value; onChanged(); return this; } /** - *
-       * Variable name must refer to an output variable for the node.
-       * 
- * - * string var = 2; + * int32 int_value = 2; */ - public Builder setVarBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - var_ = value; - onChanged(); + public Builder clearIntValue() { + if (valueCase_ == 2) { + valueCase_ = 0; + value_ = null; + onChanged(); + } return this; } @java.lang.Override @@ -11901,41 +12994,41 @@ public final Builder mergeUnknownFields( } - // @@protoc_insertion_point(builder_scope:flyteidl.core.OutputReference) + // @@protoc_insertion_point(builder_scope:flyteidl.core.PromiseAttribute) } - // @@protoc_insertion_point(class_scope:flyteidl.core.OutputReference) - private static final flyteidl.core.Types.OutputReference DEFAULT_INSTANCE; + // @@protoc_insertion_point(class_scope:flyteidl.core.PromiseAttribute) + private static final flyteidl.core.Types.PromiseAttribute DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new flyteidl.core.Types.OutputReference(); + DEFAULT_INSTANCE = new flyteidl.core.Types.PromiseAttribute(); } - public static flyteidl.core.Types.OutputReference getDefaultInstance() { + public static flyteidl.core.Types.PromiseAttribute getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override - public OutputReference parsePartialFrom( + public PromiseAttribute parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { - return new OutputReference(input, extensionRegistry); + return new PromiseAttribute(input, extensionRegistry); } }; - public static com.google.protobuf.Parser parser() { + public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override - public com.google.protobuf.Parser getParserForType() { + public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override - public flyteidl.core.Types.OutputReference getDefaultInstanceForType() { + public flyteidl.core.Types.PromiseAttribute getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -12762,6 +13855,11 @@ public flyteidl.core.Types.Error getDefaultInstanceForType() { private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_flyteidl_core_OutputReference_fieldAccessorTable; + private static final com.google.protobuf.Descriptors.Descriptor + internal_static_flyteidl_core_PromiseAttribute_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_flyteidl_core_PromiseAttribute_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_flyteidl_core_Error_descriptor; private static final @@ -12813,14 +13911,18 @@ public flyteidl.core.Types.Error getDefaultInstanceForType() { " \001(\0132\027.google.protobuf.Struct\0221\n\nannotat" + "ion\030\t \001(\0132\035.flyteidl.core.TypeAnnotation" + "\022/\n\tstructure\030\013 \001(\0132\034.flyteidl.core.Type" + - "StructureB\006\n\004type\"/\n\017OutputReference\022\017\n\007" + - "node_id\030\001 \001(\t\022\013\n\003var\030\002 \001(\t\"0\n\005Error\022\026\n\016f" + - "ailed_node_id\030\001 \001(\t\022\017\n\007message\030\002 \001(\t*\206\001\n" + - "\nSimpleType\022\010\n\004NONE\020\000\022\013\n\007INTEGER\020\001\022\t\n\005FL" + - "OAT\020\002\022\n\n\006STRING\020\003\022\013\n\007BOOLEAN\020\004\022\014\n\010DATETI" + - "ME\020\005\022\014\n\010DURATION\020\006\022\n\n\006BINARY\020\007\022\t\n\005ERROR\020" + - "\010\022\n\n\006STRUCT\020\tB6Z4github.com/flyteorg/fly" + - "teidl/gen/pb-go/flyteidl/coreb\006proto3" + "StructureB\006\n\004type\"c\n\017OutputReference\022\017\n\007" + + "node_id\030\001 \001(\t\022\013\n\003var\030\002 \001(\t\0222\n\tattr_path\030" + + "\003 \003(\0132\037.flyteidl.core.PromiseAttribute\"H" + + "\n\020PromiseAttribute\022\026\n\014string_value\030\001 \001(\t" + + "H\000\022\023\n\tint_value\030\002 \001(\005H\000B\007\n\005value\"0\n\005Erro" + + "r\022\026\n\016failed_node_id\030\001 \001(\t\022\017\n\007message\030\002 \001" + + "(\t*\206\001\n\nSimpleType\022\010\n\004NONE\020\000\022\013\n\007INTEGER\020\001" + + "\022\t\n\005FLOAT\020\002\022\n\n\006STRING\020\003\022\013\n\007BOOLEAN\020\004\022\014\n\010" + + "DATETIME\020\005\022\014\n\010DURATION\020\006\022\n\n\006BINARY\020\007\022\t\n\005" + + "ERROR\020\010\022\n\n\006STRUCT\020\tB6Z4github.com/flyteo" + + "rg/flyteidl/gen/pb-go/flyteidl/coreb\006pro" + + "to3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { @@ -12900,9 +14002,15 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_core_OutputReference_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_OutputReference_descriptor, - new java.lang.String[] { "NodeId", "Var", }); - internal_static_flyteidl_core_Error_descriptor = + new java.lang.String[] { "NodeId", "Var", "AttrPath", }); + internal_static_flyteidl_core_PromiseAttribute_descriptor = getDescriptor().getMessageTypes().get(9); + internal_static_flyteidl_core_PromiseAttribute_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_flyteidl_core_PromiseAttribute_descriptor, + new java.lang.String[] { "StringValue", "IntValue", "Value", }); + internal_static_flyteidl_core_Error_descriptor = + getDescriptor().getMessageTypes().get(10); internal_static_flyteidl_core_Error_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_Error_descriptor, diff --git a/gen/pb-js/flyteidl.d.ts b/gen/pb-js/flyteidl.d.ts index 8786c585e..33345fff3 100644 --- a/gen/pb-js/flyteidl.d.ts +++ b/gen/pb-js/flyteidl.d.ts @@ -4094,6 +4094,9 @@ export namespace flyteidl { /** OutputReference var */ "var"?: (string|null); + + /** OutputReference attrPath */ + attrPath?: (flyteidl.core.IPromiseAttribute[]|null); } /** Represents an OutputReference. */ @@ -4111,6 +4114,9 @@ export namespace flyteidl { /** OutputReference var. */ public var: string; + /** OutputReference attrPath. */ + public attrPath: flyteidl.core.IPromiseAttribute[]; + /** * Creates a new OutputReference instance using the specified properties. * @param [properties] Properties to set @@ -4144,6 +4150,67 @@ export namespace flyteidl { public static verify(message: { [k: string]: any }): (string|null); } + /** Properties of a PromiseAttribute. */ + interface IPromiseAttribute { + + /** PromiseAttribute stringValue */ + stringValue?: (string|null); + + /** PromiseAttribute intValue */ + intValue?: (number|null); + } + + /** Represents a PromiseAttribute. */ + class PromiseAttribute implements IPromiseAttribute { + + /** + * Constructs a new PromiseAttribute. + * @param [properties] Properties to set + */ + constructor(properties?: flyteidl.core.IPromiseAttribute); + + /** PromiseAttribute stringValue. */ + public stringValue: string; + + /** PromiseAttribute intValue. */ + public intValue: number; + + /** PromiseAttribute value. */ + public value?: ("stringValue"|"intValue"); + + /** + * Creates a new PromiseAttribute instance using the specified properties. + * @param [properties] Properties to set + * @returns PromiseAttribute instance + */ + public static create(properties?: flyteidl.core.IPromiseAttribute): flyteidl.core.PromiseAttribute; + + /** + * Encodes the specified PromiseAttribute message. Does not implicitly {@link flyteidl.core.PromiseAttribute.verify|verify} messages. + * @param message PromiseAttribute message or plain object to encode + * @param [writer] Writer to encode to + * @returns Writer + */ + public static encode(message: flyteidl.core.IPromiseAttribute, writer?: $protobuf.Writer): $protobuf.Writer; + + /** + * Decodes a PromiseAttribute message from the specified reader or buffer. + * @param reader Reader or buffer to decode from + * @param [length] Message length if known beforehand + * @returns PromiseAttribute + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.PromiseAttribute; + + /** + * Verifies a PromiseAttribute message. + * @param message Plain object to verify + * @returns `null` if valid, otherwise the reason why it is not + */ + public static verify(message: { [k: string]: any }): (string|null); + } + /** Properties of an Error. */ interface IError { diff --git a/gen/pb-js/flyteidl.js b/gen/pb-js/flyteidl.js index a30c0b3e5..6a0871486 100644 --- a/gen/pb-js/flyteidl.js +++ b/gen/pb-js/flyteidl.js @@ -9864,6 +9864,7 @@ * @interface IOutputReference * @property {string|null} [nodeId] OutputReference nodeId * @property {string|null} ["var"] OutputReference var + * @property {Array.|null} [attrPath] OutputReference attrPath */ /** @@ -9875,6 +9876,7 @@ * @param {flyteidl.core.IOutputReference=} [properties] Properties to set */ function OutputReference(properties) { + this.attrPath = []; if (properties) for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) if (properties[keys[i]] != null) @@ -9897,6 +9899,14 @@ */ OutputReference.prototype["var"] = ""; + /** + * OutputReference attrPath. + * @member {Array.} attrPath + * @memberof flyteidl.core.OutputReference + * @instance + */ + OutputReference.prototype.attrPath = $util.emptyArray; + /** * Creates a new OutputReference instance using the specified properties. * @function create @@ -9925,6 +9935,9 @@ writer.uint32(/* id 1, wireType 2 =*/10).string(message.nodeId); if (message["var"] != null && message.hasOwnProperty("var")) writer.uint32(/* id 2, wireType 2 =*/18).string(message["var"]); + if (message.attrPath != null && message.attrPath.length) + for (var i = 0; i < message.attrPath.length; ++i) + $root.flyteidl.core.PromiseAttribute.encode(message.attrPath[i], writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); return writer; }; @@ -9952,6 +9965,11 @@ case 2: message["var"] = reader.string(); break; + case 3: + if (!(message.attrPath && message.attrPath.length)) + message.attrPath = []; + message.attrPath.push($root.flyteidl.core.PromiseAttribute.decode(reader, reader.uint32())); + break; default: reader.skipType(tag & 7); break; @@ -9977,12 +9995,169 @@ if (message["var"] != null && message.hasOwnProperty("var")) if (!$util.isString(message["var"])) return "var: string expected"; + if (message.attrPath != null && message.hasOwnProperty("attrPath")) { + if (!Array.isArray(message.attrPath)) + return "attrPath: array expected"; + for (var i = 0; i < message.attrPath.length; ++i) { + var error = $root.flyteidl.core.PromiseAttribute.verify(message.attrPath[i]); + if (error) + return "attrPath." + error; + } + } return null; }; return OutputReference; })(); + core.PromiseAttribute = (function() { + + /** + * Properties of a PromiseAttribute. + * @memberof flyteidl.core + * @interface IPromiseAttribute + * @property {string|null} [stringValue] PromiseAttribute stringValue + * @property {number|null} [intValue] PromiseAttribute intValue + */ + + /** + * Constructs a new PromiseAttribute. + * @memberof flyteidl.core + * @classdesc Represents a PromiseAttribute. + * @implements IPromiseAttribute + * @constructor + * @param {flyteidl.core.IPromiseAttribute=} [properties] Properties to set + */ + function PromiseAttribute(properties) { + if (properties) + for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) + if (properties[keys[i]] != null) + this[keys[i]] = properties[keys[i]]; + } + + /** + * PromiseAttribute stringValue. + * @member {string} stringValue + * @memberof flyteidl.core.PromiseAttribute + * @instance + */ + PromiseAttribute.prototype.stringValue = ""; + + /** + * PromiseAttribute intValue. + * @member {number} intValue + * @memberof flyteidl.core.PromiseAttribute + * @instance + */ + PromiseAttribute.prototype.intValue = 0; + + // OneOf field names bound to virtual getters and setters + var $oneOfFields; + + /** + * PromiseAttribute value. + * @member {"stringValue"|"intValue"|undefined} value + * @memberof flyteidl.core.PromiseAttribute + * @instance + */ + Object.defineProperty(PromiseAttribute.prototype, "value", { + get: $util.oneOfGetter($oneOfFields = ["stringValue", "intValue"]), + set: $util.oneOfSetter($oneOfFields) + }); + + /** + * Creates a new PromiseAttribute instance using the specified properties. + * @function create + * @memberof flyteidl.core.PromiseAttribute + * @static + * @param {flyteidl.core.IPromiseAttribute=} [properties] Properties to set + * @returns {flyteidl.core.PromiseAttribute} PromiseAttribute instance + */ + PromiseAttribute.create = function create(properties) { + return new PromiseAttribute(properties); + }; + + /** + * Encodes the specified PromiseAttribute message. Does not implicitly {@link flyteidl.core.PromiseAttribute.verify|verify} messages. + * @function encode + * @memberof flyteidl.core.PromiseAttribute + * @static + * @param {flyteidl.core.IPromiseAttribute} message PromiseAttribute message or plain object to encode + * @param {$protobuf.Writer} [writer] Writer to encode to + * @returns {$protobuf.Writer} Writer + */ + PromiseAttribute.encode = function encode(message, writer) { + if (!writer) + writer = $Writer.create(); + if (message.stringValue != null && message.hasOwnProperty("stringValue")) + writer.uint32(/* id 1, wireType 2 =*/10).string(message.stringValue); + if (message.intValue != null && message.hasOwnProperty("intValue")) + writer.uint32(/* id 2, wireType 0 =*/16).int32(message.intValue); + return writer; + }; + + /** + * Decodes a PromiseAttribute message from the specified reader or buffer. + * @function decode + * @memberof flyteidl.core.PromiseAttribute + * @static + * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from + * @param {number} [length] Message length if known beforehand + * @returns {flyteidl.core.PromiseAttribute} PromiseAttribute + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + PromiseAttribute.decode = function decode(reader, length) { + if (!(reader instanceof $Reader)) + reader = $Reader.create(reader); + var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.PromiseAttribute(); + while (reader.pos < end) { + var tag = reader.uint32(); + switch (tag >>> 3) { + case 1: + message.stringValue = reader.string(); + break; + case 2: + message.intValue = reader.int32(); + break; + default: + reader.skipType(tag & 7); + break; + } + } + return message; + }; + + /** + * Verifies a PromiseAttribute message. + * @function verify + * @memberof flyteidl.core.PromiseAttribute + * @static + * @param {Object.} message Plain object to verify + * @returns {string|null} `null` if valid, otherwise the reason why it is not + */ + PromiseAttribute.verify = function verify(message) { + if (typeof message !== "object" || message === null) + return "object expected"; + var properties = {}; + if (message.stringValue != null && message.hasOwnProperty("stringValue")) { + properties.value = 1; + if (!$util.isString(message.stringValue)) + return "stringValue: string expected"; + } + if (message.intValue != null && message.hasOwnProperty("intValue")) { + if (properties.value === 1) + return "value: multiple values"; + properties.value = 1; + if (!$util.isInteger(message.intValue)) + return "intValue: integer expected"; + } + return null; + }; + + return PromiseAttribute; + })(); + core.Error = (function() { /** diff --git a/gen/pb_python/flyteidl/core/types_pb2.py b/gen/pb_python/flyteidl/core/types_pb2.py index e357c171d..4f2f99466 100644 --- a/gen/pb_python/flyteidl/core/types_pb2.py +++ b/gen/pb_python/flyteidl/core/types_pb2.py @@ -14,7 +14,7 @@ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19\x66lyteidl/core/types.proto\x12\rflyteidl.core\x1a\x1cgoogle/protobuf/struct.proto\"\xa1\x02\n\nSchemaType\x12@\n\x07\x63olumns\x18\x03 \x03(\x0b\x32&.flyteidl.core.SchemaType.SchemaColumnR\x07\x63olumns\x1a\xd0\x01\n\x0cSchemaColumn\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12K\n\x04type\x18\x02 \x01(\x0e\x32\x37.flyteidl.core.SchemaType.SchemaColumn.SchemaColumnTypeR\x04type\"_\n\x10SchemaColumnType\x12\x0b\n\x07INTEGER\x10\x00\x12\t\n\x05\x46LOAT\x10\x01\x12\n\n\x06STRING\x10\x02\x12\x0b\n\x07\x42OOLEAN\x10\x03\x12\x0c\n\x08\x44\x41TETIME\x10\x04\x12\x0c\n\x08\x44URATION\x10\x05\"\xc7\x02\n\x15StructuredDatasetType\x12L\n\x07\x63olumns\x18\x01 \x03(\x0b\x32\x32.flyteidl.core.StructuredDatasetType.DatasetColumnR\x07\x63olumns\x12\x16\n\x06\x66ormat\x18\x02 \x01(\tR\x06\x66ormat\x12\x30\n\x14\x65xternal_schema_type\x18\x03 \x01(\tR\x12\x65xternalSchemaType\x12\x32\n\x15\x65xternal_schema_bytes\x18\x04 \x01(\x0cR\x13\x65xternalSchemaBytes\x1a\x62\n\rDatasetColumn\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12=\n\x0cliteral_type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x0bliteralType\"\xa7\x01\n\x08\x42lobType\x12\x16\n\x06\x66ormat\x18\x01 \x01(\tR\x06\x66ormat\x12R\n\x0e\x64imensionality\x18\x02 \x01(\x0e\x32*.flyteidl.core.BlobType.BlobDimensionalityR\x0e\x64imensionality\"/\n\x12\x42lobDimensionality\x12\n\n\x06SINGLE\x10\x00\x12\r\n\tMULTIPART\x10\x01\"\"\n\x08\x45numType\x12\x16\n\x06values\x18\x01 \x03(\tR\x06values\"C\n\tUnionType\x12\x36\n\x08variants\x18\x01 \x03(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x08variants\"!\n\rTypeStructure\x12\x10\n\x03tag\x18\x01 \x01(\tR\x03tag\"K\n\x0eTypeAnnotation\x12\x39\n\x0b\x61nnotations\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructR\x0b\x61nnotations\"\xbc\x05\n\x0bLiteralType\x12\x33\n\x06simple\x18\x01 \x01(\x0e\x32\x19.flyteidl.core.SimpleTypeH\x00R\x06simple\x12\x33\n\x06schema\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.SchemaTypeH\x00R\x06schema\x12\x45\n\x0f\x63ollection_type\x18\x03 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeH\x00R\x0e\x63ollectionType\x12\x42\n\x0emap_value_type\x18\x04 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeH\x00R\x0cmapValueType\x12-\n\x04\x62lob\x18\x05 \x01(\x0b\x32\x17.flyteidl.core.BlobTypeH\x00R\x04\x62lob\x12\x36\n\tenum_type\x18\x07 \x01(\x0b\x32\x17.flyteidl.core.EnumTypeH\x00R\x08\x65numType\x12^\n\x17structured_dataset_type\x18\x08 \x01(\x0b\x32$.flyteidl.core.StructuredDatasetTypeH\x00R\x15structuredDatasetType\x12\x39\n\nunion_type\x18\n \x01(\x0b\x32\x18.flyteidl.core.UnionTypeH\x00R\tunionType\x12\x33\n\x08metadata\x18\x06 \x01(\x0b\x32\x17.google.protobuf.StructR\x08metadata\x12=\n\nannotation\x18\t \x01(\x0b\x32\x1d.flyteidl.core.TypeAnnotationR\nannotation\x12:\n\tstructure\x18\x0b \x01(\x0b\x32\x1c.flyteidl.core.TypeStructureR\tstructureB\x06\n\x04type\"<\n\x0fOutputReference\x12\x17\n\x07node_id\x18\x01 \x01(\tR\x06nodeId\x12\x10\n\x03var\x18\x02 \x01(\tR\x03var\"G\n\x05\x45rror\x12$\n\x0e\x66\x61iled_node_id\x18\x01 \x01(\tR\x0c\x66\x61iledNodeId\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message*\x86\x01\n\nSimpleType\x12\x08\n\x04NONE\x10\x00\x12\x0b\n\x07INTEGER\x10\x01\x12\t\n\x05\x46LOAT\x10\x02\x12\n\n\x06STRING\x10\x03\x12\x0b\n\x07\x42OOLEAN\x10\x04\x12\x0c\n\x08\x44\x41TETIME\x10\x05\x12\x0c\n\x08\x44URATION\x10\x06\x12\n\n\x06\x42INARY\x10\x07\x12\t\n\x05\x45RROR\x10\x08\x12\n\n\x06STRUCT\x10\tB\xaa\x01\n\x11\x63om.flyteidl.coreB\nTypesProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19\x66lyteidl/core/types.proto\x12\rflyteidl.core\x1a\x1cgoogle/protobuf/struct.proto\"\xa1\x02\n\nSchemaType\x12@\n\x07\x63olumns\x18\x03 \x03(\x0b\x32&.flyteidl.core.SchemaType.SchemaColumnR\x07\x63olumns\x1a\xd0\x01\n\x0cSchemaColumn\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12K\n\x04type\x18\x02 \x01(\x0e\x32\x37.flyteidl.core.SchemaType.SchemaColumn.SchemaColumnTypeR\x04type\"_\n\x10SchemaColumnType\x12\x0b\n\x07INTEGER\x10\x00\x12\t\n\x05\x46LOAT\x10\x01\x12\n\n\x06STRING\x10\x02\x12\x0b\n\x07\x42OOLEAN\x10\x03\x12\x0c\n\x08\x44\x41TETIME\x10\x04\x12\x0c\n\x08\x44URATION\x10\x05\"\xc7\x02\n\x15StructuredDatasetType\x12L\n\x07\x63olumns\x18\x01 \x03(\x0b\x32\x32.flyteidl.core.StructuredDatasetType.DatasetColumnR\x07\x63olumns\x12\x16\n\x06\x66ormat\x18\x02 \x01(\tR\x06\x66ormat\x12\x30\n\x14\x65xternal_schema_type\x18\x03 \x01(\tR\x12\x65xternalSchemaType\x12\x32\n\x15\x65xternal_schema_bytes\x18\x04 \x01(\x0cR\x13\x65xternalSchemaBytes\x1a\x62\n\rDatasetColumn\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12=\n\x0cliteral_type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x0bliteralType\"\xa7\x01\n\x08\x42lobType\x12\x16\n\x06\x66ormat\x18\x01 \x01(\tR\x06\x66ormat\x12R\n\x0e\x64imensionality\x18\x02 \x01(\x0e\x32*.flyteidl.core.BlobType.BlobDimensionalityR\x0e\x64imensionality\"/\n\x12\x42lobDimensionality\x12\n\n\x06SINGLE\x10\x00\x12\r\n\tMULTIPART\x10\x01\"\"\n\x08\x45numType\x12\x16\n\x06values\x18\x01 \x03(\tR\x06values\"C\n\tUnionType\x12\x36\n\x08variants\x18\x01 \x03(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x08variants\"!\n\rTypeStructure\x12\x10\n\x03tag\x18\x01 \x01(\tR\x03tag\"K\n\x0eTypeAnnotation\x12\x39\n\x0b\x61nnotations\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructR\x0b\x61nnotations\"\xbc\x05\n\x0bLiteralType\x12\x33\n\x06simple\x18\x01 \x01(\x0e\x32\x19.flyteidl.core.SimpleTypeH\x00R\x06simple\x12\x33\n\x06schema\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.SchemaTypeH\x00R\x06schema\x12\x45\n\x0f\x63ollection_type\x18\x03 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeH\x00R\x0e\x63ollectionType\x12\x42\n\x0emap_value_type\x18\x04 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeH\x00R\x0cmapValueType\x12-\n\x04\x62lob\x18\x05 \x01(\x0b\x32\x17.flyteidl.core.BlobTypeH\x00R\x04\x62lob\x12\x36\n\tenum_type\x18\x07 \x01(\x0b\x32\x17.flyteidl.core.EnumTypeH\x00R\x08\x65numType\x12^\n\x17structured_dataset_type\x18\x08 \x01(\x0b\x32$.flyteidl.core.StructuredDatasetTypeH\x00R\x15structuredDatasetType\x12\x39\n\nunion_type\x18\n \x01(\x0b\x32\x18.flyteidl.core.UnionTypeH\x00R\tunionType\x12\x33\n\x08metadata\x18\x06 \x01(\x0b\x32\x17.google.protobuf.StructR\x08metadata\x12=\n\nannotation\x18\t \x01(\x0b\x32\x1d.flyteidl.core.TypeAnnotationR\nannotation\x12:\n\tstructure\x18\x0b \x01(\x0b\x32\x1c.flyteidl.core.TypeStructureR\tstructureB\x06\n\x04type\"z\n\x0fOutputReference\x12\x17\n\x07node_id\x18\x01 \x01(\tR\x06nodeId\x12\x10\n\x03var\x18\x02 \x01(\tR\x03var\x12<\n\tattr_path\x18\x03 \x03(\x0b\x32\x1f.flyteidl.core.PromiseAttributeR\x08\x61ttrPath\"_\n\x10PromiseAttribute\x12#\n\x0cstring_value\x18\x01 \x01(\tH\x00R\x0bstringValue\x12\x1d\n\tint_value\x18\x02 \x01(\x05H\x00R\x08intValueB\x07\n\x05value\"G\n\x05\x45rror\x12$\n\x0e\x66\x61iled_node_id\x18\x01 \x01(\tR\x0c\x66\x61iledNodeId\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message*\x86\x01\n\nSimpleType\x12\x08\n\x04NONE\x10\x00\x12\x0b\n\x07INTEGER\x10\x01\x12\t\n\x05\x46LOAT\x10\x02\x12\n\n\x06STRING\x10\x03\x12\x0b\n\x07\x42OOLEAN\x10\x04\x12\x0c\n\x08\x44\x41TETIME\x10\x05\x12\x0c\n\x08\x44URATION\x10\x06\x12\n\n\x06\x42INARY\x10\x07\x12\t\n\x05\x45RROR\x10\x08\x12\n\n\x06STRUCT\x10\tB\xaa\x01\n\x11\x63om.flyteidl.coreB\nTypesProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -23,8 +23,8 @@ DESCRIPTOR._options = None DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\nTypesProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core' - _globals['_SIMPLETYPE']._serialized_start=1922 - _globals['_SIMPLETYPE']._serialized_end=2056 + _globals['_SIMPLETYPE']._serialized_start=2081 + _globals['_SIMPLETYPE']._serialized_end=2215 _globals['_SCHEMATYPE']._serialized_start=75 _globals['_SCHEMATYPE']._serialized_end=364 _globals['_SCHEMATYPE_SCHEMACOLUMN']._serialized_start=156 @@ -50,7 +50,9 @@ _globals['_LITERALTYPE']._serialized_start=1084 _globals['_LITERALTYPE']._serialized_end=1784 _globals['_OUTPUTREFERENCE']._serialized_start=1786 - _globals['_OUTPUTREFERENCE']._serialized_end=1846 - _globals['_ERROR']._serialized_start=1848 - _globals['_ERROR']._serialized_end=1919 + _globals['_OUTPUTREFERENCE']._serialized_end=1908 + _globals['_PROMISEATTRIBUTE']._serialized_start=1910 + _globals['_PROMISEATTRIBUTE']._serialized_end=2005 + _globals['_ERROR']._serialized_start=2007 + _globals['_ERROR']._serialized_end=2078 # @@protoc_insertion_point(module_scope) diff --git a/gen/pb_python/flyteidl/core/types_pb2.pyi b/gen/pb_python/flyteidl/core/types_pb2.pyi index c203e2919..9b9523c66 100644 --- a/gen/pb_python/flyteidl/core/types_pb2.pyi +++ b/gen/pb_python/flyteidl/core/types_pb2.pyi @@ -141,12 +141,22 @@ class LiteralType(_message.Message): def __init__(self, simple: _Optional[_Union[SimpleType, str]] = ..., schema: _Optional[_Union[SchemaType, _Mapping]] = ..., collection_type: _Optional[_Union[LiteralType, _Mapping]] = ..., map_value_type: _Optional[_Union[LiteralType, _Mapping]] = ..., blob: _Optional[_Union[BlobType, _Mapping]] = ..., enum_type: _Optional[_Union[EnumType, _Mapping]] = ..., structured_dataset_type: _Optional[_Union[StructuredDatasetType, _Mapping]] = ..., union_type: _Optional[_Union[UnionType, _Mapping]] = ..., metadata: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., annotation: _Optional[_Union[TypeAnnotation, _Mapping]] = ..., structure: _Optional[_Union[TypeStructure, _Mapping]] = ...) -> None: ... class OutputReference(_message.Message): - __slots__ = ["node_id", "var"] + __slots__ = ["node_id", "var", "attr_path"] NODE_ID_FIELD_NUMBER: _ClassVar[int] VAR_FIELD_NUMBER: _ClassVar[int] + ATTR_PATH_FIELD_NUMBER: _ClassVar[int] node_id: str var: str - def __init__(self, node_id: _Optional[str] = ..., var: _Optional[str] = ...) -> None: ... + attr_path: _containers.RepeatedCompositeFieldContainer[PromiseAttribute] + def __init__(self, node_id: _Optional[str] = ..., var: _Optional[str] = ..., attr_path: _Optional[_Iterable[_Union[PromiseAttribute, _Mapping]]] = ...) -> None: ... + +class PromiseAttribute(_message.Message): + __slots__ = ["string_value", "int_value"] + STRING_VALUE_FIELD_NUMBER: _ClassVar[int] + INT_VALUE_FIELD_NUMBER: _ClassVar[int] + string_value: str + int_value: int + def __init__(self, string_value: _Optional[str] = ..., int_value: _Optional[int] = ...) -> None: ... class Error(_message.Message): __slots__ = ["failed_node_id", "message"] diff --git a/gen/pb_python/flyteidl/service/flyteadmin/README.md b/gen/pb_python/flyteidl/service/flyteadmin/README.md index b2c3c1315..079e78099 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/README.md +++ b/gen/pb_python/flyteidl/service/flyteadmin/README.md @@ -315,6 +315,7 @@ Class | Method | HTTP request | Description - [CoreParameter](docs/CoreParameter.md) - [CoreParameterMap](docs/CoreParameterMap.md) - [CorePrimitive](docs/CorePrimitive.md) + - [CorePromiseAttribute](docs/CorePromiseAttribute.md) - [CoreQualityOfService](docs/CoreQualityOfService.md) - [CoreQualityOfServiceSpec](docs/CoreQualityOfServiceSpec.md) - [CoreResourceMetadata](docs/CoreResourceMetadata.md) diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py index 9933ca13d..5dbdfda09 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py @@ -206,6 +206,7 @@ from flyteadmin.models.core_parameter import CoreParameter from flyteadmin.models.core_parameter_map import CoreParameterMap from flyteadmin.models.core_primitive import CorePrimitive +from flyteadmin.models.core_promise_attribute import CorePromiseAttribute from flyteadmin.models.core_quality_of_service import CoreQualityOfService from flyteadmin.models.core_quality_of_service_spec import CoreQualityOfServiceSpec from flyteadmin.models.core_resource_metadata import CoreResourceMetadata diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py index f0b4152f2..798519618 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py @@ -199,6 +199,7 @@ from flyteadmin.models.core_parameter import CoreParameter from flyteadmin.models.core_parameter_map import CoreParameterMap from flyteadmin.models.core_primitive import CorePrimitive +from flyteadmin.models.core_promise_attribute import CorePromiseAttribute from flyteadmin.models.core_quality_of_service import CoreQualityOfService from flyteadmin.models.core_quality_of_service_spec import CoreQualityOfServiceSpec from flyteadmin.models.core_resource_metadata import CoreResourceMetadata diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_output_reference.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_output_reference.py index 801fd4552..d4094541e 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_output_reference.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_output_reference.py @@ -16,6 +16,8 @@ import six +from flyteadmin.models.core_promise_attribute import CorePromiseAttribute # noqa: F401,E501 + class CoreOutputReference(object): """NOTE: This class is auto generated by the swagger code generator program. @@ -32,25 +34,30 @@ class CoreOutputReference(object): """ swagger_types = { 'node_id': 'str', - 'var': 'str' + 'var': 'str', + 'attr_path': 'list[CorePromiseAttribute]' } attribute_map = { 'node_id': 'node_id', - 'var': 'var' + 'var': 'var', + 'attr_path': 'attr_path' } - def __init__(self, node_id=None, var=None): # noqa: E501 + def __init__(self, node_id=None, var=None, attr_path=None): # noqa: E501 """CoreOutputReference - a model defined in Swagger""" # noqa: E501 self._node_id = None self._var = None + self._attr_path = None self.discriminator = None if node_id is not None: self.node_id = node_id if var is not None: self.var = var + if attr_path is not None: + self.attr_path = attr_path @property def node_id(self): @@ -98,6 +105,27 @@ def var(self, var): self._var = var + @property + def attr_path(self): + """Gets the attr_path of this CoreOutputReference. # noqa: E501 + + + :return: The attr_path of this CoreOutputReference. # noqa: E501 + :rtype: list[CorePromiseAttribute] + """ + return self._attr_path + + @attr_path.setter + def attr_path(self, attr_path): + """Sets the attr_path of this CoreOutputReference. + + + :param attr_path: The attr_path of this CoreOutputReference. # noqa: E501 + :type: list[CorePromiseAttribute] + """ + + self._attr_path = attr_path + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_promise_attribute.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_promise_attribute.py new file mode 100644 index 000000000..60c8aa3fb --- /dev/null +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_promise_attribute.py @@ -0,0 +1,141 @@ +# coding: utf-8 + +""" + flyteidl/service/admin.proto + + No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 + + OpenAPI spec version: version not set + + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class CorePromiseAttribute(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'string_value': 'str', + 'int_value': 'int' + } + + attribute_map = { + 'string_value': 'string_value', + 'int_value': 'int_value' + } + + def __init__(self, string_value=None, int_value=None): # noqa: E501 + """CorePromiseAttribute - a model defined in Swagger""" # noqa: E501 + + self._string_value = None + self._int_value = None + self.discriminator = None + + if string_value is not None: + self.string_value = string_value + if int_value is not None: + self.int_value = int_value + + @property + def string_value(self): + """Gets the string_value of this CorePromiseAttribute. # noqa: E501 + + + :return: The string_value of this CorePromiseAttribute. # noqa: E501 + :rtype: str + """ + return self._string_value + + @string_value.setter + def string_value(self, string_value): + """Sets the string_value of this CorePromiseAttribute. + + + :param string_value: The string_value of this CorePromiseAttribute. # noqa: E501 + :type: str + """ + + self._string_value = string_value + + @property + def int_value(self): + """Gets the int_value of this CorePromiseAttribute. # noqa: E501 + + + :return: The int_value of this CorePromiseAttribute. # noqa: E501 + :rtype: int + """ + return self._int_value + + @int_value.setter + def int_value(self, int_value): + """Sets the int_value of this CorePromiseAttribute. + + + :param int_value: The int_value of this CorePromiseAttribute. # noqa: E501 + :type: int + """ + + self._int_value = int_value + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(CorePromiseAttribute, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, CorePromiseAttribute): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_promise_attribute.py b/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_promise_attribute.py new file mode 100644 index 000000000..801fb7a52 --- /dev/null +++ b/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_promise_attribute.py @@ -0,0 +1,40 @@ +# coding: utf-8 + +""" + flyteidl/service/admin.proto + + No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 + + OpenAPI spec version: version not set + + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +from __future__ import absolute_import + +import unittest + +import flyteadmin +from flyteadmin.models.core_promise_attribute import CorePromiseAttribute # noqa: E501 +from flyteadmin.rest import ApiException + + +class TestCorePromiseAttribute(unittest.TestCase): + """CorePromiseAttribute unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testCorePromiseAttribute(self): + """Test CorePromiseAttribute""" + # FIXME: construct object with mandatory attributes with example values + # model = flyteadmin.models.core_promise_attribute.CorePromiseAttribute() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/gen/pb_rust/flyteidl.core.rs b/gen/pb_rust/flyteidl.core.rs index 34a1c6c8a..2873e794e 100644 --- a/gen/pb_rust/flyteidl.core.rs +++ b/gen/pb_rust/flyteidl.core.rs @@ -242,6 +242,36 @@ pub struct OutputReference { /// Variable name must refer to an output variable for the node. #[prost(string, tag="2")] pub var: ::prost::alloc::string::String, + #[prost(message, repeated, tag="3")] + pub attr_path: ::prost::alloc::vec::Vec, +} +// PromiseAttribute stores the attribute path of a promise, which will be resolved at runtime. +// The attribute path is a list of strings and integers. +// In the following example, +// ``` +// @workflow +// def wf(): +// o = t1() +// t2(o.a\["b"][0\]) +// ``` +// the output reference t2 binds to has a list of PromiseAttribute ["a", "b", 0] + +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct PromiseAttribute { + #[prost(oneof="promise_attribute::Value", tags="1, 2")] + pub value: ::core::option::Option, +} +/// Nested message and enum types in `PromiseAttribute`. +pub mod promise_attribute { + #[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Value { + #[prost(string, tag="1")] + StringValue(::prost::alloc::string::String), + #[prost(int32, tag="2")] + IntValue(i32), + } } /// Represents an error thrown from a node. #[allow(clippy::derive_partial_eq_without_eq)] diff --git a/protos/flyteidl/core/types.proto b/protos/flyteidl/core/types.proto index a2babe783..a05c93d38 100644 --- a/protos/flyteidl/core/types.proto +++ b/protos/flyteidl/core/types.proto @@ -170,6 +170,26 @@ message OutputReference { // Variable name must refer to an output variable for the node. string var = 2; + + repeated PromiseAttribute attr_path = 3; +} + +// PromiseAttribute stores the attribute path of a promise, which will be resolved at runtime. +// The attribute path is a list of strings and integers. +// In the following example, +// ``` +// @workflow +// def wf(): +// o = t1() +// t2(o.a["b"][0]) +// ``` +// the output reference t2 binds to has a list of PromiseAttribute ["a", "b", 0] + +message PromiseAttribute { + oneof value { + string string_value = 1; + int32 int_value = 2; + } } // Represents an error thrown from a node. From 572e29fd1f5ce527c53e9dde7e7b6abf3135a916 Mon Sep 17 00:00:00 2001 From: Jeev B Date: Mon, 25 Sep 2023 14:19:32 -0700 Subject: [PATCH 7/8] Revert "GPU Type (#419)" (#444) * Revert "GPU Type (#419)" This reverts commit ef377883987fe0e394ad6ecab50bd0a1695874ca. Signed-off-by: Jeev B * Restore .readthedocs.yml Signed-off-by: Jeev B --------- Signed-off-by: Jeev B --- gen/pb-cpp/flyteidl/core/tasks.pb.cc | 1514 +++---------- gen/pb-cpp/flyteidl/core/tasks.pb.h | 631 +----- gen/pb-cpp/flyteidl/core/workflow.pb.cc | 98 +- gen/pb-cpp/flyteidl/core/workflow.pb.h | 55 - gen/pb-go/flyteidl/core/tasks.pb.go | 420 +--- gen/pb-go/flyteidl/core/tasks.pb.validate.go | 168 -- gen/pb-go/flyteidl/core/workflow.pb.go | 202 +- .../flyteidl/core/workflow.pb.validate.go | 10 - gen/pb-go/flyteidl/service/admin.swagger.json | 33 - gen/pb-go/flyteidl/service/agent.swagger.json | 29 - .../external_plugin_service.swagger.json | 29 - .../flyteidl/service/flyteadmin/README.md | 2 - .../service/flyteadmin/api/swagger.yaml | 499 ---- .../flyteadmin/model_core_gpu_accelerator.go | 16 - .../model_core_resource_metadata.go | 14 - .../flyteadmin/model_core_task_metadata.go | 1 - .../model_core_task_node_overrides.go | 1 - gen/pb-go/flyteidl/service/openapi.go | 4 +- gen/pb-java/flyteidl/core/Tasks.java | 2007 +---------------- gen/pb-java/flyteidl/core/Workflow.java | 265 +-- gen/pb-js/flyteidl.d.ts | 134 -- gen/pb-js/flyteidl.js | 333 --- gen/pb_python/flyteidl/core/tasks_pb2.py | 78 +- gen/pb_python/flyteidl/core/tasks_pb2.pyi | 22 +- gen/pb_python/flyteidl/core/workflow_pb2.py | 6 +- gen/pb_python/flyteidl/core/workflow_pb2.pyi | 6 +- .../flyteidl/service/flyteadmin/README.md | 2 - .../service/flyteadmin/flyteadmin/__init__.py | 2 - .../flyteadmin/flyteadmin/models/__init__.py | 2 - .../flyteadmin/models/core_gpu_accelerator.py | 167 -- .../models/core_resource_metadata.py | 117 - .../flyteadmin/models/core_task_metadata.py | 33 +- .../models/core_task_node_overrides.py | 33 +- .../test/test_core_gpu_accelerator.py | 40 - .../test/test_core_resource_metadata.py | 40 - gen/pb_rust/flyteidl.core.rs | 42 - protos/flyteidl/core/tasks.proto | 19 - protos/flyteidl/core/workflow.proto | 3 - 38 files changed, 663 insertions(+), 6414 deletions(-) delete mode 100644 gen/pb-go/flyteidl/service/flyteadmin/model_core_gpu_accelerator.go delete mode 100644 gen/pb-go/flyteidl/service/flyteadmin/model_core_resource_metadata.go delete mode 100644 gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_gpu_accelerator.py delete mode 100644 gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_resource_metadata.py delete mode 100644 gen/pb_python/flyteidl/service/flyteadmin/test/test_core_gpu_accelerator.py delete mode 100644 gen/pb_python/flyteidl/service/flyteadmin/test/test_core_resource_metadata.py diff --git a/gen/pb-cpp/flyteidl/core/tasks.pb.cc b/gen/pb-cpp/flyteidl/core/tasks.pb.cc index e0f691c89..54fb10724 100644 --- a/gen/pb-cpp/flyteidl/core/tasks.pb.cc +++ b/gen/pb-cpp/flyteidl/core/tasks.pb.cc @@ -22,7 +22,6 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::pro extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_RetryStrategy_flyteidl_2fcore_2fliterals_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fsecurity_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_SecurityContext_flyteidl_2fcore_2fsecurity_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_ContainerPort_flyteidl_2fcore_2ftasks_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_GPUAccelerator_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_IOStrategy_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_K8sObjectMetadata_AnnotationsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_K8sObjectMetadata_LabelsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto; @@ -32,12 +31,11 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protob extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_TaskMetadata_TagsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_TaskTemplate_ConfigEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_DataLoadingConfig_flyteidl_2fcore_2ftasks_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_Resources_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_K8sObjectMetadata_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_K8sPod_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<4> scc_info_Container_flyteidl_2fcore_2ftasks_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<5> scc_info_TaskMetadata_flyteidl_2fcore_2ftasks_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<4> scc_info_TaskMetadata_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2fduration_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Duration_google_2fprotobuf_2fduration_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2fstruct_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_ListValue_google_2fprotobuf_2fstruct_2eproto; namespace flyteidl { @@ -54,17 +52,6 @@ class RuntimeMetadataDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; } _RuntimeMetadata_default_instance_; -class GPUAcceleratorDefaultTypeInternal { - public: - ::google::protobuf::internal::ExplicitlyConstructed _instance; - bool unpartitioned_; - ::google::protobuf::internal::ArenaStringPtr partition_size_; -} _GPUAccelerator_default_instance_; -class ResourceMetadataDefaultTypeInternal { - public: - ::google::protobuf::internal::ExplicitlyConstructed _instance; - const ::flyteidl::core::GPUAccelerator* gpu_accelerator_; -} _ResourceMetadata_default_instance_; class TaskMetadata_TagsEntry_DoNotUseDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; @@ -166,35 +153,6 @@ static void InitDefaultsRuntimeMetadata_flyteidl_2fcore_2ftasks_2eproto() { ::google::protobuf::internal::SCCInfo<0> scc_info_RuntimeMetadata_flyteidl_2fcore_2ftasks_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsRuntimeMetadata_flyteidl_2fcore_2ftasks_2eproto}, {}}; -static void InitDefaultsGPUAccelerator_flyteidl_2fcore_2ftasks_2eproto() { - GOOGLE_PROTOBUF_VERIFY_VERSION; - - { - void* ptr = &::flyteidl::core::_GPUAccelerator_default_instance_; - new (ptr) ::flyteidl::core::GPUAccelerator(); - ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); - } - ::flyteidl::core::GPUAccelerator::InitAsDefaultInstance(); -} - -::google::protobuf::internal::SCCInfo<0> scc_info_GPUAccelerator_flyteidl_2fcore_2ftasks_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsGPUAccelerator_flyteidl_2fcore_2ftasks_2eproto}, {}}; - -static void InitDefaultsResourceMetadata_flyteidl_2fcore_2ftasks_2eproto() { - GOOGLE_PROTOBUF_VERIFY_VERSION; - - { - void* ptr = &::flyteidl::core::_ResourceMetadata_default_instance_; - new (ptr) ::flyteidl::core::ResourceMetadata(); - ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); - } - ::flyteidl::core::ResourceMetadata::InitAsDefaultInstance(); -} - -::google::protobuf::internal::SCCInfo<1> scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsResourceMetadata_flyteidl_2fcore_2ftasks_2eproto}, { - &scc_info_GPUAccelerator_flyteidl_2fcore_2ftasks_2eproto.base,}}; - static void InitDefaultsTaskMetadata_TagsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -219,13 +177,12 @@ static void InitDefaultsTaskMetadata_flyteidl_2fcore_2ftasks_2eproto() { ::flyteidl::core::TaskMetadata::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<5> scc_info_TaskMetadata_flyteidl_2fcore_2ftasks_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 5, InitDefaultsTaskMetadata_flyteidl_2fcore_2ftasks_2eproto}, { +::google::protobuf::internal::SCCInfo<4> scc_info_TaskMetadata_flyteidl_2fcore_2ftasks_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 4, InitDefaultsTaskMetadata_flyteidl_2fcore_2ftasks_2eproto}, { &scc_info_RuntimeMetadata_flyteidl_2fcore_2ftasks_2eproto.base, &scc_info_Duration_google_2fprotobuf_2fduration_2eproto.base, &scc_info_RetryStrategy_flyteidl_2fcore_2fliterals_2eproto.base, - &scc_info_TaskMetadata_TagsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto.base, - &scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto.base,}}; + &scc_info_TaskMetadata_TagsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto.base,}}; static void InitDefaultsTaskTemplate_ConfigEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -401,8 +358,6 @@ void InitDefaults_flyteidl_2fcore_2ftasks_2eproto() { ::google::protobuf::internal::InitSCC(&scc_info_Resources_ResourceEntry_flyteidl_2fcore_2ftasks_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_Resources_flyteidl_2fcore_2ftasks_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_RuntimeMetadata_flyteidl_2fcore_2ftasks_2eproto.base); - ::google::protobuf::internal::InitSCC(&scc_info_GPUAccelerator_flyteidl_2fcore_2ftasks_2eproto.base); - ::google::protobuf::internal::InitSCC(&scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_TaskMetadata_TagsEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_TaskMetadata_flyteidl_2fcore_2ftasks_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_TaskTemplate_ConfigEntry_DoNotUse_flyteidl_2fcore_2ftasks_2eproto.base); @@ -418,7 +373,7 @@ void InitDefaults_flyteidl_2fcore_2ftasks_2eproto() { ::google::protobuf::internal::InitSCC(&scc_info_Sql_flyteidl_2fcore_2ftasks_2eproto.base); } -::google::protobuf::Metadata file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[18]; +::google::protobuf::Metadata file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[16]; const ::google::protobuf::EnumDescriptor* file_level_enum_descriptors_flyteidl_2fcore_2ftasks_2eproto[7]; constexpr ::google::protobuf::ServiceDescriptor const** file_level_service_descriptors_flyteidl_2fcore_2ftasks_2eproto = nullptr; @@ -445,22 +400,6 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fcore_2ftasks_2eproto::of PROTOBUF_FIELD_OFFSET(::flyteidl::core::RuntimeMetadata, type_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::RuntimeMetadata, version_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::RuntimeMetadata, flavor_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::flyteidl::core::GPUAccelerator, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::flyteidl::core::GPUAccelerator, _oneof_case_[0]), - ~0u, // no _weak_field_map_ - PROTOBUF_FIELD_OFFSET(::flyteidl::core::GPUAccelerator, device_), - offsetof(::flyteidl::core::GPUAcceleratorDefaultTypeInternal, unpartitioned_), - offsetof(::flyteidl::core::GPUAcceleratorDefaultTypeInternal, partition_size_), - PROTOBUF_FIELD_OFFSET(::flyteidl::core::GPUAccelerator, partition_size_value_), - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::flyteidl::core::ResourceMetadata, _internal_metadata_), - ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::flyteidl::core::ResourceMetadata, _oneof_case_[0]), - ~0u, // no _weak_field_map_ - offsetof(::flyteidl::core::ResourceMetadataDefaultTypeInternal, gpu_accelerator_), - PROTOBUF_FIELD_OFFSET(::flyteidl::core::ResourceMetadata, accelerator_value_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse, _has_bits_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse, _internal_metadata_), ~0u, // no _extensions_ @@ -486,7 +425,6 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fcore_2ftasks_2eproto::of PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata, generates_deck_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata, tags_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata, pod_template_name_), - PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata, resource_metadata_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskMetadata, interruptible_value_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskTemplate_ConfigEntry_DoNotUse, _has_bits_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskTemplate_ConfigEntry_DoNotUse, _internal_metadata_), @@ -596,29 +534,25 @@ static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SE { 0, -1, sizeof(::flyteidl::core::Resources_ResourceEntry)}, { 7, -1, sizeof(::flyteidl::core::Resources)}, { 14, -1, sizeof(::flyteidl::core::RuntimeMetadata)}, - { 22, -1, sizeof(::flyteidl::core::GPUAccelerator)}, - { 31, -1, sizeof(::flyteidl::core::ResourceMetadata)}, - { 38, 45, sizeof(::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse)}, - { 47, -1, sizeof(::flyteidl::core::TaskMetadata)}, - { 65, 72, sizeof(::flyteidl::core::TaskTemplate_ConfigEntry_DoNotUse)}, - { 74, -1, sizeof(::flyteidl::core::TaskTemplate)}, - { 91, -1, sizeof(::flyteidl::core::ContainerPort)}, - { 97, -1, sizeof(::flyteidl::core::Container)}, - { 111, -1, sizeof(::flyteidl::core::IOStrategy)}, - { 118, -1, sizeof(::flyteidl::core::DataLoadingConfig)}, - { 128, -1, sizeof(::flyteidl::core::K8sPod)}, - { 136, 143, sizeof(::flyteidl::core::K8sObjectMetadata_LabelsEntry_DoNotUse)}, - { 145, 152, sizeof(::flyteidl::core::K8sObjectMetadata_AnnotationsEntry_DoNotUse)}, - { 154, -1, sizeof(::flyteidl::core::K8sObjectMetadata)}, - { 161, -1, sizeof(::flyteidl::core::Sql)}, + { 22, 29, sizeof(::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse)}, + { 31, -1, sizeof(::flyteidl::core::TaskMetadata)}, + { 48, 55, sizeof(::flyteidl::core::TaskTemplate_ConfigEntry_DoNotUse)}, + { 57, -1, sizeof(::flyteidl::core::TaskTemplate)}, + { 74, -1, sizeof(::flyteidl::core::ContainerPort)}, + { 80, -1, sizeof(::flyteidl::core::Container)}, + { 94, -1, sizeof(::flyteidl::core::IOStrategy)}, + { 101, -1, sizeof(::flyteidl::core::DataLoadingConfig)}, + { 111, -1, sizeof(::flyteidl::core::K8sPod)}, + { 119, 126, sizeof(::flyteidl::core::K8sObjectMetadata_LabelsEntry_DoNotUse)}, + { 128, 135, sizeof(::flyteidl::core::K8sObjectMetadata_AnnotationsEntry_DoNotUse)}, + { 137, -1, sizeof(::flyteidl::core::K8sObjectMetadata)}, + { 144, -1, sizeof(::flyteidl::core::Sql)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { reinterpret_cast(&::flyteidl::core::_Resources_ResourceEntry_default_instance_), reinterpret_cast(&::flyteidl::core::_Resources_default_instance_), reinterpret_cast(&::flyteidl::core::_RuntimeMetadata_default_instance_), - reinterpret_cast(&::flyteidl::core::_GPUAccelerator_default_instance_), - reinterpret_cast(&::flyteidl::core::_ResourceMetadata_default_instance_), reinterpret_cast(&::flyteidl::core::_TaskMetadata_TagsEntry_DoNotUse_default_instance_), reinterpret_cast(&::flyteidl::core::_TaskMetadata_default_instance_), reinterpret_cast(&::flyteidl::core::_TaskTemplate_ConfigEntry_DoNotUse_default_instance_), @@ -637,7 +571,7 @@ static ::google::protobuf::Message const * const file_default_instances[] = { ::google::protobuf::internal::AssignDescriptorsTable assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto = { {}, AddDescriptors_flyteidl_2fcore_2ftasks_2eproto, "flyteidl/core/tasks.proto", schemas, file_default_instances, TableStruct_flyteidl_2fcore_2ftasks_2eproto::offsets, - file_level_metadata_flyteidl_2fcore_2ftasks_2eproto, 18, file_level_enum_descriptors_flyteidl_2fcore_2ftasks_2eproto, file_level_service_descriptors_flyteidl_2fcore_2ftasks_2eproto, + file_level_metadata_flyteidl_2fcore_2ftasks_2eproto, 16, file_level_enum_descriptors_flyteidl_2fcore_2ftasks_2eproto, file_level_service_descriptors_flyteidl_2fcore_2ftasks_2eproto, }; const char descriptor_table_protodef_flyteidl_2fcore_2ftasks_2eproto[] = @@ -658,84 +592,77 @@ const char descriptor_table_protodef_flyteidl_2fcore_2ftasks_2eproto[] = "ype\030\001 \001(\0162*.flyteidl.core.RuntimeMetadat" "a.RuntimeType\022\017\n\007version\030\002 \001(\t\022\016\n\006flavor" "\030\003 \001(\t\"\'\n\013RuntimeType\022\t\n\005OTHER\020\000\022\r\n\tFLYT" - "E_SDK\020\001\"k\n\016GPUAccelerator\022\016\n\006device\030\001 \001(" - "\t\022\027\n\runpartitioned\030\002 \001(\010H\000\022\030\n\016partition_" - "size\030\003 \001(\tH\000B\026\n\024partition_size_value\"a\n\020" - "ResourceMetadata\0228\n\017gpu_accelerator\030\001 \001(" - "\0132\035.flyteidl.core.GPUAcceleratorH\000B\023\n\021ac" - "celerator_value\"\212\004\n\014TaskMetadata\022\024\n\014disc" - "overable\030\001 \001(\010\022/\n\007runtime\030\002 \001(\0132\036.flytei" - "dl.core.RuntimeMetadata\022*\n\007timeout\030\004 \001(\013" - "2\031.google.protobuf.Duration\022-\n\007retries\030\005" - " \001(\0132\034.flyteidl.core.RetryStrategy\022\031\n\021di" - "scovery_version\030\006 \001(\t\022 \n\030deprecated_erro" - "r_message\030\007 \001(\t\022\027\n\rinterruptible\030\010 \001(\010H\000" - "\022\032\n\022cache_serializable\030\t \001(\010\022\026\n\016generate" - "s_deck\030\n \001(\010\0223\n\004tags\030\013 \003(\0132%.flyteidl.co" - "re.TaskMetadata.TagsEntry\022\031\n\021pod_templat" - "e_name\030\014 \001(\t\022:\n\021resource_metadata\030\r \001(\0132" - "\037.flyteidl.core.ResourceMetadata\032+\n\tTags" - "Entry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001B\025\n" - "\023interruptible_value\"\220\004\n\014TaskTemplate\022%\n" - "\002id\030\001 \001(\0132\031.flyteidl.core.Identifier\022\014\n\004" - "type\030\002 \001(\t\022-\n\010metadata\030\003 \001(\0132\033.flyteidl." - "core.TaskMetadata\0220\n\tinterface\030\004 \001(\0132\035.f" - "lyteidl.core.TypedInterface\022\'\n\006custom\030\005 " - "\001(\0132\027.google.protobuf.Struct\022-\n\tcontaine" - "r\030\006 \001(\0132\030.flyteidl.core.ContainerH\000\022(\n\007k" - "8s_pod\030\021 \001(\0132\025.flyteidl.core.K8sPodH\000\022!\n" - "\003sql\030\022 \001(\0132\022.flyteidl.core.SqlH\000\022\031\n\021task" - "_type_version\030\007 \001(\005\0228\n\020security_context\030" - "\010 \001(\0132\036.flyteidl.core.SecurityContext\0227\n" - "\006config\030\020 \003(\0132\'.flyteidl.core.TaskTempla" - "te.ConfigEntry\032-\n\013ConfigEntry\022\013\n\003key\030\001 \001" - "(\t\022\r\n\005value\030\002 \001(\t:\0028\001B\010\n\006target\"\'\n\rConta" - "inerPort\022\026\n\016container_port\030\001 \001(\r\"\255\003\n\tCon" - "tainer\022\r\n\005image\030\001 \001(\t\022\017\n\007command\030\002 \003(\t\022\014" - "\n\004args\030\003 \003(\t\022+\n\tresources\030\004 \001(\0132\030.flytei" - "dl.core.Resources\022(\n\003env\030\005 \003(\0132\033.flyteid" - "l.core.KeyValuePair\022/\n\006config\030\006 \003(\0132\033.fl" - "yteidl.core.KeyValuePairB\002\030\001\022+\n\005ports\030\007 " - "\003(\0132\034.flyteidl.core.ContainerPort\0225\n\013dat" - "a_config\030\t \001(\0132 .flyteidl.core.DataLoadi" - "ngConfig\022;\n\014architecture\030\n \001(\0162%.flyteid" - "l.core.Container.Architecture\"I\n\014Archite" - "cture\022\013\n\007UNKNOWN\020\000\022\t\n\005AMD64\020\001\022\t\n\005ARM64\020\002" - "\022\n\n\006ARM_V6\020\003\022\n\n\006ARM_V7\020\004\"\233\002\n\nIOStrategy\022" - "=\n\rdownload_mode\030\001 \001(\0162&.flyteidl.core.I" - "OStrategy.DownloadMode\0229\n\013upload_mode\030\002 " - "\001(\0162$.flyteidl.core.IOStrategy.UploadMod" - "e\"L\n\014DownloadMode\022\022\n\016DOWNLOAD_EAGER\020\000\022\023\n" - "\017DOWNLOAD_STREAM\020\001\022\023\n\017DO_NOT_DOWNLOAD\020\002\"" - "E\n\nUploadMode\022\022\n\016UPLOAD_ON_EXIT\020\000\022\020\n\014UPL" - "OAD_EAGER\020\001\022\021\n\rDO_NOT_UPLOAD\020\002\"\363\001\n\021DataL" - "oadingConfig\022\017\n\007enabled\030\001 \001(\010\022\022\n\ninput_p" - "ath\030\002 \001(\t\022\023\n\013output_path\030\003 \001(\t\022A\n\006format" - "\030\004 \001(\01621.flyteidl.core.DataLoadingConfig" - ".LiteralMapFormat\022.\n\013io_strategy\030\005 \001(\0132\031" - ".flyteidl.core.IOStrategy\"1\n\020LiteralMapF" - "ormat\022\010\n\004JSON\020\000\022\010\n\004YAML\020\001\022\t\n\005PROTO\020\002\"\236\001\n" - "\006K8sPod\0222\n\010metadata\030\001 \001(\0132 .flyteidl.cor" - "e.K8sObjectMetadata\022)\n\010pod_spec\030\002 \001(\0132\027." - "google.protobuf.Struct\0225\n\013data_config\030\003 " - "\001(\0132 .flyteidl.core.DataLoadingConfig\"\374\001" - "\n\021K8sObjectMetadata\022<\n\006labels\030\001 \003(\0132,.fl" - "yteidl.core.K8sObjectMetadata.LabelsEntr" - "y\022F\n\013annotations\030\002 \003(\01321.flyteidl.core.K" - "8sObjectMetadata.AnnotationsEntry\032-\n\013Lab" - "elsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001" - "\0322\n\020AnnotationsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005val" - "ue\030\002 \001(\t:\0028\001\"~\n\003Sql\022\021\n\tstatement\030\001 \001(\t\022+" - "\n\007dialect\030\002 \001(\0162\032.flyteidl.core.Sql.Dial" - "ect\"7\n\007Dialect\022\r\n\tUNDEFINED\020\000\022\010\n\004ANSI\020\001\022" - "\010\n\004HIVE\020\002\022\t\n\005OTHER\020\003B6Z4github.com/flyte" - "org/flyteidl/gen/pb-go/flyteidl/coreb\006pr" - "oto3" + "E_SDK\020\001\"\316\003\n\014TaskMetadata\022\024\n\014discoverable" + "\030\001 \001(\010\022/\n\007runtime\030\002 \001(\0132\036.flyteidl.core." + "RuntimeMetadata\022*\n\007timeout\030\004 \001(\0132\031.googl" + "e.protobuf.Duration\022-\n\007retries\030\005 \001(\0132\034.f" + "lyteidl.core.RetryStrategy\022\031\n\021discovery_" + "version\030\006 \001(\t\022 \n\030deprecated_error_messag" + "e\030\007 \001(\t\022\027\n\rinterruptible\030\010 \001(\010H\000\022\032\n\022cach" + "e_serializable\030\t \001(\010\022\026\n\016generates_deck\030\n" + " \001(\010\0223\n\004tags\030\013 \003(\0132%.flyteidl.core.TaskM" + "etadata.TagsEntry\022\031\n\021pod_template_name\030\014" + " \001(\t\032+\n\tTagsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030" + "\002 \001(\t:\0028\001B\025\n\023interruptible_value\"\220\004\n\014Tas" + "kTemplate\022%\n\002id\030\001 \001(\0132\031.flyteidl.core.Id" + "entifier\022\014\n\004type\030\002 \001(\t\022-\n\010metadata\030\003 \001(\013" + "2\033.flyteidl.core.TaskMetadata\0220\n\tinterfa" + "ce\030\004 \001(\0132\035.flyteidl.core.TypedInterface\022" + "\'\n\006custom\030\005 \001(\0132\027.google.protobuf.Struct" + "\022-\n\tcontainer\030\006 \001(\0132\030.flyteidl.core.Cont" + "ainerH\000\022(\n\007k8s_pod\030\021 \001(\0132\025.flyteidl.core" + ".K8sPodH\000\022!\n\003sql\030\022 \001(\0132\022.flyteidl.core.S" + "qlH\000\022\031\n\021task_type_version\030\007 \001(\005\0228\n\020secur" + "ity_context\030\010 \001(\0132\036.flyteidl.core.Securi" + "tyContext\0227\n\006config\030\020 \003(\0132\'.flyteidl.cor" + "e.TaskTemplate.ConfigEntry\032-\n\013ConfigEntr" + "y\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001B\010\n\006tar" + "get\"\'\n\rContainerPort\022\026\n\016container_port\030\001" + " \001(\r\"\255\003\n\tContainer\022\r\n\005image\030\001 \001(\t\022\017\n\007com" + "mand\030\002 \003(\t\022\014\n\004args\030\003 \003(\t\022+\n\tresources\030\004 " + "\001(\0132\030.flyteidl.core.Resources\022(\n\003env\030\005 \003" + "(\0132\033.flyteidl.core.KeyValuePair\022/\n\006confi" + "g\030\006 \003(\0132\033.flyteidl.core.KeyValuePairB\002\030\001" + "\022+\n\005ports\030\007 \003(\0132\034.flyteidl.core.Containe" + "rPort\0225\n\013data_config\030\t \001(\0132 .flyteidl.co" + "re.DataLoadingConfig\022;\n\014architecture\030\n \001" + "(\0162%.flyteidl.core.Container.Architectur" + "e\"I\n\014Architecture\022\013\n\007UNKNOWN\020\000\022\t\n\005AMD64\020" + "\001\022\t\n\005ARM64\020\002\022\n\n\006ARM_V6\020\003\022\n\n\006ARM_V7\020\004\"\233\002\n" + "\nIOStrategy\022=\n\rdownload_mode\030\001 \001(\0162&.fly" + "teidl.core.IOStrategy.DownloadMode\0229\n\013up" + "load_mode\030\002 \001(\0162$.flyteidl.core.IOStrate" + "gy.UploadMode\"L\n\014DownloadMode\022\022\n\016DOWNLOA" + "D_EAGER\020\000\022\023\n\017DOWNLOAD_STREAM\020\001\022\023\n\017DO_NOT" + "_DOWNLOAD\020\002\"E\n\nUploadMode\022\022\n\016UPLOAD_ON_E" + "XIT\020\000\022\020\n\014UPLOAD_EAGER\020\001\022\021\n\rDO_NOT_UPLOAD" + "\020\002\"\363\001\n\021DataLoadingConfig\022\017\n\007enabled\030\001 \001(" + "\010\022\022\n\ninput_path\030\002 \001(\t\022\023\n\013output_path\030\003 \001" + "(\t\022A\n\006format\030\004 \001(\01621.flyteidl.core.DataL" + "oadingConfig.LiteralMapFormat\022.\n\013io_stra" + "tegy\030\005 \001(\0132\031.flyteidl.core.IOStrategy\"1\n" + "\020LiteralMapFormat\022\010\n\004JSON\020\000\022\010\n\004YAML\020\001\022\t\n" + "\005PROTO\020\002\"\236\001\n\006K8sPod\0222\n\010metadata\030\001 \001(\0132 ." + "flyteidl.core.K8sObjectMetadata\022)\n\010pod_s" + "pec\030\002 \001(\0132\027.google.protobuf.Struct\0225\n\013da" + "ta_config\030\003 \001(\0132 .flyteidl.core.DataLoad" + "ingConfig\"\374\001\n\021K8sObjectMetadata\022<\n\006label" + "s\030\001 \003(\0132,.flyteidl.core.K8sObjectMetadat" + "a.LabelsEntry\022F\n\013annotations\030\002 \003(\01321.fly" + "teidl.core.K8sObjectMetadata.Annotations" + "Entry\032-\n\013LabelsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005val" + "ue\030\002 \001(\t:\0028\001\0322\n\020AnnotationsEntry\022\013\n\003key\030" + "\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"~\n\003Sql\022\021\n\tstate" + "ment\030\001 \001(\t\022+\n\007dialect\030\002 \001(\0162\032.flyteidl.c" + "ore.Sql.Dialect\"7\n\007Dialect\022\r\n\tUNDEFINED\020" + "\000\022\010\n\004ANSI\020\001\022\010\n\004HIVE\020\002\022\t\n\005OTHER\020\003B6Z4gith" + "ub.com/flyteorg/flyteidl/gen/pb-go/flyte" + "idl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2ftasks_2eproto = { false, InitDefaults_flyteidl_2fcore_2ftasks_2eproto, descriptor_table_protodef_flyteidl_2fcore_2ftasks_2eproto, - "flyteidl/core/tasks.proto", &assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto, 3564, + "flyteidl/core/tasks.proto", &assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto, 3296, }; void AddDescriptors_flyteidl_2fcore_2ftasks_2eproto() { @@ -1664,937 +1591,32 @@ void RuntimeMetadata::SharedDtor() { version_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); flavor_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } - -void RuntimeMetadata::SetCachedSize(int size) const { - _cached_size_.Set(size); -} -const RuntimeMetadata& RuntimeMetadata::default_instance() { - ::google::protobuf::internal::InitSCC(&::scc_info_RuntimeMetadata_flyteidl_2fcore_2ftasks_2eproto.base); - return *internal_default_instance(); -} - - -void RuntimeMetadata::Clear() { -// @@protoc_insertion_point(message_clear_start:flyteidl.core.RuntimeMetadata) - ::google::protobuf::uint32 cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - version_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - flavor_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - type_ = 0; - _internal_metadata_.Clear(); -} - -#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER -const char* RuntimeMetadata::_InternalParse(const char* begin, const char* end, void* object, - ::google::protobuf::internal::ParseContext* ctx) { - auto msg = static_cast(object); - ::google::protobuf::int32 size; (void)size; - int depth; (void)depth; - ::google::protobuf::uint32 tag; - ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; - auto ptr = begin; - while (ptr < end) { - ptr = ::google::protobuf::io::Parse32(ptr, &tag); - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - switch (tag >> 3) { - // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; - case 1: { - if (static_cast<::google::protobuf::uint8>(tag) != 8) goto handle_unusual; - ::google::protobuf::uint64 val = ::google::protobuf::internal::ReadVarint(&ptr); - msg->set_type(static_cast<::flyteidl::core::RuntimeMetadata_RuntimeType>(val)); - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - break; - } - // string version = 2; - case 2: { - if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; - ptr = ::google::protobuf::io::ReadSize(ptr, &size); - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - ctx->extra_parse_data().SetFieldName("flyteidl.core.RuntimeMetadata.version"); - object = msg->mutable_version(); - if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { - parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; - goto string_till_end; - } - GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); - ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); - ptr += size; - break; - } - // string flavor = 3; - case 3: { - if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; - ptr = ::google::protobuf::io::ReadSize(ptr, &size); - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - ctx->extra_parse_data().SetFieldName("flyteidl.core.RuntimeMetadata.flavor"); - object = msg->mutable_flavor(); - if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { - parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; - goto string_till_end; - } - GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); - ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); - ptr += size; - break; - } - default: { - handle_unusual: - if ((tag & 7) == 4 || tag == 0) { - ctx->EndGroup(tag); - return ptr; - } - auto res = UnknownFieldParse(tag, {_InternalParse, msg}, - ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); - ptr = res.first; - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); - if (res.second) return ptr; - } - } // switch - } // while - return ptr; -string_till_end: - static_cast<::std::string*>(object)->clear(); - static_cast<::std::string*>(object)->reserve(size); - goto len_delim_till_end; -len_delim_till_end: - return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, - {parser_till_end, object}, size); -} -#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER -bool RuntimeMetadata::MergePartialFromCodedStream( - ::google::protobuf::io::CodedInputStream* input) { -#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure - ::google::protobuf::uint32 tag; - // @@protoc_insertion_point(parse_start:flyteidl.core.RuntimeMetadata) - for (;;) { - ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); - tag = p.first; - if (!p.second) goto handle_unusual; - switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; - case 1: { - if (static_cast< ::google::protobuf::uint8>(tag) == (8 & 0xFF)) { - int value = 0; - DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< - int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( - input, &value))); - set_type(static_cast< ::flyteidl::core::RuntimeMetadata_RuntimeType >(value)); - } else { - goto handle_unusual; - } - break; - } - - // string version = 2; - case 2: { - if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_version())); - DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->version().data(), static_cast(this->version().length()), - ::google::protobuf::internal::WireFormatLite::PARSE, - "flyteidl.core.RuntimeMetadata.version")); - } else { - goto handle_unusual; - } - break; - } - - // string flavor = 3; - case 3: { - if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_flavor())); - DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->flavor().data(), static_cast(this->flavor().length()), - ::google::protobuf::internal::WireFormatLite::PARSE, - "flyteidl.core.RuntimeMetadata.flavor")); - } else { - goto handle_unusual; - } - break; - } - - default: { - handle_unusual: - if (tag == 0) { - goto success; - } - DO_(::google::protobuf::internal::WireFormat::SkipField( - input, tag, _internal_metadata_.mutable_unknown_fields())); - break; - } - } - } -success: - // @@protoc_insertion_point(parse_success:flyteidl.core.RuntimeMetadata) - return true; -failure: - // @@protoc_insertion_point(parse_failure:flyteidl.core.RuntimeMetadata) - return false; -#undef DO_ -} -#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER - -void RuntimeMetadata::SerializeWithCachedSizes( - ::google::protobuf::io::CodedOutputStream* output) const { - // @@protoc_insertion_point(serialize_start:flyteidl.core.RuntimeMetadata) - ::google::protobuf::uint32 cached_has_bits = 0; - (void) cached_has_bits; - - // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; - if (this->type() != 0) { - ::google::protobuf::internal::WireFormatLite::WriteEnum( - 1, this->type(), output); - } - - // string version = 2; - if (this->version().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->version().data(), static_cast(this->version().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.core.RuntimeMetadata.version"); - ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 2, this->version(), output); - } - - // string flavor = 3; - if (this->flavor().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->flavor().data(), static_cast(this->flavor().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.core.RuntimeMetadata.flavor"); - ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 3, this->flavor(), output); - } - - if (_internal_metadata_.have_unknown_fields()) { - ::google::protobuf::internal::WireFormat::SerializeUnknownFields( - _internal_metadata_.unknown_fields(), output); - } - // @@protoc_insertion_point(serialize_end:flyteidl.core.RuntimeMetadata) -} - -::google::protobuf::uint8* RuntimeMetadata::InternalSerializeWithCachedSizesToArray( - ::google::protobuf::uint8* target) const { - // @@protoc_insertion_point(serialize_to_array_start:flyteidl.core.RuntimeMetadata) - ::google::protobuf::uint32 cached_has_bits = 0; - (void) cached_has_bits; - - // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; - if (this->type() != 0) { - target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( - 1, this->type(), target); - } - - // string version = 2; - if (this->version().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->version().data(), static_cast(this->version().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.core.RuntimeMetadata.version"); - target = - ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 2, this->version(), target); - } - - // string flavor = 3; - if (this->flavor().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->flavor().data(), static_cast(this->flavor().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.core.RuntimeMetadata.flavor"); - target = - ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 3, this->flavor(), target); - } - - if (_internal_metadata_.have_unknown_fields()) { - target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields(), target); - } - // @@protoc_insertion_point(serialize_to_array_end:flyteidl.core.RuntimeMetadata) - return target; -} - -size_t RuntimeMetadata::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:flyteidl.core.RuntimeMetadata) - size_t total_size = 0; - - if (_internal_metadata_.have_unknown_fields()) { - total_size += - ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( - _internal_metadata_.unknown_fields()); - } - ::google::protobuf::uint32 cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - // string version = 2; - if (this->version().size() > 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::StringSize( - this->version()); - } - - // string flavor = 3; - if (this->flavor().size() > 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::StringSize( - this->flavor()); - } - - // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; - if (this->type() != 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::EnumSize(this->type()); - } - - int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); - SetCachedSize(cached_size); - return total_size; -} - -void RuntimeMetadata::MergeFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.core.RuntimeMetadata) - GOOGLE_DCHECK_NE(&from, this); - const RuntimeMetadata* source = - ::google::protobuf::DynamicCastToGenerated( - &from); - if (source == nullptr) { - // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.core.RuntimeMetadata) - ::google::protobuf::internal::ReflectionOps::Merge(from, this); - } else { - // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.core.RuntimeMetadata) - MergeFrom(*source); - } -} - -void RuntimeMetadata::MergeFrom(const RuntimeMetadata& from) { -// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.core.RuntimeMetadata) - GOOGLE_DCHECK_NE(&from, this); - _internal_metadata_.MergeFrom(from._internal_metadata_); - ::google::protobuf::uint32 cached_has_bits = 0; - (void) cached_has_bits; - - if (from.version().size() > 0) { - - version_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.version_); - } - if (from.flavor().size() > 0) { - - flavor_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.flavor_); - } - if (from.type() != 0) { - set_type(from.type()); - } -} - -void RuntimeMetadata::CopyFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.core.RuntimeMetadata) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -void RuntimeMetadata::CopyFrom(const RuntimeMetadata& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.core.RuntimeMetadata) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -bool RuntimeMetadata::IsInitialized() const { - return true; -} - -void RuntimeMetadata::Swap(RuntimeMetadata* other) { - if (other == this) return; - InternalSwap(other); -} -void RuntimeMetadata::InternalSwap(RuntimeMetadata* other) { - using std::swap; - _internal_metadata_.Swap(&other->_internal_metadata_); - version_.Swap(&other->version_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), - GetArenaNoVirtual()); - flavor_.Swap(&other->flavor_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), - GetArenaNoVirtual()); - swap(type_, other->type_); -} - -::google::protobuf::Metadata RuntimeMetadata::GetMetadata() const { - ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); - return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[kIndexInFileMessages]; -} - - -// =================================================================== - -void GPUAccelerator::InitAsDefaultInstance() { - ::flyteidl::core::_GPUAccelerator_default_instance_.unpartitioned_ = false; - ::flyteidl::core::_GPUAccelerator_default_instance_.partition_size_.UnsafeSetDefault( - &::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -class GPUAccelerator::HasBitSetters { - public: -}; - -#if !defined(_MSC_VER) || _MSC_VER >= 1900 -const int GPUAccelerator::kDeviceFieldNumber; -const int GPUAccelerator::kUnpartitionedFieldNumber; -const int GPUAccelerator::kPartitionSizeFieldNumber; -#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 - -GPUAccelerator::GPUAccelerator() - : ::google::protobuf::Message(), _internal_metadata_(nullptr) { - SharedCtor(); - // @@protoc_insertion_point(constructor:flyteidl.core.GPUAccelerator) -} -GPUAccelerator::GPUAccelerator(const GPUAccelerator& from) - : ::google::protobuf::Message(), - _internal_metadata_(nullptr) { - _internal_metadata_.MergeFrom(from._internal_metadata_); - device_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - if (from.device().size() > 0) { - device_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.device_); - } - clear_has_partition_size_value(); - switch (from.partition_size_value_case()) { - case kUnpartitioned: { - set_unpartitioned(from.unpartitioned()); - break; - } - case kPartitionSize: { - set_partition_size(from.partition_size()); - break; - } - case PARTITION_SIZE_VALUE_NOT_SET: { - break; - } - } - // @@protoc_insertion_point(copy_constructor:flyteidl.core.GPUAccelerator) -} - -void GPUAccelerator::SharedCtor() { - ::google::protobuf::internal::InitSCC( - &scc_info_GPUAccelerator_flyteidl_2fcore_2ftasks_2eproto.base); - device_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - clear_has_partition_size_value(); -} - -GPUAccelerator::~GPUAccelerator() { - // @@protoc_insertion_point(destructor:flyteidl.core.GPUAccelerator) - SharedDtor(); -} - -void GPUAccelerator::SharedDtor() { - device_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - if (has_partition_size_value()) { - clear_partition_size_value(); - } -} - -void GPUAccelerator::SetCachedSize(int size) const { - _cached_size_.Set(size); -} -const GPUAccelerator& GPUAccelerator::default_instance() { - ::google::protobuf::internal::InitSCC(&::scc_info_GPUAccelerator_flyteidl_2fcore_2ftasks_2eproto.base); - return *internal_default_instance(); -} - - -void GPUAccelerator::clear_partition_size_value() { -// @@protoc_insertion_point(one_of_clear_start:flyteidl.core.GPUAccelerator) - switch (partition_size_value_case()) { - case kUnpartitioned: { - // No need to clear - break; - } - case kPartitionSize: { - partition_size_value_.partition_size_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - break; - } - case PARTITION_SIZE_VALUE_NOT_SET: { - break; - } - } - _oneof_case_[0] = PARTITION_SIZE_VALUE_NOT_SET; -} - - -void GPUAccelerator::Clear() { -// @@protoc_insertion_point(message_clear_start:flyteidl.core.GPUAccelerator) - ::google::protobuf::uint32 cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - device_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - clear_partition_size_value(); - _internal_metadata_.Clear(); -} - -#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER -const char* GPUAccelerator::_InternalParse(const char* begin, const char* end, void* object, - ::google::protobuf::internal::ParseContext* ctx) { - auto msg = static_cast(object); - ::google::protobuf::int32 size; (void)size; - int depth; (void)depth; - ::google::protobuf::uint32 tag; - ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; - auto ptr = begin; - while (ptr < end) { - ptr = ::google::protobuf::io::Parse32(ptr, &tag); - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - switch (tag >> 3) { - // string device = 1; - case 1: { - if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; - ptr = ::google::protobuf::io::ReadSize(ptr, &size); - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - ctx->extra_parse_data().SetFieldName("flyteidl.core.GPUAccelerator.device"); - object = msg->mutable_device(); - if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { - parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; - goto string_till_end; - } - GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); - ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); - ptr += size; - break; - } - // bool unpartitioned = 2; - case 2: { - if (static_cast<::google::protobuf::uint8>(tag) != 16) goto handle_unusual; - msg->set_unpartitioned(::google::protobuf::internal::ReadVarint(&ptr)); - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - break; - } - // string partition_size = 3; - case 3: { - if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; - ptr = ::google::protobuf::io::ReadSize(ptr, &size); - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - ctx->extra_parse_data().SetFieldName("flyteidl.core.GPUAccelerator.partition_size"); - object = msg->mutable_partition_size(); - if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { - parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; - goto string_till_end; - } - GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); - ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); - ptr += size; - break; - } - default: { - handle_unusual: - if ((tag & 7) == 4 || tag == 0) { - ctx->EndGroup(tag); - return ptr; - } - auto res = UnknownFieldParse(tag, {_InternalParse, msg}, - ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); - ptr = res.first; - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); - if (res.second) return ptr; - } - } // switch - } // while - return ptr; -string_till_end: - static_cast<::std::string*>(object)->clear(); - static_cast<::std::string*>(object)->reserve(size); - goto len_delim_till_end; -len_delim_till_end: - return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, - {parser_till_end, object}, size); -} -#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER -bool GPUAccelerator::MergePartialFromCodedStream( - ::google::protobuf::io::CodedInputStream* input) { -#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure - ::google::protobuf::uint32 tag; - // @@protoc_insertion_point(parse_start:flyteidl.core.GPUAccelerator) - for (;;) { - ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); - tag = p.first; - if (!p.second) goto handle_unusual; - switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // string device = 1; - case 1: { - if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_device())); - DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->device().data(), static_cast(this->device().length()), - ::google::protobuf::internal::WireFormatLite::PARSE, - "flyteidl.core.GPUAccelerator.device")); - } else { - goto handle_unusual; - } - break; - } - - // bool unpartitioned = 2; - case 2: { - if (static_cast< ::google::protobuf::uint8>(tag) == (16 & 0xFF)) { - clear_partition_size_value(); - DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< - bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( - input, &partition_size_value_.unpartitioned_))); - set_has_unpartitioned(); - } else { - goto handle_unusual; - } - break; - } - - // string partition_size = 3; - case 3: { - if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_partition_size())); - DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->partition_size().data(), static_cast(this->partition_size().length()), - ::google::protobuf::internal::WireFormatLite::PARSE, - "flyteidl.core.GPUAccelerator.partition_size")); - } else { - goto handle_unusual; - } - break; - } - - default: { - handle_unusual: - if (tag == 0) { - goto success; - } - DO_(::google::protobuf::internal::WireFormat::SkipField( - input, tag, _internal_metadata_.mutable_unknown_fields())); - break; - } - } - } -success: - // @@protoc_insertion_point(parse_success:flyteidl.core.GPUAccelerator) - return true; -failure: - // @@protoc_insertion_point(parse_failure:flyteidl.core.GPUAccelerator) - return false; -#undef DO_ -} -#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER - -void GPUAccelerator::SerializeWithCachedSizes( - ::google::protobuf::io::CodedOutputStream* output) const { - // @@protoc_insertion_point(serialize_start:flyteidl.core.GPUAccelerator) - ::google::protobuf::uint32 cached_has_bits = 0; - (void) cached_has_bits; - - // string device = 1; - if (this->device().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->device().data(), static_cast(this->device().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.core.GPUAccelerator.device"); - ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 1, this->device(), output); - } - - // bool unpartitioned = 2; - if (has_unpartitioned()) { - ::google::protobuf::internal::WireFormatLite::WriteBool(2, this->unpartitioned(), output); - } - - // string partition_size = 3; - if (has_partition_size()) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->partition_size().data(), static_cast(this->partition_size().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.core.GPUAccelerator.partition_size"); - ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 3, this->partition_size(), output); - } - - if (_internal_metadata_.have_unknown_fields()) { - ::google::protobuf::internal::WireFormat::SerializeUnknownFields( - _internal_metadata_.unknown_fields(), output); - } - // @@protoc_insertion_point(serialize_end:flyteidl.core.GPUAccelerator) -} - -::google::protobuf::uint8* GPUAccelerator::InternalSerializeWithCachedSizesToArray( - ::google::protobuf::uint8* target) const { - // @@protoc_insertion_point(serialize_to_array_start:flyteidl.core.GPUAccelerator) - ::google::protobuf::uint32 cached_has_bits = 0; - (void) cached_has_bits; - - // string device = 1; - if (this->device().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->device().data(), static_cast(this->device().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.core.GPUAccelerator.device"); - target = - ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 1, this->device(), target); - } - - // bool unpartitioned = 2; - if (has_unpartitioned()) { - target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(2, this->unpartitioned(), target); - } - - // string partition_size = 3; - if (has_partition_size()) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->partition_size().data(), static_cast(this->partition_size().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.core.GPUAccelerator.partition_size"); - target = - ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 3, this->partition_size(), target); - } - - if (_internal_metadata_.have_unknown_fields()) { - target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields(), target); - } - // @@protoc_insertion_point(serialize_to_array_end:flyteidl.core.GPUAccelerator) - return target; -} - -size_t GPUAccelerator::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:flyteidl.core.GPUAccelerator) - size_t total_size = 0; - - if (_internal_metadata_.have_unknown_fields()) { - total_size += - ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( - _internal_metadata_.unknown_fields()); - } - ::google::protobuf::uint32 cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - // string device = 1; - if (this->device().size() > 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::StringSize( - this->device()); - } - - switch (partition_size_value_case()) { - // bool unpartitioned = 2; - case kUnpartitioned: { - total_size += 1 + 1; - break; - } - // string partition_size = 3; - case kPartitionSize: { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::StringSize( - this->partition_size()); - break; - } - case PARTITION_SIZE_VALUE_NOT_SET: { - break; - } - } - int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); - SetCachedSize(cached_size); - return total_size; -} - -void GPUAccelerator::MergeFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.core.GPUAccelerator) - GOOGLE_DCHECK_NE(&from, this); - const GPUAccelerator* source = - ::google::protobuf::DynamicCastToGenerated( - &from); - if (source == nullptr) { - // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.core.GPUAccelerator) - ::google::protobuf::internal::ReflectionOps::Merge(from, this); - } else { - // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.core.GPUAccelerator) - MergeFrom(*source); - } -} - -void GPUAccelerator::MergeFrom(const GPUAccelerator& from) { -// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.core.GPUAccelerator) - GOOGLE_DCHECK_NE(&from, this); - _internal_metadata_.MergeFrom(from._internal_metadata_); - ::google::protobuf::uint32 cached_has_bits = 0; - (void) cached_has_bits; - - if (from.device().size() > 0) { - - device_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.device_); - } - switch (from.partition_size_value_case()) { - case kUnpartitioned: { - set_unpartitioned(from.unpartitioned()); - break; - } - case kPartitionSize: { - set_partition_size(from.partition_size()); - break; - } - case PARTITION_SIZE_VALUE_NOT_SET: { - break; - } - } -} - -void GPUAccelerator::CopyFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.core.GPUAccelerator) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -void GPUAccelerator::CopyFrom(const GPUAccelerator& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.core.GPUAccelerator) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -bool GPUAccelerator::IsInitialized() const { - return true; -} - -void GPUAccelerator::Swap(GPUAccelerator* other) { - if (other == this) return; - InternalSwap(other); -} -void GPUAccelerator::InternalSwap(GPUAccelerator* other) { - using std::swap; - _internal_metadata_.Swap(&other->_internal_metadata_); - device_.Swap(&other->device_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), - GetArenaNoVirtual()); - swap(partition_size_value_, other->partition_size_value_); - swap(_oneof_case_[0], other->_oneof_case_[0]); -} - -::google::protobuf::Metadata GPUAccelerator::GetMetadata() const { - ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); - return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[kIndexInFileMessages]; -} - - -// =================================================================== - -void ResourceMetadata::InitAsDefaultInstance() { - ::flyteidl::core::_ResourceMetadata_default_instance_.gpu_accelerator_ = const_cast< ::flyteidl::core::GPUAccelerator*>( - ::flyteidl::core::GPUAccelerator::internal_default_instance()); -} -class ResourceMetadata::HasBitSetters { - public: - static const ::flyteidl::core::GPUAccelerator& gpu_accelerator(const ResourceMetadata* msg); -}; - -const ::flyteidl::core::GPUAccelerator& -ResourceMetadata::HasBitSetters::gpu_accelerator(const ResourceMetadata* msg) { - return *msg->accelerator_value_.gpu_accelerator_; -} -void ResourceMetadata::set_allocated_gpu_accelerator(::flyteidl::core::GPUAccelerator* gpu_accelerator) { - ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); - clear_accelerator_value(); - if (gpu_accelerator) { - ::google::protobuf::Arena* submessage_arena = nullptr; - if (message_arena != submessage_arena) { - gpu_accelerator = ::google::protobuf::internal::GetOwnedMessage( - message_arena, gpu_accelerator, submessage_arena); - } - set_has_gpu_accelerator(); - accelerator_value_.gpu_accelerator_ = gpu_accelerator; - } - // @@protoc_insertion_point(field_set_allocated:flyteidl.core.ResourceMetadata.gpu_accelerator) -} -#if !defined(_MSC_VER) || _MSC_VER >= 1900 -const int ResourceMetadata::kGpuAcceleratorFieldNumber; -#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 - -ResourceMetadata::ResourceMetadata() - : ::google::protobuf::Message(), _internal_metadata_(nullptr) { - SharedCtor(); - // @@protoc_insertion_point(constructor:flyteidl.core.ResourceMetadata) -} -ResourceMetadata::ResourceMetadata(const ResourceMetadata& from) - : ::google::protobuf::Message(), - _internal_metadata_(nullptr) { - _internal_metadata_.MergeFrom(from._internal_metadata_); - clear_has_accelerator_value(); - switch (from.accelerator_value_case()) { - case kGpuAccelerator: { - mutable_gpu_accelerator()->::flyteidl::core::GPUAccelerator::MergeFrom(from.gpu_accelerator()); - break; - } - case ACCELERATOR_VALUE_NOT_SET: { - break; - } - } - // @@protoc_insertion_point(copy_constructor:flyteidl.core.ResourceMetadata) -} - -void ResourceMetadata::SharedCtor() { - ::google::protobuf::internal::InitSCC( - &scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto.base); - clear_has_accelerator_value(); -} - -ResourceMetadata::~ResourceMetadata() { - // @@protoc_insertion_point(destructor:flyteidl.core.ResourceMetadata) - SharedDtor(); -} - -void ResourceMetadata::SharedDtor() { - if (has_accelerator_value()) { - clear_accelerator_value(); - } -} - -void ResourceMetadata::SetCachedSize(int size) const { - _cached_size_.Set(size); -} -const ResourceMetadata& ResourceMetadata::default_instance() { - ::google::protobuf::internal::InitSCC(&::scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto.base); - return *internal_default_instance(); -} - - -void ResourceMetadata::clear_accelerator_value() { -// @@protoc_insertion_point(one_of_clear_start:flyteidl.core.ResourceMetadata) - switch (accelerator_value_case()) { - case kGpuAccelerator: { - delete accelerator_value_.gpu_accelerator_; - break; - } - case ACCELERATOR_VALUE_NOT_SET: { - break; - } - } - _oneof_case_[0] = ACCELERATOR_VALUE_NOT_SET; + +void RuntimeMetadata::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const RuntimeMetadata& RuntimeMetadata::default_instance() { + ::google::protobuf::internal::InitSCC(&::scc_info_RuntimeMetadata_flyteidl_2fcore_2ftasks_2eproto.base); + return *internal_default_instance(); } -void ResourceMetadata::Clear() { -// @@protoc_insertion_point(message_clear_start:flyteidl.core.ResourceMetadata) +void RuntimeMetadata::Clear() { +// @@protoc_insertion_point(message_clear_start:flyteidl.core.RuntimeMetadata) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - clear_accelerator_value(); + version_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + flavor_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + type_ = 0; _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER -const char* ResourceMetadata::_InternalParse(const char* begin, const char* end, void* object, +const char* RuntimeMetadata::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { - auto msg = static_cast(object); + auto msg = static_cast(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; @@ -2604,17 +1626,44 @@ const char* ResourceMetadata::_InternalParse(const char* begin, const char* end, ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { - // .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; case 1: { - if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; + if (static_cast<::google::protobuf::uint8>(tag) != 8) goto handle_unusual; + ::google::protobuf::uint64 val = ::google::protobuf::internal::ReadVarint(&ptr); + msg->set_type(static_cast<::flyteidl::core::RuntimeMetadata_RuntimeType>(val)); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + break; + } + // string version = 2; + case 2: { + if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - parser_till_end = ::flyteidl::core::GPUAccelerator::_InternalParse; - object = msg->mutable_gpu_accelerator(); - if (size > end - ptr) goto len_delim_till_end; + ctx->extra_parse_data().SetFieldName("flyteidl.core.RuntimeMetadata.version"); + object = msg->mutable_version(); + if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { + parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; + goto string_till_end; + } + GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); + ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); + ptr += size; + break; + } + // string flavor = 3; + case 3: { + if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + ctx->extra_parse_data().SetFieldName("flyteidl.core.RuntimeMetadata.flavor"); + object = msg->mutable_flavor(); + if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { + parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; + goto string_till_end; + } + GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); + ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; - GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( - {parser_till_end, object}, ptr - size, ptr)); break; } default: { @@ -2632,26 +1681,63 @@ const char* ResourceMetadata::_InternalParse(const char* begin, const char* end, } // switch } // while return ptr; +string_till_end: + static_cast<::std::string*>(object)->clear(); + static_cast<::std::string*>(object)->reserve(size); + goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER -bool ResourceMetadata::MergePartialFromCodedStream( +bool RuntimeMetadata::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; - // @@protoc_insertion_point(parse_start:flyteidl.core.ResourceMetadata) + // @@protoc_insertion_point(parse_start:flyteidl.core.RuntimeMetadata) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // .flyteidl.core.GPUAccelerator gpu_accelerator = 1; + // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; case 1: { - if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( - input, mutable_gpu_accelerator())); + if (static_cast< ::google::protobuf::uint8>(tag) == (8 & 0xFF)) { + int value = 0; + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( + input, &value))); + set_type(static_cast< ::flyteidl::core::RuntimeMetadata_RuntimeType >(value)); + } else { + goto handle_unusual; + } + break; + } + + // string version = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_version())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->version().data(), static_cast(this->version().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "flyteidl.core.RuntimeMetadata.version")); + } else { + goto handle_unusual; + } + break; + } + + // string flavor = 3; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_flavor())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->flavor().data(), static_cast(this->flavor().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "flyteidl.core.RuntimeMetadata.flavor")); } else { goto handle_unusual; } @@ -2670,57 +1756,98 @@ bool ResourceMetadata::MergePartialFromCodedStream( } } success: - // @@protoc_insertion_point(parse_success:flyteidl.core.ResourceMetadata) + // @@protoc_insertion_point(parse_success:flyteidl.core.RuntimeMetadata) return true; failure: - // @@protoc_insertion_point(parse_failure:flyteidl.core.ResourceMetadata) + // @@protoc_insertion_point(parse_failure:flyteidl.core.RuntimeMetadata) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER -void ResourceMetadata::SerializeWithCachedSizes( +void RuntimeMetadata::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { - // @@protoc_insertion_point(serialize_start:flyteidl.core.ResourceMetadata) + // @@protoc_insertion_point(serialize_start:flyteidl.core.RuntimeMetadata) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - if (has_gpu_accelerator()) { - ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( - 1, HasBitSetters::gpu_accelerator(this), output); + // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; + if (this->type() != 0) { + ::google::protobuf::internal::WireFormatLite::WriteEnum( + 1, this->type(), output); + } + + // string version = 2; + if (this->version().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->version().data(), static_cast(this->version().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.RuntimeMetadata.version"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 2, this->version(), output); + } + + // string flavor = 3; + if (this->flavor().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->flavor().data(), static_cast(this->flavor().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.RuntimeMetadata.flavor"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 3, this->flavor(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } - // @@protoc_insertion_point(serialize_end:flyteidl.core.ResourceMetadata) + // @@protoc_insertion_point(serialize_end:flyteidl.core.RuntimeMetadata) } -::google::protobuf::uint8* ResourceMetadata::InternalSerializeWithCachedSizesToArray( +::google::protobuf::uint8* RuntimeMetadata::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { - // @@protoc_insertion_point(serialize_to_array_start:flyteidl.core.ResourceMetadata) + // @@protoc_insertion_point(serialize_to_array_start:flyteidl.core.RuntimeMetadata) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - if (has_gpu_accelerator()) { - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessageToArray( - 1, HasBitSetters::gpu_accelerator(this), target); + // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; + if (this->type() != 0) { + target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( + 1, this->type(), target); + } + + // string version = 2; + if (this->version().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->version().data(), static_cast(this->version().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.RuntimeMetadata.version"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 2, this->version(), target); + } + + // string flavor = 3; + if (this->flavor().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->flavor().data(), static_cast(this->flavor().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.core.RuntimeMetadata.flavor"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 3, this->flavor(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } - // @@protoc_insertion_point(serialize_to_array_end:flyteidl.core.ResourceMetadata) + // @@protoc_insertion_point(serialize_to_array_end:flyteidl.core.RuntimeMetadata) return target; } -size_t ResourceMetadata::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:flyteidl.core.ResourceMetadata) +size_t RuntimeMetadata::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:flyteidl.core.RuntimeMetadata) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { @@ -2732,86 +1859,99 @@ size_t ResourceMetadata::ByteSizeLong() const { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - switch (accelerator_value_case()) { - // .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - case kGpuAccelerator: { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::MessageSize( - *accelerator_value_.gpu_accelerator_); - break; - } - case ACCELERATOR_VALUE_NOT_SET: { - break; - } + // string version = 2; + if (this->version().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->version()); + } + + // string flavor = 3; + if (this->flavor().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->flavor()); + } + + // .flyteidl.core.RuntimeMetadata.RuntimeType type = 1; + if (this->type() != 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::EnumSize(this->type()); } + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } -void ResourceMetadata::MergeFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.core.ResourceMetadata) +void RuntimeMetadata::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.core.RuntimeMetadata) GOOGLE_DCHECK_NE(&from, this); - const ResourceMetadata* source = - ::google::protobuf::DynamicCastToGenerated( + const RuntimeMetadata* source = + ::google::protobuf::DynamicCastToGenerated( &from); if (source == nullptr) { - // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.core.ResourceMetadata) + // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.core.RuntimeMetadata) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { - // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.core.ResourceMetadata) + // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.core.RuntimeMetadata) MergeFrom(*source); } } -void ResourceMetadata::MergeFrom(const ResourceMetadata& from) { -// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.core.ResourceMetadata) +void RuntimeMetadata::MergeFrom(const RuntimeMetadata& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.core.RuntimeMetadata) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - switch (from.accelerator_value_case()) { - case kGpuAccelerator: { - mutable_gpu_accelerator()->::flyteidl::core::GPUAccelerator::MergeFrom(from.gpu_accelerator()); - break; - } - case ACCELERATOR_VALUE_NOT_SET: { - break; - } + if (from.version().size() > 0) { + + version_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.version_); + } + if (from.flavor().size() > 0) { + + flavor_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.flavor_); + } + if (from.type() != 0) { + set_type(from.type()); } } -void ResourceMetadata::CopyFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.core.ResourceMetadata) +void RuntimeMetadata::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.core.RuntimeMetadata) if (&from == this) return; Clear(); MergeFrom(from); } -void ResourceMetadata::CopyFrom(const ResourceMetadata& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.core.ResourceMetadata) +void RuntimeMetadata::CopyFrom(const RuntimeMetadata& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.core.RuntimeMetadata) if (&from == this) return; Clear(); MergeFrom(from); } -bool ResourceMetadata::IsInitialized() const { +bool RuntimeMetadata::IsInitialized() const { return true; } -void ResourceMetadata::Swap(ResourceMetadata* other) { +void RuntimeMetadata::Swap(RuntimeMetadata* other) { if (other == this) return; InternalSwap(other); } -void ResourceMetadata::InternalSwap(ResourceMetadata* other) { +void RuntimeMetadata::InternalSwap(RuntimeMetadata* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); - swap(accelerator_value_, other->accelerator_value_); - swap(_oneof_case_[0], other->_oneof_case_[0]); + version_.Swap(&other->version_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + flavor_.Swap(&other->flavor_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + swap(type_, other->type_); } -::google::protobuf::Metadata ResourceMetadata::GetMetadata() const { +::google::protobuf::Metadata RuntimeMetadata::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[kIndexInFileMessages]; } @@ -2827,7 +1967,7 @@ void TaskMetadata_TagsEntry_DoNotUse::MergeFrom(const TaskMetadata_TagsEntry_DoN } ::google::protobuf::Metadata TaskMetadata_TagsEntry_DoNotUse::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); - return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[5]; + return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[3]; } void TaskMetadata_TagsEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -2868,15 +2008,12 @@ void TaskMetadata::InitAsDefaultInstance() { ::flyteidl::core::_TaskMetadata_default_instance_._instance.get_mutable()->retries_ = const_cast< ::flyteidl::core::RetryStrategy*>( ::flyteidl::core::RetryStrategy::internal_default_instance()); ::flyteidl::core::_TaskMetadata_default_instance_.interruptible_ = false; - ::flyteidl::core::_TaskMetadata_default_instance_._instance.get_mutable()->resource_metadata_ = const_cast< ::flyteidl::core::ResourceMetadata*>( - ::flyteidl::core::ResourceMetadata::internal_default_instance()); } class TaskMetadata::HasBitSetters { public: static const ::flyteidl::core::RuntimeMetadata& runtime(const TaskMetadata* msg); static const ::google::protobuf::Duration& timeout(const TaskMetadata* msg); static const ::flyteidl::core::RetryStrategy& retries(const TaskMetadata* msg); - static const ::flyteidl::core::ResourceMetadata& resource_metadata(const TaskMetadata* msg); }; const ::flyteidl::core::RuntimeMetadata& @@ -2891,10 +2028,6 @@ const ::flyteidl::core::RetryStrategy& TaskMetadata::HasBitSetters::retries(const TaskMetadata* msg) { return *msg->retries_; } -const ::flyteidl::core::ResourceMetadata& -TaskMetadata::HasBitSetters::resource_metadata(const TaskMetadata* msg) { - return *msg->resource_metadata_; -} void TaskMetadata::clear_timeout() { if (GetArenaNoVirtual() == nullptr && timeout_ != nullptr) { delete timeout_; @@ -2919,7 +2052,6 @@ const int TaskMetadata::kCacheSerializableFieldNumber; const int TaskMetadata::kGeneratesDeckFieldNumber; const int TaskMetadata::kTagsFieldNumber; const int TaskMetadata::kPodTemplateNameFieldNumber; -const int TaskMetadata::kResourceMetadataFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 TaskMetadata::TaskMetadata() @@ -2959,11 +2091,6 @@ TaskMetadata::TaskMetadata(const TaskMetadata& from) } else { retries_ = nullptr; } - if (from.has_resource_metadata()) { - resource_metadata_ = new ::flyteidl::core::ResourceMetadata(*from.resource_metadata_); - } else { - resource_metadata_ = nullptr; - } ::memcpy(&discoverable_, &from.discoverable_, static_cast(reinterpret_cast(&generates_deck_) - reinterpret_cast(&discoverable_)) + sizeof(generates_deck_)); @@ -3004,7 +2131,6 @@ void TaskMetadata::SharedDtor() { if (this != internal_default_instance()) delete runtime_; if (this != internal_default_instance()) delete timeout_; if (this != internal_default_instance()) delete retries_; - if (this != internal_default_instance()) delete resource_metadata_; if (has_interruptible_value()) { clear_interruptible_value(); } @@ -3056,10 +2182,6 @@ void TaskMetadata::Clear() { delete retries_; } retries_ = nullptr; - if (GetArenaNoVirtual() == nullptr && resource_metadata_ != nullptr) { - delete resource_metadata_; - } - resource_metadata_ = nullptr; ::memset(&discoverable_, 0, static_cast( reinterpret_cast(&generates_deck_) - reinterpret_cast(&discoverable_)) + sizeof(generates_deck_)); @@ -3214,19 +2336,6 @@ const char* TaskMetadata::_InternalParse(const char* begin, const char* end, voi ptr += size; break; } - // .flyteidl.core.ResourceMetadata resource_metadata = 13; - case 13: { - if (static_cast<::google::protobuf::uint8>(tag) != 106) goto handle_unusual; - ptr = ::google::protobuf::io::ReadSize(ptr, &size); - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - parser_till_end = ::flyteidl::core::ResourceMetadata::_InternalParse; - object = msg->mutable_resource_metadata(); - if (size > end - ptr) goto len_delim_till_end; - ptr += size; - GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( - {parser_till_end, object}, ptr - size, ptr)); - break; - } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -3418,17 +2527,6 @@ bool TaskMetadata::MergePartialFromCodedStream( break; } - // .flyteidl.core.ResourceMetadata resource_metadata = 13; - case 13: { - if (static_cast< ::google::protobuf::uint8>(tag) == (106 & 0xFF)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( - input, mutable_resource_metadata())); - } else { - goto handle_unusual; - } - break; - } - default: { handle_unusual: if (tag == 0) { @@ -3573,12 +2671,6 @@ void TaskMetadata::SerializeWithCachedSizes( 12, this->pod_template_name(), output); } - // .flyteidl.core.ResourceMetadata resource_metadata = 13; - if (this->has_resource_metadata()) { - ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( - 13, HasBitSetters::resource_metadata(this), output); - } - if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -3715,13 +2807,6 @@ ::google::protobuf::uint8* TaskMetadata::InternalSerializeWithCachedSizesToArray 12, this->pod_template_name(), target); } - // .flyteidl.core.ResourceMetadata resource_metadata = 13; - if (this->has_resource_metadata()) { - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessageToArray( - 13, HasBitSetters::resource_metadata(this), target); - } - if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -3799,13 +2884,6 @@ size_t TaskMetadata::ByteSizeLong() const { *retries_); } - // .flyteidl.core.ResourceMetadata resource_metadata = 13; - if (this->has_resource_metadata()) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::MessageSize( - *resource_metadata_); - } - // bool discoverable = 1; if (this->discoverable() != 0) { total_size += 1 + 1; @@ -3880,9 +2958,6 @@ void TaskMetadata::MergeFrom(const TaskMetadata& from) { if (from.has_retries()) { mutable_retries()->::flyteidl::core::RetryStrategy::MergeFrom(from.retries()); } - if (from.has_resource_metadata()) { - mutable_resource_metadata()->::flyteidl::core::ResourceMetadata::MergeFrom(from.resource_metadata()); - } if (from.discoverable() != 0) { set_discoverable(from.discoverable()); } @@ -3938,7 +3013,6 @@ void TaskMetadata::InternalSwap(TaskMetadata* other) { swap(runtime_, other->runtime_); swap(timeout_, other->timeout_); swap(retries_, other->retries_); - swap(resource_metadata_, other->resource_metadata_); swap(discoverable_, other->discoverable_); swap(cache_serializable_, other->cache_serializable_); swap(generates_deck_, other->generates_deck_); @@ -3962,7 +3036,7 @@ void TaskTemplate_ConfigEntry_DoNotUse::MergeFrom(const TaskTemplate_ConfigEntry } ::google::protobuf::Metadata TaskTemplate_ConfigEntry_DoNotUse::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); - return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[7]; + return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[5]; } void TaskTemplate_ConfigEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -7463,7 +6537,7 @@ void K8sObjectMetadata_LabelsEntry_DoNotUse::MergeFrom(const K8sObjectMetadata_L } ::google::protobuf::Metadata K8sObjectMetadata_LabelsEntry_DoNotUse::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); - return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[14]; + return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[12]; } void K8sObjectMetadata_LabelsEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -7504,7 +6578,7 @@ void K8sObjectMetadata_AnnotationsEntry_DoNotUse::MergeFrom(const K8sObjectMetad } ::google::protobuf::Metadata K8sObjectMetadata_AnnotationsEntry_DoNotUse::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto); - return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[15]; + return ::file_level_metadata_flyteidl_2fcore_2ftasks_2eproto[13]; } void K8sObjectMetadata_AnnotationsEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -8438,12 +7512,6 @@ template<> PROTOBUF_NOINLINE ::flyteidl::core::Resources* Arena::CreateMaybeMess template<> PROTOBUF_NOINLINE ::flyteidl::core::RuntimeMetadata* Arena::CreateMaybeMessage< ::flyteidl::core::RuntimeMetadata >(Arena* arena) { return Arena::CreateInternal< ::flyteidl::core::RuntimeMetadata >(arena); } -template<> PROTOBUF_NOINLINE ::flyteidl::core::GPUAccelerator* Arena::CreateMaybeMessage< ::flyteidl::core::GPUAccelerator >(Arena* arena) { - return Arena::CreateInternal< ::flyteidl::core::GPUAccelerator >(arena); -} -template<> PROTOBUF_NOINLINE ::flyteidl::core::ResourceMetadata* Arena::CreateMaybeMessage< ::flyteidl::core::ResourceMetadata >(Arena* arena) { - return Arena::CreateInternal< ::flyteidl::core::ResourceMetadata >(arena); -} template<> PROTOBUF_NOINLINE ::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse* Arena::CreateMaybeMessage< ::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse >(Arena* arena) { return Arena::CreateInternal< ::flyteidl::core::TaskMetadata_TagsEntry_DoNotUse >(arena); } diff --git a/gen/pb-cpp/flyteidl/core/tasks.pb.h b/gen/pb-cpp/flyteidl/core/tasks.pb.h index 66c0f77a8..430d86712 100644 --- a/gen/pb-cpp/flyteidl/core/tasks.pb.h +++ b/gen/pb-cpp/flyteidl/core/tasks.pb.h @@ -51,7 +51,7 @@ struct TableStruct_flyteidl_2fcore_2ftasks_2eproto { PROTOBUF_SECTION_VARIABLE(protodesc_cold); static const ::google::protobuf::internal::AuxillaryParseTableField aux[] PROTOBUF_SECTION_VARIABLE(protodesc_cold); - static const ::google::protobuf::internal::ParseTable schema[18] + static const ::google::protobuf::internal::ParseTable schema[16] PROTOBUF_SECTION_VARIABLE(protodesc_cold); static const ::google::protobuf::internal::FieldMetadata field_metadata[]; static const ::google::protobuf::internal::SerializationTable serialization_table[]; @@ -69,9 +69,6 @@ extern ContainerPortDefaultTypeInternal _ContainerPort_default_instance_; class DataLoadingConfig; class DataLoadingConfigDefaultTypeInternal; extern DataLoadingConfigDefaultTypeInternal _DataLoadingConfig_default_instance_; -class GPUAccelerator; -class GPUAcceleratorDefaultTypeInternal; -extern GPUAcceleratorDefaultTypeInternal _GPUAccelerator_default_instance_; class IOStrategy; class IOStrategyDefaultTypeInternal; extern IOStrategyDefaultTypeInternal _IOStrategy_default_instance_; @@ -87,9 +84,6 @@ extern K8sObjectMetadata_LabelsEntry_DoNotUseDefaultTypeInternal _K8sObjectMetad class K8sPod; class K8sPodDefaultTypeInternal; extern K8sPodDefaultTypeInternal _K8sPod_default_instance_; -class ResourceMetadata; -class ResourceMetadataDefaultTypeInternal; -extern ResourceMetadataDefaultTypeInternal _ResourceMetadata_default_instance_; class Resources; class ResourcesDefaultTypeInternal; extern ResourcesDefaultTypeInternal _Resources_default_instance_; @@ -121,13 +115,11 @@ namespace protobuf { template<> ::flyteidl::core::Container* Arena::CreateMaybeMessage<::flyteidl::core::Container>(Arena*); template<> ::flyteidl::core::ContainerPort* Arena::CreateMaybeMessage<::flyteidl::core::ContainerPort>(Arena*); template<> ::flyteidl::core::DataLoadingConfig* Arena::CreateMaybeMessage<::flyteidl::core::DataLoadingConfig>(Arena*); -template<> ::flyteidl::core::GPUAccelerator* Arena::CreateMaybeMessage<::flyteidl::core::GPUAccelerator>(Arena*); template<> ::flyteidl::core::IOStrategy* Arena::CreateMaybeMessage<::flyteidl::core::IOStrategy>(Arena*); template<> ::flyteidl::core::K8sObjectMetadata* Arena::CreateMaybeMessage<::flyteidl::core::K8sObjectMetadata>(Arena*); template<> ::flyteidl::core::K8sObjectMetadata_AnnotationsEntry_DoNotUse* Arena::CreateMaybeMessage<::flyteidl::core::K8sObjectMetadata_AnnotationsEntry_DoNotUse>(Arena*); template<> ::flyteidl::core::K8sObjectMetadata_LabelsEntry_DoNotUse* Arena::CreateMaybeMessage<::flyteidl::core::K8sObjectMetadata_LabelsEntry_DoNotUse>(Arena*); template<> ::flyteidl::core::K8sPod* Arena::CreateMaybeMessage<::flyteidl::core::K8sPod>(Arena*); -template<> ::flyteidl::core::ResourceMetadata* Arena::CreateMaybeMessage<::flyteidl::core::ResourceMetadata>(Arena*); template<> ::flyteidl::core::Resources* Arena::CreateMaybeMessage<::flyteidl::core::Resources>(Arena*); template<> ::flyteidl::core::Resources_ResourceEntry* Arena::CreateMaybeMessage<::flyteidl::core::Resources_ResourceEntry>(Arena*); template<> ::flyteidl::core::RuntimeMetadata* Arena::CreateMaybeMessage<::flyteidl::core::RuntimeMetadata>(Arena*); @@ -764,303 +756,6 @@ class RuntimeMetadata final : }; // ------------------------------------------------------------------- -class GPUAccelerator final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.core.GPUAccelerator) */ { - public: - GPUAccelerator(); - virtual ~GPUAccelerator(); - - GPUAccelerator(const GPUAccelerator& from); - - inline GPUAccelerator& operator=(const GPUAccelerator& from) { - CopyFrom(from); - return *this; - } - #if LANG_CXX11 - GPUAccelerator(GPUAccelerator&& from) noexcept - : GPUAccelerator() { - *this = ::std::move(from); - } - - inline GPUAccelerator& operator=(GPUAccelerator&& from) noexcept { - if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { - if (this != &from) InternalSwap(&from); - } else { - CopyFrom(from); - } - return *this; - } - #endif - static const ::google::protobuf::Descriptor* descriptor() { - return default_instance().GetDescriptor(); - } - static const GPUAccelerator& default_instance(); - - enum PartitionSizeValueCase { - kUnpartitioned = 2, - kPartitionSize = 3, - PARTITION_SIZE_VALUE_NOT_SET = 0, - }; - - static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY - static inline const GPUAccelerator* internal_default_instance() { - return reinterpret_cast( - &_GPUAccelerator_default_instance_); - } - static constexpr int kIndexInFileMessages = - 3; - - void Swap(GPUAccelerator* other); - friend void swap(GPUAccelerator& a, GPUAccelerator& b) { - a.Swap(&b); - } - - // implements Message ---------------------------------------------- - - inline GPUAccelerator* New() const final { - return CreateMaybeMessage(nullptr); - } - - GPUAccelerator* New(::google::protobuf::Arena* arena) const final { - return CreateMaybeMessage(arena); - } - void CopyFrom(const ::google::protobuf::Message& from) final; - void MergeFrom(const ::google::protobuf::Message& from) final; - void CopyFrom(const GPUAccelerator& from); - void MergeFrom(const GPUAccelerator& from); - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; - - size_t ByteSizeLong() const final; - #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER - static const char* _InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx); - ::google::protobuf::internal::ParseFunc _ParseFunc() const final { return _InternalParse; } - #else - bool MergePartialFromCodedStream( - ::google::protobuf::io::CodedInputStream* input) final; - #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER - void SerializeWithCachedSizes( - ::google::protobuf::io::CodedOutputStream* output) const final; - ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( - ::google::protobuf::uint8* target) const final; - int GetCachedSize() const final { return _cached_size_.Get(); } - - private: - void SharedCtor(); - void SharedDtor(); - void SetCachedSize(int size) const final; - void InternalSwap(GPUAccelerator* other); - private: - inline ::google::protobuf::Arena* GetArenaNoVirtual() const { - return nullptr; - } - inline void* MaybeArenaPtr() const { - return nullptr; - } - public: - - ::google::protobuf::Metadata GetMetadata() const final; - - // nested types ---------------------------------------------------- - - // accessors ------------------------------------------------------- - - // string device = 1; - void clear_device(); - static const int kDeviceFieldNumber = 1; - const ::std::string& device() const; - void set_device(const ::std::string& value); - #if LANG_CXX11 - void set_device(::std::string&& value); - #endif - void set_device(const char* value); - void set_device(const char* value, size_t size); - ::std::string* mutable_device(); - ::std::string* release_device(); - void set_allocated_device(::std::string* device); - - // bool unpartitioned = 2; - private: - bool has_unpartitioned() const; - public: - void clear_unpartitioned(); - static const int kUnpartitionedFieldNumber = 2; - bool unpartitioned() const; - void set_unpartitioned(bool value); - - // string partition_size = 3; - private: - bool has_partition_size() const; - public: - void clear_partition_size(); - static const int kPartitionSizeFieldNumber = 3; - const ::std::string& partition_size() const; - void set_partition_size(const ::std::string& value); - #if LANG_CXX11 - void set_partition_size(::std::string&& value); - #endif - void set_partition_size(const char* value); - void set_partition_size(const char* value, size_t size); - ::std::string* mutable_partition_size(); - ::std::string* release_partition_size(); - void set_allocated_partition_size(::std::string* partition_size); - - void clear_partition_size_value(); - PartitionSizeValueCase partition_size_value_case() const; - // @@protoc_insertion_point(class_scope:flyteidl.core.GPUAccelerator) - private: - class HasBitSetters; - void set_has_unpartitioned(); - void set_has_partition_size(); - - inline bool has_partition_size_value() const; - inline void clear_has_partition_size_value(); - - ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; - ::google::protobuf::internal::ArenaStringPtr device_; - union PartitionSizeValueUnion { - PartitionSizeValueUnion() {} - bool unpartitioned_; - ::google::protobuf::internal::ArenaStringPtr partition_size_; - } partition_size_value_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::uint32 _oneof_case_[1]; - - friend struct ::TableStruct_flyteidl_2fcore_2ftasks_2eproto; -}; -// ------------------------------------------------------------------- - -class ResourceMetadata final : - public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.core.ResourceMetadata) */ { - public: - ResourceMetadata(); - virtual ~ResourceMetadata(); - - ResourceMetadata(const ResourceMetadata& from); - - inline ResourceMetadata& operator=(const ResourceMetadata& from) { - CopyFrom(from); - return *this; - } - #if LANG_CXX11 - ResourceMetadata(ResourceMetadata&& from) noexcept - : ResourceMetadata() { - *this = ::std::move(from); - } - - inline ResourceMetadata& operator=(ResourceMetadata&& from) noexcept { - if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { - if (this != &from) InternalSwap(&from); - } else { - CopyFrom(from); - } - return *this; - } - #endif - static const ::google::protobuf::Descriptor* descriptor() { - return default_instance().GetDescriptor(); - } - static const ResourceMetadata& default_instance(); - - enum AcceleratorValueCase { - kGpuAccelerator = 1, - ACCELERATOR_VALUE_NOT_SET = 0, - }; - - static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY - static inline const ResourceMetadata* internal_default_instance() { - return reinterpret_cast( - &_ResourceMetadata_default_instance_); - } - static constexpr int kIndexInFileMessages = - 4; - - void Swap(ResourceMetadata* other); - friend void swap(ResourceMetadata& a, ResourceMetadata& b) { - a.Swap(&b); - } - - // implements Message ---------------------------------------------- - - inline ResourceMetadata* New() const final { - return CreateMaybeMessage(nullptr); - } - - ResourceMetadata* New(::google::protobuf::Arena* arena) const final { - return CreateMaybeMessage(arena); - } - void CopyFrom(const ::google::protobuf::Message& from) final; - void MergeFrom(const ::google::protobuf::Message& from) final; - void CopyFrom(const ResourceMetadata& from); - void MergeFrom(const ResourceMetadata& from); - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; - - size_t ByteSizeLong() const final; - #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER - static const char* _InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx); - ::google::protobuf::internal::ParseFunc _ParseFunc() const final { return _InternalParse; } - #else - bool MergePartialFromCodedStream( - ::google::protobuf::io::CodedInputStream* input) final; - #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER - void SerializeWithCachedSizes( - ::google::protobuf::io::CodedOutputStream* output) const final; - ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( - ::google::protobuf::uint8* target) const final; - int GetCachedSize() const final { return _cached_size_.Get(); } - - private: - void SharedCtor(); - void SharedDtor(); - void SetCachedSize(int size) const final; - void InternalSwap(ResourceMetadata* other); - private: - inline ::google::protobuf::Arena* GetArenaNoVirtual() const { - return nullptr; - } - inline void* MaybeArenaPtr() const { - return nullptr; - } - public: - - ::google::protobuf::Metadata GetMetadata() const final; - - // nested types ---------------------------------------------------- - - // accessors ------------------------------------------------------- - - // .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - bool has_gpu_accelerator() const; - void clear_gpu_accelerator(); - static const int kGpuAcceleratorFieldNumber = 1; - const ::flyteidl::core::GPUAccelerator& gpu_accelerator() const; - ::flyteidl::core::GPUAccelerator* release_gpu_accelerator(); - ::flyteidl::core::GPUAccelerator* mutable_gpu_accelerator(); - void set_allocated_gpu_accelerator(::flyteidl::core::GPUAccelerator* gpu_accelerator); - - void clear_accelerator_value(); - AcceleratorValueCase accelerator_value_case() const; - // @@protoc_insertion_point(class_scope:flyteidl.core.ResourceMetadata) - private: - class HasBitSetters; - void set_has_gpu_accelerator(); - - inline bool has_accelerator_value() const; - inline void clear_has_accelerator_value(); - - ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; - union AcceleratorValueUnion { - AcceleratorValueUnion() {} - ::flyteidl::core::GPUAccelerator* gpu_accelerator_; - } accelerator_value_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::uint32 _oneof_case_[1]; - - friend struct ::TableStruct_flyteidl_2fcore_2ftasks_2eproto; -}; -// ------------------------------------------------------------------- - class TaskMetadata_TagsEntry_DoNotUse : public ::google::protobuf::internal::MapEntry(value), size)); - // @@protoc_insertion_point(field_set_pointer:flyteidl.core.GPUAccelerator.device) -} -inline ::std::string* GPUAccelerator::mutable_device() { - - // @@protoc_insertion_point(field_mutable:flyteidl.core.GPUAccelerator.device) - return device_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline ::std::string* GPUAccelerator::release_device() { - // @@protoc_insertion_point(field_release:flyteidl.core.GPUAccelerator.device) - - return device_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline void GPUAccelerator::set_allocated_device(::std::string* device) { - if (device != nullptr) { - - } else { - - } - device_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), device); - // @@protoc_insertion_point(field_set_allocated:flyteidl.core.GPUAccelerator.device) -} - -// bool unpartitioned = 2; -inline bool GPUAccelerator::has_unpartitioned() const { - return partition_size_value_case() == kUnpartitioned; -} -inline void GPUAccelerator::set_has_unpartitioned() { - _oneof_case_[0] = kUnpartitioned; -} -inline void GPUAccelerator::clear_unpartitioned() { - if (has_unpartitioned()) { - partition_size_value_.unpartitioned_ = false; - clear_has_partition_size_value(); - } -} -inline bool GPUAccelerator::unpartitioned() const { - // @@protoc_insertion_point(field_get:flyteidl.core.GPUAccelerator.unpartitioned) - if (has_unpartitioned()) { - return partition_size_value_.unpartitioned_; - } - return false; -} -inline void GPUAccelerator::set_unpartitioned(bool value) { - if (!has_unpartitioned()) { - clear_partition_size_value(); - set_has_unpartitioned(); - } - partition_size_value_.unpartitioned_ = value; - // @@protoc_insertion_point(field_set:flyteidl.core.GPUAccelerator.unpartitioned) -} - -// string partition_size = 3; -inline bool GPUAccelerator::has_partition_size() const { - return partition_size_value_case() == kPartitionSize; -} -inline void GPUAccelerator::set_has_partition_size() { - _oneof_case_[0] = kPartitionSize; -} -inline void GPUAccelerator::clear_partition_size() { - if (has_partition_size()) { - partition_size_value_.partition_size_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - clear_has_partition_size_value(); - } -} -inline const ::std::string& GPUAccelerator::partition_size() const { - // @@protoc_insertion_point(field_get:flyteidl.core.GPUAccelerator.partition_size) - if (has_partition_size()) { - return partition_size_value_.partition_size_.GetNoArena(); - } - return *&::google::protobuf::internal::GetEmptyStringAlreadyInited(); -} -inline void GPUAccelerator::set_partition_size(const ::std::string& value) { - // @@protoc_insertion_point(field_set:flyteidl.core.GPUAccelerator.partition_size) - if (!has_partition_size()) { - clear_partition_size_value(); - set_has_partition_size(); - partition_size_value_.partition_size_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - } - partition_size_value_.partition_size_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:flyteidl.core.GPUAccelerator.partition_size) -} -#if LANG_CXX11 -inline void GPUAccelerator::set_partition_size(::std::string&& value) { - // @@protoc_insertion_point(field_set:flyteidl.core.GPUAccelerator.partition_size) - if (!has_partition_size()) { - clear_partition_size_value(); - set_has_partition_size(); - partition_size_value_.partition_size_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - } - partition_size_value_.partition_size_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:flyteidl.core.GPUAccelerator.partition_size) -} -#endif -inline void GPUAccelerator::set_partition_size(const char* value) { - GOOGLE_DCHECK(value != nullptr); - if (!has_partition_size()) { - clear_partition_size_value(); - set_has_partition_size(); - partition_size_value_.partition_size_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - } - partition_size_value_.partition_size_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), - ::std::string(value)); - // @@protoc_insertion_point(field_set_char:flyteidl.core.GPUAccelerator.partition_size) -} -inline void GPUAccelerator::set_partition_size(const char* value, size_t size) { - if (!has_partition_size()) { - clear_partition_size_value(); - set_has_partition_size(); - partition_size_value_.partition_size_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - } - partition_size_value_.partition_size_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string( - reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:flyteidl.core.GPUAccelerator.partition_size) -} -inline ::std::string* GPUAccelerator::mutable_partition_size() { - if (!has_partition_size()) { - clear_partition_size_value(); - set_has_partition_size(); - partition_size_value_.partition_size_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - } - // @@protoc_insertion_point(field_mutable:flyteidl.core.GPUAccelerator.partition_size) - return partition_size_value_.partition_size_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline ::std::string* GPUAccelerator::release_partition_size() { - // @@protoc_insertion_point(field_release:flyteidl.core.GPUAccelerator.partition_size) - if (has_partition_size()) { - clear_has_partition_size_value(); - return partition_size_value_.partition_size_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - } else { - return nullptr; - } -} -inline void GPUAccelerator::set_allocated_partition_size(::std::string* partition_size) { - if (has_partition_size_value()) { - clear_partition_size_value(); - } - if (partition_size != nullptr) { - set_has_partition_size(); - partition_size_value_.partition_size_.UnsafeSetDefault(partition_size); - } - // @@protoc_insertion_point(field_set_allocated:flyteidl.core.GPUAccelerator.partition_size) -} - -inline bool GPUAccelerator::has_partition_size_value() const { - return partition_size_value_case() != PARTITION_SIZE_VALUE_NOT_SET; -} -inline void GPUAccelerator::clear_has_partition_size_value() { - _oneof_case_[0] = PARTITION_SIZE_VALUE_NOT_SET; -} -inline GPUAccelerator::PartitionSizeValueCase GPUAccelerator::partition_size_value_case() const { - return GPUAccelerator::PartitionSizeValueCase(_oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// ResourceMetadata - -// .flyteidl.core.GPUAccelerator gpu_accelerator = 1; -inline bool ResourceMetadata::has_gpu_accelerator() const { - return accelerator_value_case() == kGpuAccelerator; -} -inline void ResourceMetadata::set_has_gpu_accelerator() { - _oneof_case_[0] = kGpuAccelerator; -} -inline void ResourceMetadata::clear_gpu_accelerator() { - if (has_gpu_accelerator()) { - delete accelerator_value_.gpu_accelerator_; - clear_has_accelerator_value(); - } -} -inline ::flyteidl::core::GPUAccelerator* ResourceMetadata::release_gpu_accelerator() { - // @@protoc_insertion_point(field_release:flyteidl.core.ResourceMetadata.gpu_accelerator) - if (has_gpu_accelerator()) { - clear_has_accelerator_value(); - ::flyteidl::core::GPUAccelerator* temp = accelerator_value_.gpu_accelerator_; - accelerator_value_.gpu_accelerator_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::flyteidl::core::GPUAccelerator& ResourceMetadata::gpu_accelerator() const { - // @@protoc_insertion_point(field_get:flyteidl.core.ResourceMetadata.gpu_accelerator) - return has_gpu_accelerator() - ? *accelerator_value_.gpu_accelerator_ - : *reinterpret_cast< ::flyteidl::core::GPUAccelerator*>(&::flyteidl::core::_GPUAccelerator_default_instance_); -} -inline ::flyteidl::core::GPUAccelerator* ResourceMetadata::mutable_gpu_accelerator() { - if (!has_gpu_accelerator()) { - clear_accelerator_value(); - set_has_gpu_accelerator(); - accelerator_value_.gpu_accelerator_ = CreateMaybeMessage< ::flyteidl::core::GPUAccelerator >( - GetArenaNoVirtual()); - } - // @@protoc_insertion_point(field_mutable:flyteidl.core.ResourceMetadata.gpu_accelerator) - return accelerator_value_.gpu_accelerator_; -} - -inline bool ResourceMetadata::has_accelerator_value() const { - return accelerator_value_case() != ACCELERATOR_VALUE_NOT_SET; -} -inline void ResourceMetadata::clear_has_accelerator_value() { - _oneof_case_[0] = ACCELERATOR_VALUE_NOT_SET; -} -inline ResourceMetadata::AcceleratorValueCase ResourceMetadata::accelerator_value_case() const { - return ResourceMetadata::AcceleratorValueCase(_oneof_case_[0]); -} -// ------------------------------------------------------------------- - // ------------------------------------------------------------------- // TaskMetadata @@ -3720,57 +3164,6 @@ inline void TaskMetadata::set_allocated_pod_template_name(::std::string* pod_tem // @@protoc_insertion_point(field_set_allocated:flyteidl.core.TaskMetadata.pod_template_name) } -// .flyteidl.core.ResourceMetadata resource_metadata = 13; -inline bool TaskMetadata::has_resource_metadata() const { - return this != internal_default_instance() && resource_metadata_ != nullptr; -} -inline void TaskMetadata::clear_resource_metadata() { - if (GetArenaNoVirtual() == nullptr && resource_metadata_ != nullptr) { - delete resource_metadata_; - } - resource_metadata_ = nullptr; -} -inline const ::flyteidl::core::ResourceMetadata& TaskMetadata::resource_metadata() const { - const ::flyteidl::core::ResourceMetadata* p = resource_metadata_; - // @@protoc_insertion_point(field_get:flyteidl.core.TaskMetadata.resource_metadata) - return p != nullptr ? *p : *reinterpret_cast( - &::flyteidl::core::_ResourceMetadata_default_instance_); -} -inline ::flyteidl::core::ResourceMetadata* TaskMetadata::release_resource_metadata() { - // @@protoc_insertion_point(field_release:flyteidl.core.TaskMetadata.resource_metadata) - - ::flyteidl::core::ResourceMetadata* temp = resource_metadata_; - resource_metadata_ = nullptr; - return temp; -} -inline ::flyteidl::core::ResourceMetadata* TaskMetadata::mutable_resource_metadata() { - - if (resource_metadata_ == nullptr) { - auto* p = CreateMaybeMessage<::flyteidl::core::ResourceMetadata>(GetArenaNoVirtual()); - resource_metadata_ = p; - } - // @@protoc_insertion_point(field_mutable:flyteidl.core.TaskMetadata.resource_metadata) - return resource_metadata_; -} -inline void TaskMetadata::set_allocated_resource_metadata(::flyteidl::core::ResourceMetadata* resource_metadata) { - ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); - if (message_arena == nullptr) { - delete resource_metadata_; - } - if (resource_metadata) { - ::google::protobuf::Arena* submessage_arena = nullptr; - if (message_arena != submessage_arena) { - resource_metadata = ::google::protobuf::internal::GetOwnedMessage( - message_arena, resource_metadata, submessage_arena); - } - - } else { - - } - resource_metadata_ = resource_metadata; - // @@protoc_insertion_point(field_set_allocated:flyteidl.core.TaskMetadata.resource_metadata) -} - inline bool TaskMetadata::has_interruptible_value() const { return interruptible_value_case() != INTERRUPTIBLE_VALUE_NOT_SET; } @@ -5169,10 +4562,6 @@ inline void Sql::set_dialect(::flyteidl::core::Sql_Dialect value) { // ------------------------------------------------------------------- -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - // @@protoc_insertion_point(namespace_scope) diff --git a/gen/pb-cpp/flyteidl/core/workflow.pb.cc b/gen/pb-cpp/flyteidl/core/workflow.pb.cc index c806777e5..3d24211ea 100644 --- a/gen/pb-cpp/flyteidl/core/workflow.pb.cc +++ b/gen/pb-cpp/flyteidl/core/workflow.pb.cc @@ -22,7 +22,6 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fidentifier_2eproto ::google::p extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2finterface_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_TypedInterface_flyteidl_2fcore_2finterface_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_RetryStrategy_flyteidl_2fcore_2fliterals_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_Binding_flyteidl_2fcore_2fliterals_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftasks_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_Resources_flyteidl_2fcore_2ftasks_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Error_flyteidl_2fcore_2ftypes_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<6> scc_info_LiteralType_flyteidl_2fcore_2ftypes_2eproto; @@ -32,9 +31,9 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::pro extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_WorkflowMetadata_TagsEntry_DoNotUse_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_SignalCondition_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_SleepCondition_flyteidl_2fcore_2fworkflow_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_TaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_WorkflowNode_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_NodeMetadata_flyteidl_2fcore_2fworkflow_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_TaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_TaskNode_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_WorkflowMetadata_flyteidl_2fcore_2fworkflow_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fworkflow_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_GateNode_flyteidl_2fcore_2fworkflow_2eproto; @@ -374,10 +373,9 @@ static void InitDefaultsTaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto() { ::flyteidl::core::TaskNodeOverrides::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<2> scc_info_TaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsTaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto}, { - &scc_info_Resources_flyteidl_2fcore_2ftasks_2eproto.base, - &scc_info_ResourceMetadata_flyteidl_2fcore_2ftasks_2eproto.base,}}; +::google::protobuf::internal::SCCInfo<1> scc_info_TaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsTaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto}, { + &scc_info_Resources_flyteidl_2fcore_2ftasks_2eproto.base,}}; void InitDefaults_flyteidl_2fcore_2fworkflow_2eproto() { ::google::protobuf::internal::InitSCC(&scc_info_TaskNode_flyteidl_2fcore_2fworkflow_2eproto.base); @@ -553,7 +551,6 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fcore_2fworkflow_2eproto: ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskNodeOverrides, resources_), - PROTOBUF_FIELD_OFFSET(::flyteidl::core::TaskNodeOverrides, resource_metadata_), }; static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { { 0, -1, sizeof(::flyteidl::core::IfBlock)}, @@ -675,16 +672,15 @@ const char descriptor_table_protodef_flyteidl_2fcore_2fworkflow_2eproto[] = "re.Binding\022)\n\014failure_node\030\006 \001(\0132\023.flyte" "idl.core.Node\022B\n\021metadata_defaults\030\007 \001(\013" "2\'.flyteidl.core.WorkflowMetadataDefault" - "s\"|\n\021TaskNodeOverrides\022+\n\tresources\030\001 \001(" - "\0132\030.flyteidl.core.Resources\022:\n\021resource_" - "metadata\030\002 \001(\0132\037.flyteidl.core.ResourceM" - "etadataB6Z4github.com/flyteorg/flyteidl/" - "gen/pb-go/flyteidl/coreb\006proto3" + "s\"@\n\021TaskNodeOverrides\022+\n\tresources\030\001 \001(" + "\0132\030.flyteidl.core.ResourcesB6Z4github.co" + "m/flyteorg/flyteidl/gen/pb-go/flyteidl/c" + "oreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2fworkflow_2eproto = { false, InitDefaults_flyteidl_2fcore_2fworkflow_2eproto, descriptor_table_protodef_flyteidl_2fcore_2fworkflow_2eproto, - "flyteidl/core/workflow.proto", &assign_descriptors_table_flyteidl_2fcore_2fworkflow_2eproto, 3031, + "flyteidl/core/workflow.proto", &assign_descriptors_table_flyteidl_2fcore_2fworkflow_2eproto, 2971, }; void AddDescriptors_flyteidl_2fcore_2fworkflow_2eproto() { @@ -8110,38 +8106,24 @@ ::google::protobuf::Metadata WorkflowTemplate::GetMetadata() const { void TaskNodeOverrides::InitAsDefaultInstance() { ::flyteidl::core::_TaskNodeOverrides_default_instance_._instance.get_mutable()->resources_ = const_cast< ::flyteidl::core::Resources*>( ::flyteidl::core::Resources::internal_default_instance()); - ::flyteidl::core::_TaskNodeOverrides_default_instance_._instance.get_mutable()->resource_metadata_ = const_cast< ::flyteidl::core::ResourceMetadata*>( - ::flyteidl::core::ResourceMetadata::internal_default_instance()); } class TaskNodeOverrides::HasBitSetters { public: static const ::flyteidl::core::Resources& resources(const TaskNodeOverrides* msg); - static const ::flyteidl::core::ResourceMetadata& resource_metadata(const TaskNodeOverrides* msg); }; const ::flyteidl::core::Resources& TaskNodeOverrides::HasBitSetters::resources(const TaskNodeOverrides* msg) { return *msg->resources_; } -const ::flyteidl::core::ResourceMetadata& -TaskNodeOverrides::HasBitSetters::resource_metadata(const TaskNodeOverrides* msg) { - return *msg->resource_metadata_; -} void TaskNodeOverrides::clear_resources() { if (GetArenaNoVirtual() == nullptr && resources_ != nullptr) { delete resources_; } resources_ = nullptr; } -void TaskNodeOverrides::clear_resource_metadata() { - if (GetArenaNoVirtual() == nullptr && resource_metadata_ != nullptr) { - delete resource_metadata_; - } - resource_metadata_ = nullptr; -} #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int TaskNodeOverrides::kResourcesFieldNumber; -const int TaskNodeOverrides::kResourceMetadataFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 TaskNodeOverrides::TaskNodeOverrides() @@ -8158,20 +8140,13 @@ TaskNodeOverrides::TaskNodeOverrides(const TaskNodeOverrides& from) } else { resources_ = nullptr; } - if (from.has_resource_metadata()) { - resource_metadata_ = new ::flyteidl::core::ResourceMetadata(*from.resource_metadata_); - } else { - resource_metadata_ = nullptr; - } // @@protoc_insertion_point(copy_constructor:flyteidl.core.TaskNodeOverrides) } void TaskNodeOverrides::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_TaskNodeOverrides_flyteidl_2fcore_2fworkflow_2eproto.base); - ::memset(&resources_, 0, static_cast( - reinterpret_cast(&resource_metadata_) - - reinterpret_cast(&resources_)) + sizeof(resource_metadata_)); + resources_ = nullptr; } TaskNodeOverrides::~TaskNodeOverrides() { @@ -8181,7 +8156,6 @@ TaskNodeOverrides::~TaskNodeOverrides() { void TaskNodeOverrides::SharedDtor() { if (this != internal_default_instance()) delete resources_; - if (this != internal_default_instance()) delete resource_metadata_; } void TaskNodeOverrides::SetCachedSize(int size) const { @@ -8203,10 +8177,6 @@ void TaskNodeOverrides::Clear() { delete resources_; } resources_ = nullptr; - if (GetArenaNoVirtual() == nullptr && resource_metadata_ != nullptr) { - delete resource_metadata_; - } - resource_metadata_ = nullptr; _internal_metadata_.Clear(); } @@ -8236,19 +8206,6 @@ const char* TaskNodeOverrides::_InternalParse(const char* begin, const char* end {parser_till_end, object}, ptr - size, ptr)); break; } - // .flyteidl.core.ResourceMetadata resource_metadata = 2; - case 2: { - if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; - ptr = ::google::protobuf::io::ReadSize(ptr, &size); - GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); - parser_till_end = ::flyteidl::core::ResourceMetadata::_InternalParse; - object = msg->mutable_resource_metadata(); - if (size > end - ptr) goto len_delim_till_end; - ptr += size; - GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( - {parser_till_end, object}, ptr - size, ptr)); - break; - } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -8290,17 +8247,6 @@ bool TaskNodeOverrides::MergePartialFromCodedStream( break; } - // .flyteidl.core.ResourceMetadata resource_metadata = 2; - case 2: { - if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( - input, mutable_resource_metadata())); - } else { - goto handle_unusual; - } - break; - } - default: { handle_unusual: if (tag == 0) { @@ -8334,12 +8280,6 @@ void TaskNodeOverrides::SerializeWithCachedSizes( 1, HasBitSetters::resources(this), output); } - // .flyteidl.core.ResourceMetadata resource_metadata = 2; - if (this->has_resource_metadata()) { - ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( - 2, HasBitSetters::resource_metadata(this), output); - } - if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -8360,13 +8300,6 @@ ::google::protobuf::uint8* TaskNodeOverrides::InternalSerializeWithCachedSizesTo 1, HasBitSetters::resources(this), target); } - // .flyteidl.core.ResourceMetadata resource_metadata = 2; - if (this->has_resource_metadata()) { - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessageToArray( - 2, HasBitSetters::resource_metadata(this), target); - } - if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -8395,13 +8328,6 @@ size_t TaskNodeOverrides::ByteSizeLong() const { *resources_); } - // .flyteidl.core.ResourceMetadata resource_metadata = 2; - if (this->has_resource_metadata()) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::MessageSize( - *resource_metadata_); - } - int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; @@ -8432,9 +8358,6 @@ void TaskNodeOverrides::MergeFrom(const TaskNodeOverrides& from) { if (from.has_resources()) { mutable_resources()->::flyteidl::core::Resources::MergeFrom(from.resources()); } - if (from.has_resource_metadata()) { - mutable_resource_metadata()->::flyteidl::core::ResourceMetadata::MergeFrom(from.resource_metadata()); - } } void TaskNodeOverrides::CopyFrom(const ::google::protobuf::Message& from) { @@ -8463,7 +8386,6 @@ void TaskNodeOverrides::InternalSwap(TaskNodeOverrides* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(resources_, other->resources_); - swap(resource_metadata_, other->resource_metadata_); } ::google::protobuf::Metadata TaskNodeOverrides::GetMetadata() const { diff --git a/gen/pb-cpp/flyteidl/core/workflow.pb.h b/gen/pb-cpp/flyteidl/core/workflow.pb.h index fc3c75f97..9ee5eb92c 100644 --- a/gen/pb-cpp/flyteidl/core/workflow.pb.h +++ b/gen/pb-cpp/flyteidl/core/workflow.pb.h @@ -2691,22 +2691,12 @@ class TaskNodeOverrides final : ::flyteidl::core::Resources* mutable_resources(); void set_allocated_resources(::flyteidl::core::Resources* resources); - // .flyteidl.core.ResourceMetadata resource_metadata = 2; - bool has_resource_metadata() const; - void clear_resource_metadata(); - static const int kResourceMetadataFieldNumber = 2; - const ::flyteidl::core::ResourceMetadata& resource_metadata() const; - ::flyteidl::core::ResourceMetadata* release_resource_metadata(); - ::flyteidl::core::ResourceMetadata* mutable_resource_metadata(); - void set_allocated_resource_metadata(::flyteidl::core::ResourceMetadata* resource_metadata); - // @@protoc_insertion_point(class_scope:flyteidl.core.TaskNodeOverrides) private: class HasBitSetters; ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::flyteidl::core::Resources* resources_; - ::flyteidl::core::ResourceMetadata* resource_metadata_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::TableStruct_flyteidl_2fcore_2fworkflow_2eproto; }; @@ -4956,51 +4946,6 @@ inline void TaskNodeOverrides::set_allocated_resources(::flyteidl::core::Resourc // @@protoc_insertion_point(field_set_allocated:flyteidl.core.TaskNodeOverrides.resources) } -// .flyteidl.core.ResourceMetadata resource_metadata = 2; -inline bool TaskNodeOverrides::has_resource_metadata() const { - return this != internal_default_instance() && resource_metadata_ != nullptr; -} -inline const ::flyteidl::core::ResourceMetadata& TaskNodeOverrides::resource_metadata() const { - const ::flyteidl::core::ResourceMetadata* p = resource_metadata_; - // @@protoc_insertion_point(field_get:flyteidl.core.TaskNodeOverrides.resource_metadata) - return p != nullptr ? *p : *reinterpret_cast( - &::flyteidl::core::_ResourceMetadata_default_instance_); -} -inline ::flyteidl::core::ResourceMetadata* TaskNodeOverrides::release_resource_metadata() { - // @@protoc_insertion_point(field_release:flyteidl.core.TaskNodeOverrides.resource_metadata) - - ::flyteidl::core::ResourceMetadata* temp = resource_metadata_; - resource_metadata_ = nullptr; - return temp; -} -inline ::flyteidl::core::ResourceMetadata* TaskNodeOverrides::mutable_resource_metadata() { - - if (resource_metadata_ == nullptr) { - auto* p = CreateMaybeMessage<::flyteidl::core::ResourceMetadata>(GetArenaNoVirtual()); - resource_metadata_ = p; - } - // @@protoc_insertion_point(field_mutable:flyteidl.core.TaskNodeOverrides.resource_metadata) - return resource_metadata_; -} -inline void TaskNodeOverrides::set_allocated_resource_metadata(::flyteidl::core::ResourceMetadata* resource_metadata) { - ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); - if (message_arena == nullptr) { - delete reinterpret_cast< ::google::protobuf::MessageLite*>(resource_metadata_); - } - if (resource_metadata) { - ::google::protobuf::Arena* submessage_arena = nullptr; - if (message_arena != submessage_arena) { - resource_metadata = ::google::protobuf::internal::GetOwnedMessage( - message_arena, resource_metadata, submessage_arena); - } - - } else { - - } - resource_metadata_ = resource_metadata; - // @@protoc_insertion_point(field_set_allocated:flyteidl.core.TaskNodeOverrides.resource_metadata) -} - #ifdef __GNUC__ #pragma GCC diagnostic pop #endif // __GNUC__ diff --git a/gen/pb-go/flyteidl/core/tasks.pb.go b/gen/pb-go/flyteidl/core/tasks.pb.go index 0622cf629..157b7f3bf 100644 --- a/gen/pb-go/flyteidl/core/tasks.pb.go +++ b/gen/pb-go/flyteidl/core/tasks.pb.go @@ -118,7 +118,7 @@ func (x Container_Architecture) String() string { } func (Container_Architecture) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{7, 0} + return fileDescriptor_bd8423ba58d6ed80, []int{5, 0} } // Mode to use for downloading @@ -150,7 +150,7 @@ func (x IOStrategy_DownloadMode) String() string { } func (IOStrategy_DownloadMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{8, 0} + return fileDescriptor_bd8423ba58d6ed80, []int{6, 0} } // Mode to use for uploading @@ -182,7 +182,7 @@ func (x IOStrategy_UploadMode) String() string { } func (IOStrategy_UploadMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{8, 1} + return fileDescriptor_bd8423ba58d6ed80, []int{6, 1} } // LiteralMapFormat decides the encoding format in which the input metadata should be made available to the containers. @@ -216,7 +216,7 @@ func (x DataLoadingConfig_LiteralMapFormat) String() string { } func (DataLoadingConfig_LiteralMapFormat) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{9, 0} + return fileDescriptor_bd8423ba58d6ed80, []int{7, 0} } // The dialect of the SQL statement. This is used to validate and parse SQL statements at compilation time to avoid @@ -250,7 +250,7 @@ func (x Sql_Dialect) String() string { } func (Sql_Dialect) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{12, 0} + return fileDescriptor_bd8423ba58d6ed80, []int{10, 0} } // A customizable interface to convey resources requested for a container. This can be interpreted differently for different @@ -416,161 +416,6 @@ func (m *RuntimeMetadata) GetFlavor() string { return "" } -// Metadata associated with the GPU accelerator to allocate to a task -type GPUAccelerator struct { - Device string `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"` - // Types that are valid to be assigned to PartitionSizeValue: - // *GPUAccelerator_Unpartitioned - // *GPUAccelerator_PartitionSize - PartitionSizeValue isGPUAccelerator_PartitionSizeValue `protobuf_oneof:"partition_size_value"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` -} - -func (m *GPUAccelerator) Reset() { *m = GPUAccelerator{} } -func (m *GPUAccelerator) String() string { return proto.CompactTextString(m) } -func (*GPUAccelerator) ProtoMessage() {} -func (*GPUAccelerator) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{2} -} - -func (m *GPUAccelerator) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_GPUAccelerator.Unmarshal(m, b) -} -func (m *GPUAccelerator) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_GPUAccelerator.Marshal(b, m, deterministic) -} -func (m *GPUAccelerator) XXX_Merge(src proto.Message) { - xxx_messageInfo_GPUAccelerator.Merge(m, src) -} -func (m *GPUAccelerator) XXX_Size() int { - return xxx_messageInfo_GPUAccelerator.Size(m) -} -func (m *GPUAccelerator) XXX_DiscardUnknown() { - xxx_messageInfo_GPUAccelerator.DiscardUnknown(m) -} - -var xxx_messageInfo_GPUAccelerator proto.InternalMessageInfo - -func (m *GPUAccelerator) GetDevice() string { - if m != nil { - return m.Device - } - return "" -} - -type isGPUAccelerator_PartitionSizeValue interface { - isGPUAccelerator_PartitionSizeValue() -} - -type GPUAccelerator_Unpartitioned struct { - Unpartitioned bool `protobuf:"varint,2,opt,name=unpartitioned,proto3,oneof"` -} - -type GPUAccelerator_PartitionSize struct { - PartitionSize string `protobuf:"bytes,3,opt,name=partition_size,json=partitionSize,proto3,oneof"` -} - -func (*GPUAccelerator_Unpartitioned) isGPUAccelerator_PartitionSizeValue() {} - -func (*GPUAccelerator_PartitionSize) isGPUAccelerator_PartitionSizeValue() {} - -func (m *GPUAccelerator) GetPartitionSizeValue() isGPUAccelerator_PartitionSizeValue { - if m != nil { - return m.PartitionSizeValue - } - return nil -} - -func (m *GPUAccelerator) GetUnpartitioned() bool { - if x, ok := m.GetPartitionSizeValue().(*GPUAccelerator_Unpartitioned); ok { - return x.Unpartitioned - } - return false -} - -func (m *GPUAccelerator) GetPartitionSize() string { - if x, ok := m.GetPartitionSizeValue().(*GPUAccelerator_PartitionSize); ok { - return x.PartitionSize - } - return "" -} - -// XXX_OneofWrappers is for the internal use of the proto package. -func (*GPUAccelerator) XXX_OneofWrappers() []interface{} { - return []interface{}{ - (*GPUAccelerator_Unpartitioned)(nil), - (*GPUAccelerator_PartitionSize)(nil), - } -} - -// Additional metadata associated with resources to allocate to a task -type ResourceMetadata struct { - // Types that are valid to be assigned to AcceleratorValue: - // *ResourceMetadata_GpuAccelerator - AcceleratorValue isResourceMetadata_AcceleratorValue `protobuf_oneof:"accelerator_value"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` -} - -func (m *ResourceMetadata) Reset() { *m = ResourceMetadata{} } -func (m *ResourceMetadata) String() string { return proto.CompactTextString(m) } -func (*ResourceMetadata) ProtoMessage() {} -func (*ResourceMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{3} -} - -func (m *ResourceMetadata) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_ResourceMetadata.Unmarshal(m, b) -} -func (m *ResourceMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_ResourceMetadata.Marshal(b, m, deterministic) -} -func (m *ResourceMetadata) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResourceMetadata.Merge(m, src) -} -func (m *ResourceMetadata) XXX_Size() int { - return xxx_messageInfo_ResourceMetadata.Size(m) -} -func (m *ResourceMetadata) XXX_DiscardUnknown() { - xxx_messageInfo_ResourceMetadata.DiscardUnknown(m) -} - -var xxx_messageInfo_ResourceMetadata proto.InternalMessageInfo - -type isResourceMetadata_AcceleratorValue interface { - isResourceMetadata_AcceleratorValue() -} - -type ResourceMetadata_GpuAccelerator struct { - GpuAccelerator *GPUAccelerator `protobuf:"bytes,1,opt,name=gpu_accelerator,json=gpuAccelerator,proto3,oneof"` -} - -func (*ResourceMetadata_GpuAccelerator) isResourceMetadata_AcceleratorValue() {} - -func (m *ResourceMetadata) GetAcceleratorValue() isResourceMetadata_AcceleratorValue { - if m != nil { - return m.AcceleratorValue - } - return nil -} - -func (m *ResourceMetadata) GetGpuAccelerator() *GPUAccelerator { - if x, ok := m.GetAcceleratorValue().(*ResourceMetadata_GpuAccelerator); ok { - return x.GpuAccelerator - } - return nil -} - -// XXX_OneofWrappers is for the internal use of the proto package. -func (*ResourceMetadata) XXX_OneofWrappers() []interface{} { - return []interface{}{ - (*ResourceMetadata_GpuAccelerator)(nil), - } -} - // Task Metadata type TaskMetadata struct { // Indicates whether the system should attempt to lookup this task's output to avoid duplication of work. @@ -600,19 +445,17 @@ type TaskMetadata struct { // pod_template_name is the unique name of a PodTemplate k8s resource to be used as the base configuration if this // task creates a k8s Pod. If this value is set, the specified PodTemplate will be used instead of, but applied // identically as, the default PodTemplate configured in FlytePropeller. - PodTemplateName string `protobuf:"bytes,12,opt,name=pod_template_name,json=podTemplateName,proto3" json:"pod_template_name,omitempty"` - // Additional metadata associated with resources to allocate to this task - ResourceMetadata *ResourceMetadata `protobuf:"bytes,13,opt,name=resource_metadata,json=resourceMetadata,proto3" json:"resource_metadata,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + PodTemplateName string `protobuf:"bytes,12,opt,name=pod_template_name,json=podTemplateName,proto3" json:"pod_template_name,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *TaskMetadata) Reset() { *m = TaskMetadata{} } func (m *TaskMetadata) String() string { return proto.CompactTextString(m) } func (*TaskMetadata) ProtoMessage() {} func (*TaskMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{4} + return fileDescriptor_bd8423ba58d6ed80, []int{2} } func (m *TaskMetadata) XXX_Unmarshal(b []byte) error { @@ -727,13 +570,6 @@ func (m *TaskMetadata) GetPodTemplateName() string { return "" } -func (m *TaskMetadata) GetResourceMetadata() *ResourceMetadata { - if m != nil { - return m.ResourceMetadata - } - return nil -} - // XXX_OneofWrappers is for the internal use of the proto package. func (*TaskMetadata) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -783,7 +619,7 @@ func (m *TaskTemplate) Reset() { *m = TaskTemplate{} } func (m *TaskTemplate) String() string { return proto.CompactTextString(m) } func (*TaskTemplate) ProtoMessage() {} func (*TaskTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{5} + return fileDescriptor_bd8423ba58d6ed80, []int{3} } func (m *TaskTemplate) XXX_Unmarshal(b []byte) error { @@ -933,7 +769,7 @@ func (m *ContainerPort) Reset() { *m = ContainerPort{} } func (m *ContainerPort) String() string { return proto.CompactTextString(m) } func (*ContainerPort) ProtoMessage() {} func (*ContainerPort) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{6} + return fileDescriptor_bd8423ba58d6ed80, []int{4} } func (m *ContainerPort) XXX_Unmarshal(b []byte) error { @@ -1000,7 +836,7 @@ func (m *Container) Reset() { *m = Container{} } func (m *Container) String() string { return proto.CompactTextString(m) } func (*Container) ProtoMessage() {} func (*Container) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{7} + return fileDescriptor_bd8423ba58d6ed80, []int{5} } func (m *Container) XXX_Unmarshal(b []byte) error { @@ -1100,7 +936,7 @@ func (m *IOStrategy) Reset() { *m = IOStrategy{} } func (m *IOStrategy) String() string { return proto.CompactTextString(m) } func (*IOStrategy) ProtoMessage() {} func (*IOStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{8} + return fileDescriptor_bd8423ba58d6ed80, []int{6} } func (m *IOStrategy) XXX_Unmarshal(b []byte) error { @@ -1164,7 +1000,7 @@ func (m *DataLoadingConfig) Reset() { *m = DataLoadingConfig{} } func (m *DataLoadingConfig) String() string { return proto.CompactTextString(m) } func (*DataLoadingConfig) ProtoMessage() {} func (*DataLoadingConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{9} + return fileDescriptor_bd8423ba58d6ed80, []int{7} } func (m *DataLoadingConfig) XXX_Unmarshal(b []byte) error { @@ -1246,7 +1082,7 @@ func (m *K8SPod) Reset() { *m = K8SPod{} } func (m *K8SPod) String() string { return proto.CompactTextString(m) } func (*K8SPod) ProtoMessage() {} func (*K8SPod) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{10} + return fileDescriptor_bd8423ba58d6ed80, []int{8} } func (m *K8SPod) XXX_Unmarshal(b []byte) error { @@ -1303,7 +1139,7 @@ func (m *K8SObjectMetadata) Reset() { *m = K8SObjectMetadata{} } func (m *K8SObjectMetadata) String() string { return proto.CompactTextString(m) } func (*K8SObjectMetadata) ProtoMessage() {} func (*K8SObjectMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{11} + return fileDescriptor_bd8423ba58d6ed80, []int{9} } func (m *K8SObjectMetadata) XXX_Unmarshal(b []byte) error { @@ -1360,7 +1196,7 @@ func (m *Sql) Reset() { *m = Sql{} } func (m *Sql) String() string { return proto.CompactTextString(m) } func (*Sql) ProtoMessage() {} func (*Sql) Descriptor() ([]byte, []int) { - return fileDescriptor_bd8423ba58d6ed80, []int{12} + return fileDescriptor_bd8423ba58d6ed80, []int{10} } func (m *Sql) XXX_Unmarshal(b []byte) error { @@ -1406,8 +1242,6 @@ func init() { proto.RegisterType((*Resources)(nil), "flyteidl.core.Resources") proto.RegisterType((*Resources_ResourceEntry)(nil), "flyteidl.core.Resources.ResourceEntry") proto.RegisterType((*RuntimeMetadata)(nil), "flyteidl.core.RuntimeMetadata") - proto.RegisterType((*GPUAccelerator)(nil), "flyteidl.core.GPUAccelerator") - proto.RegisterType((*ResourceMetadata)(nil), "flyteidl.core.ResourceMetadata") proto.RegisterType((*TaskMetadata)(nil), "flyteidl.core.TaskMetadata") proto.RegisterMapType((map[string]string)(nil), "flyteidl.core.TaskMetadata.TagsEntry") proto.RegisterType((*TaskTemplate)(nil), "flyteidl.core.TaskTemplate") @@ -1426,117 +1260,109 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/tasks.proto", fileDescriptor_bd8423ba58d6ed80) } var fileDescriptor_bd8423ba58d6ed80 = []byte{ - // 1787 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x57, 0xdd, 0x72, 0xdb, 0xb8, - 0x15, 0xb6, 0x24, 0x5b, 0xb2, 0x8e, 0x2c, 0x9b, 0x42, 0x36, 0x29, 0xe3, 0x26, 0xd9, 0x8c, 0xa6, - 0x9b, 0xa4, 0xdb, 0x46, 0x6e, 0xbc, 0x19, 0xc7, 0xbb, 0xed, 0xa4, 0x23, 0x47, 0x4a, 0xac, 0x5a, - 0x7f, 0x03, 0xc9, 0xd9, 0xa6, 0x33, 0x1d, 0x16, 0x26, 0x61, 0x9a, 0x35, 0x45, 0xd0, 0x20, 0xe8, - 0x56, 0xb9, 0xef, 0x03, 0xb4, 0x2f, 0xd1, 0xe9, 0x4c, 0x6f, 0x7b, 0xd9, 0xab, 0xbe, 0x40, 0x1f, - 0xa8, 0x17, 0x1d, 0x80, 0x20, 0xf5, 0x63, 0x7b, 0x3d, 0xbe, 0x22, 0x70, 0xce, 0x77, 0x0e, 0x80, - 0xf3, 0x4f, 0x78, 0x78, 0xea, 0x4f, 0x05, 0xf5, 0x1c, 0x7f, 0xc7, 0x66, 0x9c, 0xee, 0x08, 0x12, - 0x9d, 0x47, 0x8d, 0x90, 0x33, 0xc1, 0x50, 0x35, 0x65, 0x35, 0x24, 0x6b, 0xfb, 0xc9, 0x22, 0xd2, - 0x73, 0x68, 0x20, 0xbc, 0x53, 0x8f, 0xf2, 0x04, 0xbe, 0xfd, 0x78, 0x89, 0x1f, 0x08, 0xca, 0x4f, - 0x89, 0x4d, 0x35, 0xfb, 0xd1, 0x22, 0xdb, 0xf7, 0x04, 0xe5, 0xc4, 0x8f, 0xae, 0xe7, 0x46, 0xd4, - 0x8e, 0xb9, 0x27, 0xa6, 0x9a, 0xfb, 0xc4, 0x65, 0xcc, 0xf5, 0xe9, 0x8e, 0xda, 0x9d, 0xc4, 0xa7, - 0x3b, 0x4e, 0xcc, 0x89, 0xf0, 0x58, 0x90, 0x4a, 0x2f, 0xf3, 0x23, 0xc1, 0x63, 0x5b, 0x24, 0xdc, - 0xfa, 0x7f, 0xf3, 0x50, 0xc6, 0x34, 0x62, 0x31, 0xb7, 0x69, 0x84, 0x0e, 0x60, 0x9d, 0xd3, 0x8b, - 0x98, 0x46, 0x22, 0x32, 0x73, 0x4f, 0x0b, 0x2f, 0x2a, 0xbb, 0xcf, 0x1a, 0x0b, 0x0f, 0x6d, 0x64, - 0xd8, 0x6c, 0xd5, 0x0e, 0x04, 0x9f, 0xe2, 0x4c, 0x0e, 0xbd, 0x85, 0xa2, 0xef, 0x4d, 0x3c, 0x11, - 0x99, 0xf9, 0x3b, 0x69, 0xd0, 0x52, 0xdb, 0x7f, 0x80, 0xea, 0x02, 0x03, 0x7d, 0x0b, 0xab, 0x01, - 0x99, 0x50, 0x33, 0xf7, 0x34, 0xf7, 0x62, 0x73, 0xf7, 0xab, 0x5b, 0xd5, 0xf5, 0xc9, 0x84, 0x62, - 0x25, 0x82, 0xbe, 0x80, 0xb5, 0x4b, 0xe2, 0xc7, 0xd4, 0xcc, 0x3f, 0xcd, 0xbd, 0x28, 0xe3, 0x64, - 0x53, 0xff, 0x3d, 0x6c, 0xcc, 0x63, 0x51, 0x05, 0x4a, 0xc7, 0xfd, 0xa3, 0xfe, 0xe0, 0xfb, 0xbe, - 0xb1, 0x82, 0x4a, 0x50, 0x78, 0x37, 0x3c, 0x36, 0x72, 0x72, 0xf1, 0x61, 0x78, 0x6c, 0xe4, 0x11, - 0x40, 0xb1, 0xd7, 0xee, 0x0d, 0xf0, 0x27, 0xa3, 0x20, 0xa1, 0xa3, 0xf1, 0x00, 0x37, 0x3f, 0xb4, - 0x8d, 0x55, 0x74, 0x1f, 0x6a, 0xed, 0xe1, 0x61, 0xbb, 0xd7, 0xc6, 0xcd, 0xae, 0x95, 0x92, 0xd7, - 0xea, 0xff, 0xcc, 0xc1, 0x16, 0x8e, 0x03, 0xe1, 0x4d, 0x68, 0x8f, 0x0a, 0xe2, 0x10, 0x41, 0xd0, - 0x5b, 0x58, 0x15, 0xd3, 0x30, 0x7d, 0xc3, 0xd7, 0xcb, 0x6f, 0x58, 0x44, 0xa7, 0xfb, 0xf1, 0x34, - 0xa4, 0x58, 0xc9, 0x21, 0x13, 0x4a, 0x97, 0x94, 0x47, 0x1e, 0x0b, 0xf4, 0x53, 0xd2, 0x2d, 0x7a, - 0x00, 0xc5, 0x53, 0x9f, 0x5c, 0x32, 0x6e, 0x16, 0x14, 0x43, 0xef, 0xea, 0xcf, 0xa1, 0x32, 0xa7, - 0x06, 0x95, 0x61, 0x6d, 0x30, 0x3e, 0x6c, 0x63, 0x63, 0x05, 0x55, 0xa1, 0xfc, 0xbe, 0xfb, 0x69, - 0xdc, 0xb6, 0x46, 0xad, 0x23, 0x23, 0x57, 0xff, 0x6b, 0x0e, 0x36, 0x3f, 0x0c, 0x8f, 0x9b, 0xb6, - 0x4d, 0x7d, 0xca, 0x89, 0x60, 0x5c, 0xea, 0x74, 0xe8, 0xa5, 0x67, 0x27, 0xf7, 0x2d, 0x63, 0xbd, - 0x43, 0xcf, 0xa0, 0x1a, 0x07, 0x21, 0xe1, 0xc2, 0x93, 0xf1, 0x45, 0x1d, 0x75, 0x97, 0xf5, 0xc3, - 0x15, 0xbc, 0x48, 0x46, 0xcf, 0x61, 0x33, 0xdb, 0x5a, 0x91, 0xf7, 0x99, 0x26, 0x77, 0x93, 0xc0, - 0x8c, 0x3e, 0xf2, 0x3e, 0xd3, 0x83, 0x07, 0xf0, 0xc5, 0x22, 0xd0, 0x4a, 0x3c, 0x74, 0x01, 0x46, - 0xea, 0xa1, 0xcc, 0x84, 0x87, 0xb0, 0xe5, 0x86, 0xb1, 0x45, 0x66, 0xf7, 0x54, 0xb7, 0xab, 0xec, - 0x3e, 0x5e, 0xb2, 0xe6, 0xe2, 0x63, 0x0e, 0x57, 0xf0, 0xa6, 0x1b, 0xc6, 0x73, 0x94, 0x83, 0x7b, - 0x50, 0x9b, 0xd3, 0xa2, 0x8f, 0xfc, 0xcf, 0x1a, 0x6c, 0x8c, 0x49, 0x74, 0x9e, 0x9d, 0x57, 0x87, - 0x0d, 0xc7, 0x8b, 0x6c, 0x76, 0x49, 0x39, 0x39, 0xf1, 0x13, 0x53, 0xac, 0xe3, 0x05, 0x1a, 0xda, - 0x87, 0x12, 0x4f, 0x8c, 0xac, 0x4c, 0x51, 0xd9, 0x7d, 0xf2, 0xc3, 0x9e, 0xc5, 0x29, 0x1c, 0x7d, - 0x03, 0x25, 0xf9, 0x65, 0xb1, 0x30, 0x57, 0x95, 0xe4, 0xc3, 0x46, 0x92, 0xa7, 0x8d, 0x34, 0x4f, - 0x1b, 0x2d, 0x9d, 0xc7, 0x38, 0x45, 0xa2, 0x3d, 0x28, 0x71, 0x2a, 0xb8, 0x47, 0x23, 0x73, 0x4d, - 0x09, 0x3d, 0xba, 0x92, 0x0c, 0x82, 0x4f, 0x47, 0x82, 0x13, 0x41, 0xdd, 0x29, 0x4e, 0xc1, 0xe8, - 0x67, 0x50, 0x4b, 0xaf, 0x3d, 0xb5, 0xd2, 0x38, 0x2a, 0x2a, 0xd7, 0x1a, 0x19, 0xe3, 0xa3, 0x0e, - 0xa8, 0x7d, 0x30, 0x1d, 0x1a, 0x72, 0x6a, 0x13, 0x41, 0x1d, 0x8b, 0x72, 0xce, 0xb8, 0x35, 0xa1, - 0x51, 0x44, 0x5c, 0x6a, 0x96, 0x94, 0xcc, 0x83, 0x19, 0xbf, 0x2d, 0xd9, 0xbd, 0x84, 0x2b, 0xc3, - 0x43, 0x15, 0x36, 0x1e, 0x87, 0xc2, 0x93, 0x26, 0x5b, 0x4f, 0xc3, 0x63, 0x81, 0x8c, 0x5e, 0x02, - 0xb2, 0x89, 0x7d, 0x46, 0xad, 0x88, 0x72, 0x8f, 0xf8, 0xde, 0x67, 0x65, 0xdf, 0xb2, 0xb2, 0x6f, - 0x4d, 0x71, 0x46, 0x73, 0x0c, 0xf4, 0x15, 0x6c, 0xba, 0x34, 0x90, 0xce, 0xa2, 0x91, 0xe5, 0x50, - 0xfb, 0xdc, 0x04, 0x05, 0xad, 0x66, 0xd4, 0x16, 0xb5, 0xcf, 0x65, 0x99, 0x10, 0xc4, 0x8d, 0xcc, - 0x8a, 0xaa, 0x3a, 0xcb, 0x65, 0x62, 0xde, 0xb5, 0x8d, 0x31, 0x71, 0xa3, 0xa4, 0xe8, 0x28, 0x11, - 0xf4, 0x35, 0xd4, 0x42, 0xe6, 0x58, 0x82, 0x4e, 0x42, 0x9f, 0x08, 0x6a, 0xa9, 0x72, 0xb3, 0xa1, - 0xde, 0xba, 0x15, 0x32, 0x67, 0xac, 0xe9, 0xaa, 0x58, 0x74, 0xa1, 0xc6, 0x75, 0x68, 0x5a, 0x13, - 0xad, 0xd0, 0xac, 0x2a, 0x6f, 0x7c, 0x79, 0x43, 0x69, 0xca, 0xbc, 0x6f, 0xf0, 0x25, 0xca, 0xf6, - 0x1b, 0x28, 0x67, 0x97, 0x41, 0x06, 0x14, 0xce, 0xe9, 0x54, 0xe7, 0x9c, 0x5c, 0x5e, 0x5f, 0xbf, - 0xbe, 0xcb, 0xef, 0xe7, 0x0e, 0xee, 0xc3, 0xbd, 0x05, 0xa3, 0xea, 0x28, 0xfe, 0x8b, 0x8e, 0xe2, - 0xf4, 0xca, 0xe8, 0xa7, 0x90, 0xf7, 0x1c, 0x9d, 0x28, 0x0f, 0x97, 0xee, 0xd7, 0xc9, 0xba, 0x14, - 0xce, 0x7b, 0x0e, 0x42, 0xba, 0x46, 0x25, 0x67, 0x25, 0x75, 0xe7, 0x0d, 0xac, 0x67, 0x8f, 0x2c, - 0x28, 0x25, 0x3f, 0xfe, 0x01, 0xc3, 0xe2, 0x0c, 0x8c, 0x7e, 0x09, 0xe5, 0xac, 0xc9, 0xe9, 0x08, - 0x5f, 0xce, 0x53, 0x59, 0x97, 0x9c, 0x4e, 0x0a, 0xc2, 0x33, 0x3c, 0xda, 0x81, 0xa2, 0x1d, 0x47, - 0x82, 0x4d, 0x74, 0x98, 0xff, 0xe8, 0x4a, 0x6e, 0x8c, 0x54, 0x0f, 0xc3, 0x1a, 0x86, 0xf6, 0xa1, - 0x6c, 0xb3, 0x40, 0x10, 0x2f, 0xa0, 0x5c, 0x05, 0x76, 0x65, 0xd7, 0x5c, 0x3a, 0xed, 0x5d, 0xca, - 0x3f, 0x5c, 0xc1, 0x33, 0x30, 0xfa, 0x05, 0x94, 0xce, 0xf7, 0x23, 0x2b, 0x64, 0x8e, 0x59, 0x53, - 0x72, 0xf7, 0x97, 0xe4, 0x8e, 0xf6, 0xa3, 0x21, 0x73, 0x0e, 0x57, 0x70, 0xf1, 0x5c, 0xad, 0xd0, - 0x33, 0x28, 0x44, 0x17, 0xbe, 0x89, 0x14, 0x1a, 0x2d, 0xa1, 0x47, 0x17, 0xfe, 0xe1, 0x0a, 0x96, - 0x00, 0x19, 0x54, 0x72, 0x60, 0xb0, 0xa4, 0x1d, 0xb3, 0xa4, 0x93, 0x09, 0xb4, 0x86, 0xb7, 0x24, - 0x43, 0x3e, 0x3f, 0xcd, 0xb9, 0x0e, 0x18, 0x69, 0x57, 0xb7, 0xe4, 0xdd, 0xe8, 0x9f, 0x85, 0x4a, - 0x9e, 0xab, 0x05, 0x65, 0xa4, 0x61, 0xef, 0x12, 0x14, 0xde, 0x8a, 0x16, 0x09, 0xe8, 0xd7, 0x50, - 0xb4, 0x59, 0x70, 0xea, 0xb9, 0xa6, 0xa1, 0x12, 0xe1, 0xf9, 0x35, 0xfe, 0x4a, 0xa3, 0x43, 0x1a, - 0xe5, 0xd4, 0x73, 0x75, 0xff, 0x4d, 0xc4, 0xb6, 0xbf, 0x85, 0xca, 0x1c, 0xf9, 0x4e, 0x41, 0xb9, - 0x0e, 0x45, 0x41, 0xb8, 0x4b, 0x45, 0x7d, 0x0f, 0xaa, 0x99, 0xc1, 0x87, 0x8c, 0x0b, 0x99, 0xc4, - 0x99, 0xd1, 0xad, 0x90, 0x71, 0xa1, 0x34, 0x56, 0x71, 0xd5, 0x9e, 0x87, 0xd5, 0xff, 0x57, 0x80, - 0x72, 0x26, 0x28, 0x4f, 0xf2, 0x26, 0xb2, 0xee, 0x24, 0xa7, 0x27, 0x1b, 0xd9, 0x0b, 0x6d, 0x36, - 0x99, 0x90, 0xc0, 0x51, 0x13, 0x46, 0x19, 0xa7, 0x5b, 0x19, 0xc1, 0x84, 0xbb, 0x91, 0x59, 0x50, - 0x64, 0xb5, 0x46, 0x7b, 0x50, 0x4e, 0xb3, 0x2e, 0xd2, 0x81, 0x68, 0xde, 0x34, 0x42, 0xe0, 0x19, - 0x14, 0xbd, 0x84, 0x02, 0x0d, 0x2e, 0xcd, 0x35, 0x65, 0xc4, 0xe5, 0xa0, 0x3f, 0xa2, 0xd3, 0x8f, - 0xf2, 0xd5, 0x43, 0xe2, 0x71, 0x2c, 0x71, 0xe8, 0x4d, 0x66, 0xf6, 0xe2, 0xad, 0x12, 0x07, 0x79, - 0x33, 0x97, 0x9a, 0x1b, 0xed, 0xc2, 0x9a, 0x34, 0x47, 0x64, 0x96, 0x94, 0xdc, 0xa3, 0x9b, 0xc2, - 0x56, 0x9a, 0x07, 0x27, 0x50, 0xd4, 0x84, 0x8a, 0x4c, 0x32, 0x4b, 0x9f, 0x58, 0x56, 0xaf, 0x7a, - 0xba, 0x24, 0xd9, 0x22, 0x82, 0x74, 0x19, 0x71, 0xbc, 0xc0, 0x4d, 0xfc, 0x89, 0x41, 0x0a, 0x25, - 0x6b, 0xd4, 0x81, 0x0d, 0xc2, 0xed, 0x33, 0x4f, 0x50, 0x5b, 0xc4, 0x9c, 0xaa, 0x92, 0x7a, 0x75, - 0xb8, 0xca, 0x4e, 0x6f, 0x34, 0xe7, 0xc0, 0x78, 0x41, 0xb4, 0xde, 0x81, 0x8d, 0x79, 0xee, 0xe2, - 0x38, 0x55, 0x86, 0xb5, 0x66, 0xaf, 0xb5, 0xf7, 0xda, 0xc8, 0xa9, 0x25, 0xee, 0xed, 0xbd, 0x4e, - 0x46, 0xaa, 0x26, 0xee, 0x59, 0x1f, 0xf7, 0x8c, 0x42, 0xb6, 0x7e, 0x63, 0xac, 0xd6, 0xff, 0x95, - 0x07, 0xe8, 0x0c, 0xd2, 0x06, 0x86, 0x8e, 0xa0, 0xea, 0xb0, 0x3f, 0x05, 0x3e, 0x23, 0x8e, 0x35, - 0x61, 0x4e, 0x3a, 0x3e, 0x2d, 0x4f, 0x94, 0x33, 0x89, 0x46, 0x4b, 0xc3, 0x7b, 0xcc, 0xa1, 0x78, - 0xc3, 0x99, 0xdb, 0xa1, 0x36, 0x54, 0xe2, 0x70, 0xa6, 0x2a, 0xaf, 0x54, 0xfd, 0xe4, 0x66, 0x55, - 0xc7, 0x61, 0xa6, 0x08, 0xe2, 0x6c, 0x5d, 0xef, 0xc2, 0xc6, 0xfc, 0x21, 0x08, 0xc1, 0x66, 0x6b, - 0xf0, 0x7d, 0xbf, 0x3b, 0x68, 0xb6, 0xac, 0x76, 0xf3, 0x83, 0x9a, 0xb0, 0xee, 0xc1, 0x56, 0x46, - 0x1b, 0x8d, 0x71, 0xbb, 0xd9, 0x33, 0x72, 0x09, 0xd1, 0xea, 0x0f, 0xc6, 0x56, 0xca, 0x33, 0xf2, - 0xf5, 0x36, 0xc0, 0xec, 0x1c, 0xa9, 0xeb, 0x78, 0xa8, 0xa4, 0x06, 0x7d, 0xab, 0xfd, 0xdb, 0xce, - 0xd8, 0x58, 0x41, 0x06, 0x6c, 0x68, 0x5a, 0xa2, 0x3d, 0x87, 0x6a, 0x50, 0xd5, 0x8a, 0x12, 0x86, - 0x91, 0xaf, 0xff, 0x3d, 0x0f, 0xb5, 0x2b, 0xfe, 0x96, 0x89, 0x42, 0x03, 0xd9, 0x42, 0x1d, 0x3d, - 0xbc, 0xa4, 0x5b, 0xf4, 0x18, 0xc0, 0x0b, 0xc2, 0x58, 0x58, 0x21, 0x11, 0x67, 0x3a, 0x8f, 0xcb, - 0x8a, 0x32, 0x24, 0xe2, 0x0c, 0x7d, 0x09, 0x15, 0x16, 0x8b, 0x8c, 0x9f, 0x0c, 0x96, 0x90, 0x90, - 0x14, 0xa0, 0x03, 0xc5, 0x53, 0xc6, 0x27, 0x24, 0x19, 0x5e, 0x36, 0x77, 0x5f, 0xdd, 0x16, 0x7b, - 0x8d, 0x6e, 0xf2, 0x4b, 0xd3, 0x23, 0xe1, 0x7b, 0x25, 0x88, 0xb5, 0x02, 0xf4, 0x1d, 0x54, 0x3c, - 0x66, 0x45, 0xda, 0xea, 0xba, 0xe0, 0x3f, 0xbc, 0xd1, 0x2d, 0x18, 0x3c, 0x96, 0xae, 0xeb, 0xaf, - 0xc0, 0x58, 0xd6, 0x8b, 0xd6, 0x61, 0xf5, 0x37, 0xa3, 0x81, 0x0c, 0xbd, 0x75, 0x58, 0xfd, 0xd4, - 0xec, 0x75, 0x93, 0xc8, 0x1b, 0xe2, 0xc1, 0x78, 0x60, 0xe4, 0xeb, 0xff, 0xce, 0x41, 0x31, 0x29, - 0xe9, 0xe8, 0x57, 0x73, 0xbd, 0x2d, 0x77, 0x6d, 0x0a, 0x1d, 0xed, 0x47, 0x83, 0x93, 0x3f, 0x52, - 0x5b, 0x5c, 0xd3, 0xe0, 0x76, 0x61, 0x5d, 0xce, 0x0c, 0x51, 0x48, 0x6d, 0x3d, 0xfb, 0xdd, 0xd8, - 0xa5, 0x4a, 0x21, 0x73, 0x46, 0x21, 0xb5, 0x97, 0xf3, 0xb6, 0x70, 0xf7, 0xbc, 0xad, 0xff, 0x23, - 0x0f, 0xb5, 0x2b, 0xd7, 0x42, 0x2d, 0x28, 0xfa, 0xe4, 0x84, 0xfa, 0xe9, 0x5f, 0xdb, 0xcf, 0x6f, - 0x7b, 0x48, 0xa3, 0xab, 0xe0, 0xe9, 0x9f, 0x97, 0xda, 0xa0, 0x11, 0x54, 0x48, 0x10, 0x30, 0xa1, - 0xa6, 0xce, 0xf4, 0xf7, 0xed, 0xd5, 0xad, 0xaa, 0x9a, 0x33, 0x99, 0x44, 0xdf, 0xbc, 0x16, 0xd9, - 0x4e, 0xe6, 0xce, 0xba, 0x4b, 0x3b, 0xd9, 0x7e, 0x0b, 0xc6, 0xb2, 0xee, 0xbb, 0xc8, 0xd7, 0xff, - 0x96, 0x83, 0xc2, 0xe8, 0xc2, 0x47, 0x8f, 0xa0, 0x1c, 0x09, 0x22, 0xe8, 0x84, 0x06, 0x42, 0x4b, - 0xce, 0x08, 0xe8, 0x35, 0x94, 0x1c, 0x8f, 0xf8, 0xd4, 0x16, 0xba, 0x26, 0x6c, 0x5f, 0xed, 0xe9, - 0x8d, 0x56, 0x82, 0xc0, 0x29, 0xb4, 0xfe, 0x06, 0x4a, 0x9a, 0x26, 0xff, 0xa7, 0x8e, 0xfb, 0xad, - 0xf6, 0xfb, 0x4e, 0xbf, 0xdd, 0x4a, 0xc2, 0xae, 0xd9, 0x1f, 0x75, 0x8c, 0x9c, 0x5c, 0x1d, 0x76, - 0x3e, 0xb6, 0x8d, 0xfc, 0xec, 0xef, 0xab, 0x70, 0xb0, 0xf7, 0xbb, 0xd7, 0xae, 0x27, 0xce, 0xe2, - 0x93, 0x86, 0xcd, 0x26, 0x3b, 0xea, 0x24, 0xc6, 0xdd, 0x9d, 0xec, 0x17, 0xdf, 0xa5, 0xc1, 0x4e, - 0x78, 0xf2, 0xd2, 0x65, 0x3b, 0x0b, 0x7f, 0xfd, 0x27, 0x45, 0x15, 0x55, 0xdf, 0xfc, 0x3f, 0x00, - 0x00, 0xff, 0xff, 0x10, 0x90, 0xc9, 0x89, 0x94, 0x10, 0x00, 0x00, + // 1661 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x57, 0xdd, 0x72, 0x1b, 0x49, + 0x15, 0xb6, 0x24, 0x4b, 0xb2, 0x8e, 0xa4, 0x78, 0xdc, 0x4b, 0x96, 0x89, 0x49, 0x42, 0x6a, 0x8a, + 0xcd, 0x86, 0x85, 0x48, 0xc4, 0x9b, 0xb2, 0xbd, 0x0b, 0x15, 0x4a, 0x89, 0x26, 0xb1, 0xb0, 0xf5, + 0x53, 0x2d, 0x39, 0x4b, 0xa8, 0xa2, 0x86, 0xf6, 0x4c, 0x6b, 0x3c, 0x78, 0x34, 0x3d, 0xee, 0xe9, + 0x31, 0x88, 0x7b, 0x5e, 0x80, 0x97, 0xa0, 0xa8, 0xe2, 0x96, 0x4b, 0xde, 0x81, 0x97, 0xe1, 0x8e, + 0x0b, 0xaa, 0x7b, 0x7e, 0xf4, 0x63, 0x7b, 0x5d, 0xbe, 0x52, 0xf7, 0x39, 0xdf, 0x77, 0x7a, 0xfa, + 0xe8, 0x3b, 0x7d, 0xba, 0xe1, 0xd1, 0xd4, 0x9f, 0x0b, 0xea, 0x39, 0x7e, 0xdb, 0x66, 0x9c, 0xb6, + 0x05, 0x89, 0x2e, 0xa2, 0x56, 0xc8, 0x99, 0x60, 0xa8, 0x99, 0xb9, 0x5a, 0xd2, 0xb5, 0xfb, 0x74, + 0x15, 0xe9, 0x39, 0x34, 0x10, 0xde, 0xd4, 0xa3, 0x3c, 0x81, 0xef, 0x3e, 0x59, 0xf3, 0x07, 0x82, + 0xf2, 0x29, 0xb1, 0x69, 0xea, 0x7e, 0xbc, 0xea, 0xf6, 0x3d, 0x41, 0x39, 0xf1, 0xa3, 0x9b, 0xbd, + 0x11, 0xb5, 0x63, 0xee, 0x89, 0x79, 0xea, 0x7d, 0xea, 0x32, 0xe6, 0xfa, 0xb4, 0xad, 0x66, 0x67, + 0xf1, 0xb4, 0xed, 0xc4, 0x9c, 0x08, 0x8f, 0x05, 0x19, 0x7b, 0xdd, 0x1f, 0x09, 0x1e, 0xdb, 0x22, + 0xf1, 0x1a, 0xff, 0x29, 0x42, 0x0d, 0xd3, 0x88, 0xc5, 0xdc, 0xa6, 0x11, 0x7a, 0x0b, 0x5b, 0x9c, + 0x5e, 0xc6, 0x34, 0x12, 0x91, 0x5e, 0x78, 0x56, 0x7a, 0x51, 0xdf, 0x7b, 0xde, 0x5a, 0xd9, 0x68, + 0x2b, 0xc7, 0xe6, 0x23, 0x33, 0x10, 0x7c, 0x8e, 0x73, 0x1e, 0x7a, 0x03, 0x15, 0xdf, 0x9b, 0x79, + 0x22, 0xd2, 0x8b, 0xf7, 0x8a, 0x90, 0xb2, 0x76, 0xff, 0x00, 0xcd, 0x15, 0x07, 0xfa, 0x06, 0x36, + 0x03, 0x32, 0xa3, 0x7a, 0xe1, 0x59, 0xe1, 0xc5, 0x83, 0xbd, 0x2f, 0xee, 0x0c, 0x37, 0x20, 0x33, + 0x8a, 0x15, 0x05, 0xfd, 0x00, 0xca, 0x57, 0xc4, 0x8f, 0xa9, 0x5e, 0x7c, 0x56, 0x78, 0x51, 0xc3, + 0xc9, 0xc4, 0xf8, 0x3d, 0x34, 0x96, 0xb1, 0xa8, 0x0e, 0xd5, 0xd3, 0xc1, 0xf1, 0x60, 0xf8, 0xdd, + 0x40, 0xdb, 0x40, 0x55, 0x28, 0xbd, 0x1b, 0x9d, 0x6a, 0x05, 0x39, 0xf8, 0x30, 0x3a, 0xd5, 0x8a, + 0x08, 0xa0, 0xd2, 0x37, 0xfb, 0x43, 0xfc, 0x49, 0x2b, 0x49, 0xe8, 0x78, 0x32, 0xc4, 0x9d, 0x0f, + 0xa6, 0xb6, 0x89, 0x1e, 0xc2, 0x8e, 0x39, 0x3a, 0x32, 0xfb, 0x26, 0xee, 0x9c, 0x58, 0x99, 0xb9, + 0x6c, 0xfc, 0xb3, 0x00, 0xdb, 0x38, 0x0e, 0x84, 0x37, 0xa3, 0x7d, 0x2a, 0x88, 0x43, 0x04, 0x41, + 0x6f, 0x60, 0x53, 0xcc, 0xc3, 0x6c, 0x0f, 0x5f, 0xad, 0xef, 0x61, 0x15, 0x9d, 0xcd, 0x27, 0xf3, + 0x90, 0x62, 0xc5, 0x43, 0x3a, 0x54, 0xaf, 0x28, 0x8f, 0x3c, 0x16, 0xa4, 0x5b, 0xc9, 0xa6, 0xe8, + 0x73, 0xa8, 0x4c, 0x7d, 0x72, 0xc5, 0xb8, 0x5e, 0x52, 0x8e, 0x74, 0x66, 0x7c, 0x09, 0xf5, 0xa5, + 0x30, 0xa8, 0x06, 0xe5, 0xe1, 0xe4, 0xc8, 0xc4, 0xda, 0x06, 0x6a, 0x42, 0xed, 0xfd, 0xc9, 0xa7, + 0x89, 0x69, 0x8d, 0xbb, 0xc7, 0x5a, 0xc1, 0xf8, 0xef, 0x26, 0x34, 0x26, 0x24, 0xba, 0xc8, 0xbf, + 0xd5, 0x80, 0x86, 0xe3, 0x45, 0x36, 0xbb, 0xa2, 0x9c, 0x9c, 0xf9, 0xc9, 0x37, 0x6f, 0xe1, 0x15, + 0x1b, 0x3a, 0x84, 0x2a, 0x4f, 0xa2, 0xab, 0xef, 0xa9, 0xef, 0x3d, 0xfd, 0xfe, 0x2d, 0xe1, 0x0c, + 0x8e, 0xbe, 0x86, 0xaa, 0xfc, 0x65, 0xb1, 0xd0, 0x37, 0x15, 0xf3, 0x51, 0x2b, 0x11, 0x68, 0x2b, + 0x13, 0x68, 0xab, 0x9b, 0x0a, 0x18, 0x67, 0x48, 0xb4, 0x0f, 0x55, 0x4e, 0x05, 0xf7, 0x68, 0xa4, + 0x97, 0x15, 0xe9, 0xf1, 0x35, 0x15, 0x08, 0x3e, 0x1f, 0x0b, 0x4e, 0x04, 0x75, 0xe7, 0x38, 0x03, + 0xa3, 0x9f, 0xc1, 0x4e, 0xf6, 0xd9, 0x73, 0x2b, 0x4b, 0x60, 0x45, 0xe5, 0x49, 0xcb, 0x1d, 0x1f, + 0xd3, 0x4c, 0x1e, 0x82, 0xee, 0xd0, 0x90, 0x53, 0x9b, 0x08, 0xea, 0x58, 0x94, 0x73, 0xc6, 0xad, + 0x19, 0x8d, 0x22, 0xe2, 0x52, 0xbd, 0xaa, 0x38, 0x9f, 0x2f, 0xfc, 0xa6, 0x74, 0xf7, 0x13, 0x2f, + 0x7a, 0x0e, 0x4d, 0x55, 0xd1, 0x3c, 0x0e, 0x85, 0x27, 0x53, 0xb6, 0x25, 0x53, 0x76, 0xb4, 0x81, + 0x57, 0xcd, 0xe8, 0x25, 0x20, 0x9b, 0xd8, 0xe7, 0xd4, 0x8a, 0x28, 0xf7, 0x88, 0xef, 0xfd, 0x45, + 0xe5, 0xb7, 0xa6, 0xf2, 0xbb, 0xa3, 0x3c, 0xe3, 0x25, 0x07, 0xfa, 0x02, 0x1e, 0xb8, 0x34, 0xa0, + 0x72, 0x53, 0x91, 0xe5, 0x50, 0xfb, 0x42, 0x07, 0x05, 0x6d, 0xe6, 0xd6, 0x2e, 0xb5, 0x2f, 0x64, + 0x7d, 0x08, 0xe2, 0x46, 0x7a, 0x5d, 0x95, 0xdb, 0x7a, 0x7d, 0x2c, 0xff, 0xb5, 0xad, 0x09, 0x71, + 0xa3, 0xa4, 0xda, 0x14, 0x05, 0x7d, 0x05, 0x3b, 0x21, 0x73, 0x2c, 0x41, 0x67, 0xa1, 0x4f, 0x04, + 0xb5, 0x54, 0x9d, 0x35, 0xd4, 0x5e, 0xb7, 0x43, 0xe6, 0x4c, 0x52, 0xbb, 0xac, 0x92, 0xdd, 0x03, + 0xa8, 0xe5, 0x74, 0xa4, 0x41, 0xe9, 0x82, 0xce, 0x95, 0x34, 0x6a, 0x58, 0x0e, 0x6f, 0x2e, 0xb5, + 0x6f, 0x8b, 0x87, 0x85, 0xb7, 0x0f, 0xe1, 0xb3, 0x95, 0x34, 0x58, 0x49, 0x15, 0xfe, 0xb5, 0x9c, + 0xe8, 0x2e, 0x5b, 0x04, 0xfd, 0x14, 0x8a, 0x9e, 0xa3, 0x42, 0x4a, 0x51, 0xac, 0xee, 0xa2, 0x97, + 0x1f, 0xa8, 0xb8, 0xe8, 0x39, 0x08, 0xa5, 0xe5, 0x94, 0xac, 0x95, 0x94, 0xc8, 0x01, 0x6c, 0xcd, + 0xd2, 0x7d, 0xaa, 0x52, 0xa8, 0xef, 0xfd, 0xe8, 0x7b, 0x52, 0x81, 0x73, 0x30, 0xfa, 0x25, 0xd4, + 0xf2, 0xf3, 0x38, 0xd5, 0xe4, 0x93, 0x75, 0xe6, 0x3c, 0xa4, 0x4e, 0x2f, 0x03, 0xe1, 0x05, 0x1e, + 0xb5, 0xa1, 0x62, 0xc7, 0x91, 0x60, 0xb3, 0x54, 0x98, 0x3f, 0xbc, 0xa6, 0xe6, 0xb1, 0x3a, 0x6e, + 0x71, 0x0a, 0x43, 0x87, 0x50, 0xb3, 0x59, 0x20, 0x88, 0x17, 0x50, 0xae, 0xa4, 0x58, 0xdf, 0xd3, + 0xd7, 0x56, 0x7b, 0x97, 0xf9, 0x8f, 0x36, 0xf0, 0x02, 0x8c, 0x7e, 0x01, 0xd5, 0x8b, 0xc3, 0xc8, + 0x0a, 0x99, 0xa3, 0xef, 0x28, 0xde, 0xc3, 0x35, 0xde, 0xf1, 0x61, 0x34, 0x62, 0xce, 0xd1, 0x06, + 0xae, 0x5c, 0xa8, 0x11, 0x7a, 0x0e, 0xa5, 0xe8, 0xd2, 0xd7, 0x91, 0x42, 0xa3, 0x35, 0xf4, 0xf8, + 0xd2, 0x3f, 0xda, 0xc0, 0x12, 0x20, 0x65, 0x20, 0x7b, 0x9b, 0x25, 0xf3, 0x98, 0x97, 0x89, 0x94, + 0x7c, 0x19, 0x6f, 0x4b, 0x87, 0xdc, 0x7e, 0x56, 0x25, 0x3d, 0xd0, 0xb2, 0x06, 0x64, 0xc9, 0x6f, + 0xa3, 0x7f, 0x16, 0x4a, 0xee, 0xd7, 0x8f, 0x80, 0x71, 0x0a, 0x7b, 0x97, 0xa0, 0xf0, 0x76, 0xb4, + 0x6a, 0x40, 0xbf, 0x86, 0x8a, 0xcd, 0x82, 0xa9, 0xe7, 0xea, 0x9a, 0x92, 0xee, 0x97, 0x37, 0xfc, + 0x5f, 0x99, 0x3a, 0x64, 0x52, 0xa6, 0x9e, 0x9b, 0xb6, 0x8a, 0x84, 0xb6, 0xfb, 0x0d, 0xd4, 0x97, + 0xcc, 0xf7, 0x12, 0xe5, 0x16, 0x54, 0x04, 0xe1, 0x2e, 0x15, 0xc6, 0x3e, 0x34, 0xf3, 0x84, 0x8f, + 0x18, 0x17, 0xb2, 0xec, 0xf2, 0xa4, 0x5b, 0x21, 0xe3, 0x42, 0x45, 0x6c, 0xe2, 0xa6, 0xbd, 0x0c, + 0x33, 0xfe, 0x57, 0x82, 0x5a, 0x4e, 0x94, 0x2b, 0x79, 0x33, 0x79, 0x52, 0x24, 0xab, 0x27, 0x13, + 0x79, 0x6c, 0xdb, 0x6c, 0x36, 0x23, 0x81, 0xa3, 0x9a, 0x61, 0x0d, 0x67, 0x53, 0xa9, 0x60, 0xc2, + 0xdd, 0x48, 0x2f, 0x29, 0xb3, 0x1a, 0xa3, 0x7d, 0xa8, 0xf1, 0xac, 0x9b, 0xa5, 0x42, 0xd4, 0x6f, + 0xeb, 0x76, 0x78, 0x01, 0x45, 0x2f, 0xa1, 0x44, 0x83, 0x2b, 0xbd, 0xac, 0x92, 0xb8, 0x2e, 0xfa, + 0x63, 0x3a, 0xff, 0x28, 0x77, 0x3d, 0x22, 0x1e, 0xc7, 0x12, 0x87, 0x0e, 0xf2, 0xb4, 0x57, 0xee, + 0x64, 0xbc, 0x2d, 0xea, 0x85, 0x2c, 0xdd, 0x68, 0x0f, 0xca, 0x32, 0x1d, 0x91, 0x5e, 0x55, 0xbc, + 0xc7, 0xb7, 0xc9, 0x56, 0xa6, 0x07, 0x27, 0x50, 0xd4, 0x81, 0xba, 0x2c, 0x32, 0x2b, 0x5d, 0xb1, + 0xa6, 0x76, 0xf5, 0x6c, 0x8d, 0xd9, 0x25, 0x82, 0x9c, 0x30, 0xe2, 0x78, 0x81, 0x9b, 0xfc, 0x9f, + 0x18, 0x24, 0x29, 0x19, 0xa3, 0x1e, 0x34, 0x08, 0xb7, 0xcf, 0x3d, 0x41, 0x6d, 0x11, 0x73, 0xaa, + 0x0e, 0xc1, 0xeb, 0xf7, 0x80, 0x7c, 0xf5, 0x56, 0x67, 0x09, 0x8c, 0x57, 0xa8, 0x46, 0x0f, 0x1a, + 0xcb, 0xde, 0xd5, 0xce, 0x5f, 0x83, 0x72, 0xa7, 0xdf, 0xdd, 0x7f, 0xad, 0x15, 0xd4, 0x10, 0xf7, + 0xf7, 0x5f, 0x27, 0xdd, 0xbf, 0x83, 0xfb, 0xd6, 0xc7, 0x7d, 0xad, 0x94, 0x8f, 0x0f, 0xb4, 0x4d, + 0xe3, 0x5f, 0x45, 0x80, 0xde, 0x30, 0x6b, 0x39, 0xe8, 0x18, 0x9a, 0x0e, 0xfb, 0x53, 0xe0, 0x33, + 0xe2, 0x58, 0x33, 0xe6, 0x64, 0x9d, 0x7e, 0xfd, 0xf2, 0xb3, 0x60, 0xb4, 0xba, 0x29, 0xbc, 0xcf, + 0x1c, 0x8a, 0x1b, 0xce, 0xd2, 0x0c, 0x99, 0x50, 0x8f, 0xc3, 0x45, 0xa8, 0xa2, 0x0a, 0xf5, 0x93, + 0xdb, 0x43, 0x9d, 0x86, 0x79, 0x20, 0x88, 0xf3, 0xb1, 0x71, 0x02, 0x8d, 0xe5, 0x45, 0x10, 0x82, + 0x07, 0xdd, 0xe1, 0x77, 0x83, 0x93, 0x61, 0xa7, 0x6b, 0x99, 0x9d, 0x0f, 0xea, 0x32, 0xf0, 0x19, + 0x6c, 0xe7, 0xb6, 0xf1, 0x04, 0x9b, 0x9d, 0xbe, 0x56, 0x48, 0x8c, 0xd6, 0x60, 0x38, 0xb1, 0x32, + 0x9f, 0x56, 0x34, 0x4c, 0x80, 0xc5, 0x3a, 0x32, 0xd6, 0xe9, 0x48, 0xb1, 0x86, 0x03, 0xcb, 0xfc, + 0x6d, 0x6f, 0xa2, 0x6d, 0x20, 0x0d, 0x1a, 0xa9, 0x2d, 0x89, 0x5e, 0x40, 0x3b, 0xd0, 0x4c, 0x03, + 0x25, 0x0e, 0xad, 0x68, 0xfc, 0xbd, 0x08, 0x3b, 0xd7, 0xfe, 0x6f, 0x59, 0x28, 0x34, 0x90, 0x4d, + 0xcf, 0x49, 0xaf, 0x1b, 0xd9, 0x14, 0x3d, 0x01, 0xf0, 0x82, 0x30, 0x16, 0x56, 0x48, 0xc4, 0x79, + 0x5a, 0xc7, 0x35, 0x65, 0x19, 0x11, 0x71, 0x8e, 0x7e, 0x0c, 0x75, 0x16, 0x8b, 0xdc, 0x9f, 0xdc, + 0x81, 0x20, 0x31, 0x29, 0x40, 0x0f, 0x2a, 0x53, 0xc6, 0x67, 0x24, 0xb9, 0x6e, 0x3c, 0xd8, 0x7b, + 0x75, 0x97, 0xf6, 0x5a, 0x27, 0xc9, 0xed, 0xbb, 0x4f, 0xc2, 0xf7, 0x8a, 0x88, 0xd3, 0x00, 0xe8, + 0x5b, 0xa8, 0x7b, 0xcc, 0x8a, 0xd2, 0xac, 0xa7, 0x07, 0xfe, 0xa3, 0x5b, 0xff, 0x16, 0x0c, 0x1e, + 0xcb, 0xc6, 0xc6, 0x2b, 0xd0, 0xd6, 0xe3, 0xa2, 0x2d, 0xd8, 0xfc, 0xcd, 0x78, 0x28, 0xa5, 0xb7, + 0x05, 0x9b, 0x9f, 0x3a, 0xfd, 0x93, 0x44, 0x79, 0x23, 0x3c, 0x9c, 0x0c, 0xb5, 0xa2, 0xf1, 0xef, + 0x02, 0x54, 0x92, 0x23, 0x1d, 0xfd, 0x6a, 0xa9, 0xb7, 0x15, 0x6e, 0x2c, 0xa1, 0xe3, 0xc3, 0x68, + 0x78, 0xf6, 0x47, 0x6a, 0x8b, 0x1b, 0x1a, 0xdc, 0x1e, 0x6c, 0xc9, 0x2e, 0x1f, 0x85, 0xd4, 0x4e, + 0x6f, 0x6b, 0xb7, 0x76, 0xa9, 0x6a, 0xc8, 0x9c, 0x71, 0x48, 0xed, 0xf5, 0xba, 0x2d, 0xdd, 0xbf, + 0x6e, 0x8d, 0x7f, 0x14, 0x61, 0xe7, 0xda, 0x67, 0xa1, 0x2e, 0x54, 0x7c, 0x72, 0x46, 0xfd, 0xec, + 0x81, 0xf1, 0xf3, 0xbb, 0x36, 0xd2, 0x3a, 0x51, 0xf0, 0xec, 0x91, 0xa0, 0x26, 0x68, 0x0c, 0x75, + 0x12, 0x04, 0x4c, 0xa8, 0x7b, 0x62, 0xf6, 0xd2, 0x78, 0x75, 0x67, 0xa8, 0xce, 0x82, 0x93, 0xc4, + 0x5b, 0x8e, 0x22, 0xdb, 0xc9, 0xd2, 0x5a, 0xf7, 0x69, 0x27, 0xbb, 0x6f, 0x40, 0x5b, 0x8f, 0x7d, + 0x1f, 0xbe, 0xf1, 0xb7, 0x02, 0x94, 0xc6, 0x97, 0x3e, 0x7a, 0x0c, 0xb5, 0x48, 0x10, 0x41, 0x67, + 0x34, 0x10, 0x29, 0x73, 0x61, 0x40, 0xaf, 0xa1, 0xea, 0x78, 0xc4, 0xa7, 0xb6, 0x48, 0xcf, 0x84, + 0xdd, 0xeb, 0x3d, 0xbd, 0xd5, 0x4d, 0x10, 0x38, 0x83, 0x1a, 0x07, 0x50, 0x4d, 0x6d, 0xf2, 0xea, + 0x7f, 0x3a, 0xe8, 0x9a, 0xef, 0x7b, 0x03, 0xb3, 0x9b, 0xc8, 0xae, 0x33, 0x18, 0xf7, 0xb4, 0x82, + 0x1c, 0x1d, 0xf5, 0x3e, 0x9a, 0x5a, 0x71, 0xf1, 0x50, 0x28, 0xbd, 0xdd, 0xff, 0xdd, 0x6b, 0xd7, + 0x13, 0xe7, 0xf1, 0x59, 0xcb, 0x66, 0xb3, 0xb6, 0x5a, 0x89, 0x71, 0xb7, 0x9d, 0xbf, 0x46, 0x5d, + 0x1a, 0xb4, 0xc3, 0xb3, 0x97, 0x2e, 0x6b, 0xaf, 0x3c, 0x50, 0xcf, 0x2a, 0x4a, 0x55, 0x5f, 0xff, + 0x3f, 0x00, 0x00, 0xff, 0xff, 0xd1, 0x11, 0xc2, 0xc9, 0x3f, 0x0f, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/tasks.pb.validate.go b/gen/pb-go/flyteidl/core/tasks.pb.validate.go index 32201a762..57d157dfd 100644 --- a/gen/pb-go/flyteidl/core/tasks.pb.validate.go +++ b/gen/pb-go/flyteidl/core/tasks.pb.validate.go @@ -201,164 +201,6 @@ var _ interface { ErrorName() string } = RuntimeMetadataValidationError{} -// Validate checks the field values on GPUAccelerator with the rules defined in -// the proto definition for this message. If any rules are violated, an error -// is returned. -func (m *GPUAccelerator) Validate() error { - if m == nil { - return nil - } - - // no validation rules for Device - - switch m.PartitionSizeValue.(type) { - - case *GPUAccelerator_Unpartitioned: - // no validation rules for Unpartitioned - - case *GPUAccelerator_PartitionSize: - // no validation rules for PartitionSize - - } - - return nil -} - -// GPUAcceleratorValidationError is the validation error returned by -// GPUAccelerator.Validate if the designated constraints aren't met. -type GPUAcceleratorValidationError struct { - field string - reason string - cause error - key bool -} - -// Field function returns field value. -func (e GPUAcceleratorValidationError) Field() string { return e.field } - -// Reason function returns reason value. -func (e GPUAcceleratorValidationError) Reason() string { return e.reason } - -// Cause function returns cause value. -func (e GPUAcceleratorValidationError) Cause() error { return e.cause } - -// Key function returns key value. -func (e GPUAcceleratorValidationError) Key() bool { return e.key } - -// ErrorName returns error name. -func (e GPUAcceleratorValidationError) ErrorName() string { return "GPUAcceleratorValidationError" } - -// Error satisfies the builtin error interface -func (e GPUAcceleratorValidationError) Error() string { - cause := "" - if e.cause != nil { - cause = fmt.Sprintf(" | caused by: %v", e.cause) - } - - key := "" - if e.key { - key = "key for " - } - - return fmt.Sprintf( - "invalid %sGPUAccelerator.%s: %s%s", - key, - e.field, - e.reason, - cause) -} - -var _ error = GPUAcceleratorValidationError{} - -var _ interface { - Field() string - Reason() string - Key() bool - Cause() error - ErrorName() string -} = GPUAcceleratorValidationError{} - -// Validate checks the field values on ResourceMetadata with the rules defined -// in the proto definition for this message. If any rules are violated, an -// error is returned. -func (m *ResourceMetadata) Validate() error { - if m == nil { - return nil - } - - switch m.AcceleratorValue.(type) { - - case *ResourceMetadata_GpuAccelerator: - - if v, ok := interface{}(m.GetGpuAccelerator()).(interface{ Validate() error }); ok { - if err := v.Validate(); err != nil { - return ResourceMetadataValidationError{ - field: "GpuAccelerator", - reason: "embedded message failed validation", - cause: err, - } - } - } - - } - - return nil -} - -// ResourceMetadataValidationError is the validation error returned by -// ResourceMetadata.Validate if the designated constraints aren't met. -type ResourceMetadataValidationError struct { - field string - reason string - cause error - key bool -} - -// Field function returns field value. -func (e ResourceMetadataValidationError) Field() string { return e.field } - -// Reason function returns reason value. -func (e ResourceMetadataValidationError) Reason() string { return e.reason } - -// Cause function returns cause value. -func (e ResourceMetadataValidationError) Cause() error { return e.cause } - -// Key function returns key value. -func (e ResourceMetadataValidationError) Key() bool { return e.key } - -// ErrorName returns error name. -func (e ResourceMetadataValidationError) ErrorName() string { return "ResourceMetadataValidationError" } - -// Error satisfies the builtin error interface -func (e ResourceMetadataValidationError) Error() string { - cause := "" - if e.cause != nil { - cause = fmt.Sprintf(" | caused by: %v", e.cause) - } - - key := "" - if e.key { - key = "key for " - } - - return fmt.Sprintf( - "invalid %sResourceMetadata.%s: %s%s", - key, - e.field, - e.reason, - cause) -} - -var _ error = ResourceMetadataValidationError{} - -var _ interface { - Field() string - Reason() string - Key() bool - Cause() error - ErrorName() string -} = ResourceMetadataValidationError{} - // Validate checks the field values on TaskMetadata with the rules defined in // the proto definition for this message. If any rules are violated, an error // is returned. @@ -411,16 +253,6 @@ func (m *TaskMetadata) Validate() error { // no validation rules for PodTemplateName - if v, ok := interface{}(m.GetResourceMetadata()).(interface{ Validate() error }); ok { - if err := v.Validate(); err != nil { - return TaskMetadataValidationError{ - field: "ResourceMetadata", - reason: "embedded message failed validation", - cause: err, - } - } - } - switch m.InterruptibleValue.(type) { case *TaskMetadata_Interruptible: diff --git a/gen/pb-go/flyteidl/core/workflow.pb.go b/gen/pb-go/flyteidl/core/workflow.pb.go index e34c85eb7..c3203af98 100644 --- a/gen/pb-go/flyteidl/core/workflow.pb.go +++ b/gen/pb-go/flyteidl/core/workflow.pb.go @@ -1282,12 +1282,10 @@ func (m *WorkflowTemplate) GetMetadataDefaults() *WorkflowMetadataDefaults { // Optional task node overrides that will be applied at task execution time. type TaskNodeOverrides struct { // A customizable interface to convey resources requested for a task container. - Resources *Resources `protobuf:"bytes,1,opt,name=resources,proto3" json:"resources,omitempty"` - // Additional metadata associated with resources to allocate to this task - ResourceMetadata *ResourceMetadata `protobuf:"bytes,2,opt,name=resource_metadata,json=resourceMetadata,proto3" json:"resource_metadata,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Resources *Resources `protobuf:"bytes,1,opt,name=resources,proto3" json:"resources,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *TaskNodeOverrides) Reset() { *m = TaskNodeOverrides{} } @@ -1322,13 +1320,6 @@ func (m *TaskNodeOverrides) GetResources() *Resources { return nil } -func (m *TaskNodeOverrides) GetResourceMetadata() *ResourceMetadata { - if m != nil { - return m.ResourceMetadata - } - return nil -} - func init() { proto.RegisterEnum("flyteidl.core.WorkflowMetadata_OnFailurePolicy", WorkflowMetadata_OnFailurePolicy_name, WorkflowMetadata_OnFailurePolicy_value) proto.RegisterType((*IfBlock)(nil), "flyteidl.core.IfBlock") @@ -1354,97 +1345,96 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/workflow.proto", fileDescriptor_fccede37486c456e) } var fileDescriptor_fccede37486c456e = []byte{ - // 1465 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x57, 0xcd, 0x72, 0xdb, 0xc8, - 0x11, 0x26, 0x29, 0x4a, 0x22, 0x5a, 0xa2, 0x44, 0x8d, 0x95, 0x84, 0xfe, 0x57, 0xa1, 0x9c, 0x58, - 0x76, 0x39, 0xa4, 0xcb, 0x8e, 0x65, 0x27, 0x4a, 0x5c, 0x21, 0x2d, 0xda, 0x64, 0x95, 0x7e, 0xec, - 0x11, 0xf3, 0x7b, 0x41, 0x0d, 0x81, 0x01, 0x35, 0x25, 0x10, 0xa0, 0x67, 0x06, 0xb2, 0x59, 0x79, - 0x89, 0xdc, 0x52, 0x39, 0x6d, 0xd5, 0x1e, 0xf6, 0x35, 0xf6, 0xb4, 0xd7, 0x3d, 0xed, 0xe3, 0xec, - 0x61, 0x6b, 0x06, 0x18, 0x50, 0x84, 0x48, 0xcb, 0x37, 0xcc, 0xf4, 0xd7, 0x83, 0x9e, 0xee, 0xfe, - 0xbe, 0x06, 0xe0, 0x8e, 0x1f, 0x4c, 0x24, 0x65, 0x5e, 0xd0, 0x74, 0x23, 0x4e, 0x9b, 0x9f, 0x22, - 0x7e, 0xee, 0x07, 0xd1, 0xa7, 0xc6, 0x98, 0x47, 0x32, 0x42, 0x55, 0x63, 0x6d, 0x28, 0xeb, 0xad, - 0xbb, 0xb3, 0x60, 0x37, 0x0a, 0x3d, 0x26, 0x59, 0x14, 0x26, 0xe8, 0xbc, 0x99, 0x7e, 0xa6, 0x6e, - 0x7c, 0xc9, 0x7c, 0x6f, 0xd6, 0xcc, 0x3c, 0x1a, 0x4a, 0xe6, 0x33, 0xca, 0xe7, 0xbb, 0xb3, 0x50, - 0x52, 0xee, 0x13, 0x97, 0xa6, 0xe6, 0x5c, 0xa4, 0x01, 0x93, 0x94, 0x93, 0x40, 0xa4, 0xd6, 0x9b, - 0xb3, 0x56, 0x49, 0xc4, 0xf9, 0x22, 0xd3, 0x64, 0x4c, 0xc5, 0xfc, 0x33, 0x05, 0x75, 0x63, 0xce, - 0xe4, 0xc4, 0x04, 0x3c, 0x8c, 0xa2, 0x61, 0x40, 0x9b, 0x7a, 0x35, 0x88, 0xfd, 0xa6, 0x17, 0x73, - 0x32, 0xbd, 0x90, 0xfd, 0x1f, 0x58, 0xed, 0xf9, 0xed, 0x20, 0x72, 0xcf, 0xd1, 0x6b, 0xb0, 0xb2, - 0x6c, 0xd4, 0x8b, 0x3b, 0xc5, 0xdd, 0xb5, 0x67, 0x3b, 0x8d, 0x99, 0xe4, 0x35, 0xda, 0x51, 0x14, - 0x50, 0x12, 0x76, 0x3e, 0x8f, 0x39, 0x15, 0x82, 0x45, 0x21, 0x9e, 0xba, 0xa0, 0xa7, 0x60, 0xc9, - 0x33, 0x1a, 0x3a, 0x61, 0xe4, 0xd1, 0x7a, 0x49, 0xfb, 0xdf, 0xc8, 0xf9, 0x1f, 0x47, 0x1e, 0xc5, - 0x15, 0x85, 0x52, 0x4f, 0xf6, 0x4f, 0x45, 0x58, 0xeb, 0xf9, 0x9d, 0x40, 0xd0, 0x24, 0x82, 0xc7, - 0x50, 0x76, 0x89, 0xa0, 0xe9, 0xcb, 0x7f, 0x9d, 0x73, 0x4e, 0xe3, 0xc4, 0x1a, 0x83, 0x9e, 0xc0, - 0x72, 0x24, 0xcf, 0x28, 0xaf, 0x97, 0x76, 0x96, 0xbe, 0x00, 0x4e, 0x40, 0xe8, 0x19, 0x58, 0x34, - 0x10, 0x34, 0x89, 0x6d, 0x69, 0x61, 0x6c, 0xdd, 0x02, 0xae, 0x28, 0x9c, 0x7a, 0x56, 0x6f, 0xa0, - 0x9c, 0x47, 0xbc, 0x5e, 0xd6, 0xf8, 0xed, 0x1c, 0xbe, 0xa3, 0x6c, 0xdd, 0x02, 0x4e, 0x40, 0x6d, - 0x0b, 0x56, 0x3d, 0xea, 0x93, 0x38, 0x90, 0x76, 0x0b, 0xa0, 0xcd, 0x49, 0xe8, 0x9e, 0xe9, 0x63, - 0x9e, 0xc3, 0x2a, 0xf3, 0x1d, 0x75, 0x6a, 0x7a, 0xaf, 0x5b, 0x57, 0x42, 0xcd, 0x32, 0x80, 0x57, - 0x98, 0x5e, 0xd8, 0xff, 0x2b, 0x42, 0xa5, 0x4f, 0xc4, 0xb9, 0x3e, 0xe1, 0x35, 0xac, 0x73, 0xea, - 0x53, 0x4e, 0x43, 0x97, 0x3a, 0xcc, 0x4b, 0x8f, 0xb9, 0x99, 0x3f, 0x26, 0xeb, 0xc5, 0x6e, 0x01, - 0xaf, 0x65, 0x0e, 0x3d, 0x4f, 0x15, 0x36, 0xba, 0xa0, 0x9c, 0x33, 0x8f, 0x8a, 0xb4, 0x30, 0xf9, - 0xc2, 0x9a, 0x77, 0x9d, 0x18, 0x1c, 0x9e, 0xba, 0xb4, 0xd7, 0xc0, 0xca, 0x8e, 0xb3, 0xbf, 0x2b, - 0xc2, 0xfa, 0x3f, 0x52, 0x86, 0xe9, 0xe8, 0xda, 0xb0, 0x11, 0x90, 0x38, 0x74, 0xcf, 0xc6, 0x01, - 0x09, 0x1d, 0x4e, 0xfd, 0xaf, 0x89, 0xaf, 0x3a, 0x75, 0xc1, 0xd4, 0x47, 0x1d, 0xa8, 0x89, 0x78, - 0xe0, 0x18, 0xe6, 0xea, 0x53, 0x4a, 0xd7, 0x9f, 0xb2, 0x21, 0xe2, 0x81, 0x89, 0x05, 0x53, 0x7f, - 0x36, 0xd0, 0x26, 0xd4, 0x5a, 0xe3, 0x31, 0x8f, 0x2e, 0xe8, 0x9b, 0xac, 0x45, 0x6f, 0x83, 0x25, - 0xd8, 0x30, 0x24, 0x81, 0x49, 0xa3, 0x85, 0x2b, 0xc9, 0x46, 0xcf, 0xb3, 0xff, 0x5b, 0x84, 0xcd, - 0x53, 0xbd, 0xf8, 0x3a, 0x07, 0xd4, 0x80, 0xb2, 0x22, 0x62, 0x1a, 0x69, 0xbe, 0xac, 0x87, 0x09, - 0xb9, 0xfb, 0x93, 0x31, 0xc5, 0x1a, 0x87, 0x9e, 0xc2, 0x76, 0x14, 0xcb, 0x71, 0x2c, 0x9d, 0x0b, - 0xc2, 0x19, 0x19, 0x04, 0xd4, 0x09, 0xc9, 0x28, 0xe9, 0x47, 0x0b, 0xa3, 0xc4, 0xf6, 0xf7, 0xd4, - 0x74, 0x4c, 0x46, 0xd4, 0x7e, 0x07, 0x1b, 0xa7, 0x01, 0xa5, 0xe3, 0x69, 0x40, 0x2f, 0xa0, 0x62, - 0x18, 0x9c, 0xe5, 0x39, 0xa1, 0x78, 0xc3, 0x50, 0xbc, 0x71, 0x90, 0x02, 0x70, 0x06, 0xb5, 0x7f, - 0x28, 0x42, 0xe5, 0x1d, 0x91, 0x49, 0x63, 0xef, 0xc3, 0x2a, 0x49, 0x32, 0x93, 0x1e, 0x71, 0x3f, - 0x17, 0x7a, 0x3e, 0x6f, 0xdd, 0x02, 0x36, 0x1e, 0xe8, 0x15, 0xac, 0x24, 0x09, 0x48, 0xaf, 0x7d, - 0x2f, 0xe7, 0x9b, 0xcb, 0x60, 0xb7, 0x80, 0x53, 0x3c, 0x7a, 0x01, 0xcb, 0x42, 0x5d, 0x26, 0xe5, - 0xdf, 0xdd, 0xbc, 0xe3, 0xcc, 0x45, 0x15, 0xb1, 0x34, 0x5a, 0x15, 0x35, 0xd3, 0x18, 0xfb, 0xfb, - 0x22, 0x58, 0x2d, 0xce, 0xc9, 0x44, 0x5f, 0xe4, 0x21, 0x94, 0x35, 0xa1, 0x8b, 0x8b, 0xc5, 0x46, - 0x03, 0xd0, 0x0e, 0xac, 0x8d, 0x09, 0x27, 0x41, 0x40, 0x03, 0x26, 0x46, 0x3a, 0xf2, 0x2a, 0xbe, - 0xbc, 0x85, 0x7e, 0x0b, 0xd5, 0x11, 0x0b, 0x1d, 0x11, 0xbb, 0x2e, 0x15, 0x82, 0x0a, 0x1d, 0x64, - 0xb5, 0x5b, 0xc0, 0xeb, 0x23, 0x16, 0x9e, 0x9a, 0x5d, 0xf4, 0x04, 0xb6, 0x2e, 0xc1, 0x1c, 0x9d, - 0x5d, 0xad, 0x0f, 0xa5, 0x6e, 0x01, 0x6f, 0x4e, 0xa1, 0x58, 0x19, 0xda, 0x48, 0xb5, 0x75, 0x82, - 0x74, 0xb9, 0x6a, 0x07, 0x46, 0xec, 0x1f, 0x8b, 0xb0, 0xae, 0x22, 0x3b, 0xa2, 0x92, 0x78, 0x44, - 0x12, 0x84, 0xa0, 0xac, 0xbb, 0x20, 0xe9, 0x2e, 0xfd, 0xac, 0x34, 0x43, 0xb2, 0x11, 0x8d, 0x62, - 0x99, 0x8a, 0xcf, 0x17, 0x8a, 0x6c, 0x90, 0x68, 0x0f, 0x56, 0x39, 0x95, 0x9c, 0x51, 0x51, 0x5f, - 0xd6, 0x4e, 0x77, 0x72, 0x09, 0xc1, 0x54, 0xf2, 0xc9, 0xa9, 0xe4, 0x44, 0xd2, 0xe1, 0x04, 0x1b, - 0x30, 0xfa, 0x1d, 0x54, 0xf5, 0x9c, 0xe2, 0xf1, 0x58, 0xb2, 0x41, 0x40, 0xeb, 0x2b, 0x3b, 0xc5, - 0xdd, 0x8a, 0x22, 0xe9, 0xcc, 0x76, 0xfb, 0x57, 0x70, 0x63, 0x66, 0xc3, 0xb9, 0x20, 0x41, 0xac, - 0x78, 0xb6, 0xdc, 0x0a, 0x18, 0x11, 0xa8, 0x06, 0x4b, 0x17, 0x84, 0xa7, 0xf7, 0x50, 0x8f, 0x68, - 0x1b, 0x96, 0x89, 0x32, 0xe9, 0x84, 0x5b, 0x38, 0x59, 0xd8, 0xdf, 0x94, 0xa1, 0xac, 0xcb, 0xb7, - 0x01, 0xa5, 0x8c, 0x55, 0x25, 0xe6, 0xa1, 0x97, 0x50, 0x19, 0xa5, 0x59, 0x49, 0x9b, 0xeb, 0xf6, - 0x9c, 0x92, 0x9a, 0xc4, 0xe1, 0x0c, 0x8c, 0x1a, 0xb0, 0xc2, 0xc2, 0x71, 0x2c, 0x55, 0xd5, 0xe6, - 0x0d, 0x83, 0x36, 0x0b, 0x3d, 0x16, 0x0e, 0x71, 0x8a, 0x42, 0x8f, 0x61, 0x2b, 0x1e, 0x0b, 0xc9, - 0x29, 0x19, 0xe9, 0x89, 0xe0, 0x30, 0x4f, 0xd4, 0xcb, 0x3b, 0x4b, 0xbb, 0x16, 0xde, 0x34, 0x06, - 0xf5, 0xaa, 0x9e, 0x27, 0xd0, 0x3e, 0x6c, 0xa4, 0xa4, 0xd5, 0xd1, 0xeb, 0xe4, 0x2e, 0xcd, 0x19, - 0x07, 0x3a, 0x07, 0xb8, 0x9a, 0x60, 0x5b, 0x09, 0x14, 0xed, 0x81, 0xa5, 0xa6, 0x78, 0x32, 0x76, - 0x56, 0xf4, 0x95, 0x7e, 0xb3, 0x40, 0x79, 0xd5, 0xe8, 0x91, 0x46, 0xf1, 0xdb, 0x50, 0xcd, 0xb4, - 0x50, 0xfb, 0xae, 0xce, 0x4d, 0xc7, 0x65, 0x1d, 0x56, 0xad, 0xfa, 0xe9, 0xb2, 0x2e, 0xff, 0x19, - 0xd6, 0x06, 0x7a, 0x0a, 0x25, 0x27, 0x54, 0xe6, 0xca, 0xe9, 0x74, 0x4e, 0x75, 0x0b, 0x18, 0x06, - 0xd3, 0xa9, 0xb5, 0x07, 0xd6, 0x90, 0xc8, 0x74, 0x60, 0x5a, 0x73, 0x23, 0x37, 0x7a, 0xa2, 0x22, - 0x1f, 0x1a, 0x6d, 0xf9, 0x23, 0x00, 0x51, 0xfc, 0x4c, 0x1c, 0x41, 0x3b, 0xd6, 0xf3, 0xa9, 0x32, - 0x04, 0xee, 0x16, 0xb0, 0x45, 0xcc, 0xa2, 0x5d, 0x81, 0x15, 0x49, 0xf8, 0x90, 0x4a, 0xfb, 0xe7, - 0x12, 0xd4, 0xcc, 0xdd, 0x32, 0x9e, 0x1c, 0x01, 0xfa, 0x18, 0x93, 0x80, 0xc9, 0x89, 0x13, 0xf9, - 0x8e, 0xa0, 0xfc, 0x82, 0xb9, 0x8b, 0x04, 0xec, 0x43, 0x02, 0x3c, 0xf1, 0x4f, 0x13, 0x18, 0xae, - 0x7d, 0xcc, 0xed, 0xa0, 0x63, 0x80, 0x28, 0x74, 0x7c, 0xc2, 0x82, 0x98, 0x27, 0x12, 0xbe, 0xf1, - 0xac, 0xb9, 0x20, 0xbf, 0x26, 0x86, 0xc6, 0x49, 0xf8, 0x36, 0x71, 0x78, 0x1f, 0x05, 0xcc, 0x9d, - 0x60, 0x2b, 0x32, 0x1b, 0xe8, 0x2f, 0x50, 0x96, 0x64, 0x68, 0x3a, 0xf0, 0xd1, 0x75, 0x27, 0xf5, - 0xc9, 0x50, 0x74, 0x42, 0xc9, 0x27, 0x58, 0xbb, 0xdd, 0x7a, 0x09, 0x56, 0xb6, 0xa5, 0x98, 0x74, - 0x4e, 0x27, 0x86, 0x49, 0xe7, 0x74, 0xa2, 0x98, 0xa4, 0xd9, 0x66, 0x98, 0xa4, 0x17, 0x7f, 0x2a, - 0xbd, 0x2a, 0xda, 0x1f, 0x60, 0x33, 0x17, 0x15, 0xda, 0x86, 0xda, 0xdb, 0x56, 0xef, 0xd0, 0xe9, - 0x1d, 0x1d, 0x75, 0x0e, 0x7a, 0xad, 0x7e, 0xe7, 0xf0, 0x5f, 0xb5, 0x02, 0xda, 0x85, 0x07, 0x7a, - 0xb7, 0xf5, 0xb6, 0xdf, 0xc1, 0x4e, 0xe7, 0x9f, 0x9d, 0x37, 0x7f, 0xeb, 0xb7, 0xda, 0x87, 0x1d, - 0xe7, 0xf8, 0xe4, 0xa0, 0x73, 0xea, 0xbc, 0x39, 0x39, 0x7a, 0x7f, 0xd8, 0xe9, 0x77, 0x6a, 0x45, - 0xfb, 0xaf, 0x50, 0xcf, 0xc7, 0x7b, 0x90, 0x7c, 0xda, 0x08, 0xf4, 0x20, 0x2f, 0x16, 0x2a, 0xc8, - 0x4a, 0x4e, 0x2a, 0xec, 0x6f, 0x97, 0xa6, 0x05, 0xec, 0xd3, 0xd1, 0x38, 0x20, 0x92, 0xa2, 0x47, - 0x19, 0xdd, 0xbf, 0x34, 0xd6, 0xb5, 0x12, 0xec, 0x5f, 0x51, 0x82, 0xfb, 0xd7, 0x24, 0xf4, 0x92, - 0x1a, 0xec, 0x83, 0x95, 0x7d, 0x77, 0x2f, 0x98, 0x35, 0x6a, 0x28, 0x7b, 0x3d, 0x03, 0xc2, 0x53, - 0x3c, 0x7a, 0x04, 0xcb, 0xaa, 0x73, 0x13, 0x39, 0x58, 0x30, 0x53, 0x12, 0x04, 0x7a, 0x0a, 0xab, - 0x09, 0xdb, 0x8d, 0x24, 0x2c, 0x92, 0x1d, 0x03, 0x43, 0x7b, 0xb0, 0x9e, 0x36, 0xdc, 0x65, 0x45, - 0x98, 0xfb, 0x8e, 0xb5, 0x14, 0xa8, 0x49, 0xd5, 0x87, 0x2d, 0x73, 0x3b, 0x27, 0xfd, 0xc8, 0x14, - 0xa9, 0x24, 0x3c, 0xbc, 0x26, 0x2f, 0xa6, 0x70, 0xb8, 0x36, 0xca, 0xed, 0xd8, 0xff, 0x2f, 0xc2, - 0xd6, 0x95, 0xef, 0x3e, 0x45, 0x7c, 0x4e, 0x45, 0x14, 0x73, 0x97, 0x8a, 0xb4, 0x58, 0xf5, 0x2b, - 0x73, 0x24, 0xb5, 0xe3, 0x29, 0x14, 0x1d, 0xc2, 0x96, 0x59, 0x38, 0xd7, 0xd4, 0xce, 0xf8, 0x67, - 0xb5, 0xab, 0xf1, 0xdc, 0x4e, 0x7b, 0xef, 0xdf, 0x7f, 0x18, 0x32, 0x79, 0x16, 0x0f, 0x1a, 0x6e, - 0x34, 0x6a, 0x6a, 0xf7, 0x88, 0x0f, 0x9b, 0xd9, 0xaf, 0xce, 0x90, 0x86, 0xcd, 0xf1, 0xe0, 0xf7, - 0xc3, 0xa8, 0x39, 0xf3, 0xf7, 0x33, 0x58, 0xd1, 0xf3, 0xf1, 0xf9, 0x2f, 0x01, 0x00, 0x00, 0xff, - 0xff, 0xbe, 0x0b, 0xb7, 0x51, 0x13, 0x0e, 0x00, 0x00, + // 1448 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x57, 0x4d, 0x73, 0xdb, 0xba, + 0x15, 0x95, 0x64, 0xd9, 0x16, 0xaf, 0x2d, 0x5b, 0x46, 0xdc, 0x56, 0xf9, 0xf6, 0x70, 0xd2, 0xc6, + 0xc9, 0xa4, 0x52, 0x26, 0x69, 0x9c, 0xb4, 0x6e, 0x33, 0x95, 0x62, 0x25, 0xd2, 0xd4, 0x1f, 0x09, + 0xac, 0x7e, 0x6e, 0x38, 0x10, 0x09, 0xca, 0x18, 0x53, 0xa4, 0x02, 0x80, 0x4e, 0x34, 0xfd, 0x13, + 0xdd, 0x75, 0xf9, 0x66, 0xde, 0xe2, 0xfd, 0x8d, 0xb7, 0x7a, 0xdb, 0xb7, 0x7a, 0x3f, 0xe7, 0x2d, + 0xde, 0x00, 0x24, 0x28, 0x8b, 0x96, 0xe2, 0xec, 0x44, 0xdc, 0x73, 0xc1, 0x83, 0x8b, 0x7b, 0xce, + 0xa5, 0xe0, 0x8e, 0x1f, 0x4c, 0x24, 0x65, 0x5e, 0xd0, 0x74, 0x23, 0x4e, 0x9b, 0x9f, 0x22, 0x7e, + 0xee, 0x07, 0xd1, 0xa7, 0xc6, 0x98, 0x47, 0x32, 0x42, 0x55, 0x13, 0x6d, 0xa8, 0xe8, 0xad, 0xbb, + 0xb3, 0x60, 0x37, 0x0a, 0x3d, 0x26, 0x59, 0x14, 0x26, 0xe8, 0x7c, 0x98, 0x7e, 0xa6, 0x6e, 0x7c, + 0x29, 0x7c, 0x6f, 0x36, 0xcc, 0x3c, 0x1a, 0x4a, 0xe6, 0x33, 0xca, 0xe7, 0xa7, 0xb3, 0x50, 0x52, + 0xee, 0x13, 0x97, 0xa6, 0xe1, 0x1c, 0xd3, 0x80, 0x49, 0xca, 0x49, 0x20, 0xd2, 0xe8, 0xcd, 0xd9, + 0xa8, 0x24, 0xe2, 0x7c, 0x51, 0x68, 0x32, 0xa6, 0x62, 0xfe, 0x9e, 0x82, 0xba, 0x31, 0x67, 0x72, + 0x62, 0x08, 0x0f, 0xa3, 0x68, 0x18, 0xd0, 0xa6, 0x7e, 0x1a, 0xc4, 0x7e, 0xd3, 0x8b, 0x39, 0x99, + 0x1e, 0xc8, 0xfe, 0x2f, 0xac, 0xf6, 0xfc, 0x76, 0x10, 0xb9, 0xe7, 0xe8, 0x35, 0x58, 0x59, 0x35, + 0xea, 0xc5, 0x9d, 0xe2, 0xee, 0xda, 0xb3, 0x9d, 0xc6, 0x4c, 0xf1, 0x1a, 0xed, 0x28, 0x0a, 0x28, + 0x09, 0x3b, 0x9f, 0xc7, 0x9c, 0x0a, 0xc1, 0xa2, 0x10, 0x4f, 0x53, 0xd0, 0x53, 0xb0, 0xe4, 0x19, + 0x0d, 0x9d, 0x30, 0xf2, 0x68, 0xbd, 0xa4, 0xf3, 0x6f, 0xe4, 0xf2, 0x8f, 0x23, 0x8f, 0xe2, 0x8a, + 0x42, 0xa9, 0x5f, 0xf6, 0x4f, 0x45, 0x58, 0xeb, 0xf9, 0x9d, 0x40, 0xd0, 0x84, 0xc1, 0x63, 0x28, + 0xbb, 0x44, 0xd0, 0xf4, 0xe5, 0xbf, 0xce, 0x25, 0xa7, 0x3c, 0xb1, 0xc6, 0xa0, 0x27, 0xb0, 0x1c, + 0xc9, 0x33, 0xca, 0xeb, 0xa5, 0x9d, 0xa5, 0x2f, 0x80, 0x13, 0x10, 0x7a, 0x06, 0x16, 0x0d, 0x04, + 0x4d, 0xb8, 0x2d, 0x2d, 0xe4, 0xd6, 0x2d, 0xe0, 0x8a, 0xc2, 0xa9, 0xdf, 0xea, 0x0d, 0x94, 0xf3, + 0x88, 0xd7, 0xcb, 0x1a, 0xbf, 0x9d, 0xc3, 0x77, 0x54, 0xac, 0x5b, 0xc0, 0x09, 0xa8, 0x6d, 0xc1, + 0xaa, 0x47, 0x7d, 0x12, 0x07, 0xd2, 0x6e, 0x01, 0xb4, 0x39, 0x09, 0xdd, 0x33, 0xbd, 0xcd, 0x73, + 0x58, 0x65, 0xbe, 0xa3, 0x76, 0x4d, 0xcf, 0x75, 0xeb, 0x0a, 0xd5, 0xac, 0x02, 0x78, 0x85, 0xe9, + 0x07, 0xfb, 0xff, 0x45, 0xa8, 0xf4, 0x89, 0x38, 0xd7, 0x3b, 0xbc, 0x86, 0x75, 0x4e, 0x7d, 0xca, + 0x69, 0xe8, 0x52, 0x87, 0x79, 0xe9, 0x36, 0x37, 0xf3, 0xdb, 0x64, 0xbd, 0xd8, 0x2d, 0xe0, 0xb5, + 0x2c, 0xa1, 0xe7, 0xa9, 0x8b, 0x8d, 0x2e, 0x28, 0xe7, 0xcc, 0xa3, 0x22, 0xbd, 0x98, 0xfc, 0xc5, + 0x9a, 0x77, 0x9d, 0x18, 0x1c, 0x9e, 0xa6, 0xb4, 0xd7, 0xc0, 0xca, 0xb6, 0xb3, 0xbf, 0x2b, 0xc2, + 0xfa, 0x3f, 0x53, 0x85, 0x69, 0x76, 0x6d, 0xd8, 0x08, 0x48, 0x1c, 0xba, 0x67, 0xe3, 0x80, 0x84, + 0x0e, 0xa7, 0xfe, 0xd7, 0xf0, 0xab, 0x4e, 0x53, 0x30, 0xf5, 0x51, 0x07, 0x6a, 0x22, 0x1e, 0x38, + 0x46, 0xb9, 0x7a, 0x97, 0xd2, 0xf5, 0xbb, 0x6c, 0x88, 0x78, 0x60, 0xb8, 0x60, 0xea, 0xcf, 0x12, + 0x6d, 0x42, 0xad, 0x35, 0x1e, 0xf3, 0xe8, 0x82, 0xbe, 0xc9, 0x5a, 0xf4, 0x36, 0x58, 0x82, 0x0d, + 0x43, 0x12, 0x98, 0x32, 0x5a, 0xb8, 0x92, 0x2c, 0xf4, 0x3c, 0xfb, 0x7f, 0x45, 0xd8, 0x3c, 0xd5, + 0x0f, 0x5f, 0x97, 0x80, 0x1a, 0x50, 0x56, 0x42, 0x4c, 0x99, 0xe6, 0xaf, 0xf5, 0x30, 0x11, 0x77, + 0x7f, 0x32, 0xa6, 0x58, 0xe3, 0xd0, 0x53, 0xd8, 0x8e, 0x62, 0x39, 0x8e, 0xa5, 0x73, 0x41, 0x38, + 0x23, 0x83, 0x80, 0x3a, 0x21, 0x19, 0x25, 0xfd, 0x68, 0x61, 0x94, 0xc4, 0xfe, 0x91, 0x86, 0x8e, + 0xc9, 0x88, 0xda, 0xef, 0x60, 0xe3, 0x34, 0xa0, 0x74, 0x3c, 0x25, 0xf4, 0x02, 0x2a, 0x46, 0xc1, + 0x59, 0x9d, 0x13, 0x89, 0x37, 0x8c, 0xc4, 0x1b, 0x07, 0x29, 0x00, 0x67, 0x50, 0xfb, 0x87, 0x22, + 0x54, 0xde, 0x11, 0x99, 0x34, 0xf6, 0x3e, 0xac, 0x92, 0xa4, 0x32, 0xe9, 0x16, 0xf7, 0x73, 0xd4, + 0xf3, 0x75, 0xeb, 0x16, 0xb0, 0xc9, 0x40, 0xaf, 0x60, 0x25, 0x29, 0x40, 0x7a, 0xec, 0x7b, 0xb9, + 0xdc, 0x5c, 0x05, 0xbb, 0x05, 0x9c, 0xe2, 0xd1, 0x0b, 0x58, 0x16, 0xea, 0x30, 0xa9, 0xfe, 0xee, + 0xe6, 0x13, 0x67, 0x0e, 0xaa, 0x84, 0xa5, 0xd1, 0xea, 0x52, 0x33, 0x8f, 0xb1, 0xbf, 0x2f, 0x82, + 0xd5, 0xe2, 0x9c, 0x4c, 0xf4, 0x41, 0x1e, 0x42, 0x59, 0x0b, 0xba, 0xb8, 0xd8, 0x6c, 0x34, 0x00, + 0xed, 0xc0, 0xda, 0x98, 0x70, 0x12, 0x04, 0x34, 0x60, 0x62, 0xa4, 0x99, 0x57, 0xf1, 0xe5, 0x25, + 0xf4, 0x5b, 0xa8, 0x8e, 0x58, 0xe8, 0x88, 0xd8, 0x75, 0xa9, 0x10, 0x54, 0x68, 0x92, 0xd5, 0x6e, + 0x01, 0xaf, 0x8f, 0x58, 0x78, 0x6a, 0x56, 0xd1, 0x13, 0xd8, 0xba, 0x04, 0x73, 0x74, 0x75, 0xb5, + 0x3f, 0x94, 0xba, 0x05, 0xbc, 0x39, 0x85, 0x62, 0x15, 0x68, 0x23, 0xd5, 0xd6, 0x09, 0xd2, 0xe5, + 0xaa, 0x1d, 0x18, 0xb1, 0x7f, 0x2c, 0xc2, 0xba, 0x62, 0x76, 0x44, 0x25, 0xf1, 0x88, 0x24, 0x08, + 0x41, 0x59, 0x77, 0x41, 0xd2, 0x5d, 0xfa, 0xb7, 0xf2, 0x0c, 0xc9, 0x46, 0x34, 0x8a, 0x65, 0x6a, + 0x3e, 0x5f, 0xb8, 0x64, 0x83, 0x44, 0x7b, 0xb0, 0xca, 0xa9, 0xe4, 0x8c, 0x8a, 0xfa, 0xb2, 0x4e, + 0xba, 0x93, 0x2b, 0x08, 0xa6, 0x92, 0x4f, 0x4e, 0x25, 0x27, 0x92, 0x0e, 0x27, 0xd8, 0x80, 0xd1, + 0xef, 0xa0, 0xaa, 0xe7, 0x14, 0x8f, 0xc7, 0x92, 0x0d, 0x02, 0x5a, 0x5f, 0xd9, 0x29, 0xee, 0x56, + 0x94, 0x48, 0x67, 0x96, 0xdb, 0xbf, 0x82, 0x1b, 0x33, 0x0b, 0xce, 0x05, 0x09, 0x62, 0xa5, 0xb3, + 0xe5, 0x56, 0xc0, 0x88, 0x40, 0x35, 0x58, 0xba, 0x20, 0x3c, 0x3d, 0x87, 0xfa, 0x89, 0xb6, 0x61, + 0x99, 0xa8, 0x90, 0x2e, 0xb8, 0x85, 0x93, 0x07, 0xfb, 0x9b, 0x32, 0x94, 0xf5, 0xf5, 0x6d, 0x40, + 0x29, 0x53, 0x55, 0x89, 0x79, 0xe8, 0x25, 0x54, 0x46, 0x69, 0x55, 0xd2, 0xe6, 0xba, 0x3d, 0xe7, + 0x4a, 0x4d, 0xe1, 0x70, 0x06, 0x46, 0x0d, 0x58, 0x61, 0xe1, 0x38, 0x96, 0xea, 0xd6, 0xe6, 0x0d, + 0x83, 0x36, 0x0b, 0x3d, 0x16, 0x0e, 0x71, 0x8a, 0x42, 0x8f, 0x61, 0x2b, 0x1e, 0x0b, 0xc9, 0x29, + 0x19, 0xe9, 0x89, 0xe0, 0x30, 0x4f, 0xd4, 0xcb, 0x3b, 0x4b, 0xbb, 0x16, 0xde, 0x34, 0x01, 0xf5, + 0xaa, 0x9e, 0x27, 0xd0, 0x3e, 0x6c, 0xa4, 0xa2, 0xd5, 0xec, 0x75, 0x71, 0x97, 0xe6, 0x8c, 0x03, + 0x5d, 0x03, 0x5c, 0x4d, 0xb0, 0xad, 0x04, 0x8a, 0xf6, 0xc0, 0x52, 0x53, 0x3c, 0x19, 0x3b, 0x2b, + 0xfa, 0x48, 0xbf, 0x59, 0xe0, 0xbc, 0x6a, 0xf4, 0x48, 0xe3, 0xf8, 0x6d, 0xa8, 0x66, 0x5e, 0xa8, + 0x73, 0x57, 0xe7, 0x96, 0xe3, 0xb2, 0x0f, 0xab, 0x56, 0xfd, 0x74, 0xd9, 0x97, 0xff, 0x0c, 0x6b, + 0x03, 0x3d, 0x85, 0x92, 0x1d, 0x2a, 0x73, 0xed, 0x74, 0x3a, 0xa7, 0xba, 0x05, 0x0c, 0x83, 0xe9, + 0xd4, 0xda, 0x03, 0x6b, 0x48, 0x64, 0x3a, 0x30, 0xad, 0xb9, 0xcc, 0x8d, 0x9f, 0x28, 0xe6, 0x43, + 0xe3, 0x2d, 0x7f, 0x04, 0x20, 0x4a, 0x9f, 0x49, 0x22, 0xe8, 0xc4, 0x7a, 0xbe, 0x54, 0x46, 0xc0, + 0xdd, 0x02, 0xb6, 0x88, 0x79, 0x68, 0x57, 0x60, 0x45, 0x12, 0x3e, 0xa4, 0xd2, 0xfe, 0xb9, 0x04, + 0x35, 0x73, 0xb6, 0x4c, 0x27, 0x47, 0x80, 0x3e, 0xc6, 0x24, 0x60, 0x72, 0xe2, 0x44, 0xbe, 0x23, + 0x28, 0xbf, 0x60, 0xee, 0x22, 0x03, 0xfb, 0x90, 0x00, 0x4f, 0xfc, 0xd3, 0x04, 0x86, 0x6b, 0x1f, + 0x73, 0x2b, 0xe8, 0x18, 0x20, 0x0a, 0x1d, 0x9f, 0xb0, 0x20, 0xe6, 0x89, 0x85, 0x6f, 0x3c, 0x6b, + 0x2e, 0xa8, 0xaf, 0xe1, 0xd0, 0x38, 0x09, 0xdf, 0x26, 0x09, 0xef, 0xa3, 0x80, 0xb9, 0x13, 0x6c, + 0x45, 0x66, 0x01, 0xfd, 0x05, 0xca, 0x92, 0x0c, 0x4d, 0x07, 0x3e, 0xba, 0x6e, 0xa7, 0x3e, 0x19, + 0x8a, 0x4e, 0x28, 0xf9, 0x04, 0xeb, 0xb4, 0x5b, 0x2f, 0xc1, 0xca, 0x96, 0x94, 0x92, 0xce, 0xe9, + 0xc4, 0x28, 0xe9, 0x9c, 0x4e, 0x94, 0x92, 0xb4, 0xda, 0x8c, 0x92, 0xf4, 0xc3, 0x9f, 0x4a, 0xaf, + 0x8a, 0xf6, 0x07, 0xd8, 0xcc, 0xb1, 0x42, 0xdb, 0x50, 0x7b, 0xdb, 0xea, 0x1d, 0x3a, 0xbd, 0xa3, + 0xa3, 0xce, 0x41, 0xaf, 0xd5, 0xef, 0x1c, 0xfe, 0xbb, 0x56, 0x40, 0xbb, 0xf0, 0x40, 0xaf, 0xb6, + 0xde, 0xf6, 0x3b, 0xd8, 0xe9, 0xfc, 0xab, 0xf3, 0xe6, 0xef, 0xfd, 0x56, 0xfb, 0xb0, 0xe3, 0x1c, + 0x9f, 0x1c, 0x74, 0x4e, 0x9d, 0x37, 0x27, 0x47, 0xef, 0x0f, 0x3b, 0xfd, 0x4e, 0xad, 0x68, 0xff, + 0x15, 0xea, 0x79, 0xbe, 0x07, 0xc9, 0xa7, 0x8d, 0x40, 0x0f, 0xf2, 0x66, 0xa1, 0x48, 0x56, 0x72, + 0x56, 0x61, 0x7f, 0xbb, 0x34, 0xbd, 0xc0, 0x3e, 0x1d, 0x8d, 0x03, 0x22, 0x29, 0x7a, 0x94, 0xc9, + 0xfd, 0x4b, 0x63, 0x5d, 0x3b, 0xc1, 0xfe, 0x15, 0x27, 0xb8, 0x7f, 0x4d, 0x41, 0x2f, 0xb9, 0xc1, + 0x3e, 0x58, 0xd9, 0x77, 0xf7, 0x82, 0x59, 0xa3, 0x86, 0xb2, 0xd7, 0x33, 0x20, 0x3c, 0xc5, 0xa3, + 0x47, 0xb0, 0xac, 0x3a, 0x37, 0xb1, 0x83, 0x05, 0x33, 0x25, 0x41, 0xa0, 0xa7, 0xb0, 0x9a, 0xa8, + 0xdd, 0x58, 0xc2, 0x22, 0xdb, 0x31, 0x30, 0xb4, 0x07, 0xeb, 0x69, 0xc3, 0x5d, 0x76, 0x84, 0xb9, + 0xef, 0x58, 0x4b, 0x81, 0x5a, 0x54, 0x7d, 0xd8, 0x32, 0xa7, 0x73, 0xd2, 0x8f, 0x4c, 0x91, 0x5a, + 0xc2, 0xc3, 0x6b, 0xea, 0x62, 0x2e, 0x0e, 0xd7, 0x46, 0xb9, 0x15, 0xfb, 0x6f, 0xb0, 0x75, 0xe5, + 0xb3, 0x4f, 0xe9, 0x9e, 0x53, 0x11, 0xc5, 0xdc, 0xa5, 0x22, 0xbd, 0xab, 0xfa, 0x95, 0x31, 0x92, + 0xc6, 0xf1, 0x14, 0xda, 0xde, 0xfb, 0xcf, 0x1f, 0x86, 0x4c, 0x9e, 0xc5, 0x83, 0x86, 0x1b, 0x8d, + 0x9a, 0x3a, 0x21, 0xe2, 0xc3, 0x66, 0xf6, 0xdf, 0x64, 0x48, 0xc3, 0xe6, 0x78, 0xf0, 0xfb, 0x61, + 0xd4, 0x9c, 0xf9, 0xbb, 0x32, 0x58, 0xd1, 0x03, 0xed, 0xf9, 0x2f, 0x01, 0x00, 0x00, 0xff, 0xff, + 0xc8, 0xd8, 0x49, 0xbd, 0xc4, 0x0d, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/workflow.pb.validate.go b/gen/pb-go/flyteidl/core/workflow.pb.validate.go index fe36f9467..cf7a679a1 100644 --- a/gen/pb-go/flyteidl/core/workflow.pb.validate.go +++ b/gen/pb-go/flyteidl/core/workflow.pb.validate.go @@ -1549,16 +1549,6 @@ func (m *TaskNodeOverrides) Validate() error { } } - if v, ok := interface{}(m.GetResourceMetadata()).(interface{ Validate() error }); ok { - if err := v.Validate(); err != nil { - return TaskNodeOverridesValidationError{ - field: "ResourceMetadata", - reason: "embedded message failed validation", - cause: err, - } - } - } - return nil } diff --git a/gen/pb-go/flyteidl/service/admin.swagger.json b/gen/pb-go/flyteidl/service/admin.swagger.json index 42644b11e..674d87a91 100644 --- a/gen/pb-go/flyteidl/service/admin.swagger.json +++ b/gen/pb-go/flyteidl/service/admin.swagger.json @@ -6026,22 +6026,6 @@ }, "description": "Represents the error message from the execution." }, - "coreGPUAccelerator": { - "type": "object", - "properties": { - "device": { - "type": "string" - }, - "unpartitioned": { - "type": "boolean", - "format": "boolean" - }, - "partition_size": { - "type": "string" - } - }, - "title": "Metadata associated with the GPU accelerator to allocate to a task" - }, "coreGateNode": { "type": "object", "properties": { @@ -6593,15 +6577,6 @@ }, "description": "Represents customized execution run-time attributes." }, - "coreResourceMetadata": { - "type": "object", - "properties": { - "gpu_accelerator": { - "$ref": "#/definitions/coreGPUAccelerator" - } - }, - "title": "Additional metadata associated with resources to allocate to a task" - }, "coreResourceType": { "type": "string", "enum": [ @@ -7010,10 +6985,6 @@ "pod_template_name": { "type": "string", "description": "pod_template_name is the unique name of a PodTemplate k8s resource to be used as the base configuration if this\ntask creates a k8s Pod. If this value is set, the specified PodTemplate will be used instead of, but applied\nidentically as, the default PodTemplate configured in FlytePropeller." - }, - "resource_metadata": { - "$ref": "#/definitions/coreResourceMetadata", - "title": "Additional metadata associated with resources to allocate to this task" } }, "title": "Task Metadata" @@ -7038,10 +7009,6 @@ "resources": { "$ref": "#/definitions/coreResources", "description": "A customizable interface to convey resources requested for a task container." - }, - "resource_metadata": { - "$ref": "#/definitions/coreResourceMetadata", - "title": "Additional metadata associated with resources to allocate to this task" } }, "description": "Optional task node overrides that will be applied at task execution time." diff --git a/gen/pb-go/flyteidl/service/agent.swagger.json b/gen/pb-go/flyteidl/service/agent.swagger.json index ab47a7259..0a788c919 100644 --- a/gen/pb-go/flyteidl/service/agent.swagger.json +++ b/gen/pb-go/flyteidl/service/agent.swagger.json @@ -365,22 +365,6 @@ }, "description": "Represents an error thrown from a node." }, - "coreGPUAccelerator": { - "type": "object", - "properties": { - "device": { - "type": "string" - }, - "unpartitioned": { - "type": "boolean", - "format": "boolean" - }, - "partition_size": { - "type": "string" - } - }, - "title": "Metadata associated with the GPU accelerator to allocate to a task" - }, "coreIOStrategy": { "type": "object", "properties": { @@ -679,15 +663,6 @@ }, "title": "Primitive Types" }, - "coreResourceMetadata": { - "type": "object", - "properties": { - "gpu_accelerator": { - "$ref": "#/definitions/coreGPUAccelerator" - } - }, - "title": "Additional metadata associated with resources to allocate to a task" - }, "coreResourceType": { "type": "string", "enum": [ @@ -996,10 +971,6 @@ "pod_template_name": { "type": "string", "description": "pod_template_name is the unique name of a PodTemplate k8s resource to be used as the base configuration if this\ntask creates a k8s Pod. If this value is set, the specified PodTemplate will be used instead of, but applied\nidentically as, the default PodTemplate configured in FlytePropeller." - }, - "resource_metadata": { - "$ref": "#/definitions/coreResourceMetadata", - "title": "Additional metadata associated with resources to allocate to this task" } }, "title": "Task Metadata" diff --git a/gen/pb-go/flyteidl/service/external_plugin_service.swagger.json b/gen/pb-go/flyteidl/service/external_plugin_service.swagger.json index 08c2d00a9..bb0e40633 100644 --- a/gen/pb-go/flyteidl/service/external_plugin_service.swagger.json +++ b/gen/pb-go/flyteidl/service/external_plugin_service.swagger.json @@ -328,22 +328,6 @@ }, "description": "Represents an error thrown from a node." }, - "coreGPUAccelerator": { - "type": "object", - "properties": { - "device": { - "type": "string" - }, - "unpartitioned": { - "type": "boolean", - "format": "boolean" - }, - "partition_size": { - "type": "string" - } - }, - "title": "Metadata associated with the GPU accelerator to allocate to a task" - }, "coreIOStrategy": { "type": "object", "properties": { @@ -630,15 +614,6 @@ }, "title": "Primitive Types" }, - "coreResourceMetadata": { - "type": "object", - "properties": { - "gpu_accelerator": { - "$ref": "#/definitions/coreGPUAccelerator" - } - }, - "title": "Additional metadata associated with resources to allocate to a task" - }, "coreResourceType": { "type": "string", "enum": [ @@ -931,10 +906,6 @@ "pod_template_name": { "type": "string", "description": "pod_template_name is the unique name of a PodTemplate k8s resource to be used as the base configuration if this\ntask creates a k8s Pod. If this value is set, the specified PodTemplate will be used instead of, but applied\nidentically as, the default PodTemplate configured in FlytePropeller." - }, - "resource_metadata": { - "$ref": "#/definitions/coreResourceMetadata", - "title": "Additional metadata associated with resources to allocate to this task" } }, "title": "Task Metadata" diff --git a/gen/pb-go/flyteidl/service/flyteadmin/README.md b/gen/pb-go/flyteidl/service/flyteadmin/README.md index fe41c45f5..a60fe53cb 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/README.md +++ b/gen/pb-go/flyteidl/service/flyteadmin/README.md @@ -241,7 +241,6 @@ Class | Method | HTTP request | Description - [CoreError](docs/CoreError.md) - [CoreExecutionError](docs/CoreExecutionError.md) - [CoreGateNode](docs/CoreGateNode.md) - - [CoreGpuAccelerator](docs/CoreGpuAccelerator.md) - [CoreIdentifier](docs/CoreIdentifier.md) - [CoreIdentity](docs/CoreIdentity.md) - [CoreIfBlock](docs/CoreIfBlock.md) @@ -269,7 +268,6 @@ Class | Method | HTTP request | Description - [CorePromiseAttribute](docs/CorePromiseAttribute.md) - [CoreQualityOfService](docs/CoreQualityOfService.md) - [CoreQualityOfServiceSpec](docs/CoreQualityOfServiceSpec.md) - - [CoreResourceMetadata](docs/CoreResourceMetadata.md) - [CoreResourceType](docs/CoreResourceType.md) - [CoreResources](docs/CoreResources.md) - [CoreRetryStrategy](docs/CoreRetryStrategy.md) diff --git a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml index 25bdcdcfe..69a279c1f 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml +++ b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml @@ -9241,11 +9241,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -10386,11 +10381,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -11530,11 +11520,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -13155,11 +13140,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -14300,11 +14280,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -15444,11 +15419,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -15652,11 +15622,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -15920,11 +15885,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -17607,11 +17567,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -18752,11 +18707,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -19896,11 +19846,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -21147,11 +21092,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -21431,11 +21371,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -22128,11 +22063,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -22406,11 +22336,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -24207,11 +24132,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -25352,11 +25272,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -26496,11 +26411,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -28121,11 +28031,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -29266,11 +29171,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -30410,11 +30310,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -30618,11 +30513,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -30886,11 +30776,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -32573,11 +32458,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -33718,11 +33598,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -34862,11 +34737,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -36772,11 +36642,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -37917,11 +37782,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -39061,11 +38921,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -40686,11 +40541,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -41831,11 +41681,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -42975,11 +42820,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -43183,11 +43023,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -43451,11 +43286,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -45138,11 +44968,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -46283,11 +46108,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -47427,11 +47247,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -49284,11 +49099,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -50429,11 +50239,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -51573,11 +51378,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -53198,11 +52998,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -54343,11 +54138,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -55487,11 +55277,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -55695,11 +55480,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -55963,11 +55743,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -57650,11 +57425,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -58795,11 +58565,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -59939,11 +59704,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -61575,11 +61335,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -62720,11 +62475,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -63864,11 +63614,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -65489,11 +65234,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -66634,11 +66374,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -67778,11 +67513,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -67986,11 +67716,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -68254,11 +67979,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -69941,11 +69661,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -71086,11 +70801,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -72230,11 +71940,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -74219,11 +73924,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -75918,11 +75618,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -77063,11 +76758,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -78207,11 +77897,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -79859,11 +79544,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -81004,11 +80684,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -82148,11 +81823,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -83773,11 +83443,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -84918,11 +84583,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -86062,11 +85722,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -86270,11 +85925,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -86538,11 +86188,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -88225,11 +87870,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -89370,11 +89010,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -90514,11 +90149,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -90915,21 +90545,6 @@ definitions: kind: {} message: "message" error_uri: "error_uri" - coreGPUAccelerator: - type: "object" - properties: - device: - type: "string" - unpartitioned: - type: "boolean" - format: "boolean" - partition_size: - type: "string" - title: "Metadata associated with the GPU accelerator to allocate to a task" - example: - partition_size: "partition_size" - unpartitioned: true - device: "device" coreGateNode: type: "object" properties: @@ -93517,11 +93132,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -94232,17 +93842,6 @@ definitions: description: "Represents customized execution run-time attributes." example: queueing_budget: "queueing_budget" - coreResourceMetadata: - type: "object" - properties: - gpu_accelerator: - $ref: "#/definitions/coreGPUAccelerator" - title: "Additional metadata associated with resources to allocate to a task" - example: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" coreResourceType: type: "string" description: "Indicates a resource type within Flyte.\n\n - DATASET: A dataset\ @@ -94939,21 +94538,12 @@ definitions: \ to be used as the base configuration if this\ntask creates a k8s Pod.\ \ If this value is set, the specified PodTemplate will be used instead of,\ \ but applied\nidentically as, the default PodTemplate configured in FlytePropeller." - resource_metadata: - title: "Additional metadata associated with resources to allocate to this\ - \ task" - $ref: "#/definitions/coreResourceMetadata" title: "Task Metadata" example: retries: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -94984,11 +94574,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -95007,18 +94592,9 @@ definitions: description: "A customizable interface to convey resources requested for a\ \ task container." $ref: "#/definitions/coreResources" - resource_metadata: - title: "Additional metadata associated with resources to allocate to this\ - \ task" - $ref: "#/definitions/coreResourceMetadata" description: "Optional task node overrides that will be applied at task execution\ \ time." example: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -95126,11 +94702,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -97376,11 +96947,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -98521,11 +98087,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -99665,11 +99226,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -101570,11 +101126,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -102715,11 +102266,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -103859,11 +103405,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -105484,11 +105025,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -106629,11 +106165,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -107773,11 +107304,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -107981,11 +107507,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -108249,11 +107770,6 @@ definitions: retries: 0 pod_template_name: "pod_template_name" discoverable: true - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" runtime: flavor: "flavor" type: {} @@ -109936,11 +109452,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -111081,11 +110592,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} @@ -112225,11 +111731,6 @@ definitions: project: "project" version: "version" overrides: - resource_metadata: - gpu_accelerator: - partition_size: "partition_size" - unpartitioned: true - device: "device" resources: requests: - name: {} diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_core_gpu_accelerator.go b/gen/pb-go/flyteidl/service/flyteadmin/model_core_gpu_accelerator.go deleted file mode 100644 index 4e16e7463..000000000 --- a/gen/pb-go/flyteidl/service/flyteadmin/model_core_gpu_accelerator.go +++ /dev/null @@ -1,16 +0,0 @@ -/* - * flyteidl/service/admin.proto - * - * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) - * - * API version: version not set - * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) - */ - -package flyteadmin - -type CoreGpuAccelerator struct { - Device string `json:"device,omitempty"` - Unpartitioned bool `json:"unpartitioned,omitempty"` - PartitionSize string `json:"partition_size,omitempty"` -} diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_core_resource_metadata.go b/gen/pb-go/flyteidl/service/flyteadmin/model_core_resource_metadata.go deleted file mode 100644 index 7125a503a..000000000 --- a/gen/pb-go/flyteidl/service/flyteadmin/model_core_resource_metadata.go +++ /dev/null @@ -1,14 +0,0 @@ -/* - * flyteidl/service/admin.proto - * - * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) - * - * API version: version not set - * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) - */ - -package flyteadmin - -type CoreResourceMetadata struct { - GpuAccelerator *CoreGpuAccelerator `json:"gpu_accelerator,omitempty"` -} diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_metadata.go b/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_metadata.go index f17f98bae..658e8e160 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_metadata.go +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_metadata.go @@ -29,5 +29,4 @@ type CoreTaskMetadata struct { Tags map[string]string `json:"tags,omitempty"` // pod_template_name is the unique name of a PodTemplate k8s resource to be used as the base configuration if this task creates a k8s Pod. If this value is set, the specified PodTemplate will be used instead of, but applied identically as, the default PodTemplate configured in FlytePropeller. PodTemplateName string `json:"pod_template_name,omitempty"` - ResourceMetadata *CoreResourceMetadata `json:"resource_metadata,omitempty"` } diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_node_overrides.go b/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_node_overrides.go index 8bb47dc1e..241ad4119 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_node_overrides.go +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_node_overrides.go @@ -13,5 +13,4 @@ package flyteadmin type CoreTaskNodeOverrides struct { // A customizable interface to convey resources requested for a task container. Resources *CoreResources `json:"resources,omitempty"` - ResourceMetadata *CoreResourceMetadata `json:"resource_metadata,omitempty"` } diff --git a/gen/pb-go/flyteidl/service/openapi.go b/gen/pb-go/flyteidl/service/openapi.go index d0a894342..500a0783b 100644 --- a/gen/pb-go/flyteidl/service/openapi.go +++ b/gen/pb-go/flyteidl/service/openapi.go @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x5d\x23\xbd\xdf\xde\x6c\xdc\x71\xcc\xab\xb4\xf3\x41\x25\x4c\x1f\xca\x4d\xa7\xa0\x40\xca\xa2\xaa\xa6\xb3\xf5\x79\xf5\xbd\x24\xe6\x00\x32\x36\x7c\x1c\x73\x22\x03\x23\x3e\xf2\xb6\xb8\x84\x4e\x89\x96\x3e\x46\x4c\x93\x71\xe8\x70\x30\x00\xdb\x0e\x6f\x5b\x77\x1a\x09\x2e\xa5\x8d\xbc\x37\xed\x2c\xcf\x9f\xda\xa2\x96\x9f\x41\x09\x3f\xbf\xbe\x1a\xd7\xab\xfa\x05\xcf\x5c\x7d\x3f\xfb\xb0\x31\xc9\xbe\xb5\xa9\x95\xd5\xfc\x8a\xb5\x58\xa3\x9e\xdf\xf1\xe9\xc5\xb9\x2f\x62\x55\xe9\xba\x5e\xd0\x2f\x44\x56\x6f\x2f\xe9\x57\x9f\x71\x50\xdc\xaf\xd2\xc4\x92\xf2\x7e\xab\x37\xab\x1c\xef\xbb\x0d\x6c\x5e\x65\xeb\x57\xf2\x87\x32\xcd\xac\x0a\x4b\xdf\xd1\x36\xb5\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x76\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\xb5\xad\x58\xcf\xe3\x75\x6f\x61\xd2\x77\x11\xc6\xfc\x7a\x39\xcc\xc9\xa2\x88\xda\x93\x56\x76\x73\x25\xb8\x5b\xec\xfe\x13\xe2\x21\xe1\x5b\x37\x74\xdb\x24\x45\x0f\x1d\x25\x08\x96\x36\x1c\x03\x72\xf9\x2a\x79\x3e\x6b\x98\x87\xfd\x98\x4d\x36\xf0\xa1\x2f\xc2\x10\x5c\x35\xb6\xae\x58\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\x63\x7e\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\x01\x07\xa6\x67\x30\x8f\x49\x9a\x6a\x05\x1e\x54\x13\xc6\x0f\x79\xe6\x74\x96\xd2\x5b\x50\x41\x83\x4e\xf5\x8d\x15\x84\x2b\xe8\x2f\xd8\x21\xf9\x4c\xa5\xd2\x72\x45\x43\xac\xa6\x6b\x04\x24\x1e\xa8\xab\x35\x27\xf6\x86\x1b\x7d\x18\x7c\x77\x7d\x7b\x3f\x3c\x1b\x7d\x28\xa2\xf3\x5d\xfa\x99\x47\x84\x72\x00\xff\x9c\x8d\x98\x0f\xa8\xf5\x00\xc8\xb0\x97\x08\xc7\x71\x81\x6c\x60\x95\x48\x23\xb3\x2d\xe5\xc8\xc1\xa9\x58\x19\x4a\xbb\xa4\x99\x07\xc8\x41\xda\xd7\x93\xb5\xc4\x75\x56\x3a\x39\x26\x93\x6a\x49\xca\xcb\x8e\x2e\x9b\x10\xbb\x55\x19\x5d\x9b\x28\x07\x2e\xc8\xc8\xb3\xd3\x95\xe0\x76\x3e\xc6\xe6\x12\x5e\x8f\xdb\xb9\x0d\xd9\x60\x53\x3f\xd2\xcf\x24\xbe\x6d\x91\xaa\x76\x92\xd1\xd2\x29\x12\xb0\x71\x17\x72\x46\xd7\xd1\xf8\xfd\x54\x1e\xf4\x77\xdd\xd9\xd2\x75\x01\xc9\x56\xc0\xab\x02\xb6\xaa\x42\x18\x45\x44\x28\x4c\x19\x9a\xc2\xc1\x66\xd1\x02\x01\x60\x07\x01\x1f\xf6\x1f\x51\x4a\x19\x20\x07\x2c\x5b\xda\x87\xf2\x3c\xd6\x10\x5a\x2f\xcf\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\x83\x9f\x97\xca\xaa\x95\x16\x96\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xc6\x89\x26\x0b\x45\x1e\x6e\x2f\xb6\x92\xef\x9a\x9d\x65\xad\x18\xe1\xa1\x74\xd5\x8c\x88\xd0\xe5\xd3\x98\x44\xab\x50\x4c\xbb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x32\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\x76\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x8d\x93\x66\x87\xb2\x24\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\x47\xa6\x42\xfc\x40\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x11\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\x06\x37\xe7\x0d\x6b\x7d\x51\x75\x21\x7d\x59\xe5\x6c\x12\xef\xcd\xda\x35\x48\x52\x90\x9e\xb8\x17\xa8\x48\x76\xa6\xdb\xc1\x20\x19\xa7\xff\x4d\x39\x92\x60\x1f\xd0\x7a\x9b\x54\x86\x52\xda\xf1\x0a\x60\xde\xf5\x32\xf1\x8a\x65\x58\x13\xf4\x28\x1c\x90\x4d\x03\x09\x81\x7e\xea\x31\xc6\x07\x21\xf0\x0f\x37\x05\x73\x6d\x6c\xc1\xce\xc0\x90\x8a\xd9\x74\x41\x43\xfa\xd1\x50\xb4\x07\xcb\x00\xf8\x0f\x57\x90\xd1\xc5\x06\xdb\xdc\xf5\x70\xba\x21\xb5\xad\x07\xa0\x54\x8c\xcf\x99\xbf\x2d\x16\x35\xce\xb0\xb5\x3b\x80\x12\xe5\x2a\x25\x34\x15\xd6\x3b\x1a\xb1\x20\x60\x45\x1a\xb5\x47\x9f\x11\x57\x9c\x04\x2a\xde\x32\x00\xb6\x86\x24\x1d\x2f\xfc\x94\x76\xa0\x9a\x22\xaf\xe6\xe5\xf2\x22\xb5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\xa0\x33\xad\xab\x38\x04\xc7\x6a\xa5\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xcd\xaa\xfe\x39\x23\xd1\x26\x10\x32\x37\x58\xe0\x94\x28\x22\x96\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x2a\x48\x18\x3f\x8b\xb5\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x35\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x6d\xe7\xf4\x3a\x50\x28\xf7\x35\x50\x91\x52\xb8\xd0\x9e\x60\xa0\xac\x1e\x65\x1b\xf8\xc9\x2a\x5e\xba\x13\xde\xed\x32\x1c\x5c\x0a\x6d\xe5\x50\x95\x72\x27\x80\x4a\x40\xa5\x32\x38\x20\xcd\x00\x26\x20\xb4\x34\x45\x48\x06\x6e\x3f\x0b\x6f\x57\x18\x74\xad\x64\x55\x2d\x2e\x55\x59\xae\x15\x3c\x6e\x57\xe0\x0e\xbd\x44\xb3\x6b\x89\x66\x15\x29\x97\xa2\x6b\x35\x75\x12\x51\xc1\x99\xb1\x45\x9f\x2d\x40\x40\x79\x82\x90\x7b\x64\xaf\x48\x5b\x39\x16\xae\x7e\xca\xfc\xbf\xca\x1c\xdc\x11\x75\x48\xaa\x4d\x49\x95\x47\x81\x0b\x0a\x3c\x50\x49\x28\x0d\xd8\xb8\x1a\x18\xad\x09\x83\x34\x56\xfe\xf3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x07\xf0\x16\xc0\x20\xc8\x7c\x92\x52\x85\x70\x30\xc3\x92\x49\xf2\xc0\x9e\x67\xfd\x01\xcc\xb8\x31\xcf\xbe\x09\xa2\x67\xc5\xa1\xd9\xc0\xbe\x56\x34\xb2\x6d\x2a\x7d\x10\xd3\xfc\xb2\xc9\xf4\x81\xc6\x13\x6a\x98\x8d\x67\xae\xcf\xa6\x47\xcd\xd6\x06\x0b\x1a\x0a\xc8\xae\x54\xaa\xca\xdd\x62\x0d\x3d\x2b\x32\xe9\x8b\x8d\xe8\x94\x4a\x5f\xbc\xbe\x8b\x5c\xfa\xb6\x32\x65\xcb\x72\x2b\xdd\x27\x2d\xf6\x6f\x97\xb3\xab\xb8\x0b\x9c\x0f\x25\xa5\x9b\x56\x49\x69\xdf\x50\xcd\x8a\x84\x80\xcd\xc3\xcb\xd7\x51\x07\x8b\xfc\xac\x90\x8a\x82\x74\xcb\x32\x26\x0c\xa9\x72\x7e\xc6\x15\xe4\xd4\x44\x50\xc2\xbd\x96\xe7\x39\x62\xcd\x12\xc8\x72\x9e\xb8\x6d\x8a\xc6\x4e\xd1\xcf\x82\xf3\xe7\x66\x61\x2d\x5a\x3f\xf9\x20\x37\xa3\x2c\xdb\x62\xec\x55\x11\xb3\x70\xf1\xb5\x05\x27\x69\xc1\x63\x93\x84\xe3\x86\x53\xd9\x3c\xf4\x5a\x02\xc5\xca\x73\x61\x2f\xdd\x1d\xaa\x76\x35\xee\xdc\x39\xdf\xc4\xcb\xc8\x96\x1b\xbb\x80\x69\xa7\xc6\x57\x3c\xb5\x9b\x14\x99\x05\x50\xd1\x9d\x41\xa1\x56\xd1\x09\x74\xe3\x07\xe0\xdd\xb5\x43\xc7\x26\xd2\xc5\x03\x74\x57\xb6\xa4\x34\x61\x5b\xbc\xff\x05\x26\xbd\x6e\x61\xe0\xc0\xdb\x28\x6c\xb4\x2f\x0d\xed\x06\x50\x11\xd8\x06\x49\x56\xf8\xb0\x17\xed\x72\x16\x13\xc1\x08\x56\xf3\xd7\xcb\xb1\x38\xdd\xd6\x38\x1d\x8c\xef\x65\xf3\x2d\x4e\x77\x52\x15\x3e\x1c\x6e\xb9\x42\xfa\xca\x71\xea\xd7\xbb\xd8\x89\x6c\xe8\x81\xaf\x11\x5c\x53\x1c\x1b\x8c\x86\x01\x04\xcd\x3a\x54\xba\x55\x1a\x46\xb3\x32\xf7\x32\x09\x29\x0d\x56\x9f\x5a\x2a\x8a\x3e\xec\x61\x65\xe5\x15\x4b\xf2\x45\x64\x7e\xbc\x7c\x32\xc2\xb2\x1a\xce\x79\x90\x9f\x00\x85\xb4\x15\xa6\xcc\x72\xaf\x65\x29\x09\x5a\xa2\x4c\x71\x53\x16\xc2\xde\xe7\xb7\x7c\xf1\xe9\x2d\x7d\xb2\x43\x9f\xec\xd0\xb0\x47\x7d\xb2\x03\x42\xfb\x96\xec\xb0\x4a\x01\x5d\x66\xfe\xf4\x1e\x39\xa8\xb5\x59\x2a\x70\x63\xf6\x77\x85\x16\xb9\x79\x40\xbf\xb3\x20\x86\xd1\x50\xf6\x17\xfb\x43\x63\x40\x54\xed\xb3\xea\x6c\x43\x6b\x26\x5b\x54\x9d\x02\x58\xc4\x89\x45\xa1\xb3\xe1\xca\x65\xeb\xd3\x32\x43\xe9\x88\x7d\xcf\x9f\xc9\x13\x11\x07\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xe8\x18\x38\x08\x25\x40\x73\x13\x05\x81\xd1\x15\x4e\x49\x6c\xea\x1d\x06\x41\x8d\xd6\x5c\x6b\x1d\xad\x4d\x60\xab\x80\x1b\x6a\xb6\xc1\x45\x4d\x8c\x98\x09\x34\x34\xc1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x37\xf0\xef\x8e\xd0\xbd\xbe\x9f\xa8\x2c\x8f\x37\xc0\x5e\x6b\x1b\xdb\x88\xcd\x04\xcf\x33\x6f\x41\xe3\x13\x53\xf8\xd6\xc4\x3e\xd5\xdd\xc0\x30\x18\xe7\x03\x8e\x70\xac\x35\xf1\xe5\x84\xf3\x26\x31\xa8\x1b\x01\x18\x85\x04\xa4\x8f\xa1\x0f\xac\xb3\x81\xee\xc6\x7b\x1b\xc0\xb6\x2c\x83\x61\x7f\x21\xd7\xf2\x19\x91\x60\x13\xf2\x36\xf7\x52\x16\x79\x19\xa9\xa0\x71\x9c\xcb\x2c\xa2\xde\x6b\xe1\x2c\xfb\xcd\x20\x08\x45\xe7\x36\xe2\xcb\xa4\xa8\xda\x7b\xe2\xc5\x6c\xa5\x9d\x63\x67\xdb\xf8\xc5\x4d\x2e\x32\x0e\x92\x58\xb2\x70\xa0\x0d\x16\xe7\x2d\xe3\x59\x6e\xa2\xda\x68\x18\xe4\xd4\x48\xd9\x54\xaa\x4b\xac\xa2\xb9\xe6\xdc\x05\xde\xd9\x8e\xa2\xfd\x0a\xae\xfc\xb2\xf6\xd3\x86\x19\x9c\x86\xbd\xb7\x38\x14\x3a\xd8\xd3\xcd\xbd\xef\x82\xeb\x9d\x24\x91\xea\xfe\x8c\xd3\xcd\x96\xb3\x0e\xac\xa2\xee\x13\xfb\x44\x4f\x74\x15\x15\xad\x1a\x7f\x37\xda\x2a\xd7\xdb\xda\x79\x1c\xe1\x16\x00\x32\x67\x16\xae\xab\x78\xd1\xd6\x67\x6d\x71\xfe\x0b\xba\x59\x0e\x90\xc5\xc8\x7f\xd2\xe2\x88\xb7\xb7\xa6\x38\xd3\x4a\x84\xe2\xfa\x96\x14\x33\x23\xc7\x9a\x28\x59\x84\x51\x2e\xa8\x3b\xfb\x95\x8c\xf0\x76\xea\x00\xfb\xe4\x71\x58\x4f\x29\xc2\x41\xa9\x39\xe3\xee\xc7\x91\xca\xb1\x0f\x4b\x04\x9a\x70\x25\xd0\x4d\xf6\xbb\x73\xab\x0b\x27\xde\x35\xec\xe9\x4a\xc2\xde\x62\x97\x71\x13\xba\x61\xa7\x93\x46\xd9\x2c\x80\x46\x6c\xb6\x11\x77\xa9\x7c\xd0\xf8\x65\xb7\xea\x0d\x8d\x9f\x3a\xd9\x67\x93\x6f\x97\x40\x37\x6d\x1c\x99\x5d\x8a\x72\xb7\x61\xb0\x56\x7a\x0a\x41\x2b\xad\xfd\x0e\xb0\x67\x29\xb8\xe9\xb1\x95\xa6\xfe\xcb\xff\x65\x2a\x65\x99\xa5\xf9\x2f\xc4\xc5\x88\x99\xdf\x0f\x7c\x95\x0a\xfd\x42\x01\xff\x8a\x53\x52\x00\x64\x8a\x32\x94\x1e\x00\x8a\x58\x28\x34\x03\xf5\xeb\x41\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xe8\x01\xcf\xcc\x52\xcc\xf0\x0c\x80\x85\x0f\x20\x2e\x0e\xc4\xd5\x42\x15\x31\x24\x6d\xaa\x1d\x02\xb7\xd2\xcc\xd2\x66\xdb\x16\x55\x7f\xa1\x4f\x23\xca\x5a\x5c\xd3\x22\xb8\xa2\x99\xfa\x6f\x6d\xff\x9b\x49\xec\xf7\x83\xbb\x1f\xc6\xb7\xc3\xbb\xeb\x87\xdb\xd3\x92\xd8\x7e\x7a\xf1\x70\x77\x3f\xbc\x6d\x7c\x56\x64\xaa\xfe\xf5\x61\xf8\xd0\xf2\xc8\x35\x70\x31\xf8\x6e\x58\x2a\xa1\xfd\xd7\x87\xc1\xc5\xf9\xfd\xcf\xe3\xeb\x8f\xe3\xbb\xe1\xed\x8f\xe7\xa7\xc3\xf1\xdd\xcd\xf0\xf4\xfc\xe3\xf9\xe9\x40\x7f\x19\xbe\x7b\x73\xf1\xf0\xe9\xfc\x6a\xec\x82\x8e\xc3\x47\x3f\x5d\xdf\xfe\xf0\xf1\xe2\xfa\xa7\x71\xd0\xe5\xf5\xd5\xc7\xf3\x4f\x4d\xb3\x18\xdc\xdd\x9d\x7f\xba\xba\x1c\x5e\x2d\x2f\xd5\xdd\xbc\x1a\xad\x55\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xae\x8b\x1b\x43\x8f\x87\x07\xee\x2f\x53\x58\xfb\x50\xb3\x40\xe7\x15\x2b\xb8\xc7\x88\x79\xb7\xa5\xbf\x54\x15\x9e\x49\x97\x78\x5c\x1a\xed\x09\x1a\xc0\x59\x01\x85\xa1\xd4\x29\xe4\x35\xf8\x91\x3a\x47\x37\xd0\x61\x42\x53\x0a\x3e\x6f\x74\x88\xaa\x1b\x5e\x6e\xd0\xce\x09\x86\x60\xbd\x76\xf1\xb2\xd3\x20\xab\x39\xcd\x40\x29\x27\xc8\x71\x68\x62\xcc\x09\x06\x79\x76\xc1\x70\x4a\xa3\x6a\x02\x06\x80\xaf\xa2\x02\x68\xa4\xda\x62\x89\xc0\xca\x2d\xcf\x09\xfa\xe1\x2f\xc5\xa0\xc0\x83\x61\x35\xef\xbc\x56\x4f\xcf\x3e\x10\xb9\x59\xd5\x55\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\xeb\x76\x83\xbb\x29\x67\x01\xd8\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd0\x1d\x00\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xc5\xf7\x09\x99\xe3\x27\xca\x5d\xf1\x0a\x53\xe3\x03\xd6\xd1\x8a\x56\xe8\x10\xb5\x1e\x94\x13\x34\x88\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xb0\x3c\xec\x10\x1f\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xbb\x87\x72\xa9\xb3\xc3\xf2\xdd\xbb\xc5\xf5\xaf\x57\x70\xec\x48\x79\xbc\x91\x30\x70\x8f\xe5\xa3\x63\xcd\xab\x04\x02\x07\xaa\xb3\x5d\x8f\x16\x5d\xa7\x6b\xa7\x7e\x65\xc7\x70\xd0\x36\xeb\xb3\x15\x13\x7a\x45\x97\x6e\xc6\x49\xa5\x70\x57\xe7\xfe\x4a\x85\xbf\x1a\x3b\xdb\xa9\xb7\xa7\x59\x1a\x83\x23\x39\xf6\xf4\xbf\xc6\x3c\x6e\xe0\xd3\x6b\xff\xe5\x52\x91\x6d\x1c\xac\xdb\xba\x3e\xa0\x5a\x8a\xae\xf5\x03\x2d\xa5\xc3\x1d\x81\x3b\x75\x17\x06\xa1\xec\x02\x8d\xc0\xdd\x87\x29\xb3\xc5\x78\x88\xf7\x47\xb9\xf2\xd3\xfa\x1c\xfb\x02\x71\x78\xc2\x9f\x4a\xca\x65\x4a\xa4\xc4\x2d\x70\x25\x81\x49\x6c\x1b\xc6\xe0\x4f\xa8\xfd\xb0\x23\x3d\xb9\x33\x79\xaf\xbf\x5a\x66\xf4\xb9\x0d\x35\x63\x37\x51\x2d\xb0\xc6\x2e\xce\x16\x5d\x9b\x6c\x3b\xcd\x5f\x0e\x8a\x50\x1a\x2e\x82\x08\xa3\x36\xf7\x4f\x47\xb3\x5a\x75\xc1\x1a\x6b\x2c\x85\x2e\xbc\xf5\x23\x70\x82\xd6\x37\xc6\xc3\xb6\x7e\x15\x5c\x5e\x9f\x35\xa8\xae\xe4\xef\x0c\xeb\x4f\x47\x3c\x4d\x8d\x5c\x50\xb2\xa5\x1e\x20\x6c\x92\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\x71\x30\x62\xcf\xc1\x86\x94\xc2\x80\x07\x61\x4b\x80\x25\xfa\x59\x1f\x37\xfa\x54\x0a\xae\x06\x91\x91\x42\xa4\x6f\x40\x08\xc6\x21\x58\x14\x8f\x5a\x41\xe0\xc1\x7e\x6d\x41\xea\x1b\x54\x0a\xac\xac\x6f\x5b\xbd\x40\x3f\xb7\xa0\x4c\xdf\x16\x9a\x72\xd7\x21\x04\x95\x02\x9b\x46\xb0\x83\x42\x81\xaf\x0a\xee\xed\x93\x35\x4d\x6e\x6f\x3a\xb1\x08\x15\x7a\xba\x6e\xb5\x7f\xef\x66\xf4\x7b\xe3\x77\xc8\x5b\x20\x4d\x82\xd6\x3c\xbe\x37\x3a\xd4\x32\xab\x4b\xb5\xb7\x81\x18\x12\x1d\x1a\xcc\xc0\xaf\x20\xce\x72\x70\x73\xfe\xd5\x01\xfa\x2a\xcc\x35\xfb\x6a\xa3\x03\x68\xc7\x6d\x8b\x05\x82\x36\x55\x4a\x38\x28\x1f\x3b\xd8\xab\xca\x49\xb4\x7b\x66\x0f\x22\x6a\x3b\x87\xfa\xcb\xd2\x37\xe0\x9c\x86\xe2\x77\xc6\x7f\xeb\xc3\x9d\xad\x0b\xc8\xc8\xb8\x54\x36\xac\x5d\x3c\x62\x93\x45\xd5\xc9\x73\xe0\xbd\x3c\x9d\x4f\xe9\xd6\x05\xdd\x74\x7b\xf5\xe4\xe4\x1d\x87\xe1\x2e\xbf\x0f\x56\xa4\x3b\x0f\x4c\xc4\x35\x9f\x06\x5c\xac\x2d\x4a\xa1\x8f\x5f\x6f\x9a\x55\xc9\x5e\xe6\x16\xb3\x71\x53\x56\xc9\x3f\xef\x8d\xdc\x3a\x04\x7d\x0f\x9a\x56\xc4\xc6\xfb\xb7\x08\xd7\x3d\x95\xbd\x2c\x95\xed\x22\xdf\xa1\x3c\xb8\xf5\x2f\xd0\x53\x23\xc7\x05\xcd\x38\x83\xab\x56\x26\x3c\x83\x2f\x55\xfd\x5b\x5d\x2e\x77\x4d\x9f\x6f\xb0\x26\xab\x9d\xbe\x77\x26\x70\xc0\xb8\x5d\xeb\x63\xad\x0e\x75\xa0\x6c\x09\x22\x4e\x4d\x6e\xa3\xa2\x29\x39\x40\x9c\x25\x8b\x20\xd8\xc1\x9e\x57\x20\x37\x13\xa3\x34\x27\x54\xb8\x4e\x2c\xc2\xe0\x5a\xc9\xf0\x6b\x4a\xe3\x6d\x34\xb2\x45\xa4\xc9\xd5\xe0\x72\x78\x36\x1e\x5e\xdd\x9f\xdf\xff\xdc\x80\x1e\x59\x7e\xec\x00\x24\x83\x17\xee\x7e\xbe\xbb\x1f\x5e\x8e\x3f\x0d\xaf\x86\xb7\x83\xfb\x15\xe0\x92\xcb\x3a\x6b\x03\x2e\xcc\x65\x93\xfa\xb6\x0e\x78\xa1\x33\xf3\x36\xf4\x5e\x87\x98\x0c\x3a\xa1\xa4\x05\x66\xd2\x24\xfe\xb3\x98\x08\x14\x93\x27\x92\xf0\xac\x30\xab\x36\x2e\x58\x80\x3f\xd9\xd0\xfe\x32\x0c\x4a\x68\xb3\xba\xc6\x27\xc8\x54\x7a\x0b\x8a\xdd\xfa\x06\x41\xe4\xc3\x82\xb0\xaf\x14\x22\x9f\xb3\x84\x46\x54\x05\x89\x81\x5c\x58\xf7\x8a\x71\x1f\x42\x74\xea\x0a\xe2\xda\x59\x34\xca\xce\x75\xfe\xd0\x93\x5e\xd7\xf6\xfd\x89\xf2\x78\x68\x2b\xcb\x07\xed\x40\xb1\x6f\x71\x1a\xd7\xe0\xda\x36\x18\xdd\x4b\x98\x07\xea\x19\x3a\x36\xb9\xaf\x05\xca\xad\x79\x90\xab\x6f\xc3\x65\x71\x32\xa5\x73\xbd\x3c\x50\xa6\x1b\xa5\xbe\x71\xb8\x4b\xa9\xac\xe6\x0e\x70\x37\x6c\xec\xfa\x9a\x01\x0b\xb5\x6a\x31\xcc\xc4\x9c\x62\x24\x48\xca\x95\x56\xc0\x4c\x44\xc0\x81\x16\xaa\x28\x4e\xe8\xaf\x80\x50\x25\xc8\x51\x10\x41\xe1\x70\xbd\x0a\xf7\x81\x45\x8f\x38\x1a\xb1\xb3\xe1\xcd\xed\xf0\x54\x33\xa4\x23\xf4\x20\x01\x7c\xaa\x34\xf5\x33\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xb6\x60\x30\x22\x04\x17\xdd\xf9\x83\xef\x6f\x08\xdf\x35\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb5\x26\x72\x90\x33\xb0\xf3\x94\xac\x5b\xfc\x5c\x5a\x91\x10\x7c\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x7c\x67\xf7\xf9\x95\xfa\xbc\x81\x6f\x97\xcd\xf3\x1e\x42\xec\xa4\x2a\xb0\x40\x0d\x5c\xa8\xaf\x79\x53\x99\x67\xab\xa8\x28\xde\x02\xa8\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x38\x6c\x68\x69\xab\x07\xcd\xac\x7b\x54\xf5\x9a\xe1\x94\xe7\x0c\x94\x06\x08\x63\x6d\x18\x8c\xcc\x08\x53\x2b\x06\xf3\x56\x30\x2c\x95\xa1\xee\x2f\x12\x4b\xc3\x40\xdb\xc0\x58\x9a\xfc\x49\x50\x78\x79\xbd\x6b\xd9\x05\xe5\x95\x9c\x4a\xfa\x50\xf9\xfb\xb9\x59\xcb\xc6\xf2\x71\xeb\xee\xee\xb1\x7c\x5c\xdd\x55\x4c\xa2\xc7\x75\x2f\x9b\x6a\x66\x66\x62\xeb\x56\xd7\x8c\x7d\x0b\xfd\xd4\x16\x66\x81\x72\xe5\xd1\x23\xfa\xfe\xfe\xf2\x02\x4d\xa9\x96\x7b\xf5\xb5\x72\x85\xb5\x8c\xfd\x20\x12\x67\x17\xb6\xb6\xd5\x5c\x24\xfe\xee\x85\x8d\x77\xa2\x54\x20\x25\xe8\x1b\x0d\xcf\x88\x33\xf6\x0a\x8b\xb5\x57\x29\xcc\x22\x30\x8b\x79\x6a\xe6\x71\x2c\xf3\xe9\x94\x7e\x3e\x52\x58\x7c\xd3\xb2\x1e\x26\xaa\x62\xfc\x77\x3e\x19\xeb\x11\x6d\x79\x11\x37\x35\x87\x6c\x39\x65\xbf\x6c\x76\x66\x67\xe6\xdd\xff\xcb\x27\x90\xeb\x9e\x09\x0e\xf8\x7f\xe0\x9d\xb3\x91\x0a\xf6\x15\x47\x49\x47\xc8\x25\x50\x95\x20\x4e\x22\x2e\x04\xb1\x29\xf2\xa6\xb2\x68\x86\x85\xa2\x60\xad\x75\x10\x29\x25\x6c\xfc\x62\x8b\xc2\x82\xdf\x73\x5c\xe0\x50\x4f\x08\x01\x07\x4f\x46\x93\xf5\x94\xde\xd3\x92\x6f\xb2\x72\x02\x6d\xe4\xa9\x45\xcd\x04\x83\xcc\x4a\x11\x6b\xf8\x44\x98\xda\x89\x7e\x02\x4d\x34\x24\xed\x77\xf3\x32\x98\x02\x9f\xe7\x67\xc5\xe5\xe6\x42\x7a\xc3\xa8\x26\x25\x30\xdc\xf3\x36\x51\xca\xba\xd4\xdb\x1c\xfd\x4f\x9d\x7d\xc7\xf0\x6a\x7d\x5d\x56\x84\xc6\xdb\xd5\x2e\x0a\x7d\x17\x61\xad\x0e\xd8\x7f\x43\x18\x1f\x49\x8c\x15\x23\x80\x8f\xb0\xca\x69\x75\xcf\x4d\x9f\x9a\xb6\x2a\x5d\xae\xdc\xf2\x0d\x30\x6b\x4a\xcd\x7c\x22\x90\xd2\xb9\x8b\x40\xf4\x75\x52\xf7\x61\x20\x0f\x22\x81\x10\xea\xa5\x56\x2c\x53\x64\x5c\x73\x3e\x2f\xd9\xe1\x0e\x32\xba\x19\x8c\x16\x1a\x49\x26\x48\xa4\xaf\xb2\x13\x74\x93\x10\x2d\x79\xe5\x5a\xfa\xca\x93\xc4\xe1\x7b\x2d\x97\x0e\xd7\xc2\xa4\x7b\xf1\x79\x05\xba\xc7\x92\x89\x39\x7c\xbb\xe5\x33\x0b\xd6\x60\xf7\x80\x0b\xc1\xfa\x82\x09\x19\x0c\x89\x65\x2d\x12\x38\xfc\xc2\xc4\xcd\x82\x29\x09\x97\x2e\x32\xfa\xab\x66\xbf\x82\xc8\x39\x6f\x4d\x72\x0c\x67\xfb\x32\x73\x70\x4b\xf9\x82\x93\x70\xf7\x61\x5b\x5c\x75\x07\xb9\xa6\x72\x07\x96\x44\x9c\x65\x53\xf4\xb5\x1f\x7c\xf4\x87\x45\x5b\xb5\x77\xab\x1d\x1a\xdc\x92\x85\xa9\x2d\x44\x3e\x2b\x5c\x17\x85\x32\xb3\x30\xbe\x57\xff\x79\x61\x40\x2e\x52\x02\xa8\x92\x45\xcd\x39\xa4\xef\xda\xb6\x2d\xd6\xf3\x1c\xe7\x62\x2d\x48\x8a\x02\xb3\x7c\x1d\xce\x6d\x93\x51\x8a\x61\xe9\x45\x68\x66\x97\xb6\x94\x04\x88\xd1\x36\xd4\x48\x96\x70\xe0\x2c\xd9\x98\x65\x6c\x54\xf1\xda\x99\xf2\xb6\x6e\x35\x90\x92\x0b\x51\xe6\xa5\xbc\x6b\x25\x0a\x2c\x4d\xa0\x47\x16\x5b\x1f\x59\xcc\xd6\x15\xf1\xb4\x07\x38\x80\x4a\x40\xe2\x7f\xe1\x40\xab\x0a\x0e\xd6\xe8\xbd\x2a\xf3\xa9\xb4\x3b\x9d\xd2\x9c\x4a\x5f\x68\x5e\x72\xb6\xa5\x07\x4e\x4f\x66\x31\x86\xc4\xd1\x6d\xa2\x70\x4a\xf3\x37\xde\x03\x68\x93\xc4\xc8\xa0\x17\x18\xdc\x63\xbb\x76\xde\x73\x92\x61\x41\x98\x1a\xb1\x5b\x3d\x0a\xf3\x45\x11\x89\xe1\xe2\x70\x1c\x16\x3d\x54\xac\x9d\x22\x6c\xbf\x82\x45\x6f\x0b\x84\x93\x63\xf3\x12\xa8\xa6\x2f\x98\x64\xff\x9d\x79\xc7\x60\x1e\x58\xcc\x1f\x3d\x55\x3a\x2d\xd4\x78\x2d\x40\x46\x73\x0a\x90\x03\x31\x91\xf6\x42\xa2\xca\x62\x4a\x78\xf1\x3b\x27\x0e\x7d\x19\x3e\xf3\xfc\xab\x89\x61\x3b\x43\x01\x73\x06\x3a\x39\x62\x41\x1f\x4b\xc0\x3a\x8d\xb2\xbe\xa1\x2a\x01\xfb\x4c\x63\xef\xf8\x82\x7f\x9a\x1d\xe2\x82\xce\x28\x0b\x4a\x26\xd9\xe9\xa5\x38\x03\xf3\xae\x39\x83\x7c\xea\xef\xb4\x7b\x9b\x65\x70\x04\x23\xfe\x9f\xff\xfe\xdb\x11\x6d\xf3\x7e\xc8\xb1\x5d\x81\x7d\xd8\xc9\xf5\xb6\x25\xdc\xf9\x00\x45\xa4\x05\x9d\x22\xd0\x69\x65\x29\x73\xa2\xf8\xd5\x5e\x6e\x9a\x68\xb8\x9a\x1b\x77\x6f\x99\xdc\xc1\x37\x22\xf2\xe5\x55\x04\x02\x16\x57\x04\x04\x14\x5e\xdf\x20\xe8\xd6\xd5\x88\x30\xc1\x92\xba\xfd\xca\x85\x52\x61\x50\x01\x98\xdf\x36\xc1\x89\x73\x2c\x5f\x2e\x02\xa5\xb1\xb6\x91\x31\x1a\x87\x77\xe4\xaa\x58\x14\x33\x48\x93\xd4\xa8\x77\x25\x97\x44\x98\x03\xed\x51\x9f\x2c\xf1\x84\x50\x85\x10\x8a\xb8\xc2\xa5\x46\x52\x4c\xd7\x0a\x9b\xd7\xef\x37\x03\x29\x96\x6c\xea\x78\x46\xc4\x38\xce\x4b\x31\xd2\xab\xda\xbe\xd1\x1f\x9d\xe5\x6a\xb1\xba\x7d\x99\xe0\x7a\x6d\x97\x65\xe0\x95\xfa\xfd\x96\x66\x57\x0b\x86\x41\x24\x4b\x59\x38\x6c\x81\x86\x24\x15\x68\x48\x1b\x5a\x59\xb2\x04\xc0\x45\xc3\x14\x20\xc7\x15\x0a\x83\xbd\x89\x0c\x80\x35\x8c\x1c\x4d\xf2\xc2\x72\xe2\x4b\x02\xc4\x47\x23\xf6\xd1\xd4\xd4\x00\x65\xc6\x0c\x20\x82\xbc\x16\xf2\x39\xe3\x92\x94\x12\xad\x1a\x60\xfe\x6d\xa2\xa4\x1d\x46\xb3\x4c\x5a\x7c\xb4\xbd\x48\xfa\xe6\x20\x9f\xf5\x0d\xaf\x4f\xb9\x99\x02\xb7\x92\x7a\x22\x9a\x51\x4d\x3b\xe3\xc6\x93\xf6\x72\xa5\x66\x8b\xd0\x25\x80\x7b\x52\xc9\xe2\x00\xf9\xe9\x55\x08\x22\x21\x4f\x04\xac\xc6\x30\xc6\xb0\x98\x43\xd9\x7c\xd5\xc2\x4e\x56\x1d\xa0\x22\xcb\x11\xd8\x02\x8a\xab\x23\x28\xe7\x82\x35\xd1\x62\x39\xcb\x65\xeb\x84\xac\xa6\xf8\x8b\x35\xa4\xd0\x41\x58\xd4\x62\x41\x14\x22\x9f\x15\xb1\x65\x2f\xef\x5d\xca\x5c\x3d\xca\x1e\x35\x67\xfd\xb4\x8b\x48\x2f\x5e\x80\x78\xe0\x12\xa5\x5d\x4e\x60\xec\xee\x7d\x9b\x23\x37\xc7\x2c\xb6\x89\x9f\x56\x96\xd6\x32\x05\xcc\xce\xd8\x96\x7c\x48\xbc\x4d\x5f\x0c\xd0\xc0\x4d\x9b\x06\xb6\x1c\x2e\x32\xa7\x17\x69\xc9\x1c\xa2\x08\xb8\xd0\x02\x6a\xce\x14\x4d\x34\x71\xd8\x31\x68\xad\x39\x67\x1e\x8f\x0f\x02\xb8\xdb\x20\xdf\xa8\x94\x94\xcd\xc6\x76\x25\x5d\x0e\x63\xb7\x8b\xa1\x4c\x53\x97\xa6\x29\xf3\xe3\x77\xae\xa1\xe5\xb6\x63\x43\xd6\x00\xc7\xe5\xb2\x27\x41\xb0\x66\xdc\x4d\xc6\xe2\xa8\xb9\xa4\xcb\x31\x8d\xcd\x52\x50\x53\x5d\x19\x26\xba\x8e\x79\x19\xc4\xba\x3a\x5c\x41\x71\x85\x48\x9b\x11\x69\xf2\x9c\x20\x20\x5d\xb5\xa4\x7c\xca\xd6\x54\xcf\x73\xe6\x45\x34\x5b\xdb\xc9\x27\xb4\x57\xb2\x46\xb1\xeb\xce\x46\xdd\xe3\x24\x99\xe0\xe8\xd1\x2b\x1b\x5e\xe5\xe6\xc2\x61\xe3\x6b\x01\x15\x8a\x7f\x19\xe2\xd2\x03\x8d\x40\xba\x09\x9d\x62\x06\xb0\xc6\x0e\xbb\xe8\xdc\xac\x9a\x45\x02\x33\x08\x45\x66\xf4\x26\x84\x3f\x26\x59\xc2\x17\x69\xcb\x7d\x56\xcd\x94\xdb\x26\x20\xa5\x2d\x51\x6f\xa7\x57\x59\x85\xe9\xad\x7d\x99\xd5\xd2\x6e\x76\x00\x9f\xb4\x06\x97\xfc\x94\xf0\x09\x58\x0e\xad\x96\xed\x52\x49\x82\x8c\x86\xea\x79\x5e\x37\xc1\xa5\x7a\x22\xa9\xcc\x12\xbc\x58\xd6\x83\x49\xad\x78\xd9\x7d\x33\xa9\xf8\xab\x8d\x60\xdd\x83\x92\x1b\x3f\x7f\x09\xa0\xde\x0b\x27\x09\x98\x77\x0d\xff\xaa\x18\x93\x4c\x4e\xdb\x91\xf1\xc5\x2a\x3e\x62\x0a\xcf\xdc\xe6\x5a\xe1\x92\x3f\x33\x22\xe4\x9c\x66\xa5\xa2\x80\x5b\x47\x41\x5b\x8a\xb6\xff\x31\x31\xbf\x6b\xf0\x4e\x9e\x1d\x1a\x20\x0e\x4d\x1f\x32\xc3\x51\x61\xfc\x8b\x12\x2c\x25\x9d\x2e\x02\xfc\x0c\x1f\x50\x0a\x59\x4a\x65\x6d\x39\xa8\xc3\xd5\xc4\x68\xcc\xf8\x76\x93\x40\xbe\x7d\xf2\xdc\x43\xf9\xf8\xd1\x38\x04\x2a\xd3\xf7\x49\x1d\x2c\xc5\xdd\xd4\x16\x34\xa5\x15\x70\xd5\x64\xca\x6f\x96\xf0\xbd\x14\xe3\xa6\xdd\x8c\x50\x08\x93\x76\xd8\x56\x91\xf1\xb8\x16\x21\xe6\x8b\x2a\x65\x0c\xc2\xe6\x6b\xc5\xc9\x99\x3f\x35\x71\x7a\x4c\x0c\x80\x0e\x28\x3e\x3e\x40\x72\x2b\x2c\xa9\x2e\x74\x71\x46\x12\xb2\x93\xc0\xe2\x0d\x88\xa4\xea\xb5\x0f\xc8\x63\x29\x69\x14\x58\xfa\xab\x8d\x0b\x1b\xc4\x3b\xb7\x20\xd2\x34\x0f\xfd\x27\x33\x50\x1b\xf2\xdc\xb4\x8b\x60\xff\x82\x55\xee\xaa\xbb\x34\x41\xdb\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\xfb\x48\x6a\x6f\x1c\x19\x5c\x1b\xd7\x27\xd2\x25\x8a\x61\xe5\x01\xd8\x88\x03\xd5\xf9\x74\x37\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe2\xde\xd7\xf1\x7f\x4f\x34\xb1\xb3\xbc\x86\x1d\xad\x7e\xf3\x21\x5f\xef\xd4\xde\x11\x25\xdd\x95\x50\x43\x0b\xb4\x9b\xb3\x87\x5b\xb0\x1f\xc7\xd2\x08\xae\x5f\xbc\xdc\xb2\x35\x16\x80\x1d\x99\xcd\x88\xff\x0d\x09\x54\x66\x8e\xb1\xfd\xc2\x67\xbf\x97\x70\x9f\x70\x09\x2b\xcf\xac\xd1\xdb\x73\xbd\x2a\x69\x7f\xe9\xa2\xd7\xfa\x34\x5e\x1d\x55\x41\xdd\xbd\x3c\xb8\x9e\x3c\xe8\xb0\x24\xf7\xf0\xf2\x6f\x3b\x06\xfb\x79\xff\xec\x81\x70\x58\xbb\x12\x77\x27\x22\xbe\x23\x32\xd9\x0b\x49\xb1\xb6\x15\xaf\x25\x2f\x1e\x3a\x30\x9f\x02\x1a\x67\x7f\xb7\x68\x3f\x4e\xf2\xad\x75\x03\xbd\xdc\x05\xbb\x9a\x5e\x76\x42\x1f\x80\x6b\x89\x21\xfd\x37\xb7\x85\x32\xe0\xf0\x06\x21\x63\x35\xdf\xc3\x8a\x60\x3c\x3b\xbc\x4e\x61\x78\xb5\xe5\x7c\x89\xed\xb5\xb9\x5e\x9d\x37\xf7\x25\x49\x6d\xdd\xb1\xec\x42\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x3e\x26\xb6\xdb\x2d\xda\x80\x20\xe3\xb6\x6c\x97\x87\xac\xa9\xba\xd9\xf6\xd9\xea\x2e\x95\x6d\x9c\x09\x32\xa5\x9f\x37\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\xd4\x4b\x03\xf7\x0c\xd4\x57\x0b\xe2\xf6\xec\x4a\xdb\x9a\x4a\x23\x56\x24\x00\xda\xec\xbf\x47\xb2\x40\x5c\x94\x7e\xda\x14\xeb\x70\xf7\xb5\xdd\xcc\xbe\xce\x95\xca\xe4\xc9\xf1\xf1\x8c\xaa\x79\x3e\x39\x8a\x78\x6a\xc2\xcd\xb9\x98\x99\x3f\x8e\xa9\x94\x39\x91\xc7\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\xd0\x63\xea\x7e\xa7\xf2\x96\x13\x2c\xb7\x8b\xec\x71\x99\x5a\x2f\x9c\xb1\x1b\x74\xe3\x72\x24\xf5\x37\x52\xe1\x34\x0b\xa3\x47\x4d\x75\x34\xa9\x70\x51\x93\x01\xd2\xef\xf4\x34\xd1\x1c\x67\x19\x61\xed\x66\x07\x93\x4f\xb9\x05\xeb\x71\x19\x99\x76\x84\xe4\x73\x96\x60\x56\x46\x19\x80\x02\x43\x82\x44\x84\x29\x9b\x01\x5f\xd4\x4b\x06\x6a\x34\x48\x37\x86\xff\xaf\x97\x71\x07\x73\xa4\xb2\xa8\x1c\xe6\x86\x63\xab\x78\xba\xda\x8e\x38\x58\xba\x6a\xe5\xd4\x62\xed\x88\x5b\xb5\x65\xb9\x78\x77\xf5\xfa\xd9\xeb\x57\x6e\x11\x9c\x8d\xc9\x67\xcd\xe4\xe4\xa6\xb8\x54\x0f\x92\x48\x34\xf8\xe9\x0e\xc9\x05\x53\xf8\xf3\x09\xba\xa4\x0c\x04\xd8\xef\x79\x2e\x24\x3a\xc3\x8b\x43\x3e\x3d\x4c\x39\x53\x73\x74\x09\xff\x6b\x7f\x7a\x26\xe4\x11\xfd\x4c\xb0\xb0\xfc\xc1\x56\x5e\xf3\x45\xbc\x35\x09\x89\x9c\x49\x44\x9e\xf4\x09\xfd\xc3\x7f\xa2\xd4\xb4\x7c\x82\xbe\x3d\xfe\xc3\x7f\xa2\xdf\xc1\xff\xff\xff\xd1\xef\x5a\x34\xfd\xf5\x90\xad\xa0\x3e\xef\x6d\xd9\x9d\x7b\x50\x59\xa9\x0d\x4a\x96\x9f\x0a\x5e\xec\x54\x63\xcb\x8f\x34\x7a\xe4\xd3\xe9\x58\x13\x86\xc9\x57\x1b\x63\x51\x43\x45\xde\x10\x26\x94\xda\x02\xcb\xa6\x60\x5b\x51\x2a\xc5\x76\x6a\x80\x0d\x1c\xbb\x96\x79\x51\x60\x16\x82\x88\x4a\x45\x7b\xa9\x84\xaf\x48\xac\xb9\xea\x3a\xa7\xc3\x59\xf7\x5c\x8e\xb3\xb3\xe0\x84\x40\x20\x61\xd1\x70\x1f\xf8\x17\x46\xb1\x9a\x40\x1f\xbb\x90\x8d\xc7\xa1\x16\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\xd6\x3a\x5f\x1d\x2a\x79\xc7\xc5\x56\xfa\xd6\x23\xa9\xc5\x6c\x77\x2c\x0b\xe4\x4a\xd5\x86\xe5\xeb\x21\x11\x9a\x0b\x0f\xd7\x6b\xec\x22\xb6\x78\xe0\x6a\x2b\x26\x15\x26\xb8\xac\xdb\xa1\xd7\x53\x3f\xf3\x9f\xac\x1a\x26\x44\x9a\xb9\xb7\x8b\xb2\x68\x30\x5a\x2d\x22\x69\x96\xd8\x30\xe2\x06\x4c\xbf\x55\x1b\x7a\xe7\x61\x1c\xa0\x71\x08\x7b\x84\x94\x0f\xe6\x24\x5b\x9b\x27\xdf\xbc\x9f\xb9\x88\xc8\x29\xdf\x2e\xec\x35\xa1\xac\x16\x2f\xdf\xbd\xe2\x8e\x5f\xbd\x0b\x5b\x5b\xc9\xc1\xde\xf2\xb8\x50\x16\x8c\x5b\xc0\x16\x5b\x08\xf0\x36\xcb\xb3\x01\xdc\xb6\x5d\x40\x3a\xd6\x4a\x00\x6c\xc1\xb5\x8d\xe1\xb8\x60\x78\xae\x82\x44\xa5\x70\x84\xc0\x9a\x17\x2e\x89\x5d\x83\xa0\xa2\xad\xc7\x11\x14\x43\x29\x22\x95\x2a\x45\xc7\xb1\xa9\x08\x22\x36\x84\xe4\x34\x75\x89\x0e\x90\xc0\x10\x94\xa9\xe6\xba\x3d\x49\xc4\xe1\x14\x47\x94\xcd\x0e\x02\x34\x46\x40\x46\x08\xaf\x83\x26\x22\xbd\xc7\xf2\x71\xb7\x81\x86\x5b\xd7\x69\xa4\x71\x51\x2b\xcc\xe2\xa7\x18\xc7\x06\xad\x41\xd1\x29\x2c\x1f\xdb\x00\x84\x6a\xe8\x65\x4b\x46\xe7\x97\xc2\x61\x9e\x2d\x1b\x9f\xcb\xb4\x26\xa1\x3e\x05\xa5\x09\x5c\xe5\x60\x8b\x65\xe8\x12\xdb\xb0\x07\x1b\xa9\x82\x78\x2e\x19\xbf\x9c\x73\xa1\xc6\x1b\xc2\x9f\x56\xb3\xc5\x19\x39\x4c\x00\xb7\x84\x3f\x11\xf1\x44\xc9\x73\x19\x45\x74\x1d\x5a\x34\x46\xb3\x20\xaa\x0e\x60\x26\xd3\x8c\x43\x0a\xcd\x14\xa5\x98\x2d\x0c\xa3\xd4\xcc\x05\xcb\x47\xe9\xeb\x95\x22\x99\xe2\x24\x39\x40\x82\xe4\xd2\xd4\xf1\x95\x24\x99\x1e\xba\x8a\x0f\x31\x4a\xf8\x8c\x46\x38\x41\x93\x84\x47\x8f\x72\xc4\xb4\xa0\xc0\x66\x86\x49\x65\x82\x47\x44\xca\x40\xb2\x2a\x92\xb6\x6d\x2a\x1d\x14\x2b\x55\x44\xa4\x94\x51\xa9\x68\xe4\x44\xa6\x02\x7b\xc1\x94\xcc\x8e\x30\x98\x84\x21\x31\x11\x86\xab\x25\x3d\x62\x30\x28\x73\x66\x6b\x03\xc1\x75\x6d\xa1\xe5\x5c\x90\x78\xdb\x01\xda\x01\x52\x9e\xa3\x90\xb1\x2a\x1f\xc8\x15\x47\xea\xd4\x7e\x06\xc7\x78\x19\x09\xdc\x96\x4f\x94\x27\x48\x7f\xd2\x4a\xe8\x3d\x10\x53\xee\x43\xe0\x4b\x92\x8b\x8f\x0c\xdf\x33\xe0\x2e\x18\x72\x0b\x5c\xd7\x2a\x9a\xd6\xab\x08\x22\x0f\x94\xa3\xaa\x7a\xcd\x29\x8b\x92\x3c\xf6\x05\x09\xb5\x08\xf0\xa4\x89\xc4\x2d\x8f\x5e\x7b\x2d\x28\x1c\x20\x2c\xd1\x33\x49\x12\xfd\x5f\x13\x01\x7f\xe8\xeb\x03\x68\x96\x6c\x6a\x38\x40\x27\x8e\x4b\xb7\x51\xd4\xde\x81\x30\xde\x60\x35\x37\xa9\xed\x29\x57\xa6\x16\xa4\x01\x61\x74\xf6\x2d\x83\xda\x37\x49\xf8\x04\x4e\x3a\xe0\x33\xba\xd4\xd8\x20\xad\x2e\x8f\x22\x42\x62\x12\xa3\xaf\x83\x83\xeb\x61\x17\xbe\x69\x46\x0b\x2c\xad\xc8\x1e\x60\x33\x56\x0d\x6b\xad\x08\x8d\xe5\x72\x66\x47\xe8\xa6\x82\x3f\x12\x96\x29\xc7\x55\x34\xaa\x83\xda\x16\xbe\x0d\x9e\x63\x65\x12\x2f\xb7\x43\x6b\xe2\x39\x96\xfa\xdc\x01\x9e\x63\x65\x9e\x2d\xb1\xfb\x7c\xf6\xa2\x39\xc7\x7a\x52\x17\xbc\x7b\x22\x98\xc1\xc1\x32\x77\x67\x89\x04\xdd\x81\x5c\x34\x11\xe2\x7e\x61\x55\x56\x8a\xfe\xbd\x2d\x56\x65\x65\x30\xfb\x8c\x55\x59\x19\xea\xfe\x62\x55\x36\x0c\xb4\x03\x56\xa5\x71\xee\x8f\x35\x51\x77\x63\x0a\x90\xd8\x32\xc9\xa7\x77\x90\xea\xbd\x74\x8c\xa7\x26\x70\xc0\x5c\x63\xee\x8e\xb6\xd0\xcd\x30\x5a\x9b\x03\xd9\x16\x0e\x55\x71\x42\xac\x4b\x7b\xde\xfb\x46\xa5\xd1\xd0\xd6\x33\xbb\x1f\x84\xd6\x6e\xb0\x43\x46\x38\xb3\x39\xe5\x6d\x15\x55\xf6\x27\x7b\x76\x33\x18\x50\x80\xda\x2b\xb1\xfc\x4e\x40\x59\x97\x95\xe2\x04\x73\xfe\x6c\x0b\x04\x01\x19\x1a\xa2\x6c\x25\x41\xe8\x74\x6c\x95\xb6\xb6\x95\xa3\x4c\x91\x59\x55\xa7\x2d\x0e\x0d\x65\xea\x4f\x7f\x5c\xc9\x89\x0c\x92\xa0\x53\x0f\x83\x12\x01\xde\xd9\x61\x9f\x91\x18\x45\x73\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x14\x53\xa7\x48\xe5\xd2\xb8\x96\xa8\x1c\xb1\x12\xf4\xe6\x11\xfa\x08\x75\x4f\x71\x9a\x69\xfd\xcb\xcf\x8f\x6a\x4a\x1a\xe5\xdf\x7e\xfb\x27\x82\xbe\x45\x29\xc1\xac\xa4\xc3\x82\xda\xa4\xaf\x3e\x80\xaa\x53\x73\x32\x62\x8d\x5b\x81\x86\x9f\x4d\x29\x25\x17\xef\x77\xce\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd9\x29\x7c\xd9\x18\x00\xeb\x6e\xec\x7a\x1b\x0f\xe0\x1e\x39\x94\xa4\x04\x61\xd4\xe0\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\x1e\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x0e\x80\x12\xf2\x68\x6e\x1c\xab\x5a\x67\xc1\xb6\x2e\xc3\x13\x95\xb9\x56\x68\xa1\x2d\x57\x06\x42\x2a\x6c\xa0\x97\xe6\x14\xfa\xd1\xea\x37\x81\xaf\xc2\x2c\x39\xd4\x4d\x8b\x0a\xd1\x51\x2b\x3c\xbf\x23\x3a\x6a\x89\xaa\x7a\x74\x54\x8f\x8e\x5a\x5f\x97\x7d\x44\x47\xad\xec\x79\x37\x74\xd4\xa6\x2d\xdf\x00\x1d\xb5\xd4\xcc\x17\x83\x8e\x5a\x59\xd1\x2f\x06\x1d\xb5\x32\xaf\x1e\x1d\xf5\xcb\x43\x47\xdd\x12\xff\xb3\x99\x17\x1b\x7c\x25\x45\xd9\x62\x6d\x22\xfb\x4a\xa2\xf3\x6b\x4d\x60\xd1\x63\x39\xa8\xcd\x5f\x57\xdb\x63\x8e\x36\x33\xa1\xf5\x30\x47\x1b\x55\xf5\x76\x56\xb7\x2d\xc0\x13\x28\x06\xaf\x8c\x39\x5a\x9a\x40\x1f\x5f\xb9\x7e\x7c\x65\x23\xf1\xd9\xbe\xf5\xf0\x5c\xd0\x65\xf5\x42\xee\x88\x3a\x5a\xda\x9f\x4e\x91\x98\x20\xba\xef\x80\x12\x5f\x56\x9a\xbf\x2f\x1d\xf2\x95\xb2\x7c\xb8\x8a\xd2\xe2\x1f\x6b\x09\xcf\xa1\xc5\x19\x25\x3c\xf4\xff\xf7\x94\xbb\x41\x64\x70\x65\x79\xbd\x5f\xc5\xd0\x62\x07\x52\xed\x4c\xa1\x4e\x2b\xdd\x4d\xa2\xac\x4b\x9e\x5c\xd3\xc5\xec\x06\x71\x97\x91\xa8\xc5\xc6\x4c\x53\xba\xab\x66\x57\x5d\x64\x1e\x0b\x0b\x14\xf2\x5a\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x5a\x63\x9b\x6a\x23\xdc\xc6\x55\x9a\xe5\x9d\x03\x62\x82\x55\x9d\x6d\xf6\x59\x4a\x52\x2e\x56\x05\x56\x35\x7e\x69\x2b\xba\x6c\xf2\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xdd\x46\xba\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xce\xdb\xbd\xed\x36\x5b\xcc\xcc\x35\x1d\x42\x0e\x33\x78\xb9\xc1\xcd\xbe\x54\x72\x77\x03\x7d\x37\xc6\x74\xf8\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x4e\x15\x5f\xd9\x7a\xc7\x6b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\xeb\x07\x78\xb4\xa0\xa6\xd6\x97\x07\x22\x73\x24\x11\x87\xa1\x66\x50\x1a\x4c\x7d\xbd\x4a\x54\xe2\x34\xca\x2d\x88\x24\x17\xad\x51\xa6\x5d\x0c\xda\x91\xca\x71\x02\x9a\x44\x58\xa4\xb1\xba\xa9\x93\x45\x43\xda\x63\x37\x8f\x09\x65\xea\xcf\xff\xb1\xd6\x6e\x6a\xd5\xca\xae\x1b\x14\x96\xc2\x51\x44\xa4\xb1\xb1\xdb\x28\x64\x3c\xe1\x4f\x50\x53\x6a\x9b\x5d\xd5\x47\x59\xcf\x5b\x33\x78\x0f\x45\x1c\x17\xa4\x6e\xc4\x85\xb9\xe0\xf9\x6c\xee\x6c\x48\xfa\xcc\xe8\xa9\x35\xed\xe5\x8f\x35\x1b\xf9\xda\x7b\xf9\x5d\x4e\x93\xcd\x2c\x74\x77\xa5\x6a\x5b\x9f\xce\xef\x91\x9c\xfb\xd3\x3a\x81\x66\x1b\x37\xb6\x3e\xe8\xee\x7d\xda\x6f\xbd\xbf\x06\xba\x39\x70\xf0\x9b\x53\x9e\x24\xe0\x69\x90\x24\x7d\x0a\x8b\xe4\x87\xdd\xc3\x84\xef\xe9\x7a\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x49\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x4d\x36\xb6\x9f\xea\x85\x4e\xde\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x5b\x92\x57\x0e\x1c\x5c\x31\x8f\x7d\x0d\x1e\xac\x30\x3b\x1f\xcb\x57\x5c\x33\x2e\x70\xc8\x28\x3e\x03\xbd\xc4\x23\x36\x28\xe5\x53\xb8\x82\xd0\x93\x45\x11\x90\x6d\x74\x88\x90\x99\x41\x39\x09\x6b\x58\x01\x37\x9a\xfe\x0b\x34\x1d\x03\x5e\x6b\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x10\x47\x8b\x28\xa1\x51\xa0\x33\xcf\x04\xce\xe6\x4d\x1c\xcf\xed\x7c\x8f\xba\xf3\x56\xa8\x3b\x6d\x75\x97\xd6\x89\xdb\x76\x74\xc5\x70\x4a\x7a\x34\xa0\x26\x34\xa0\x03\x8f\x77\xc1\x8a\x0a\x52\x6f\x08\xa3\x50\x3f\x77\x3d\x24\xd0\x1b\x40\x02\x6d\x72\xf8\x0a\xbc\x9f\xd2\xb1\xeb\x61\x8a\x3e\x74\x82\x29\xf2\x97\xe0\x5e\x21\xcf\xb4\x9f\xc7\x37\x46\x34\xa9\x0f\xec\x2d\x61\x89\x1a\xc4\x85\x75\xe4\xa6\x65\xb8\x44\xcb\xe8\xa2\xd3\xba\xbc\x2d\x4a\xd0\x7a\x2b\xb3\x16\x00\x50\xe3\xdd\xb5\x27\x70\x40\xed\xdb\xb0\x27\xe7\x66\x97\x59\x2d\xeb\x95\xc8\x0c\x33\x5b\xd6\x51\xb0\xd6\x4b\x72\xf1\xf4\xf0\xbe\x12\x5d\x8a\x5a\x62\x9b\x25\xbb\x0c\x9c\x0f\x9a\x08\x34\xe7\x49\xec\x40\x28\xfc\x6a\xf9\x0e\x7c\x26\x80\x5f\x20\xb7\x19\x50\xd3\x1b\xb4\xad\xa2\x20\xd8\xb2\x94\x16\xbf\x89\x30\xdc\x1d\x30\x9a\x5d\x58\x11\x3c\x27\xd9\xc4\x7e\xb0\x52\x16\x91\x65\xf3\xf7\x92\x31\x96\x56\x08\xac\xe6\xcd\xc3\x5c\x69\xf7\x5d\x31\xb8\x65\xa2\x47\x60\x1c\x14\x4d\x15\x2d\x0d\x9d\xc1\xd3\x27\xea\x0c\x11\x38\xec\x71\xa9\x97\xce\xcd\xae\x93\xa7\xae\x4a\x2c\x1b\x04\x83\xd5\x2a\xb7\x6d\x0f\x0e\x94\xe2\xcf\xe3\x0c\x0b\x9c\x24\x24\xa1\x32\x7d\xb1\x60\xe0\xd3\xb2\xbb\x56\x9f\x55\xc1\x8d\x89\x88\xe5\xe9\xc4\x90\xa2\x1b\x88\xad\x17\xa9\x38\x12\x39\x0b\xa1\xcd\x9e\x6b\x45\xf5\x73\xb8\x17\xc0\xaa\x14\xcd\xa1\x38\xe9\x14\x53\xc1\x88\x6c\x2d\x05\x49\xa2\x5c\x50\xb5\x18\xdb\xca\x9a\xdd\x0f\xdc\x9d\xfd\xf2\xd4\x7e\xb8\xdc\xc3\xed\xb2\xfa\x5d\x7f\xbe\x92\x67\x46\x04\x94\x09\x72\x05\x6f\x82\xea\xa1\x16\xb5\x81\xf8\x5a\x43\x10\xfe\x5c\xbb\xb6\xdb\x02\x87\xf1\xf3\x38\xc8\xa8\x1a\x47\x55\xe2\x58\x75\x58\x9b\x70\xa7\x96\x4d\xf2\x85\x91\x97\x5a\xbc\xc8\x2f\x50\x65\xc4\xa6\x4d\x98\xa6\xf5\x80\x03\x57\x30\xd8\x2b\x8b\x8d\x09\x52\xde\xad\x52\xd5\x32\x4e\x8b\xf5\xd3\x14\x7c\xb4\x64\xb0\x83\xe0\xab\x0e\x23\x0e\x3a\xd9\xd1\xb0\xf5\x41\x17\x22\xcf\x14\x9d\xd4\xa1\x6d\xd4\xee\xaa\x8e\x0e\x12\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x34\x62\x03\x89\x9e\x09\x62\xc4\x42\x48\x34\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x03\xdd\x30\x54\x2d\x55\x1c\x82\x3f\x31\x7a\x16\x38\xcb\x88\x18\x31\x9b\xc5\x01\x0e\x17\xce\x13\xd3\x7e\x5b\x88\xab\x5d\x03\x32\x8e\x70\x34\x7f\xa5\x3d\xc2\x90\x8c\x13\xcd\x49\xec\xf2\x85\xcb\xdb\xe3\xe6\x6d\x0c\xd6\x6b\x6c\xd6\xf9\xd4\x95\xcf\x3a\xb0\x9d\x24\x91\xe6\x28\xbe\x9a\x72\x46\x84\x1e\xb5\xa6\xe1\x27\xc2\x10\x9d\xba\x71\xd8\xd8\x1d\xf4\x0c\x9e\x29\x4d\xfa\x4f\x98\x26\x26\x01\xdf\x75\xed\x84\x40\x63\x7e\x1f\x31\xe3\xee\x66\x51\x29\x43\x95\x32\x2a\xe7\x9a\x53\xe7\xe0\x93\x04\x35\xa3\x2d\x71\x86\x3d\xad\x73\x9a\x87\xfa\xf5\xe5\x1c\xf4\x89\x0a\xce\x52\x48\x92\xb1\xb8\x4c\x6e\xf9\x24\x51\xfe\x78\x34\xa6\x38\xae\x94\x88\xe3\x58\x96\x8d\x9f\x46\xad\xa4\xbf\x96\xcc\x2e\x87\xa5\xac\xc0\x28\x80\x15\x82\x20\x4e\x57\x59\x6c\x99\xfc\xdb\xa7\x36\xd4\x53\x1b\x9a\xd7\x66\x1f\xd3\x1b\xfc\x21\x5e\x37\xc5\xa1\x6d\xfb\x77\x21\xd9\xee\x30\xd5\xe1\x8d\x73\x02\x5e\x26\x1d\xe0\x6d\xf3\x37\x5e\x22\x75\xa3\x4f\x70\x78\xc3\x04\x87\xce\x96\xda\x72\x6c\x76\xfb\xb1\x5d\x2b\x39\x60\x05\x98\x53\x53\x2f\x97\x44\x09\x1a\xc9\x5d\xf0\x07\x99\xe1\x8e\x51\x6d\xa0\x05\x66\x2b\xa4\x26\xfd\x82\x77\x42\x42\x9c\x98\xaf\xf3\x37\x11\x04\x3f\xc6\xfc\xb9\x66\xab\x93\x21\x9a\xc6\x25\xd7\x62\x8f\x20\x11\x95\xa4\x14\xc9\x42\x25\x62\x44\x5a\x63\x27\x1e\xb1\x39\x25\x02\x8b\x68\x0e\xd9\x8d\xc5\xc6\x98\x2c\x59\x03\x68\x64\x62\x19\x42\x6f\xd3\x1a\x9b\xde\x61\xdd\xab\x16\x26\x8f\x4f\x67\xf7\x5c\x8f\x24\x35\x9f\x78\x61\xc6\x4a\x19\xa1\x49\xae\xd3\xf6\x6f\x1b\x88\xef\x17\xfb\x45\x83\xf1\x7d\x30\x51\xf0\x45\xc7\x80\xfc\x82\x1a\xfa\xa0\xfc\x17\x0a\xca\x6f\x58\xe2\xf5\x02\xf3\x37\x32\xf9\xbd\x7e\xcc\xb0\xeb\xf9\x35\xe2\x86\x57\x05\x6d\xe5\x93\xf1\x8b\x1f\xbd\xc6\x39\x77\x3d\x81\x3f\x79\xa2\x30\x12\xb1\xd0\x74\x36\x21\x71\x0c\x9c\x56\x71\x5b\x29\xba\xa0\x1d\x67\x1e\xd0\x77\x2f\x96\x9a\xd8\x71\xc2\xd9\x4c\xd2\xd8\x80\xad\x64\x18\x2a\xb6\x86\xc6\x0b\x00\x17\x80\xfd\x4d\x12\x22\x9c\x57\x42\xa0\xaf\x25\x65\x16\x4d\xd1\xff\x16\x73\x22\xd9\x57\xca\x18\x0b\x30\x5b\xa0\x47\xc6\x9f\x13\x12\xcf\x60\x87\xaa\x83\x39\x44\x94\x1c\x20\xaa\xfc\x67\x02\xd0\x08\x78\xae\x46\x7a\xec\x10\x6b\x66\x34\x00\x62\xbf\x0d\x6a\xa2\xfb\x66\xbe\x39\x42\xe8\x9c\xa1\x29\x8e\xd4\x01\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\xf4\x31\xe3\x0d\x9d\x37\x9f\x0d\xc7\x1d\x34\xb9\x0e\x12\x8a\xb7\x8a\xad\x7b\xc2\xdb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xab\xad\xb3\x32\x95\x75\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x9d\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xa6\x4d\xcb\xf4\x8d\x47\x4e\x39\x33\x0e\xc2\xad\xe4\x4e\x3a\x63\x38\x59\xd3\xc6\x51\x5b\xb9\xba\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xca\x7c\x43\x79\x0f\xa3\x98\x64\x84\xc5\x84\x45\x0b\x20\x11\x06\xc8\x39\x82\xe1\x04\x61\xf8\x0e\x27\x47\xe8\xcc\xe4\xd7\x78\x09\xcf\x5e\xeb\x70\xa1\xa7\x98\xd1\xa9\xd6\x13\xc0\x08\x6b\x47\x39\x62\x66\x98\xce\x07\x12\x14\xed\xf7\x2b\xd6\xb4\x33\xfa\x06\xb9\xda\x12\x95\x98\x95\xbf\x47\xcb\x2f\x1c\xe8\x6d\xd9\xee\xe8\xe6\x5c\x0d\x02\x99\x4f\x0e\xe1\xdf\xa5\x84\x33\x07\xd4\x53\xa0\xc8\x90\x84\x80\x39\xd0\x7a\xbc\xe0\x62\x6c\x03\x96\xdb\x85\xdf\x6e\x45\x1e\x47\xd0\x47\x49\xa9\x49\x29\xa3\x69\x9e\x06\xce\x3b\x53\xb1\x20\xb2\xf6\x4b\x93\x89\x91\x69\x3d\x20\x72\xe0\xe5\x48\x5f\xae\x6c\x81\x66\xf4\x89\xb0\x11\xcb\x38\x65\xea\x08\x5d\x71\x45\x82\x12\x11\x06\x3a\x8a\x67\x8a\xa6\x06\xed\x54\x10\x7d\x0e\x0c\x28\x36\x00\x4d\xce\xb1\x3a\x40\x71\x0e\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xec\x0c\xc4\x47\x8b\x11\x33\x37\xdd\x14\xd3\x24\x17\xc4\xca\xac\xd8\xe4\xc5\x14\x43\x2e\x46\x66\x91\xd0\x82\x49\xa4\x74\x36\x57\x7a\x8b\xb4\x8c\x67\xfd\x8d\x73\xcd\x8d\xf8\x88\x4d\x08\xc2\x28\xe3\x92\x2a\xfa\xe4\xfd\x97\x74\x8a\xb0\x94\x60\x41\x39\x42\x67\x25\xfb\x3f\x95\xa0\x7a\xb7\xc5\xd5\x52\x36\xb6\xb6\xe7\xf6\x7c\x9c\xad\x37\xb2\xd4\x8b\x5d\x65\x3c\x91\x3c\xc9\x55\xe8\x82\x6d\xde\xdb\xc2\x34\xee\x80\xfb\xc1\x40\xcc\xa7\x23\xe6\xe8\x5a\x1e\xa1\x81\x44\x92\xeb\x5d\x92\x66\x2b\x23\x41\x15\x11\xd4\xa0\x38\x11\x65\x36\xc1\x9f\x53\x7f\x06\x52\x2c\x1e\xb5\x08\x15\x5a\xe0\x0d\xa6\x68\xc9\xda\x31\x31\x12\x12\xc0\x5a\x85\xdb\x01\xa6\x7f\xc4\x38\x3b\x64\x64\x86\x57\xed\xc8\x88\x95\xb6\x04\x7d\x4d\xa7\x85\x42\xda\xe6\x73\x0c\xd6\x6e\x0c\x91\x4f\x6d\xbb\x64\x3a\x6e\xdb\xa4\x69\xc2\xf1\x0a\xb7\xf1\xb4\x38\xf4\xe8\xef\x7c\x62\xc6\xa8\xf5\x7e\xae\x40\x0a\xd4\xea\xd5\x94\x0b\x32\xc7\x2c\x3e\x70\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\xac\x75\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x61\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x1b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x0d\x04\xbf\x24\x5f\x2b\xb9\x2a\x70\xfb\x2d\xda\x6a\x9a\x28\xbc\xaa\xcc\xc8\x1a\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x34\x62\xe7\xea\x2b\xa9\x45\x74\xce\x66\xfa\xa2\x89\x9f\xa8\x2c\x8a\x9c\x44\x9c\xc9\x3c\x25\xc2\x76\xa1\x6f\x64\x4d\x91\xb6\x40\x00\x76\x32\x94\x1e\x9b\xde\xfb\x27\x9c\xd0\xd8\x15\xe2\xd1\x3f\x9a\x33\xa7\x47\x29\x9d\x47\xb1\x21\x24\xcc\x6e\x6e\xac\xd7\xea\xcd\xc4\xfa\x1f\x43\xc9\x1d\xa5\x85\x90\x8f\xad\xad\xfe\xb8\x2a\xe2\xdb\x55\x5f\x22\xde\x4f\x6a\x93\x42\xcb\x05\x23\xbb\x0a\x67\xab\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x16\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbe\xb5\x67\x5b\x96\x89\x90\x11\x4e\xea\x3b\xbc\xc4\xde\x6c\xde\x5f\xae\x04\xd8\xe3\x66\xda\x5e\x9a\xf4\x1b\xf1\x24\x59\xa7\x84\x49\x65\xe6\xa7\xc5\xe7\xcb\x47\x54\xf4\xa3\x37\xc0\xed\x05\x9c\x1a\x73\x79\xe3\xc4\x9a\x52\xa4\xb2\xbb\x14\xbe\x64\xd4\xb0\x85\x65\xad\x23\xc6\xa7\x50\xe4\x26\x69\x8b\xea\xca\x04\x4f\xe9\x3a\x28\xcb\x26\xd0\xe9\xd6\xd9\xc5\x57\x58\x19\x9c\xf5\x1c\x44\x53\x43\x5e\xb6\x47\xc8\xd7\xc3\x56\xdc\x5c\x72\x86\x52\x9c\x6d\xb4\xe0\xab\xbc\x42\x03\x94\x1a\x97\x9c\x5d\x3d\xc0\x5b\x24\x50\x2f\x06\x16\xf9\x19\x2f\x8a\xd4\xe8\x36\xfc\x5c\xb6\x16\x39\x3c\xe8\xd7\xcf\xd9\x94\xaf\x71\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x5d\xce\xe3\x69\x13\x51\xaf\x7d\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x9d\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf9\x52\x5d\x96\xe8\x70\xe7\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\x69\x6e\xf5\x15\xd6\xcc\x1e\x92\x4e\x8b\xb5\x25\x76\xc3\x7a\x38\xc0\xae\x47\x8f\xfa\xdb\x7c\x42\x57\x16\x39\xe8\xbe\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x9f\x37\x18\x38\x5d\x82\x98\x0f\xa8\x32\xa1\xf2\x4e\x7a\xca\x05\x0d\x0a\x83\x3a\x19\x09\x51\x28\x50\x12\x3a\x79\x02\x85\x1e\x4c\x8b\x73\xfe\x6c\xa2\xd3\x05\xd5\x3c\xcb\x08\xab\x0a\xcc\x3d\x9a\x17\x50\x6b\x2d\x31\xc6\x26\xff\x01\x37\x31\x83\xd8\xd6\x3e\x2e\x46\xd5\xb2\xa5\xbb\x28\xf1\xd4\x3d\xff\xce\xf5\x7a\xaf\xbf\xa8\xef\x4d\xe3\x08\xef\xcb\xad\xaf\x3d\x3a\x2f\xe5\xaf\x1f\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\x67\x3f\x1c\x3f\x9c\x23\xa2\x22\x94\xd0\x47\x32\x62\x91\x7c\x3a\xd0\xe2\xf1\x3f\x72\xa2\xf4\xcf\x2d\x1e\x01\x9a\x12\x26\x81\x13\x50\x55\xc3\x1e\x6a\x5e\x48\xb7\x30\xfa\xbf\x67\xe5\xef\x97\x90\x7c\x2d\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x03\xc5\x18\x5b\xe4\xb0\xa9\x1a\xe6\x06\xe9\x42\xec\xef\x39\x5b\x53\xe8\x3a\x2d\x3e\x0a\x46\xd1\x22\xd3\xa5\x19\x06\xac\xeb\xf5\xf2\x90\xcc\x37\x8d\xad\xaf\x62\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x34\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\x9a\xb8\x84\xc0\x2c\x9a\x6f\x6b\x42\xa6\xd3\x31\x49\xd6\x91\x44\xcf\xa7\xc3\x44\x6a\xfa\x8e\x1e\x5b\x4e\xe7\x26\x35\x1b\x8b\xc9\xd8\x4a\xb4\xa6\xee\x13\x2a\x4c\xd0\x38\x31\x15\xe5\x08\x02\x1f\x65\x35\x7b\xcc\x00\x44\xe8\x5d\xb4\x92\xba\x71\x51\x9a\xb4\x0d\x1f\x92\x0d\xbd\x20\xac\x46\x4c\xe4\x0c\x8a\x4d\xf8\x88\x05\x8c\x0a\xbc\xf0\xc8\xf9\x0f\xac\x37\x67\xa6\xd9\x84\x81\xe3\x36\x2f\x6b\xfd\x8c\xe7\x12\x6c\x35\x29\x51\xfa\x82\xfa\x1a\xea\xc0\x9a\x90\xa1\x03\x94\x09\x9a\x82\xb9\x55\x7e\xd3\xb0\x75\xa7\x58\xe1\x84\xcf\x06\x42\xd1\x29\x8e\xd4\x3d\xde\x4a\x03\xc7\xb6\x99\x4d\xc3\x4f\xdd\x30\xd0\xf9\x99\x5e\xfc\x19\x61\x44\xc0\x44\xb5\x4e\xde\x7c\x84\xe1\xc9\x46\x9c\x1b\xac\x6c\xd6\x30\x2a\xbd\xc5\x02\xe7\x8a\xa7\x5a\xbf\xc5\x49\xb2\x38\x30\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x97\xbb\xc9\x2e\xee\x29\x8e\xe6\xe4\x0e\xaa\x22\x37\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\x27\xe8\x7f\x8a\x39\x9e\x0e\x4e\xbf\x1f\x8e\xcf\xce\xef\x06\xdf\x5d\x0c\xcf\x82\xf9\xd8\x27\x97\xe7\x77\x77\xf5\x5f\xbf\x3f\xbf\xaf\xff\x78\x73\x7d\xf3\x70\x31\xb8\x6f\x6a\xe5\xe2\xfa\xfa\x87\x87\x9b\xf1\xc7\xc1\xf9\xc5\xc3\xed\xb0\xe1\xd3\x87\xfb\xf6\x87\x77\x3f\x9c\xdf\xdc\x0c\xcf\xdc\xaa\xfc\x2d\x38\x5d\x60\x3d\x86\xd4\x8b\xe6\x69\x54\x0f\xe0\x21\x2a\xbf\x78\x82\x1e\xaa\xa5\x0f\x6c\x2c\xb2\xc1\xb1\x78\xc6\x52\xf3\x30\x08\x85\x1f\x31\xe4\x3e\xd7\x8b\xd2\xf6\xa9\x09\xd7\x89\xe6\x04\x25\x9c\x3f\xe6\x99\x65\x6d\x26\x3e\x8c\x71\x63\xf8\x21\x32\x68\xed\xfb\xf3\xfb\x93\x7a\x09\x06\xdf\x58\x80\x98\xe5\xce\x00\x8c\x0b\x3b\x76\x0a\xb6\x14\x07\xcd\x5f\x58\x6f\x83\x1e\xfc\xce\x2c\xeb\xc7\xb4\x86\x99\xaa\x74\x13\xc7\xb6\xe8\xaf\x9b\x58\xd0\x70\x79\x5f\x97\xad\xa6\x5f\x0e\x53\x7b\x0a\x4d\x48\x84\x73\x13\xd4\xa4\xef\x29\x21\xb8\x08\x07\x5c\xd0\xc3\xee\x1a\xb5\x74\xd4\xd8\x60\x65\xcf\xf4\xc4\xe5\x23\xcd\x32\x12\x7f\xa8\xcb\x2f\xe5\xea\xb0\xb6\x26\x39\x9f\xa2\xe0\x4c\x6a\xbd\x1e\x74\x7e\x57\x38\x65\xbe\xf0\x9e\x34\x08\xdc\x28\x42\x59\x00\xc8\x59\xdf\x09\xbe\xb0\x05\x05\xd7\x18\x56\xe8\x99\x40\x4a\x75\x6e\x2b\x47\x19\xdd\x5b\x9f\x6d\xe8\xce\xd8\xb4\x5d\x1d\xb8\x52\xaa\x75\x2b\x33\xde\x85\xc0\xad\xbf\x97\xa4\x89\x11\x6f\x91\x17\x7b\x66\x1a\x05\xee\xec\x62\xde\x60\xc4\x2d\xc1\x0d\xee\x36\x68\xb0\x90\x2f\x91\xaf\xea\x37\xd2\x8a\xcb\x42\xb3\xed\x2e\xe3\x71\x58\x20\x25\x80\xeb\xee\x03\x2b\x81\x20\xaf\x5c\xab\x7b\x1e\xe3\x85\x26\x0e\x88\x35\x96\x79\x96\x71\xa1\x50\x4b\x1b\xc6\x8d\x6f\xc6\x07\x77\x8e\x9d\x87\xe7\x71\xd0\x88\x96\x30\x64\x43\x2d\x8d\x6e\xf0\x08\x76\x5d\x0b\xc6\x11\x06\xc8\x82\x22\xe8\xeb\x1e\xa5\x25\x95\xba\x44\xa1\x4d\xc2\xef\x36\x19\x06\x99\xbe\xe0\xbb\x96\xe1\x6b\xea\xfd\xda\xb5\xd0\xb8\xe5\x09\x99\xaa\x71\xa3\xd7\x67\x89\x81\x53\xb7\xc8\xda\x10\x65\xe8\x6c\xbe\x83\x16\xbb\x6b\x09\x7f\xb4\x81\x3d\x5a\x35\x08\x2c\x04\x82\x73\x65\xe4\xd3\x42\x87\x41\x6e\x35\xc1\xbc\x60\x3b\xb5\xb9\x60\x5e\x08\xd4\x32\xbf\xf1\x87\xfa\xb4\xa9\xa3\x11\x1b\x42\x00\x45\xa1\x88\xb8\x14\x31\xd0\x02\x56\xca\xff\xa5\xa2\xa3\xaf\x1a\xad\xd9\x8e\xf0\x5a\xd0\xbd\xad\x97\x9f\x2c\x50\x51\x58\xb6\xf4\x5d\x97\xd3\x63\xac\xde\x4e\x04\x34\x13\xb6\x65\xdc\x15\xc9\xac\x65\xde\xcc\xb3\x88\xf4\x81\xf8\x30\xdd\xd5\x11\xfa\xc9\x59\x7e\x20\xf0\xb5\xa8\xc9\x6c\x63\x37\x12\xbc\x70\xa0\x90\x4d\x0b\xbb\x0b\x9c\xc5\x5d\x87\xc2\x2e\x5f\x60\x0f\xe8\xd4\xb0\xca\x25\x05\x9c\x31\x63\x91\x5d\x23\xed\xe3\xd4\x7f\x74\x47\x96\x47\x05\x7c\x84\x32\x9c\x36\xb2\x0a\x84\x0e\x96\x2c\xfe\x97\xd9\x2c\x93\x89\xea\x0a\x6b\xd9\xb2\x88\xd6\x83\xaa\xcf\x0f\x78\x00\x4d\xa2\x2a\x9a\xd2\x24\x01\x39\xe0\x08\x0d\xa0\x3c\x30\x24\x72\xea\xab\xd0\x05\x58\xd0\x19\xe3\xab\x72\xcc\x5a\x88\x29\x0a\x88\xe9\xae\x9d\x98\x24\x50\x53\x91\xc7\xbf\x1b\x8a\xda\x01\xa6\x8b\xe6\x2d\xb8\x8e\x88\xdd\x1d\xc9\x65\x0d\xe5\xfd\x2d\xa2\xa3\x6b\xc3\x0d\x3e\xfc\x57\xf3\xd0\x3f\xe5\x58\x60\xa6\x20\xe6\xd7\x8a\xee\x82\x04\xa9\x47\xe4\x33\xc4\x67\x30\x63\x08\x86\x9f\xc2\xcd\x75\x2e\x7f\x08\xf7\x42\x34\x3e\x40\xf4\x88\x1c\x41\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\x56\x8b\x65\x3c\x42\x83\x44\x72\xfb\x05\x61\x51\x02\xe5\xb8\x83\xf0\x64\x4f\xf9\xd6\xad\x34\x59\x80\x82\x02\x5b\x59\x34\xcf\xed\x83\xe0\x43\x28\x32\x06\x3e\xf1\x04\x4e\x7a\xf1\xfb\xef\x79\x66\xbc\x15\x6d\x71\x12\x2f\x58\xce\xa1\x76\x0d\xbd\xd8\x26\x99\x52\x81\xcb\x36\x08\xde\x80\x8d\x29\x62\x4c\x03\x04\x16\xf4\x35\x56\x28\x21\x58\x2a\xf4\x87\x6f\xd6\x8a\x0d\x71\x13\x2c\xb8\xab\x3d\xbe\x45\xa2\x98\x4b\x35\x08\x85\x3b\xdf\x31\xd4\x8e\xc3\x42\x21\x8c\x18\x79\x0e\x23\x4b\x39\x04\x03\xbb\x82\x70\x24\xc8\x6d\x35\xf1\x64\x26\x33\x1f\xb2\x35\x8c\xca\xd4\xc2\x47\x1c\xdc\xb1\x75\x9f\xda\x61\x35\x50\x96\x55\x9e\x6c\x88\x27\x40\x72\x15\x41\xff\x73\xac\x46\xcc\x72\x56\x17\x36\x12\xa4\x79\x0d\x92\xa4\x1c\x68\x8f\x21\x97\x84\xe9\x09\x43\x7d\xf6\x23\xbf\x40\x57\xa0\x7e\xf9\x68\xe7\x92\x9d\xae\x38\x2c\x26\x1e\xcf\xe3\x1d\x85\x6d\x37\x4a\x3b\x4d\xf6\xe5\x57\x14\x82\x1b\xba\xbf\x30\x85\xf2\x3b\x08\xc3\xa4\x69\xc8\x2b\x0e\x56\xdd\xa6\xbf\x44\x36\xde\x75\x07\xdd\x45\xe5\x66\xfb\x38\x5c\xb3\xcf\xbc\xc1\xdc\xde\xb2\xb9\x81\x6c\xb1\x8d\x02\xee\xc3\xee\x5f\xcb\xe3\x5b\x1a\xfa\x79\x0c\x49\x7f\xab\xb9\x60\x91\x44\xe7\x58\x87\x89\xbd\x8e\x83\x9c\x9e\x20\x85\x00\x82\xff\x1c\xe3\xb3\x6f\xb6\x78\x5e\xb3\xf7\x3d\xfd\x83\x62\xfe\x6e\x2a\x3e\x08\xae\x3e\xf1\x76\x61\x6f\x10\xff\x1d\x47\x10\xe9\x0f\x3d\xb9\x1c\x83\x3a\x20\x93\x83\xb1\xc6\x60\xcc\x6f\x14\x0f\x33\xc1\x23\x22\xe5\x11\x1a\xc2\x45\x63\xff\x89\xf0\xd4\x39\x24\x82\x97\x47\x4c\x6b\x26\x0e\xbf\x25\x68\xbf\x4c\xe2\x4d\x27\xc0\x80\xc1\x6d\xe5\xcb\x49\x57\xd7\x28\x69\xd3\x26\x1c\x16\x1d\xb4\x01\x65\x0d\xd0\x70\x76\x82\x62\x1e\x3d\x12\x71\x2c\x48\x4c\xe5\x09\xf8\xd6\x55\xab\x53\x2f\xd5\xda\xf6\xd6\x92\x46\x5b\xa0\xc0\x8a\xa4\xb8\x53\xd3\xbf\x0d\xb0\x76\xe1\xb5\x07\x88\x4e\x41\x9d\x70\x39\x19\x26\x08\xd9\xc1\xdd\x10\xa6\xc4\x02\xe2\xfa\xbd\x29\xab\xb2\x10\x4e\xd3\xd0\x42\x5b\x5b\x36\x91\xd8\x45\x0c\xce\x86\xd3\xbe\x9f\x13\x49\x5c\xc0\x81\x99\x94\xe2\x36\x96\xd9\xb0\x8b\x0c\xab\xb9\x84\xd4\xd5\xf2\x1a\x58\xa5\x0b\x3e\xd5\x2b\x84\x33\x88\x57\x30\x56\x8a\xe2\x23\x9f\x60\x29\x15\x4d\x92\x11\x63\x84\xc4\x12\x41\x96\xe9\x57\x8d\x19\xf2\xfa\xd3\x03\x84\xe3\x18\xfd\xef\xaf\x3f\x5e\xfc\x7c\x3f\x1c\x9f\x5f\x81\xd1\xfa\xfc\x62\xf8\xcd\x81\xff\xf1\xfa\xe1\xde\xff\x6a\x2c\x2c\x4f\x44\xa0\x14\x3f\x82\x8a\xc7\x24\xb1\xc9\x13\x64\xc4\xc2\x91\x3a\xec\x00\xfd\x44\x12\x17\xe9\x6a\xc5\x14\x0f\xa1\x68\xf7\xb0\xb5\x62\xb1\xb1\xf9\xad\xa1\xfc\xde\xfa\x4f\x96\xd3\xa0\x23\x1e\xdf\x85\x13\x03\x21\x47\x06\xcb\x20\x99\xdc\xea\xbe\x05\xc1\x11\x36\xa3\xac\x2d\x1e\x8f\xb0\xa7\x97\x14\xe2\x7f\x20\x8b\x1f\xb5\x7a\x7d\x83\xa9\xe8\x4c\x7b\xcd\x68\x40\xee\xc4\x68\x3d\x1d\xcb\xea\xa1\x92\x46\x16\x36\xd9\x36\xad\x31\x9f\x4d\x40\x70\x6f\x3e\x5d\x0b\x2f\x45\x3e\x2b\xe1\x50\x2a\x7c\x3e\x87\x83\x72\xf2\x17\x4d\x41\x83\x23\x76\x7f\x7d\x76\x7d\x82\x48\x82\x27\x1c\x42\xf9\x6d\x48\x90\x6b\xc2\x2e\x58\xc4\xd3\xa0\xa1\x12\x42\xc9\x01\xca\x0a\x84\x92\xd0\x88\x76\x64\xda\x58\x81\x54\x92\x71\x51\xc7\xf7\xd8\xad\x0a\x68\x27\x7b\xc3\x45\x97\xeb\x5f\xbf\x06\x4b\xc7\x33\xad\xc8\x55\x38\xaf\xbd\x9b\xa7\x04\x9b\x5a\xfa\xc6\x2d\x64\x6d\xf9\x36\x80\x35\x49\x4a\xf5\x14\xf5\xc1\x91\x47\xd6\x05\x5f\xbc\xc9\x19\xfa\xe1\x2f\x12\x4d\x72\x35\x62\xe5\x36\x38\x43\x83\x9f\xee\xd0\x77\x58\x45\xf3\x6f\x46\xec\x5a\xab\x99\x3f\xfc\xa5\x05\x4a\x69\x6d\x74\x42\xbd\x26\x67\x58\xe1\x0b\x8e\x63\xca\x66\x4d\xd0\x84\x45\xfd\x98\xe1\xfd\xe0\x04\x5d\x5b\x1d\xbe\xc8\x04\xf1\x29\xc1\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x65\xf8\x36\xa3\x99\xc1\x85\x35\x62\xf7\x06\x93\x51\x73\x55\xaa\x50\xc6\x6d\x0d\x23\xad\x95\x19\xb4\x4a\xec\x32\xa4\x48\xb2\x40\x7a\x75\x80\x8c\xfd\x66\x58\x79\x0c\xe4\x99\x3a\xb3\x1f\x31\x50\xd0\x7d\x6e\x4a\xc2\x23\x9c\x40\x4c\xde\x61\x60\xd3\xd3\x6a\x3b\xcf\x21\x3f\xdc\x14\x3d\x5f\x94\x43\x67\x3d\x64\x81\x17\xca\xc2\x8d\x02\x03\x00\xec\xa3\xf5\xc6\xa6\x5c\x73\x1c\x83\xc5\x06\xc6\xb7\xc4\xac\x8e\xfe\xd0\x63\xb3\x99\x65\xd1\x4f\x7d\xda\x16\xcf\x99\xc3\x22\x89\xc0\x7c\xcf\x16\x10\xbe\x0d\x45\x47\x38\x84\x7e\x14\xdc\xd9\x12\x65\x6d\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\x58\xcf\x15\xcb\x33\x1b\xd8\x68\x65\xfd\x4c\x90\x43\x9f\x01\x15\x97\xd6\x54\xdf\xb0\x47\xe8\x36\x54\xaf\x63\x1e\xe5\xa9\x43\x56\x86\xec\xa9\xa2\xac\x7c\x49\xe2\x31\x17\xfb\x2a\x8a\x07\x94\x16\x45\x20\x7d\xbc\xb3\x7e\x6c\x08\x66\x10\x7e\x5a\x97\xd4\xdb\x05\x5f\xe0\x1d\xdb\x45\xad\x99\x86\xc6\x59\xb9\xa5\x52\x6b\x5b\xe7\x25\x5e\x15\xe8\xaf\x5c\x80\xb0\x45\x3e\x67\x1c\x8c\xdc\x26\x3d\x8b\xc7\x5f\x49\x74\x7e\xa3\x25\x20\xad\xf1\xfa\x33\x98\x4b\x65\x82\xcb\x20\x5d\xc7\x7c\x6d\xd2\x05\x0e\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x9d\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x3a\xa7\xda\x62\x17\xec\x01\x6c\x5b\xfe\x4d\x50\x1e\x83\xd8\x21\x3c\xb3\x27\x5c\x86\x27\x13\x95\x8e\x66\x11\x49\x20\x89\x3a\x28\x73\x08\x2f\xec\x5a\x89\xfe\x7f\x2d\x01\x2b\x1b\xeb\xa3\xb2\x59\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xf0\x33\xd6\x9c\xfb\xc0\xc2\x68\x99\x8f\x8c\xe7\x65\x8a\x23\x83\x0a\x2a\xd1\xd7\x9f\x4f\xf4\x6f\x07\x68\x71\x02\x41\xa4\x07\xe8\xd7\x13\x8b\x96\x83\x85\x1a\xeb\x9f\xbe\x71\xb2\xb6\x6d\x02\x06\x4d\x25\xfa\xea\xf8\x09\x0b\x53\x33\xfa\xd8\x8c\xe8\x2b\xcb\x59\x7d\x5d\xbc\x50\x36\x4f\x38\x7f\xb4\x01\xb6\xb5\x0f\x8f\x1d\xf0\x1a\x90\xb7\xf7\x9b\x98\xad\xf7\x89\xf9\x0a\x1d\xc2\x0b\x04\x1d\x65\x13\x74\xf4\x77\xc9\x19\x3a\x5a\xe0\x34\xb1\xbf\xba\xa7\x36\xfe\x17\x4b\x9b\x13\x17\xfb\x20\x9f\x64\x61\x2c\xa5\xdf\x25\x7c\x02\xb3\xba\x74\x33\x35\x11\xb4\x30\xd0\xe2\xf6\x29\x2e\x2c\x3b\x11\x97\x88\x0a\xf8\x41\x29\x57\xe6\x15\xe0\x71\x4d\xb3\xfa\xec\x87\xf4\xdf\xc6\x2f\x0c\x8b\xe2\x92\xf8\x8c\x71\xd8\x47\xaf\xe9\x46\x3f\xa3\xaf\x2d\x0b\xfa\x46\xdf\x31\x36\x5c\xd9\x2c\x43\x53\x07\x0b\xdf\xc1\xcf\x41\x07\x94\x21\x93\x96\xb9\xe4\xcb\x5f\x8f\x8f\x8e\x8e\xfc\xd7\x90\xb5\xfe\xff\x22\xaa\x24\x49\xa6\xa6\x25\x77\x83\x2d\x46\xec\xd2\x15\x5e\x70\xc6\xeb\x02\xd2\x31\x13\x5c\xf1\x88\x27\xe8\xb0\x30\xe8\xc6\x3c\x92\xe8\xdf\xb5\x58\x1b\x2c\x25\xfc\xa8\xf5\xb8\x16\x18\x58\x83\xf4\xfc\x4a\x87\xca\x1a\xc4\xab\xc7\x2a\x44\x71\xf3\x8a\x2d\x96\x61\x15\x0f\xa0\x05\x4d\x39\xc7\x16\xe9\x4d\x08\xfd\x32\xf9\xac\xe0\x51\x0b\x90\x5e\x63\x28\x7b\xf3\x4d\x59\x63\xb7\x05\x9e\x9e\x21\xeb\x96\x05\xb0\x78\x57\x96\x33\x98\x79\x1e\x84\xee\x13\x7d\xb9\xb0\xb0\x14\x80\xcc\xd3\x14\x8b\xc5\x71\x71\xda\xea\xc4\x59\x20\xad\x01\x8f\x49\xdc\x02\x80\x0b\x37\xb1\x47\xcb\x46\x31\x58\xf1\xd2\xdd\x68\xfe\xec\x46\x50\xcb\x30\x40\x2c\x20\x2c\xe2\xb1\xa5\xeb\x22\xfb\xb4\x2c\xb1\xf8\x77\xea\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\xb7\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x86\x7b\xf4\xfc\xfa\xce\x7d\xd3\xfd\xd2\x85\x75\x28\x8b\xec\x38\x09\xf1\xf1\xd8\x0c\x09\xfc\x5c\x5c\xbf\x10\xdb\x61\xac\x33\xb9\xcf\xcd\x35\xff\x3e\xe5\x37\x34\xd1\xb7\x16\xd0\xf8\xd1\x88\x95\x7e\x3e\x40\x24\xa1\x29\x65\x3e\xb6\xce\x30\x77\x3e\x35\xd2\xf3\x23\x55\x7a\xcb\x64\xfc\xa8\x39\x98\xc3\x75\x0a\x54\xaa\x01\x5b\x38\xd2\xf1\x8e\x29\x6b\x81\xc8\xa5\x1e\x57\xa1\xa3\x6b\x61\x56\x37\x71\x68\x05\x52\x1a\x10\x1e\x9c\xdf\x11\xd3\xad\xb9\xb3\x54\x84\x0b\x07\xed\x05\xcd\x1d\x3a\x40\xfc\x80\x03\x40\x1f\xa5\x98\x5f\x2f\xff\x36\x08\x28\x43\x96\xa7\xdb\x26\x9b\xd8\xf0\xe1\xb7\x32\xd3\xdd\x08\xe2\x6e\x2a\x9b\xb8\x44\x58\x9e\xba\x03\xb5\x06\xc5\x0d\xad\xf8\x13\x93\x28\xc1\x06\xa9\x46\x37\x04\x91\x8f\x07\xc6\x41\x9a\x05\x7d\x99\xeb\xc5\x74\x63\x6a\xec\x24\x84\x7d\x6d\xfe\xfd\x0d\xb2\x77\xc3\xb7\x07\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\x3e\x00\x65\xb4\xd6\x1f\x96\xc0\x04\x60\xd4\x4d\x14\xa0\x99\xf0\x56\xb9\x46\x10\x05\x3b\x66\x3c\x26\xdb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x96\x4e\x4b\xa4\x5c\xd3\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x2d\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x6d\x37\x21\x6a\x40\x2b\xea\x74\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x9c\xb3\x29\x3f\xb1\x3a\xd5\x05\x65\x8f\x86\xe2\x5f\x6a\x8f\x0c\x20\x36\x89\x4b\x30\x6e\xae\x4a\x2b\xcc\xe1\x10\x51\x16\x25\x39\x5c\x7c\x52\xe1\xe8\xd1\x80\x7a\xb7\x19\x7d\xf5\x37\xe3\xd5\xc9\x94\x2d\x12\x53\x9e\x24\xb6\xdb\xe2\x02\x2d\xca\x58\x3f\x51\x8c\x30\x7a\xb8\x3d\x6f\xee\xfb\x91\xd6\x9d\x39\xcd\xb7\x67\x99\x40\xe0\x7f\x7e\xa0\x6b\xc5\x5d\x56\x60\xf1\x48\x89\xd4\xbd\x71\xa9\x0d\x74\x55\x13\xe9\xa7\x9b\x87\x41\x14\x91\xa4\xe6\xd2\x5f\xdf\x83\x4c\x9e\x68\xb4\x8a\x08\x1a\x57\x2c\x67\x1e\xd5\x69\x6b\x05\xb8\xd9\x8e\xeb\x9a\x1f\x4b\xfa\x6b\xf7\x21\xd6\x56\xdf\x53\x88\x0f\xab\x0f\x12\x29\x7c\x72\xea\xa7\x9b\x07\x20\x17\xbb\xa6\x56\x3c\xe4\x26\x2b\x00\xaa\x75\xf8\x80\x9f\xd2\x4e\x60\x45\xb6\xcd\x49\x33\x68\x6c\x6b\xc4\x4c\xd6\x60\xee\x96\xda\xf1\xb7\xc4\x88\x2b\xf0\xdd\x20\x48\xab\x1d\xac\x2e\x0c\x9b\x83\x87\x6b\xa0\x68\xc0\xfb\xdd\xe6\x53\x79\x77\xc5\x74\x96\x0f\x33\x21\x64\x0d\xdc\x87\x3b\xfd\x7a\xc7\x41\x96\x5e\x5d\x36\xc6\x67\x6c\xea\x60\xd4\xe1\x97\x63\x2b\x63\xaf\x73\xed\x39\x72\x34\x8a\x8e\xf4\xd9\x3a\x7e\x24\x2e\x20\xca\x4b\xc5\xae\xdf\x99\x25\xf4\xb0\xcc\x86\xb7\x95\x37\xb0\xa0\x40\x81\xd8\x32\x80\x45\x0b\xc2\xff\x1f\x7b\xdf\xd6\xdc\x46\x92\x9c\xfb\xbe\xbf\xa2\x22\xfc\xa0\xd1\x39\x20\xb8\x33\x1b\x76\x8c\x15\xe1\x07\x88\xa2\x76\xb0\x2b\x91\x5a\x92\x9a\x59\x1f\xc3\x01\x15\xba\x0b\x40\x99\x8d\xaa\x56\x5f\x48\xc1\x5e\xff\xf7\x13\x95\x99\x75\xe9\x2b\xba\x01\x52\x1a\xaf\xe7\xc1\xde\x11\xd1\x5d\x5d\xf7\xca\xca\xfc\xf2\xfb\x96\xbb\xc1\xd4\x7e\xfe\xc3\x6f\xe8\xe5\xf7\x0d\xa2\x3f\xbf\xe4\x21\x9f\xd2\x51\xd8\xec\xb8\x32\x7b\xac\xfd\x6a\x87\x3b\x18\x6d\xf3\xa3\xaa\xf4\x31\x3d\xaa\x42\xf8\xc5\x81\x0a\x94\xf4\x29\x5b\xca\x23\x46\x44\x78\x82\x1e\xbf\x62\x0b\xce\x20\xaf\xdc\x64\xce\x96\xaa\x53\x08\x55\x9e\x12\x9e\x6d\xf0\xaa\x9a\x8b\x22\x7f\xd9\x32\xc2\x3e\xfb\xe4\x84\x11\x3e\x42\x1d\x37\x8c\x40\xc3\x45\xa8\x6f\xa5\xb9\x5a\x56\x69\x5e\x9d\x7d\xe4\x74\xa6\x03\x0e\x43\x9f\x12\x13\xe9\x0c\x39\xd1\x63\xb3\x56\xba\xd9\x6b\x4e\x54\x49\xbf\xe2\x3b\xc7\xcd\x60\xb5\x9a\x29\xd3\x0e\x2b\xb7\x12\xc0\x50\xdc\x5d\x87\x93\xe5\xd0\xc3\x2a\x90\x3c\x69\x57\x0d\x16\x6a\x66\x1f\xf1\x3c\x6b\xe6\x8a\x9c\xe1\x55\x08\x90\xba\x88\x4b\x87\x9b\x2e\xf7\xbd\x4e\x8d\xeb\x68\xc4\xd8\x34\xda\xba\xa2\xbb\xb9\x69\xbb\xd3\x88\xb4\x9b\x1c\x9b\x6a\xaf\x6e\xd6\x83\xc8\xda\xc0\x82\x23\x3e\x7e\x6b\x9b\x48\x45\xd9\xbe\x6c\xfb\xf0\xe1\x5b\xad\xe5\xee\xa0\x82\x20\x4d\x80\xb0\x70\x88\xe6\x4d\xf6\x7e\x9a\x7a\xba\xbe\xda\xc7\x9a\xab\xb5\x38\x69\x37\x96\x7c\xb7\xcc\x74\xb7\xb0\xd8\x80\x6e\xb2\x45\x54\x3c\x6d\x5b\x14\x1a\xd9\xb3\xcf\x25\x4f\xf0\x70\x53\x34\x1d\x6d\xb5\xe1\xd2\xf2\xc3\x3f\xb1\x19\x9c\x3e\xec\x3d\xec\x8b\x00\xb5\x80\xd2\x0a\xcd\xe4\x2e\x15\x59\xae\x15\xef\x54\xd8\xbb\xff\x31\x5f\x92\x4a\xd0\x92\x47\x91\x2e\x9b\x8a\x40\x23\x5a\xd2\x52\x5a\xd8\x28\xce\xee\xcb\x95\xc8\x94\x40\x15\x41\x78\x8e\xd9\xe7\x06\x55\x57\xf3\xb2\xd8\xfe\xb0\x8c\x12\x39\x58\xba\x08\xf2\xbc\x66\xe6\xb5\x0b\x7c\xab\xaf\x01\x95\xf2\x2b\x55\x57\x0c\x7f\x63\xf8\xdb\x94\xbd\xe6\xd1\xbd\x50\x31\x4b\x93\x72\x23\x89\xd6\x01\x4e\x28\xd8\x2e\x03\x47\x79\xb5\x61\x68\x5b\x60\xf9\xe6\x18\x5a\xa8\x1d\xbf\x47\x3a\x61\x32\x22\x23\x9e\x74\x92\x82\xb9\x0b\xce\x52\x36\xe7\xee\xc1\xd1\x72\xe7\x61\xb3\x98\xfa\xdc\xcb\x4b\xcc\x72\x79\xdc\x6a\xc2\x06\x54\xee\x57\x23\x16\xae\x9b\xad\x0d\xf6\x1d\xcb\x90\xe0\xf4\x24\xa9\x32\xb8\x7a\xc1\xf1\x0e\x94\xd8\xa5\x62\x1c\x08\x7c\x5e\xe4\xac\x4c\xad\x7d\x06\x1e\xe1\x04\xe2\xf3\x38\x04\xe6\x87\x54\x9a\xfb\xf2\x56\x2c\x14\x60\x9e\x99\x6b\x5e\x43\x76\x8c\x09\x0f\x4d\x6a\xdb\x1a\xd6\x48\x5f\x71\x5a\xb4\xb9\xc1\xa8\x7d\x60\x9e\x0e\xc4\x73\x17\x5b\xa1\x96\x47\x10\x3b\x0f\x1f\xb4\x0a\x76\x9b\xcc\x60\xe7\x59\x77\x5d\x58\x2a\x49\x52\x5e\x14\x4c\x09\x59\x4b\xe5\xba\x66\x46\xcb\x9c\xe5\xbc\x90\xb9\xd9\xcb\x5a\x7b\xdc\x93\x86\x9c\xd2\xeb\x7c\x1c\x53\x49\x0b\x4b\x49\xad\x2f\x5c\x7e\xc8\x94\xbd\x05\x7f\x64\x70\x33\xd0\x8e\xf3\xa3\x6b\xc3\x2a\xb6\xa2\x93\xfc\xf2\x29\x80\x55\xb6\x05\xc1\xf3\xbd\x6e\x66\x97\x0b\x34\x65\x33\x1f\x07\x42\xd6\x13\x8c\xf0\x1c\x68\x91\x48\x72\x71\xcc\xe4\x1b\xe4\x32\x05\xac\x04\x4c\x20\x06\x96\x54\x6e\xfe\xee\xb9\xfc\x5d\x35\x1f\x21\xdd\x96\xdf\x0b\xd5\xe7\x17\x1b\x5e\x43\x74\x5c\xf6\xba\x04\x9c\x47\x54\xa3\x53\xf4\x98\x0a\x0e\x5f\x76\x9e\x68\x46\xae\xcf\x4d\x97\x9b\x6b\x48\x74\x4f\x49\x3e\xe8\x17\x27\xaa\x9a\xc7\xad\xce\xc3\x75\x66\xc7\x0f\x6f\xb2\x59\xe9\xf8\xda\x21\x49\xca\x75\x30\xa2\xa3\x94\x0e\x99\x6c\xa0\xd6\x6e\x91\xa2\xcf\xdf\x8d\x37\xb3\x5b\x28\x74\x03\xc4\x13\x6d\x51\xcd\xd5\xfc\xe7\x1f\xf3\x6b\x58\xb1\x4f\xc1\x99\xd0\x2e\x90\x7b\x7a\xbe\xc2\x91\x91\x1a\x87\xc4\xf3\xea\xba\x3c\x76\x2c\x1f\xa9\x8e\x99\x9f\x5e\xe3\xa5\x74\xbf\x7d\xb3\x6a\x12\xbc\x83\xda\x76\x68\x66\xbf\x0f\xe0\x1c\x6c\x55\x4a\x54\xb3\xaf\x18\x84\xda\x5a\x1c\xc0\x44\x0d\xc7\xbf\xcc\xdd\x79\xd2\x3e\xc7\x3e\xe8\xf8\x94\x89\x35\x9e\xd8\xb0\x39\xaf\x07\xa0\xbd\xf3\x36\xf5\xfd\x9e\x9e\x48\x75\x37\x4e\x37\x5e\x0e\xd7\xab\x07\x60\xc6\xaa\x5c\xdf\x82\xce\x4b\x17\x77\x48\x20\x81\x60\x93\x01\xcd\x38\x9b\xcf\xb8\xd4\x94\xae\x41\xa1\x38\xbf\x3f\xfe\x39\xfb\xd3\xed\xf5\xd5\xd9\x8e\x67\xf9\x96\x43\x6e\xb6\x2d\x6b\x62\xa5\xf3\xf0\x7a\x6c\xe3\x8f\x52\x2d\xd4\x19\xdb\xe8\x09\x46\xbb\x5f\xb1\x6d\x51\xa4\xf9\xab\xf3\xf3\x8d\x2c\xb6\xe5\x6a\x1a\xe9\xdd\xb9\xef\x9a\x73\x9e\xca\xf3\x55\xa2\x57\xe7\x99\x00\xbc\xf3\xd9\xf7\xd3\x1f\xbe\x87\x91\x39\x7f\xf8\xfe\x1c\x62\x9c\xd3\x8d\xfe\x87\x77\x3f\xfc\xf3\x1f\xfe\xc9\x14\x9c\xee\x8b\xad\x56\xaf\x28\x94\xde\x5b\xf6\x19\x5a\xe5\xe7\xf8\x4a\xed\x2b\xff\x3c\xfd\x7d\x58\x0d\x7a\x74\xa7\x63\x91\xe4\xe7\x0f\xdf\x2f\xed\xc0\x4c\xd3\xfd\x6f\x08\xe1\x6f\x86\x10\xbe\x97\xc5\x6f\x08\xe1\x6f\x8a\x10\x1e\x6e\xe1\xb8\x3d\x06\x28\x57\xfd\xfe\x68\xfe\xee\xf6\x48\xeb\x7a\x3f\xb4\x0f\xb5\x1c\x0e\x61\xfe\xc6\x09\x47\xc4\xbd\x18\x75\xc5\xae\x35\xd7\x5d\x1d\x3a\x5c\x6c\x63\x65\x0f\x3a\x8d\xf9\x51\xe9\xea\x80\xc7\x91\x11\x50\x6a\xa3\x4b\x30\xe5\xb2\x0d\xf7\x4b\xb8\xb3\x53\xfa\xef\x39\xc9\xe1\x9f\x9a\x15\x9e\x9a\x7b\x24\x23\x7c\x82\x6f\x5b\x94\x9c\x7e\xb4\x4c\xf0\x4f\xc1\x9f\x3e\x50\x51\xd7\xd1\x42\xe3\xe4\x81\xba\xd8\x7a\x75\x54\x63\xcb\xf3\xe3\xe0\x96\x33\x24\x5f\x74\x71\x3a\xc4\xaa\xc9\xdc\x7e\xd0\x1e\x1c\x96\xcf\x02\xe4\xda\x89\x36\x2b\x2d\xb3\x54\xe7\x22\x9f\xb2\xb7\x35\xcd\x49\x0f\x21\xbd\x79\x7b\xc1\xbe\xff\xf1\x9f\xff\xb0\x50\xdf\xb5\x9c\xdb\xb0\xdf\xeb\x6c\x43\x88\x56\x38\xad\x77\x3c\x2f\x44\x76\x9e\xad\xa3\x73\xdc\xe5\xce\xcd\xfb\x67\xf4\xd1\x33\xbd\x3e\x73\xe4\xd0\x67\xc4\x93\x3b\xdd\xc5\xe3\xa8\x1e\x2a\x53\x0f\xcf\x1a\x3a\x68\x72\x38\x94\x90\x14\x4a\xaf\x9d\x0c\x00\x66\x1c\xa1\x62\x88\x5e\xb7\xfc\xc7\xeb\x44\xaf\xf2\x97\x8e\x8a\x8e\xe7\xf6\x1b\x9e\x1b\xaa\x7b\x69\x3e\x0d\x4f\xbc\x9d\x22\xcf\xe9\xa8\xb0\x7b\x49\x78\x1d\x19\xd3\xf1\xed\x8b\xcd\x1f\xf7\xc8\x8c\xc1\x33\x5d\x2a\xcb\xb3\xad\x95\xd0\x6b\xc0\x53\x82\x25\x6c\xf1\x22\xe0\xab\x35\x27\xad\x67\xc1\xc8\x44\x8a\x07\x0c\x44\x15\xba\xbb\xfb\x44\xae\xf9\x43\xfd\xfc\x1c\x5c\xf3\xa7\xf6\x3b\x6d\x28\xdf\xa8\xc3\x4f\x05\x75\xe2\x52\x1a\x83\xaa\x30\xcf\x1f\x8c\xa0\xba\x7d\xc0\xeb\x40\x79\x5a\xe7\x94\x67\x60\xa4\x89\xb3\x42\x9f\x01\x7d\x10\x90\xd2\xa0\xfa\x43\x17\xac\x02\x22\xcf\x63\x8e\x49\xf3\xfc\x80\x7a\xa2\x61\xfe\x25\xa8\x28\xd9\x24\x39\x92\xa9\x12\x38\x4e\x2a\x25\x32\x8a\xa9\x1d\x3c\x51\x47\xc6\xa5\xc3\xa1\xec\xc7\xc6\x05\x0a\xe3\x01\x33\xbf\xcb\x8c\xe0\xc1\x26\x30\x65\x60\x7d\x6e\xf5\x4e\x1b\x73\x46\x97\x79\xf0\x23\xde\x5e\xe0\x10\xee\xb4\xbd\x76\x3c\x45\xba\xc0\x6f\xd7\x1a\xb3\xb4\xcc\x4f\xe8\xd4\x0b\x1f\x1a\x25\x76\xb2\xaa\xca\x3b\x1c\xa8\xbf\xe3\xe5\xef\x9f\x37\x80\x7a\x40\xc5\x40\x10\xed\x25\xb6\x6d\xf9\x9f\xe6\x5e\x63\xa6\x94\xbb\x29\xb8\x93\x1b\x41\x3a\xc8\x8a\x19\xe2\xc5\xac\x35\xdf\x99\xb7\x5e\xee\x46\x8e\x81\x83\x7b\x0f\x19\x00\xae\x10\x00\x6d\x91\xcf\x67\xad\xd0\xe7\xae\x75\x69\x25\x72\xe3\xa5\x65\x6e\x1d\x57\xd5\x5b\x57\x00\x91\xb4\x36\xeb\xed\x89\xaf\x00\x27\x8f\x7d\x8c\x1b\x82\xb5\x2d\xba\xe0\x84\xe3\x17\x23\x48\xdd\x8c\xe9\x3b\xf8\x08\x4e\xce\x46\x0f\x06\x6b\xa1\xab\x03\xc7\xb9\xd8\xfa\x3c\x56\x6d\x89\x15\xc8\x15\xe8\xf3\xa8\x4c\x2d\x1b\x97\x47\xf7\xe2\x83\xd7\x03\xdf\xa7\x62\xc2\x56\x25\xfc\x7e\x75\x7d\x17\xa2\x35\x24\xb6\xf6\x2c\xda\x8a\xe8\x1e\x1c\x26\x78\xe4\x39\xf9\x4c\xe2\x25\x5c\x28\x2f\xc2\x56\x68\x0b\x3d\xd8\x3b\x5e\x7a\xa7\xcd\xa0\x33\x16\xcb\x3c\x4d\xf8\x1e\x82\xbc\x0a\x33\x26\x7c\x80\xd8\xa5\x1a\x99\xad\xe0\x90\xbf\x78\xf8\x48\x9b\x51\x99\xf9\xf7\xc6\xf6\x25\xcf\x56\xb2\xc8\x78\xb6\x67\xbe\x33\x9b\xfb\x01\xcb\xc5\x8e\xab\x42\x46\x0b\xb5\x13\x5c\x85\xa8\x3c\x0a\x72\x9b\x4e\x8e\xb5\x20\xe6\xe6\xf5\x5a\x44\x85\xa7\x7e\x04\xe3\xdd\xf5\xd4\xa1\x35\x38\xae\xed\x6e\xe5\xf5\x36\xfd\x27\xa9\x90\x68\x40\xee\x00\xf3\x49\x73\x88\x8e\xc6\x23\x83\x37\x20\xda\x47\x47\xae\xbd\x0c\xc2\xbf\xec\x9c\x62\x2b\x51\x3c\x0a\x60\x36\xa0\x54\xcc\x36\x1b\xff\x64\xe1\x86\xd3\x74\x98\xdb\x15\xac\x03\x24\x18\x2e\xb0\x10\x4c\xe6\x28\x98\x54\x8d\x4b\xe9\x05\x25\x87\x82\xb7\xe7\x05\xf9\xad\x5e\xc0\x31\x6d\x6e\x8f\xd9\x83\x88\x17\xaa\x4a\x70\x45\x36\xa3\x5f\x70\xcc\x4b\x92\x3d\xcd\x6e\x63\xfb\x78\x90\x2f\xff\x12\x48\x3d\x3c\x9d\xa7\x4b\x7f\xec\x91\x48\xc3\x46\x3f\xe7\xad\xca\xaa\x33\x86\xd6\xfd\x00\x48\x96\xc8\xad\xe4\x10\x29\x14\x56\xf0\x14\x6e\x52\x3a\xfa\x1e\xe4\xf6\x73\x00\x58\xf2\x4b\x36\x3c\x9d\x6d\x65\x2c\x94\xcd\x6b\x5f\x97\x09\xf2\xb5\x76\x89\xb6\x11\x9b\x97\xcd\xc1\xf9\x76\xb9\x58\xce\xaf\xc6\x02\x95\x37\x07\x7b\x08\xc0\xc8\xb8\xd7\xd9\x59\x2f\x54\x8e\xd2\xe0\x56\xe0\x09\x1c\xcf\x1b\x51\xc0\x69\x1e\x97\x09\xa6\x69\x83\xc7\x1c\x98\xc1\x78\x92\x30\x59\xe4\x0b\xe5\x88\xcc\x90\x96\x1e\x76\x58\xeb\x52\xb7\xda\xc0\xca\x29\x0c\xc3\xcf\x5c\x81\x1d\x26\x23\x59\x34\x20\xdc\xfb\x50\x14\x25\x4d\x05\xc7\xac\x42\x1c\xb6\x85\x0a\xef\x5c\xf5\x41\xa0\x14\x3c\x50\x8b\x7f\x8a\x6c\xb8\x1e\x44\x3e\x48\xec\x8f\x1e\x92\x29\x9b\x61\xeb\xcc\x85\xcb\xea\x9d\x62\x6d\x89\xc9\x80\x90\x96\xe6\x56\x53\xe4\xd6\x47\xee\xef\xad\x90\x23\x11\x95\x09\xcf\x12\x50\x07\x58\x97\x09\x93\xeb\x40\xba\x15\xc6\x00\x69\xac\xcc\x70\x45\x1a\xce\x6a\xeb\x25\xcf\xf9\x4e\x04\x19\xf4\xe4\xde\x49\x02\x0c\x05\x72\x73\x63\x70\xde\x94\xf5\x72\xca\xde\xd4\xb5\xfe\x61\x4d\x04\xf4\x97\x32\xc7\xed\xcf\xd5\x37\x48\xfe\x84\xd6\x99\x2a\x6a\x65\x56\xa4\x5b\x75\x1d\x23\x08\x34\xfa\xe3\x00\x1a\x56\x44\xa1\x1f\x35\xdc\x9a\xfc\x6d\x5e\xad\xc1\x36\xdc\x82\xe8\xa8\xa0\x3d\x15\x46\x56\x32\xa4\x0e\x3d\xa2\xa2\x8e\x9a\xb5\xa5\xb2\xbb\x1e\xa5\x58\x18\xc7\x91\x55\x0d\x74\x97\xc6\x57\x34\x98\x39\x21\x1c\x67\x48\xcf\x6e\x78\x31\x16\x9b\xe3\x92\x71\xc6\x57\xb4\x15\x07\x35\xa4\x9a\xb0\x7b\x8c\xac\xa7\x93\xc7\x3e\xa2\xa2\x4e\x84\xdb\x2b\x33\xc0\x56\x21\x78\xb4\xad\x66\xb3\x5a\xce\x49\xd7\x82\x7c\xa1\xe8\xb0\x1b\x9f\x88\x3b\xf3\x73\x0e\xa4\xa7\x98\xa9\xfe\x94\x5d\x2b\x81\xc8\x39\xbd\x0e\x0e\x15\xaa\x00\x69\x54\x01\xed\xbf\x0a\xc4\xc0\x13\xa9\xee\x2d\xc9\x87\x59\x72\x13\xc6\x7d\xe9\xb0\xeb\xe1\xb4\xc1\x5d\xa4\xc3\x96\x6c\x13\xc9\x38\xc1\xbc\x1c\x96\x2a\xdb\x7e\xe7\x0f\x00\xa8\xe3\x77\x80\xb6\x76\x0c\x1f\x96\x5e\x24\xb9\xbb\xc5\x55\xd4\xde\x43\xd4\x68\x21\x8b\xfd\xa1\xfe\xfd\xb0\xad\xa2\x10\x47\x48\x4a\x7d\xbc\x7a\x73\xf9\x76\x7e\x55\xd5\x81\xfa\xcb\xc7\xcb\x8f\xd5\xbf\xdc\x7c\xbc\xba\x9a\x5f\xfd\x31\xfc\xd3\xed\xc7\x8b\x8b\xcb\xcb\x37\xd5\xe7\xde\xce\xe6\xef\x6a\xcf\x99\x3f\x55\x1f\x9a\xbd\xbe\xbe\xa9\x29\x4f\x59\xd9\xa8\xe0\x4f\x77\xf3\xf7\x97\x6f\x96\xd7\x1f\x2b\xe2\x55\x6f\xfe\xf5\x6a\xf6\x7e\x7e\xb1\x6c\xa9\xcf\xcd\xe5\xc5\xf5\xcf\x97\x37\x07\xb4\xa7\x7c\x7b\x5b\xbb\xf4\x29\xe0\x63\x47\x2b\x91\xcd\xd8\x3a\x93\x42\xc5\xc9\x1e\xb1\xf7\xf6\x66\x5b\x03\xd3\x86\x67\xaf\xdc\x09\x5d\x9e\x02\xa1\xbf\xdb\x0a\xa6\x1f\x44\x06\x7c\x24\x58\x1a\x25\x2f\xf3\xfc\xbe\x93\xad\xb2\xc8\x9a\x51\x81\xde\x4c\xa1\x22\xdb\xbb\x5c\xb4\xbe\xea\x78\x2e\x2b\xfa\x08\x4b\x45\xd6\x57\x17\xb0\x8c\xb2\x32\x2d\xe4\xaa\x3b\x29\x62\x74\x8a\xeb\xd0\xbb\x37\x32\x2f\xb6\xd3\xd4\x5c\xb5\x6f\x8c\x95\xdc\x80\x53\x80\xc7\x50\xc2\xb1\x02\x7b\xee\x6d\x0b\xd6\x4c\xcb\x55\x22\x23\x26\xe3\xba\x3f\x05\x53\xd8\xd0\x65\x5c\x27\x68\x4d\x45\x06\xa6\xaa\xb9\x01\xa4\x99\x38\xe3\x65\xb1\xb5\xda\xff\x2e\x93\x11\x09\x53\x45\x94\x09\x8c\x05\x88\x1c\x9c\xb4\xa8\xac\x16\x7c\x09\x2a\x43\xb9\xf4\x31\xd0\xf6\x4c\x03\xb2\xfc\x8e\x18\x01\xbe\x89\xa5\x8f\x70\x92\xe2\xf3\xbd\x5d\x43\x35\x96\x79\x5d\x56\x1b\x4e\x78\xfc\xd1\xea\xb3\x99\x76\x9b\x9d\xda\xe9\x93\xe1\x20\xdb\xdc\x8d\xf6\x66\x1c\x9a\x63\xe1\x44\xa9\x26\x33\x50\xe9\xf4\xd3\x45\x26\xe0\x10\x21\x28\x80\xf5\x5f\x00\x74\x85\x72\x3d\x20\xc5\xc3\x5c\xd5\x56\x62\xcb\x93\x35\x5a\x1c\x66\x68\xfc\xba\x6a\x4e\xd1\x3b\x7d\x2f\xd4\x0d\x0e\xd8\x37\xd9\x0e\x15\xde\x7c\x3c\xbb\x82\xf3\x08\x79\x17\xa6\xa9\xa3\x9d\x55\x36\xd7\x0d\x8c\xa9\x02\xef\x09\xc1\xcf\x98\xd2\xe1\xb9\x93\x6d\x9a\xdc\x7a\x2d\xbf\x98\x02\x17\x4a\xb4\xb2\xc7\x02\x5e\xc8\xf2\x5c\xb9\x7d\x19\xb0\x51\x48\x16\x74\x2f\x14\x28\xbb\xa1\xf0\xf3\xc1\x39\x3b\xce\x7f\xde\x1c\x8b\x1e\x87\x3e\xf8\xfc\x64\x45\xf0\x2e\x8c\xf2\xd8\x7e\x2a\x30\xc7\x66\xca\xde\x10\x05\x8a\xf9\xcb\xc5\xbb\xf9\xe5\xd5\xdd\xf2\xe2\xe6\xf2\xcd\xe5\xd5\xdd\x7c\xf6\xee\x76\xe8\xf2\x7b\x8a\xbc\xa8\xda\xea\xab\xa7\x07\xb9\x1d\xe2\x9c\x56\x9e\x4f\xcf\x75\x8d\xf2\xcb\x0e\x86\xe4\x70\xed\x65\x9c\x2e\x63\x99\x47\xe6\xf8\xdb\x2f\x85\x8a\x81\x76\xfb\xa8\xa9\xda\x5e\x54\xbd\x15\xee\x09\xe6\x9e\xb0\x3b\x08\x9e\x76\x0f\x76\x46\xbb\xdf\x01\x75\x07\x6e\xc8\x4c\x98\xc5\x1f\x9b\xfb\x81\x3b\x6d\xa6\x87\xb5\x56\x4c\x71\xa7\xb5\xad\x5a\x44\xbd\x4d\x58\x5f\x99\xe7\x25\x37\xfb\xa3\x7d\x0c\x20\x87\x1d\xbd\x42\x5c\x88\x21\xf7\xb7\x0c\x74\x6b\x99\xcc\x17\x6a\xc7\x55\xcc\x0b\x9d\xed\x3b\x9a\x38\x6c\xf3\x0c\x97\x4d\x75\x0b\x0d\x8f\x6c\x25\x44\x6c\x47\x01\x1f\xe5\xaa\x3e\x95\x90\x21\xfc\xee\xfa\xcf\x97\x57\xb7\xcb\xcb\xab\x9f\x97\x1f\x6e\x2e\xdf\xce\xff\xea\x90\x90\x29\xcf\xdb\x74\x2a\xd3\x4c\x98\xdd\xc5\x12\xae\xb4\xee\x2f\x28\x1e\x69\xcb\x21\xc1\x30\xb9\x5e\x28\xbb\xb3\x64\xbe\xf8\x6d\xa6\xcb\xcd\xb6\xbd\xa0\x7a\x2d\x3f\xcc\xee\x7e\x3a\xaa\x9a\x40\x87\x85\x0a\x73\xb8\xda\x9a\x88\x50\xb9\xa6\x7d\x0f\x61\xa4\xb5\xea\x01\xa9\x1b\x3c\xda\x16\x65\xe8\xd8\xd1\x8e\xba\xbd\x34\x37\xad\x5e\xe3\xbf\xe5\xf1\xae\x09\x74\x17\xec\x9b\x95\x63\x04\x10\xca\x28\x54\xda\x28\xed\x55\xcb\xdf\x2a\x27\xd8\x0f\x67\x89\xd8\x6c\x44\x8c\xd3\xab\x5e\x30\xf9\xe0\x68\x0b\x8c\xfc\xb9\xde\xd6\x8b\x24\x25\x78\xc2\xc1\xec\xf0\x5e\xc3\x37\xf0\x0f\xee\x95\xf6\xbd\xe2\xc2\xca\x95\x47\x5a\xe5\x05\x57\x1d\x81\xe4\x87\x26\x42\x73\xd0\x56\x74\x9d\x31\x97\xfc\x44\x0e\x13\x1b\x32\xf0\xeb\xa0\x0b\xf0\x72\x3a\x2e\xd4\xd5\xe3\x46\xa4\x09\x8f\x84\xcb\x61\x40\x2e\x42\xb8\xd7\x1f\x13\xc0\x23\xc1\x46\x45\xfe\x96\x40\xc8\x31\x50\x77\x6f\x99\x02\xe0\xb9\xbd\xb1\xfb\xf1\xf3\xbb\x56\x7a\x2f\x6e\xc4\x40\x06\x8e\x66\x54\xcc\x22\xe8\x3b\xfa\xa2\x40\x86\xae\x13\x96\x3c\x6a\x3a\xd4\xbe\xfc\x33\x0d\x3c\xde\x99\xab\x8e\x6e\x6e\x39\xfe\xdc\xf4\x70\xa6\x63\x9f\xbf\xb0\x28\xb2\x5e\x5a\xd0\xa7\x08\x47\x7c\xc8\xf4\x4e\xe6\x62\x56\x14\x99\x5c\x95\xa1\x2e\xe2\x48\xc0\x5c\xe5\x72\xe2\x1b\x9c\x66\x3a\x2e\x23\x4b\x09\x04\xad\xf5\xb0\x1f\xf2\xf2\x59\xab\x23\x66\x67\x66\xf6\xd1\xcd\x4d\xc4\x67\x00\xe8\x5f\xa8\xae\x18\x9b\xdd\x18\x3b\x7c\x7f\x1f\xec\x51\x7e\xca\x94\x6c\x99\x14\xdd\x9d\x69\xe7\xc0\xb0\xc4\x5a\x66\x1f\x07\x0b\xb8\x03\x35\x45\xd3\x65\xc5\x31\x80\x5e\xb5\x51\xba\x18\x40\xdc\x51\x33\x0e\xdc\x35\x0c\x1b\x53\xcd\x98\x41\xbb\x61\xcb\x73\x34\xe7\x8b\x68\x5b\xad\x38\xb4\xa6\xca\x5f\x58\xaf\xae\x33\x8f\x4f\x73\x9b\x0c\x0a\xa3\x4d\xd0\xd1\x20\xc9\xb1\x5d\xd1\xa2\x73\xc2\x9a\xe3\xbc\xdd\xa1\xc5\xe8\x6e\x74\x78\x18\xc0\x3e\x9a\xf0\x52\x45\x5b\x96\x26\x1c\x93\xc9\xb7\x3c\xc7\x29\x6d\xb1\x24\x7c\x25\x13\x59\x00\x4b\x0f\x86\x38\x6b\x3d\x6c\xae\x79\x3c\xbb\xb7\x14\xc5\xdc\x53\x32\xf5\x4d\xfa\x13\x31\xbb\xae\x55\x5f\x15\xb5\xeb\x97\x6c\xb8\x0d\x0d\x9b\x96\x84\xd8\xf5\xc3\x61\x36\x62\x98\x96\xbe\x2d\xe3\x46\x96\x4a\xfc\x50\x7f\xbd\xd2\xdf\x2d\xd6\xcb\x78\xc4\x0a\x71\xef\x8f\x38\x7d\xea\xcc\xfc\xad\x2b\x6b\x9d\x68\xde\xa1\x0e\x6d\xcb\x46\xa2\xfd\xae\xb2\x63\x5d\xae\xba\xa8\x9d\xb1\x56\xfd\xa5\xf7\x05\x43\xec\xba\x7d\x2a\x67\x69\xb8\x01\xf2\x42\x14\x72\x9c\xbf\x27\x68\x34\x2f\xc4\x19\xbc\xde\x5e\x38\x65\x18\x0e\x6e\x73\x63\xa2\x79\xb9\x17\x67\xb4\x01\x96\xb0\x6d\x76\xd5\x4e\xe7\x53\x30\xe1\x27\x8e\x97\x54\x07\xa6\xd2\x61\x05\x89\x3f\xfc\xd0\xd2\x2d\x8d\x46\xff\xa5\xe4\x66\x3f\xbc\x5e\xdf\x22\x57\xce\x29\x8d\x2e\x64\x73\x59\xb5\x6f\x3f\xf5\xaf\xde\x55\xc3\x6b\xe1\xc4\x1f\x9c\x89\xdc\xd6\x9a\x5b\xf3\xf6\xf0\x5d\x68\x5e\x71\xa3\xa5\x99\xd4\xc0\x19\xa3\xd7\xc8\xc0\xd8\x4d\xfc\xd9\xfa\xdd\x13\x7a\xf2\x73\x29\x4a\x61\x26\xd0\xaa\x8c\x37\x4d\x2f\xf7\x08\x4b\xd9\x37\x69\xab\x1f\xd9\xae\x8c\xb6\xcc\x16\xce\x62\x91\xf0\x7d\xa5\x69\x60\x24\x16\x1a\xc8\x36\x47\x51\x67\x05\xdc\xa9\x51\x99\x17\x7a\x07\x00\x63\x5f\x6e\x56\x2a\x58\xe5\x8c\xdb\xd5\xd5\xb6\xbf\x5b\x76\xb9\xa7\x88\xc8\x6d\xd2\x72\xc9\x5b\xc9\x58\x0f\xcc\xa1\x1a\x89\xeb\x90\xad\x65\xd6\x92\x7a\x5f\x27\x33\xf5\x5a\x6c\x03\x29\x4c\x2b\x54\x7b\x47\xc6\x79\x6f\x3f\x5c\x5e\xcc\xdf\xce\x6b\x41\xd6\xd9\xed\x9f\xc3\x7f\xff\x72\x7d\xf3\xe7\xb7\xef\xae\x7f\x09\xff\xf6\x6e\xf6\xf1\xea\xe2\xa7\xe5\x87\x77\xb3\xab\x4a\x28\x76\x76\x37\xbb\xbd\xbc\x3b\x10\x6d\x6d\x7e\xb5\x7b\x56\xf2\x80\x09\xd0\xe2\xbf\x2d\x39\xbd\x75\xba\xd0\x57\x5f\xb1\x99\xe5\x45\xac\x30\x77\xda\x88\x39\x40\x6c\x50\xaa\x9d\x02\xeb\x6f\x78\xc1\x2f\x78\xc1\x13\xbd\x99\xb2\x19\x23\x74\x3c\x66\x3d\xe4\xa6\xe7\x89\x34\xce\x4c\x55\x2c\xc2\xd8\x8c\x91\x77\x68\x78\xf5\x4d\xbd\x26\xba\xc6\x44\x84\x3a\x0d\x36\xc5\x6f\xa1\x2e\x1f\x84\x2a\x4a\x20\x91\xe7\x49\xc2\xe8\xb3\xf6\x81\x80\xbe\xc0\xd6\x32\x97\x3b\x99\xf0\xcc\x0b\x25\x5e\x53\x59\x70\x65\xb3\x75\x75\x6c\x55\xcd\xdc\x78\x7b\xab\xfd\x38\x67\x50\xef\x8b\x77\x73\x98\x4f\x51\x61\x55\x80\xec\xc7\x17\x0a\xe9\x00\xe9\x8b\x3b\x0e\x99\x38\x85\x26\x37\x33\x7e\x9e\x1e\xee\x9e\x88\xf9\x29\xcb\xd1\x06\x64\x9e\xeb\x7a\xed\x2a\x69\xff\xe3\x52\x15\xd9\x7e\xb0\x65\x7b\x07\xa9\xe7\x39\xdc\x4e\x08\xd8\x57\x15\x4f\x44\x2f\x20\xb3\xa5\x5f\x81\xb9\x6b\x51\xa7\x14\xa4\x72\xb1\x28\x04\xf9\x74\xdc\xc0\x12\x63\x86\xfc\x5a\xfb\x21\x64\x07\x82\x5e\x58\xe9\x52\xc5\x39\x41\x10\x77\x52\x9d\xef\xf8\x97\x97\xb6\xa5\xc8\xb6\xe1\x24\x4c\x80\x49\x4d\x24\xe6\x2e\xba\x37\x3b\x7e\x7f\x77\x2d\x54\x4f\x7f\x1d\xbe\x2f\xd8\x63\x06\x2e\xbe\xde\x4b\x81\x60\xca\x07\xb1\x6f\x1b\xbf\x86\x0c\x15\x02\x36\x69\xc1\x43\x21\x69\x26\xcc\x83\x0e\xa9\x99\x20\x00\xd7\xfd\x1b\x32\x32\x2a\x52\x99\xed\x07\x59\x08\x7e\x38\x69\xd9\xb4\xc2\x2e\x86\x5b\x81\x83\x75\xc4\xe8\x4b\x66\xcc\x10\x84\x61\xfd\xff\x94\x81\x42\xd1\x65\x33\x58\xff\xa1\x57\x6c\x0d\xe9\x58\x24\x85\x9f\x09\x88\xf7\xc0\x50\x58\xe2\x7b\xe0\xdb\x6a\x20\x3b\xec\x14\x48\x44\x0e\x51\x10\x65\x2e\xdc\xe2\x73\x49\x81\xec\xef\x7f\x3f\xce\xe8\x28\xb2\x3d\xb3\x22\x2b\x8d\x13\xd7\x19\x36\x50\xaf\x52\xc9\x36\x12\xbe\x9b\x52\x19\xbb\xe4\x29\x2c\x8e\xe1\x41\xde\xda\x47\xe9\x9f\x07\x33\xa6\x6c\x7c\x22\xc3\xe7\x9f\x8d\x53\xf5\xe7\x1a\x95\x2a\x7d\x0e\xf0\xf9\x54\x7a\x78\xa0\xad\x78\x74\xff\xc8\xb3\x18\x9d\xd8\x00\xca\x99\xb2\x9f\xf4\xa3\x78\x10\xd9\x84\x45\x22\x2b\x38\xf1\x98\xe5\x80\x4a\x80\x05\x45\xe5\x2c\x14\xa4\xab\x20\x29\x9c\xca\xcb\x4c\xb0\x42\x6e\xb6\x85\xc8\x42\x4c\x89\xce\xcc\x76\x54\x20\x85\x65\x2a\x22\x62\x8e\xea\xe8\x80\x75\xc2\x1f\x9a\x06\xdf\x31\x94\x17\x6c\xee\x72\x6e\x6d\xd0\xd6\x8a\x89\xf4\xa1\x80\xa8\xc3\x68\xd3\x44\xae\x9f\x09\xdb\xe8\x84\xab\xcd\x74\x3a\x65\xa2\x88\xa6\x2f\x47\x4d\x74\x2a\x30\x0c\x03\x3b\xac\x79\xa2\x75\x2e\x92\xbd\x63\x3b\x72\xd9\x40\x00\x3f\xfd\x52\x08\x95\x4b\x74\x7a\xb5\x4c\xff\xdb\x7a\x88\xe4\xeb\x46\x94\xda\x7d\x15\xa3\x73\x4d\x3b\xca\x01\x6d\xb2\x11\x25\xe1\xf3\xed\xd7\xd0\xa3\x72\xa7\xdb\xcb\x52\x5a\x8d\x4d\x08\xfe\x59\x77\x29\xed\x1f\x45\x42\xd8\x5a\x12\x31\xb6\x1c\x95\x44\xd9\xde\x67\x8d\xbc\xd6\x13\x52\x5a\x7b\xb2\x53\x47\x26\xa6\x0e\xf1\x8a\xdc\xd6\x87\x7b\xf4\xb2\x38\x2c\x97\xd2\xda\xa0\x91\x89\xbf\x3e\x43\x7f\x8c\xe9\x84\xb9\x83\xc9\x1e\x6e\x5c\x2e\x0d\x18\x62\x0b\x71\x10\x1b\xa9\x84\x7e\xe0\x4e\xeb\x63\x47\x8e\x49\x2b\x08\x15\xe5\x85\xce\xf8\x46\xb0\x9d\x88\x65\xb9\x6b\xdd\x6c\x5c\x75\x4f\x01\x41\xea\xa4\xdc\x75\x73\x1a\x9e\x6a\x40\xfb\x4a\xe2\x7f\x5d\xc0\xe7\x06\x1b\xd0\x33\x87\xef\xb7\xaa\x55\x54\x5f\x0c\x84\x50\x5f\x9b\x93\x32\x93\x39\xb0\x6f\x1e\x93\xff\xe9\x8a\xc1\xa2\x21\x8c\xbc\x4f\xd1\xb7\x50\x19\xdd\x33\x1b\xdf\xa3\x57\x72\x1c\x55\x88\x3d\x77\x1f\x0a\x75\x68\xe5\x78\xe7\x4b\xa6\xcb\x06\xf3\xd0\xa0\x70\x3f\x98\x8d\x01\x27\x3e\x61\xbf\xa0\x40\x02\xa8\x14\x9a\xad\x6d\x46\xe1\xbd\x08\x38\xda\x62\x60\xcb\x7f\x44\xc2\x9f\x3f\xff\x98\x5b\x28\x0b\xa1\x8d\xbc\xc5\x52\xf8\x8f\x60\x74\xe8\xe1\x7b\x0b\x32\xc3\x16\x62\x11\xc0\xa4\x16\x73\x55\xb4\x16\xe0\x31\x98\x50\x16\xbe\xf2\x33\x2f\x93\xf6\xc7\xa9\x7c\x78\x14\x35\xd0\x66\xbf\xdc\x32\xec\x6a\xe2\x55\xcf\xfa\x2a\x1a\x14\x72\x18\xe6\x06\xdd\xb5\x3c\xc2\x12\xac\x8c\x03\x76\xba\x25\xd6\x37\xdd\x2e\x8a\x68\xeb\x2d\x8f\xaa\x98\x39\x09\x5c\x52\x3b\x77\x9e\x29\x1e\x11\xc4\x21\x14\x53\x6e\x94\x0e\x45\x4e\xb4\x12\x10\xa6\x33\x1b\x90\x0e\x8b\x65\xb2\x38\x8c\x77\x1b\x49\x9f\x76\x68\xaa\x15\x1a\x71\x4c\xd4\xce\x4a\xb4\x15\xae\x14\x12\x49\x97\x2c\x58\x18\xef\x44\xa4\x97\x58\x67\x10\xaf\xd2\x58\x2c\x54\xf5\x53\x8d\x4e\xb2\x80\x34\x99\x09\x24\xfe\xcd\x8d\xf5\x56\xc8\x07\xb3\x50\x9b\xd3\xda\x4d\x50\xd8\x01\x9a\x73\x6f\xa1\xb0\xda\x01\x7b\xf0\xbd\xd8\xe7\xa1\x38\x23\xcd\x28\xd6\x35\x21\xa5\x69\x0f\x8d\xd7\xe1\xa1\x80\x8e\x5b\x52\x0b\x76\x83\x71\xa2\xf8\xd1\xf7\xe6\xe5\x1e\xa4\x6b\xa3\x70\x33\x07\x7d\xca\xa6\xf7\x29\xd2\x36\xe1\xfb\x99\xc6\xd0\x83\xd9\x00\xaa\x18\x82\x11\xc3\xfc\x1b\xb8\xf8\x9a\xfb\xed\x42\x11\xc1\x78\x70\xc8\x99\x0d\xa7\x39\x6c\x94\x47\x8e\xb4\xc6\xfb\x0a\x07\x0e\x70\x40\x5a\x3e\xcc\xea\x27\x6d\xe4\xd9\x6a\xfb\x2e\x14\x7c\x1a\x33\x6d\xad\x0f\xaf\xf5\x83\x47\x22\x24\x69\x70\x3b\x51\x91\x41\x3a\x1b\x3e\x49\x34\x88\xa8\xf2\x89\xb7\x9f\x48\x98\xee\x9b\xa9\x56\x40\xa2\x85\x23\xde\x5e\x5e\xdc\x5c\xde\x7d\x35\xd4\xa4\x85\x2c\x8e\x86\x4d\xda\x7a\xbe\xb9\x7c\x3b\xfb\xf8\xee\x6e\xf9\x66\x7e\xf3\x1c\xb8\x49\xfa\xe9\x08\xe0\xe4\x2d\xe9\x16\x5c\x68\x55\x88\x2f\x27\x9d\xc9\x59\xa9\x96\x7c\x44\x02\x8f\x53\x2e\xe9\x33\x77\xb0\xd0\xa6\xee\x82\x13\x45\x20\x12\x4e\x3c\xd1\x9c\xcc\xc2\xda\x3b\x0d\xd7\x32\x49\x20\x9f\xd9\xb9\xd7\x29\x57\xce\x74\x2a\xec\x3f\x96\x77\x94\xf6\xd4\x85\x5a\x55\x64\x31\xc0\xe5\xb7\x35\x97\x60\xcc\x64\x4e\x4d\x07\x64\x12\xf2\x44\xfb\xa4\x19\x36\x52\x09\x5f\x0d\x54\xe4\x2e\x15\xeb\xe4\xd3\xa6\x41\x7c\x4e\x7c\x18\x19\x5e\x43\x6d\x4d\x3b\xe3\x2a\xf3\xd3\x9a\x9f\xf6\x47\xd7\x42\x5c\xc4\x52\xa1\x61\x5a\x59\xcd\xb7\xed\x53\xf7\xdc\x2f\x01\xe8\x77\x33\x92\x1c\x62\x10\x20\x7a\xed\x07\x92\x06\x02\x25\x9b\x7c\x70\xe2\x5e\x22\x8e\x4a\xaf\x6b\xfd\x6c\xb6\x42\xd3\xd7\x12\x22\x15\x9c\x28\x5a\xa2\xa4\xcc\x0b\x91\x91\xdb\x64\xf6\xcb\xed\x42\xbd\x36\xc7\xd7\x4b\x3a\x85\x48\xd6\x07\x3f\x81\x28\x1e\x5d\xf9\xbe\xb5\x50\xc2\x1d\xec\x3b\xf4\x51\xef\x04\x57\x39\x83\xa5\x91\x24\x22\xf3\x33\x03\xeb\x23\x44\x4c\xa2\x94\xc0\x49\xeb\xdf\x27\x4d\x7a\x0d\xab\xd6\xd4\x97\x7e\x25\x55\xf6\xfa\x7c\xea\x4a\x97\x07\xdc\xf4\x73\xce\x9c\x96\xf4\x9d\xa1\xb3\x88\x20\xe7\xad\x93\xa8\x9a\x4c\x33\x68\x2e\xdd\x61\x71\xbf\x4d\xa5\x27\x9c\x4a\x03\xce\xf5\xf0\x94\x60\x5b\x6d\x36\x50\xa7\x79\xe3\x63\xee\x8e\xae\x23\x01\x04\x9c\xe9\xc6\xd6\x53\xa7\xa6\xfb\x78\x0a\x10\x06\x8a\x3a\x0d\x67\x3c\x6b\xe1\x05\xf2\x02\x63\x36\xb6\xd3\x2b\x29\xf9\x3c\xfc\x7b\x33\x8b\xb8\x54\xba\xb0\x4c\x1a\x0e\xe4\x48\x88\x4d\xf3\x80\xa3\x70\xe9\xad\x23\xd1\xa2\x58\x2b\x65\x79\xa2\x2c\xdb\x5d\x88\x0c\xad\xe4\x16\x63\x2d\x42\x56\x02\xcb\x44\xe0\x98\x4c\xc6\x4c\xbe\xe3\x85\x3f\xab\x73\xce\xb1\x62\x1e\x05\x76\xb8\xba\xbe\xba\x0c\xa1\x0a\xf3\xab\xbb\xcb\x3f\x5e\xde\x54\xb2\xd2\xdf\x5d\xcf\x2a\x99\xe5\xb7\x77\x37\xb5\x84\xf2\xd7\xd7\xd7\xef\x2e\x1b\x98\x87\xcb\xbb\xf9\xfb\x4a\xe1\x6f\x3e\xde\xcc\xee\xe6\xd7\x95\xe7\x5e\xcf\xaf\x66\x37\xff\x1a\xfe\xe5\xf2\xe6\xe6\xfa\xa6\xf6\xbd\x8f\x17\xfd\xe8\x89\x4a\x33\xda\xdd\x3f\x3e\x38\x1b\x10\x84\xb6\x2e\xe3\xaa\x30\xea\x09\xab\x78\x20\x0c\xef\xd0\x74\xb4\x49\xe7\x71\xa8\x1b\x80\x0b\xc3\x54\x75\xd4\xac\x7b\x7a\x25\xd7\x4a\xd7\xa5\xfc\xb4\x6d\xcf\x9c\x6a\xcb\xa7\x80\x45\xf6\x1a\x80\xee\x2b\x35\xc7\x6d\x5e\x40\x66\x1e\x76\x6d\x0a\x11\xac\x0d\xef\xd4\x31\x52\xf1\xb3\xd7\xd4\x7e\xe3\x50\x3d\x3d\x21\xd5\x01\x5e\x9f\xa7\xe2\xf4\xe8\xab\x74\xf0\x31\x9b\x32\x2f\x63\x6b\x28\xd8\x1f\x83\x83\x1b\x9a\x61\x66\x4e\x30\x1d\xbb\x24\x37\xdb\x93\x6f\xfa\x39\xe4\xc6\xd6\x9f\x3e\xd2\xac\x7b\x8d\x70\x64\x44\xbd\x81\xf8\x69\x4c\xbd\xef\x78\x7e\x3f\xb6\xde\xf4\x91\x66\xbd\xc1\xec\x3b\xaa\xde\xe0\xf0\x2e\xda\xc9\x60\x46\x6c\x62\x61\x31\xd5\xea\xb9\x4c\x75\xf7\x48\xa0\x6c\x3b\xac\x8e\x66\x01\x3c\xef\xf5\x32\xe5\xc3\x03\x19\x50\x1b\xb7\x5c\x79\x8d\x1b\xfd\x16\x7e\x85\x16\xae\x32\xc1\xef\x63\xfd\x48\xe3\x51\x87\xc9\xb2\x41\xbb\x79\xb5\x83\xcc\x1e\x6e\x8f\x88\x22\xa3\x08\x14\xa2\xd4\x7c\xf1\x00\x93\x93\xc4\xee\x8d\x36\x58\x20\xc9\x5a\xa7\xd3\x01\x02\x23\xe5\x47\x67\xa1\xd0\x9a\x6f\x93\x75\x35\xa3\x6a\x6a\x44\x04\x18\xd0\x54\x67\x43\x63\x70\x3d\x0f\x06\x96\xb2\x59\xca\x0c\xc0\x74\xab\x0c\xee\x4c\xd0\x21\x52\x81\x33\x39\x33\x17\x9e\x4c\x44\x32\x17\x81\xb4\x55\xeb\x89\xfd\xf9\x34\x21\x8c\x82\x17\xad\x6e\xd7\xc1\xfe\x70\x1e\x15\x25\x4f\xd8\xe7\x52\x64\x7b\xe2\x11\x44\x5f\x25\xfe\x25\xe2\x0a\xd3\x66\x0a\xb1\x4b\x21\x37\x3d\xcc\xf7\x58\xa8\x5f\x00\x28\x81\x43\xf0\x22\x67\x7f\x04\xc8\x83\x7d\x98\x0e\xe1\x1d\x2f\xe0\x2c\xfe\x0b\x7e\xc3\xfd\x36\x5d\xa8\x8a\x54\x4c\xf0\x56\x45\x35\x66\xba\x50\x56\xab\x21\xd6\x51\x3e\x85\x1b\xdf\x54\x67\x9b\x73\x52\x39\x36\x93\x5d\xdf\xaf\xb4\xbe\x3f\x17\xea\x1c\x7c\x52\xc5\x39\x2f\x0b\x7d\x0e\x70\x29\x1c\xff\xfc\xdc\x8a\xa1\x5a\x35\xd9\xfc\x7c\x2b\x1f\x04\xfc\xbf\xe9\xb6\xd8\x25\xff\x90\xa7\xdb\x2f\x67\x9b\x24\x3b\x33\xef\x9e\x85\xef\x9e\xd9\x77\xcf\xec\xbb\x67\xe6\x35\xfc\x7f\xe9\x1e\xc3\x3b\xe2\x0b\x37\x67\xd9\x64\xa1\xa4\xca\x45\x56\x80\xf5\xf3\x98\xc9\xc2\x6b\xf2\xec\xd9\x8b\xff\xfa\x2f\x36\xcd\xf8\x23\xe6\x75\xbe\xe1\x05\xff\x80\xfe\xc5\xff\xfe\xef\x17\x10\x50\xc5\x0c\xa7\x94\x67\x9f\x4b\x51\x2c\x54\x2e\xcc\x22\x64\xff\x67\xa1\x20\x02\xbb\xdb\x2f\x0b\xf4\xbb\xa2\x0f\x32\xce\xd9\xbf\x60\x99\x73\xe4\xd4\x8c\x73\x53\x52\x47\x6e\x85\xe4\x49\x8b\x7e\x76\x87\x8b\xfe\x73\xf2\x86\x9e\x1f\xb1\xac\x3f\x27\xd5\x55\x6d\x55\x61\xf2\xcf\x09\x1c\xa0\x89\xe6\x16\xac\xc5\xdc\xe4\x85\x7b\x32\x55\xae\x6d\x8d\x34\xa0\x01\xcf\x1a\xa6\x6f\x5f\x2b\xb7\xc8\xeb\x6d\x3d\xf7\x8d\x6d\x04\x62\x05\x3e\x0e\x01\xd1\x73\x69\x56\xc8\x2d\x7a\x42\xc1\x72\xc3\x96\x83\x4d\x4a\xa1\x73\x57\x1e\x3a\x2e\xf2\x3f\xbc\x3a\x3f\x9f\xb0\x4d\x0e\xff\xb3\xfa\x0c\xff\x03\xe8\xa1\xa7\xa2\xa6\x6d\x74\xa6\x03\xc2\x35\x47\xf9\xf0\x48\x3c\x05\x8a\xee\x6b\xb0\xa1\xd7\xa6\xe9\xeb\x52\xc5\x89\xf0\xf9\xa0\x95\x90\x48\xa2\xad\x7e\x3f\x3a\xc6\xea\xba\x33\x30\xc6\x2b\x11\x71\xb3\xf1\x35\xbe\x8d\xe0\x52\xbd\x2e\x84\x42\x6f\x58\xe6\x65\xe9\x38\x7a\xae\xc0\x2c\x06\x28\x24\x2f\x08\x72\x2e\xe0\x8f\xf0\x11\xa0\x17\x9f\xd4\x7f\x62\x7b\x5d\x12\x53\x36\xf0\xbf\xc6\x22\x4a\x40\x8e\xc0\x72\xe0\xb0\x4c\x14\x65\xa6\x18\x67\x29\x57\x31\xcf\x61\x06\xae\x33\x88\x76\x66\x8c\x37\x2b\x3a\x41\x38\xae\x2e\x0b\x60\x76\x42\x64\x41\xd8\x13\x48\x65\x1e\xd4\x79\x12\x54\x02\xcf\x04\x60\x54\x6e\xbc\x38\x5d\x28\x2b\x9c\x46\x58\x38\xf4\x94\x45\x3a\xdd\x13\x6f\x4f\xbd\xd3\xa5\xf5\x9c\x51\x77\x4f\x3c\xde\xa4\xfe\xec\x84\xc9\x6a\x68\x0d\x58\xd3\x8b\x40\xfa\xd9\x8a\x67\x7f\x27\x54\xa4\x63\x91\xe5\x2f\xcd\x32\x94\xee\xde\x81\xf6\x83\xcc\xfd\x60\xc0\x2e\x65\x0e\x37\xf2\x16\x9a\xe2\x9d\xbc\x90\xe9\x9d\x0a\xcf\x76\x9b\x9d\x73\x78\xa9\xfc\xda\x51\x30\x6d\xf5\xa5\xff\xfc\xaa\x88\x98\x10\xd7\x69\xef\x9c\xc7\xbb\x20\x70\xc9\x86\x3b\x2e\x16\x8a\x36\x0e\x19\x27\x56\x67\x57\x16\x20\xe5\x97\x89\xbc\x58\x28\x3a\x81\x27\x6c\x2d\xb8\xb1\xf3\x26\x2c\xca\x1f\x70\x33\xc6\xe3\xbe\x78\xd4\x1e\x83\x63\x45\x5a\x00\x0c\x5b\x29\xdc\x3b\x89\xf1\x31\x40\x14\xf0\xa8\x40\x80\x41\xa7\x24\xbb\x35\x55\xa0\xb3\x5a\x37\xc4\x23\xfa\xc1\x6a\x7e\xd4\xf5\xb5\x42\xc9\x19\xe8\x89\x3d\x06\x8a\x59\xbd\x1e\xf8\x83\xd9\x78\xb0\x75\x08\x03\x09\x36\x47\xb0\xb8\x09\x4b\x8b\xeb\xcc\xc7\x70\x43\xe2\x75\xf0\xcd\x74\x2d\xaa\x9e\x8e\x80\x0a\x1c\xe7\xb7\x30\xaf\x1e\x74\x58\xe5\x22\xb3\x82\x24\xd8\x56\xa4\x49\xdc\xca\x2c\x3e\x4b\x79\x56\xec\xed\xf4\x4d\xe4\x0a\x74\x0c\x12\x79\x2f\xd8\x2c\xcb\xf4\xe3\x53\xf7\x42\xe7\xd6\xd2\x75\xc3\x3e\x05\xc9\x3e\xf6\x96\xdf\x4a\x92\x5a\x77\x77\x1c\x47\xc8\xda\xe5\xf8\x68\xfd\x4e\x26\x8a\x6c\xbf\x34\x13\x71\x97\x76\xee\x14\x83\x92\x26\x86\x1b\xb9\xe3\xb8\x5e\x6b\x2e\x8c\x4e\xae\xd7\xca\xa8\xfe\x7a\xb8\x5e\x5b\x68\x5c\x9b\x5c\xaf\xf3\xab\xf9\xdd\x7c\xf6\x6e\xfe\xff\x6a\x25\xfe\x32\x9b\xdf\xcd\xaf\xfe\xb8\x7c\x7b\x7d\xb3\xbc\xb9\xbc\xbd\xfe\x78\x73\x71\xd9\x4f\xde\xd4\xac\xbd\x37\xc1\xcf\x58\xf8\x9d\x57\xec\x2e\x00\x6a\x60\xb2\x01\xd9\xdf\x24\xe4\x09\xb3\xca\x2c\x66\xa9\x36\x13\x58\xa8\xaf\xd8\x65\x96\xcd\x77\x7c\x23\x3e\x94\x49\x02\x70\x2a\xcc\xec\xb9\xc8\x04\x5c\x3c\x27\xec\x83\x8e\xe7\xc1\x7b\x90\x8e\xd8\xda\x0c\xf8\x3e\x8f\xe3\x4c\xe4\x39\x7e\x7e\x42\xdf\x0f\xc0\x43\x2e\xd5\x91\xc0\x73\xfc\x81\xcb\xc4\xdc\xdf\x5e\xb1\xd7\x3c\xba\xd7\xeb\x35\xa6\xcf\x4c\x5c\xe2\x14\xfb\x5c\xea\x82\x33\xf1\x25\x02\xc2\xb2\xf6\x79\xf2\x4e\x6f\xbe\x01\x54\x79\x40\x78\xaa\xe3\x92\x02\x82\x6d\xcb\xf6\xe3\xbc\x7d\x23\xa0\x56\xbe\xc7\x57\xdf\xe2\x9b\xed\x0e\xca\x22\x79\x02\xae\x80\x77\x7a\xd3\x2e\x9f\x03\xd6\x35\x69\xfe\x50\x20\x21\x22\xe6\x11\xbd\x61\xb9\x54\xf7\x0b\xf5\xcb\x56\x28\xa6\xcb\x0c\xff\x04\xd7\x7c\x63\x66\x26\x65\xbe\x15\xa0\xa7\x3b\x61\x8f\x82\xed\xf8\x1e\xcd\x66\xb8\x13\xb8\xb4\x61\x98\x32\x70\x8a\x98\xb7\x13\xa9\xcc\x6e\x91\x4a\x9b\x97\x50\x1f\xfa\xa7\xb8\x71\x59\xba\x3e\x7e\x3a\x9b\x6e\xdf\x79\x5a\xc1\xe7\x81\xab\xcc\xe3\x26\x2d\x40\x88\x76\x6e\x90\x14\xd5\xfa\xbe\x4c\x3d\xb1\xe7\x0b\x1b\x9c\x84\xee\x7e\xd0\x32\x66\x71\x99\x26\x32\x72\xfb\xee\xa3\xce\x3a\xd9\x8b\x31\x81\x66\xf8\xa9\x53\x4f\x0b\xeb\x6b\x58\x4b\x76\x4e\x80\xa4\xeb\xe1\x31\x7e\x66\x26\x67\x26\x55\x94\x94\x20\x96\x56\xe6\x22\x3b\x2b\x32\xb9\xd9\x80\x01\x6e\x73\xfd\x7e\xfd\x54\xcf\x9e\x4a\xf2\xf4\xb4\xb6\x30\xe9\x3c\xd1\x1b\x19\xf1\x24\x04\x37\x7b\x54\x84\xe3\x92\xb5\xcb\x9e\xa4\x64\x21\x0f\xc2\x56\xa8\x93\x0e\x2a\xcd\x04\xd0\x19\x2f\x61\x2b\x5f\xd2\x76\x77\x4a\xbd\xd7\xcc\x5c\xd0\xb1\x5e\x21\xd3\xab\x0d\x2f\xd8\x13\xce\x7f\xdb\xea\x89\x81\x89\x89\x5a\xe3\x4c\x3f\x2a\x91\x81\x05\x0b\xb0\x0f\xd3\x52\xa5\xc1\x36\x71\x1a\x63\x0e\x9f\x6c\x35\xf6\xd6\x0e\x88\x8d\x99\xb3\x1b\xf9\x20\xd4\xd7\xa7\xe6\x0e\x3e\x10\xf1\x68\x2b\x96\xd6\x2e\x7f\xea\x2d\xcb\x1d\x00\x23\x37\x2b\x2b\xf6\x11\x6e\xa5\x2e\xbc\x09\x57\x27\xac\x71\x73\xef\xc2\x40\x62\x4f\x46\x96\xa9\xc4\x32\x16\xd1\xfd\x57\xdf\x9a\x3d\xc8\xca\x56\x84\x71\xf6\x46\x44\xf7\xec\xe3\xcd\x1c\xb3\x81\x65\xc1\xcc\x56\x90\x6f\xbd\x78\x51\xe7\xdd\xad\xe0\x9b\x67\xa0\xb7\x1a\xaa\xbe\xe4\xb9\x3a\x9c\xe6\x9c\xa9\x10\x01\xa2\x20\x5f\xd2\x6c\x92\x94\x4b\x03\x40\x30\x5e\x58\x4d\x1e\x70\xc4\xb3\x7c\x07\x12\x3c\x65\x11\xe8\xd6\x25\x7c\x25\x92\x0e\xfa\xc9\x54\xc7\x4b\x1b\x27\x39\x15\xcc\xd3\x28\xcb\xfa\x31\x28\xea\x68\xf3\x18\xb8\xb1\x58\xef\xe8\x41\x76\xff\x63\x1e\xd0\x6b\xe8\x90\x05\x1b\xee\xf5\x3c\x87\xf4\xee\xb5\xdc\xd8\x68\x9b\x5c\x93\x50\x10\x26\xf4\x83\x24\xbe\xd9\x2f\x4d\x49\x1f\x74\x4c\x30\x3d\xc7\xe8\x66\xac\x20\x41\xde\x13\x8f\xab\x08\xab\x60\x71\x80\xf0\x5d\xb3\x22\x04\x8f\x99\x5e\x93\x37\x31\x4d\x13\x09\xfc\xc6\x31\x52\xa9\x03\x7b\x46\x5e\x45\xc7\x87\xa5\xd9\xca\x06\x24\x1f\x1f\x2c\x10\xaf\xf3\x34\xc3\xf6\x2f\xc7\x3b\xc7\x1b\x74\x34\x1d\x33\xea\x14\xf6\x17\xb7\x81\x0f\xb2\x4b\x41\x09\xa9\xea\xa2\xaf\x5b\x84\xa7\x0a\xfa\xb9\x6c\xaa\x63\x1d\x00\xfd\xbe\xc0\x4d\xa2\x57\x30\xcc\xdd\x90\xbe\x9e\xe3\xc5\xec\xad\x99\x8c\xc7\x18\x27\xb6\x4f\xae\xdd\xab\x7d\x15\xbc\xb6\x7e\x1a\xf7\x25\x3b\x49\x19\x71\xe7\x87\xf8\x83\x5a\x12\xfe\x21\x4f\x01\x84\x37\x73\x17\xdf\x74\x77\x89\x82\x94\x23\x60\x4d\xbb\xc3\xa4\xc3\x29\x50\x6d\xcb\x49\x03\xdd\xa4\x75\x19\xb8\x20\xfa\xfb\xf0\x24\x6e\x0e\xdc\x77\x1c\x41\xc7\xdf\xef\x9a\xee\x9a\x78\x88\xaf\x36\xb3\xc1\x4f\xc1\x4a\xe2\xcb\xa0\xf9\x58\x9f\x35\x76\x07\x3d\x65\xc2\x3c\xc7\x7e\x50\x16\xda\x87\x5b\xa0\x3d\x73\x60\xaf\x0d\x53\xea\x60\xd3\x9b\xc7\x1d\x50\x0d\x6b\xff\xda\x8d\x65\x04\x00\x78\x14\x04\x39\xcd\x84\x0d\xdc\xed\x45\xe1\x88\x15\x12\x2b\x4f\x07\x71\x29\xd7\xea\x2a\xb3\x8c\x25\x8f\x70\xd4\x68\x10\x45\x22\x5b\x3b\xd2\xbb\x54\x2b\xc0\x05\x61\x9a\xd8\x42\x51\xe1\x56\x64\xdc\x85\xb6\x2a\xb9\x86\x13\xf2\x28\x62\xe6\x8a\xc8\x75\xf2\x40\x31\xcc\x40\x0b\x03\xe4\x09\x4d\x05\x2f\xcc\xe5\x4c\x67\xc8\x70\x65\x8f\x56\x80\xe2\xd7\x94\xb6\x33\xb1\x91\x79\x21\xc2\xf4\xcc\xf0\xfd\x27\x13\x45\xad\x78\x2f\xfa\xba\xbe\x53\x14\xf5\xd0\x35\xc4\xec\x39\x23\xea\xb3\x4f\x45\x3c\x77\xef\xf5\x4f\x86\x5a\x06\xbd\xdf\xe2\x2a\x67\x18\xce\x01\xbc\x7e\xe5\xc8\xb5\x95\x3b\x15\x0b\x37\x48\xc4\x82\xc4\x3d\xa2\xd0\x0c\xd1\xa6\xe4\x19\x57\x85\x10\xf9\x42\x51\xe4\x17\x09\xf4\x42\x5a\x94\x1a\x12\xd1\x5d\x2e\x22\x9d\x17\x48\xc1\x04\xaf\xac\xb9\x4c\xca\xac\xf3\xbe\x8f\xb3\xf2\x28\xde\x87\xbe\x5e\xba\x80\x62\x59\xdb\xa0\xb9\x0c\xe2\x60\x15\x39\xda\x92\x7a\xdc\xb6\x9a\x60\xdb\xd1\x04\x7b\x60\x0c\x1f\x6f\xe7\xec\xed\x48\x2a\xfe\x31\x5f\xa6\x7a\xc4\x8e\xf7\xe7\x1f\xf3\x0f\xba\x23\x1d\x3b\xff\xdc\x70\x4a\xf6\xe0\x17\x3e\x77\xe9\x7a\xf0\xfc\x1e\x42\x7f\x87\x7c\x21\x83\xb8\x41\x0f\x06\x08\x3b\xf7\x2e\x98\xb5\x5b\xae\xe2\x44\xaa\x8d\x39\x86\xaa\x27\x90\x07\x5a\x9b\x3b\x49\x61\x37\xc7\xee\xac\x3a\x48\x52\x59\x46\x8d\x0c\xc7\x43\xfd\x54\x4b\x8d\xec\x05\x33\xd6\xbe\x52\x4d\x58\x6c\x4b\x94\xf1\x76\x09\xa9\xe9\xba\x05\xdb\x3d\x05\xd7\x72\xf3\x2b\xb8\xe0\xbe\x6f\xee\x94\x11\x2d\x45\x3a\xbf\x1c\xea\xfe\xc4\xc5\x08\x09\x4e\x66\x33\x0b\x59\xb2\x17\x8a\xc4\xb6\x31\xea\x0d\xe1\x4e\xe4\x01\xcb\xd9\xf7\x2e\xeb\xf5\xfb\x7f\xb4\x2c\x50\x7b\xb6\x86\xbe\x06\xaa\x35\x1d\x45\x65\x06\x21\x69\x72\x9b\x31\x81\x67\x53\x3e\x8a\xe0\x04\x4e\x64\x07\x24\x42\xf3\xa9\xcd\x7a\x70\x7e\xd2\x4a\xa3\xee\xc0\x3d\x86\xb2\xe1\xee\x2c\x24\x35\xa8\x2c\x2f\x58\x5e\x88\xb4\x75\x57\xaa\x18\x5d\x55\x65\xfc\x13\xcc\x2e\xaf\xcb\x3f\xd0\x52\x1f\xb1\x47\xcf\x02\x57\xc6\x9f\x6e\xaf\xaf\x58\xca\xf7\x80\xc9\x2b\x34\xc3\x47\x81\x08\xb3\xbe\x7e\x0f\x8d\x40\xb5\xf1\xd5\xc5\x86\x7d\x6a\xc1\xbd\xed\x7e\x73\xfa\x62\xd3\x86\x82\x39\x43\x53\xd2\x2c\xe5\x4c\x27\x67\x69\xc2\x55\x00\xbb\xce\xa7\xac\xf6\xf9\x30\xce\xee\x22\x6e\x84\x64\x82\x0a\x80\x2b\x8b\xe6\x42\x56\xb6\x02\x73\xab\x62\xff\x27\x85\xd6\x3b\xf7\x88\x5e\xc0\xe1\x7b\xd4\xd8\xe0\x91\x59\x26\xc8\xea\x60\xe1\x02\x0e\x71\xc2\x73\x00\x83\x8e\x18\xa8\x9f\xa4\x42\x25\x30\xb9\x33\x46\x26\x01\x3f\xa0\x78\x88\x76\x5a\xe1\x69\xfd\x98\xb3\x18\x79\x2f\x4a\x99\x6f\xc1\x37\x8c\xc1\x18\x00\x66\xd1\xfe\x82\xa8\x91\x8c\xab\xdc\x0c\x28\xf8\x93\xc5\x83\x20\xa7\x52\x25\x10\x3a\x7f\xf3\xce\x61\x2b\x70\x90\x48\x1b\xb0\xa3\xeb\x03\xc3\xec\x94\x0b\x4c\xab\x54\xfe\x61\x85\x89\xf7\x3c\xed\xcb\xd8\x3b\xb9\xc4\x43\xa3\xe4\x58\x7f\xea\x56\x27\x88\x06\x83\x5c\x58\x25\x6d\x2f\xec\xbd\x8f\xea\xc4\xed\xa7\x95\x85\xfc\xb0\xba\xc5\xe0\x4b\xd8\xb0\x2c\xcc\x11\x7b\x4f\x40\xc0\xe7\x70\x4d\xce\x5e\x36\xab\x1c\xc4\x98\x80\x39\x0c\xbd\x98\x53\x76\x2b\x04\xfb\x04\x3d\x65\x3e\xf6\x89\xc4\xfe\x00\xaa\x59\x70\xd9\xaa\xc5\x04\x4f\xcf\xd5\x5a\x9f\xb6\x19\x64\x9b\x06\x14\xf0\xa4\x5e\x69\xaf\xe7\xa9\x60\x43\x48\x23\x55\xcf\xcb\x7d\xd0\xda\xae\x03\xd0\xc2\x0f\xfe\x4e\x4e\x19\x91\xb6\xa6\xe6\x7c\x86\x21\x3e\x86\x5d\xab\x36\x49\x4c\x2b\x27\xc8\x18\x7d\xaf\xf4\xa3\x42\x5b\x80\xbe\xc4\xbe\x33\xeb\x0f\x0e\x30\x74\x5e\xa3\x59\x50\xe2\x6e\xf8\x12\x28\xac\x67\xee\xdf\xec\x16\xe3\x74\x58\x67\x50\xe9\xc9\xc1\xf8\x21\x7d\x1d\xd8\xcd\xbf\x9b\x4d\xd8\xeb\x09\xbb\x98\xb0\xe9\x74\xfa\x72\x82\x12\xe2\x54\x23\x7c\x05\x51\x7b\x05\xdf\x98\xb2\x49\xb7\x64\x1d\x7c\x00\x94\xb8\xcc\x61\x65\x99\xda\xb8\x7f\x2a\xf0\x3c\xd8\x26\x60\xfe\x28\x25\xbb\x10\xa6\x21\xda\x6a\xe9\x2b\x05\xf0\x58\x11\xe9\xcc\x02\x6c\xf3\x42\x67\x16\x2c\xf8\xc0\x33\x2e\x15\xa4\xd5\xf3\x26\x54\x9a\xbe\x1c\x10\x6b\x8b\x2f\x7c\x07\xed\x97\xca\x71\x8b\x9a\x6e\xba\x73\xf5\x2f\xf6\x29\x05\x03\x1e\x33\x59\x14\xe6\x74\xce\x17\xea\x96\xbd\xfa\x17\x36\x4b\xd3\x44\xb0\x19\xfb\x1b\x7b\xcd\x15\x57\x9c\xbd\x66\x7f\x63\x17\x5c\x15\x3c\xd1\x65\x2a\xd8\x05\xfb\x9b\xe9\x36\x53\xde\x95\x36\xc7\xe1\x7e\xc2\x38\x53\x65\x82\xa7\xfe\x77\x16\x88\xf7\xd2\xb5\x8b\xfb\xd1\x59\x89\xe2\x51\x08\xc5\x72\xbd\xa3\xa3\xf0\xaf\x2e\x1e\x94\x4b\xb5\x49\x44\x41\xf3\xa1\x0a\x99\xc4\x0f\x9c\x41\x4b\x5f\x2d\x94\xf3\xe5\xfd\xd5\xd4\xf8\xaf\xec\x6f\xec\xaa\x4c\x12\x53\x25\xb3\xd1\x98\x89\xf4\x8a\xd9\x14\x16\xa1\xa6\x8f\xf2\x5e\xa6\x22\x96\x1c\x92\x58\xcc\xbf\xce\xef\x60\xb4\x97\xa5\xe7\x2b\x0c\xd7\xb4\x53\x3e\x3a\x65\xeb\x79\x96\x84\x78\xa7\xcb\x65\x07\xbf\xe7\xe6\x57\x7d\x75\xbc\x45\xe4\x59\x5a\x69\x3d\x90\xc1\x8a\xaa\x55\xa1\xfe\xd7\x51\x5b\x40\xed\xb0\xb5\x65\xb5\x1c\x05\xe1\xa1\x7e\xea\x26\x0b\x62\x76\x4f\x7e\x87\x1c\x20\xa2\x35\x74\xcb\x6d\x48\x00\x55\x28\x06\xc0\x96\xf4\x34\x4b\x83\x62\x5a\x4e\xfa\xe7\xe7\xaa\x9a\x5f\xa5\x8b\xb5\x1c\x24\x7b\x58\xab\xec\x47\xf2\x5d\x60\x72\xa0\x59\xa6\x32\x39\x37\x4b\xf5\xfc\x4a\x2b\x73\x6d\xcd\xe5\x06\xa9\xa1\x00\xc2\x85\x7a\x81\xd6\x28\xb8\xab\x9a\xac\xc1\x12\x00\xfb\xc0\x54\x09\x61\x85\x85\xd9\x05\xcc\x10\x24\xfb\x85\x32\x6f\xd0\x89\x04\x29\x06\xd2\x31\x08\xe3\xd7\x88\xa0\xd7\x7e\x8b\x36\xe4\xa0\xf0\x96\x09\xd6\x97\xbf\x7c\xc2\x84\xa3\x74\xb9\x13\xbc\xe2\x57\x01\x7b\x1e\x95\x66\xa9\x55\x30\xe6\xbc\x12\x89\x56\x1b\x33\x2b\xba\x36\x01\xbd\xe3\xf2\x14\x50\x4f\x58\x05\x2c\xac\xb3\x06\xe6\xb0\xa4\x47\x68\x48\xcc\x39\x29\x63\x7f\xbf\xcf\xcb\x95\xb1\x23\x9c\x47\xd6\x9d\x86\xd4\xb8\xae\x64\xee\xd3\x62\xfb\x1f\x73\x91\x01\xc5\x35\xa2\x4b\x9c\xb7\x1f\x0f\x4e\x4f\x74\x82\x2d\x1a\xb6\xa8\x7a\x41\xc9\xed\xae\x10\x8a\x26\x34\xd2\xda\x07\xcc\xc7\x6f\x89\x4f\x1e\x82\x5a\x7e\x3b\x9b\xbf\xab\x3d\xd7\x44\x2d\xb7\x40\x9b\xef\xe6\xef\x2f\xdf\x2c\xaf\x3f\xde\x35\x9e\x33\xa5\xd1\x9f\x0e\x00\x97\x3b\x7b\xef\x29\xa0\x9b\x9f\x51\x77\x68\xa9\xd7\x36\x8b\x75\xf8\x99\xde\x50\x7e\x1a\x86\x10\x0a\x09\xce\x43\x85\xa4\xe6\xc4\xe9\xcc\xc5\x57\x4b\x8a\x48\x0c\xab\x6c\xbd\xc3\xae\xd5\x5b\x7c\xfd\x83\x4e\x64\xd4\x0f\x38\xb4\xc7\xd5\x56\x3f\xb6\x20\xb8\x56\x02\x10\xb8\xe4\xff\xa1\x4a\xa1\x85\x5e\x88\xa8\xf0\x11\xb7\x66\xe3\xfe\x57\x83\x9c\x0e\xdf\xc1\xd1\xa3\xec\xba\x0d\x94\x60\x5d\x0c\x0f\xce\x56\x20\x37\x05\x4e\x7f\xf4\xb5\x42\x1e\x23\xc4\xb6\x23\x4e\x2e\xe8\x4a\xcf\xc3\x06\xfd\xb8\xd5\x89\xb9\x8b\xa9\x98\x88\x62\x17\x2a\x15\x59\xa4\x01\x1c\x84\x1c\x04\x9a\x45\x5b\x99\xc4\x5e\x38\xe7\x3b\x40\x53\x03\xe6\xf1\x25\xe9\x43\x0a\x17\x63\xb6\xc5\xf7\x9c\xba\x76\xda\x59\xe1\xfc\xd3\x3c\x50\x4f\x07\x8f\xec\x9b\xf6\xbf\x10\x8c\x0f\xbb\x82\xa8\x9d\x6a\xd1\x42\xd3\xe9\x95\xfa\x8c\xf2\xf0\x82\xb4\xfd\xda\xaa\xd0\xda\x8b\x53\x51\x1b\x57\x9a\x66\xf5\xae\x04\xc2\x5f\x44\xb0\x21\xfc\x25\x17\x50\x9d\x9d\xe0\x68\x8b\x79\xfa\x4d\x1a\xd4\x85\xf2\xf1\xd1\x17\x79\x68\x97\xb5\x8e\x33\xf2\xd9\x5a\x00\xe6\x84\xbd\xa8\x34\xf4\x05\x10\xc2\x2a\x0d\xdf\xa3\x18\x56\xa5\x6b\x60\xba\x4e\x98\x2c\x16\x4a\xe6\x38\x33\x33\x91\x88\x07\x53\xbb\xd0\x59\x4c\x48\x1d\x7b\x77\xb6\xcd\x06\x0c\x3f\xb7\xa9\xdf\x34\x6d\x68\x11\x66\x21\xb1\x28\x07\xc7\x74\x2c\x72\x63\x37\x82\x24\x8a\xf8\x62\x16\x80\x84\x58\x08\xc2\x3f\x62\xa1\x6c\xfd\x00\x15\x82\xa2\xca\x0b\x35\x5f\x43\xfe\x2d\x64\xfd\xc6\x31\xde\x42\xad\x48\x86\x63\x79\x93\xe4\x1c\xd6\x74\x27\xb7\x03\x41\xf2\xa6\xb8\x92\xc4\x83\xc8\xf6\x05\x38\x75\xa1\x5f\x95\xe0\xc5\x96\xc9\x62\x02\xf4\x7c\x76\xa7\x5c\x28\x1e\x93\x64\x3e\x15\x67\xba\x06\xe6\x7d\xcf\x38\xd3\xef\x2b\xfd\xd0\x67\xd8\x9e\x8a\x59\xc3\x55\x9d\x26\x5c\x2d\xf1\x04\xf9\x06\xa8\xb5\x40\x79\xb6\x2b\xd4\x59\xae\x96\x8e\x52\xe8\x49\xea\x19\x88\x93\x87\x7a\xd0\xc6\x8e\xb5\x1f\x9a\xe0\x64\xf0\x94\xe2\xf6\x7a\xe2\xfc\x34\x84\x2e\xc8\x98\x8d\xc0\x0e\xdf\x05\x3c\xa0\x8d\xd7\x90\x08\x76\xb6\x1e\x42\xb4\xd9\x19\xf0\x6b\xc5\x27\x0d\x19\xf9\xda\x19\x52\x1f\xf6\xf1\xd0\x98\x86\x85\x78\x14\x3c\xe6\x40\xb5\x9e\x17\x22\xd3\xe9\x47\x69\x42\x65\x6c\x6b\x83\x70\x1f\x26\xae\x08\xf4\xc3\x39\x37\x4f\xbb\xb2\x70\x78\x0f\xd3\x2d\xc8\xd0\xa7\xf4\x51\xc3\x3e\x35\xd4\x53\xe2\xf3\xde\xa1\x5e\x53\x36\x57\xcc\x9a\x7b\x13\xf6\x02\x27\x56\xfe\x82\x5c\x90\x24\x4f\x4d\xb1\xf3\x98\x56\x0f\x65\x0a\xd7\xa1\x18\x98\xaf\xe1\x97\x1b\x46\x82\x7a\x69\x25\x9f\xb5\x5f\x5e\x4b\xc8\x17\x39\x86\x12\x00\xa3\x88\x2b\x2c\x80\x0e\x49\xbc\x76\xef\xd1\x68\xd7\xde\x9b\xed\x1b\x6c\xe3\x5d\xec\xb5\x7d\xd1\x74\x51\x5a\xd2\x79\x6a\x7f\x67\x3a\x5b\x28\x5b\x1a\xb9\x24\x73\xd4\xb1\xaa\x17\x15\xc0\xd7\xc9\xe6\x0f\x66\x2a\x80\x18\xac\x74\x19\x28\xe2\x79\xee\xdb\xfa\x2e\x00\xa0\x88\x95\xf0\xc2\xfa\x53\x36\xf3\x5f\x33\x86\x87\x99\xe0\x3b\x3c\xe6\xeb\xfc\x98\x49\x62\x3a\x45\x16\x96\x8e\x33\x48\x2d\xc9\x4b\x20\x95\x5d\x97\x66\x33\x0a\x98\x77\x17\xca\x74\x1e\x5b\x4b\x40\x2d\x53\xbf\x2c\xd4\x7b\x9d\x5b\x26\x83\xdc\xf7\x87\xc5\x90\x52\xb7\xbd\x70\x0a\x6e\xf4\x87\x37\x70\x68\x93\xcf\x1f\x39\x89\xdc\xd1\x02\x39\x45\x44\x47\xb2\xd7\x65\xe6\x1b\x15\x71\xb5\x50\xff\x61\xba\x07\x25\xd5\x95\x1d\x56\xbd\xc6\x25\x0c\x23\x08\xc1\x92\x4f\x58\xe8\x77\xff\xf8\xf2\xd3\x4b\xcc\x01\x28\x73\x10\xcd\x9c\x54\x0f\x10\x47\xc2\x5e\x26\x09\x44\xa2\x6d\x0b\x1c\x11\x88\xff\x04\xef\x83\xe5\xd0\xa5\x6e\xa9\xaa\x26\xc6\x90\x85\xde\x37\x83\xbd\xf3\x79\xc6\x22\x5e\x44\xdb\x33\x6b\xcb\xd1\x36\x66\x4f\x3f\x1a\x3e\x54\xcf\x33\x96\x56\x3b\x0f\xb9\xb9\x70\x66\x3b\xc7\x8c\x58\x99\x2f\xa6\x09\x00\xac\xb9\xab\x8b\xf2\x38\xe2\x56\x9c\x9c\x08\x0b\xa8\xda\x79\xee\x71\x2b\x89\xe7\x6f\x9c\xe4\x25\x57\x7c\x27\x62\xf6\x02\xb2\xd5\x5e\xd8\xc1\x5f\xa8\x74\x35\x4d\xf6\xeb\x82\xe8\xb5\x4c\xa7\x4c\x41\x3c\xea\xc0\x29\xb7\x8c\x9b\xd7\xa4\x03\x9d\xdd\x79\xd1\x6a\xb7\x75\x5c\xdf\xb8\x2f\x0d\x37\x58\xd0\xc7\xe5\x7a\xe7\xb6\x0a\x11\xaa\xb2\xd8\xf3\xfc\x7e\xc2\x56\x19\x57\xa0\xfb\x11\x87\x46\x95\x5f\x9d\x70\x79\x46\xee\x2a\x9b\xbe\xa2\x78\xb2\x07\xe4\xfb\x64\xa1\x90\xe8\x0b\x18\xa1\xf7\x51\x22\x23\xb6\xc9\x78\xba\xad\xd9\x41\xe2\x41\xa8\xe2\x92\x98\x2d\x2c\x3e\xfd\xd4\xd0\xb2\x63\xca\x38\x89\xef\x70\x5e\xb5\x76\xb8\xa7\x00\xf1\x1e\x56\x4c\x12\xa2\x1b\xb5\x05\xb5\xba\x09\x3e\x21\x19\x3a\xe0\x42\x63\x7f\x29\x57\x3a\xb1\x64\x72\xf3\x37\x4c\x67\xa0\xe3\x50\x68\xfa\x93\x8c\xbb\x4e\x31\xa9\x62\xf1\xe5\x24\x46\x87\xfe\x03\xc9\x9a\x77\xe6\x33\x81\x5c\x40\xbd\xb1\x16\xf8\x9f\x82\xab\x1b\x6f\x70\x8d\xa7\xf2\x3a\xc2\x6e\x96\x14\x5b\x80\xbd\x21\xe0\xda\x77\xea\x8e\xef\x59\xb4\xe5\x6a\x13\x5c\xa1\x01\x85\x24\x52\x9d\xa1\xde\xe1\x03\x50\xa7\xe9\xcc\x66\xcc\x52\x1e\x28\xa1\xbe\x9d\xc3\x1b\xc1\x96\xda\x26\x7b\xf2\xcd\x26\x13\x1b\x20\x31\x58\xa8\x4a\x26\x3b\xd0\xc6\x59\xa9\x05\xfc\x4e\x5f\x22\xf0\xd3\xb0\x69\x74\xdd\x5a\x8a\x6c\xef\xd2\x28\x49\x2c\xd4\x75\x5d\xa3\x5b\x27\x4c\x8a\xe9\x84\xfd\xe0\x01\xa6\x22\xd2\xca\xe5\x61\x76\x24\xe1\xd5\x5c\xd3\x07\xf6\xa2\x16\xda\x8d\xf6\xba\xc3\x6f\x8d\x94\x90\xd6\x49\xd3\x9b\xc8\x5a\xf0\xa2\x1c\xb1\x57\x92\xac\xf4\x85\x79\xf9\x16\xdf\xed\xc5\x60\xf3\xd4\x6c\x6f\x96\xf2\xc8\x3c\x6f\x76\x78\xf3\x6d\x4f\x89\xdc\xd6\xd7\x07\x1d\x9d\x89\xee\x76\x74\x3e\x85\x49\x69\x79\x2d\x0e\xfb\x3a\x93\x0e\xae\x86\x9e\x36\x8d\x75\x65\x5a\x30\x2a\xc1\xcc\xf3\xfa\x75\xab\x65\x07\x48\x33\x1d\x97\x91\x88\xcd\xca\x05\xbb\x1d\x91\x1b\x8e\x32\xa2\xb2\x49\xb6\x1d\x08\x15\xde\x1b\x10\x17\xff\x5a\x77\xe3\x41\x54\xc3\xae\xfb\x3f\x76\xdc\x8b\xad\x65\xd2\xd6\xe9\xe1\xfa\xc4\x7e\xca\x46\x9e\x53\xee\xf3\x55\x82\x60\x9d\xc9\x8d\x54\xbc\xd0\x19\xfb\xce\x25\x86\xbe\x74\xaa\x42\xd0\x8b\x4f\xb1\x4d\x54\xba\x08\xb7\x89\xf6\xbb\x17\xe0\x99\x45\xbc\x1c\xc7\x5b\x36\x96\x5d\x1b\x26\xa9\x79\x2a\x2f\xf8\x2e\x0d\x29\x37\x9d\x66\x33\xf5\x4c\x82\x9d\xc0\x6c\xc5\xc0\xc7\x27\x73\x9f\x83\xb5\x50\xe4\x19\xc7\x71\xd3\x59\xc8\x19\xdd\x79\x36\xa7\x65\xb1\x3c\x92\x46\x06\x5f\x1e\xe7\x20\xa1\x70\xf9\x7b\x9e\xf6\x13\x73\x70\xba\x1a\x63\x12\x8a\x13\xb2\xb6\x96\x4a\x75\x7e\xf6\xab\x32\x8c\x24\x0a\xad\x87\x78\x6f\xde\xd9\x80\x86\xbf\xb7\x54\x2e\x02\x30\x10\xc8\x50\x98\x83\x55\x81\x57\x50\xb7\xad\x99\x53\xdc\xb2\x79\x5c\x24\xba\x8c\x19\x6d\x6a\x14\x2e\xce\xa6\x78\x3a\x02\x65\xe8\x74\xda\xc5\x9f\x36\x52\x2d\xd6\xed\x3f\xf0\x5e\xfb\x0a\x84\xdf\x3a\x76\xe0\xde\xa5\x4f\x3d\xfb\x6c\x43\x4f\x3d\x0d\x63\xef\xb6\xe3\x51\x63\xef\xbc\xb5\xc0\x5f\x36\xce\x91\x07\xf7\x26\x19\x27\xb0\xde\x42\x47\x77\x0b\xc3\x6a\x25\x80\x98\xdf\x9f\xfc\x39\x9b\x27\xdc\xff\xa9\x94\x67\x42\x15\x4b\xf8\xe2\xb8\x8f\xc1\x47\x3e\xc0\xeb\x15\x83\x69\x90\xc3\xf2\xdf\xee\x34\xfa\xa1\x2d\x59\xc9\xbf\xb3\x5b\xf2\xbd\x98\xfd\x4a\x02\xd8\x31\xbf\x67\xdf\x49\xc0\xc6\x04\x31\x3b\x37\x70\x1d\xc3\x45\x0d\x3a\xa2\xf7\x82\x06\x55\xb6\xf6\x41\x0d\xf2\xb5\x87\x90\x2a\x94\x42\x6e\x28\xca\xf0\x34\x5b\xad\xfd\x5b\x40\x60\x7e\x55\xf9\x37\x90\x4d\x9a\xf1\x4b\xd8\x7f\x8a\x4c\xfb\xb4\x05\x74\xaa\x84\x05\xf7\xda\xeb\xc7\x6b\xaf\xa2\x3d\x8e\xaa\x9f\xa1\xec\x1d\xfc\x85\xf8\x60\xf0\xe6\xbb\xda\xdb\xeb\x48\x17\x95\xbd\x88\x96\x1d\x1a\x07\x83\xaa\x12\x5c\x3c\x43\xcd\x02\x59\x3b\xcc\xec\x02\x3d\x87\x7b\x35\x31\x2e\xee\x78\x4a\x38\x34\x82\xbc\xd6\x83\x0c\x53\x68\xc4\xbf\xfd\xf5\xdf\xa7\x5d\xaa\xda\x50\xf5\xb1\xb0\x1e\x57\xf9\xb7\x99\x14\x2a\x86\xa0\x21\x8f\x9b\xf2\x3b\xaa\xe2\x45\xae\x6c\xcf\x66\x1a\x3e\x49\x76\x5f\xfb\x51\x9b\x2f\x71\x12\x7d\x85\xc8\xb3\xdf\x64\xdd\xf2\xad\xc4\xa5\xba\x4c\x89\x7c\x19\xef\x15\xdf\x35\x75\xc8\x9f\xb5\x8e\x7b\x29\x92\x18\xaa\x48\x5f\x3f\x14\x3d\x89\x45\x74\x3f\xd6\x26\x38\x9a\x3c\x5c\x44\xf7\xec\xa7\xbb\xf7\xef\x50\x2b\x52\xe6\x0b\x75\xc5\x0b\xf9\x20\x3e\x66\x89\x73\x5b\x13\x1b\x4c\x96\xd8\x35\x52\x25\xb3\x0d\x88\x53\x2c\xf3\xad\x35\x1c\x42\xae\xf1\xdd\xfe\x6c\x55\x46\xf7\xa2\x38\xcf\xb8\x8a\xf5\x0e\x9b\x71\x9e\x97\xeb\xb5\xfc\x32\x2d\x78\xd6\x41\x3c\x8e\x7e\x84\x6f\x68\xe7\x7a\x39\x99\xc2\xdb\xbc\x68\xea\x3e\x42\x76\x22\x89\x14\x57\x8c\x5b\xb8\x02\x67\x7c\x27\x80\x39\x8e\x55\x49\xfb\xa1\x14\x4c\xf8\x03\x6d\xbb\x3c\x27\xa4\xb7\x26\xe5\xdc\x4f\x81\x71\xff\x29\xa8\x55\x55\xbd\xd9\x56\xca\xeb\xc5\xed\xf8\x3d\xde\x0f\x37\x99\xc8\xf3\x09\xcb\x35\xd4\x78\xa1\x2c\x66\xda\xe6\xf5\x00\x3e\x03\xb8\x27\x93\x3d\x8b\x74\x2a\x41\x5e\xcf\xb5\x6b\xab\x1f\xc1\x9f\x1c\xa6\xb7\x81\x22\x6a\xa9\x0a\x99\x30\xbe\x2e\xc8\xd9\x0c\x44\xdb\x56\x58\x27\x9f\x2e\x14\x84\x0c\x23\x68\x3e\x84\xf2\x5d\x98\xc0\x35\x22\x67\x6b\x1e\xc9\x44\x16\x44\xff\x03\xc9\x30\xdc\xb4\xd7\x9c\x07\xa6\x2f\x33\xbe\xe7\x89\xbf\x58\xf1\xa4\xf4\x19\x7d\x67\xb9\xa8\xd3\xcb\xfd\x2e\xfc\xdf\xca\x3d\xb7\xef\xd4\x3d\xe1\xc2\x7b\xca\xe1\xd3\xbc\xd2\x3a\xb5\x57\x7f\x8e\xcb\xd8\xe2\x44\x2b\xa6\xae\x67\xfd\x75\xc7\x0f\xf8\xce\x3b\x2e\xd5\x53\xab\xd1\xd3\xfc\xc2\x88\xde\x6b\x37\xc2\xbe\x92\xbb\xa0\x8b\x7f\x78\x48\xf5\xad\xb7\xfb\x83\xd6\xc9\xa9\x1e\x6f\x62\x60\x91\x5a\x2d\x41\xb6\xf2\x94\xeb\x1a\x4e\x00\xe7\x38\x9a\xbf\x71\xb1\x57\x47\xe8\x5b\x15\xbb\x21\x58\x10\x55\x01\x36\x0a\xa8\x44\x0f\x62\x38\x4f\x5b\x82\xef\x23\x91\xcf\x50\x06\xa2\x76\xac\xe9\xdc\x74\xc1\x07\xb9\xec\xdc\xd7\x11\x48\x0f\x6b\x35\x1c\xe5\x0c\x43\x91\xc9\xda\xa7\x9c\x63\x2c\x24\x47\x75\xfd\x18\x7c\xdb\xf6\x27\x4a\x5b\x9b\xf3\x89\xac\xe4\x85\x0a\x2c\x62\xe4\x04\xb2\xd0\x72\xd7\x6b\x6d\xfe\xb2\xca\x34\x3c\xd9\x5f\x76\x0a\x03\x76\x6f\x40\xe5\x4d\xa8\x65\x05\x98\x80\x48\xef\x56\x52\xd9\x54\x65\x72\x22\x83\x29\x3f\xb3\x04\x83\xce\xe1\x6f\x4d\x72\x54\x38\xa8\xf5\xbd\x33\x23\x42\xae\xc6\x70\xcb\x3a\x74\xdd\x0d\xef\x4f\x4f\x4b\xd6\xdd\x81\x52\xad\xb7\x40\xe6\x8c\x27\x8f\x7c\x9f\x83\xde\xab\x30\xbb\xe2\x1a\x1d\xa7\xd5\xfa\x4f\x82\xe3\xdd\x92\x57\x92\x78\x7a\x49\x32\xd0\xd4\x16\x89\xfc\x0d\x22\xb1\xca\xb6\x9e\x17\xe7\x45\xde\xde\x39\xdf\x26\x16\x92\xf5\xc6\x42\x30\x18\xf9\x3f\x23\xfc\xd1\xe3\x64\x3d\xd1\xd7\x1b\x1c\x93\x68\x91\x11\x5c\x04\x12\x78\x60\x3b\x36\xdf\x9e\xb0\x1d\x97\x8a\x96\x01\xaa\x87\xc5\x62\x55\x6e\x36\x9d\x2e\xc8\x5f\x7f\x2c\xa3\xba\x4e\xfe\xee\x7d\xcd\xbd\xcc\x4e\x4f\xe1\x8d\x9d\xdb\x2f\xa1\x7b\xd8\xdc\xab\xbe\x8e\x03\xf6\x1b\x7a\xbb\x5b\x43\x4e\x8d\x49\xf4\x34\xde\xee\xf9\x10\x6f\xb7\xc5\xf8\x40\xaa\x15\x5d\x57\x2d\x0e\xe3\x37\x37\xf8\xd7\x71\x83\x0f\x9a\x14\x48\xef\xb1\x94\x55\x03\xbd\xa7\x86\x47\xb2\x84\x39\x32\x4c\xa8\x15\x29\xb1\xe7\x42\xc5\x39\x5b\xf1\xe8\x19\x68\xc3\xe0\x74\x3c\xdd\xdf\x76\x00\x5c\x72\xab\x77\x82\xc1\xa7\x72\xd4\x9d\x60\x94\xcd\x36\x01\xd4\xa2\x69\xa0\x47\x64\x10\xde\x03\x8e\x53\x44\x86\xc4\xde\xa8\xfe\x4e\x89\x47\x66\x4e\xab\x49\x08\xe3\x0a\x86\x07\x04\x89\x5e\x1a\xeb\xb0\x82\xf9\x76\xa9\xfb\x99\xd8\xf0\x2c\x86\x4c\x03\x5a\x92\x09\x8f\xee\xcd\x7f\x43\xfd\xe8\x8b\x04\x35\xb3\xdc\xe8\x08\x7f\xf4\xa5\x49\x15\x65\x40\xca\x44\xa8\x36\x5f\x3f\x7c\x3d\x67\x3c\xca\x74\x8e\x4e\x19\xa7\xe3\x09\x99\xae\x60\xc0\x3e\xc8\xb8\xe4\x09\x7e\xb1\xd3\x93\xcd\xf3\x93\xb8\xde\x67\x81\xe4\x8e\xf8\x92\x26\x5c\x55\xd7\x24\x36\x17\xb8\x6a\x64\xcf\xcc\x77\x94\x6b\xa7\x54\x65\x34\x75\xe4\x3c\x50\xbb\xf5\xcb\x0a\xad\xe3\x4c\xf0\x78\x1f\x12\x53\x49\xc5\x20\xf6\xc3\x78\xbc\x93\xca\x0c\xbd\x55\x54\x73\xfb\xab\x25\x57\x46\xc0\x25\x08\x8f\x24\x49\x6d\xe9\xe7\x4c\x09\x63\x52\xf1\x4c\x26\x7b\xb0\xa2\xd3\x4c\x9c\x05\xdf\x09\xd6\x37\xe5\x7b\x00\x4d\x34\x91\x28\x94\xb9\x58\x97\x09\xda\xda\x70\x1b\x75\x0d\xa0\x75\xf8\x71\x3e\x31\xc7\x6c\x41\x74\xff\xc1\x87\x51\x44\xeb\x29\xb0\xf3\x8d\x18\xd8\xb8\x38\x8e\x27\x4e\xcb\x00\xe2\xbb\xd5\x8f\x36\xd1\xe7\x91\x7b\x24\x67\xd7\x99\xf2\x64\xbe\xfb\x7e\xeb\xcb\xde\x7b\xec\xea\xc4\xce\x8f\x2b\x01\x1b\xfa\x4d\xc4\x6e\x45\x4a\x05\xcd\x21\x1d\x4a\xef\x0f\x2d\x73\xcc\x17\x32\x63\x09\xbb\xb6\xbd\xde\x57\xdd\xa1\xcc\xb5\x4e\xe6\x5a\xb1\x45\xf9\xfb\xdf\xff\x41\xb0\xdf\x43\x02\x15\x59\xe1\x18\x75\x01\xea\x34\x2c\x1d\x36\x2a\xf7\x01\x81\xbc\x6a\x8d\x11\x61\x6d\xc0\x47\x9b\xad\x0c\xd0\x41\x1e\x6d\x59\x5e\xae\x10\x17\xc7\xc9\x71\xcf\x95\x63\x26\x7d\xa7\x01\xe2\x86\xe7\x99\xad\xfd\xff\x12\x37\x35\x32\xb3\x2f\x54\xaa\x91\x3c\x17\x00\x85\x2b\xc1\x76\x3c\xbb\x07\xa1\x3d\x52\x53\x67\xbc\x60\xdf\x49\x31\xad\x3a\xad\x5f\x56\xea\x43\x61\x02\x24\xc5\x64\x59\xa9\x94\x55\x0e\x61\xc6\x1c\xf3\x1e\xe4\xc9\x42\xad\xca\xf0\xc6\x55\x71\x41\xfb\xa9\x05\x6e\x68\xd8\x6c\x35\x30\x25\x50\xa5\x78\x1e\xa8\xbc\xb3\x01\xbe\xe8\x85\x7a\x26\x67\x74\x97\x9b\xeb\x03\x59\x1e\xd6\x85\x15\xa0\xb5\xa1\xb9\xa1\xb8\x25\x0c\x07\x4e\x7b\x38\xda\x3f\x80\xc2\xe5\x84\xfd\x24\x1f\xc4\x84\xdd\xa6\x3c\xbb\x9f\xb0\x37\x18\x54\xfa\x93\x5e\xb5\x79\xae\x1a\xe9\xf4\x27\x7b\xaf\x8e\x73\xde\x0c\x96\xc9\x77\x36\xef\x2f\x4d\x0d\xfc\xae\x88\xea\xff\x4c\x9c\x57\x07\xd3\xc1\xdf\xfb\xfd\xfb\x40\xf0\xf3\x37\x48\xd4\xdf\xe5\x5d\xb0\x9f\xe4\xe0\x77\xe1\xff\xda\xfd\xcb\x5a\x5c\x60\x7b\xd2\x2e\xd7\x8a\x75\xfa\x75\xa5\x75\xca\xb8\x7e\x28\x37\xb3\x3b\x87\x2d\x05\x4a\x9e\x8d\x5d\x62\xef\x08\x28\x37\xbd\x6a\xfb\xeb\x22\xd1\x79\x99\xf5\x2f\xfe\x9b\x6a\xad\xed\xd7\x5b\x88\x0e\x61\xb2\xed\x56\x02\x72\xb6\x87\x82\x1a\xf0\xb1\xe5\x7f\xe8\xd5\x12\x10\x3c\xa7\xad\xf0\xb6\xe2\xac\x6c\x8d\x8b\x03\x51\x55\xfd\x09\x79\x9b\x0a\xe0\xdb\xf1\xa6\xa8\x77\x83\xd7\x66\x98\x73\x08\x2c\x94\xa5\x1f\xc6\x7c\xc1\x2c\x13\xc0\x93\x6a\xee\xbd\x0f\x22\x63\x29\xcf\x5c\x18\xdd\x5a\x44\xc1\xcd\xc7\x43\x2d\xc2\x1c\x1f\x48\xd5\xa3\xfb\xd6\x4a\x08\xe5\x7a\x7b\x8c\x29\x61\xac\x83\x7a\xef\x13\x86\xea\x51\xb0\x08\xe1\xf9\x1d\xca\x71\x8d\xf7\x82\xbb\x20\x98\xdc\x1b\x51\x04\xbb\x79\xcd\xb4\xa8\x2c\xcd\x4a\x5c\xe6\x57\x85\x23\x6f\x8d\xbc\xd6\xa8\x89\x2a\x6e\x83\x41\x91\xac\xa7\xf0\x12\x7f\xe0\xc5\x16\x2f\xb4\x3b\x5d\x90\x84\x3f\x72\xa4\xe0\x7c\x41\x5f\xeb\x2a\xd1\x2b\x90\x41\x32\xbf\x74\xdd\x0d\x23\x5a\xda\x83\xba\xae\x39\x60\x43\x76\x06\xb3\x9b\x40\x9e\x61\x26\x72\xa0\x9b\x68\xc6\x66\x86\xa2\x5e\xc7\x5d\xba\x9b\xd5\x35\x9b\xfe\x9b\x6e\x69\x15\x77\xf3\x33\xcb\x1a\x20\x90\x97\x47\xe4\x65\x5c\x86\xb9\x7a\xc6\x38\x20\xaa\x56\x0a\x7e\x22\x5b\x63\xad\xbd\x56\x6d\x77\xa1\x66\xf8\x4b\x70\x08\x70\xaf\xc3\xe1\x50\x86\x24\xac\xe8\xd6\x1f\x26\xef\xb1\x59\x88\x6b\x23\x0f\xc1\xc4\x7b\xf0\xe0\x32\x30\x81\x5c\x39\x55\xc8\x4c\x30\x05\xb1\xf7\x85\xca\xcb\xd5\x99\xa7\x65\x30\xb7\xb8\x07\xa0\x12\xc9\x45\xca\xe1\x2a\x03\x6c\x2d\x67\x2d\xc7\x30\xfa\xe3\x3c\x9f\xbe\xa5\x2f\xe3\x09\x6d\xfe\x90\x81\x87\x79\xc1\xae\xed\xae\x1c\x73\x59\x83\x5b\xb4\xcd\x49\xc5\xc3\xae\x6f\xbf\x00\xc5\x0f\xc8\xeb\xbb\x41\xec\xc0\xb7\x3e\xc0\xc3\x18\xe0\xd0\xa3\x1b\xa2\x48\x0b\xf5\x7f\xed\xd9\xd0\x0d\x55\x1d\x31\xd3\x4d\xcf\x98\x23\xaa\x13\x42\x5b\xa9\x9b\xbd\x42\x06\x46\x60\x77\xa5\x1a\x53\xbe\xad\x54\x6e\xd1\x1c\x21\xbf\xbd\xa6\x24\x4c\xf8\xf5\x41\xe6\x01\xd9\x31\x7c\xed\x56\x08\xf6\x2a\x13\xeb\x57\x9f\x32\xb1\x5e\xda\x91\x9e\x42\x83\xa6\xa6\x45\x4d\xca\xe3\x81\x93\x23\x4f\xb5\x6a\xa7\x7e\x3b\x40\xcd\x58\x6b\x12\x96\x13\xb4\x49\xae\x99\x97\xa0\x33\xed\x81\xfc\x77\x11\xd7\xb9\x98\x1b\x35\xfb\xea\xc7\x5c\x17\xfe\x69\x00\xc0\xa8\x43\xfc\xec\xef\xff\x78\xab\xf4\xd9\x90\xe3\xed\xae\x0a\x14\xb1\x9b\x3d\x57\xee\xc0\xeb\x06\x14\x7f\x5d\xcc\x33\x0c\x60\x9e\xf2\x47\x45\x2c\x1e\xa3\x5c\x4f\xc3\x8e\xb5\x76\x11\x79\x73\xac\x35\x90\x5f\x7e\x95\x29\xeb\xe9\x93\x4e\x6b\x6b\x12\x48\x04\xf3\x24\x09\x19\xe5\x7d\x7c\x69\xa1\x02\x05\x34\xf6\x28\x92\xc4\xba\xf0\x2a\xf6\x06\x71\xb6\xc4\x90\x66\x2a\x26\x96\x72\x82\xc8\xda\x28\x0a\x74\xb6\xe2\xa0\x3f\xe9\x74\x56\x0e\xad\xe6\xa7\xba\x44\xfe\xca\xb2\x6d\x0f\xc4\x5b\xf1\xb3\xcb\x7b\xb1\x1f\x5d\xd7\x03\xba\x76\x70\x61\xf2\xbb\x6c\xc4\xb3\xcc\x62\xc7\xe9\xab\xcc\xdc\x95\xd6\x3c\xaa\xb8\x39\x3b\xea\xb9\x15\xd1\x7d\xaa\xa5\x1a\xbd\x17\x05\xf5\x31\x86\x54\x61\xce\x33\x5f\x9a\xbb\x1d\x0e\x3a\x1c\x2b\xf6\x24\x36\x24\x07\x50\x81\x05\x44\x7a\x2a\x2a\xce\x9c\x42\x66\xf7\xb4\x7b\x6a\xff\x85\xf0\x67\xc3\x33\xf8\x62\x5b\xe2\x43\xb5\x53\x85\xb7\x38\x76\x2a\x3c\x88\xbc\x91\x53\x34\xb0\xb3\x39\xab\x10\xb8\xb5\x76\x29\xb8\x20\x7f\xf3\x0c\xfd\xe6\x19\xfa\x1f\xee\x19\xfa\x9a\x6e\x21\x40\x84\x3c\xa7\x4f\xa8\x27\x40\x7e\xc2\x72\x74\x5f\x3d\x55\xec\x1a\xad\xe3\x49\x20\x0c\x1a\xe4\xcf\x35\xe1\xed\x96\x5e\xa1\x00\x49\xeb\xe8\x5e\xa8\xce\x18\xbd\x25\xc5\xe9\xd4\xbe\x7d\x2a\xd8\x67\x37\xa7\x4f\xf0\x76\x3f\x47\x9a\x07\xf8\x10\x65\x6a\x1b\xcd\x84\x59\x27\x60\x7b\x9a\x86\x9f\x01\x54\x4a\x67\x8e\xd6\x37\xa7\xdc\x2e\x0c\x46\x22\xf9\x0e\x42\x84\x6a\x44\xb8\x43\x91\x60\x4e\x78\x37\xd5\x3a\x69\x05\x84\x3d\x69\x07\x36\xd2\x43\x86\x76\xde\x1c\x8d\xd1\x3c\x84\x49\xd9\x5e\xf4\xa9\x06\x3e\x31\x01\xb3\x10\x40\x09\x00\x66\x53\x5c\x42\x86\x9e\xef\x8e\xa9\xcf\xeb\xe1\xce\xe1\x42\xc8\xa8\x95\x88\x38\xa8\xe0\x59\xc8\x5a\xc4\x5d\xce\x45\x48\xb5\xd3\x48\x82\xc8\x9b\xdf\xe9\x88\x5a\x42\xb9\x4b\xd9\x46\xfb\x3f\x76\x71\xd5\x2c\x04\x0b\xa8\xc6\x9a\x5b\x24\x89\x25\x9d\x3b\x24\x7a\x68\x19\x76\x97\x51\xc2\xf3\x81\x86\x75\xeb\xbe\x33\xa7\x82\x2e\xa0\x9c\xe1\x1b\xe9\x4f\x90\x84\xb2\x1b\x88\xdc\x59\xa8\x99\x13\xfd\xf3\xd8\x2f\x87\x57\xc3\x70\x29\x22\xf5\x1a\x43\x83\x4c\x76\xfe\xe6\x32\x61\x79\x19\x6d\x81\xab\xaf\xba\x4f\x85\xfb\x56\x73\xc5\x4e\x16\xca\x5c\x88\xc0\xd5\xb2\xe3\x90\x6d\xfd\x68\x8c\xd5\x5c\xfe\xa7\x70\xf0\x2c\xa2\x84\x0a\x11\x59\x78\x71\xd2\xaa\x15\xbd\x66\x69\x13\x11\x60\xe1\x31\x25\x65\x1a\xf3\x42\x4c\x17\x1e\x6d\x23\xd1\xd3\x69\x51\x1e\x64\x32\xe7\x61\xc3\x42\xf4\x5e\x6d\xa7\x4d\xe4\x5a\x44\xfb\xa8\xa1\x82\xd2\x4f\x3e\xf0\xdb\xb5\xed\xd7\x75\x6d\x43\x8e\x51\xcc\x94\x1b\xd3\xb5\x54\xd5\x1b\xff\xfa\x69\x9d\x2b\x58\x50\x93\x7c\x44\x3f\x7f\xc5\x6b\x67\x8b\x0d\x3c\xce\x9e\x1f\x7c\x0f\xea\x3f\xce\xfc\xc5\xd6\x1f\xd6\x41\x62\x7d\xc3\x2c\x0c\x83\x8b\x45\x38\x75\x8c\x41\x3b\x38\xac\xdf\xcd\x5d\xf2\xab\x02\x27\x0d\xb9\xb8\x1a\x8b\xdb\xc1\x95\xae\xac\xa5\xad\x04\x9e\x77\x3d\x16\x77\xc0\x69\xcd\x8b\x17\xb9\xeb\xf5\xea\x0e\x68\x11\xef\xef\x64\x5e\xfc\x5c\x53\x4c\x3c\x4e\x72\xf1\xd9\x4c\x53\x5b\x55\xac\xe6\x50\x8b\xea\xa6\x6a\xf3\xe8\xb5\x9d\x73\x70\x79\xb2\x1a\x59\xa6\xde\x63\xee\x41\x9f\x5c\x7f\x7d\xc2\xa3\xe9\x31\xe3\x69\x2a\x32\x7b\x90\x37\x6c\x2d\x10\x9c\x82\xaf\x80\x62\xdc\x56\xa0\x6c\x6d\xed\x96\x6b\xb6\x92\x5a\xd1\xf0\x18\x74\xdd\xb4\x7d\xe4\xae\xca\x24\xe9\x1c\xb9\xc3\x3a\x36\x57\x1f\xdf\xbd\x5b\xfe\x3c\x7b\xf7\xf1\xd2\x36\xbf\x55\x17\x26\x78\xac\xb3\x4f\x5c\x4d\xa8\x4f\xbc\xf2\x9c\xf9\xac\xb0\xd2\xb9\xda\xb7\x1a\x9d\x5c\x65\x92\x54\x35\x83\x16\xea\x13\x95\x03\x30\x6d\xd4\x43\x34\xfd\xc6\x7a\x3b\xae\xfa\x7d\x78\xec\x93\x29\xfc\x13\xbe\x7b\xc6\x7c\x23\x5e\x81\xb2\x1d\x29\x66\xb5\xf7\x2b\xe5\x80\x9c\xb0\x1c\x10\x0c\xdc\xb5\x1c\x9e\x5a\x15\xed\xb8\xe5\xf1\x51\x01\x1f\xb3\x88\xad\x98\xd9\x93\xac\x0e\xec\xbb\x4f\xd5\x38\xb5\xdb\xcb\x63\xbc\xd2\x40\xb9\x13\xd4\xb2\x02\x85\x5e\x2f\xf7\xb4\x50\xe8\x03\x35\x75\x2a\x74\x77\x9d\xd8\x9c\xcc\xdb\x84\xab\x4d\xc9\x37\xc6\xba\xb5\x1f\x5f\xa8\x9d\xdc\x6c\x91\x5d\xa2\x4c\x3d\x3e\x99\x33\x05\x24\x24\xb5\x29\x54\xc3\x27\x4b\xb5\x50\xd4\x26\xb5\xf1\xc5\x23\x56\xf6\x4f\xb7\xae\x39\x04\x4a\xc7\x82\x48\x8e\x4b\x2d\x14\x0e\x2e\xb2\x5e\xd8\x48\x08\xdc\x58\x78\x51\x9f\xba\x1c\x62\x97\x28\x59\x6d\xf6\xf4\x0d\xc4\x64\x16\xca\x25\xa6\xa2\xe7\x88\xda\x10\xc8\x36\x60\x95\x0e\xef\x27\x76\x30\xec\x9a\xa0\xba\xb5\xcf\xfa\x93\xcf\x00\xb3\xe0\x96\x23\xb4\x77\x9b\xdb\xd8\x40\x6f\x21\x0f\x36\x8e\x2e\xb6\x02\xc8\x46\x6e\xaf\x8d\x6d\x17\x3e\xd3\x09\x6d\xd5\xe5\x2a\x19\x51\x25\x7c\xbe\xb7\x52\xb8\x25\xf7\x57\x6a\xc0\x75\xf8\xa6\xb6\xb4\xcc\x34\xed\xfb\xec\x4a\xeb\x8e\x71\x79\xc2\x80\x62\xa5\x52\xf4\xc2\xa1\xce\x28\xa3\xe2\x98\xf9\x32\x20\x45\xaf\xde\x45\x76\xf7\xe9\xab\x50\x22\xf3\xa3\xaa\xe3\xed\xa7\xc1\x35\x72\x16\x02\x1d\x76\xa3\x76\x58\x3a\xe7\x2a\x1b\x6c\xc7\x36\x49\xf1\x24\x2b\x62\x2b\x71\x7b\x31\x8b\x07\x15\x66\xcd\xfc\x9f\xb8\x49\x34\xf1\x23\x37\x81\x4a\x46\x65\x96\x9b\xed\x92\xf6\x3b\xda\xb5\x75\xc6\xf8\x42\x59\x35\x04\xbb\x1d\xcf\x2c\x38\x37\x73\x7f\xc5\xb4\xc7\x14\xd9\xc4\xc1\x62\x2d\x98\x56\xc2\xee\x86\x0b\x65\x95\x8f\x27\x8c\xaf\x72\x2b\x28\xcc\xd5\xde\xa9\xfc\x4a\x27\xe1\xc6\x15\x03\xd4\xf3\xe1\x3d\xaf\x66\x06\x54\xce\xf9\xdf\x99\xff\xfb\xef\xdf\xfd\xff\x00\x00\x00\xff\xff\x6b\x5a\x06\xc7\xd9\xad\x04\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x5d\x23\xbd\xdf\xde\x6c\xdc\x71\xcc\xab\xb4\xf3\x41\x25\x4c\x1f\xca\x4d\xa7\xa0\x40\xca\xa2\xaa\xa6\xb3\xf5\x79\xf5\xbd\x24\xe6\x00\x32\x36\x7c\x1c\x73\x22\x03\x23\x3e\xf2\xb6\xb8\x84\x4e\x89\x96\x3e\x46\x4c\x93\x71\xe8\x70\x30\x00\xdb\x0e\x6f\x5b\x77\x1a\x09\x2e\xa5\x8d\xbc\x37\xed\x2c\xcf\x9f\xda\xa2\x96\x9f\x41\x09\x3f\xbf\xbe\x1a\xd7\xab\xfa\x05\xcf\x5c\x7d\x3f\xfb\xb0\x31\xc9\xbe\xb5\xa9\x95\xd5\xfc\x8a\xb5\x58\xa3\x9e\xdf\xf1\xe9\xc5\xb9\x2f\x62\x55\xe9\xba\x5e\xd0\x2f\x44\x56\x6f\x2f\xe9\x57\x9f\x71\x50\xdc\xaf\xd2\xc4\x92\xf2\x7e\xab\x37\xab\x1c\xef\xbb\x0d\x6c\x5e\x65\xeb\x57\xf2\x87\x32\xcd\xac\x0a\x4b\xdf\xd1\x36\xb5\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x76\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\xb5\xad\x58\xcf\xe3\x75\x6f\x61\xd2\x77\x11\xc6\xfc\x7a\x39\xcc\xc9\xa2\x88\xda\x93\x56\x76\x73\x25\xb8\x5b\xec\xfe\x13\xe2\x21\xe1\x5b\x37\x74\xdb\x24\x45\x0f\x1d\x25\x08\x96\x36\x1c\x03\x72\xf9\x2a\x79\x3e\x6b\x98\x87\xfd\x98\x4d\x36\xf0\xa1\x2f\xc2\x10\x5c\x35\xb6\xae\x58\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\x63\x7e\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\x01\x07\xa6\x67\x30\x8f\x49\x9a\x6a\x05\x1e\x54\x13\xc6\x0f\x79\xe6\x74\x96\xd2\x5b\x50\x41\x83\x4e\xf5\x8d\x15\x84\x2b\xe8\x2f\xd8\x21\xf9\x4c\xa5\xd2\x72\x45\x43\xac\xa6\x6b\x04\x24\x1e\xa8\xab\x35\x27\xf6\x86\x1b\x7d\x18\x7c\x77\x7d\x7b\x3f\x3c\x1b\x7d\x28\xa2\xf3\x5d\xfa\x99\x47\x84\x72\x00\xff\x9c\x8d\x98\x0f\xa8\xf5\x00\xc8\xb0\x97\x08\xc7\x71\x81\x6c\x60\x95\x48\x23\xb3\x2d\xe5\xc8\xc1\xa9\x58\x19\x4a\xbb\xa4\x99\x07\xc8\x41\xda\xd7\x93\xb5\xc4\x75\x56\x3a\x39\x26\x93\x6a\x49\xca\xcb\x8e\x2e\x9b\x10\xbb\x55\x19\x5d\x9b\x28\x07\x2e\xc8\xc8\xb3\xd3\x95\xe0\x76\x3e\xc6\xe6\x12\x5e\x8f\xdb\xb9\x0d\xd9\x60\x53\x3f\xd2\xcf\x24\xbe\x6d\x91\xaa\x76\x92\xd1\xd2\x29\x12\xb0\x71\x17\x72\x46\xd7\xd1\xf8\xfd\x54\x1e\xf4\x77\xdd\xd9\xd2\x75\x01\xc9\x56\xc0\xab\x02\xb6\xaa\x42\x18\x45\x44\x28\x4c\x19\x9a\xc2\xc1\x66\xd1\x02\x01\x60\x07\x01\x1f\xf6\x1f\x51\x4a\x19\x20\x07\x2c\x5b\xda\x87\xf2\x3c\xd6\x10\x5a\x2f\xcf\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\x83\x9f\x97\xca\xaa\x95\x16\x96\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xc6\x89\x26\x0b\x45\x1e\x6e\x2f\xb6\x92\xef\x9a\x9d\x65\xad\x18\xe1\xa1\x74\xd5\x8c\x88\xd0\xe5\xd3\x98\x44\xab\x50\x4c\xbb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x32\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\x76\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x8d\x93\x66\x87\xb2\x24\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\x47\xa6\x42\xfc\x40\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x11\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\x06\x37\xe7\x0d\x6b\x7d\x51\x75\x21\x7d\x59\xe5\x6c\x12\xef\xcd\xda\x35\x48\x52\x90\x9e\xb8\x17\xa8\x48\x76\xa6\xdb\xc1\x20\x19\xa7\xff\x4d\x39\x92\x60\x1f\xd0\x7a\x9b\x54\x86\x52\xda\xf1\x0a\x60\xde\xf5\x32\xf1\x8a\x65\x58\x13\xf4\x28\x1c\x90\x4d\x03\x09\x81\x7e\xea\x31\xc6\x07\x21\xf0\x0f\x37\x05\x73\x6d\x6c\xc1\xce\xc0\x90\x8a\xd9\x74\x41\x43\xfa\xd1\x50\xb4\x07\xcb\x00\xf8\x0f\x57\x90\xd1\xc5\x06\xdb\xdc\xf5\x70\xba\x21\xb5\xad\x07\xa0\x54\x8c\xcf\x99\xbf\x2d\x16\x35\xce\xb0\xb5\x3b\x80\x12\xe5\x2a\x25\x34\x15\xd6\x3b\x1a\xb1\x20\x60\x45\x1a\xb5\x47\x9f\x11\x57\x9c\x04\x2a\xde\x32\x00\xb6\x86\x24\x1d\x2f\xfc\x94\x76\xa0\x9a\x22\xaf\xe6\xe5\xf2\x22\xb5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\xa0\x33\xad\xab\x38\x04\xc7\x6a\xa5\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xcd\xaa\xfe\x39\x23\xd1\x26\x10\x32\x37\x58\xe0\x94\x28\x22\x96\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x2a\x48\x18\x3f\x8b\xb5\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x35\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x6d\xe7\xf4\x3a\x50\x28\xf7\x35\x50\x91\x52\xb8\xd0\x9e\x60\xa0\xac\x1e\x65\x1b\xf8\xc9\x2a\x5e\xba\x13\xde\xed\x32\x1c\x5c\x0a\x6d\xe5\x50\x95\x72\x27\x80\x4a\x40\xa5\x32\x38\x20\xcd\x00\x26\x20\xb4\x34\x45\x48\x06\x6e\x3f\x0b\x6f\x57\x18\x74\xad\x64\x55\x2d\x2e\x55\x59\xae\x15\x3c\x6e\x57\xe0\x0e\xbd\x44\xb3\x6b\x89\x66\x15\x29\x97\xa2\x6b\x35\x75\x12\x51\xc1\x99\xb1\x45\x9f\x2d\x40\x40\x79\x82\x90\x7b\x64\xaf\x48\x5b\x39\x16\xae\x7e\xca\xfc\xbf\xca\x1c\xdc\x11\x75\x48\xaa\x4d\x49\x95\x47\x81\x0b\x0a\x3c\x50\x49\x28\x0d\xd8\xb8\x1a\x18\xad\x09\x83\x34\x56\xfe\xf3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x07\xf0\x16\xc0\x20\xc8\x7c\x92\x52\x85\x70\x30\xc3\x92\x49\xf2\xc0\x9e\x67\xfd\x01\xcc\xb8\x31\xcf\xbe\x09\xa2\x67\xc5\xa1\xd9\xc0\xbe\x56\x34\xb2\x6d\x2a\x7d\x10\xd3\xfc\xb2\xc9\xf4\x81\xc6\x13\x6a\x98\x8d\x67\xae\xcf\xa6\x47\xcd\xd6\x06\x0b\x1a\x0a\xc8\xae\x54\xaa\xca\xdd\x62\x0d\x3d\x2b\x32\xe9\x8b\x8d\xe8\x94\x4a\x5f\xbc\xbe\x8b\x5c\xfa\xb6\x32\x65\xcb\x72\x2b\xdd\x27\x2d\xf6\x6f\x97\xb3\xab\xb8\x0b\x9c\x0f\x25\xa5\x9b\x56\x49\x69\xdf\x50\xcd\x8a\x84\x80\xcd\xc3\xcb\xd7\x51\x07\x8b\xfc\xac\x90\x8a\x82\x74\xcb\x32\x26\x0c\xa9\x72\x7e\xc6\x15\xe4\xd4\x44\x50\xc2\xbd\x96\xe7\x39\x62\xcd\x12\xc8\x72\x9e\xb8\x6d\x8a\xc6\x4e\xd1\xcf\x82\xf3\xe7\x66\x61\x2d\x5a\x3f\xf9\x20\x37\xa3\x2c\xdb\x62\xec\x55\x11\xb3\x70\xf1\xb5\x05\x27\x69\xc1\x63\x93\x84\xe3\x86\x53\xd9\x3c\xf4\x5a\x02\xc5\xca\x73\x61\x2f\xdd\x1d\xaa\x76\x35\xee\xdc\x39\xdf\xc4\xcb\xc8\x96\x1b\xbb\x80\x69\xa7\xc6\x57\x3c\xb5\x9b\x14\x99\x05\x50\xd1\x9d\x41\xa1\x56\xd1\x09\x74\xe3\x07\xe0\xdd\xb5\x43\xc7\x26\xd2\xc5\x03\x74\x57\xb6\xa4\x34\x61\x5b\xbc\xff\x05\x26\xbd\x6e\x61\xe0\xc0\xdb\x28\x6c\xb4\x2f\x0d\xed\x06\x50\x11\xd8\x06\x49\x56\xf8\xb0\x17\xed\x72\x16\x13\xc1\x08\x56\xf3\xd7\xcb\xb1\x38\xdd\xd6\x38\x1d\x8c\xef\x65\xf3\x2d\x4e\x77\x52\x15\x3e\x1c\x6e\xb9\x42\xfa\xca\x71\xea\xd7\xbb\xd8\x89\x6c\xe8\x81\xaf\x11\x5c\x53\x1c\x1b\x8c\x86\x01\x04\xcd\x3a\x54\xba\x55\x1a\x46\xb3\x32\xf7\x32\x09\x29\x0d\x56\x9f\x5a\x2a\x8a\x3e\xec\x61\x65\xe5\x15\x4b\xf2\x45\x64\x7e\xbc\x7c\x32\xc2\xb2\x1a\xce\x79\x90\x9f\x00\x85\xb4\x15\xa6\xcc\x72\xaf\x65\x29\x09\x5a\xa2\x4c\x71\x53\x16\xc2\xde\xe7\xb7\x7c\xf1\xe9\x2d\x7d\xb2\x43\x9f\xec\xd0\xb0\x47\x7d\xb2\x03\x42\xfb\x96\xec\xb0\x4a\x01\x5d\x66\xfe\xf4\x1e\x39\xa8\xb5\x59\x2a\x70\x63\xf6\x77\x85\x16\xb9\x79\x40\xbf\xb3\x20\x86\xd1\x50\xf6\x17\xfb\x43\x63\x40\x54\xed\xb3\xea\x6c\x43\x6b\x26\x5b\x54\x9d\x02\x58\xc4\x89\x45\xa1\xb3\xe1\xca\x65\xeb\xd3\x32\x43\xe9\x88\x7d\xcf\x9f\xc9\x13\x11\x07\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xe8\x18\x38\x08\x25\x40\x73\x13\x05\x81\xd1\x15\x4e\x49\x6c\xea\x1d\x06\x41\x8d\xd6\x5c\x6b\x1d\xad\x4d\x60\xab\x80\x1b\x6a\xb6\xc1\x45\x4d\x8c\x98\x09\x34\x34\xc1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x37\xf0\xef\x8e\xd0\xbd\xbe\x9f\xa8\x2c\x8f\x37\xc0\x5e\x6b\x1b\xdb\x88\xcd\x04\xcf\x33\x6f\x41\xe3\x13\x53\xf8\xd6\xc4\x3e\xd5\xdd\xc0\x30\x18\xe7\x03\x8e\x70\xac\x35\xf1\xe5\x84\xf3\x26\x31\xa8\x1b\x01\x18\x85\x04\xa4\x8f\xa1\x0f\xac\xb3\x81\xee\xc6\x7b\x1b\xc0\xb6\x2c\x83\x61\x7f\x21\xd7\xf2\x19\x91\x60\x13\xf2\x36\xf7\x52\x16\x79\x19\xa9\xa0\x71\x9c\xcb\x2c\xa2\xde\x6b\xe1\x2c\xfb\xcd\x20\x08\x45\xe7\x36\xe2\xcb\xa4\xa8\xda\x7b\xe2\xc5\x6c\xa5\x9d\x63\x67\xdb\xf8\xc5\x4d\x2e\x32\x0e\x92\x58\xb2\x70\xa0\x0d\x16\xe7\x2d\xe3\x59\x6e\xa2\xda\x68\x18\xe4\xd4\x48\xd9\x54\xaa\x4b\xac\xa2\xb9\xe6\xdc\x05\xde\xd9\x8e\xa2\xfd\x0a\xae\xfc\xb2\xf6\xd3\x86\x19\x9c\x86\xbd\xb7\x38\x14\x3a\xd8\xd3\xcd\xbd\xef\x82\xeb\x9d\x24\x91\xea\xfe\x8c\xd3\xcd\x96\xb3\x0e\xac\xa2\xee\x13\xfb\x44\x4f\x74\x15\x15\xad\x1a\x7f\x37\xda\x2a\xd7\xdb\xda\x79\x1c\xe1\x16\x00\x32\x67\x16\xae\xab\x78\xd1\xd6\x67\x6d\x71\xfe\x0b\xba\x59\x0e\x90\xc5\xc8\x7f\xd2\xe2\x88\xb7\xb7\xa6\x38\xd3\x4a\x84\xe2\xfa\x96\x14\x33\x23\xc7\x9a\x28\x59\x84\x51\x2e\xa8\x3b\xfb\x95\x8c\xf0\x76\xea\x00\xfb\xe4\x71\x58\x4f\x29\xc2\x41\xa9\x39\xe3\xee\xc7\x91\xca\xb1\x0f\x4b\x04\x9a\x70\x25\xd0\x4d\xf6\xbb\x73\xab\x0b\x27\xde\x35\xec\xe9\x4a\xc2\xde\x62\x97\x71\x13\xba\x61\xa7\x93\x46\xd9\x2c\x80\x46\x6c\xb6\x11\x77\xa9\x7c\xd0\xf8\x65\xb7\xea\x0d\x8d\x9f\x3a\xd9\x67\x93\x6f\x97\x40\x37\x6d\x1c\x99\x5d\x8a\x72\xb7\x61\xb0\x56\x7a\x0a\x41\x2b\xad\xfd\x0e\xb0\x67\x29\xb8\xe9\xb1\x95\xa6\xfe\xcb\xff\x65\x2a\x65\x99\xa5\xf9\x2f\xc4\xc5\x88\x99\xdf\x0f\x7c\x95\x0a\xfd\x42\x01\xff\x8a\x53\x52\x00\x64\x8a\x32\x94\x1e\x00\x8a\x58\x28\x34\x03\xf5\xeb\x41\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xe8\x01\xcf\xcc\x52\xcc\xf0\x0c\x80\x85\x0f\x20\x2e\x0e\xc4\xd5\x42\x15\x31\x24\x6d\xaa\x1d\x02\xb7\xd2\xcc\xd2\x66\xdb\x16\x55\x7f\xa1\x4f\x23\xca\x5a\x5c\xd3\x22\xb8\xa2\x99\xfa\x6f\x6d\xff\x9b\x49\xec\xf7\x83\xbb\x1f\xc6\xb7\xc3\xbb\xeb\x87\xdb\xd3\x92\xd8\x7e\x7a\xf1\x70\x77\x3f\xbc\x6d\x7c\x56\x64\xaa\xfe\xf5\x61\xf8\xd0\xf2\xc8\x35\x70\x31\xf8\x6e\x58\x2a\xa1\xfd\xd7\x87\xc1\xc5\xf9\xfd\xcf\xe3\xeb\x8f\xe3\xbb\xe1\xed\x8f\xe7\xa7\xc3\xf1\xdd\xcd\xf0\xf4\xfc\xe3\xf9\xe9\x40\x7f\x19\xbe\x7b\x73\xf1\xf0\xe9\xfc\x6a\xec\x82\x8e\xc3\x47\x3f\x5d\xdf\xfe\xf0\xf1\xe2\xfa\xa7\x71\xd0\xe5\xf5\xd5\xc7\xf3\x4f\x4d\xb3\x18\xdc\xdd\x9d\x7f\xba\xba\x1c\x5e\x2d\x2f\xd5\xdd\xbc\x1a\xad\x55\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xae\x8b\x1b\x43\x8f\x87\x07\xee\x2f\x53\x58\xfb\x50\xb3\x40\xe7\x15\x2b\xb8\xc7\x88\x79\xb7\xa5\xbf\x54\x15\x9e\x49\x97\x78\x5c\x1a\xed\x09\x1a\xc0\x59\x01\x85\xa1\xd4\x29\xe4\x35\xf8\x91\x3a\x47\x37\xd0\x61\x42\x53\x0a\x3e\x6f\x74\x88\xaa\x1b\x5e\x6e\xd0\xce\x09\x86\x60\xbd\x76\xf1\xb2\xd3\x20\xab\x39\xcd\x40\x29\x27\xc8\x71\x68\x62\xcc\x09\x06\x79\x76\xc1\x70\x4a\xa3\x6a\x02\x06\x80\xaf\xa2\x02\x68\xa4\xda\x62\x89\xc0\xca\x2d\xcf\x09\xfa\xe1\x2f\xc5\xa0\xc0\x83\x61\x35\xef\xbc\x56\x4f\xcf\x3e\x10\xb9\x59\xd5\x55\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\xeb\x76\x83\xbb\x29\x67\x01\xd8\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd0\x1d\x00\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xc5\xf7\x09\x99\xe3\x27\xca\x5d\xf1\x0a\x53\xe3\x03\xd6\xd1\x8a\x56\xe8\x10\xb5\x1e\x94\x13\x34\x88\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xb0\x3c\xec\x10\x1f\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xbb\x87\x72\xa9\xb3\xc3\xf2\xdd\xbb\xc5\xf5\xaf\x57\x70\xec\x48\x79\xbc\x91\x30\x70\x8f\xe5\xa3\x63\xcd\xab\x04\x02\x07\xaa\xb3\x5d\x8f\x16\x5d\xa7\x6b\xa7\x7e\x65\xc7\x70\xd0\x36\xeb\xb3\x15\x13\x7a\x45\x97\x6e\xc6\x49\xa5\x70\x57\xe7\xfe\x4a\x85\xbf\x1a\x3b\xdb\xa9\xb7\xa7\x59\x1a\x83\x23\x39\xf6\xf4\xbf\xc6\x3c\x6e\xe0\xd3\x6b\xff\xe5\x52\x91\x6d\x1c\xac\xdb\xba\x3e\xa0\x5a\x8a\xae\xf5\x03\x2d\xa5\xc3\x1d\x81\x3b\x75\x17\x06\xa1\xec\x02\x8d\xc0\xdd\x87\x29\xb3\xc5\x78\x88\xf7\x47\xb9\xf2\xd3\xfa\x1c\xfb\x02\x71\x78\xc2\x9f\x4a\xca\x65\x4a\xa4\xc4\x2d\x70\x25\x81\x49\x6c\x1b\xc6\xe0\x4f\xa8\xfd\xb0\x23\x3d\xb9\x33\x79\xaf\xbf\x5a\x66\xf4\xb9\x0d\x35\x63\x37\x51\x2d\xb0\xc6\x2e\xce\x16\x5d\x9b\x6c\x3b\xcd\x5f\x0e\x8a\x50\x1a\x2e\x82\x08\xa3\x36\xf7\x4f\x47\xb3\x5a\x75\xc1\x1a\x6b\x2c\x85\x2e\xbc\xf5\x23\x70\x82\xd6\x37\xc6\xc3\xb6\x7e\x15\x5c\x5e\x9f\x35\xa8\xae\xe4\xef\x0c\xeb\x4f\x47\x3c\x4d\x8d\x5c\x50\xb2\xa5\x1e\x20\x6c\x92\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\x71\x30\x62\xcf\xc1\x86\x94\xc2\x80\x07\x61\x4b\x80\x25\xfa\x59\x1f\x37\xfa\x54\x0a\xae\x06\x91\x91\x42\xa4\x6f\x40\x08\xc6\x21\x58\x14\x8f\x5a\x41\xe0\xc1\x7e\x6d\x41\xea\x1b\x54\x0a\xac\xac\x6f\x5b\xbd\x40\x3f\xb7\xa0\x4c\xdf\x16\x9a\x72\xd7\x21\x04\x95\x02\x9b\x46\xb0\x83\x42\x81\xaf\x0a\xee\xed\x93\x35\x4d\x6e\x6f\x3a\xb1\x08\x15\x7a\xba\x6e\xb5\x7f\xef\x66\xf4\x7b\xe3\x77\xc8\x5b\x20\x4d\x82\xd6\x3c\xbe\x37\x3a\xd4\x32\xab\x4b\xb5\xb7\x81\x18\x12\x1d\x1a\xcc\xc0\xaf\x20\xce\x72\x70\x73\xfe\xd5\x01\xfa\x2a\xcc\x35\xfb\x6a\xa3\x03\x68\xc7\x6d\x8b\x05\x82\x36\x55\x4a\x38\x28\x1f\x3b\xd8\xab\xca\x49\xb4\x7b\x66\x0f\x22\x6a\x3b\x87\xfa\xcb\xd2\x37\xe0\x9c\x86\xe2\x77\xc6\x7f\xeb\xc3\x9d\xad\x0b\xc8\xc8\xb8\x54\x36\xac\x5d\x3c\x62\x93\x45\xd5\xc9\x73\xe0\xbd\x3c\x9d\x4f\xe9\xd6\x05\xdd\x74\x7b\xf5\xe4\xe4\x1d\x87\xe1\x2e\xbf\x0f\x56\xa4\x3b\x0f\x4c\xc4\x35\x9f\x06\x5c\xac\x2d\x4a\xa1\x8f\x5f\x6f\x9a\x55\xc9\x5e\xe6\x16\xb3\x71\x53\x56\xc9\x3f\xef\x8d\xdc\x3a\x04\x7d\x0f\x9a\x56\xc4\xc6\xfb\xb7\x08\xd7\x3d\x95\xbd\x2c\x95\xed\x22\xdf\xa1\x3c\xb8\xf5\x2f\xd0\x53\x23\xc7\x05\xcd\x38\x83\xab\x56\x26\x3c\x83\x2f\x55\xfd\x5b\x5d\x2e\x77\x4d\x9f\x6f\xb0\x26\xab\x9d\xbe\x77\x26\x70\xc0\xb8\x5d\xeb\x63\xad\x0e\x75\xa0\x6c\x09\x22\x4e\x4d\x6e\xa3\xa2\x29\x39\x40\x9c\x25\x8b\x20\xd8\xc1\x9e\x57\x20\x37\x13\xa3\x34\x27\x54\xb8\x4e\x2c\xc2\xe0\x5a\xc9\xf0\x6b\x4a\xe3\x6d\x34\xb2\x45\xa4\xc9\xd5\xe0\x72\x78\x36\x1e\x5e\xdd\x9f\xdf\xff\xdc\x80\x1e\x59\x7e\xec\x00\x24\x83\x17\xee\x7e\xbe\xbb\x1f\x5e\x8e\x3f\x0d\xaf\x86\xb7\x83\xfb\x15\xe0\x92\xcb\x3a\x6b\x03\x2e\xcc\x65\x93\xfa\xb6\x0e\x78\xa1\x33\xf3\x36\xf4\x5e\x87\x98\x0c\x3a\xa1\xa4\x05\x66\xd2\x24\xfe\xb3\x98\x08\x14\x93\x27\x92\xf0\xac\x30\xab\x36\x2e\x58\x80\x3f\xd9\xd0\xfe\x32\x0c\x4a\x68\xb3\xba\xc6\x27\xc8\x54\x7a\x0b\x8a\xdd\xfa\x06\x41\xe4\xc3\x82\xb0\xaf\x14\x22\x9f\xb3\x84\x46\x54\x05\x89\x81\x5c\x58\xf7\x8a\x71\x1f\x42\x74\xea\x0a\xe2\xda\x59\x34\xca\xce\x75\xfe\xd0\x93\x5e\xd7\xf6\xfd\x89\xf2\x78\x68\x2b\xcb\x07\xed\x40\xb1\x6f\x71\x1a\xd7\xe0\xda\x36\x18\xdd\x4b\x98\x07\xea\x19\x3a\x36\xb9\xaf\x05\xca\xad\x79\x90\xab\x6f\xc3\x65\x71\x32\xa5\x73\xbd\x3c\x50\xa6\x1b\xa5\xbe\x71\xb8\x4b\xa9\xac\xe6\x0e\x70\x37\x6c\xec\xfa\x9a\x01\x0b\xb5\x6a\x31\xcc\xc4\x9c\x62\x24\x48\xca\x95\x56\xc0\x4c\x44\xc0\x81\x16\xaa\x28\x4e\xe8\xaf\x80\x50\x25\xc8\x51\x10\x41\xe1\x70\xbd\x0a\xf7\x81\x45\x8f\x38\x1a\xb1\xb3\xe1\xcd\xed\xf0\x54\x33\xa4\x23\xf4\x20\x01\x7c\xaa\x34\xf5\x33\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xb6\x60\x30\x22\x04\x17\xdd\xf9\x83\xef\x6f\x08\xdf\x35\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb5\x26\x72\x90\x33\xb0\xf3\x94\xac\x5b\xfc\x5c\x5a\x91\x10\x7c\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x7c\x67\xf7\xf9\x95\xfa\xbc\x81\x6f\x97\xcd\xf3\x1e\x42\xec\xa4\x2a\xb0\x40\x0d\x5c\xa8\xaf\x79\x53\x99\x67\xab\xa8\x28\xde\x02\xa8\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x38\x6c\x68\x69\xab\x07\xcd\xac\x7b\x54\xf5\x9a\xe1\x94\xe7\x0c\x94\x06\x08\x63\x6d\x18\x8c\xcc\x08\x53\x2b\x06\xf3\x56\x30\x2c\x95\xa1\xee\x2f\x12\x4b\xc3\x40\xdb\xc0\x58\x9a\xfc\x49\x50\x78\x79\xbd\x6b\xd9\x05\xe5\x95\x9c\x4a\xfa\x50\xf9\xfb\xb9\x59\xcb\xc6\xf2\x71\xeb\xee\xee\xb1\x7c\x5c\xdd\x55\x4c\xa2\xc7\x75\x2f\x9b\x6a\x66\x66\x62\xeb\x56\xd7\x8c\x7d\x0b\xfd\xd4\x16\x66\x81\x72\xe5\xd1\x23\xfa\xfe\xfe\xf2\x02\x4d\xa9\x96\x7b\xf5\xb5\x72\x85\xb5\x8c\xfd\x20\x12\x67\x17\xb6\xb6\xd5\x5c\x24\xfe\xee\x85\x8d\x77\xa2\x54\x20\x25\xe8\x1b\x0d\xcf\x88\x33\xf6\x0a\x8b\xb5\x57\x29\xcc\x22\x30\x8b\x79\x6a\xe6\x71\x2c\xf3\xe9\x94\x7e\x3e\x52\x58\x7c\xd3\xb2\x1e\x26\xaa\x62\xfc\x77\x3e\x19\xeb\x11\x6d\x79\x11\x37\x35\x87\x6c\x39\x65\xbf\x6c\x76\x66\x67\xe6\xdd\xff\xcb\x27\x90\xeb\x9e\x09\x0e\xf8\x7f\xe0\x9d\xb3\x91\x0a\xf6\x15\x47\x49\x47\xc8\x25\x50\x95\x20\x4e\x22\x2e\x04\xb1\x29\xf2\xa6\xb2\x68\x86\x85\xa2\x60\xad\x75\x10\x29\x25\x6c\xfc\x62\x8b\xc2\x82\xdf\x73\x5c\xe0\x50\x4f\x08\x01\x07\x4f\x46\x93\xf5\x94\xde\xd3\x92\x6f\xb2\x72\x02\x6d\xe4\xa9\x45\xcd\x04\x83\xcc\x4a\x11\x6b\xf8\x44\x98\xda\x89\x7e\x02\x4d\x34\x24\xed\x77\xf3\x32\x98\x02\x9f\xe7\x67\xc5\xe5\xe6\x42\x7a\xc3\xa8\x26\x25\x30\xdc\xf3\x36\x51\xca\xba\xd4\xdb\x1c\xfd\x4f\x9d\x7d\xc7\xf0\x6a\x7d\x5d\x56\x84\xc6\xdb\xd5\x2e\x0a\x7d\x17\x61\xad\x0e\xd8\x7f\x43\x18\x1f\x49\x8c\x15\x23\x80\x8f\xb0\xca\x69\x75\xcf\x4d\x9f\x9a\xb6\x2a\x5d\xae\xdc\xf2\x0d\x30\x6b\x4a\xcd\x7c\x22\x90\xd2\xb9\x8b\x40\xf4\x75\x52\xf7\x61\x20\x0f\x22\x81\x10\xea\xa5\x56\x2c\x53\x64\x5c\x73\x3e\x2f\xd9\xe1\x0e\x32\xba\x19\x8c\x16\x1a\x49\x26\x48\xa4\xaf\xb2\x13\x74\x93\x10\x2d\x79\xe5\x5a\xfa\xca\x93\xc4\xe1\x7b\x2d\x97\x0e\xd7\xc2\xa4\x7b\xf1\x79\x05\xba\xc7\x92\x89\x39\x7c\xbb\xe5\x33\x0b\xd6\x60\xf7\x80\x0b\xc1\xfa\x82\x09\x19\x0c\x89\x65\x2d\x12\x38\xfc\xc2\xc4\xcd\x82\x29\x09\x97\x2e\x32\xfa\xab\x66\xbf\x82\xc8\x39\x6f\x4d\x72\x0c\x67\xfb\x32\x73\x70\x4b\xf9\x82\x93\x70\xf7\x61\x5b\x5c\x75\x07\xb9\xa6\x72\x07\x96\x44\x9c\x65\x53\xf4\xb5\x1f\x7c\xf4\x87\x45\x5b\xb5\x77\xab\x1d\x1a\xdc\x92\x85\xa9\x2d\x44\x3e\x2b\x5c\x17\x85\x32\xb3\x30\xbe\x57\xff\x79\x61\x40\x2e\x52\x02\xa8\x92\x45\xcd\x39\xa4\xef\xda\xb6\x2d\xd6\xf3\x1c\xe7\x62\x2d\x48\x8a\x02\xb3\x7c\x1d\xce\x6d\x93\x51\x8a\x61\xe9\x45\x68\x66\x97\xb6\x94\x04\x88\xd1\x36\xd4\x48\x96\x70\xe0\x2c\xd9\x98\x65\x6c\x54\xf1\xda\x99\xf2\xb6\x6e\x35\x90\x92\x0b\x51\xe6\xa5\xbc\x6b\x25\x0a\x2c\x4d\xa0\x47\x16\x5b\x1f\x59\xcc\xd6\x15\xf1\xb4\x07\x38\x80\x4a\x40\xe2\x7f\xe1\x40\xab\x0a\x0e\xd6\xe8\xbd\x2a\xf3\xa9\xb4\x3b\x9d\xd2\x9c\x4a\x5f\x68\x5e\x72\xb6\xa5\x07\x4e\x4f\x66\x31\x86\xc4\xd1\x6d\xa2\x70\x4a\xf3\x37\xde\x03\x68\x93\xc4\xc8\xa0\x17\x18\xdc\x63\xbb\x76\xde\x73\x92\x61\x41\x98\x1a\xb1\x5b\x3d\x0a\xf3\x45\x11\x89\xe1\xe2\x70\x1c\x16\x3d\x54\xac\x9d\x22\x6c\xbf\x82\x45\x6f\x0b\x84\x93\x63\xf3\x12\xa8\xa6\x2f\x98\x64\xff\x9d\x79\xc7\x60\x1e\x58\xcc\x1f\x3d\x55\x3a\x2d\xd4\x78\x2d\x40\x46\x73\x0a\x90\x03\x31\x91\xf6\x42\xa2\xca\x62\x4a\x78\xf1\x3b\x27\x0e\x7d\x19\x3e\xf3\xfc\xab\x89\x61\x3b\x43\x01\x73\x06\x3a\x39\x62\x41\x1f\x4b\xc0\x3a\x8d\xb2\xbe\xa1\x2a\x01\xfb\x4c\x63\xef\xf8\x82\x7f\x9a\x1d\xe2\x82\xce\x28\x0b\x4a\x26\xd9\xe9\xa5\x38\x03\xf3\xae\x39\x83\x7c\xea\xef\xb4\x7b\x9b\x65\x70\x04\x23\xfe\x9f\xff\xfe\xdb\x11\x6d\xf3\x7e\xc8\xb1\x5d\x81\x7d\xd8\xc9\xf5\xb6\x25\xdc\xf9\x00\x45\xa4\x05\x9d\x22\xd0\x69\x65\x29\x73\xa2\xf8\xd5\x5e\x6e\x9a\x68\xb8\x9a\x1b\x77\x6f\x99\xdc\xc1\x37\x22\xf2\xe5\x55\x04\x02\x16\x57\x04\x04\x14\x5e\xdf\x20\xe8\xd6\xd5\x88\x30\xc1\x92\xba\xfd\xca\x85\x52\x61\x50\x01\x98\xdf\x36\xc1\x89\x73\x2c\x5f\x2e\x02\xa5\xb1\xb6\x91\x31\x1a\x87\x77\xe4\xaa\x58\x14\x33\x48\x93\xd4\xa8\x77\x25\x97\x44\x98\x03\xed\x51\x9f\x2c\xf1\x84\x50\x85\x10\x8a\xb8\xc2\xa5\x46\x52\x4c\xd7\x0a\x9b\xd7\xef\x37\x03\x29\x96\x6c\xea\x78\x46\xc4\x38\xce\x4b\x31\xd2\xab\xda\xbe\xd1\x1f\x9d\xe5\x6a\xb1\xba\x7d\x99\xe0\x7a\x6d\x97\x65\xe0\x95\xfa\xfd\x96\x66\x57\x0b\x86\x41\x24\x4b\x59\x38\x6c\x81\x86\x24\x15\x68\x48\x1b\x5a\x59\xb2\x04\xc0\x45\xc3\x14\x20\xc7\x15\x0a\x83\xbd\x89\x0c\x80\x35\x8c\x1c\x4d\xf2\xc2\x72\xe2\x4b\x02\xc4\x47\x23\xf6\xd1\xd4\xd4\x00\x65\xc6\x0c\x20\x82\xbc\x16\xf2\x39\xe3\x92\x94\x12\xad\x1a\x60\xfe\x6d\xa2\xa4\x1d\x46\xb3\x4c\x5a\x7c\xb4\xbd\x48\xfa\xe6\x20\x9f\xf5\x0d\xaf\x4f\xb9\x99\x02\xb7\x92\x7a\x22\x9a\x51\x4d\x3b\xe3\xc6\x93\xf6\x72\xa5\x66\x8b\xd0\x25\x80\x7b\x52\xc9\xe2\x00\xf9\xe9\x55\x08\x22\x21\x4f\x04\xac\xc6\x30\xc6\xb0\x98\x43\xd9\x7c\xd5\xc2\x4e\x56\x1d\xa0\x22\xcb\x11\xd8\x02\x8a\xab\x23\x28\xe7\x82\x35\xd1\x62\x39\xcb\x65\xeb\x84\xac\xa6\xf8\x8b\x35\xa4\xd0\x41\x58\xd4\x62\x41\x14\x22\x9f\x15\xb1\x65\x2f\xef\x5d\xca\x5c\x3d\xca\x1e\x35\x67\xfd\xb4\x8b\x48\x2f\x5e\x80\x78\xe0\x12\xa5\x5d\x4e\x60\xec\xee\x7d\x9b\x23\x37\xc7\x2c\xb6\x89\x9f\x56\x96\xd6\x32\x05\xcc\xce\xd8\x96\x7c\x48\xbc\x4d\x5f\x0c\xd0\xc0\x4d\x9b\x06\xb6\x1c\x2e\x32\xa7\x17\x69\xc9\x1c\xa2\x08\xb8\xd0\x02\x6a\xce\x14\x4d\x34\x71\xd8\x31\x68\xad\x39\x67\x1e\x8f\x0f\x02\xb8\xdb\x20\xdf\xa8\x94\x94\xcd\xc6\x76\x25\x5d\x0e\x63\xb7\x8b\xa1\x4c\x53\x97\xa6\x29\xf3\xe3\x77\xae\xa1\xe5\xb6\x63\x43\xd6\x00\xc7\xe5\xb2\x27\x41\xb0\x66\xdc\x4d\xc6\xe2\xa8\xb9\xa4\xcb\x31\x8d\xcd\x52\x50\x53\x5d\x19\x26\xba\x8e\x79\x19\xc4\xba\x3a\x5c\x41\x71\x85\x48\x9b\x11\x69\xf2\x9c\x20\x20\x5d\xb5\xa4\x7c\xca\xd6\x54\xcf\x73\xe6\x45\x34\x5b\xdb\xc9\x27\xb4\x57\xb2\x46\xb1\xeb\xce\x46\xdd\xe3\x24\x99\xe0\xe8\xd1\x2b\x1b\x5e\xe5\xe6\xc2\x61\xe3\x6b\x01\x15\x8a\x7f\x19\xe2\xd2\x03\x8d\x40\xba\x09\x9d\x62\x06\xb0\xc6\x0e\xbb\xe8\xdc\xac\x9a\x45\x02\x33\x08\x45\x66\xf4\x26\x84\x3f\x26\x59\xc2\x17\x69\xcb\x7d\x56\xcd\x94\xdb\x26\x20\xa5\x2d\x51\x6f\xa7\x57\x59\x85\xe9\xad\x7d\x99\xd5\xd2\x6e\x76\x00\x9f\xb4\x06\x97\xfc\x94\xf0\x09\x58\x0e\xad\x96\xed\x52\x49\x82\x8c\x86\xea\x79\x5e\x37\xc1\xa5\x7a\x22\xa9\xcc\x12\xbc\x58\xd6\x83\x49\xad\x78\xd9\x7d\x33\xa9\xf8\xab\x8d\x60\xdd\x83\x92\x1b\x3f\x7f\x09\xa0\xde\x0b\x27\x09\x98\x77\x0d\xff\xaa\x18\x93\x4c\x4e\xdb\x91\xf1\xc5\x2a\x3e\x62\x0a\xcf\xdc\xe6\x5a\xe1\x92\x3f\x33\x22\xe4\x9c\x66\xa5\xa2\x80\x5b\x47\x41\x5b\x8a\xb6\xff\x31\x31\xbf\x6b\xf0\x4e\x9e\x1d\x1a\x20\x0e\x4d\x1f\x32\xc3\x51\x61\xfc\x8b\x12\x2c\x25\x9d\x2e\x02\xfc\x0c\x1f\x50\x0a\x59\x4a\x65\x6d\x39\xa8\xc3\xd5\xc4\x68\xcc\xf8\x76\x93\x40\xbe\x7d\xf2\xdc\x43\xf9\xf8\xd1\x38\x04\x2a\xd3\xf7\x49\x1d\x2c\xc5\xdd\xd4\x16\x34\xa5\x15\x70\xd5\x64\xca\x6f\x96\xf0\xbd\x14\xe3\xa6\xdd\x8c\x50\x08\x93\x76\xd8\x56\x91\xf1\xb8\x16\x21\xe6\x8b\x2a\x65\x0c\xc2\xe6\x6b\xc5\xc9\x99\x3f\x35\x71\x7a\x4c\x0c\x80\x0e\x28\x3e\x3e\x40\x72\x2b\x2c\xa9\x2e\x74\x71\x46\x12\xb2\x93\xc0\xe2\x0d\x88\xa4\xea\xb5\x0f\xc8\x63\x29\x69\x14\x58\xfa\xab\x8d\x0b\x1b\xc4\x3b\xb7\x20\xd2\x34\x0f\xfd\x27\x33\x50\x1b\xf2\xdc\xb4\x8b\x60\xff\x82\x55\xee\xaa\xbb\x34\x41\xdb\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\xfb\x48\x6a\x6f\x1c\x19\x5c\x1b\xd7\x27\xd2\x25\x8a\x61\xe5\x01\xd8\x88\x03\xd5\xf9\x74\x37\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe2\xde\xd7\xf1\x7f\x4f\x34\xb1\xb3\xbc\x86\x1d\xad\x7e\xf3\x21\x5f\xef\xd4\xde\x11\x25\xdd\x95\x50\x43\x0b\xb4\x9b\xb3\x87\x5b\xb0\x1f\xc7\xd2\x08\xae\x5f\xbc\xdc\xb2\x35\x16\x80\x1d\x99\xcd\x88\xff\x0d\x09\x54\x66\x8e\xb1\xfd\xc2\x67\xbf\x97\x70\x9f\x70\x09\x2b\xcf\xac\xd1\xdb\x73\xbd\x2a\x69\x7f\xe9\xa2\xd7\xfa\x34\x5e\x1d\x55\x41\xdd\xbd\x3c\xb8\x9e\x3c\xe8\xb0\x24\xf7\xf0\xf2\x6f\x3b\x06\xfb\x79\xff\xec\x81\x70\x58\xbb\x12\x77\x27\x22\xbe\x23\x32\xd9\x0b\x49\xb1\xb6\x15\xaf\x25\x2f\x1e\x3a\x30\x9f\x02\x1a\x67\x7f\xb7\x68\x3f\x4e\xf2\xad\x75\x03\xbd\xdc\x05\xbb\x9a\x5e\x76\x42\x1f\x80\x6b\x89\x21\xfd\x37\xb7\x85\x32\xe0\xf0\x06\x21\x63\x35\xdf\xc3\x8a\x60\x3c\x3b\xbc\x4e\x61\x78\xb5\xe5\x7c\x89\xed\xb5\xb9\x5e\x9d\x37\xf7\x25\x49\x6d\xdd\xb1\xec\x42\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x3e\x26\xb6\xdb\x2d\xda\x80\x20\xe3\xb6\x6c\x97\x87\xac\xa9\xba\xd9\xf6\xd9\xea\x2e\x95\x6d\x9c\x09\x32\xa5\x9f\x37\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\xd4\x4b\x03\xf7\x0c\xd4\x57\x0b\xe2\xf6\xec\x4a\xdb\x9a\x4a\x23\x56\x24\x00\xda\xec\xbf\x47\xb2\x40\x5c\x94\x7e\xda\x14\xeb\x70\xf7\xb5\xdd\xcc\xbe\xce\x95\xca\xe4\xc9\xf1\xf1\x8c\xaa\x79\x3e\x39\x8a\x78\x6a\xc2\xcd\xb9\x98\x99\x3f\x8e\xa9\x94\x39\x91\xc7\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\xd0\x63\xea\x7e\xa7\xf2\x96\x13\x2c\xb7\x8b\xec\x71\x99\x5a\x2f\x9c\xb1\x1b\x74\xe3\x72\x24\xf5\x37\x52\xe1\x34\x0b\xa3\x47\x4d\x75\x34\xa9\x70\x51\x93\x01\xd2\xef\xf4\x34\xd1\x1c\x67\x19\x61\xed\x66\x07\x93\x4f\xb9\x05\xeb\x71\x19\x99\x76\x84\xe4\x73\x96\x60\x56\x46\x19\x80\x02\x43\x82\x44\x84\x29\x9b\x01\x5f\xd4\x4b\x06\x6a\x34\x48\x37\x86\xff\xaf\x97\x71\x07\x73\xa4\xb2\xa8\x1c\xe6\x86\x63\xab\x78\xba\xda\x8e\x38\x58\xba\x6a\xe5\xd4\x62\xed\x88\x5b\xb5\x65\xb9\x78\x77\xf5\xfa\xd9\xeb\x57\x6e\x11\x9c\x8d\xc9\x67\xcd\xe4\xe4\xa6\xb8\x54\x0f\x92\x48\x34\xf8\xe9\x0e\xc9\x05\x53\xf8\xf3\x09\xba\xa4\x0c\x04\xd8\xef\x79\x2e\x24\x3a\xc3\x8b\x43\x3e\x3d\x4c\x39\x53\x73\x74\x09\xff\x6b\x7f\x7a\x26\xe4\x11\xfd\x4c\xb0\xb0\xfc\xc1\x56\x5e\xf3\x45\xbc\x35\x09\x89\x9c\x49\x44\x9e\xf4\x09\xfd\xc3\x7f\xa2\xd4\xb4\x7c\x82\xbe\x3d\xfe\xc3\x7f\xa2\xdf\xc1\xff\xff\xff\xd1\xef\x5a\x34\xfd\xf5\x90\xad\xa0\x3e\xef\x6d\xd9\x9d\x7b\x50\x59\xa9\x0d\x4a\x96\x9f\x0a\x5e\xec\x54\x63\xcb\x8f\x34\x7a\xe4\xd3\xe9\x58\x13\x86\xc9\x57\x1b\x63\x51\x43\x45\xde\x10\x26\x94\xda\x02\xcb\xa6\x60\x5b\x51\x2a\xc5\x76\x6a\x80\x0d\x1c\xbb\x96\x79\x51\x60\x16\x82\x88\x4a\x45\x7b\xa9\x84\xaf\x48\xac\xb9\xea\x3a\xa7\xc3\x59\xf7\x5c\x8e\xb3\xb3\xe0\x84\x40\x20\x61\xd1\x70\x1f\xf8\x17\x46\xb1\x9a\x40\x1f\xbb\x90\x8d\xc7\xa1\x16\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\xd6\x3a\x5f\x1d\x2a\x79\xc7\xc5\x56\xfa\xd6\x23\xa9\xc5\x6c\x77\x2c\x0b\xe4\x4a\xd5\x86\xe5\xeb\x21\x11\x9a\x0b\x0f\xd7\x6b\xec\x22\xb6\x78\xe0\x6a\x2b\x26\x15\x26\xb8\xac\xdb\xa1\xd7\x53\x3f\xf3\x9f\xac\x1a\x26\x44\x9a\xb9\xb7\x8b\xb2\x68\x30\x5a\x2d\x22\x69\x96\xd8\x30\xe2\x06\x4c\xbf\x55\x1b\x7a\xe7\x61\x1c\xa0\x71\x08\x7b\x84\x94\x0f\xe6\x24\x5b\x9b\x27\xdf\xbc\x9f\xb9\x88\xc8\x29\xdf\x2e\xec\x35\xa1\xac\x16\x2f\xdf\xbd\xe2\x8e\x5f\xbd\x0b\x5b\x5b\xc9\xc1\xde\xf2\xb8\x50\x16\x8c\x5b\xc0\x16\x5b\x08\xf0\x36\xcb\xb3\x01\xdc\xb6\x5d\x40\x3a\xd6\x4a\x00\x6c\xc1\xb5\x8d\xe1\xb8\x60\x78\xae\x82\x44\xa5\x70\x84\xc0\x9a\x17\x2e\x89\x5d\x83\xa0\xa2\xad\xc7\x11\x14\x43\x29\x22\x95\x2a\x45\xc7\xb1\xa9\x08\x22\x36\x84\xe4\x34\x75\x89\x0e\x90\xc0\x10\x94\xa9\xe6\xba\x3d\x49\xc4\xe1\x14\x47\x94\xcd\x0e\x02\x34\x46\x40\x46\x08\xaf\x83\x26\x22\xbd\xc7\xf2\x71\xb7\x81\x86\x5b\xd7\x69\xa4\x71\x51\x2b\xcc\xe2\xa7\x18\xc7\x06\xad\x41\xd1\x29\x2c\x1f\xdb\x00\x84\x6a\xe8\x65\x4b\x46\xe7\x97\xc2\x61\x9e\x2d\x1b\x9f\xcb\xb4\x26\xa1\x3e\x05\xa5\x09\x5c\xe5\x60\x8b\x65\xe8\x12\xdb\xb0\x07\x1b\xa9\x82\x78\x2e\x19\xbf\x9c\x73\xa1\xc6\x1b\xc2\x9f\x56\xb3\xc5\x19\x39\x4c\x00\xb7\x84\x3f\x11\xf1\x44\xc9\x73\x19\x45\x74\x1d\x5a\x34\x46\xb3\x20\xaa\x0e\x60\x26\xd3\x8c\x43\x0a\xcd\x14\xa5\x98\x2d\x0c\xa3\xd4\xcc\x05\xcb\x47\xe9\xeb\x95\x22\x99\xe2\x24\x39\x40\x82\xe4\xd2\xd4\xf1\x95\x24\x99\x1e\xba\x8a\x0f\x31\x4a\xf8\x8c\x46\x38\x41\x93\x84\x47\x8f\x72\xc4\xb4\xa0\xc0\x66\x86\x49\x65\x82\x47\x44\xca\x40\xb2\x2a\x92\xb6\x6d\x2a\x1d\x14\x2b\x55\x44\xa4\x94\x51\xa9\x68\xe4\x44\xa6\x02\x7b\xc1\x94\xcc\x8e\x30\x98\x84\x21\x31\x11\x86\xab\x25\x3d\x62\x30\x28\x73\x66\x6b\x03\xc1\x75\x6d\xa1\xe5\x5c\x90\x78\xdb\x01\xda\x01\x52\x9e\xa3\x90\xb1\x2a\x1f\xc8\x15\x47\xea\xd4\x7e\x06\xc7\x78\x19\x09\xdc\x96\x4f\x94\x27\x48\x7f\xd2\x4a\xe8\x3d\x10\x53\xee\x43\xe0\x4b\x92\x8b\x8f\x0c\xdf\x33\xe0\x2e\x18\x72\x0b\x5c\xd7\x2a\x9a\xd6\xab\x08\x22\x0f\x94\xa3\xaa\x7a\xcd\x29\x8b\x92\x3c\xf6\x05\x09\xb5\x08\xf0\xa4\x89\xc4\x2d\x8f\x5e\x7b\x2d\x28\x1c\x20\x2c\xd1\x33\x49\x12\xfd\x5f\x13\x01\x7f\xe8\xeb\x03\x68\x96\x6c\x6a\x38\x40\x27\x8e\x4b\xb7\x51\xd4\xde\x81\x30\xde\x60\x35\x37\xa9\xed\x29\x57\xa6\x16\xa4\x01\x61\x74\xf6\x2d\x83\xda\x37\x49\xf8\x04\x4e\x3a\xe0\x33\xba\xd4\xd8\x20\xad\x2e\x8f\x22\x42\x62\x12\xa3\xaf\x83\x83\xeb\x61\x17\xbe\x69\x46\x0b\x2c\xad\xc8\x1e\x60\x33\x56\x0d\x6b\xad\x08\x8d\xe5\x72\x66\x47\xe8\xa6\x82\x3f\x12\x96\x29\xc7\x55\x34\xaa\x83\xda\x16\xbe\x0d\x9e\x63\x65\x12\x2f\xb7\x43\x6b\xe2\x39\x96\xfa\xdc\x01\x9e\x63\x65\x9e\x2d\xb1\xfb\x7c\xf6\xa2\x39\xc7\x7a\x52\x17\xbc\x7b\x22\x98\xc1\xc1\x32\x77\x67\x89\x04\xdd\x81\x5c\x34\x11\xe2\x7e\x61\x55\x56\x8a\xfe\xbd\x2d\x56\x65\x65\x30\xfb\x8c\x55\x59\x19\xea\xfe\x62\x55\x36\x0c\xb4\x03\x56\xa5\x71\xee\x8f\x35\x51\x77\x63\x0a\x90\xd8\x32\xc9\xa7\x77\x90\xea\xbd\x74\x8c\xa7\x26\x70\xc0\x5c\x63\xee\x8e\xb6\xd0\xcd\x30\x5a\x9b\x03\xd9\x16\x0e\x55\x71\x42\xac\x4b\x7b\xde\xfb\x46\xa5\xd1\xd0\xd6\x33\xbb\x1f\x84\xd6\x6e\xb0\x43\x46\x38\xb3\x39\xe5\x6d\x15\x55\xf6\x27\x7b\x76\x33\x18\x50\x80\xda\x2b\xb1\xfc\x4e\x40\x59\x97\x95\xe2\x04\x73\xfe\x6c\x0b\x04\x01\x19\x1a\xa2\x6c\x25\x41\xe8\x74\x6c\x95\xb6\xb6\x95\xa3\x4c\x91\x59\x55\xa7\x2d\x0e\x0d\x65\xea\x4f\x7f\x5c\xc9\x89\x0c\x92\xa0\x53\x0f\x83\x12\x01\xde\xd9\x61\x9f\x91\x18\x45\x73\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x14\x53\xa7\x48\xe5\xd2\xb8\x96\xa8\x1c\xb1\x12\xf4\xe6\x11\xfa\x08\x75\x4f\x71\x9a\x69\xfd\xcb\xcf\x8f\x6a\x4a\x1a\xe5\xdf\x7e\xfb\x27\x82\xbe\x45\x29\xc1\xac\xa4\xc3\x82\xda\xa4\xaf\x3e\x80\xaa\x53\x73\x32\x62\x8d\x5b\x81\x86\x9f\x4d\x29\x25\x17\xef\x77\xce\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd9\x29\x7c\xd9\x18\x00\xeb\x6e\xec\x7a\x1b\x0f\xe0\x1e\x39\x94\xa4\x04\x61\xd4\xe0\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\x1e\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x0e\x80\x12\xf2\x68\x6e\x1c\xab\x5a\x67\xc1\xb6\x2e\xc3\x13\x95\xb9\x56\x68\xa1\x2d\x57\x06\x42\x2a\x6c\xa0\x97\xe6\x14\xfa\xd1\xea\x37\x81\xaf\xc2\x2c\x39\xd4\x4d\x8b\x0a\xd1\x51\x2b\x3c\xbf\x23\x3a\x6a\x89\xaa\x7a\x74\x54\x8f\x8e\x5a\x5f\x97\x7d\x44\x47\xad\xec\x79\x37\x74\xd4\xa6\x2d\xdf\x00\x1d\xb5\xd4\xcc\x17\x83\x8e\x5a\x59\xd1\x2f\x06\x1d\xb5\x32\xaf\x1e\x1d\xf5\xcb\x43\x47\xdd\x12\xff\xb3\x99\x17\x1b\x7c\x25\x45\xd9\x62\x6d\x22\xfb\x4a\xa2\xf3\x6b\x4d\x60\xd1\x63\x39\xa8\xcd\x5f\x57\xdb\x63\x8e\x36\x33\xa1\xf5\x30\x47\x1b\x55\xf5\x76\x56\xb7\x2d\xc0\x13\x28\x06\xaf\x8c\x39\x5a\x9a\x40\x1f\x5f\xb9\x7e\x7c\x65\x23\xf1\xd9\xbe\xf5\xf0\x5c\xd0\x65\xf5\x42\xee\x88\x3a\x5a\xda\x9f\x4e\x91\x98\x20\xba\xef\x80\x12\x5f\x56\x9a\xbf\x2f\x1d\xf2\x95\xb2\x7c\xb8\x8a\xd2\xe2\x1f\x6b\x09\xcf\xa1\xc5\x19\x25\x3c\xf4\xff\xf7\x94\xbb\x41\x64\x70\x65\x79\xbd\x5f\xc5\xd0\x62\x07\x52\xed\x4c\xa1\x4e\x2b\xdd\x4d\xa2\xac\x4b\x9e\x5c\xd3\xc5\xec\x06\x71\x97\x91\xa8\xc5\xc6\x4c\x53\xba\xab\x66\x57\x5d\x64\x1e\x0b\x0b\x14\xf2\x5a\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x5a\x63\x9b\x6a\x23\xdc\xc6\x55\x9a\xe5\x9d\x03\x62\x82\x55\x9d\x6d\xf6\x59\x4a\x52\x2e\x56\x05\x56\x35\x7e\x69\x2b\xba\x6c\xf2\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xdd\x46\xba\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xce\xdb\xbd\xed\x36\x5b\xcc\xcc\x35\x1d\x42\x0e\x33\x78\xb9\xc1\xcd\xbe\x54\x72\x77\x03\x7d\x37\xc6\x74\xf8\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x4e\x15\x5f\xd9\x7a\xc7\x6b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\xeb\x07\x78\xb4\xa0\xa6\xd6\x97\x07\x22\x73\x24\x11\x87\xa1\x66\x50\x1a\x4c\x7d\xbd\x4a\x54\xe2\x34\xca\x2d\x88\x24\x17\xad\x51\xa6\x5d\x0c\xda\x91\xca\x71\x02\x9a\x44\x58\xa4\xb1\xba\xa9\x93\x45\x43\xda\x63\x37\x8f\x09\x65\xea\xcf\xff\xb1\xd6\x6e\x6a\xd5\xca\xae\x1b\x14\x96\xc2\x51\x44\xa4\xb1\xb1\xdb\x28\x64\x3c\xe1\x4f\x50\x53\x6a\x9b\x5d\xd5\x47\x59\xcf\x5b\x33\x78\x0f\x45\x1c\x17\xa4\x6e\xc4\x85\xb9\xe0\xf9\x6c\xee\x6c\x48\xfa\xcc\xe8\xa9\x35\xed\xe5\x8f\x35\x1b\xf9\xda\x7b\xf9\x5d\x4e\x93\xcd\x2c\x74\x77\xa5\x6a\x5b\x9f\xce\xef\x91\x9c\xfb\xd3\x3a\x81\x66\x1b\x37\xb6\x3e\xe8\xee\x7d\xda\x6f\xbd\xbf\x06\xba\x39\x70\xf0\x9b\x53\x9e\x24\xe0\x69\x90\x24\x7d\x0a\x8b\xe4\x87\xdd\xc3\x84\xef\xe9\x7a\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x49\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x4d\x36\xb6\x9f\xea\x85\x4e\xde\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x5b\x92\x57\x0e\x1c\x5c\x31\x8f\x7d\x0d\x1e\xac\x30\x3b\x1f\xcb\x57\x5c\x33\x2e\x70\xc8\x28\x3e\x03\xbd\xc4\x23\x36\x28\xe5\x53\xb8\x82\xd0\x93\x45\x11\x90\x6d\x74\x88\x90\x99\x41\x39\x09\x6b\x58\x01\x37\x9a\xfe\x0b\x34\x1d\x03\x5e\x6b\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x10\x47\x8b\x28\xa1\x51\xa0\x33\xcf\x04\xce\xe6\x4d\x1c\xcf\xed\x7c\x8f\xba\xf3\x56\xa8\x3b\x6d\x75\x97\xd6\x89\xdb\x76\x74\xc5\x70\x4a\x7a\x34\xa0\x26\x34\xa0\x03\x8f\x77\xc1\x8a\x0a\x52\x6f\x08\xa3\x50\x3f\x77\x3d\x24\xd0\x1b\x40\x02\x6d\x72\xf8\x0a\xbc\x9f\xd2\xb1\xeb\x61\x8a\x3e\x74\x82\x29\xf2\x97\xe0\x5e\x21\xcf\xb4\x9f\xc7\x37\x46\x34\xa9\x0f\xec\x2d\x61\x89\x1a\xc4\x85\x75\xe4\xa6\x65\xb8\x44\xcb\xe8\xa2\xd3\xba\xbc\x2d\x4a\xd0\x7a\x2b\xb3\x16\x00\x50\xe3\xdd\xb5\x27\x70\x40\xed\xdb\xb0\x27\xe7\x66\x97\x59\x2d\xeb\x95\xc8\x0c\x33\x5b\xd6\x51\xb0\xd6\x4b\x72\xf1\xf4\xf0\xbe\x12\x5d\x8a\x5a\x62\x9b\x25\xbb\x0c\x9c\x0f\x9a\x08\x34\xe7\x49\xec\x40\x28\xfc\x6a\xf9\x0e\x7c\x26\x80\x5f\x20\xb7\x19\x50\xd3\x1b\xb4\xad\xa2\x20\xd8\xb2\x94\x16\xbf\x89\x30\xdc\x1d\x30\x9a\x5d\x58\x11\x3c\x27\xd9\xc4\x7e\xb0\x52\x16\x91\x65\xf3\xf7\x92\x31\x96\x56\x08\xac\xe6\xcd\xc3\x5c\x69\xf7\x5d\x31\xb8\x65\xa2\x47\x60\x1c\x14\x4d\x15\x2d\x0d\x9d\xc1\xd3\x27\xea\x0c\x11\x38\xec\x71\xa9\x97\xce\xcd\xae\x93\xa7\xae\x4a\x2c\x1b\x04\x83\xd5\x2a\xb7\x6d\x0f\x0e\x94\xe2\xcf\xe3\x0c\x0b\x9c\x24\x24\xa1\x32\x7d\xb1\x60\xe0\xd3\xb2\xbb\x56\x9f\x55\xc1\x8d\x89\x88\xe5\xe9\xc4\x90\xa2\x1b\x88\xad\x17\xa9\x38\x12\x39\x0b\xa1\xcd\x9e\x6b\x45\xf5\x73\xb8\x17\xc0\xaa\x14\xcd\xa1\x38\xe9\x14\x53\xc1\x88\x6c\x2d\x05\x49\xa2\x5c\x50\xb5\x18\xdb\xca\x9a\xdd\x0f\xdc\x9d\xfd\xf2\xd4\x7e\xb8\xdc\xc3\xed\xb2\xfa\x5d\x7f\xbe\x92\x67\x46\x04\x94\x09\x72\x05\x6f\x82\xea\xa1\x16\xb5\x81\xf8\x5a\x43\x10\xfe\x5c\xbb\xb6\xdb\x02\x87\xf1\xf3\x38\xc8\xa8\x1a\x47\x55\xe2\x58\x75\x58\x9b\x70\xa7\x96\x4d\xf2\x85\x91\x97\x5a\xbc\xc8\x2f\x50\x65\xc4\xa6\x4d\x98\xa6\xf5\x80\x03\x57\x30\xd8\x2b\x8b\x8d\x09\x52\xde\xad\x52\xd5\x32\x4e\x8b\xf5\xd3\x14\x7c\xb4\x64\xb0\x83\xe0\xab\x0e\x23\x0e\x3a\xd9\xd1\xb0\xf5\x41\x17\x22\xcf\x14\x9d\xd4\xa1\x6d\xd4\xee\xaa\x8e\x0e\x12\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x34\x62\x03\x89\x9e\x09\x62\xc4\x42\x48\x34\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x03\xdd\x30\x54\x2d\x55\x1c\x82\x3f\x31\x7a\x16\x38\xcb\x88\x18\x31\x9b\xc5\x01\x0e\x17\xce\x13\xd3\x7e\x5b\x88\xab\x5d\x03\x32\x8e\x70\x34\x7f\xa5\x3d\xc2\x90\x8c\x13\xcd\x49\xec\xf2\x85\xcb\xdb\xe3\xe6\x6d\x0c\xd6\x6b\x6c\xd6\xf9\xd4\x95\xcf\x3a\xb0\x9d\x24\x91\xe6\x28\xbe\x9a\x72\x46\x84\x1e\xb5\xa6\xe1\x27\xc2\x10\x9d\xba\x71\xd8\xd8\x1d\xf4\x0c\x9e\x29\x4d\xfa\x4f\x98\x26\x26\x01\xdf\x75\xed\x84\x40\x63\x7e\x1f\x31\xe3\xee\x66\x51\x29\x43\x95\x32\x2a\xe7\x9a\x53\xe7\xe0\x93\x04\x35\xa3\x2d\x71\x86\x3d\xad\x73\x9a\x87\xfa\xf5\xe5\x1c\xf4\x89\x0a\xce\x52\x48\x92\xb1\xb8\x4c\x6e\xf9\x24\x51\xfe\x78\x34\xa6\x38\xae\x94\x88\xe3\x58\x96\x8d\x9f\x46\xad\xa4\xbf\x96\xcc\x2e\x87\xa5\xac\xc0\x28\x80\x15\x82\x20\x4e\x57\x59\x6c\x99\xfc\xdb\xa7\x36\xd4\x53\x1b\x9a\xd7\x66\x1f\xd3\x1b\xfc\x21\x5e\x37\xc5\xa1\x6d\xfb\x77\x21\xd9\xee\x30\xd5\xe1\x8d\x73\x02\x5e\x26\x1d\xe0\x6d\xf3\x37\x5e\x22\x75\xa3\x4f\x70\x78\xc3\x04\x87\xce\x96\xda\x72\x6c\x76\xfb\xb1\x5d\x2b\x39\x60\x05\x98\x53\x53\x2f\x97\x44\x09\x1a\xc9\x5d\xf0\x07\x99\xe1\x8e\x51\x6d\xa0\x05\x66\x2b\xa4\x26\xfd\x82\x77\x42\x42\x9c\x98\xaf\xf3\x37\x11\x04\x3f\xc6\xfc\xb9\x66\xab\x93\x21\x9a\xc6\x25\xd7\x62\x8f\x20\x11\x95\xa4\x14\xc9\x42\x25\x62\x44\x5a\x63\x27\x1e\xb1\x39\x25\x02\x8b\x68\x0e\xd9\x8d\xc5\xc6\x98\x2c\x59\x03\x68\x64\x62\x19\x42\x6f\xd3\x1a\x9b\xde\x61\xdd\xab\x16\x26\x8f\x4f\x67\xf7\x5c\x8f\x24\x35\x9f\x78\x61\xc6\x4a\x19\xa1\x49\xae\xd3\xf6\x6f\x1b\x88\xef\x17\xfb\x45\x83\xf1\x7d\x30\x51\xf0\x45\xc7\x80\xfc\x82\x1a\xfa\xa0\xfc\x17\x0a\xca\x6f\x58\xe2\xf5\x02\xf3\x37\x32\xf9\xbd\x7e\xcc\xb0\xeb\xf9\x35\xe2\x86\x57\x05\x6d\xe5\x93\xf1\x8b\x1f\xbd\xc6\x39\x77\x3d\x81\x3f\x79\xa2\x30\x12\xb1\xd0\x74\x36\x21\x71\x0c\x9c\x56\x71\x5b\x29\xba\xa0\x1d\x67\x1e\xd0\x77\x2f\x96\x9a\xd8\x71\xc2\xd9\x4c\xd2\xd8\x80\xad\x64\x18\x2a\xb6\x86\xc6\x0b\x00\x17\x80\xfd\x4d\x12\x22\x9c\x57\x42\xa0\xaf\x25\x65\x16\x4d\xd1\xff\x16\x73\x22\xd9\x57\xca\x18\x0b\x30\x5b\xa0\x47\xc6\x9f\x13\x12\xcf\x60\x87\xaa\x83\x39\x44\x94\x1c\x20\xaa\xfc\x67\x02\xd0\x08\x78\xae\x46\x7a\xec\x10\x6b\x66\x34\x00\x62\xbf\x0d\x6a\xa2\xfb\x66\xbe\x39\x42\xe8\x9c\xa1\x29\x8e\xd4\x01\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\xf4\x31\xe3\x0d\x9d\x37\x9f\x0d\xc7\x1d\x34\xb9\x0e\x12\x8a\xb7\x8a\xad\x7b\xc2\xdb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xab\xad\xb3\x32\x95\x75\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x9d\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xa6\x4d\xcb\xf4\x8d\x47\x4e\x39\x33\x0e\xc2\xad\xe4\x4e\x3a\x63\x38\x59\xd3\xc6\x51\x5b\xb9\xba\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xca\x7c\x43\x79\x0f\xa3\x98\x64\x84\xc5\x84\x45\x0b\x20\x11\x06\xc8\x39\x82\xe1\x04\x61\xf8\x0e\x27\x47\xe8\xcc\xe4\xd7\x78\x09\xcf\x5e\xeb\x70\xa1\xa7\x98\xd1\xa9\xd6\x13\xc0\x08\x6b\x47\x39\x62\x66\x98\xce\x07\x12\x14\xed\xf7\x2b\xd6\xb4\x33\xfa\x06\xb9\xda\x12\x95\x98\x95\xbf\x47\xcb\x2f\x1c\xe8\x6d\xd9\xee\xe8\xe6\x5c\x0d\x02\x99\x4f\x0e\xe1\xdf\xa5\x84\x33\x07\xd4\x53\xa0\xc8\x90\x84\x80\x39\xd0\x7a\xbc\xe0\x62\x6c\x03\x96\xdb\x85\xdf\x6e\x45\x1e\x47\xd0\x47\x49\xa9\x49\x29\xa3\x69\x9e\x06\xce\x3b\x53\xb1\x20\xb2\xf6\x4b\x93\x89\x91\x69\x3d\x20\x72\xe0\xe5\x48\x5f\xae\x6c\x81\x66\xf4\x89\xb0\x11\xcb\x38\x65\xea\x08\x5d\x71\x45\x82\x12\x11\x06\x3a\x8a\x67\x8a\xa6\x06\xed\x54\x10\x7d\x0e\x0c\x28\x36\x00\x4d\xce\xb1\x3a\x40\x71\x0e\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xec\x0c\xc4\x47\x8b\x11\x33\x37\xdd\x14\xd3\x24\x17\xc4\xca\xac\xd8\xe4\xc5\x14\x43\x2e\x46\x66\x91\xd0\x82\x49\xa4\x74\x36\x57\x7a\x8b\xb4\x8c\x67\xfd\x8d\x73\xcd\x8d\xf8\x88\x4d\x08\xc2\x28\xe3\x92\x2a\xfa\xe4\xfd\x97\x74\x8a\xb0\x94\x60\x41\x39\x42\x67\x25\xfb\x3f\x95\xa0\x7a\xb7\xc5\xd5\x52\x36\xb6\xb6\xe7\xf6\x7c\x9c\xad\x37\xb2\xd4\x8b\x5d\x65\x3c\x91\x3c\xc9\x55\xe8\x82\x6d\xde\xdb\xc2\x34\xee\x80\xfb\xc1\x40\xcc\xa7\x23\xe6\xe8\x5a\x1e\xa1\x81\x44\x92\xeb\x5d\x92\x66\x2b\x23\x41\x15\x11\xd4\xa0\x38\x11\x65\x36\xc1\x9f\x53\x7f\x06\x52\x2c\x1e\xb5\x08\x15\x5a\xe0\x0d\xa6\x68\xc9\xda\x31\x31\x12\x12\xc0\x5a\x85\xdb\x01\xa6\x7f\xc4\x38\x3b\x64\x64\x86\x57\xed\xc8\x88\x95\xb6\x04\x7d\x4d\xa7\x85\x42\xda\xe6\x73\x0c\xd6\x6e\x0c\x91\x4f\x6d\xbb\x64\x3a\x6e\xdb\xa4\x69\xc2\xf1\x0a\xb7\xf1\xb4\x38\xf4\xe8\xef\x7c\x62\xc6\xa8\xf5\x7e\xae\x40\x0a\xd4\xea\xd5\x94\x0b\x32\xc7\x2c\x3e\x70\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\xac\x75\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x61\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x1b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x0d\x04\xbf\x24\x5f\x2b\xb9\x2a\x70\xfb\x2d\xda\x6a\x9a\x28\xbc\xaa\xcc\xc8\x1a\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x34\x62\xe7\xea\x2b\xa9\x45\x74\xce\x66\xfa\xa2\x89\x9f\xa8\x2c\x8a\x9c\x44\x9c\xc9\x3c\x25\xc2\x76\xa1\x6f\x64\x4d\x91\xb6\x40\x00\x76\x32\x94\x1e\x9b\xde\xfb\x27\x9c\xd0\xd8\x15\xe2\xd1\x3f\x9a\x33\xa7\x47\x29\x9d\x47\xb1\x21\x24\xcc\x6e\x6e\xac\xd7\xea\xcd\xc4\xfa\x1f\x43\xc9\x1d\xa5\x85\x90\x8f\xad\xad\xfe\xb8\x2a\xe2\xdb\x55\x5f\x22\xde\x4f\x6a\x93\x42\xcb\x05\x23\xbb\x0a\x67\xab\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x16\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbe\xb5\x67\x5b\x96\x89\x90\x11\x4e\xea\x3b\xbc\xc4\xde\x6c\xde\x5f\xae\x04\xd8\xe3\x66\xda\x5e\x9a\xf4\x1b\xf1\x24\x59\xa7\x84\x49\x65\xe6\xa7\xc5\xe7\xcb\x47\x54\xf4\xa3\x37\xc0\xed\x05\x9c\x1a\x73\x79\xe3\xc4\x9a\x52\xa4\xb2\xbb\x14\xbe\x64\xd4\xb0\x85\x65\xad\x23\xc6\xa7\x50\xe4\x26\x69\x8b\xea\xca\x04\x4f\xe9\x3a\x28\xcb\x26\xd0\xe9\xd6\xd9\xc5\x57\x58\x19\x9c\xf5\x1c\x44\x53\x43\x5e\xb6\x47\xc8\xd7\xc3\x56\xdc\x5c\x72\x86\x52\x9c\x6d\xb4\xe0\xab\xbc\x42\x03\x94\x1a\x97\x9c\x5d\x3d\xc0\x5b\x24\x50\x2f\x06\x16\xf9\x19\x2f\x8a\xd4\xe8\x36\xfc\x5c\xb6\x16\x39\x3c\xe8\xd7\xcf\xd9\x94\xaf\x71\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x5d\xce\xe3\x69\x13\x51\xaf\x7d\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x9d\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf9\x52\x5d\x96\xe8\x70\xe7\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\x69\x6e\xf5\x15\xd6\xcc\x1e\x92\x4e\x8b\xb5\x25\x76\xc3\x7a\x38\xc0\xae\x47\x8f\xfa\xdb\x7c\x42\x57\x16\x39\xe8\xbe\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x9f\x37\x18\x38\x5d\x82\x98\x0f\xa8\x32\xa1\xf2\x4e\x7a\xca\x05\x0d\x0a\x83\x3a\x19\x09\x51\x28\x50\x12\x3a\x79\x02\x85\x1e\x4c\x8b\x73\xfe\x6c\xa2\xd3\x05\xd5\x3c\xcb\x08\xab\x0a\xcc\x3d\x9a\x17\x50\x6b\x2d\x31\xc6\x26\xff\x01\x37\x31\x83\xd8\xd6\x3e\x2e\x46\xd5\xb2\xa5\xbb\x28\xf1\xd4\x3d\xff\xce\xf5\x7a\xaf\xbf\xa8\xef\x4d\xe3\x08\xef\xcb\xad\xaf\x3d\x3a\x2f\xe5\xaf\x1f\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\x67\x3f\x1c\x3f\x9c\x23\xa2\x22\x94\xd0\x47\x32\x62\x91\x7c\x3a\xd0\xe2\xf1\x3f\x72\xa2\xf4\xcf\x2d\x1e\x01\x9a\x12\x26\x81\x13\x50\x55\xc3\x1e\x6a\x5e\x48\xb7\x30\xfa\xbf\x67\xe5\xef\x97\x90\x7c\x2d\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x03\xc5\x18\x5b\xe4\xb0\xa9\x1a\xe6\x06\xe9\x42\xec\xef\x39\x5b\x53\xe8\x3a\x2d\x3e\x0a\x46\xd1\x22\xd3\xa5\x19\x06\xac\xeb\xf5\xf2\x90\xcc\x37\x8d\xad\xaf\x62\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x34\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\x9a\xb8\x84\xc0\x2c\x9a\x6f\x6b\x42\xa6\xd3\x31\x49\xd6\x91\x44\xcf\xa7\xc3\x44\x6a\xfa\x8e\x1e\x5b\x4e\xe7\x26\x35\x1b\x8b\xc9\xd8\x4a\xb4\xa6\xee\x13\x2a\x4c\xd0\x38\x31\x15\xe5\x08\x02\x1f\x65\x35\x7b\xcc\x00\x44\xe8\x5d\xb4\x92\xba\x71\x51\x9a\xb4\x0d\x1f\x92\x0d\xbd\x20\xac\x46\x4c\xe4\x0c\x8a\x4d\xf8\x88\x05\x8c\x0a\xbc\xf0\xc8\xf9\x0f\xac\x37\x67\xa6\xd9\x84\x81\xe3\x36\x2f\x6b\xfd\x8c\xe7\x12\x6c\x35\x29\x51\xfa\x82\xfa\x1a\xea\xc0\x9a\x90\xa1\x03\x94\x09\x9a\x82\xb9\x55\x7e\xd3\xb0\x75\xa7\x58\xe1\x84\xcf\x06\x42\xd1\x29\x8e\xd4\x3d\xde\x4a\x03\xc7\xb6\x99\x4d\xc3\x4f\xdd\x30\xd0\xf9\x99\x5e\xfc\x19\x61\x44\xc0\x44\xb5\x4e\xde\x7c\x84\xe1\xc9\x46\x9c\x1b\xac\x6c\xd6\x30\x2a\xbd\xc5\x02\xe7\x8a\xa7\x5a\xbf\xc5\x49\xb2\x38\x30\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x97\xbb\xc9\x2e\xee\x29\x8e\xe6\xe4\x0e\xaa\x22\x37\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\x27\xe8\x7f\x8a\x39\x9e\x0e\x4e\xbf\x1f\x8e\xcf\xce\xef\x06\xdf\x5d\x0c\xcf\x82\xf9\xd8\x27\x97\xe7\x77\x77\xf5\x5f\xbf\x3f\xbf\xaf\xff\x78\x73\x7d\xf3\x70\x31\xb8\x6f\x6a\xe5\xe2\xfa\xfa\x87\x87\x9b\xf1\xc7\xc1\xf9\xc5\xc3\xed\xb0\xe1\xd3\x87\xfb\xf6\x87\x77\x3f\x9c\xdf\xdc\x0c\xcf\xdc\xaa\xfc\x2d\x38\x5d\x60\x3d\x86\xd4\x8b\xe6\x69\x54\x0f\xe0\x21\x2a\xbf\x78\x82\x1e\xaa\xa5\x0f\x6c\x2c\xb2\xc1\xb1\x78\xc6\x52\xf3\x30\x08\x85\x1f\x31\xe4\x3e\xd7\x8b\xd2\xf6\xa9\x09\xd7\x89\xe6\x04\x25\x9c\x3f\xe6\x99\x65\x6d\x26\x3e\x8c\x71\x63\xf8\x21\x32\x68\xed\xfb\xf3\xfb\x93\x7a\x09\x06\xdf\x58\x80\x98\xe5\xce\x00\x8c\x0b\x3b\x76\x0a\xb6\x14\x07\xcd\x5f\x58\x6f\x83\x1e\xfc\xce\x2c\xeb\xc7\xb4\x86\x99\xaa\x74\x13\xc7\xb6\xe8\xaf\x9b\x58\xd0\x70\x79\x5f\x97\xad\xa6\x5f\x0e\x53\x7b\x0a\x4d\x48\x84\x73\x13\xd4\xa4\xef\x29\x21\xb8\x08\x07\x5c\xd0\xc3\xee\x1a\xb5\x74\xd4\xd8\x60\x65\xcf\xf4\xc4\xe5\x23\xcd\x32\x12\x7f\xa8\xcb\x2f\xe5\xea\xb0\xb6\x26\x39\x9f\xa2\xe0\x4c\x6a\xbd\x1e\x74\x7e\x57\x38\x65\xbe\xf0\x9e\x34\x08\xdc\x28\x42\x59\x00\xc8\x59\xdf\x09\xbe\xb0\x05\x05\xd7\x18\x56\xe8\x99\x40\x4a\x75\x6e\x2b\x47\x19\xdd\x5b\x9f\x6d\xe8\xce\xd8\xb4\x5d\x1d\xb8\x52\xaa\x75\x2b\x33\xde\x85\xc0\xad\xbf\x97\xa4\x89\x11\x6f\x91\x17\x7b\x66\x1a\x05\xee\xec\x62\xde\x60\xc4\x2d\xc1\x0d\xee\x36\x68\xb0\x90\x2f\x91\xaf\xea\x37\xd2\x8a\xcb\x42\xb3\xed\x2e\xe3\x71\x58\x20\x25\x80\xeb\xee\x03\x2b\x81\x20\xaf\x5c\xab\x7b\x1e\xe3\x85\x26\x0e\x88\x35\x96\x79\x96\x71\xa1\x50\x4b\x1b\xc6\x8d\x6f\xc6\x07\x77\x8e\x9d\x87\xe7\x71\xd0\x88\x96\x30\x64\x43\x2d\x8d\x6e\xf0\x08\x76\x5d\x0b\xc6\x11\x06\xc8\x82\x22\xe8\xeb\x1e\xa5\x25\x95\xba\x44\xa1\x4d\xc2\xef\x36\x19\x06\x99\xbe\xe0\xbb\x96\xe1\x6b\xea\xfd\xda\xb5\xd0\xb8\xe5\x09\x99\xaa\x71\xa3\xd7\x67\x89\x81\x53\xb7\xc8\xda\x10\x65\xe8\x6c\xbe\x83\x16\xbb\x6b\x09\x7f\xb4\x81\x3d\x5a\x35\x08\x2c\x04\x82\x73\x65\xe4\xd3\x42\x87\x41\x6e\x35\xc1\xbc\x60\x3b\xb5\xb9\x60\x5e\x08\xd4\x32\xbf\xf1\x87\xfa\xb4\xa9\xa3\x11\x1b\x42\x00\x45\xa1\x88\xb8\x14\x31\xd0\x02\x56\xca\xff\xa5\xa2\xa3\xaf\x1a\xad\xd9\x8e\xf0\x5a\xd0\xbd\xad\x97\x9f\x2c\x50\x51\x58\xb6\xf4\x5d\x97\xd3\x63\xac\xde\x4e\x04\x34\x13\xb6\x65\xdc\x15\xc9\xac\x65\xde\xcc\xb3\x88\xf4\x81\xf8\x30\xdd\xd5\x11\xfa\xc9\x59\x7e\x20\xf0\xb5\xa8\xc9\x6c\x63\x37\x12\xbc\x70\xa0\x90\x4d\x0b\xbb\x0b\x9c\xc5\x5d\x87\xc2\x2e\x5f\x60\x0f\xe8\xd4\xb0\xca\x25\x05\x9c\x31\x63\x91\x5d\x23\xed\xe3\xd4\x7f\x74\x47\x96\x47\x05\x7c\x84\x32\x9c\x36\xb2\x0a\x84\x0e\x96\x2c\xfe\x97\xd9\x2c\x93\x89\xea\x0a\x6b\xd9\xb2\x88\xd6\x83\xaa\xcf\x0f\x78\x00\x4d\xa2\x2a\x9a\xd2\x24\x01\x39\xe0\x08\x0d\xa0\x3c\x30\x24\x72\xea\xab\xd0\x05\x58\xd0\x19\xe3\xab\x72\xcc\x5a\x88\x29\x0a\x88\xe9\xae\x9d\x98\x24\x50\x53\x91\xc7\xbf\x1b\x8a\xda\x01\xa6\x8b\xe6\x2d\xb8\x8e\x88\xdd\x1d\xc9\x65\x0d\xe5\xfd\x2d\xa2\xa3\x6b\xc3\x0d\x3e\xfc\x57\xf3\xd0\x3f\xe5\x58\x60\xa6\x20\xe6\xd7\x8a\xee\x82\x04\xa9\x47\xe4\x33\xc4\x67\x30\x63\x08\x86\x9f\xc2\xcd\x75\x2e\x7f\x08\xf7\x42\x34\x3e\x40\xf4\x88\x1c\x41\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\x56\x8b\x65\x3c\x42\x83\x44\x72\xfb\x05\x61\x51\x02\xe5\xb8\x83\xf0\x64\x4f\xf9\xd6\xad\x34\x59\x80\x82\x02\x5b\x59\x34\xcf\xed\x83\xe0\x43\x28\x32\x06\x3e\xf1\x04\x4e\x7a\xf1\xfb\xef\x79\x66\xbc\x15\x6d\x71\x12\x2f\x58\xce\xa1\x76\x0d\xbd\xd8\x26\x99\x52\x81\xcb\x36\x08\xde\x80\x8d\x29\x62\x4c\x03\x04\x16\xf4\x35\x56\x28\x21\x58\x2a\xf4\x87\x6f\xd6\x8a\x0d\x71\x13\x2c\xb8\xab\x3d\xbe\x45\xa2\x98\x4b\x35\x08\x85\x3b\xdf\x31\xd4\x8e\xc3\x42\x21\x8c\x18\x79\x0e\x23\x4b\x39\x04\x03\xbb\x82\x70\x24\xc8\x6d\x35\xf1\x64\x26\x33\x1f\xb2\x35\x8c\xca\xd4\xc2\x47\x1c\xdc\xb1\x75\x9f\xda\x61\x35\x50\x96\x55\x9e\x6c\x88\x27\x40\x72\x15\x41\xff\x73\xac\x46\xcc\x72\x56\x17\x36\x12\xa4\x79\x0d\x92\xa4\x1c\x68\x8f\x21\x97\x84\xe9\x09\x43\x7d\xf6\x23\xbf\x40\x57\xa0\x7e\xf9\x68\xe7\x92\x9d\xae\x38\x2c\x26\x1e\xcf\xe3\x1d\x85\x6d\x37\x4a\x3b\x4d\xf6\xe5\x57\x14\x82\x1b\xba\xbf\x30\x85\xf2\x3b\x08\xc3\xa4\x69\xc8\x2b\x0e\x56\xdd\xa6\xbf\x44\x36\xde\x75\x07\xdd\x45\xe5\x66\xfb\x38\x5c\xb3\xcf\xbc\xc1\xdc\xde\xb2\xb9\x81\x6c\xb1\x8d\x02\xee\xc3\xee\x5f\xcb\xe3\x5b\x1a\xfa\x79\x0c\x49\x7f\xab\xb9\x60\x91\x44\xe7\x58\x87\x89\xbd\x8e\x83\x9c\x9e\x20\x85\x00\x82\xff\x1c\xe3\xb3\x6f\xb6\x78\x5e\xb3\xf7\x3d\xfd\x83\x62\xfe\x6e\x2a\x3e\x08\xae\x3e\xf1\x76\x61\x6f\x10\xff\x1d\x47\x10\xe9\x0f\x3d\xb9\x1c\x83\x3a\x20\x93\x83\xb1\xc6\x60\xcc\x6f\x14\x0f\x33\xc1\x23\x22\xe5\x11\x1a\xc2\x45\x63\xff\x89\xf0\xd4\x39\x24\x82\x97\x47\x4c\x6b\x26\x0e\xbf\x25\x68\xbf\x4c\xe2\x4d\x27\xc0\x80\xc1\x6d\xe5\xcb\x49\x57\xd7\x28\x69\xd3\x26\x1c\x16\x1d\xb4\x01\x65\x0d\xd0\x70\x76\x82\x62\x1e\x3d\x12\x71\x2c\x48\x4c\xe5\x09\xf8\xd6\x55\xab\x53\x2f\xd5\xda\xf6\xd6\x92\x46\x5b\xa0\xc0\x8a\xa4\xb8\x53\xd3\xbf\x0d\xb0\x76\xe1\xb5\x07\x88\x4e\x41\x9d\x70\x39\x19\x26\x08\xd9\xc1\xdd\x10\xa6\xc4\x02\xe2\xfa\xbd\x29\xab\xb2\x10\x4e\xd3\xd0\x42\x5b\x5b\x36\x91\xd8\x45\x0c\xce\x86\xd3\xbe\x9f\x13\x49\x5c\xc0\x81\x99\x94\xe2\x36\x96\xd9\xb0\x8b\x0c\xab\xb9\x84\xd4\xd5\xf2\x1a\x58\xa5\x0b\x3e\xd5\x2b\x84\x33\x88\x57\x30\x56\x8a\xe2\x23\x9f\x60\x29\x15\x4d\x92\x11\x63\x84\xc4\x12\x41\x96\xe9\x57\x8d\x19\xf2\xfa\xd3\x03\x84\xe3\x18\xfd\xef\xaf\x3f\x5e\xfc\x7c\x3f\x1c\x9f\x5f\x81\xd1\xfa\xfc\x62\xf8\xcd\x81\xff\xf1\xfa\xe1\xde\xff\x6a\x2c\x2c\x4f\x44\xa0\x14\x3f\x82\x8a\xc7\x24\xb1\xc9\x13\x64\xc4\xc2\x91\x3a\xec\x00\xfd\x44\x12\x17\xe9\x6a\xc5\x14\x0f\xa1\x68\xf7\xb0\xb5\x62\xb1\xb1\xf9\xad\xa1\xfc\xde\xfa\x4f\x96\xd3\xa0\x23\x1e\xdf\x85\x13\x03\x21\x47\x06\xcb\x20\x99\xdc\xea\xbe\x05\xc1\x11\x36\xa3\xac\x2d\x1e\x8f\xb0\xa7\x97\x14\xe2\x7f\x20\x8b\x1f\xb5\x7a\x7d\x83\xa9\xe8\x4c\x7b\xcd\x68\x40\xee\xc4\x68\x3d\x1d\xcb\xea\xa1\x92\x46\x16\x36\xd9\x36\xad\x31\x9f\x4d\x40\x70\x6f\x3e\x5d\x0b\x2f\x45\x3e\x2b\xe1\x50\x2a\x7c\x3e\x87\x83\x72\xf2\x17\x4d\x41\x83\x23\x76\x7f\x7d\x76\x7d\x82\x48\x82\x27\x1c\x42\xf9\x6d\x48\x90\x6b\xc2\x2e\x58\xc4\xd3\xa0\xa1\x12\x42\xc9\x01\xca\x0a\x84\x92\xd0\x88\x76\x64\xda\x58\x81\x54\x92\x71\x51\xc7\xf7\xd8\xad\x0a\x68\x27\x7b\xc3\x45\x97\xeb\x5f\xbf\x06\x4b\xc7\x33\xad\xc8\x55\x38\xaf\xbd\x9b\xa7\x04\x9b\x5a\xfa\xc6\x2d\x64\x6d\xf9\x36\x80\x35\x49\x4a\xf5\x14\xf5\xc1\x91\x47\xd6\x05\x5f\xbc\xc9\x19\xfa\xe1\x2f\x12\x4d\x72\x35\x62\xe5\x36\x38\x43\x83\x9f\xee\xd0\x77\x58\x45\xf3\x6f\x46\xec\x5a\xab\x99\x3f\xfc\xa5\x05\x4a\x69\x6d\x74\x42\xbd\x26\x67\x58\xe1\x0b\x8e\x63\xca\x66\x4d\xd0\x84\x45\xfd\x98\xe1\xfd\xe0\x04\x5d\x5b\x1d\xbe\xc8\x04\xf1\x29\xc1\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x65\xf8\x36\xa3\x99\xc1\x85\x35\x62\xf7\x06\x93\x51\x73\x55\xaa\x50\xc6\x6d\x0d\x23\xad\x95\x19\xb4\x4a\xec\x32\xa4\x48\xb2\x40\x7a\x75\x80\x8c\xfd\x66\x58\x79\x0c\xe4\x99\x3a\xb3\x1f\x31\x50\xd0\x7d\x6e\x4a\xc2\x23\x9c\x40\x4c\xde\x61\x60\xd3\xd3\x6a\x3b\xcf\x21\x3f\xdc\x14\x3d\x5f\x94\x43\x67\x3d\x64\x81\x17\xca\xc2\x8d\x02\x03\x00\xec\xa3\xf5\xc6\xa6\x5c\x73\x1c\x83\xc5\x06\xc6\xb7\xc4\xac\x8e\xfe\xd0\x63\xb3\x99\x65\xd1\x4f\x7d\xda\x16\xcf\x99\xc3\x22\x89\xc0\x7c\xcf\x16\x10\xbe\x0d\x45\x47\x38\x84\x7e\x14\xdc\xd9\x12\x65\x6d\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\x58\xcf\x15\xcb\x33\x1b\xd8\x68\x65\xfd\x4c\x90\x43\x9f\x01\x15\x97\xd6\x54\xdf\xb0\x47\xe8\x36\x54\xaf\x63\x1e\xe5\xa9\x43\x56\x86\xec\xa9\xa2\xac\x7c\x49\xe2\x31\x17\xfb\x2a\x8a\x07\x94\x16\x45\x20\x7d\xbc\xb3\x7e\x6c\x08\x66\x10\x7e\x5a\x97\xd4\xdb\x05\x5f\xe0\x1d\xdb\x45\xad\x99\x86\xc6\x59\xb9\xa5\x52\x6b\x5b\xe7\x25\x5e\x15\xe8\xaf\x5c\x80\xb0\x45\x3e\x67\x1c\x8c\xdc\x26\x3d\x8b\xc7\x5f\x49\x74\x7e\xa3\x25\x20\xad\xf1\xfa\x33\x98\x4b\x65\x82\xcb\x20\x5d\xc7\x7c\x6d\xd2\x05\x0e\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x9d\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x3a\xa7\xda\x62\x17\xec\x01\x6c\x5b\xfe\x4d\x50\x1e\x83\xd8\x21\x3c\xb3\x27\x5c\x86\x27\x13\x95\x8e\x66\x11\x49\x20\x89\x3a\x28\x73\x08\x2f\xec\x5a\x89\xfe\x7f\x2d\x01\x2b\x1b\xeb\xa3\xb2\x59\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xf0\x33\xd6\x9c\xfb\xc0\xc2\x68\x99\x8f\x8c\xe7\x65\x8a\x23\x83\x0a\x2a\xd1\xd7\x9f\x4f\xf4\x6f\x07\x68\x71\x02\x41\xa4\x07\xe8\xd7\x13\x8b\x96\x83\x85\x1a\xeb\x9f\xbe\x71\xb2\xb6\x6d\x02\x06\x4d\x25\xfa\xea\xf8\x09\x0b\x53\x33\xfa\xd8\x8c\xe8\x2b\xcb\x59\x7d\x5d\xbc\x50\x36\x4f\x38\x7f\xb4\x01\xb6\xb5\x0f\x8f\x1d\xf0\x1a\x90\xb7\xf7\x9b\x98\xad\xf7\x89\xf9\x0a\x1d\xc2\x0b\x04\x1d\x65\x13\x74\xf4\x77\xc9\x19\x3a\x5a\xe0\x34\xb1\xbf\xba\xa7\x36\xfe\x17\x4b\x9b\x13\x17\xfb\x20\x9f\x64\x61\x2c\xa5\xdf\x25\x7c\x02\xb3\xba\x74\x33\x35\x11\xb4\x30\xd0\xe2\xf6\x29\x2e\x2c\x3b\x11\x97\x88\x0a\xf8\x41\x29\x57\xe6\x15\xe0\x71\x4d\xb3\xfa\xec\x87\xf4\xdf\xc6\x2f\x0c\x8b\xe2\x92\xf8\x8c\x71\xd8\x47\xaf\xe9\x46\x3f\xa3\xaf\x2d\x0b\xfa\x46\xdf\x31\x36\x5c\xd9\x2c\x43\x53\x07\x0b\xdf\xc1\xcf\x41\x07\x94\x21\x93\x96\xb9\xe4\xcb\x5f\x8f\x8f\x8e\x8e\xfc\xd7\x90\xb5\xfe\xff\x22\xaa\x24\x49\xa6\xa6\x25\x77\x83\x2d\x46\xec\xd2\x15\x5e\x70\xc6\xeb\x02\xd2\x31\x13\x5c\xf1\x88\x27\xe8\xb0\x30\xe8\xc6\x3c\x92\xe8\xdf\xb5\x58\x1b\x2c\x25\xfc\xa8\xf5\xb8\x16\x18\x58\x83\xf4\xfc\x4a\x87\xca\x1a\xc4\xab\xc7\x2a\x44\x71\xf3\x8a\x2d\x96\x61\x15\x0f\xa0\x05\x4d\x39\xc7\x16\xe9\x4d\x08\xfd\x32\xf9\xac\xe0\x51\x0b\x90\x5e\x63\x28\x7b\xf3\x4d\x59\x63\xb7\x05\x9e\x9e\x21\xeb\x96\x05\xb0\x78\x57\x96\x33\x98\x79\x1e\x84\xee\x13\x7d\xb9\xb0\xb0\x14\x80\xcc\xd3\x14\x8b\xc5\x71\x71\xda\xea\xc4\x59\x20\xad\x01\x8f\x49\xdc\x02\x80\x0b\x37\xb1\x47\xcb\x46\x31\x58\xf1\xd2\xdd\x68\xfe\xec\x46\x50\xcb\x30\x40\x2c\x20\x2c\xe2\xb1\xa5\xeb\x22\xfb\xb4\x2c\xb1\xf8\x77\xea\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\xb7\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x86\x7b\xf4\xfc\xfa\xce\x7d\xd3\xfd\xd2\x85\x75\x28\x8b\xec\x38\x09\xf1\xf1\xd8\x0c\x09\xfc\x5c\x5c\xbf\x10\xdb\x61\xac\x33\xb9\xcf\xcd\x35\xff\x3e\xe5\x37\x34\xd1\xb7\x16\xd0\xf8\xd1\x88\x95\x7e\x3e\x40\x24\xa1\x29\x65\x3e\xb6\xce\x30\x77\x3e\x35\xd2\xf3\x23\x55\x7a\xcb\x64\xfc\xa8\x39\x98\xc3\x75\x0a\x54\xaa\x01\x5b\x38\xd2\xf1\x8e\x29\x6b\x81\xc8\xa5\x1e\x57\xa1\xa3\x6b\x61\x56\x37\x71\x68\x05\x52\x1a\x10\x1e\x9c\xdf\x11\xd3\xad\xb9\xb3\x54\x84\x0b\x07\xed\x05\xcd\x1d\x3a\x40\xfc\x80\x03\x40\x1f\xa5\x98\x5f\x2f\xff\x36\x08\x28\x43\x96\xa7\xdb\x26\x9b\xd8\xf0\xe1\xb7\x32\xd3\xdd\x08\xe2\x6e\x2a\x9b\xb8\x44\x58\x9e\xba\x03\xb5\x06\xc5\x0d\xad\xf8\x13\x93\x28\xc1\x06\xa9\x46\x37\x04\x91\x8f\x07\xc6\x41\x9a\x05\x7d\x99\xeb\xc5\x74\x63\x6a\xec\x24\x84\x7d\x6d\xfe\xfd\x0d\xb2\x77\xc3\xb7\x07\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\x3e\x00\x65\xb4\xd6\x1f\x96\xc0\x04\x60\xd4\x4d\x14\xa0\x99\xf0\x56\xb9\x46\x10\x05\x3b\x66\x3c\x26\xdb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x96\x4e\x4b\xa4\x5c\xd3\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x2d\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x6d\x37\x21\x6a\x40\x2b\xea\x74\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x9c\xb3\x29\x3f\xb1\x3a\xd5\x05\x65\x8f\x86\xe2\x5f\x6a\x8f\x0c\x20\x36\x89\x4b\x30\x6e\xae\x4a\x2b\xcc\xe1\x10\x51\x16\x25\x39\x5c\x7c\x52\xe1\xe8\xd1\x80\x7a\xb7\x19\x7d\xf5\x37\xe3\xd5\xc9\x94\x2d\x12\x53\x9e\x24\xb6\xdb\xe2\x02\x2d\xca\x58\x3f\x51\x8c\x30\x7a\xb8\x3d\x6f\xee\xfb\x91\xd6\x9d\x39\xcd\xb7\x67\x99\x40\xe0\x7f\x7e\xa0\x6b\xc5\x5d\x56\x60\xf1\x48\x89\xd4\xbd\x71\xa9\x0d\x74\x55\x13\xe9\x27\xac\xc8\xb6\x99\x50\x06\x03\x6c\x8d\x48\xbd\x1a\xb8\xda\x52\xeb\xf1\x96\xc8\x64\x05\xaa\x18\x84\x06\xb5\x43\xa4\x85\xc1\x5a\xf0\x70\x0d\xec\x06\x78\xbf\xdb\x7c\x2a\xef\xae\x98\xce\xf2\x61\x26\x84\xac\x81\x36\x70\xa7\x5f\xef\x38\xc8\xd2\xab\xcb\xc6\xf8\x8c\x4d\xf5\x85\x3a\xe8\x6f\x6c\x25\xbb\x75\x98\xad\x23\x47\x23\x5e\x4b\x9f\x23\xe2\x47\xe2\xc2\x70\xbc\x2c\xe6\xfa\x9d\x81\x6f\x8b\x97\x8a\x3b\x78\x0b\x6d\x03\xe1\x07\x62\xeb\x96\x61\x13\x5a\xfc\x1a\xa7\x9d\x01\xe5\x8a\x8e\xcf\xec\xc7\x97\x35\x78\x39\xcf\x8a\x2e\x21\x8b\xcf\x03\xa7\xa4\x98\xe9\x93\xed\x7a\x6d\x31\x42\x1a\x89\x70\xa3\x21\x3d\x64\x1b\x0d\xc8\xf4\xd8\xb1\xee\xa1\xed\xca\xb5\xf2\x6c\xec\xf0\x38\x31\x76\x26\x35\x07\x13\x44\x51\x2f\x48\x73\xb4\xb2\x29\xc2\xd4\x16\x4a\xf0\xff\xc7\xde\xd7\x35\xb7\x8d\x64\x67\xdf\xef\xaf\xe8\xaa\x5c\x78\xfc\xbe\x14\xb5\x33\x5b\x49\x4d\x5c\x95\x0b\x5a\x96\x77\xb8\x6b\x4b\x5e\x49\x9e\xd9\xbc\x61\x8a\x6e\x02\x4d\x12\x11\xd8\x0d\xa3\x01\xc9\x4c\x36\xff\xfd\xad\x3e\xe7\xf4\x07\x3e\x09\x90\x92\x3d\xd9\xcc\x45\xb2\x63\x11\x68\xf4\x77\x9f\x3e\xe7\x39\xcf\x93\x6f\xf0\x82\xa4\x45\xa1\x5f\xb6\x8c\xb0\xcf\x79\x38\x61\x84\x8f\xd0\x64\x0d\xe3\x9e\x60\x7e\xf7\xad\x34\x57\xcb\x2a\xb9\xa8\x3b\x95\x9d\xba\x71\xc0\x9c\xe7\x13\x31\x22\x95\x23\x13\x77\x6c\xd6\x4a\x37\x67\xca\x89\xda\xdc\x57\x7c\xe7\x18\x01\xac\x42\x30\xe5\x77\x61\xe5\x56\x02\x78\x71\xbb\xeb\x70\xb2\x08\x77\x58\x05\x12\xc5\xec\xaa\xc1\x42\xce\xec\x23\x9e\xdd\xcb\x5c\xcc\x72\x34\xc0\x01\x1f\x8a\x68\x68\xb8\x5f\x71\xdf\xeb\xd4\xb8\x8e\x46\x8c\x4d\xde\xac\xeb\x88\x9b\xfb\x9d\x3b\x8d\x48\x31\xc8\x71\x78\xf6\xaa\x35\x91\x7c\xfe\x09\x1f\xbf\xb5\x4d\xac\x29\xf1\xb7\x7d\xf8\xf0\x5d\xca\x32\x46\x50\x41\xa1\xf8\x3f\x62\x48\xd3\xbd\x9f\xa6\x9e\x24\xae\xf6\xb1\xe6\x6a\x2d\x4e\xda\x8d\x13\xbe\x5b\xe6\xaa\x5b\xce\x6a\x40\x37\xd9\x22\x2a\xfe\x9d\x2d\xca\x5b\xec\xd9\xe7\x92\xa7\x78\xb8\x49\x9a\x8e\xb6\xda\x60\x2a\xff\xf0\x4f\x6c\x06\xa7\x0f\x7b\x0f\xfb\x22\x04\xf8\xa1\xb4\x42\xb1\x64\x97\x89\x5c\x2b\xc9\x3b\x75\xdd\xee\x7f\xd4\x4b\xd2\xa6\x59\xf2\x28\x52\x65\x53\x87\x66\x44\x4b\x5a\x4a\x0b\x1b\xc5\xd9\x7d\xb9\x12\xb9\x14\xa8\x5d\x07\xcf\x31\xfb\xdc\xa0\xea\x2a\x5e\x16\xdb\x1f\x96\x51\x9a\x0c\x16\xcc\x81\xec\xa2\x99\x79\xed\x02\xdf\xea\x6b\x40\xa5\xfc\x4a\xd5\x25\xc3\xdf\x18\xfe\x36\x65\xaf\x79\x74\x2f\x64\xcc\xb2\xb4\xdc\x24\x44\x26\x00\x27\x14\x6c\x97\x81\x7b\xb6\xda\x30\xb4\x2d\xb0\x7c\x73\x0c\x2d\xe4\x8e\xdf\x23\x89\x2d\x19\x91\x11\x4f\x3b\xa9\xa8\x9c\x59\xbd\x4c\x9a\x73\xf7\xe0\x68\xb9\xf3\xb0\x59\x4c\x7d\xee\xe9\x12\x73\x2b\x1e\xb7\x8a\x22\xd2\x15\xab\x7e\xc4\xc2\x75\xb3\xb5\xc1\xf9\x62\xf3\xf2\x9d\x8a\x21\x55\x06\x57\x2f\xb8\x7b\x81\x88\xb9\x94\x8c\x03\x6d\xcc\x0b\xcd\xca\xcc\xda\x67\xe0\x87\x4c\x21\x2a\x8c\x43\x60\x7e\xc8\x12\x73\x4b\xdb\x8a\x85\x04\xa4\x2d\x73\xcd\x6b\x88\x5d\x31\xe1\x01\x31\x6d\x5b\xc3\x1a\x49\x13\x4e\x8b\x71\x36\x78\x9c\x0f\xcc\xd3\x81\x28\xe2\x62\x2b\xe4\xf2\x08\x3a\xe1\xe1\x83\x56\x41\x0c\x93\x19\xec\xfc\xb9\xae\x0b\x4b\x99\x90\x80\x14\xb9\xf0\x43\xae\xcc\x64\x5d\x33\xa3\x13\xcd\x34\x2f\x12\x6d\xf6\xb2\xd6\x1e\xf7\x54\x15\xa7\xf4\x3a\x1f\xc7\x8f\xd1\xc2\x8d\x51\xeb\x0b\x97\x95\x30\x65\x6f\xc1\x0b\x16\xdc\x0c\x94\x63\x9a\xe8\xda\xb0\x8a\xad\xe8\xa4\x5c\x7c\x0a\x38\x8f\x6d\x41\xf0\x7c\xaf\x73\xd3\x65\xa0\x4c\xd9\xcc\x47\x1f\x90\x6b\x03\xe3\x0a\x07\x5a\x24\x52\x2d\x8e\x99\x7c\x83\x1c\x75\x10\xa1\x87\x09\xc4\xc0\x92\xd2\xe6\xef\x9e\x41\xde\x55\xf3\x11\x92\x3c\xf9\xbd\x90\x7d\xde\x98\xe1\x35\x44\x77\x59\xaf\x4b\xc0\xf9\xe1\x14\xba\xe2\x8e\xa9\xe0\xf0\x65\xe7\xe9\x4d\x92\xf5\xb9\xe9\x72\x73\x0d\x89\xee\x29\xb5\x04\xbd\xb1\x44\x90\xf2\xb8\x55\x3a\x5c\x67\x76\xfc\xf0\x26\x9b\x97\x8e\x25\x1c\x52\x73\x5c\x07\x23\x26\x47\xaa\x90\x3f\x05\x6a\xed\x16\x29\x7a\x9a\xdd\x78\x33\xbb\x85\x42\x37\x40\x14\xcb\x16\xd5\x5c\xcd\x7f\xfe\x51\x5f\xc3\x8a\x7d\x8a\x4c\xfd\x76\x59\xd6\xd3\x51\xf2\x47\xc6\x07\x1c\xfe\xcb\x6b\xba\xf2\xd8\x71\x4b\x64\x2a\x66\x7e\x7a\x8d\x17\x70\xfd\xf6\xcd\xaa\x09\xbf\x0e\x6a\xdb\xa1\x99\xfd\x3e\x00\x11\xb0\x55\x99\xa0\x86\x7a\xc5\x20\x54\xd6\xe2\x00\xfe\x63\x38\xfe\x13\xed\xce\x93\xf6\x39\xf6\x41\xc5\xa7\x4c\xac\xf1\x74\x7a\xcd\x79\x3d\x00\x63\xac\xdb\x34\xdf\x7b\x7a\x22\x53\xdd\xe8\xd0\x78\x39\x5c\x25\x1d\xe0\x00\xab\x72\x7d\x0b\xea\x22\x5d\x8c\x15\x01\xf1\xbe\x4d\x41\x33\xe3\x6c\x3e\xe3\x12\x22\xba\x06\x85\xa2\xcb\xfe\xf8\xe7\xec\x4f\xb7\xd7\x57\x67\x3b\x9e\xeb\x2d\x87\x8c\x60\x5b\xd6\xc4\x0a\xb6\xe1\xf5\xd8\x46\xbd\x12\xb9\x90\x67\x6c\xa3\x26\x18\x63\x7d\xc5\xb6\x45\x91\xe9\x57\xe7\xe7\x9b\xa4\xd8\x96\xab\x69\xa4\x76\xe7\xbe\x6b\xce\x79\x96\x9c\xaf\x52\xb5\x3a\xcf\x05\xa0\x6c\xcf\xbe\x9f\xfe\xf0\x3d\x8c\xcc\xf9\xc3\xf7\xe7\x10\x59\x9b\x6e\xd4\x3f\xbc\xfb\xe1\x9f\xff\xf0\x4f\xa6\xe0\x6c\x5f\x6c\x95\x7c\x45\x01\xdc\xde\xb2\xcf\xd0\x2a\x3f\xc7\x57\x6a\x5f\xf9\xe7\xe9\xef\xc3\x6a\xd0\xa3\x3b\x15\x8b\x54\x9f\x3f\x7c\xbf\xb4\x03\x33\xcd\xf6\xbf\xe1\x52\xbf\x19\x2e\xf5\x3e\x29\x7e\xc3\xa5\x7e\x53\x5c\xea\x70\x0b\xc7\xed\x31\x40\xf4\xe9\xf7\x47\xf3\x77\xb7\x47\x5a\xd7\xfb\xa1\x7d\xa8\xe5\x70\x08\xb3\x06\x4e\x38\x22\xee\xc5\xa8\x2b\x76\xad\xb9\xee\xea\xd0\xe1\x62\x1b\x4b\xb6\xdf\x69\xcc\x8f\x4a\x92\x06\x14\x48\x12\x01\x91\x33\xba\x04\x33\x9e\xb4\xa1\x4d\x09\xed\x74\x4a\xff\x3d\x27\x25\xf9\x53\x73\x91\x53\x73\x8f\xe4\x21\x4f\xf1\x6d\x8b\xcd\x52\x8f\x96\x7f\xfc\x29\x58\xbb\x07\xea\xb8\x3a\x32\x62\x9c\x3c\x50\x17\x5b\xaf\x8e\x6a\x6c\xb9\x3e\x0e\xe4\x37\x43\xca\x3f\x17\xa7\x73\xaa\xf8\xf4\x41\x7b\x70\x58\x16\x05\x10\x09\x27\xb2\xa6\xac\xcc\x33\xa5\x85\x9e\xb2\xb7\x35\xa5\x43\x0f\x5c\xbc\x79\x7b\xc1\xbe\xff\xf1\x9f\xff\xb0\x90\xdf\xb5\x9c\xdb\xb0\xdf\xab\x7c\x43\x38\x4a\x38\xad\x77\x5c\x17\x22\x3f\xcf\xd7\xd1\x39\xee\x72\xe7\xe6\xfd\x33\xfa\xe8\x99\x5a\x9f\x39\x4a\xe2\x33\x62\x67\x9d\xee\xe2\x71\x04\x03\x95\xa9\x87\x67\x0d\x1d\x34\x1a\x0e\x25\xa4\x22\x52\x6b\x47\x3e\x8f\x79\x2e\xa8\x53\xa1\xd6\x2d\xff\xf1\x3a\x55\x2b\xfd\xd2\x11\xa0\x71\x6d\xbf\xe1\x19\x89\xba\x97\xe6\xd3\xb0\x93\xdb\x29\xf2\x9c\x8e\x0a\xbb\x97\x84\xd7\x91\x31\x1d\xdf\xbe\xd8\xfc\x71\x8f\x7c\x0c\x3c\x57\xa5\xb4\xec\xce\x4a\x0a\xb5\x06\x14\x1f\x58\xc2\x16\xa5\x00\xbe\x5a\x73\xd2\x7a\xee\x85\x5c\x64\x78\xc0\x40\x54\xa1\xbb\xbb\x4f\x64\x38\x3f\xd4\xcf\xcf\xc1\x70\x7e\x6a\xbf\xd3\x86\xf2\x8d\x3a\xfc\x54\x28\x21\x2e\xa5\x31\xa8\x0a\xf3\xfc\xc1\x08\xaa\xdb\x07\xbc\xfa\x90\x27\x13\xce\x78\x0e\x46\x9a\x38\x2b\xd4\x19\x90\xd6\x00\x15\x0a\x6a\x0e\x74\xc1\x2a\x20\xf2\x3c\xe6\x98\x34\xcf\x0f\xa8\x27\x1a\xe6\x5f\x82\x8a\x92\x4d\xa2\x91\xc2\x93\x20\x59\x89\x94\x22\xa7\x98\xda\xc1\x13\x75\x64\x5c\x3a\x1c\xca\x7e\x44\x56\xa0\x6b\x1d\xf0\xc1\x3b\x3c\x3e\x0f\x36\x81\x29\x03\xeb\x73\xab\x76\xca\x98\x33\xaa\xd4\xc1\x8f\x78\x7b\x81\x43\xb8\xd3\xf6\xda\xf1\x0c\x49\xea\xbe\x5d\x6b\xcc\xd2\x32\x3f\xa1\x53\x2f\x7c\x68\x94\xc4\xc6\xaa\x2a\x2a\x70\xa0\xfe\x8e\x0d\xbe\x7f\xde\x00\xea\x01\x75\xea\x40\x2a\x96\x38\x9e\x93\xff\x34\xf7\x1a\x33\xa5\xdc\x4d\xc1\x9d\xdc\x08\xd2\x41\x2e\xc6\x90\xee\xd5\x5a\xf3\x9d\xd9\xd2\xe5\x6e\xe4\x18\x38\x90\xf1\x90\x01\xe0\x12\x61\xb7\x16\x6f\x7b\xd6\x0a\xb8\xed\x5a\x97\x56\x98\x35\x5e\x5a\xbe\xd0\x71\x55\xbd\x75\x05\x10\x35\x68\xb3\xde\x9e\x6e\x09\xd0\xd9\xd8\xc7\xb8\x21\x58\xdb\xa2\x03\x74\x23\xc7\x2f\x46\x10\x58\x19\xd3\x77\xf0\x11\x9c\x9c\x8d\x1e\x0c\xd6\x42\x57\x07\x8e\x73\xb1\xf5\x79\xac\xda\xe0\xfc\xc8\x50\xe7\xb3\x77\x4c\x2d\x1b\x97\x47\xf7\xe2\x83\x57\xa1\xde\x67\x62\xc2\x56\x25\xfc\x7e\x75\x7d\x17\xa2\x35\x12\x6c\xed\x59\xb4\x15\xd1\x3d\x38\x4c\xf0\xc8\x73\xa2\x8d\xc4\x86\xb7\x90\x5e\xfa\xab\x50\x16\x7a\xb0\x77\x6c\xe8\x4e\x11\x40\xe5\x2c\x4e\x74\x96\xf2\x3d\x04\x79\x25\xe2\xf4\x7d\x80\xd8\x25\xb8\x98\xad\xe0\x90\xbf\x78\xf8\x48\x9b\x51\x99\xf9\xf7\xc6\xf6\x25\xcf\x57\x49\x91\xf3\x7c\xcf\x7c\x67\x36\xf7\x03\xa6\xc5\x8e\xcb\x22\x89\x16\x72\x27\xb8\x0c\x51\x79\x14\xe4\x36\x9d\x1c\x2b\x41\x7c\xc1\xeb\xb5\x88\x0a\x4f\x38\x08\xc6\xbb\xeb\xa9\x43\x6b\x70\x5c\xdb\xdd\xca\xeb\x6d\xfa\x4f\x89\xc4\xf4\xf6\x64\x07\x98\x4f\x9a\x43\x74\x34\x1e\x19\xbc\x01\xa9\x38\x3a\x72\xed\x65\x10\xfe\x65\xe7\x14\x5b\x89\xe2\x51\x40\x3e\x3d\x25\x00\xb6\xd9\xf8\x27\xcb\x05\x9c\xa6\xfe\xdb\xae\x9b\x1c\x20\xc1\x70\x81\x85\x60\x32\x47\xfc\x23\x6b\x0c\x3e\x2f\x28\x25\x11\xbc\x3d\x2f\xc8\x6f\xf5\x02\x8e\x69\x73\x7b\xcc\x1f\x44\xbc\x90\x55\x5a\x25\xb2\x19\xfd\x82\x63\x5e\x08\xeb\x69\x76\x1b\xdb\xc7\x83\x7c\xf9\x97\x40\x25\xe1\x49\x24\x5d\xd2\x5d\x8f\x30\x17\x36\xfa\x39\x6f\x55\x56\x13\x30\xb4\xee\x07\x40\xb2\x84\xb6\x42\x37\xa4\x8b\x57\xc1\x53\xb8\x49\xe9\x48\x63\x90\x51\xce\x01\x60\xc9\x2f\xd9\xf0\x74\xb6\x95\xb1\x90\x36\x9b\x7a\x5d\xa6\xc8\x12\xda\x25\x15\x46\x1c\x52\x36\xf3\xe3\xdb\x65\x00\x39\xbf\x1a\x0b\xb4\xc5\x1c\xec\x21\x00\x23\xe3\x5e\x67\x67\xbd\x90\x1a\x05\xa9\xad\xac\x10\x38\x9e\x37\xa2\x80\xd3\x3c\x2e\x53\x4c\x0e\x06\x8f\x39\xf0\x51\xf1\x34\x65\x49\xa1\x17\xd2\xd1\x67\x21\x19\x3a\xec\xb0\xd6\xa5\x6e\x15\x69\xa5\xd3\xb5\x25\xed\x7e\xb0\xc3\x92\x28\x29\x1a\x10\xee\x7d\x28\xc5\x91\x65\x82\x63\x2e\x1b\x0e\xdb\x42\x86\x77\xae\xfa\x20\x50\xe2\x17\x68\x94\x3f\x45\x0e\x56\x0f\x22\x1f\x84\xdd\x47\x0f\xc9\x94\xcd\xb0\x75\xe6\xc2\x65\x55\x36\xb1\xb6\x94\x3f\x4f\x48\x4b\x73\xab\x29\xb4\xf5\x91\xfb\x7b\x2b\xc8\x39\x47\x65\xca\xf3\x14\x38\xe9\xd7\x65\xca\x92\x75\x20\x18\x0a\x63\x80\xe4\x49\x66\xb8\x22\x05\x67\xb5\xf5\x92\x6b\xbe\x13\x41\xde\x36\xb9\x77\xd2\x00\x43\x81\x8c\xd0\x18\x9c\x37\x65\xbd\x9c\xb2\x37\x75\x85\x79\x58\x13\x01\xe9\x62\xa2\x71\xfb\x73\xf5\x0d\x52\x0e\x51\xa9\x3e\x59\x9b\x2b\xe5\x8b\x60\xd5\x75\x8c\x20\x90\xb7\x8f\x03\x68\x58\xea\xfe\x7e\xd4\x70\x6b\xca\xb1\x79\xb5\x06\xdb\x70\x0b\xa2\xa3\x82\xf6\x54\x18\x59\xc9\x90\xb0\xf2\x88\x8a\x3a\x42\xd0\x96\xca\xee\x7a\xf4\x49\x61\x1c\x47\x56\x35\x50\xfb\x19\x5f\xd1\x60\xe6\x84\x70\x9c\x21\x3d\xbb\xe1\xc5\x58\x6c\x8e\x4b\xc6\x19\x5f\xd1\x56\x1c\xd4\x90\x6a\xc2\xee\x31\xb2\x9e\x5e\x82\x7f\x7c\x45\x9d\xf4\xb3\xd7\x03\xf0\x9a\xf8\x95\x1c\x4a\xcb\x74\xe8\x5a\xa0\x17\x92\x0e\xbb\xf1\xe9\x9f\x33\x3f\xe7\x40\xf0\x88\x99\xea\x4f\xd9\xb5\x14\x88\x9c\x53\xeb\xe0\x50\xa1\x0a\x90\x32\x12\x90\xcd\xcb\x40\x82\x3a\x4d\xe4\xbd\xa5\x96\x30\x4b\x6e\xc2\xb8\x2f\x1d\x76\x3d\x9c\x36\xb8\x8b\x74\xd8\x92\x6d\xd2\x0c\x27\x98\x97\xc3\x12\x34\xdb\xef\xfc\x01\x00\x75\xfc\x0e\xd0\xd6\x8e\xe1\xc3\xd2\x8b\x24\x77\xb7\xb8\x8a\xc6\x78\x88\x1a\x2d\x92\x62\x7f\xa8\x7f\x3f\x6c\xab\x28\xc4\x11\x42\x46\x1f\xaf\xde\x5c\xbe\x9d\x5f\x55\xd5\x87\xfe\xf2\xf1\xf2\x63\xf5\x2f\x37\x1f\xaf\xae\xe6\x57\x7f\x0c\xff\x74\xfb\xf1\xe2\xe2\xf2\xf2\x4d\xf5\xb9\xb7\xb3\xf9\xbb\xda\x73\xe6\x4f\xd5\x87\x66\xaf\xaf\x6f\x6a\x7a\x47\x56\xac\x28\xf8\xd3\xdd\xfc\xfd\xe5\x9b\xe5\xf5\xc7\x8a\x64\xd2\x9b\x7f\xbd\x9a\xbd\x9f\x5f\x2c\x5b\xea\x73\x73\x79\x71\xfd\xf3\xe5\xcd\x01\xc5\x23\xdf\xde\xd6\x2e\x7d\x0a\xf8\xd8\xd1\xfa\x57\x33\xb6\xce\x13\x21\xe3\x74\x8f\xd8\x7b\x7b\xb3\xad\x81\x69\xc3\xb3\x37\xd9\x09\x55\x9e\x02\xa1\xbf\xdb\xa2\x42\x3d\xb0\x60\x60\x69\x94\x32\xcb\xf5\x7d\x27\x47\x62\x91\x37\xa3\x02\xbd\x99\x42\x45\xbe\x77\xb9\x68\x7d\xd5\xf1\x0c\x4a\xf4\x11\x96\x89\xbc\xaf\x2e\x60\x19\xe5\x65\x56\x24\xab\xee\xa4\x88\x81\xcc\x42\xe3\xef\xde\xc8\xf7\xd7\x4e\x8e\x72\xd5\xbe\x31\x56\x72\x03\x4e\x01\x1e\x43\x09\xc7\xca\xba\xb9\xb7\x2d\x58\x33\x2b\x57\x69\x12\xb1\x24\xae\xfb\x53\x30\x85\x0d\x5d\xc6\x75\x5a\xd0\x4c\xe4\x60\xaa\x9a\x1b\x40\x96\x8b\x33\x5e\x16\x5b\xab\x38\xef\x32\x19\x91\xa6\x53\x44\xb9\xc0\x58\x80\xd0\xe0\xa4\x45\x3d\xaf\xe0\x4b\x50\x19\xca\xe0\x8e\x81\x2c\x66\x1a\x50\xb4\x77\xc4\x08\xf0\x4d\x2c\x7d\x84\x93\x14\x9f\xef\xed\x1a\xaa\x71\xa2\xeb\x62\xce\x70\xc2\xe3\x8f\x56\x15\xcc\xb4\xdb\xec\xd4\x4e\x15\x0b\x07\xd9\xe6\x6e\xb4\x37\xe3\xd0\x1c\x0b\x27\x4a\x35\x99\x81\x4a\xa7\x9f\x2e\x72\x01\x87\x08\x41\x01\xac\xff\x02\xa0\x2b\x94\xeb\x01\x29\x1e\xe6\xaa\xb6\x12\x5b\x9e\xae\xd1\xe2\x30\x43\xe3\xd7\x55\x73\x8a\xde\xa9\x7b\x21\x6f\x70\xc0\xbe\xc9\x76\x28\xf1\xe6\xe3\x73\xfa\x9d\x47\xc8\xbb\x30\x4d\x1d\xed\xac\xb2\xb9\x6e\x60\x4c\x15\x78\x4f\x08\x7e\xc6\x94\x0e\xcf\xd8\x6b\xd3\xe4\xd6\xeb\xe4\x8b\x29\x70\x21\x45\x2b\x67\x29\xe0\x85\x2c\xbb\x92\xdb\x97\x01\x1b\x85\x14\x35\xf7\x42\x82\x9e\x18\xca\x0d\x1f\x9c\xb3\xe3\xfc\xe7\xcd\xb1\xe8\x71\xe8\x83\xcf\x2f\xa9\xc8\xac\x85\x51\x1e\xdb\x4f\x05\xe6\xd8\x4c\xd9\x1b\x22\xde\x30\x7f\xb9\x78\x37\xbf\xbc\xba\x5b\x5e\xdc\x5c\xbe\xb9\xbc\xba\x9b\xcf\xde\xdd\x0e\x5d\x7e\x4f\x91\x17\x55\x5b\x7d\xf5\xf4\x20\xb7\x43\x9c\xd3\xca\xf3\xe9\xb9\xae\x51\x7e\xd9\xc1\x90\x1c\xae\x7d\x12\x67\xcb\x38\xd1\x91\x39\xfe\xf6\x4b\x21\x63\x20\x7b\x3e\x6a\xaa\xb6\x17\x55\x6f\x85\x7b\x82\xb9\x27\xec\x0e\x82\xa7\xdd\x83\x9d\xd1\xee\x77\x40\xdd\x81\x1b\x32\x17\x66\xf1\xc7\xe6\x7e\xe0\x4e\x9b\xe9\x61\x85\x0f\x53\xdc\x69\x6d\xab\x16\x51\x6f\x13\xd6\x37\xd1\xba\xe4\x66\x7f\xb4\x8f\x01\xe4\xb0\xa3\x57\x88\x81\x2f\x64\x9c\x4e\x02\xb5\x54\x96\xe8\x85\xdc\x71\x19\xf3\x42\xe5\xfb\x8e\x26\x0e\xdb\x3c\xc3\x65\x53\xdd\x42\xc3\x23\x5b\x0a\x11\xdb\x51\xc0\x47\xb9\xac\x4f\x25\xe4\xa5\xbe\xbb\xfe\xf3\xe5\xd5\xed\xf2\xf2\xea\xe7\xe5\x87\x9b\xcb\xb7\xf3\xbf\x3a\x24\x64\xc6\x75\x9b\x3a\x62\x96\x0b\xb3\xbb\x58\x9a\x8f\xd6\xfd\x05\x25\x0b\x6d\x39\x24\x53\x95\xac\x17\xd2\xee\x2c\xb9\x2f\x7e\x9b\xab\x72\xb3\x6d\x2f\xa8\x5e\xcb\x0f\xb3\xbb\x9f\x8e\xaa\x26\x90\x30\xa1\xae\x19\xae\xb6\x26\x22\x34\x59\xd3\xbe\x87\x30\xd2\x5a\xf5\x80\x4a\x0c\x1e\x6d\x8b\x32\x74\xec\x68\x47\xdd\x5e\x9a\x9b\x56\xaf\xf1\xdf\xf2\x78\xd7\x04\xba\x0b\xf6\xcd\xca\x31\x02\x08\x65\x94\xc7\x6c\x94\xf6\xaa\xe5\x6f\x95\x13\xec\x87\xb3\x54\x6c\x36\x22\xc6\xe9\x55\x2f\x98\x7c\x70\xb4\x05\x46\xfe\x5c\x6f\xeb\x45\x12\xb0\x3b\xe1\x60\x76\x78\xaf\xe1\x1b\xf8\x07\xf7\x4a\xfb\x5e\x71\x61\x45\xb2\x23\x25\x75\xc1\x65\x47\x20\xf9\xa1\x89\xd0\x1c\xb4\x15\x5d\xe7\xcc\x25\x3f\x91\xc3\xc4\x86\x0c\xfc\x3a\xe8\x02\xbc\x9c\x8e\x0b\x75\xf5\xb8\x11\x59\xca\x23\xe1\x72\x18\x90\x01\x0f\xee\xf5\xc7\x04\xf0\x48\x26\x50\x92\xbf\x25\x90\x0f\x0c\x34\xc5\x5b\xa6\x00\x78\x6e\x6f\xec\x7e\xfc\xfc\xae\x95\xde\x8b\x1b\xf1\x5e\x81\xa3\x19\x75\x9a\x08\xfa\x8e\xbe\x28\x10\x3f\xeb\x84\x25\x8f\x9a\x0e\xb5\x2f\xff\x4c\x03\x8f\x77\xe6\xaa\xa3\x9b\x5b\x66\x39\x37\x3d\x9c\xe9\xd8\xe7\x2f\x2c\x8a\xbc\x97\x8c\xf2\x29\xc2\x11\x1f\x72\xb5\x4b\xb4\x98\x15\x45\x9e\xac\xca\x50\x8d\x6f\x24\x60\xae\x72\x39\xf1\x0d\xce\x72\x15\x97\x91\xa5\x04\x82\xd6\x7a\xd8\x0f\x79\xf9\xac\xd5\x11\xb3\x33\x33\xfb\xe8\xe6\x26\xe2\x33\x00\xf4\x2f\x64\x57\x8c\xcd\x6e\x8c\x1d\xbe\xbf\x0f\xf6\x28\x3f\x65\x4a\xb6\x4c\x8a\xee\xce\xb4\x73\x60\x58\x62\x2d\xb3\x8f\x83\x05\xdc\x81\x9a\xa2\xe9\xb2\xe2\x18\x40\xaf\xda\x28\x5d\x0c\x20\xee\xa8\x19\x07\xee\x1a\x86\x8d\xa9\x66\xcc\xa0\xdd\xb0\xe5\x1a\xcd\xf9\x22\xda\x56\x2b\x0e\xad\xa9\xb2\xe6\xd5\xab\xeb\xcc\xe3\xd3\xdc\x26\x83\xc2\x68\x13\x74\x34\x24\xe4\xd8\xae\x28\xa0\x39\x39\xc7\x71\xde\xee\xd0\x62\x74\x37\x3a\x3c\x0c\x60\x1f\x4d\x79\x29\xa3\x2d\xcb\x52\x8e\xc9\xe4\x5b\xae\x71\x4a\x5b\x2c\x09\x5f\x25\x69\x52\x00\x4b\x0f\x86\x38\x6b\x3d\x6c\xae\x79\x3c\xbf\xb7\xc4\xb8\xdc\x53\x32\xf5\x4d\xfa\x13\x31\xbb\xae\x55\x5f\x15\xb5\xeb\x97\x6c\xb8\x0d\x0d\x9b\x96\x84\xd8\xf5\xc3\x61\x36\x62\x98\x96\xbe\x2d\xe3\x46\x96\x4a\xfc\x50\x7f\xbd\xd2\xdf\x2d\xd6\xcb\x78\xc4\x0a\x31\xbe\x8f\x38\x7d\xea\x7c\xf0\xad\x2b\x6b\x9d\x2a\xde\xa1\x49\x6c\xcb\x46\x7a\xf7\xae\xb2\x63\x55\xae\xba\x08\x85\xb1\x56\xfd\xa5\xf7\x05\x43\xec\xba\x7d\x2a\x67\x69\xb8\x01\xf2\x42\x14\xc9\x38\x7f\x4f\xd0\x68\x5e\x88\x33\x78\xbd\xbd\x70\xca\x30\x1c\xdc\xe6\xc6\x44\xf3\x22\x23\xce\x68\x03\x2c\x61\xdb\xec\xaa\x9d\xce\xa7\x60\xc2\x4f\x1c\xaf\x44\x1e\x98\x4a\x87\x75\x0b\xfe\xf0\x43\x4b\xb7\x34\x1a\xfd\x97\x92\x9b\xfd\xf0\x7a\x7d\x8b\x5c\x39\xa7\x34\xba\x48\x9a\xcb\xaa\x7d\xfb\xa9\x7f\xf5\xae\x1a\x5e\x0b\x27\xfe\xe0\x4c\xe4\xb6\xd6\xdc\x9a\xb7\x87\xef\x42\xf3\x8a\x1b\x2d\xcb\x13\x05\x9c\x31\x6a\x8d\x0c\x8c\xdd\x74\x93\xad\xdf\x3d\xa1\x27\x3f\x97\xa2\x14\x66\x02\xad\xca\x78\xd3\xf4\x72\x8f\xb0\x94\x7d\x93\xb6\xea\x91\xed\xca\x68\xcb\x6c\xe1\x2c\x16\x29\xdf\x57\x9a\x06\x46\x62\xa1\x52\x20\x70\x3e\x92\x4d\x36\x2a\x75\xa1\x76\x00\x30\xf6\xe5\xe6\xa5\x84\x55\xce\xb8\x5d\x5d\x6d\xfb\x7b\x85\x5d\xee\xc8\xd0\xe6\xed\x87\xcb\x8b\xf9\xdb\x79\x2d\xae\x38\xbb\xfd\x73\xf8\xef\x5f\xae\x6f\xfe\xfc\xf6\xdd\xf5\x2f\xe1\xdf\xde\xcd\x3e\x5e\x5d\xfc\xb4\xfc\xf0\x6e\x76\x55\x89\x3e\xce\xee\x66\xb7\x97\x77\x07\x02\x8c\xcd\xaf\x76\x0f\x04\x0f\xc8\xef\x2c\xe4\xd9\xb2\x80\x5b\x3f\x03\x7d\xf5\x15\x9b\x59\x2a\xc0\x0a\x59\xa5\x0d\x12\x03\xaa\x04\x35\xb1\x29\x96\xfc\x86\x17\xfc\x82\x17\x3c\x55\x9b\x29\x9b\x31\x02\x84\x23\xd0\x5f\x1b\x0b\x89\x78\xd2\xcc\xe8\x60\x11\xc6\x4c\x8a\xfc\x1d\xde\xcb\x1c\xaa\x35\x31\x14\xa6\x22\x24\xc4\xb7\x59\x6d\x0b\x79\xf9\x20\x64\x51\x02\x5b\x37\x4f\x53\x46\x9f\xb5\x0f\x04\x19\xfb\xb6\x96\x3a\xd9\x25\x29\xcf\xbd\x22\xdd\x35\x95\x05\xb7\x14\x5b\x57\x47\xd0\xd4\x4c\x07\xb7\x17\xb9\x8f\x73\x06\xf5\xbe\x78\x37\x07\xbb\x2f\x2a\xac\xdc\x8a\xfd\xf8\x42\x22\x03\x1e\x7d\x71\xc7\x21\xf9\xa4\x50\xe4\x59\xc5\xcf\xd3\xc3\xdd\x13\x51\x9f\xb2\x88\x6d\x0c\xe2\xb9\x6e\x94\xae\x92\xf6\x3f\x2e\x65\x91\xef\x07\x1b\x73\x77\x90\x6d\xad\xc1\x20\x27\x2c\x5b\x55\xa5\x0e\x1d\x5f\xcc\x96\x7e\x05\x16\x9e\x05\x5a\x52\x5c\xc6\x85\x5f\x10\xd7\xd2\x71\xe9\x48\xcd\xc9\xfb\x6b\xed\x87\x90\x10\x07\x7a\x61\xa5\x4a\x19\x6b\x42\xdd\xed\x12\x79\xbe\xe3\x5f\x5e\xda\x96\x22\xc1\x84\xd3\x8a\x00\xf2\x30\x91\x9a\xeb\xd7\xde\x6c\x72\xfd\xdd\xb5\x90\x3d\xfd\x75\xd8\x44\xb6\x3b\x2b\xdc\xf5\xfc\xc5\x1c\xf1\x83\x0f\x62\xdf\x36\x7e\x0d\xbd\x1f\xc4\x28\xd2\x82\x87\x42\xb2\x5c\x98\x07\x1d\x38\x31\x45\xcc\xa9\xfb\x37\x24\x21\x54\x34\x09\xdb\xf7\xee\x30\xde\x7f\xd2\xb2\x69\x45\x1a\x3c\x83\x60\x13\x7d\xc9\x8c\x19\xe2\x0e\xac\xcb\x9b\x92\x2e\x28\xa0\x6a\x06\xeb\x3f\xd4\x8a\xad\x21\x03\x89\x34\xc7\x73\x01\x21\x0e\x18\x0a\xcb\x30\x0e\x14\x53\x0d\x30\x83\x9d\x02\xa9\xd0\xe0\xf8\x97\xe6\x8e\x29\x3e\x97\x14\xbb\xfd\xfe\xf7\xe3\xce\xd9\x22\xdf\x33\xab\x66\x11\x66\x40\x51\x02\x20\x9d\xb9\x50\xaf\x52\x26\x6d\xbc\x73\x37\xa5\x34\x47\xf1\x53\xc0\x5e\x86\xc7\x35\x6b\x1f\xa5\x7f\x1e\x4c\x12\xb2\x2e\xf9\x1c\x9f\x7f\x36\x1a\xd1\x9f\x6b\xec\xa1\xf4\x39\x80\xa4\x53\xe9\xe1\x81\xb6\xe2\xd1\xfd\x23\xcf\x63\xf4\xdb\x02\x0e\x65\xca\x7e\x52\x8f\xe2\x41\xe4\x13\x16\x89\xbc\xe0\x44\xdd\xa5\x21\x10\x0f\x0b\x8a\xca\x59\x48\xc8\xd0\x40\x1e\x34\x09\x72\xed\x45\xb2\xd9\x9a\x4b\x74\x00\xa3\x50\xb9\xd9\x8e\x0a\x64\x6d\xcc\x44\x44\x64\x49\x1d\x1d\xb0\x4e\xf9\x43\x93\x8b\xec\x18\x96\x07\x36\x77\x69\xa6\x36\x4e\x69\x55\x1b\xfa\x80\x2f\xd4\x61\xb4\x69\x22\xbd\xcd\x84\x6d\x54\xca\xe5\x66\x3a\x9d\x32\x51\x44\xd3\x97\xa3\x26\x3a\x15\x18\x46\x3e\x1d\xbc\x3a\x55\x4a\x8b\x74\xef\x08\x7e\x5c\x02\x0c\x20\x2e\xbf\x14\x42\xea\x04\xfd\x3c\x2d\xd3\xff\xb6\x1e\x15\xf8\xba\x41\x94\xf6\xeb\xf9\xe8\xf4\xca\x8e\x72\x40\x04\x6a\x44\x49\xf8\x7c\xfb\xcd\xeb\xa8\x74\xe1\xf6\xb2\xa4\x92\x63\x73\x60\x7f\x56\x5d\x92\xe6\x47\xf1\xee\xb5\x96\x44\x24\x25\x47\xe5\x0d\xb6\xf7\x59\x23\x95\xf3\x84\x2c\xce\x9e\x84\xcc\x91\xb9\x98\x43\x1c\x01\xb7\xf5\xe1\x1e\xbd\x2c\x0e\xeb\x52\xb4\x36\x68\x64\xae\xab\x4f\x4a\x1f\x63\x3a\x61\xba\x5c\xba\x87\x1b\x97\xcb\x7c\x05\x77\x7a\x1c\x84\x03\x2a\xd1\x0e\xc8\xc1\xf2\xe1\x12\x47\x1e\x15\x44\x47\x74\xa1\x72\xbe\x11\x6c\x27\xe2\xa4\xdc\xb5\x6e\x36\xae\xba\xa7\xe0\xfe\x54\x5a\xee\xba\x69\xfc\x4e\x35\xa0\x7d\x25\xf1\xbf\x2e\xe0\x73\x83\x0d\x68\x2f\xde\x6f\xe5\x81\xa8\xbe\xe8\xfb\xa7\xbe\x36\x27\x65\x9e\x68\x20\x9c\x3c\x26\xe5\xd1\x15\x83\x45\x43\xe4\x74\x9f\xa1\xcf\xb9\x32\xba\x67\x36\xa4\x45\xaf\x68\x1c\x55\x08\xb7\x76\x1f\x0a\x75\x34\xe1\xe8\x31\x02\xf1\x99\xa3\x22\xdc\x60\x36\x06\x34\xf0\x04\x77\x82\x02\x09\x93\x51\x28\xb6\xb6\x49\x74\xf7\x22\xa0\x25\x8b\x81\x20\xfe\x11\x39\x6e\xfe\xfc\xa3\xb6\xe8\x0d\x02\xd8\x78\x8b\xa5\xf0\x1f\xc1\x80\xc8\xc3\xf7\x16\x57\x85\x2d\xc4\x22\x80\x3c\x2c\xe6\xb2\x68\x2d\xc0\xc3\x0e\xa1\x2c\x7c\xe5\x67\x5e\xa6\xed\x8f\x53\xf9\xf0\x28\x8a\x4d\xcd\x7e\xb9\x65\xd8\xd5\x44\x25\x9e\xf7\x55\x34\x28\xe4\x30\xb2\x0b\xba\x6b\x79\x84\x25\x58\x19\x07\xec\x74\xcb\x25\x6f\xba\x5d\x14\xd1\xd6\x5b\x1e\x55\xd5\x68\x52\x12\xa4\x76\xee\x3c\x39\x3a\x82\x66\x43\xf4\x61\xb2\x91\x2a\xd4\xf5\x50\x52\x40\x64\xca\x6c\x40\x2a\x2c\x96\x25\xc5\x61\x88\xd7\x48\xc6\xb0\x43\x53\xad\x50\x08\xdd\xa1\x76\x56\x02\x8c\x70\xa5\x48\x90\x67\xc8\xe2\x63\xf1\x4e\x44\xc2\x74\x75\xd2\xec\x2a\x73\xc3\x42\x56\x3f\xd5\xe8\x24\x8b\xc1\x4a\x72\x81\x5c\xb7\xda\x58\x6f\x45\xf2\x60\x16\x6a\x73\x5a\xbb\x09\x0a\x3b\x40\x73\xee\x2d\x24\x56\x3b\x20\xcc\xbd\x17\x7b\x1d\xaa\xe0\xd1\x8c\x62\x5d\x13\x32\x31\xed\xa1\xf1\x3a\x3c\x14\xd0\x71\xcb\x40\xd5\x7f\xd8\x59\x86\x1f\x7d\x6f\x5e\xee\x01\x77\x36\x0a\x37\x73\xd0\x67\x29\x7a\x9f\x22\x6d\x13\xbe\x9f\x69\x0c\x3d\x7e\x0b\xd0\x79\x21\xfe\x2e\x4c\x39\x81\x8b\xaf\xb9\xdf\x2e\x24\x71\x6a\x07\x87\x9c\xd9\x70\x9a\xc3\x46\xa9\xd3\xc8\xe4\xbb\xaf\xd0\xbe\x00\xed\xa1\xa5\x80\xac\x7e\xd2\x06\x5b\xad\x88\xea\x42\xc2\xa7\x31\xb9\xd4\xfa\xf0\x5a\x3f\x78\x24\x28\x90\x06\xb7\x13\x08\x18\x64\x70\xe1\x93\xc4\xfc\x87\x72\x8a\x78\xfb\x89\x84\xe9\xbe\x99\x6c\xc5\xe0\x59\x04\xde\xed\xe5\xc5\xcd\xe5\xdd\x57\x03\x0a\x5a\x94\xde\x68\xa4\xa0\xad\xe7\x9b\xcb\xb7\xb3\x8f\xef\xee\x96\x6f\xe6\x37\xcf\x01\x15\xa4\x9f\x8e\xc0\x0a\xde\x12\x55\xff\x85\x92\x85\xf8\x72\xd2\x99\x9c\x97\x72\xc9\x47\xe4\xac\x38\xb1\x8e\x3e\x73\x07\x0b\x6d\x4a\x0d\x38\x1d\x00\xe2\x9d\xc4\x13\xcd\x29\x0b\xac\xbd\xd3\x70\x9d\xa4\x29\xa4\xf0\x3a\xf7\x3a\xa5\x87\x99\x4e\x85\xfd\xc7\x52\x6d\xd2\x9e\xba\x90\xab\x8a\x12\x04\xb8\xfc\xb6\xe6\x12\x8c\xc9\xbb\x99\xe9\x80\x3c\x81\xd4\xc8\x3e\x35\x82\x4d\x22\x85\xaf\x06\x4a\x1f\x97\x92\x75\x52\x48\xd3\x20\x3e\x27\x24\x8a\x0c\xaf\xa1\xb6\xa6\x9d\x71\x95\xf9\x69\xcd\x4f\xfb\xa3\x6b\x21\x2e\xe2\x44\xa2\x61\x5a\x59\xcd\xb7\xed\x53\xf7\xdc\x2f\x01\xe8\x77\x33\x92\x1c\x62\x10\xa0\x2e\xec\x07\x92\x06\x02\x55\x8a\x7c\x70\xe2\x3e\x41\xe8\x90\x5a\xd7\xfa\xd9\x6c\x85\xa6\xaf\x13\x88\x54\x70\x62\x25\x89\xd2\x52\x17\x22\x27\xb7\xc9\xec\x97\xdb\x85\x7c\x6d\x8e\xaf\x97\x74\x0a\x91\x92\x0d\x7e\x02\x81\x2b\xaa\xf2\x7d\x6b\xa1\x84\x3b\xd8\x77\xe8\xa3\xde\x09\x2e\x35\x2a\xbf\xa7\xa9\xc8\xfd\xcc\xc0\xfa\x08\x11\x93\xfa\x1f\xd0\xb0\xfa\xf7\x49\xfc\x5b\xc1\xaa\x35\xf5\xa5\x5f\x49\xfe\xba\x3e\x9f\xba\x32\xc4\x01\x2a\xfc\x9c\x33\xa7\x25\x63\x65\xe8\x2c\x22\x94\x75\xeb\x24\xaa\xe6\x8f\x0c\x9a\x4b\x77\x58\xdc\x6f\x53\xe9\x09\xa7\xd2\x80\x73\x3d\x3c\x25\xd8\x56\x99\x0d\xd4\xc9\xbc\xf8\x30\xb3\x63\xa8\x48\x01\xf4\x65\xba\xb1\xf5\xd4\xa9\x49\x1d\x9e\x82\xfd\x80\xa2\x4e\x83\xd6\xce\x5a\xa8\x70\xbc\xa6\x96\x8d\xed\xf4\xaa\x28\x3e\x0f\xe5\xdc\xcc\x82\x0c\xa5\x2a\x2c\x79\x84\xc3\xf5\x11\x48\xd1\x3c\xe0\x58\x4b\x7a\xeb\x48\x4c\x20\xd6\x4a\x59\x9e\xa8\x44\x76\x17\x82\x21\x2b\xe9\xb4\x58\x8b\x30\x11\xdf\x26\xdf\x3b\xf2\x8e\x31\x93\xef\x78\xad\xcb\xea\x9c\x73\x44\x90\x47\x81\x1d\xae\xae\xaf\x2e\x43\xa8\xc2\xfc\xea\xee\xf2\x8f\x97\x37\x95\x44\xec\x77\xd7\xb3\x4a\x32\xf5\xed\xdd\x4d\x2d\x87\xfa\xf5\xf5\xf5\xbb\xcb\x06\xe6\xe1\xf2\x6e\xfe\xbe\x52\xf8\x9b\x8f\x37\xb3\xbb\xf9\x75\xe5\xb9\xd7\xf3\xab\xd9\xcd\xbf\x86\x7f\xb9\xbc\xb9\xb9\xbe\xa9\x7d\xef\xe3\x45\x3f\x7a\xa2\xd2\x8c\x76\xf7\x8f\x0f\xce\x06\x9c\x98\xad\xcb\xb8\xaa\x05\x7a\xc2\x2a\x1e\x88\x3c\x3b\x34\x1d\x6d\x9e\x75\x1c\x52\xe5\xe3\xc2\x30\x55\x1d\x35\xeb\x9e\x5e\xbc\xb4\xd2\x75\x19\x3f\x6d\xdb\x33\xa7\xda\xf2\x29\x90\x80\xbd\x06\xa0\xfb\x4a\xcd\x71\xab\x0b\x48\x46\xc3\xae\xcd\x20\x82\xb5\xe1\x9d\xd2\x3d\x32\x7e\xf6\x9a\xda\x6f\x1c\xaa\xa7\xe7\x60\x3a\x40\x65\xf3\x54\x34\x16\x7d\x95\x0e\x3e\x66\xb3\xc4\x93\xd8\x1a\x0a\xf6\xc7\xe0\xe0\x86\x66\x98\x99\x13\x4c\xc7\x2e\x95\xc9\xf6\x7c\x93\x7e\xda\xb4\xb1\xf5\xa7\x8f\x34\xeb\x5e\xe3\xd8\x18\x51\x6f\xe0\x3a\x1a\x53\xef\x3b\xae\xef\xc7\xd6\x9b\x3e\xd2\xac\x37\x98\x7d\x47\xd5\x1b\x1c\xde\x45\x3b\xff\xc9\x88\x4d\x2c\x2c\xa6\x5a\x3d\x97\x9c\xed\x1e\x09\xc4\x5c\x87\xd5\xd1\x2c\x80\xe7\xbd\x5e\x66\x7c\x78\x20\x03\x6a\xe3\x96\x2b\xaf\xd1\x81\xdf\xc2\xaf\xd0\xc2\x55\x2e\xf8\x7d\xac\x1e\x69\x3c\xea\xc8\x50\x36\x68\x37\xaf\x76\x90\xd9\xc3\xed\x11\x01\x12\xf0\xe6\x93\x88\x52\xf3\xc5\x03\x4c\x2e\x21\x42\x6b\xb4\xc1\x02\x15\xd2\x3a\x83\x0c\x70\xf6\x48\x3f\x3a\x0b\x89\xd6\x7c\x9b\x92\xa9\x19\x55\x53\x23\xe2\x7c\x80\xa6\x3a\x1b\x1a\x83\xeb\x3a\x18\x58\x4a\xe0\x28\x73\x00\xd3\xad\x72\xb8\x33\x41\x87\x24\x12\x9c\xc9\xb9\xb9\xf0\xe4\x22\x4a\xb4\x08\xd4\x9c\x5a\x4f\xec\xcf\xa7\x69\x3f\x14\xbc\x68\x75\xbb\x0e\xf6\x87\xf3\xa8\x28\x79\xca\x3e\x97\x22\xdf\x13\x75\x1e\xfa\x2a\xf1\x2f\x11\x97\x98\x29\x52\x88\x5d\x06\xe9\xd8\x61\x8a\xc3\x42\xfe\x02\x40\x09\x1c\x82\x17\x9a\xfd\x11\x20\x0f\xf6\x61\x3a\x84\x77\xbc\x80\xb3\xf8\x2f\xf8\x0d\xf7\xdb\x74\x21\x2b\xea\x28\xc1\x5b\x15\xa1\x94\xe9\x42\x5a\x79\x82\x58\x45\x7a\x0a\x37\xbe\xa9\xca\x37\xe7\x24\xec\x6b\x26\xbb\xba\x5f\x29\x75\x7f\x2e\xe4\x39\xf8\xa4\x8a\x73\x5e\x16\xea\x1c\xe0\x52\x38\xfe\xfa\xdc\xea\x7f\x5a\x01\x55\x7d\xbe\x4d\x1e\x04\xfc\xbf\xe9\xb6\xd8\xa5\xff\xa0\xb3\xed\x97\xb3\x4d\x9a\x9f\x99\x77\xcf\xc2\x77\xcf\xec\xbb\x67\xf6\xdd\x33\xf3\x1a\xfe\xbf\x6c\x8f\xe1\x1d\xf1\x85\x9b\xb3\x6c\xb2\x90\x89\xd4\x22\x2f\xc0\xfa\x79\xcc\x93\xc2\xcb\xd0\xec\xd9\x8b\xff\xfa\x2f\x36\xcd\xf9\x23\xa6\x32\xbe\xe1\x05\xff\x80\xfe\xc5\xff\xfe\xef\x17\x10\x50\xc5\xa4\x9e\x8c\xe7\x9f\x4b\x51\x2c\xa4\x16\x66\x11\xb2\xff\xb3\x90\x10\x81\xdd\xed\x97\x05\xfa\x5d\xd1\x07\x19\x6b\xf6\x2f\x58\xe6\x1c\x69\x24\x63\x6d\x4a\xea\x48\x27\x48\x78\xda\x22\x19\xdd\xe1\xa2\xff\x9c\xbe\xa1\xe7\x47\x2c\xeb\xcf\x69\x75\x55\x5b\x21\x14\xfd\x39\x85\x03\x34\x55\xdc\x82\xb5\x98\x9b\xbc\x70\x4f\xa6\xca\xb5\xad\x91\x06\x34\xe0\x59\xc3\xf4\xed\x6b\xe5\x16\xa9\xac\xad\xe7\xbe\xb1\x8d\x40\xac\xc0\xc7\x21\x20\x7a\x9e\x98\x15\x72\x8b\x9e\x50\xb0\xdc\xb0\xe5\x60\x93\x52\xe8\xdc\x95\x87\x8e\x0b\xfd\x87\x57\xe7\xe7\x13\xb6\xd1\xf0\x3f\xab\xcf\xf0\x3f\x80\x1e\x7a\x2a\x36\xd6\x46\x67\x3a\x20\x5c\x73\x94\x0f\x8f\xc4\x53\xa0\xe8\xbe\x06\x01\x78\x6d\x9a\xbe\x2e\x65\x9c\x0a\x9f\x02\x59\x09\x89\xa4\xca\x4a\xd6\xa3\x63\xac\x2e\xb5\x02\x63\xbc\x12\x11\x37\x1b\x5f\xe3\xdb\x08\x2e\x55\xeb\x42\x48\xf4\x86\xe5\x5e\x89\x8d\xa3\xe7\x0a\xcc\x62\x80\x42\xf2\x82\x20\xe7\x02\xfe\x08\x1f\x01\x46\xed\x49\xfd\x27\xb6\x57\x25\x91\x43\x03\xe5\x69\x2c\xa2\x14\x18\xf8\x2d\xed\x0b\xcb\x45\x51\xe6\x92\x71\x96\x71\x19\x73\x0d\x33\x70\x9d\x43\xb4\x33\x67\xbc\x59\xd1\x09\xc2\x71\x55\x59\x00\x99\x11\x22\x0b\xc2\x9e\x40\xf6\xee\xa0\xce\x93\xa0\x12\x78\x26\x00\x89\x70\xe3\xc5\xe9\x42\x5a\xad\x30\xc2\xc2\xa1\xa7\x2c\x52\xd9\x9e\xa8\x6a\xea\x9d\x9e\x58\xcf\x19\x75\xf7\xc4\xe3\x4d\xea\xcf\x4e\x58\x52\x0d\xad\x01\x51\x78\x11\xa8\x1d\x5b\xbd\xe8\xef\x84\x8c\x54\x2c\x72\xfd\xd2\x2c\xc3\xc4\xdd\x3b\xd0\x7e\x48\xb4\x1f\x0c\xd8\xa5\xcc\xe1\x46\xde\x42\x53\xbc\x53\xd4\x31\xbd\x53\xa1\x96\x6e\xb3\x73\x0e\x2f\x95\x5f\x3b\x0a\xa6\xad\xbe\xf4\x9f\x5f\x15\x11\x13\xe2\x3a\xed\x9d\xf3\x78\x17\x04\x2e\xd9\x70\xc7\xc5\x42\xd1\xc6\x21\xe3\xc4\x4a\xcb\x26\x05\xa8\xd7\xe5\x42\x17\x0b\x49\x27\xf0\x84\xad\x05\x37\x76\xde\x84\x45\xfa\x01\x37\x63\x3c\xee\x8b\x47\xe5\x31\x38\x56\x97\x04\xc0\xb0\x95\xc2\xbd\x93\x18\x1f\x03\x44\x01\x8f\x0a\x04\x18\x74\xaa\x90\x5b\x53\x05\x3a\xab\x75\x43\x3c\xa2\x1f\xac\xcc\x45\x5d\x52\x2a\x54\x59\x81\x9e\xd8\x63\xa0\x98\xd5\xeb\x81\x3f\x98\x8d\x07\x5b\x87\x30\x90\x60\x73\x04\x8b\x9b\xb0\xb4\xb8\xce\x7c\x0c\x37\xe4\x1a\x07\xdf\x4c\xd7\xa2\xea\xe9\x08\xa8\xc0\x71\x7e\x0b\xf3\xea\x41\x87\x95\x16\xb9\xd5\xe0\xc0\xb6\x22\x33\xe0\x36\xc9\xe3\xb3\x8c\xe7\xc5\xde\x4e\xdf\x34\x59\x01\x75\x7f\x9a\xdc\x0b\x36\xcb\x73\xf5\xf8\xd4\xbd\xd0\xb9\xb5\x74\xdd\xb0\x4f\x41\xb2\x8f\xbd\xe5\xb7\xf2\x82\xd6\xdd\x1d\xc7\x71\x90\x76\x39\x3e\x5a\xbf\x93\x8b\x22\xdf\x2f\xcd\x44\xdc\x65\x9d\x3b\xc5\xa0\xa4\x89\xe1\x46\xee\x38\x7a\xd3\x9a\x0b\xa3\x93\xde\xb4\x32\xaa\xbf\x1e\x7a\xd3\x16\xe6\xd2\x26\xbd\xe9\xfc\x6a\x7e\x37\x9f\xbd\x9b\xff\xbf\x5a\x89\xbf\xcc\xe6\x77\xf3\xab\x3f\x2e\xdf\x5e\xdf\x2c\x6f\x2e\x6f\xaf\x3f\xde\x5c\x5c\xf6\xf3\x15\x35\x6b\xef\x4d\xf0\x33\x16\x7e\xe7\x15\xbb\x0b\x80\x1a\x98\x6c\x40\xf6\x37\x69\x57\xc2\xac\x32\x8b\x39\x91\x9b\x09\x2c\xd4\x57\xec\x32\xcf\xe7\x3b\xbe\x11\x1f\xca\x34\x05\x38\x15\x66\xf6\x5c\xe4\x02\x2e\x9e\x13\xf6\x41\xc5\xf3\xe0\x3d\x48\x47\x6c\x6d\x06\x7c\x9f\xc7\x71\x2e\xb4\xc6\xcf\x4f\xe8\xfb\x01\x78\xc8\xa5\x3a\x12\x78\x8e\x3f\xf0\x24\x35\xf7\xb7\x57\xec\x35\x8f\xee\xd5\x7a\x8d\xe9\x33\x13\x97\x38\xc5\x3e\x97\xaa\xe0\x4c\x7c\x89\x80\xa3\xab\x7d\x9e\xbc\x53\x9b\x6f\x00\x55\x1e\x10\x9e\xea\xb8\xa4\x80\x46\xd9\xb2\xfd\x38\x6f\xdf\x08\xa8\x95\xef\xf1\xd5\xb7\xf8\x66\xbb\x83\xb2\x48\x9f\x20\x3d\xfe\x9d\xda\xb4\x2b\xc6\x80\x75\x4d\x32\x37\x14\x48\x88\x88\x6c\x43\x6d\x98\x4e\xe4\xfd\x42\xfe\xb2\x15\x92\xa9\x32\xc7\x3f\xc1\x35\xdf\x98\x99\x69\xa9\xb7\x02\x24\x64\x27\xec\x51\xb0\x1d\xdf\xa3\xd9\x0c\x77\x02\x27\x73\x01\x53\x06\x4e\x11\xf3\x76\x9a\x48\xb3\x5b\x64\x89\xcd\x4b\xa8\x0f\xfd\x53\xdc\xb8\x2c\x43\x1d\x3f\x9d\x40\xb6\xef\x3c\xad\xe0\xf3\xc0\x55\xe6\x71\x93\x16\x20\x44\x3b\x37\xa8\x68\x2a\x75\x5f\x66\x9e\xcb\xf2\x85\x0d\x4e\x42\x77\x3f\xa8\x24\x66\x71\x99\xa5\x49\xe4\xf6\xdd\x47\x95\x77\x12\xf6\x62\x02\xcd\xf0\x53\xa7\x9e\x16\xd6\xd7\xb0\x96\xec\x9c\x00\x49\xd7\x43\xdd\xfb\xcc\xe4\xc5\x2c\x91\x51\x5a\x82\x3e\x58\xa9\x45\x7e\x56\xe4\xc9\x66\x03\x06\xb8\xcd\xf5\xfb\xf5\xb3\x1b\x7b\xf6\xc4\xd3\xd3\xda\xc2\xa4\xf3\x54\x6d\x92\x88\xa7\x21\xb8\xd9\xa3\x22\x1c\x7d\xaa\x5d\xf6\xa4\x9e\x0a\x79\x10\xb6\x42\x9d\x0c\x48\x59\x2e\x80\xc1\x77\x09\x5b\xf9\x92\xb6\xbb\x53\xea\xbd\x66\xe6\x82\x8e\xf5\x0a\xc9\x4d\x6d\x78\xc1\x9e\x70\xfe\xdb\x56\x42\x0b\x4c\x4c\x94\xd7\x66\xea\x51\x8a\x1c\x2c\x58\x80\x7d\x98\x96\x4a\x05\xb6\x89\x93\xd5\x72\xf8\x64\x2b\x2b\xb7\x76\x40\x6c\xcc\x9c\xdd\x24\x0f\x42\x7e\x7d\x36\xea\xe0\x03\x11\x8f\xb6\x62\x69\xed\xf2\xa7\xde\xb2\xdc\x01\x30\x72\xb3\xb2\xfa\x16\xe1\x56\xea\xc2\x9b\x70\x75\xc2\x1a\x37\xf7\x2e\x0c\x24\xf6\x64\x64\x99\x4a\x2c\x63\x11\xdd\x7f\xf5\xad\xd9\x83\xac\x6c\x45\x18\x67\x6f\x44\x74\xcf\x3e\xde\xcc\x31\x1b\x38\x29\x98\xd9\x0a\xf4\xd6\xeb\xf5\x74\xde\xdd\x0a\xbe\x79\x06\x46\xa7\xa1\x82\x43\x9e\x63\xde\xc9\xac\x99\x0a\x11\x20\x0a\xf2\x25\xcd\x26\x49\xb9\x34\x00\x04\xe3\x85\x95\xa1\x01\x47\x3c\xd3\x3b\x50\x9d\x29\x8b\x40\xaa\x2d\xe5\x2b\x91\x76\x30\x2e\x66\x2a\x5e\xda\x38\xc9\xa9\x60\x9e\x46\x59\xd6\x8f\x41\x51\x47\x9b\xc7\xc0\x8d\xc5\x7a\x47\x0f\xb2\xfb\x1f\x75\x40\xaf\xa1\x42\xe2\x67\xb8\xd7\x73\x0d\xe9\xdd\xeb\x64\x63\xa3\x6d\xc9\x9a\xb4\x71\x30\xa1\x1f\x54\xe0\xcd\x7e\x69\x4a\xfa\xa0\x62\x82\xe9\x39\x12\x33\x63\x05\x09\xf2\x9e\x78\x5c\x45\x58\x05\xa7\x94\xaf\xc1\x37\xa0\x0b\xc1\x63\xa6\xd6\xe4\x4d\xcc\xb2\x34\x01\x4a\xdf\x18\xd9\xc3\x81\x3d\x43\x57\xd1\xf1\x61\x69\xb6\xb2\x01\xc9\xc7\x07\x0b\xc4\xeb\x8d\x37\xfa\x20\x97\x69\x57\xd5\xc9\x5d\xb7\xa9\x4e\x55\x81\x73\xf9\x48\xc7\x5e\xa1\xfb\xbd\x69\x9b\x54\xad\xa0\xa3\xba\x41\x71\x3d\x1b\xb4\xd9\x9d\xf2\x24\x1e\x73\xbc\xdb\x3e\xb9\x76\xaf\xf6\x55\xf0\xda\x7a\x3a\xdc\x97\xec\x30\x33\x22\x5c\x0f\x23\xf8\xb5\x34\xf6\x43\x77\x6d\x08\x10\x6a\x17\x21\x74\xd6\x78\x41\x72\x03\xb0\x2a\xdc\x76\xdc\x71\xad\xae\xb6\xe5\xa4\x81\x6e\x12\xa3\x1c\xe8\x4b\xcf\xa5\xd2\x3f\xc8\x27\xb0\x5b\xe0\xca\x75\x14\x17\x63\x38\xa3\xed\xd0\x21\xc6\xd7\xf4\xa7\x1f\xc4\x4a\xf2\xc5\xa0\x11\xad\xf7\xbb\x5d\xc5\xa7\x74\xf9\x73\xac\xa8\xb2\x50\xde\xe5\x0f\xed\x99\x03\x69\x68\x98\xd6\x05\xdb\xc6\x3c\xee\x80\x0b\x58\x1b\xcc\x2e\xcd\x11\x20\xd4\x51\x30\xd8\x2c\x17\x36\x78\xb4\x17\x85\x4b\xee\x4f\xad\x2a\x18\xc4\x46\x5c\xab\xab\xec\x26\x96\xc0\xc0\x31\x52\x41\x24\x83\xec\xbd\x48\xed\x32\x25\x01\x9b\x82\xa9\x4a\x0b\x49\x85\x5b\x6d\x67\x17\x5e\xa9\xe4\xbb\x4d\xc8\xab\x85\xd9\x13\x42\xab\xf4\x81\xe2\x68\x81\x04\x01\xa8\xc2\x99\x0a\x5e\x98\x0b\x82\xb9\x0e\x43\x80\x97\xb6\x77\x80\x83\xd7\x04\x8e\x73\xb1\x49\x74\x21\xc2\x14\xc1\xf0\xfd\x27\xd3\xa2\xac\xdc\xa0\xfb\xba\xbe\x53\x8b\xf2\x90\x29\x6c\x56\xed\x88\xfa\xec\x33\x11\xcf\xdd\x7b\xfd\x93\xa1\x96\xc5\xed\x37\x89\xca\x29\x80\x73\x00\xaf\x00\x1a\xf9\x9e\xb4\x13\x0f\x70\x83\x44\x4c\x3c\xdc\xa3\xda\xcc\x10\x6d\x4a\x9e\x73\x59\x08\xa1\x17\x92\xa2\x8f\xc8\x5b\x16\x52\x73\xd4\xd0\x70\xce\xc0\x8d\x94\x2e\x90\x06\x08\x5e\x59\xf3\x24\x2d\xf3\xce\x3b\x27\xce\xca\xa3\xb8\x07\xfa\x7a\xe9\x02\x8a\x65\x6d\x83\xe6\xb2\x58\x83\x55\xe4\xa8\x33\xea\xb1\xc3\x6a\x92\x67\x47\x13\xec\x96\x3b\x7c\xbc\x9d\xc3\xb1\x23\xb1\xf5\x47\xbd\xcc\xd4\x88\x1d\xef\xcf\x3f\xea\x0f\xaa\x23\x25\x58\x7f\x6e\x38\xc6\x7a\x62\xe8\x9f\xbb\xe4\x14\xb8\xbe\x87\xf0\xd3\xa1\xfb\xf8\x20\x4a\xc6\x83\x41\xaa\xce\xbd\x0b\x66\xed\x96\xcb\x38\x35\xf7\x54\x5e\xd4\x4e\x20\x0f\xf6\x35\x76\x71\x61\x37\xc7\xee\xcc\x2e\x48\x94\x58\x46\x8d\x2c\xbb\x43\xfd\x54\x4b\xcf\xeb\x05\xd4\xd5\xbe\x52\x4d\x9a\x6b\x4b\xd6\xf0\x27\x3b\x89\x98\xba\x05\xdb\x3d\x05\xd7\xc9\xe6\x57\x70\xc9\x7a\xdf\xdc\x29\x23\x5a\x8a\x74\x7e\x39\xe4\xf7\x89\x8b\x11\x92\x6c\xcc\x66\x16\x92\x13\x2f\x24\x69\x1c\x63\xe4\x15\x42\x6e\xc8\x45\xa5\xd9\xf7\x2e\xf3\xf2\xfb\x7f\xb4\x4c\x44\x7b\xb6\x86\xbe\x06\xba\x2f\x15\x45\x65\x0e\x61\x51\x72\xdd\x30\x81\x67\x93\x1e\x45\xb2\x01\x27\xb2\x03\xb3\xa0\xf9\xd4\x66\x3d\x38\x5f\x5d\xa5\x51\x77\xe0\xa2\x41\xb5\x66\x77\x16\x92\x08\x4f\xae\x0b\xa6\x0b\x91\xb5\xee\x4a\x15\xa3\xab\x2a\x48\x7e\x82\xd9\xe5\xe5\xd0\x07\xda\xba\x23\xf6\xe8\x59\x70\x9d\xfe\xd3\xed\xf5\x15\xcb\xf8\x1e\x70\x61\x85\x22\x25\x79\x20\x63\xac\xaf\xdf\x43\x23\x50\x6d\x7c\x75\xb1\x61\x9f\x5a\x80\x69\xbb\xef\x96\xbe\xd8\xb4\xa1\x60\xce\xd0\x94\x34\x4b\x39\x57\xe9\x59\x96\x72\x19\x40\x7f\xf5\x94\xd5\x3e\x1f\xc6\x7a\x5d\xd4\x87\xd0\x34\x50\x01\x70\xa7\xd0\x5c\xc8\xcb\x56\x70\x68\x55\x63\xfd\xa4\xf0\x6e\xe7\x1e\xd1\x0b\x7a\x7b\x8f\xd2\x06\x3c\x32\xcb\x04\x99\x05\x6c\xc8\xda\xa1\x1e\xb8\x06\x40\xe2\x88\x81\xea\x17\x84\x5f\x48\xab\xf7\xab\x1e\x35\x8b\x91\x7b\xa1\x4c\xf4\x16\xfc\x93\x18\x10\x00\x70\x10\xed\x2f\x88\x5c\xc8\xb9\xd4\x66\x40\xc1\xa7\x29\x1e\x04\x39\x36\x2a\xc1\xb8\xf9\x9b\x77\x2e\xbe\x8f\x83\x44\x92\x6c\x1d\x5d\x1f\x18\x66\xa7\x5c\x60\x5a\x15\xca\x0f\x13\xfb\xbf\xe7\x59\x5f\xd6\xd8\xc9\x25\x1e\x1a\x25\xc7\x3c\x53\xb7\x3a\x41\xab\x15\x54\x9a\x2a\xa9\x63\x61\xef\x7d\x94\x27\x6e\x3f\xad\xe4\xcf\x87\x45\x05\x06\x5f\xc2\x86\x65\x02\x8e\xd8\x7b\x02\x12\x38\x87\xad\x71\xf6\xb2\x59\xe5\xa0\x81\x03\xec\x55\xe8\x49\x9b\xb2\x5b\x21\xd8\x27\xe8\x29\xf3\xb1\x4f\xa4\xb1\x06\x70\xc1\x82\x27\xad\x12\x38\xf0\xf4\x5c\xae\xd5\x69\x9b\x41\xbe\x69\xc0\xd1\x4e\xea\x95\xf6\x7a\x9e\x0a\x78\x83\x54\x46\xf9\xbc\xf9\xf7\xad\xed\x3a\x00\x6f\xfb\xe0\xef\xe4\x94\x95\x67\x6b\x6a\xce\x67\x18\xe2\x63\x18\x9e\x6a\x93\xc4\xb4\x72\x82\xac\xc5\xf7\x52\x3d\x4a\xb4\x05\xe8\x4b\xec\x3b\xb3\xfe\xe0\x00\x43\x07\x2a\x9a\x05\x25\xee\x86\x2f\x81\x46\x79\xe6\xfe\xcd\x6e\x31\x56\x84\x75\x06\x71\x14\x0d\xc6\x0f\xc9\x9a\xc0\x6e\xfe\xdd\x6c\xc2\x5e\x4f\xd8\xc5\x84\x4d\xa7\xd3\x97\x13\x54\x6e\xa6\x1a\xe1\x2b\x88\x1c\x2b\xf8\xc6\x94\x4d\x72\x11\xeb\xe0\x03\x20\x80\x64\x0e\x2b\xcb\x16\xc6\xfd\x53\x81\xe7\xc1\x36\x01\x73\x18\x29\xe1\x82\xe2\xea\xd1\x56\x25\xbe\x52\x00\xd1\x14\x91\xca\x2d\xc8\x53\x17\x2a\xb7\x80\xb5\x07\x9e\xf3\x44\x42\x6a\x37\x6f\xc2\x75\xe9\xcb\x01\xb9\xb3\xf8\xc2\x77\xd0\xfe\x44\x3a\x7e\x4b\xd3\x4d\x77\xae\xfe\xc5\x3e\x23\x87\xf4\x63\x9e\x14\x85\x39\x9d\xf5\x42\xde\xb2\x57\xff\xc2\x66\x59\x96\x0a\x36\x63\x7f\x63\xaf\xb9\xe4\x92\xb3\xd7\xec\x6f\xec\x82\xcb\x82\xa7\xaa\xcc\x04\xbb\x60\x7f\x33\xdd\x66\xca\xbb\x52\xe6\x38\xdc\x4f\x18\x67\xb2\x4c\xf1\xd4\xff\xce\x82\xc1\x5e\xba\x76\x71\x3f\x3a\x2b\x51\x3c\x0a\x21\x99\x56\x3b\x3a\x0a\xff\xea\x62\x12\x3a\x91\x9b\x54\x14\x34\x1f\xaa\xb0\x3d\xfc\xc0\x19\xb4\xf4\xd5\x42\x3a\x5f\xde\x5f\x4d\x8d\xff\xca\xfe\xc6\xae\xca\x34\x35\x55\x32\x1b\x8d\x99\x48\xaf\x98\x4d\xa3\x10\x72\xfa\x98\xdc\x27\x99\x88\x13\x0e\x89\x14\xe6\x5f\xe7\x77\x30\xda\xcb\xd2\x73\xe6\x85\x6b\xda\x09\xce\x9c\xb2\xf5\x3c\x4b\x52\xb6\x93\x43\xb2\x83\xdf\x73\xf3\xab\xbe\x3a\xde\x22\xf2\x4c\xa1\xb4\x1e\xc8\x60\x45\xb1\xa0\x50\x76\xe9\xa8\x2d\xa0\x76\xd8\xda\xb2\x5a\x8e\x82\xf0\x50\x3f\x75\x93\x05\x0d\xb1\x27\xbf\x43\x0e\xd0\x2e\x1a\xba\xe5\x36\x94\x57\x2a\x69\xee\x60\x4b\x7a\xaa\x9f\x41\x51\x21\xa7\xb8\xf2\x73\x55\x44\xad\xd2\xc5\x2a\x19\xa4\x36\x57\xab\xec\x47\xf2\x5d\x60\x82\x9a\x59\xa6\x49\x7a\x6e\x96\xea\xf9\x95\x92\xe6\xda\xaa\x93\x0d\xd2\x13\x01\x8c\x08\x65\xda\xac\x51\x70\x57\x35\x59\x83\x25\x00\xf6\x81\xa9\x12\x42\xdb\x0a\xb3\x0b\x98\x21\x48\xf7\x0b\x69\xde\xa0\x13\x09\x60\xee\x89\x63\xb1\xc5\xaf\x59\x5d\x7b\xfa\x16\x6d\xc8\x41\xe1\x2d\x13\xac\x2f\x87\xf6\x84\x09\x47\x29\x5b\x27\x78\xc5\xaf\x02\x06\x37\x2a\xcd\xd2\x7b\x60\xdc\x73\x25\x52\x25\x37\x66\x56\x74\x6d\x02\x6a\xc7\x93\x53\x80\x25\x61\x15\xb0\xb0\xce\x1a\x98\xc3\x92\x1e\xa1\x21\x31\xe7\x64\x12\xfb\xfb\xbd\x2e\x57\xc6\x8e\x70\x1e\x59\x77\x1a\x52\xe3\xba\x12\x8a\x4f\x8b\x2f\x7f\xd4\x22\x07\x9a\x65\x44\x38\x38\x6f\x3f\x1e\x9c\x9e\x6c\x03\x5b\x34\x6c\x51\xf5\x02\x63\xdb\x5d\x21\x14\x4d\x68\xa4\x56\x0f\x98\x8f\xdf\x12\x23\x3b\x04\x39\xfb\x76\x36\x7f\x57\x7b\xae\x89\x9c\x6d\x81\xd7\xde\xcd\xdf\x5f\xbe\x59\x5e\x7f\xbc\x6b\x3c\x67\x4a\xa3\x3f\x8d\x55\xfa\xb7\xbd\xf7\x14\xf0\xc1\xcf\x28\xf7\xb2\x54\x6b\x9b\x49\x39\xfc\x4c\x6f\x08\xee\x0c\x43\xa9\x84\x24\xdb\xa1\x30\x4d\x73\xe2\x74\xe6\x83\xcb\x25\x45\x24\x86\x55\xb6\xde\x61\xd7\xf2\x2d\xbe\xfe\x41\xa5\x49\xd4\x0f\x7a\xb3\xc7\xd5\x56\x3d\xb6\xa0\x88\x56\x02\x50\xa0\xe4\xff\xa1\x4a\xa1\x85\x5e\x88\xa8\xf0\x11\xb7\x66\xe3\xfe\x57\x03\x6d\x0e\xdf\xc1\xd1\xa3\xec\xba\x0d\x04\x38\x5d\x0c\x0f\xce\x56\x20\xd8\x04\x5e\x79\xf4\xb5\x42\x2e\x1d\xc4\xb6\x23\x4e\x2e\xe8\x4a\xcf\xc3\x06\xfd\xb8\x55\xa9\xb9\x8b\xc9\x98\xc8\x4a\x17\x32\x13\x79\xa4\x00\xa0\x82\x79\xf0\x8a\x45\xdb\x24\x8d\xbd\x78\xcb\x77\x80\xe8\x05\xdc\xdd\x4b\x92\xe5\x13\x2e\xc6\x6c\x8b\xef\x39\x75\xed\xb4\xb3\x7a\xe5\xa7\x79\xa0\x9e\x0e\xa2\xd7\x37\xed\x7f\x21\x28\x19\x76\x05\xd1\x0b\xd5\xa2\x85\xa6\xd3\x2b\xf5\x19\xe5\xe1\x05\x45\xf1\xb5\x15\xff\xb4\x17\xa7\xa2\x36\xae\x34\xcd\xea\x5d\x09\xa4\xb3\x88\xa2\x42\x00\x89\x16\x50\x9d\x9d\xe0\x68\x8b\x79\x0a\x48\x1a\xd4\x85\xf4\xf1\xd1\x17\x3a\xb4\xcb\x5a\xc7\x19\x39\x55\x2d\x08\x70\xc2\x5e\x54\x1a\xfa\x02\x48\x49\xa5\x82\xef\x51\x0c\xab\xd2\x35\x30\x5d\x27\x2c\x29\x16\x32\xd1\x38\x33\x73\x91\x8a\x07\x53\xbb\xd0\x59\x4c\x58\x17\x7b\x77\xb6\xcd\x06\x1c\x39\xb7\xe9\xc7\x4e\xe6\x1e\x16\x61\x1e\x92\x5b\x72\x70\x4c\xc7\x42\x1b\xbb\x11\x64\x39\xc4\x17\xb3\x00\x12\x88\x85\x20\xfc\x23\x16\xd2\xd6\x0f\x50\x21\xa8\x65\xbb\x90\xf3\x35\xe4\x80\x42\xe6\x69\x1c\xe3\x2d\xd4\x0a\x35\x38\xa6\xb1\x84\x9c\xc3\x8a\xee\xe4\x76\x20\x48\x55\x12\x57\x92\x78\x10\xf9\xbe\x00\xa7\x2e\xf4\xab\x14\xbc\xd8\xb2\xa4\x98\x00\x45\x9c\xdd\x29\x17\x92\xc7\xa4\x54\x4e\xc5\x99\xae\x81\x79\xdf\x33\xce\xf4\xfb\x4a\x3d\xf4\x19\xb6\xa7\xa2\xbe\x70\x55\x67\x29\x97\x4b\x3c\x41\xbe\x01\xee\x2b\x10\xfc\xec\x0a\x75\x96\xab\xa5\xa3\xb5\x79\x92\x7a\x06\x9a\xd0\xa1\x0c\xaf\xb1\x63\xed\x87\x26\x38\x19\x3c\xad\xb5\xbd\x9e\x38\x3f\x0d\xa1\x0b\x72\x66\x23\xb0\xc3\x77\x01\x0f\x09\xe3\x35\x24\x82\x9d\xad\x87\x30\x61\x76\x06\xfc\x5a\xf1\x49\x43\x46\xbe\x76\x86\xd4\x87\x7d\x3c\x34\xa6\x61\x21\x1e\x05\x8f\x39\x50\xad\xe7\x85\xc8\x74\xfa\x51\x9a\x50\x19\xdb\xda\x20\xdc\x87\xc9\x13\x02\xfd\x70\xce\xcd\xd3\x2e\xe8\x1a\xde\xc3\x54\x0b\xb6\xf2\x29\x7d\xd4\xb0\x4f\x0d\xf5\x94\xf8\xdc\x6b\xa8\xd7\x94\xcd\x25\xb3\xe6\xde\x84\xbd\xc0\x89\xa5\x5f\x90\x0b\x92\x54\x81\x29\x76\x1e\xd3\xea\xa1\x6c\xd5\x3a\x14\x03\x73\x06\xfc\x72\xc3\x48\x50\x2f\xb5\xe1\xb3\xf6\xcb\xeb\x04\x72\x16\x8e\x49\x4b\xc7\x28\xe2\x0a\x0b\xa0\x43\x12\xaf\xdd\x7b\x34\xda\x95\xf7\x66\xfb\x06\xdb\x78\x17\x7b\x6d\x5f\x34\x5d\x94\x95\x74\x9e\xda\xdf\x99\xca\x17\xd2\x96\x46\x2e\x49\x8d\x5a\x4a\xf5\xa2\x02\x08\x35\xd9\xfc\xc1\x4c\x05\x10\x83\x95\xcf\x02\x55\x36\xcf\xbf\x5a\xdf\x05\x00\x14\xb1\x12\x5e\xcf\x7c\xca\x66\xfe\x6b\xc6\xf0\x30\x13\x7c\x87\xc7\x7c\x9d\xa3\x31\x4d\x4d\xa7\x24\x85\xa5\x84\x0c\xd2\x1b\x74\x09\xc4\xa6\xeb\xd2\x6c\x46\x01\xfb\xeb\x42\x9a\xce\x63\xeb\x04\x70\xbf\xd4\x2f\x0b\xf9\x5e\x69\x9b\x4d\xaf\x7d\x7f\x58\x0c\x29\x75\xdb\x0b\xa7\x22\x46\x7f\x78\x03\x87\x36\xf9\xfc\x6b\x12\xff\x90\xd7\x42\x94\x18\x7b\x55\xe6\xbe\x51\x11\x97\x0b\xf9\x1f\xa6\x7b\x50\xc9\xda\xc9\xc0\xab\x35\x2e\x61\x18\x41\x08\x96\x7c\xc2\x42\xbf\xfb\xc7\x97\x9f\x5e\x22\x0e\xbd\xd4\x20\xdc\x38\xa9\x1e\x20\x8e\x08\xbc\x4c\x53\x88\x44\xdb\x16\x38\x32\x0a\xff\x09\xde\x07\xcb\xa1\x4b\xdd\x52\x56\x4d\x8c\x21\x0b\xbd\x6f\x06\x7b\xe7\xf3\x8c\x45\xbc\x88\xb6\x67\xd6\x96\xa3\x6d\xcc\x9e\x7e\x34\x7c\xa8\xe0\x66\x2c\xad\x76\x2e\x6c\x73\xe1\xcc\x77\x8e\x9d\xaf\x32\x5f\x4c\x13\x00\x58\x73\x57\x17\x86\x71\xe4\xa1\x38\x39\xbd\x10\xbb\xb7\xf3\xdc\xe3\x56\x96\xcd\xdf\x38\xc9\x4b\x2e\xf9\x4e\xc4\xec\x05\x64\x4c\xbd\xb0\x83\xbf\x90\xd9\x6a\x9a\xee\xd7\x05\x51\x3c\x99\x4e\x99\x82\x80\xd1\x81\x53\x6e\x19\x37\xaf\x49\x07\x3a\xbb\xf3\xa2\xd5\x6e\xeb\xb8\xbe\x71\x5f\x1a\x6e\xb0\xa0\x8f\xcb\xf5\xce\x6d\x15\x22\x54\x65\x52\xe7\xfa\x7e\xc2\x56\x39\x97\xa0\x3d\x11\x87\x46\x95\x5f\x9d\x70\x79\x46\xfe\x24\x9b\x42\x21\x79\xba\x07\xec\xf8\x64\x21\x91\x6c\x0a\x58\x89\xf7\x51\x9a\x44\x6c\x93\xf3\x6c\x5b\xb3\x83\xc4\x83\x90\xc5\x25\xb1\x2b\x58\x90\xfa\xa9\xa1\x65\xc7\xd6\x70\x12\xe7\xde\xbc\x6a\xed\x70\x4f\x43\xe1\x3d\xac\x98\xa8\x42\x37\x6a\x0b\x6a\x75\x13\x7c\x42\x52\x68\xc0\xc7\xc5\xfe\x52\xae\x54\x6a\x09\xcd\xe6\x6f\x98\xca\x41\x4b\xa0\x50\xf4\xa7\x24\xee\x3a\xc5\x12\x19\x8b\x2f\x27\xb1\x0a\xf4\x1f\x48\xd6\xbc\x33\x9f\x09\x28\xeb\xeb\x8d\x85\x55\x94\x0b\x73\x58\x14\xf6\x06\xd7\x78\x4a\xd7\x11\x76\xb3\xb4\xd8\x02\xec\x0d\x01\xd7\xbe\x53\x77\x7c\xcf\xa2\x2d\x97\x9b\xe0\x0a\x0d\x28\x24\x91\xa9\x1c\x35\xf7\x1e\x80\xbe\x4b\xe5\x36\x6b\x93\x72\x11\x09\xf5\xed\x1c\xde\x08\xb6\x54\x36\xe1\x90\x6f\x36\xb9\xd8\x40\x22\xfd\x42\x56\xb2\xa9\x81\xba\xcc\xd2\xfd\xe3\x77\xfa\x92\x51\x9f\x86\xd1\xa1\xeb\xd6\x52\xe4\x7b\x97\xca\x47\x82\x95\xae\xeb\x1a\xdd\x3a\x61\x89\x98\x4e\xd8\x0f\x1e\x60\x2a\x22\x25\x5d\x2e\x60\x47\x22\x58\xcd\x35\x7d\x60\x2f\x6a\xa1\x7e\x68\xaf\x3b\xfc\xd6\x90\xbd\x6c\x9d\x34\xbd\xc9\x94\x05\x2f\xca\x11\x7b\x25\x49\x1b\x5f\x98\x97\x6f\xf1\xdd\x5e\x0c\x36\xcf\xcc\xf6\x66\x69\x77\xcc\xf3\x66\x87\x37\xdf\xf6\xb4\xbc\x6d\x7d\x7d\xd0\xd1\x99\xaa\x6e\x47\xe7\x53\x98\x94\x96\x5b\xe1\xb0\xaf\x33\xed\xe0\x0b\xe8\x69\xd3\x58\x57\xa6\x05\xa3\x12\xcc\x5c\xd7\xaf\x5b\x2d\x3b\x40\x96\xab\xb8\x8c\x44\x6c\x56\x2e\xd8\xed\x88\xdc\x70\xb4\x05\x95\x4d\xb2\xed\x40\xa8\x70\xaf\x80\xc0\xf5\xd7\xba\x1b\x0f\xa2\xbb\x75\xdd\xff\xb1\xe3\x5e\x6c\x2d\x93\xb6\x4e\x0f\xd7\x27\xf6\x53\x3e\xf2\x9c\x72\x9f\xaf\x92\xd4\xaa\x3c\xd9\x24\x92\x17\x2a\x67\xdf\xb9\xe4\xc4\x97\x4e\xd9\x06\x7a\xf1\x29\xb6\x89\x4a\x17\xe1\x36\xd1\x7e\xf7\x02\x3c\xb3\x88\x97\xe3\xb8\xb3\xc6\x32\x3c\xc3\x24\x35\x4f\xe9\x82\xef\xb2\x90\xf6\xd1\xe9\x06\x53\xcf\xa4\xd8\x09\xcc\x56\x0c\x7c\x7c\x89\xf6\x39\x58\x0b\x49\x9e\x71\x1c\x37\x95\x87\xbc\xc5\x9d\x67\x73\x56\x16\xcb\x23\xa9\x4c\xf0\xe5\x71\x0e\x12\x0a\x97\xbf\xe7\x59\x3f\x39\x04\xa7\xab\x31\x26\xa1\x38\x31\x65\x6b\xa9\x54\xe7\x67\xbf\x32\xc0\x48\xb2\xca\x7a\x88\xf7\xe6\x9d\x0d\x68\xf8\x7b\x4b\xe5\x22\x00\x03\x81\x2c\x79\x1a\xac\x0a\xbc\x82\xba\x6d\xcd\x9c\xe2\x96\x51\xe2\x22\x55\x65\xcc\x68\x53\xa3\x70\x71\x3e\xc5\xd3\x11\x68\x2b\xa7\xd3\x2e\x0e\xaf\x91\x8a\xa5\x6e\xff\x81\xf7\xda\x57\x20\xfc\xd6\xb1\x03\xf7\x2e\x7d\xea\xd9\x67\x1b\x7a\xea\x69\x18\x7b\xb7\x1d\x8f\x1a\x7b\xe7\xad\x05\x0e\xad\x71\x8e\x3c\xb8\x37\x25\x71\x0a\xeb\x2d\x74\x74\xb7\xb0\x7c\x56\x02\x88\xfa\xfe\xe4\xcf\xd9\x4c\xdb\xfe\x4f\x65\x3c\x17\xb2\x58\xc2\x17\xc7\x7d\x0c\x3e\xf2\x01\x5e\xaf\x18\x4c\x83\x1c\x96\xff\x76\xa7\xd0\x0f\x6d\x09\x33\xfe\x9d\xdd\x92\xef\x45\x5b\x55\x7b\x73\x3a\x7e\x97\x00\x36\x26\x88\xd9\xb9\x81\xeb\x18\x2e\x6a\xd0\x11\xbd\x17\x34\xa8\xb2\xb5\x0f\x6a\x90\xaf\x3d\x84\x54\xa1\x14\x72\x43\x51\x86\xa7\xd9\x6a\xed\xdf\x02\x12\xed\xab\xca\xbf\x81\xf0\xd0\x8c\x5f\xca\xfe\x53\xe4\xca\xa7\x2d\xa0\x53\x25\x2c\xb8\xd7\x5e\x3f\x5e\xff\x13\xed\x71\x54\x9e\x0c\xa5\xd7\xe0\x2f\xc4\x49\x82\x37\xdf\xd5\xde\x5e\x47\xba\xe8\xd4\x45\xb4\xec\xe0\xd9\x1f\x54\x95\xe0\xe2\x19\xf2\xe6\x27\xb5\xc3\xcc\x2e\xd0\x73\xb8\x57\x13\xeb\xdf\x8e\x67\x84\x43\x23\xc8\x6b\x3d\xc8\x30\x85\x46\xfc\xdb\x5f\xff\x7d\xda\xa5\xec\x0c\x55\x1f\x0b\xeb\x71\x95\x7f\x9b\x27\x42\xc6\x10\x34\xe4\x71\x53\x02\x46\x56\xbc\xc8\x95\xed\xd9\x4c\xc3\x27\xc9\xee\x6b\x3f\x6a\xf5\x12\x27\xd1\x57\x88\x3c\xfb\x4d\xd6\x2d\xdf\x4a\x5c\xaa\xcb\x94\xd0\xcb\x78\x2f\xf9\xae\xa9\x85\xfd\xac\x75\xdc\x27\x22\x8d\xa1\x8a\xf4\xf5\x43\xd1\x93\x58\x44\xf7\x63\x6d\x82\xa3\x09\xac\x45\x74\xcf\x7e\xba\x7b\xff\x0e\xf5\x0a\x13\xbd\x90\x57\xbc\x48\x1e\xc4\xc7\x3c\x75\x6e\x6b\x62\x24\xc9\x53\xbb\x46\xaa\x84\xaa\x01\x79\x87\x65\x5f\xb5\x86\x43\xc8\x77\xbd\xdb\x9f\xad\xca\xe8\x5e\x14\xe7\x39\x97\xb1\xda\x61\x33\xce\x75\xb9\x5e\x27\x5f\xa6\x05\xcf\x3b\xc8\xaf\xd1\x8f\xf0\x0d\xed\x5c\x2f\x69\x52\x78\x9b\x17\x4d\xdd\x47\xc8\x4e\x24\xa1\xdc\x8a\x71\x0b\x57\xe0\x9c\xef\x04\xb0\x97\xb1\x2a\x71\x3c\x94\x82\x09\x7f\xa0\xaf\xa6\x35\x21\xbd\x15\xa9\xb7\x7e\x0a\x8c\xfb\x4f\x41\xad\xaa\x0a\xc2\xb6\x52\x5e\xb3\x6c\xc7\xef\xf1\x7e\xb8\xc9\x85\xd6\x13\xa6\x15\xd4\x78\x21\x2d\x66\xda\xe6\xf5\x00\x3e\x03\xf8\x0f\xd3\x3d\x8b\x54\x96\x80\xc4\x9b\x6b\xd7\x56\x3d\x82\x3f\x39\x4c\x6f\x03\x55\xce\x52\x16\x49\xca\xf8\xba\x20\x67\x33\x90\x3d\x5b\x71\x17\x3d\x5d\x48\x08\x19\x46\xd0\x7c\x08\xe5\xbb\x30\x81\x6b\x84\x66\x6b\x1e\x25\x69\x52\x10\x05\x0d\x24\xc3\x70\xd3\x5e\x73\x1e\x98\xbe\xcc\xf9\x9e\xa7\xfe\x62\xc5\xd3\xd2\x67\xf4\x9d\x69\x51\xa7\x38\xfb\x5d\xf8\xbf\x95\x7b\x6e\xdf\xa9\x7b\xc2\x85\xf7\x94\xc3\xa7\x79\xa5\x75\x8a\xa3\xfe\x1c\x4f\x62\x8b\x13\xad\x98\xba\x9e\x79\xd6\x1d\x3f\xe0\x3b\xef\xb8\x54\x4f\xad\x4e\x4c\xf3\x0b\x23\x7a\xaf\xdd\x08\xfb\x4a\xee\x82\x2e\x0e\xdc\x21\xd5\xb7\xde\xee\x0f\x4a\xa5\xa7\x7a\xbc\x79\x6a\x37\xd4\x25\x48\x27\x9e\x72\x5d\xc3\x09\xe0\x1c\x47\xf3\x37\x2e\xf6\xea\x48\x65\xab\x82\x2b\x04\x0b\xa2\x2a\xc0\x46\x01\x95\xe8\x41\x0c\xeb\xac\x25\xf8\x3e\x12\xf9\x0c\x65\x20\x6a\xc7\x9a\xce\x4d\x17\x7c\x90\xcb\xce\x7d\x1d\x81\x78\xaf\x56\xc3\x51\xce\x30\x14\x3a\xac\x7d\xca\x39\xc6\x42\x82\x4e\xd7\x8f\xc1\xb7\x6d\x7f\xa2\xbc\xb2\x39\x9f\xc8\x4a\x5e\xc8\xc0\x22\x46\x56\x1d\x0b\x2d\x77\xbd\xd6\xe6\x2f\xab\x4c\xc3\x93\xfd\x65\xa7\xb0\x30\xf7\x06\x54\xde\x84\x7a\x4a\x80\x09\x88\xd4\x6e\x95\x48\x9b\xaa\x4c\x4e\x64\x30\xe5\x67\x96\xe4\xce\x39\xfc\xad\x49\x8e\x2c\xfb\xb5\xbe\x77\x66\x44\xc8\x17\x18\x6e\x59\x87\xae\xbb\xe1\xfd\xe9\x69\x09\xa3\x3b\x50\xaa\xf5\x16\x24\x9a\xf1\xf4\x91\xef\x35\x68\x8e\x0a\xb3\x2b\xae\xd1\x71\x5a\xad\xff\x24\x38\xde\x2d\x81\x22\x09\x78\x97\x24\x45\x4c\x6d\x49\x90\xbf\x41\xa4\x56\x5d\xd5\xf3\xe2\xbc\xd0\xed\x9d\xf3\x6d\x62\x21\x79\x6f\x2c\x04\x83\x91\xff\x33\xc2\x1f\x3d\x4e\xd6\x13\x7d\xbd\xc1\x31\x89\x16\x19\xc1\x45\x20\x81\x07\xb6\x63\xf3\xed\x09\xdb\xf1\x44\xd2\x32\x40\x05\xab\x58\xac\xca\xcd\xa6\xd3\x05\xf9\xeb\x8f\x65\x54\xd7\xc9\xdf\xbd\xaf\xb9\x97\xd9\xe9\x29\xbc\xb1\x73\xfb\x25\x74\x0f\x9b\x7b\xd5\xd7\x71\xc0\x7e\x43\x6f\x77\x6b\xc8\xa9\x31\x89\x9e\xc6\xdb\x3d\x1f\xe2\xed\xb6\x18\x1f\x48\xb5\xa2\xeb\xaa\xc5\x61\xfc\xe6\x06\xff\x3a\x6e\xf0\x41\x93\x02\xe9\x3d\x96\x49\xd5\x40\xef\xa9\xe1\x91\x2c\x61\x8e\x4e\x12\x6a\x45\x6a\xe0\x5a\xc8\x58\xb3\x15\x8f\x9e\x81\x36\x0c\x4e\xc7\xd3\xfd\x6d\x07\xc0\x25\xb7\x6a\x27\x18\x7c\x4a\xa3\xf6\x01\xa3\x6c\xb6\x09\xa0\x16\x4d\x03\x3d\x22\x83\xf0\x1e\x70\x9c\x22\x32\x24\xf6\x46\xf5\x77\x52\x3c\x32\x73\x5a\x4d\x42\x18\x57\x30\x3c\x20\x8a\xf3\xd2\x58\x87\x15\xcc\xb7\x4b\xdd\xcf\xc5\x86\xe7\x31\x64\x1a\xd0\x92\x4c\x79\x74\x6f\xfe\x1b\xea\x47\x5f\x24\xa8\x99\xe5\xe7\x46\xf8\xa3\x2f\x2d\x91\x51\x0e\xa4\x4c\x84\x6a\xf3\xf5\xc3\xd7\x35\xe3\x51\xae\x34\x3a\x65\x9c\x96\x24\x64\xba\x82\x01\xfb\x90\xc4\x25\x4f\xf1\x8b\x9d\x9e\x6c\xae\x4f\xe2\x1b\x9f\x05\xb2\x2f\xe2\x4b\x96\x72\x59\x5d\x93\xd8\x5c\xe0\xaa\x49\x7a\x66\xbe\xa3\x5c\x3b\xa5\x2a\xa3\xa9\x23\xe7\x81\xe2\xaa\x5f\x56\x68\x1d\xe7\x82\xc7\xfb\x90\x98\x2a\x91\xa4\xbb\xcf\xe3\x5d\x22\xcd\xd0\x5b\x55\x2f\xb7\xbf\x5a\x82\x5f\x04\x5c\x82\xf8\x45\x9a\xd6\x96\xbe\x66\x52\x18\x93\x8a\xe7\x49\xba\x07\x2b\x3a\xcb\xc5\x59\xf0\x9d\x60\x7d\x53\xbe\x07\x50\x15\x13\x89\x42\xa9\xc5\xba\x4c\xd1\xd6\x86\xdb\xa8\x6b\x00\xad\xc3\x8f\xf3\x89\x39\x66\x0b\xa2\x9c\x0f\x3e\x8c\x42\x4e\x4f\x81\x9d\x6f\xc4\xc0\xc6\xc5\x71\x3c\x71\x5a\x0e\x10\xdf\xad\x7a\xb4\x89\x3e\x8f\xdc\x23\x39\xbb\xce\x94\x27\xf3\xdd\xf7\x5b\x5f\xf6\xde\x63\x57\x27\x76\x7e\x5c\x09\xd8\xd0\x6f\x22\x76\x2b\x32\x91\xd0\x1c\xd2\x42\xf4\xfe\xd0\x52\x63\xbe\x90\x19\x4b\xd8\xb5\xed\xf5\xbe\xea\x0e\x65\xae\x75\x89\x56\x92\x2d\xca\xdf\xff\xfe\x0f\x82\xfd\x1e\x12\xa8\xc8\x0a\xc7\xa8\x0b\x50\xa7\x61\xe9\xb0\x51\xb9\x0f\x08\xe4\x55\x6b\x8c\x08\x6b\x03\x3e\xda\x6c\x65\x80\x0e\xf2\x68\xcb\x74\xb9\x42\x5c\x1c\x27\xc7\x3d\x97\x8e\x99\xf4\x9d\x02\x88\x1b\x9e\x67\xb6\xf6\xff\x4b\xdc\xd4\xc8\x0e\xbe\x90\x99\x42\xf2\x5c\x00\x14\xae\x04\xdb\xf1\xfc\x1e\xc4\xde\x48\xd1\x9b\xf1\x82\x7d\x97\x88\x69\xd5\x69\xfd\xb2\x52\x1f\x0a\x13\x20\x29\x26\xcb\x4b\x29\xad\x7a\x05\x33\xe6\x98\xf7\x20\x4f\x16\x72\x55\x86\x37\xae\x8a\x0b\xda\x4f\x2d\x70\x43\xc3\x66\xab\x80\x29\x81\x2a\xc5\x75\xa0\x34\xce\x06\xf8\xa2\x17\xf2\x99\x9c\xd1\x5d\x6e\xae\x0f\x64\x79\x58\x17\x56\x80\xd6\x86\xe6\x86\x02\x8b\x30\x1c\x38\xed\xe1\x68\xff\x00\x2a\x8b\x13\xf6\x53\xf2\x20\x26\xec\x36\xe3\xf9\xfd\x84\xbd\xc1\xa0\xd2\x9f\xd4\xaa\xcd\x73\xd5\x48\xa7\x3f\xd9\x7b\x75\x9c\xf3\x66\xb0\x54\xbb\xb3\x79\x7f\x69\xea\xb0\x77\x45\x54\xff\x67\xe2\xbc\x3a\x98\x0e\xfe\xde\xef\xdf\x07\x82\x9f\xbf\x41\xa2\xfe\x2e\xef\x82\xfd\x24\x07\xbf\x0b\xff\xd7\xee\x5f\xd6\xe2\x02\xdb\x93\x76\xb9\x56\xac\xd3\xaf\x2b\xad\x33\x89\xeb\x87\x72\x33\xbb\x73\xd8\x52\xa0\xe4\xd9\xd8\x25\xf6\x8e\x80\x72\xd3\xab\xb6\xbf\x2e\x52\xa5\xcb\xbc\x7f\xf1\xdf\x54\x6b\x6d\xbf\xde\x42\x74\x08\x93\x6d\xb7\x12\x90\xb3\x3d\x14\xd4\x80\x8f\x2d\xff\x43\xad\x96\x80\xe0\x39\x6d\x85\xb7\x15\x67\xa5\x53\x5c\x1c\x88\xaa\xea\x4f\xc8\xdb\x4c\x00\xdf\x8e\x37\x45\xbd\x1b\xbc\x36\xc3\x9c\x43\x60\x21\x2d\xfd\x30\xe6\x0b\xe6\xb9\x00\x9e\x54\x73\xef\x7d\x10\x39\xcb\x78\xee\xc2\xe8\xd6\x22\x0a\x6e\x3e\x1e\x6a\x11\xe6\xf8\x40\xaa\x1e\xdd\xb7\x56\x42\x48\xd7\xdb\x63\x4c\x09\x63\x1d\xd4\x7b\x9f\x30\x54\x8f\x82\x45\x08\xcf\xef\x50\x2f\x6b\xbc\x17\xdc\x05\xc1\xe4\xde\x88\x22\xd8\xcd\x6b\xa6\x45\x65\x69\x56\xe2\x32\xbf\x2a\x1c\x79\x6b\xe4\xb5\x46\x4d\x54\x71\x1b\x0c\x8a\x64\x3d\x85\x97\xf8\x03\x2f\xb6\x78\xa1\xdd\xa9\x82\x64\xe4\x91\x23\x05\xe7\x0b\xfa\x5a\x57\xa9\x5a\x81\x14\x8f\xf9\xa5\xeb\x6e\x18\xd1\xd2\x1e\xd4\x75\xcd\x01\x1b\xb2\x33\x98\xdd\x04\xf2\x0c\x73\xa1\x81\x6e\xa2\x19\x9b\x19\x8a\x7a\x1d\x77\xe9\x6e\x56\xd7\x6c\xfa\x6f\x1a\x97\xed\x26\x3f\xb9\x59\xd6\x00\x81\xbc\x3c\x22\x2f\xe3\x32\xcc\xd5\x33\xc6\x01\x51\xb5\x52\xf0\x13\xd9\x1a\x6b\xed\xb5\x8a\xaf\x0b\x39\xc3\x5f\x82\x43\x80\x7b\x1d\x0e\x87\x32\x24\x71\x3f\xb7\xfe\x30\x79\x8f\xcd\x42\x5c\x1b\x79\x08\x26\xde\x83\x07\x97\x81\x09\xe4\xca\xc9\x22\xc9\x05\x93\x10\x7b\x5f\x48\x5d\xae\xce\x3c\x2d\x83\xb9\xc5\x3d\x00\x95\x88\x16\x19\x87\xab\x0c\xb0\xb5\x9c\xb5\x1c\xc3\xe8\x8f\xf3\x7c\xfa\x96\xbe\x8c\xa7\xb4\xf9\x43\x06\x1e\xe6\x05\xbb\xb6\xbb\x72\xcc\x65\x0d\x6e\xd1\x36\x27\x15\x0f\xbb\xbe\xfd\x02\x14\x3f\x20\xaf\xef\x06\xb1\x03\xdf\xfa\x00\x0f\x63\x80\x43\x8f\x6e\x88\x22\x2d\xe4\xff\xb5\x67\x43\x37\x54\x75\xc4\x4c\x37\x3d\x63\x8e\xa8\x4e\x08\x6d\xa5\x6e\xf6\x0a\x19\x18\x81\xdd\x95\x6a\x4c\xf9\xb6\x52\xb9\x45\x73\x84\xfc\xf6\x8a\x92\x30\xe1\xd7\x87\x44\x07\x64\xc7\xf0\xb5\x5b\x21\xd8\xab\x5c\xac\x5f\x7d\xca\xc5\x7a\x69\x47\x7a\x0a\x0d\x9a\x9a\x16\x35\x29\x8f\x07\x4e\x0e\x9d\x29\xd9\x4e\xfd\x76\x80\x9a\xb1\xd6\x24\x2c\x27\x68\x53\xb2\x66\x5e\x06\xcd\xb4\x07\xf2\xdf\x45\x5c\xe7\x62\x6e\xd4\xec\xab\x1f\x73\x5d\xf8\xa7\x01\x00\xa3\x0e\xf9\xb0\xbf\xff\xe3\xad\xd2\x67\x43\x8e\xb7\xbb\x2a\x50\xc4\x6e\xf6\x5c\xba\x03\xaf\x1b\x50\xfc\x75\x31\xcf\x30\x80\x3a\xe3\x8f\x92\x58\x3c\x46\xb9\x9e\x86\x1d\x6b\xed\x42\xe6\xe6\x58\x6b\x20\xbf\xfc\x2a\x93\xd6\xd3\x97\x38\xad\xad\x49\x20\x53\xcb\xd3\x34\x64\x94\xf7\xf1\xa5\x85\xf4\xd9\x8e\xc6\x6a\x4d\x53\xeb\xc2\xab\xd8\x1b\xc4\xd9\x12\x43\x9a\xa9\x98\x58\xca\x09\x22\x6b\xa3\x28\xd0\xd9\x8a\x83\x06\xa2\xd3\x59\x39\xb4\x9a\x9f\xea\x12\xf9\x2b\xcb\xb6\x3d\x10\x6f\xc5\xcf\x2e\xef\xc5\x7e\x74\x5d\xdb\x23\x1d\x5e\x82\x71\x0b\x8b\xd9\xee\xb2\x11\xcf\x73\x8b\x1d\xa7\xaf\x32\x73\x57\x5a\xf3\xa8\xe2\xe6\xec\xa8\xe7\x56\x44\xf7\x99\x4a\xe4\xe8\xbd\x28\xa8\x8f\x31\xa4\x0a\x73\x9e\xf9\xd2\xdc\xed\x70\xd0\xe1\x58\xb1\x27\xb1\x21\x1a\x40\x05\x16\x10\xe9\xa9\xa8\x38\x73\x1a\x93\xdd\xd3\xee\xa9\xfd\x17\xc2\x9f\x0d\xcf\xe0\x8b\x6d\x89\x0f\xd5\x4e\x15\xde\xe2\xd8\xa9\xf0\x20\xf2\x46\x4e\xd1\xc0\xce\xe6\xac\x42\xe0\xd6\xda\xa5\xe0\x82\xfc\xcd\x33\xf4\x9b\x67\xe8\x7f\xb8\x67\xe8\x6b\xba\x85\x00\x11\xf2\x9c\x3e\xa1\x9e\x00\xf9\x09\xcb\xd1\x7d\xf5\x54\xc1\x65\xb4\x8e\x27\x81\x30\x68\x90\x3f\xd7\x84\xb7\x5b\x7a\x85\x02\x64\x95\xa3\x7b\x21\x3b\x63\xf4\x96\x14\xa7\x53\x3d\xf6\xa9\x60\x9f\xdd\x9c\x3e\xc1\xdb\xfd\x1c\x69\x1e\xe0\x43\x94\xa9\x6d\x34\x13\x66\x9d\x80\xed\x69\x1a\x7e\x06\x50\x29\x95\x3b\x5a\x5f\x4d\xb9\x5d\x18\x8c\x44\xf2\x1d\x84\x08\xd5\x88\x70\x87\x22\xc1\xec\x87\x97\x99\x52\x69\x2b\x20\xec\x49\x3b\xb0\x91\x1e\x32\xb4\xf3\xe6\x68\x8c\xea\x10\x26\x65\x7b\xd1\xa7\x1a\xf8\xc4\x04\xcc\x42\x00\x25\x00\x98\x4d\x71\x09\x19\x7a\xbe\x3b\xa6\x3e\xaf\x87\x3b\x87\x0b\x21\xa3\x56\x22\xe2\xa0\x82\x67\x21\x6b\x11\x77\x39\x17\x21\xd5\x4e\x23\x09\x42\x37\xbf\xd3\x11\xb5\x84\x72\x97\x49\x1b\xed\xff\xd8\xc5\x55\xb3\x10\x2c\xa0\x1a\x6b\x6e\x91\x24\x96\x74\xee\x90\xe8\xa1\x65\xd8\x5d\x46\x29\xd7\x03\x0d\xeb\xd6\x7d\x67\x4e\x05\x5d\x40\x39\xc3\x37\xd2\x9f\x20\x09\x65\x37\x10\xb9\xb3\x90\x33\x27\xfa\xe7\xb1\x5f\x0e\xaf\x86\xe1\x52\x44\xea\x35\x86\x06\x99\xec\xfc\xcd\x65\xc2\x74\x19\x6d\x81\xab\xaf\xba\x4f\x85\xfb\x56\x73\xc5\x4e\x16\xd2\x5c\x88\xc0\xd5\xb2\xe3\x90\x6d\xfd\x68\x8c\x55\x9d\xfc\xa7\x70\xf0\x2c\xa2\x84\x0a\x11\x59\x78\x71\x52\xb2\x15\xbd\x66\x69\x13\x11\x60\xe1\x31\x25\x65\x16\xf3\x42\x4c\x17\x1e\x6d\x93\xa0\xa7\xd3\xa2\x3c\xc8\x64\xd6\x61\xc3\x42\xf4\x5e\x6d\xa7\x4d\x93\xb5\x88\xf6\x51\x43\x05\xa5\x9f\x7c\xe0\xb7\x6b\xdb\xaf\xeb\xda\x86\x1c\xa3\x98\x29\x37\xa6\x6b\xa9\xaa\x37\xfe\xf5\xd3\x3a\x57\xb0\xa0\x26\x7a\x44\x3f\x7f\xc5\x6b\x67\x8b\x0d\x3c\xce\x9e\x1f\x7c\x0f\xea\x3f\xce\xfc\xc5\xd6\x1f\xd6\x41\x62\x7d\xc3\x2c\x0c\x83\x8b\x45\x38\x75\x8c\x41\x3b\x38\xac\xdf\xcd\x5d\xf2\xab\x02\x27\x0d\xb9\xb8\x1a\x8b\xdb\xc1\x95\xae\xac\xa5\x2d\x05\x9e\x77\x3d\x16\x77\xc0\x69\xcd\x8b\x17\xda\xf5\x7a\x75\x07\xb4\x88\xf7\x77\x89\x2e\x7e\xae\x29\x26\x1e\x27\xb9\xf8\x6c\xa6\xa9\xad\x2a\x56\x73\xa8\x45\x75\x53\xb5\x79\xd4\xda\xce\x39\xb8\x3c\x59\x8d\x2c\x53\xef\x31\xf7\xa0\x4f\xae\xbf\x3e\xe1\xd1\xf4\x98\xf3\x2c\x13\xb9\x3d\xc8\x1b\xb6\x16\x08\x4e\xc1\x57\x40\x31\x6e\x2b\x50\xb6\xb6\x76\xcb\x35\x5b\x49\xad\x68\x78\x0c\xba\x6e\xda\x3e\x72\x57\x65\x9a\x76\x8e\xdc\x61\x1d\x9b\xab\x8f\xef\xde\x2d\x7f\x9e\xbd\xfb\x78\x69\x9b\xdf\xaa\x0b\x13\x3c\xd6\xd9\x27\xae\x26\xd4\x27\x5e\x79\xce\x7c\x56\x58\xe9\x5c\xe5\x5b\x8d\x4e\xae\x32\x4d\xab\x9a\x41\x0b\xf9\x89\xca\x01\x98\x36\xea\x21\x9a\x7e\x63\xbd\x1d\x57\xfd\x3e\x3c\xf6\xc9\x14\xfe\x09\xdf\x3d\x63\xbe\x11\xaf\x40\xd9\x8e\x14\xb3\xda\xfb\x95\x72\x40\x4e\x58\x0e\x08\x06\xee\x5a\x0e\x4f\xad\x8a\x76\xdc\xf2\xf8\x28\x81\x8f\x59\xc4\x56\xcc\xec\x49\x56\x07\xf6\xdd\xa7\x6a\x9c\xda\xed\xe5\x31\x5e\x69\xa0\xdc\x09\x6a\x59\x81\x42\xaf\x97\x7b\x5a\x48\xf4\x81\x9a\x3a\x15\xaa\xbb\x4e\x6c\x4e\xe6\x6d\xca\xe5\xa6\xe4\x1b\x63\xdd\xda\x8f\x2f\xe4\x2e\xd9\x6c\x91\x5d\xa2\xcc\x3c\x3e\x99\x33\x09\x24\x24\xb5\x29\x54\xc3\x27\x27\x72\x21\xa9\x4d\x72\xe3\x8b\x47\xac\xec\x9f\x6e\x5d\x73\x08\x94\x8e\x05\x91\x1c\x97\x5c\x48\x1c\x5c\x64\xbd\xb0\x91\x10\xb8\xb1\xf0\xa2\x3e\x75\x39\xc4\x2e\x51\xb2\xda\xec\xe9\x1b\x88\xc9\x2c\xa4\x4b\x4c\x45\xcf\x11\xb5\x21\x90\x6d\xc0\x2a\x1d\xde\x4f\xec\x60\xd8\x35\x41\x75\x6b\x9f\xf5\x27\x9f\x01\x66\xc1\x2d\x47\x68\xef\x36\xb7\xb1\x81\xde\x42\x1e\x6c\x1c\x5d\x6c\x05\x90\x8d\xdc\x5e\x1b\xdb\x2e\x7c\xa6\x13\xda\xaa\xca\x55\x3a\xa2\x4a\xf8\x7c\x6f\xa5\x70\x4b\xee\xaf\xd4\x80\xeb\xf0\x4d\x6d\x69\x99\x69\xda\xf7\xd9\x95\x52\x1d\xe3\xf2\x84\x01\xc5\x4a\xa5\xe8\x85\x43\x9d\x51\x46\xc5\x31\xf3\x65\x40\x8a\x5e\xbd\x8b\xec\xee\xd3\x57\xa1\x34\xd1\x47\x55\xc7\xdb\x4f\x83\x6b\xe4\x2c\x04\x3a\xec\x46\xed\xb0\x74\xce\x55\x36\xd8\x8e\x6d\x92\xe2\x49\x56\xc4\x36\xc1\xed\xc5\x2c\x1e\x54\x98\x35\xf3\x7f\xe2\x26\xd1\xc4\x8f\xdc\x04\x2a\x19\x95\xb9\x36\xdb\x25\xed\x77\xb4\x6b\xab\x9c\xf1\x85\xb4\x6a\x08\x76\x3b\x9e\x59\x70\x6e\xee\xfe\x8a\x69\x8f\x19\xb2\x89\x83\xc5\x5a\x30\x25\x85\xdd\x0d\x17\xd2\x2a\x1f\x4f\x18\x5f\x69\x2b\x28\xcc\xe5\xde\xa9\xfc\x26\x4e\xc2\x8d\x4b\x06\xa8\xe7\xc3\x7b\x5e\xcd\x0c\xa8\x9c\xf3\xbf\x33\xff\xf7\xdf\xbf\xfb\xff\x01\x00\x00\xff\xff\x8a\x19\x06\x09\xc6\xa9\x04\x00") func adminSwaggerJsonBytes() ([]byte, error) { return bindataRead( @@ -93,7 +93,7 @@ func adminSwaggerJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin.swagger.json", size: 306649, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} + info := bindataFileInfo{name: "admin.swagger.json", size: 305606, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/gen/pb-java/flyteidl/core/Tasks.java b/gen/pb-java/flyteidl/core/Tasks.java index 30f7fee2a..a7d7acf1a 100644 --- a/gen/pb-java/flyteidl/core/Tasks.java +++ b/gen/pb-java/flyteidl/core/Tasks.java @@ -3305,1578 +3305,6 @@ public flyteidl.core.Tasks.RuntimeMetadata getDefaultInstanceForType() { } - public interface GPUAcceleratorOrBuilder extends - // @@protoc_insertion_point(interface_extends:flyteidl.core.GPUAccelerator) - com.google.protobuf.MessageOrBuilder { - - /** - * string device = 1; - */ - java.lang.String getDevice(); - /** - * string device = 1; - */ - com.google.protobuf.ByteString - getDeviceBytes(); - - /** - * bool unpartitioned = 2; - */ - boolean getUnpartitioned(); - - /** - * string partition_size = 3; - */ - java.lang.String getPartitionSize(); - /** - * string partition_size = 3; - */ - com.google.protobuf.ByteString - getPartitionSizeBytes(); - - public flyteidl.core.Tasks.GPUAccelerator.PartitionSizeValueCase getPartitionSizeValueCase(); - } - /** - *
-   * Metadata associated with the GPU accelerator to allocate to a task
-   * 
- * - * Protobuf type {@code flyteidl.core.GPUAccelerator} - */ - public static final class GPUAccelerator extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:flyteidl.core.GPUAccelerator) - GPUAcceleratorOrBuilder { - private static final long serialVersionUID = 0L; - // Use GPUAccelerator.newBuilder() to construct. - private GPUAccelerator(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private GPUAccelerator() { - device_ = ""; - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private GPUAccelerator( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - device_ = s; - break; - } - case 16: { - partitionSizeValueCase_ = 2; - partitionSizeValue_ = input.readBool(); - break; - } - case 26: { - java.lang.String s = input.readStringRequireUtf8(); - partitionSizeValueCase_ = 3; - partitionSizeValue_ = s; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return flyteidl.core.Tasks.internal_static_flyteidl_core_GPUAccelerator_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return flyteidl.core.Tasks.internal_static_flyteidl_core_GPUAccelerator_fieldAccessorTable - .ensureFieldAccessorsInitialized( - flyteidl.core.Tasks.GPUAccelerator.class, flyteidl.core.Tasks.GPUAccelerator.Builder.class); - } - - private int partitionSizeValueCase_ = 0; - private java.lang.Object partitionSizeValue_; - public enum PartitionSizeValueCase - implements com.google.protobuf.Internal.EnumLite { - UNPARTITIONED(2), - PARTITION_SIZE(3), - PARTITIONSIZEVALUE_NOT_SET(0); - private final int value; - private PartitionSizeValueCase(int value) { - this.value = value; - } - /** - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static PartitionSizeValueCase valueOf(int value) { - return forNumber(value); - } - - public static PartitionSizeValueCase forNumber(int value) { - switch (value) { - case 2: return UNPARTITIONED; - case 3: return PARTITION_SIZE; - case 0: return PARTITIONSIZEVALUE_NOT_SET; - default: return null; - } - } - public int getNumber() { - return this.value; - } - }; - - public PartitionSizeValueCase - getPartitionSizeValueCase() { - return PartitionSizeValueCase.forNumber( - partitionSizeValueCase_); - } - - public static final int DEVICE_FIELD_NUMBER = 1; - private volatile java.lang.Object device_; - /** - * string device = 1; - */ - public java.lang.String getDevice() { - java.lang.Object ref = device_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - device_ = s; - return s; - } - } - /** - * string device = 1; - */ - public com.google.protobuf.ByteString - getDeviceBytes() { - java.lang.Object ref = device_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - device_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int UNPARTITIONED_FIELD_NUMBER = 2; - /** - * bool unpartitioned = 2; - */ - public boolean getUnpartitioned() { - if (partitionSizeValueCase_ == 2) { - return (java.lang.Boolean) partitionSizeValue_; - } - return false; - } - - public static final int PARTITION_SIZE_FIELD_NUMBER = 3; - /** - * string partition_size = 3; - */ - public java.lang.String getPartitionSize() { - java.lang.Object ref = ""; - if (partitionSizeValueCase_ == 3) { - ref = partitionSizeValue_; - } - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (partitionSizeValueCase_ == 3) { - partitionSizeValue_ = s; - } - return s; - } - } - /** - * string partition_size = 3; - */ - public com.google.protobuf.ByteString - getPartitionSizeBytes() { - java.lang.Object ref = ""; - if (partitionSizeValueCase_ == 3) { - ref = partitionSizeValue_; - } - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - if (partitionSizeValueCase_ == 3) { - partitionSizeValue_ = b; - } - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!getDeviceBytes().isEmpty()) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, device_); - } - if (partitionSizeValueCase_ == 2) { - output.writeBool( - 2, (boolean)((java.lang.Boolean) partitionSizeValue_)); - } - if (partitionSizeValueCase_ == 3) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, partitionSizeValue_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!getDeviceBytes().isEmpty()) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, device_); - } - if (partitionSizeValueCase_ == 2) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize( - 2, (boolean)((java.lang.Boolean) partitionSizeValue_)); - } - if (partitionSizeValueCase_ == 3) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, partitionSizeValue_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof flyteidl.core.Tasks.GPUAccelerator)) { - return super.equals(obj); - } - flyteidl.core.Tasks.GPUAccelerator other = (flyteidl.core.Tasks.GPUAccelerator) obj; - - if (!getDevice() - .equals(other.getDevice())) return false; - if (!getPartitionSizeValueCase().equals(other.getPartitionSizeValueCase())) return false; - switch (partitionSizeValueCase_) { - case 2: - if (getUnpartitioned() - != other.getUnpartitioned()) return false; - break; - case 3: - if (!getPartitionSize() - .equals(other.getPartitionSize())) return false; - break; - case 0: - default: - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + DEVICE_FIELD_NUMBER; - hash = (53 * hash) + getDevice().hashCode(); - switch (partitionSizeValueCase_) { - case 2: - hash = (37 * hash) + UNPARTITIONED_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getUnpartitioned()); - break; - case 3: - hash = (37 * hash) + PARTITION_SIZE_FIELD_NUMBER; - hash = (53 * hash) + getPartitionSize().hashCode(); - break; - case 0: - default: - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static flyteidl.core.Tasks.GPUAccelerator parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static flyteidl.core.Tasks.GPUAccelerator parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static flyteidl.core.Tasks.GPUAccelerator parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static flyteidl.core.Tasks.GPUAccelerator parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static flyteidl.core.Tasks.GPUAccelerator parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static flyteidl.core.Tasks.GPUAccelerator parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static flyteidl.core.Tasks.GPUAccelerator parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static flyteidl.core.Tasks.GPUAccelerator parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static flyteidl.core.Tasks.GPUAccelerator parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static flyteidl.core.Tasks.GPUAccelerator parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static flyteidl.core.Tasks.GPUAccelerator parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static flyteidl.core.Tasks.GPUAccelerator parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(flyteidl.core.Tasks.GPUAccelerator prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Metadata associated with the GPU accelerator to allocate to a task
-     * 
- * - * Protobuf type {@code flyteidl.core.GPUAccelerator} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:flyteidl.core.GPUAccelerator) - flyteidl.core.Tasks.GPUAcceleratorOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return flyteidl.core.Tasks.internal_static_flyteidl_core_GPUAccelerator_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return flyteidl.core.Tasks.internal_static_flyteidl_core_GPUAccelerator_fieldAccessorTable - .ensureFieldAccessorsInitialized( - flyteidl.core.Tasks.GPUAccelerator.class, flyteidl.core.Tasks.GPUAccelerator.Builder.class); - } - - // Construct using flyteidl.core.Tasks.GPUAccelerator.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - device_ = ""; - - partitionSizeValueCase_ = 0; - partitionSizeValue_ = null; - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return flyteidl.core.Tasks.internal_static_flyteidl_core_GPUAccelerator_descriptor; - } - - @java.lang.Override - public flyteidl.core.Tasks.GPUAccelerator getDefaultInstanceForType() { - return flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); - } - - @java.lang.Override - public flyteidl.core.Tasks.GPUAccelerator build() { - flyteidl.core.Tasks.GPUAccelerator result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public flyteidl.core.Tasks.GPUAccelerator buildPartial() { - flyteidl.core.Tasks.GPUAccelerator result = new flyteidl.core.Tasks.GPUAccelerator(this); - result.device_ = device_; - if (partitionSizeValueCase_ == 2) { - result.partitionSizeValue_ = partitionSizeValue_; - } - if (partitionSizeValueCase_ == 3) { - result.partitionSizeValue_ = partitionSizeValue_; - } - result.partitionSizeValueCase_ = partitionSizeValueCase_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof flyteidl.core.Tasks.GPUAccelerator) { - return mergeFrom((flyteidl.core.Tasks.GPUAccelerator)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(flyteidl.core.Tasks.GPUAccelerator other) { - if (other == flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance()) return this; - if (!other.getDevice().isEmpty()) { - device_ = other.device_; - onChanged(); - } - switch (other.getPartitionSizeValueCase()) { - case UNPARTITIONED: { - setUnpartitioned(other.getUnpartitioned()); - break; - } - case PARTITION_SIZE: { - partitionSizeValueCase_ = 3; - partitionSizeValue_ = other.partitionSizeValue_; - onChanged(); - break; - } - case PARTITIONSIZEVALUE_NOT_SET: { - break; - } - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - flyteidl.core.Tasks.GPUAccelerator parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (flyteidl.core.Tasks.GPUAccelerator) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int partitionSizeValueCase_ = 0; - private java.lang.Object partitionSizeValue_; - public PartitionSizeValueCase - getPartitionSizeValueCase() { - return PartitionSizeValueCase.forNumber( - partitionSizeValueCase_); - } - - public Builder clearPartitionSizeValue() { - partitionSizeValueCase_ = 0; - partitionSizeValue_ = null; - onChanged(); - return this; - } - - - private java.lang.Object device_ = ""; - /** - * string device = 1; - */ - public java.lang.String getDevice() { - java.lang.Object ref = device_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - device_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string device = 1; - */ - public com.google.protobuf.ByteString - getDeviceBytes() { - java.lang.Object ref = device_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - device_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string device = 1; - */ - public Builder setDevice( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - device_ = value; - onChanged(); - return this; - } - /** - * string device = 1; - */ - public Builder clearDevice() { - - device_ = getDefaultInstance().getDevice(); - onChanged(); - return this; - } - /** - * string device = 1; - */ - public Builder setDeviceBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - device_ = value; - onChanged(); - return this; - } - - /** - * bool unpartitioned = 2; - */ - public boolean getUnpartitioned() { - if (partitionSizeValueCase_ == 2) { - return (java.lang.Boolean) partitionSizeValue_; - } - return false; - } - /** - * bool unpartitioned = 2; - */ - public Builder setUnpartitioned(boolean value) { - partitionSizeValueCase_ = 2; - partitionSizeValue_ = value; - onChanged(); - return this; - } - /** - * bool unpartitioned = 2; - */ - public Builder clearUnpartitioned() { - if (partitionSizeValueCase_ == 2) { - partitionSizeValueCase_ = 0; - partitionSizeValue_ = null; - onChanged(); - } - return this; - } - - /** - * string partition_size = 3; - */ - public java.lang.String getPartitionSize() { - java.lang.Object ref = ""; - if (partitionSizeValueCase_ == 3) { - ref = partitionSizeValue_; - } - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (partitionSizeValueCase_ == 3) { - partitionSizeValue_ = s; - } - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string partition_size = 3; - */ - public com.google.protobuf.ByteString - getPartitionSizeBytes() { - java.lang.Object ref = ""; - if (partitionSizeValueCase_ == 3) { - ref = partitionSizeValue_; - } - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - if (partitionSizeValueCase_ == 3) { - partitionSizeValue_ = b; - } - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string partition_size = 3; - */ - public Builder setPartitionSize( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - partitionSizeValueCase_ = 3; - partitionSizeValue_ = value; - onChanged(); - return this; - } - /** - * string partition_size = 3; - */ - public Builder clearPartitionSize() { - if (partitionSizeValueCase_ == 3) { - partitionSizeValueCase_ = 0; - partitionSizeValue_ = null; - onChanged(); - } - return this; - } - /** - * string partition_size = 3; - */ - public Builder setPartitionSizeBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - partitionSizeValueCase_ = 3; - partitionSizeValue_ = value; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:flyteidl.core.GPUAccelerator) - } - - // @@protoc_insertion_point(class_scope:flyteidl.core.GPUAccelerator) - private static final flyteidl.core.Tasks.GPUAccelerator DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new flyteidl.core.Tasks.GPUAccelerator(); - } - - public static flyteidl.core.Tasks.GPUAccelerator getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public GPUAccelerator parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new GPUAccelerator(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public flyteidl.core.Tasks.GPUAccelerator getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface ResourceMetadataOrBuilder extends - // @@protoc_insertion_point(interface_extends:flyteidl.core.ResourceMetadata) - com.google.protobuf.MessageOrBuilder { - - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - boolean hasGpuAccelerator(); - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - flyteidl.core.Tasks.GPUAccelerator getGpuAccelerator(); - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - flyteidl.core.Tasks.GPUAcceleratorOrBuilder getGpuAcceleratorOrBuilder(); - - public flyteidl.core.Tasks.ResourceMetadata.AcceleratorValueCase getAcceleratorValueCase(); - } - /** - *
-   * Additional metadata associated with resources to allocate to a task
-   * 
- * - * Protobuf type {@code flyteidl.core.ResourceMetadata} - */ - public static final class ResourceMetadata extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:flyteidl.core.ResourceMetadata) - ResourceMetadataOrBuilder { - private static final long serialVersionUID = 0L; - // Use ResourceMetadata.newBuilder() to construct. - private ResourceMetadata(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private ResourceMetadata() { - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private ResourceMetadata( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - flyteidl.core.Tasks.GPUAccelerator.Builder subBuilder = null; - if (acceleratorValueCase_ == 1) { - subBuilder = ((flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_).toBuilder(); - } - acceleratorValue_ = - input.readMessage(flyteidl.core.Tasks.GPUAccelerator.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom((flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_); - acceleratorValue_ = subBuilder.buildPartial(); - } - acceleratorValueCase_ = 1; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return flyteidl.core.Tasks.internal_static_flyteidl_core_ResourceMetadata_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return flyteidl.core.Tasks.internal_static_flyteidl_core_ResourceMetadata_fieldAccessorTable - .ensureFieldAccessorsInitialized( - flyteidl.core.Tasks.ResourceMetadata.class, flyteidl.core.Tasks.ResourceMetadata.Builder.class); - } - - private int acceleratorValueCase_ = 0; - private java.lang.Object acceleratorValue_; - public enum AcceleratorValueCase - implements com.google.protobuf.Internal.EnumLite { - GPU_ACCELERATOR(1), - ACCELERATORVALUE_NOT_SET(0); - private final int value; - private AcceleratorValueCase(int value) { - this.value = value; - } - /** - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static AcceleratorValueCase valueOf(int value) { - return forNumber(value); - } - - public static AcceleratorValueCase forNumber(int value) { - switch (value) { - case 1: return GPU_ACCELERATOR; - case 0: return ACCELERATORVALUE_NOT_SET; - default: return null; - } - } - public int getNumber() { - return this.value; - } - }; - - public AcceleratorValueCase - getAcceleratorValueCase() { - return AcceleratorValueCase.forNumber( - acceleratorValueCase_); - } - - public static final int GPU_ACCELERATOR_FIELD_NUMBER = 1; - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - public boolean hasGpuAccelerator() { - return acceleratorValueCase_ == 1; - } - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - public flyteidl.core.Tasks.GPUAccelerator getGpuAccelerator() { - if (acceleratorValueCase_ == 1) { - return (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_; - } - return flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); - } - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - public flyteidl.core.Tasks.GPUAcceleratorOrBuilder getGpuAcceleratorOrBuilder() { - if (acceleratorValueCase_ == 1) { - return (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_; - } - return flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (acceleratorValueCase_ == 1) { - output.writeMessage(1, (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (acceleratorValueCase_ == 1) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof flyteidl.core.Tasks.ResourceMetadata)) { - return super.equals(obj); - } - flyteidl.core.Tasks.ResourceMetadata other = (flyteidl.core.Tasks.ResourceMetadata) obj; - - if (!getAcceleratorValueCase().equals(other.getAcceleratorValueCase())) return false; - switch (acceleratorValueCase_) { - case 1: - if (!getGpuAccelerator() - .equals(other.getGpuAccelerator())) return false; - break; - case 0: - default: - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - switch (acceleratorValueCase_) { - case 1: - hash = (37 * hash) + GPU_ACCELERATOR_FIELD_NUMBER; - hash = (53 * hash) + getGpuAccelerator().hashCode(); - break; - case 0: - default: - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static flyteidl.core.Tasks.ResourceMetadata parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static flyteidl.core.Tasks.ResourceMetadata parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static flyteidl.core.Tasks.ResourceMetadata parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static flyteidl.core.Tasks.ResourceMetadata parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static flyteidl.core.Tasks.ResourceMetadata parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static flyteidl.core.Tasks.ResourceMetadata parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static flyteidl.core.Tasks.ResourceMetadata parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static flyteidl.core.Tasks.ResourceMetadata parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static flyteidl.core.Tasks.ResourceMetadata parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static flyteidl.core.Tasks.ResourceMetadata parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static flyteidl.core.Tasks.ResourceMetadata parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static flyteidl.core.Tasks.ResourceMetadata parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(flyteidl.core.Tasks.ResourceMetadata prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Additional metadata associated with resources to allocate to a task
-     * 
- * - * Protobuf type {@code flyteidl.core.ResourceMetadata} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:flyteidl.core.ResourceMetadata) - flyteidl.core.Tasks.ResourceMetadataOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return flyteidl.core.Tasks.internal_static_flyteidl_core_ResourceMetadata_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return flyteidl.core.Tasks.internal_static_flyteidl_core_ResourceMetadata_fieldAccessorTable - .ensureFieldAccessorsInitialized( - flyteidl.core.Tasks.ResourceMetadata.class, flyteidl.core.Tasks.ResourceMetadata.Builder.class); - } - - // Construct using flyteidl.core.Tasks.ResourceMetadata.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - acceleratorValueCase_ = 0; - acceleratorValue_ = null; - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return flyteidl.core.Tasks.internal_static_flyteidl_core_ResourceMetadata_descriptor; - } - - @java.lang.Override - public flyteidl.core.Tasks.ResourceMetadata getDefaultInstanceForType() { - return flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance(); - } - - @java.lang.Override - public flyteidl.core.Tasks.ResourceMetadata build() { - flyteidl.core.Tasks.ResourceMetadata result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public flyteidl.core.Tasks.ResourceMetadata buildPartial() { - flyteidl.core.Tasks.ResourceMetadata result = new flyteidl.core.Tasks.ResourceMetadata(this); - if (acceleratorValueCase_ == 1) { - if (gpuAcceleratorBuilder_ == null) { - result.acceleratorValue_ = acceleratorValue_; - } else { - result.acceleratorValue_ = gpuAcceleratorBuilder_.build(); - } - } - result.acceleratorValueCase_ = acceleratorValueCase_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof flyteidl.core.Tasks.ResourceMetadata) { - return mergeFrom((flyteidl.core.Tasks.ResourceMetadata)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(flyteidl.core.Tasks.ResourceMetadata other) { - if (other == flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance()) return this; - switch (other.getAcceleratorValueCase()) { - case GPU_ACCELERATOR: { - mergeGpuAccelerator(other.getGpuAccelerator()); - break; - } - case ACCELERATORVALUE_NOT_SET: { - break; - } - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - flyteidl.core.Tasks.ResourceMetadata parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (flyteidl.core.Tasks.ResourceMetadata) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int acceleratorValueCase_ = 0; - private java.lang.Object acceleratorValue_; - public AcceleratorValueCase - getAcceleratorValueCase() { - return AcceleratorValueCase.forNumber( - acceleratorValueCase_); - } - - public Builder clearAcceleratorValue() { - acceleratorValueCase_ = 0; - acceleratorValue_ = null; - onChanged(); - return this; - } - - - private com.google.protobuf.SingleFieldBuilderV3< - flyteidl.core.Tasks.GPUAccelerator, flyteidl.core.Tasks.GPUAccelerator.Builder, flyteidl.core.Tasks.GPUAcceleratorOrBuilder> gpuAcceleratorBuilder_; - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - public boolean hasGpuAccelerator() { - return acceleratorValueCase_ == 1; - } - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - public flyteidl.core.Tasks.GPUAccelerator getGpuAccelerator() { - if (gpuAcceleratorBuilder_ == null) { - if (acceleratorValueCase_ == 1) { - return (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_; - } - return flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); - } else { - if (acceleratorValueCase_ == 1) { - return gpuAcceleratorBuilder_.getMessage(); - } - return flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); - } - } - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - public Builder setGpuAccelerator(flyteidl.core.Tasks.GPUAccelerator value) { - if (gpuAcceleratorBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - acceleratorValue_ = value; - onChanged(); - } else { - gpuAcceleratorBuilder_.setMessage(value); - } - acceleratorValueCase_ = 1; - return this; - } - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - public Builder setGpuAccelerator( - flyteidl.core.Tasks.GPUAccelerator.Builder builderForValue) { - if (gpuAcceleratorBuilder_ == null) { - acceleratorValue_ = builderForValue.build(); - onChanged(); - } else { - gpuAcceleratorBuilder_.setMessage(builderForValue.build()); - } - acceleratorValueCase_ = 1; - return this; - } - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - public Builder mergeGpuAccelerator(flyteidl.core.Tasks.GPUAccelerator value) { - if (gpuAcceleratorBuilder_ == null) { - if (acceleratorValueCase_ == 1 && - acceleratorValue_ != flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance()) { - acceleratorValue_ = flyteidl.core.Tasks.GPUAccelerator.newBuilder((flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_) - .mergeFrom(value).buildPartial(); - } else { - acceleratorValue_ = value; - } - onChanged(); - } else { - if (acceleratorValueCase_ == 1) { - gpuAcceleratorBuilder_.mergeFrom(value); - } - gpuAcceleratorBuilder_.setMessage(value); - } - acceleratorValueCase_ = 1; - return this; - } - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - public Builder clearGpuAccelerator() { - if (gpuAcceleratorBuilder_ == null) { - if (acceleratorValueCase_ == 1) { - acceleratorValueCase_ = 0; - acceleratorValue_ = null; - onChanged(); - } - } else { - if (acceleratorValueCase_ == 1) { - acceleratorValueCase_ = 0; - acceleratorValue_ = null; - } - gpuAcceleratorBuilder_.clear(); - } - return this; - } - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - public flyteidl.core.Tasks.GPUAccelerator.Builder getGpuAcceleratorBuilder() { - return getGpuAcceleratorFieldBuilder().getBuilder(); - } - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - public flyteidl.core.Tasks.GPUAcceleratorOrBuilder getGpuAcceleratorOrBuilder() { - if ((acceleratorValueCase_ == 1) && (gpuAcceleratorBuilder_ != null)) { - return gpuAcceleratorBuilder_.getMessageOrBuilder(); - } else { - if (acceleratorValueCase_ == 1) { - return (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_; - } - return flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); - } - } - /** - * .flyteidl.core.GPUAccelerator gpu_accelerator = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - flyteidl.core.Tasks.GPUAccelerator, flyteidl.core.Tasks.GPUAccelerator.Builder, flyteidl.core.Tasks.GPUAcceleratorOrBuilder> - getGpuAcceleratorFieldBuilder() { - if (gpuAcceleratorBuilder_ == null) { - if (!(acceleratorValueCase_ == 1)) { - acceleratorValue_ = flyteidl.core.Tasks.GPUAccelerator.getDefaultInstance(); - } - gpuAcceleratorBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - flyteidl.core.Tasks.GPUAccelerator, flyteidl.core.Tasks.GPUAccelerator.Builder, flyteidl.core.Tasks.GPUAcceleratorOrBuilder>( - (flyteidl.core.Tasks.GPUAccelerator) acceleratorValue_, - getParentForChildren(), - isClean()); - acceleratorValue_ = null; - } - acceleratorValueCase_ = 1; - onChanged();; - return gpuAcceleratorBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:flyteidl.core.ResourceMetadata) - } - - // @@protoc_insertion_point(class_scope:flyteidl.core.ResourceMetadata) - private static final flyteidl.core.Tasks.ResourceMetadata DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new flyteidl.core.Tasks.ResourceMetadata(); - } - - public static flyteidl.core.Tasks.ResourceMetadata getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ResourceMetadata parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new ResourceMetadata(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public flyteidl.core.Tasks.ResourceMetadata getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - public interface TaskMetadataOrBuilder extends // @@protoc_insertion_point(interface_extends:flyteidl.core.TaskMetadata) com.google.protobuf.MessageOrBuilder { @@ -5102,31 +3530,6 @@ java.lang.String getTagsOrThrow( com.google.protobuf.ByteString getPodTemplateNameBytes(); - /** - *
-     * Additional metadata associated with resources to allocate to this task
-     * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - boolean hasResourceMetadata(); - /** - *
-     * Additional metadata associated with resources to allocate to this task
-     * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - flyteidl.core.Tasks.ResourceMetadata getResourceMetadata(); - /** - *
-     * Additional metadata associated with resources to allocate to this task
-     * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - flyteidl.core.Tasks.ResourceMetadataOrBuilder getResourceMetadataOrBuilder(); - public flyteidl.core.Tasks.TaskMetadata.InterruptibleValueCase getInterruptibleValueCase(); } /** @@ -5265,19 +3668,6 @@ private TaskMetadata( podTemplateName_ = s; break; } - case 106: { - flyteidl.core.Tasks.ResourceMetadata.Builder subBuilder = null; - if (resourceMetadata_ != null) { - subBuilder = resourceMetadata_.toBuilder(); - } - resourceMetadata_ = input.readMessage(flyteidl.core.Tasks.ResourceMetadata.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(resourceMetadata_); - resourceMetadata_ = subBuilder.buildPartial(); - } - - break; - } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -5732,39 +4122,6 @@ public java.lang.String getPodTemplateName() { } } - public static final int RESOURCE_METADATA_FIELD_NUMBER = 13; - private flyteidl.core.Tasks.ResourceMetadata resourceMetadata_; - /** - *
-     * Additional metadata associated with resources to allocate to this task
-     * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - public boolean hasResourceMetadata() { - return resourceMetadata_ != null; - } - /** - *
-     * Additional metadata associated with resources to allocate to this task
-     * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - public flyteidl.core.Tasks.ResourceMetadata getResourceMetadata() { - return resourceMetadata_ == null ? flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance() : resourceMetadata_; - } - /** - *
-     * Additional metadata associated with resources to allocate to this task
-     * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - public flyteidl.core.Tasks.ResourceMetadataOrBuilder getResourceMetadataOrBuilder() { - return getResourceMetadata(); - } - private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -5816,9 +4173,6 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (!getPodTemplateNameBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 12, podTemplateName_); } - if (resourceMetadata_ != null) { - output.writeMessage(13, getResourceMetadata()); - } unknownFields.writeTo(output); } @@ -5876,10 +4230,6 @@ public int getSerializedSize() { if (!getPodTemplateNameBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(12, podTemplateName_); } - if (resourceMetadata_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(13, getResourceMetadata()); - } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -5924,11 +4274,6 @@ public boolean equals(final java.lang.Object obj) { other.internalGetTags())) return false; if (!getPodTemplateName() .equals(other.getPodTemplateName())) return false; - if (hasResourceMetadata() != other.hasResourceMetadata()) return false; - if (hasResourceMetadata()) { - if (!getResourceMetadata() - .equals(other.getResourceMetadata())) return false; - } if (!getInterruptibleValueCase().equals(other.getInterruptibleValueCase())) return false; switch (interruptibleValueCase_) { case 8: @@ -5980,10 +4325,6 @@ public int hashCode() { } hash = (37 * hash) + POD_TEMPLATE_NAME_FIELD_NUMBER; hash = (53 * hash) + getPodTemplateName().hashCode(); - if (hasResourceMetadata()) { - hash = (37 * hash) + RESOURCE_METADATA_FIELD_NUMBER; - hash = (53 * hash) + getResourceMetadata().hashCode(); - } switch (interruptibleValueCase_) { case 8: hash = (37 * hash) + INTERRUPTIBLE_FIELD_NUMBER; @@ -6183,12 +4524,6 @@ public Builder clear() { internalGetMutableTags().clear(); podTemplateName_ = ""; - if (resourceMetadataBuilder_ == null) { - resourceMetadata_ = null; - } else { - resourceMetadata_ = null; - resourceMetadataBuilder_ = null; - } interruptibleValueCase_ = 0; interruptibleValue_ = null; return this; @@ -6245,11 +4580,6 @@ public flyteidl.core.Tasks.TaskMetadata buildPartial() { result.tags_ = internalGetTags(); result.tags_.makeImmutable(); result.podTemplateName_ = podTemplateName_; - if (resourceMetadataBuilder_ == null) { - result.resourceMetadata_ = resourceMetadata_; - } else { - result.resourceMetadata_ = resourceMetadataBuilder_.build(); - } result.bitField0_ = to_bitField0_; result.interruptibleValueCase_ = interruptibleValueCase_; onBuilt(); @@ -6332,9 +4662,6 @@ public Builder mergeFrom(flyteidl.core.Tasks.TaskMetadata other) { podTemplateName_ = other.podTemplateName_; onChanged(); } - if (other.hasResourceMetadata()) { - mergeResourceMetadata(other.getResourceMetadata()); - } switch (other.getInterruptibleValueCase()) { case INTERRUPTIBLE: { setInterruptible(other.getInterruptible()); @@ -7424,159 +5751,6 @@ public Builder setPodTemplateNameBytes( onChanged(); return this; } - - private flyteidl.core.Tasks.ResourceMetadata resourceMetadata_; - private com.google.protobuf.SingleFieldBuilderV3< - flyteidl.core.Tasks.ResourceMetadata, flyteidl.core.Tasks.ResourceMetadata.Builder, flyteidl.core.Tasks.ResourceMetadataOrBuilder> resourceMetadataBuilder_; - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - public boolean hasResourceMetadata() { - return resourceMetadataBuilder_ != null || resourceMetadata_ != null; - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - public flyteidl.core.Tasks.ResourceMetadata getResourceMetadata() { - if (resourceMetadataBuilder_ == null) { - return resourceMetadata_ == null ? flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance() : resourceMetadata_; - } else { - return resourceMetadataBuilder_.getMessage(); - } - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - public Builder setResourceMetadata(flyteidl.core.Tasks.ResourceMetadata value) { - if (resourceMetadataBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - resourceMetadata_ = value; - onChanged(); - } else { - resourceMetadataBuilder_.setMessage(value); - } - - return this; - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - public Builder setResourceMetadata( - flyteidl.core.Tasks.ResourceMetadata.Builder builderForValue) { - if (resourceMetadataBuilder_ == null) { - resourceMetadata_ = builderForValue.build(); - onChanged(); - } else { - resourceMetadataBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - public Builder mergeResourceMetadata(flyteidl.core.Tasks.ResourceMetadata value) { - if (resourceMetadataBuilder_ == null) { - if (resourceMetadata_ != null) { - resourceMetadata_ = - flyteidl.core.Tasks.ResourceMetadata.newBuilder(resourceMetadata_).mergeFrom(value).buildPartial(); - } else { - resourceMetadata_ = value; - } - onChanged(); - } else { - resourceMetadataBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - public Builder clearResourceMetadata() { - if (resourceMetadataBuilder_ == null) { - resourceMetadata_ = null; - onChanged(); - } else { - resourceMetadata_ = null; - resourceMetadataBuilder_ = null; - } - - return this; - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - public flyteidl.core.Tasks.ResourceMetadata.Builder getResourceMetadataBuilder() { - - onChanged(); - return getResourceMetadataFieldBuilder().getBuilder(); - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - public flyteidl.core.Tasks.ResourceMetadataOrBuilder getResourceMetadataOrBuilder() { - if (resourceMetadataBuilder_ != null) { - return resourceMetadataBuilder_.getMessageOrBuilder(); - } else { - return resourceMetadata_ == null ? - flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance() : resourceMetadata_; - } - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 13; - */ - private com.google.protobuf.SingleFieldBuilderV3< - flyteidl.core.Tasks.ResourceMetadata, flyteidl.core.Tasks.ResourceMetadata.Builder, flyteidl.core.Tasks.ResourceMetadataOrBuilder> - getResourceMetadataFieldBuilder() { - if (resourceMetadataBuilder_ == null) { - resourceMetadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - flyteidl.core.Tasks.ResourceMetadata, flyteidl.core.Tasks.ResourceMetadata.Builder, flyteidl.core.Tasks.ResourceMetadataOrBuilder>( - getResourceMetadata(), - getParentForChildren(), - isClean()); - resourceMetadata_ = null; - } - return resourceMetadataBuilder_; - } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -20421,16 +18595,6 @@ public flyteidl.core.Tasks.Sql getDefaultInstanceForType() { private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_flyteidl_core_RuntimeMetadata_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_flyteidl_core_GPUAccelerator_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_flyteidl_core_GPUAccelerator_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_flyteidl_core_ResourceMetadata_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_flyteidl_core_ResourceMetadata_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_flyteidl_core_TaskMetadata_descriptor; private static final @@ -20522,79 +18686,72 @@ public flyteidl.core.Tasks.Sql getDefaultInstanceForType() { "ype\030\001 \001(\0162*.flyteidl.core.RuntimeMetadat" + "a.RuntimeType\022\017\n\007version\030\002 \001(\t\022\016\n\006flavor" + "\030\003 \001(\t\"\'\n\013RuntimeType\022\t\n\005OTHER\020\000\022\r\n\tFLYT" + - "E_SDK\020\001\"k\n\016GPUAccelerator\022\016\n\006device\030\001 \001(" + - "\t\022\027\n\runpartitioned\030\002 \001(\010H\000\022\030\n\016partition_" + - "size\030\003 \001(\tH\000B\026\n\024partition_size_value\"a\n\020" + - "ResourceMetadata\0228\n\017gpu_accelerator\030\001 \001(" + - "\0132\035.flyteidl.core.GPUAcceleratorH\000B\023\n\021ac" + - "celerator_value\"\212\004\n\014TaskMetadata\022\024\n\014disc" + - "overable\030\001 \001(\010\022/\n\007runtime\030\002 \001(\0132\036.flytei" + - "dl.core.RuntimeMetadata\022*\n\007timeout\030\004 \001(\013" + - "2\031.google.protobuf.Duration\022-\n\007retries\030\005" + - " \001(\0132\034.flyteidl.core.RetryStrategy\022\031\n\021di" + - "scovery_version\030\006 \001(\t\022 \n\030deprecated_erro" + - "r_message\030\007 \001(\t\022\027\n\rinterruptible\030\010 \001(\010H\000" + - "\022\032\n\022cache_serializable\030\t \001(\010\022\026\n\016generate" + - "s_deck\030\n \001(\010\0223\n\004tags\030\013 \003(\0132%.flyteidl.co" + - "re.TaskMetadata.TagsEntry\022\031\n\021pod_templat" + - "e_name\030\014 \001(\t\022:\n\021resource_metadata\030\r \001(\0132" + - "\037.flyteidl.core.ResourceMetadata\032+\n\tTags" + - "Entry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001B\025\n" + - "\023interruptible_value\"\220\004\n\014TaskTemplate\022%\n" + - "\002id\030\001 \001(\0132\031.flyteidl.core.Identifier\022\014\n\004" + - "type\030\002 \001(\t\022-\n\010metadata\030\003 \001(\0132\033.flyteidl." + - "core.TaskMetadata\0220\n\tinterface\030\004 \001(\0132\035.f" + - "lyteidl.core.TypedInterface\022\'\n\006custom\030\005 " + - "\001(\0132\027.google.protobuf.Struct\022-\n\tcontaine" + - "r\030\006 \001(\0132\030.flyteidl.core.ContainerH\000\022(\n\007k" + - "8s_pod\030\021 \001(\0132\025.flyteidl.core.K8sPodH\000\022!\n" + - "\003sql\030\022 \001(\0132\022.flyteidl.core.SqlH\000\022\031\n\021task" + - "_type_version\030\007 \001(\005\0228\n\020security_context\030" + - "\010 \001(\0132\036.flyteidl.core.SecurityContext\0227\n" + - "\006config\030\020 \003(\0132\'.flyteidl.core.TaskTempla" + - "te.ConfigEntry\032-\n\013ConfigEntry\022\013\n\003key\030\001 \001" + - "(\t\022\r\n\005value\030\002 \001(\t:\0028\001B\010\n\006target\"\'\n\rConta" + - "inerPort\022\026\n\016container_port\030\001 \001(\r\"\255\003\n\tCon" + - "tainer\022\r\n\005image\030\001 \001(\t\022\017\n\007command\030\002 \003(\t\022\014" + - "\n\004args\030\003 \003(\t\022+\n\tresources\030\004 \001(\0132\030.flytei" + - "dl.core.Resources\022(\n\003env\030\005 \003(\0132\033.flyteid" + - "l.core.KeyValuePair\022/\n\006config\030\006 \003(\0132\033.fl" + - "yteidl.core.KeyValuePairB\002\030\001\022+\n\005ports\030\007 " + - "\003(\0132\034.flyteidl.core.ContainerPort\0225\n\013dat" + - "a_config\030\t \001(\0132 .flyteidl.core.DataLoadi" + - "ngConfig\022;\n\014architecture\030\n \001(\0162%.flyteid" + - "l.core.Container.Architecture\"I\n\014Archite" + - "cture\022\013\n\007UNKNOWN\020\000\022\t\n\005AMD64\020\001\022\t\n\005ARM64\020\002" + - "\022\n\n\006ARM_V6\020\003\022\n\n\006ARM_V7\020\004\"\233\002\n\nIOStrategy\022" + - "=\n\rdownload_mode\030\001 \001(\0162&.flyteidl.core.I" + - "OStrategy.DownloadMode\0229\n\013upload_mode\030\002 " + - "\001(\0162$.flyteidl.core.IOStrategy.UploadMod" + - "e\"L\n\014DownloadMode\022\022\n\016DOWNLOAD_EAGER\020\000\022\023\n" + - "\017DOWNLOAD_STREAM\020\001\022\023\n\017DO_NOT_DOWNLOAD\020\002\"" + - "E\n\nUploadMode\022\022\n\016UPLOAD_ON_EXIT\020\000\022\020\n\014UPL" + - "OAD_EAGER\020\001\022\021\n\rDO_NOT_UPLOAD\020\002\"\363\001\n\021DataL" + - "oadingConfig\022\017\n\007enabled\030\001 \001(\010\022\022\n\ninput_p" + - "ath\030\002 \001(\t\022\023\n\013output_path\030\003 \001(\t\022A\n\006format" + - "\030\004 \001(\01621.flyteidl.core.DataLoadingConfig" + - ".LiteralMapFormat\022.\n\013io_strategy\030\005 \001(\0132\031" + - ".flyteidl.core.IOStrategy\"1\n\020LiteralMapF" + - "ormat\022\010\n\004JSON\020\000\022\010\n\004YAML\020\001\022\t\n\005PROTO\020\002\"\236\001\n" + - "\006K8sPod\0222\n\010metadata\030\001 \001(\0132 .flyteidl.cor" + - "e.K8sObjectMetadata\022)\n\010pod_spec\030\002 \001(\0132\027." + - "google.protobuf.Struct\0225\n\013data_config\030\003 " + - "\001(\0132 .flyteidl.core.DataLoadingConfig\"\374\001" + - "\n\021K8sObjectMetadata\022<\n\006labels\030\001 \003(\0132,.fl" + - "yteidl.core.K8sObjectMetadata.LabelsEntr" + - "y\022F\n\013annotations\030\002 \003(\01321.flyteidl.core.K" + - "8sObjectMetadata.AnnotationsEntry\032-\n\013Lab" + - "elsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001" + - "\0322\n\020AnnotationsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005val" + - "ue\030\002 \001(\t:\0028\001\"~\n\003Sql\022\021\n\tstatement\030\001 \001(\t\022+" + - "\n\007dialect\030\002 \001(\0162\032.flyteidl.core.Sql.Dial" + - "ect\"7\n\007Dialect\022\r\n\tUNDEFINED\020\000\022\010\n\004ANSI\020\001\022" + - "\010\n\004HIVE\020\002\022\t\n\005OTHER\020\003B6Z4github.com/flyte" + - "org/flyteidl/gen/pb-go/flyteidl/coreb\006pr" + - "oto3" + "E_SDK\020\001\"\316\003\n\014TaskMetadata\022\024\n\014discoverable" + + "\030\001 \001(\010\022/\n\007runtime\030\002 \001(\0132\036.flyteidl.core." + + "RuntimeMetadata\022*\n\007timeout\030\004 \001(\0132\031.googl" + + "e.protobuf.Duration\022-\n\007retries\030\005 \001(\0132\034.f" + + "lyteidl.core.RetryStrategy\022\031\n\021discovery_" + + "version\030\006 \001(\t\022 \n\030deprecated_error_messag" + + "e\030\007 \001(\t\022\027\n\rinterruptible\030\010 \001(\010H\000\022\032\n\022cach" + + "e_serializable\030\t \001(\010\022\026\n\016generates_deck\030\n" + + " \001(\010\0223\n\004tags\030\013 \003(\0132%.flyteidl.core.TaskM" + + "etadata.TagsEntry\022\031\n\021pod_template_name\030\014" + + " \001(\t\032+\n\tTagsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030" + + "\002 \001(\t:\0028\001B\025\n\023interruptible_value\"\220\004\n\014Tas" + + "kTemplate\022%\n\002id\030\001 \001(\0132\031.flyteidl.core.Id" + + "entifier\022\014\n\004type\030\002 \001(\t\022-\n\010metadata\030\003 \001(\013" + + "2\033.flyteidl.core.TaskMetadata\0220\n\tinterfa" + + "ce\030\004 \001(\0132\035.flyteidl.core.TypedInterface\022" + + "\'\n\006custom\030\005 \001(\0132\027.google.protobuf.Struct" + + "\022-\n\tcontainer\030\006 \001(\0132\030.flyteidl.core.Cont" + + "ainerH\000\022(\n\007k8s_pod\030\021 \001(\0132\025.flyteidl.core" + + ".K8sPodH\000\022!\n\003sql\030\022 \001(\0132\022.flyteidl.core.S" + + "qlH\000\022\031\n\021task_type_version\030\007 \001(\005\0228\n\020secur" + + "ity_context\030\010 \001(\0132\036.flyteidl.core.Securi" + + "tyContext\0227\n\006config\030\020 \003(\0132\'.flyteidl.cor" + + "e.TaskTemplate.ConfigEntry\032-\n\013ConfigEntr" + + "y\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001B\010\n\006tar" + + "get\"\'\n\rContainerPort\022\026\n\016container_port\030\001" + + " \001(\r\"\255\003\n\tContainer\022\r\n\005image\030\001 \001(\t\022\017\n\007com" + + "mand\030\002 \003(\t\022\014\n\004args\030\003 \003(\t\022+\n\tresources\030\004 " + + "\001(\0132\030.flyteidl.core.Resources\022(\n\003env\030\005 \003" + + "(\0132\033.flyteidl.core.KeyValuePair\022/\n\006confi" + + "g\030\006 \003(\0132\033.flyteidl.core.KeyValuePairB\002\030\001" + + "\022+\n\005ports\030\007 \003(\0132\034.flyteidl.core.Containe" + + "rPort\0225\n\013data_config\030\t \001(\0132 .flyteidl.co" + + "re.DataLoadingConfig\022;\n\014architecture\030\n \001" + + "(\0162%.flyteidl.core.Container.Architectur" + + "e\"I\n\014Architecture\022\013\n\007UNKNOWN\020\000\022\t\n\005AMD64\020" + + "\001\022\t\n\005ARM64\020\002\022\n\n\006ARM_V6\020\003\022\n\n\006ARM_V7\020\004\"\233\002\n" + + "\nIOStrategy\022=\n\rdownload_mode\030\001 \001(\0162&.fly" + + "teidl.core.IOStrategy.DownloadMode\0229\n\013up" + + "load_mode\030\002 \001(\0162$.flyteidl.core.IOStrate" + + "gy.UploadMode\"L\n\014DownloadMode\022\022\n\016DOWNLOA" + + "D_EAGER\020\000\022\023\n\017DOWNLOAD_STREAM\020\001\022\023\n\017DO_NOT" + + "_DOWNLOAD\020\002\"E\n\nUploadMode\022\022\n\016UPLOAD_ON_E" + + "XIT\020\000\022\020\n\014UPLOAD_EAGER\020\001\022\021\n\rDO_NOT_UPLOAD" + + "\020\002\"\363\001\n\021DataLoadingConfig\022\017\n\007enabled\030\001 \001(" + + "\010\022\022\n\ninput_path\030\002 \001(\t\022\023\n\013output_path\030\003 \001" + + "(\t\022A\n\006format\030\004 \001(\01621.flyteidl.core.DataL" + + "oadingConfig.LiteralMapFormat\022.\n\013io_stra" + + "tegy\030\005 \001(\0132\031.flyteidl.core.IOStrategy\"1\n" + + "\020LiteralMapFormat\022\010\n\004JSON\020\000\022\010\n\004YAML\020\001\022\t\n" + + "\005PROTO\020\002\"\236\001\n\006K8sPod\0222\n\010metadata\030\001 \001(\0132 ." + + "flyteidl.core.K8sObjectMetadata\022)\n\010pod_s" + + "pec\030\002 \001(\0132\027.google.protobuf.Struct\0225\n\013da" + + "ta_config\030\003 \001(\0132 .flyteidl.core.DataLoad" + + "ingConfig\"\374\001\n\021K8sObjectMetadata\022<\n\006label" + + "s\030\001 \003(\0132,.flyteidl.core.K8sObjectMetadat" + + "a.LabelsEntry\022F\n\013annotations\030\002 \003(\01321.fly" + + "teidl.core.K8sObjectMetadata.Annotations" + + "Entry\032-\n\013LabelsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005val" + + "ue\030\002 \001(\t:\0028\001\0322\n\020AnnotationsEntry\022\013\n\003key\030" + + "\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"~\n\003Sql\022\021\n\tstate" + + "ment\030\001 \001(\t\022+\n\007dialect\030\002 \001(\0162\032.flyteidl.c" + + "ore.Sql.Dialect\"7\n\007Dialect\022\r\n\tUNDEFINED\020" + + "\000\022\010\n\004ANSI\020\001\022\010\n\004HIVE\020\002\022\t\n\005OTHER\020\003B6Z4gith" + + "ub.com/flyteorg/flyteidl/gen/pb-go/flyte" + + "idl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { @@ -20632,24 +18789,12 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_RuntimeMetadata_descriptor, new java.lang.String[] { "Type", "Version", "Flavor", }); - internal_static_flyteidl_core_GPUAccelerator_descriptor = - getDescriptor().getMessageTypes().get(2); - internal_static_flyteidl_core_GPUAccelerator_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_flyteidl_core_GPUAccelerator_descriptor, - new java.lang.String[] { "Device", "Unpartitioned", "PartitionSize", "PartitionSizeValue", }); - internal_static_flyteidl_core_ResourceMetadata_descriptor = - getDescriptor().getMessageTypes().get(3); - internal_static_flyteidl_core_ResourceMetadata_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_flyteidl_core_ResourceMetadata_descriptor, - new java.lang.String[] { "GpuAccelerator", "AcceleratorValue", }); internal_static_flyteidl_core_TaskMetadata_descriptor = - getDescriptor().getMessageTypes().get(4); + getDescriptor().getMessageTypes().get(2); internal_static_flyteidl_core_TaskMetadata_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_TaskMetadata_descriptor, - new java.lang.String[] { "Discoverable", "Runtime", "Timeout", "Retries", "DiscoveryVersion", "DeprecatedErrorMessage", "Interruptible", "CacheSerializable", "GeneratesDeck", "Tags", "PodTemplateName", "ResourceMetadata", "InterruptibleValue", }); + new java.lang.String[] { "Discoverable", "Runtime", "Timeout", "Retries", "DiscoveryVersion", "DeprecatedErrorMessage", "Interruptible", "CacheSerializable", "GeneratesDeck", "Tags", "PodTemplateName", "InterruptibleValue", }); internal_static_flyteidl_core_TaskMetadata_TagsEntry_descriptor = internal_static_flyteidl_core_TaskMetadata_descriptor.getNestedTypes().get(0); internal_static_flyteidl_core_TaskMetadata_TagsEntry_fieldAccessorTable = new @@ -20657,7 +18802,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_core_TaskMetadata_TagsEntry_descriptor, new java.lang.String[] { "Key", "Value", }); internal_static_flyteidl_core_TaskTemplate_descriptor = - getDescriptor().getMessageTypes().get(5); + getDescriptor().getMessageTypes().get(3); internal_static_flyteidl_core_TaskTemplate_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_TaskTemplate_descriptor, @@ -20669,37 +18814,37 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_core_TaskTemplate_ConfigEntry_descriptor, new java.lang.String[] { "Key", "Value", }); internal_static_flyteidl_core_ContainerPort_descriptor = - getDescriptor().getMessageTypes().get(6); + getDescriptor().getMessageTypes().get(4); internal_static_flyteidl_core_ContainerPort_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_ContainerPort_descriptor, new java.lang.String[] { "ContainerPort", }); internal_static_flyteidl_core_Container_descriptor = - getDescriptor().getMessageTypes().get(7); + getDescriptor().getMessageTypes().get(5); internal_static_flyteidl_core_Container_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_Container_descriptor, new java.lang.String[] { "Image", "Command", "Args", "Resources", "Env", "Config", "Ports", "DataConfig", "Architecture", }); internal_static_flyteidl_core_IOStrategy_descriptor = - getDescriptor().getMessageTypes().get(8); + getDescriptor().getMessageTypes().get(6); internal_static_flyteidl_core_IOStrategy_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_IOStrategy_descriptor, new java.lang.String[] { "DownloadMode", "UploadMode", }); internal_static_flyteidl_core_DataLoadingConfig_descriptor = - getDescriptor().getMessageTypes().get(9); + getDescriptor().getMessageTypes().get(7); internal_static_flyteidl_core_DataLoadingConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_DataLoadingConfig_descriptor, new java.lang.String[] { "Enabled", "InputPath", "OutputPath", "Format", "IoStrategy", }); internal_static_flyteidl_core_K8sPod_descriptor = - getDescriptor().getMessageTypes().get(10); + getDescriptor().getMessageTypes().get(8); internal_static_flyteidl_core_K8sPod_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_K8sPod_descriptor, new java.lang.String[] { "Metadata", "PodSpec", "DataConfig", }); internal_static_flyteidl_core_K8sObjectMetadata_descriptor = - getDescriptor().getMessageTypes().get(11); + getDescriptor().getMessageTypes().get(9); internal_static_flyteidl_core_K8sObjectMetadata_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_K8sObjectMetadata_descriptor, @@ -20717,7 +18862,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_core_K8sObjectMetadata_AnnotationsEntry_descriptor, new java.lang.String[] { "Key", "Value", }); internal_static_flyteidl_core_Sql_descriptor = - getDescriptor().getMessageTypes().get(12); + getDescriptor().getMessageTypes().get(10); internal_static_flyteidl_core_Sql_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_Sql_descriptor, diff --git a/gen/pb-java/flyteidl/core/Workflow.java b/gen/pb-java/flyteidl/core/Workflow.java index b0b6f79d9..9d7cf7e7d 100644 --- a/gen/pb-java/flyteidl/core/Workflow.java +++ b/gen/pb-java/flyteidl/core/Workflow.java @@ -20389,31 +20389,6 @@ public interface TaskNodeOverridesOrBuilder extends * .flyteidl.core.Resources resources = 1; */ flyteidl.core.Tasks.ResourcesOrBuilder getResourcesOrBuilder(); - - /** - *
-     * Additional metadata associated with resources to allocate to this task
-     * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - boolean hasResourceMetadata(); - /** - *
-     * Additional metadata associated with resources to allocate to this task
-     * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - flyteidl.core.Tasks.ResourceMetadata getResourceMetadata(); - /** - *
-     * Additional metadata associated with resources to allocate to this task
-     * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - flyteidl.core.Tasks.ResourceMetadataOrBuilder getResourceMetadataOrBuilder(); } /** *
@@ -20471,19 +20446,6 @@ private TaskNodeOverrides(
 
               break;
             }
-            case 18: {
-              flyteidl.core.Tasks.ResourceMetadata.Builder subBuilder = null;
-              if (resourceMetadata_ != null) {
-                subBuilder = resourceMetadata_.toBuilder();
-              }
-              resourceMetadata_ = input.readMessage(flyteidl.core.Tasks.ResourceMetadata.parser(), extensionRegistry);
-              if (subBuilder != null) {
-                subBuilder.mergeFrom(resourceMetadata_);
-                resourceMetadata_ = subBuilder.buildPartial();
-              }
-
-              break;
-            }
             default: {
               if (!parseUnknownField(
                   input, unknownFields, extensionRegistry, tag)) {
@@ -20549,39 +20511,6 @@ public flyteidl.core.Tasks.ResourcesOrBuilder getResourcesOrBuilder() {
       return getResources();
     }
 
-    public static final int RESOURCE_METADATA_FIELD_NUMBER = 2;
-    private flyteidl.core.Tasks.ResourceMetadata resourceMetadata_;
-    /**
-     * 
-     * Additional metadata associated with resources to allocate to this task
-     * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - public boolean hasResourceMetadata() { - return resourceMetadata_ != null; - } - /** - *
-     * Additional metadata associated with resources to allocate to this task
-     * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - public flyteidl.core.Tasks.ResourceMetadata getResourceMetadata() { - return resourceMetadata_ == null ? flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance() : resourceMetadata_; - } - /** - *
-     * Additional metadata associated with resources to allocate to this task
-     * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - public flyteidl.core.Tasks.ResourceMetadataOrBuilder getResourceMetadataOrBuilder() { - return getResourceMetadata(); - } - private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -20599,9 +20528,6 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (resources_ != null) { output.writeMessage(1, getResources()); } - if (resourceMetadata_ != null) { - output.writeMessage(2, getResourceMetadata()); - } unknownFields.writeTo(output); } @@ -20615,10 +20541,6 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getResources()); } - if (resourceMetadata_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2, getResourceMetadata()); - } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -20639,11 +20561,6 @@ public boolean equals(final java.lang.Object obj) { if (!getResources() .equals(other.getResources())) return false; } - if (hasResourceMetadata() != other.hasResourceMetadata()) return false; - if (hasResourceMetadata()) { - if (!getResourceMetadata() - .equals(other.getResourceMetadata())) return false; - } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -20659,10 +20576,6 @@ public int hashCode() { hash = (37 * hash) + RESOURCES_FIELD_NUMBER; hash = (53 * hash) + getResources().hashCode(); } - if (hasResourceMetadata()) { - hash = (37 * hash) + RESOURCE_METADATA_FIELD_NUMBER; - hash = (53 * hash) + getResourceMetadata().hashCode(); - } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -20806,12 +20719,6 @@ public Builder clear() { resources_ = null; resourcesBuilder_ = null; } - if (resourceMetadataBuilder_ == null) { - resourceMetadata_ = null; - } else { - resourceMetadata_ = null; - resourceMetadataBuilder_ = null; - } return this; } @@ -20843,11 +20750,6 @@ public flyteidl.core.Workflow.TaskNodeOverrides buildPartial() { } else { result.resources_ = resourcesBuilder_.build(); } - if (resourceMetadataBuilder_ == null) { - result.resourceMetadata_ = resourceMetadata_; - } else { - result.resourceMetadata_ = resourceMetadataBuilder_.build(); - } onBuilt(); return result; } @@ -20899,9 +20801,6 @@ public Builder mergeFrom(flyteidl.core.Workflow.TaskNodeOverrides other) { if (other.hasResources()) { mergeResources(other.getResources()); } - if (other.hasResourceMetadata()) { - mergeResourceMetadata(other.getResourceMetadata()); - } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -21083,159 +20982,6 @@ public flyteidl.core.Tasks.ResourcesOrBuilder getResourcesOrBuilder() { } return resourcesBuilder_; } - - private flyteidl.core.Tasks.ResourceMetadata resourceMetadata_; - private com.google.protobuf.SingleFieldBuilderV3< - flyteidl.core.Tasks.ResourceMetadata, flyteidl.core.Tasks.ResourceMetadata.Builder, flyteidl.core.Tasks.ResourceMetadataOrBuilder> resourceMetadataBuilder_; - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - public boolean hasResourceMetadata() { - return resourceMetadataBuilder_ != null || resourceMetadata_ != null; - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - public flyteidl.core.Tasks.ResourceMetadata getResourceMetadata() { - if (resourceMetadataBuilder_ == null) { - return resourceMetadata_ == null ? flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance() : resourceMetadata_; - } else { - return resourceMetadataBuilder_.getMessage(); - } - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - public Builder setResourceMetadata(flyteidl.core.Tasks.ResourceMetadata value) { - if (resourceMetadataBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - resourceMetadata_ = value; - onChanged(); - } else { - resourceMetadataBuilder_.setMessage(value); - } - - return this; - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - public Builder setResourceMetadata( - flyteidl.core.Tasks.ResourceMetadata.Builder builderForValue) { - if (resourceMetadataBuilder_ == null) { - resourceMetadata_ = builderForValue.build(); - onChanged(); - } else { - resourceMetadataBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - public Builder mergeResourceMetadata(flyteidl.core.Tasks.ResourceMetadata value) { - if (resourceMetadataBuilder_ == null) { - if (resourceMetadata_ != null) { - resourceMetadata_ = - flyteidl.core.Tasks.ResourceMetadata.newBuilder(resourceMetadata_).mergeFrom(value).buildPartial(); - } else { - resourceMetadata_ = value; - } - onChanged(); - } else { - resourceMetadataBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - public Builder clearResourceMetadata() { - if (resourceMetadataBuilder_ == null) { - resourceMetadata_ = null; - onChanged(); - } else { - resourceMetadata_ = null; - resourceMetadataBuilder_ = null; - } - - return this; - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - public flyteidl.core.Tasks.ResourceMetadata.Builder getResourceMetadataBuilder() { - - onChanged(); - return getResourceMetadataFieldBuilder().getBuilder(); - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - public flyteidl.core.Tasks.ResourceMetadataOrBuilder getResourceMetadataOrBuilder() { - if (resourceMetadataBuilder_ != null) { - return resourceMetadataBuilder_.getMessageOrBuilder(); - } else { - return resourceMetadata_ == null ? - flyteidl.core.Tasks.ResourceMetadata.getDefaultInstance() : resourceMetadata_; - } - } - /** - *
-       * Additional metadata associated with resources to allocate to this task
-       * 
- * - * .flyteidl.core.ResourceMetadata resource_metadata = 2; - */ - private com.google.protobuf.SingleFieldBuilderV3< - flyteidl.core.Tasks.ResourceMetadata, flyteidl.core.Tasks.ResourceMetadata.Builder, flyteidl.core.Tasks.ResourceMetadataOrBuilder> - getResourceMetadataFieldBuilder() { - if (resourceMetadataBuilder_ == null) { - resourceMetadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - flyteidl.core.Tasks.ResourceMetadata, flyteidl.core.Tasks.ResourceMetadata.Builder, flyteidl.core.Tasks.ResourceMetadataOrBuilder>( - getResourceMetadata(), - getParentForChildren(), - isClean()); - resourceMetadata_ = null; - } - return resourceMetadataBuilder_; - } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -21459,11 +21205,10 @@ public flyteidl.core.Workflow.TaskNodeOverrides getDefaultInstanceForType() { "re.Binding\022)\n\014failure_node\030\006 \001(\0132\023.flyte" + "idl.core.Node\022B\n\021metadata_defaults\030\007 \001(\013" + "2\'.flyteidl.core.WorkflowMetadataDefault" + - "s\"|\n\021TaskNodeOverrides\022+\n\tresources\030\001 \001(" + - "\0132\030.flyteidl.core.Resources\022:\n\021resource_" + - "metadata\030\002 \001(\0132\037.flyteidl.core.ResourceM" + - "etadataB6Z4github.com/flyteorg/flyteidl/" + - "gen/pb-go/flyteidl/coreb\006proto3" + "s\"@\n\021TaskNodeOverrides\022+\n\tresources\030\001 \001(" + + "\0132\030.flyteidl.core.ResourcesB6Z4github.co" + + "m/flyteorg/flyteidl/gen/pb-go/flyteidl/c" + + "oreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { @@ -21593,7 +21338,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_core_TaskNodeOverrides_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_core_TaskNodeOverrides_descriptor, - new java.lang.String[] { "Resources", "ResourceMetadata", }); + new java.lang.String[] { "Resources", }); flyteidl.core.Condition.getDescriptor(); flyteidl.core.Execution.getDescriptor(); flyteidl.core.IdentifierOuterClass.getDescriptor(); diff --git a/gen/pb-js/flyteidl.d.ts b/gen/pb-js/flyteidl.d.ts index 33345fff3..fc4be4945 100644 --- a/gen/pb-js/flyteidl.d.ts +++ b/gen/pb-js/flyteidl.d.ts @@ -1886,9 +1886,6 @@ export namespace flyteidl { /** TaskNodeOverrides resources */ resources?: (flyteidl.core.IResources|null); - - /** TaskNodeOverrides resourceMetadata */ - resourceMetadata?: (flyteidl.core.IResourceMetadata|null); } /** Represents a TaskNodeOverrides. */ @@ -1903,9 +1900,6 @@ export namespace flyteidl { /** TaskNodeOverrides resources. */ public resources?: (flyteidl.core.IResources|null); - /** TaskNodeOverrides resourceMetadata. */ - public resourceMetadata?: (flyteidl.core.IResourceMetadata|null); - /** * Creates a new TaskNodeOverrides instance using the specified properties. * @param [properties] Properties to set @@ -5230,128 +5224,6 @@ export namespace flyteidl { } } - /** Properties of a GPUAccelerator. */ - interface IGPUAccelerator { - - /** GPUAccelerator device */ - device?: (string|null); - - /** GPUAccelerator unpartitioned */ - unpartitioned?: (boolean|null); - - /** GPUAccelerator partitionSize */ - partitionSize?: (string|null); - } - - /** Represents a GPUAccelerator. */ - class GPUAccelerator implements IGPUAccelerator { - - /** - * Constructs a new GPUAccelerator. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IGPUAccelerator); - - /** GPUAccelerator device. */ - public device: string; - - /** GPUAccelerator unpartitioned. */ - public unpartitioned: boolean; - - /** GPUAccelerator partitionSize. */ - public partitionSize: string; - - /** GPUAccelerator partitionSizeValue. */ - public partitionSizeValue?: ("unpartitioned"|"partitionSize"); - - /** - * Creates a new GPUAccelerator instance using the specified properties. - * @param [properties] Properties to set - * @returns GPUAccelerator instance - */ - public static create(properties?: flyteidl.core.IGPUAccelerator): flyteidl.core.GPUAccelerator; - - /** - * Encodes the specified GPUAccelerator message. Does not implicitly {@link flyteidl.core.GPUAccelerator.verify|verify} messages. - * @param message GPUAccelerator message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IGPUAccelerator, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GPUAccelerator message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GPUAccelerator - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.GPUAccelerator; - - /** - * Verifies a GPUAccelerator message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ResourceMetadata. */ - interface IResourceMetadata { - - /** ResourceMetadata gpuAccelerator */ - gpuAccelerator?: (flyteidl.core.IGPUAccelerator|null); - } - - /** Represents a ResourceMetadata. */ - class ResourceMetadata implements IResourceMetadata { - - /** - * Constructs a new ResourceMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IResourceMetadata); - - /** ResourceMetadata gpuAccelerator. */ - public gpuAccelerator?: (flyteidl.core.IGPUAccelerator|null); - - /** ResourceMetadata acceleratorValue. */ - public acceleratorValue?: "gpuAccelerator"; - - /** - * Creates a new ResourceMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns ResourceMetadata instance - */ - public static create(properties?: flyteidl.core.IResourceMetadata): flyteidl.core.ResourceMetadata; - - /** - * Encodes the specified ResourceMetadata message. Does not implicitly {@link flyteidl.core.ResourceMetadata.verify|verify} messages. - * @param message ResourceMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IResourceMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ResourceMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ResourceMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ResourceMetadata; - - /** - * Verifies a ResourceMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - /** Properties of a TaskMetadata. */ interface ITaskMetadata { @@ -5387,9 +5259,6 @@ export namespace flyteidl { /** TaskMetadata podTemplateName */ podTemplateName?: (string|null); - - /** TaskMetadata resourceMetadata */ - resourceMetadata?: (flyteidl.core.IResourceMetadata|null); } /** Represents a TaskMetadata. */ @@ -5434,9 +5303,6 @@ export namespace flyteidl { /** TaskMetadata podTemplateName. */ public podTemplateName: string; - /** TaskMetadata resourceMetadata. */ - public resourceMetadata?: (flyteidl.core.IResourceMetadata|null); - /** TaskMetadata interruptibleValue. */ public interruptibleValue?: "interruptible"; diff --git a/gen/pb-js/flyteidl.js b/gen/pb-js/flyteidl.js index 6a0871486..78e602fde 100644 --- a/gen/pb-js/flyteidl.js +++ b/gen/pb-js/flyteidl.js @@ -4570,7 +4570,6 @@ * @memberof flyteidl.core * @interface ITaskNodeOverrides * @property {flyteidl.core.IResources|null} [resources] TaskNodeOverrides resources - * @property {flyteidl.core.IResourceMetadata|null} [resourceMetadata] TaskNodeOverrides resourceMetadata */ /** @@ -4596,14 +4595,6 @@ */ TaskNodeOverrides.prototype.resources = null; - /** - * TaskNodeOverrides resourceMetadata. - * @member {flyteidl.core.IResourceMetadata|null|undefined} resourceMetadata - * @memberof flyteidl.core.TaskNodeOverrides - * @instance - */ - TaskNodeOverrides.prototype.resourceMetadata = null; - /** * Creates a new TaskNodeOverrides instance using the specified properties. * @function create @@ -4630,8 +4621,6 @@ writer = $Writer.create(); if (message.resources != null && message.hasOwnProperty("resources")) $root.flyteidl.core.Resources.encode(message.resources, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.resourceMetadata != null && message.hasOwnProperty("resourceMetadata")) - $root.flyteidl.core.ResourceMetadata.encode(message.resourceMetadata, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); return writer; }; @@ -4656,9 +4645,6 @@ case 1: message.resources = $root.flyteidl.core.Resources.decode(reader, reader.uint32()); break; - case 2: - message.resourceMetadata = $root.flyteidl.core.ResourceMetadata.decode(reader, reader.uint32()); - break; default: reader.skipType(tag & 7); break; @@ -4683,11 +4669,6 @@ if (error) return "resources." + error; } - if (message.resourceMetadata != null && message.hasOwnProperty("resourceMetadata")) { - var error = $root.flyteidl.core.ResourceMetadata.verify(message.resourceMetadata); - if (error) - return "resourceMetadata." + error; - } return null; }; @@ -12458,301 +12439,6 @@ return RuntimeMetadata; })(); - core.GPUAccelerator = (function() { - - /** - * Properties of a GPUAccelerator. - * @memberof flyteidl.core - * @interface IGPUAccelerator - * @property {string|null} [device] GPUAccelerator device - * @property {boolean|null} [unpartitioned] GPUAccelerator unpartitioned - * @property {string|null} [partitionSize] GPUAccelerator partitionSize - */ - - /** - * Constructs a new GPUAccelerator. - * @memberof flyteidl.core - * @classdesc Represents a GPUAccelerator. - * @implements IGPUAccelerator - * @constructor - * @param {flyteidl.core.IGPUAccelerator=} [properties] Properties to set - */ - function GPUAccelerator(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GPUAccelerator device. - * @member {string} device - * @memberof flyteidl.core.GPUAccelerator - * @instance - */ - GPUAccelerator.prototype.device = ""; - - /** - * GPUAccelerator unpartitioned. - * @member {boolean} unpartitioned - * @memberof flyteidl.core.GPUAccelerator - * @instance - */ - GPUAccelerator.prototype.unpartitioned = false; - - /** - * GPUAccelerator partitionSize. - * @member {string} partitionSize - * @memberof flyteidl.core.GPUAccelerator - * @instance - */ - GPUAccelerator.prototype.partitionSize = ""; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * GPUAccelerator partitionSizeValue. - * @member {"unpartitioned"|"partitionSize"|undefined} partitionSizeValue - * @memberof flyteidl.core.GPUAccelerator - * @instance - */ - Object.defineProperty(GPUAccelerator.prototype, "partitionSizeValue", { - get: $util.oneOfGetter($oneOfFields = ["unpartitioned", "partitionSize"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new GPUAccelerator instance using the specified properties. - * @function create - * @memberof flyteidl.core.GPUAccelerator - * @static - * @param {flyteidl.core.IGPUAccelerator=} [properties] Properties to set - * @returns {flyteidl.core.GPUAccelerator} GPUAccelerator instance - */ - GPUAccelerator.create = function create(properties) { - return new GPUAccelerator(properties); - }; - - /** - * Encodes the specified GPUAccelerator message. Does not implicitly {@link flyteidl.core.GPUAccelerator.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.GPUAccelerator - * @static - * @param {flyteidl.core.IGPUAccelerator} message GPUAccelerator message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GPUAccelerator.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.device != null && message.hasOwnProperty("device")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.device); - if (message.unpartitioned != null && message.hasOwnProperty("unpartitioned")) - writer.uint32(/* id 2, wireType 0 =*/16).bool(message.unpartitioned); - if (message.partitionSize != null && message.hasOwnProperty("partitionSize")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.partitionSize); - return writer; - }; - - /** - * Decodes a GPUAccelerator message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.GPUAccelerator - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.GPUAccelerator} GPUAccelerator - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GPUAccelerator.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.GPUAccelerator(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.device = reader.string(); - break; - case 2: - message.unpartitioned = reader.bool(); - break; - case 3: - message.partitionSize = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GPUAccelerator message. - * @function verify - * @memberof flyteidl.core.GPUAccelerator - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GPUAccelerator.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.device != null && message.hasOwnProperty("device")) - if (!$util.isString(message.device)) - return "device: string expected"; - if (message.unpartitioned != null && message.hasOwnProperty("unpartitioned")) { - properties.partitionSizeValue = 1; - if (typeof message.unpartitioned !== "boolean") - return "unpartitioned: boolean expected"; - } - if (message.partitionSize != null && message.hasOwnProperty("partitionSize")) { - if (properties.partitionSizeValue === 1) - return "partitionSizeValue: multiple values"; - properties.partitionSizeValue = 1; - if (!$util.isString(message.partitionSize)) - return "partitionSize: string expected"; - } - return null; - }; - - return GPUAccelerator; - })(); - - core.ResourceMetadata = (function() { - - /** - * Properties of a ResourceMetadata. - * @memberof flyteidl.core - * @interface IResourceMetadata - * @property {flyteidl.core.IGPUAccelerator|null} [gpuAccelerator] ResourceMetadata gpuAccelerator - */ - - /** - * Constructs a new ResourceMetadata. - * @memberof flyteidl.core - * @classdesc Represents a ResourceMetadata. - * @implements IResourceMetadata - * @constructor - * @param {flyteidl.core.IResourceMetadata=} [properties] Properties to set - */ - function ResourceMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ResourceMetadata gpuAccelerator. - * @member {flyteidl.core.IGPUAccelerator|null|undefined} gpuAccelerator - * @memberof flyteidl.core.ResourceMetadata - * @instance - */ - ResourceMetadata.prototype.gpuAccelerator = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * ResourceMetadata acceleratorValue. - * @member {"gpuAccelerator"|undefined} acceleratorValue - * @memberof flyteidl.core.ResourceMetadata - * @instance - */ - Object.defineProperty(ResourceMetadata.prototype, "acceleratorValue", { - get: $util.oneOfGetter($oneOfFields = ["gpuAccelerator"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new ResourceMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.core.ResourceMetadata - * @static - * @param {flyteidl.core.IResourceMetadata=} [properties] Properties to set - * @returns {flyteidl.core.ResourceMetadata} ResourceMetadata instance - */ - ResourceMetadata.create = function create(properties) { - return new ResourceMetadata(properties); - }; - - /** - * Encodes the specified ResourceMetadata message. Does not implicitly {@link flyteidl.core.ResourceMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ResourceMetadata - * @static - * @param {flyteidl.core.IResourceMetadata} message ResourceMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ResourceMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.gpuAccelerator != null && message.hasOwnProperty("gpuAccelerator")) - $root.flyteidl.core.GPUAccelerator.encode(message.gpuAccelerator, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ResourceMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ResourceMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ResourceMetadata} ResourceMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ResourceMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ResourceMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.gpuAccelerator = $root.flyteidl.core.GPUAccelerator.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ResourceMetadata message. - * @function verify - * @memberof flyteidl.core.ResourceMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ResourceMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.gpuAccelerator != null && message.hasOwnProperty("gpuAccelerator")) { - properties.acceleratorValue = 1; - { - var error = $root.flyteidl.core.GPUAccelerator.verify(message.gpuAccelerator); - if (error) - return "gpuAccelerator." + error; - } - } - return null; - }; - - return ResourceMetadata; - })(); - core.TaskMetadata = (function() { /** @@ -12770,7 +12456,6 @@ * @property {boolean|null} [generatesDeck] TaskMetadata generatesDeck * @property {Object.|null} [tags] TaskMetadata tags * @property {string|null} [podTemplateName] TaskMetadata podTemplateName - * @property {flyteidl.core.IResourceMetadata|null} [resourceMetadata] TaskMetadata resourceMetadata */ /** @@ -12877,14 +12562,6 @@ */ TaskMetadata.prototype.podTemplateName = ""; - /** - * TaskMetadata resourceMetadata. - * @member {flyteidl.core.IResourceMetadata|null|undefined} resourceMetadata - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - TaskMetadata.prototype.resourceMetadata = null; - // OneOf field names bound to virtual getters and setters var $oneOfFields; @@ -12946,8 +12623,6 @@ writer.uint32(/* id 11, wireType 2 =*/90).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.tags[keys[i]]).ldelim(); if (message.podTemplateName != null && message.hasOwnProperty("podTemplateName")) writer.uint32(/* id 12, wireType 2 =*/98).string(message.podTemplateName); - if (message.resourceMetadata != null && message.hasOwnProperty("resourceMetadata")) - $root.flyteidl.core.ResourceMetadata.encode(message.resourceMetadata, writer.uint32(/* id 13, wireType 2 =*/106).fork()).ldelim(); return writer; }; @@ -13007,9 +12682,6 @@ case 12: message.podTemplateName = reader.string(); break; - case 13: - message.resourceMetadata = $root.flyteidl.core.ResourceMetadata.decode(reader, reader.uint32()); - break; default: reader.skipType(tag & 7); break; @@ -13076,11 +12748,6 @@ if (message.podTemplateName != null && message.hasOwnProperty("podTemplateName")) if (!$util.isString(message.podTemplateName)) return "podTemplateName: string expected"; - if (message.resourceMetadata != null && message.hasOwnProperty("resourceMetadata")) { - var error = $root.flyteidl.core.ResourceMetadata.verify(message.resourceMetadata); - if (error) - return "resourceMetadata." + error; - } return null; }; diff --git a/gen/pb_python/flyteidl/core/tasks_pb2.py b/gen/pb_python/flyteidl/core/tasks_pb2.py index f1c09cd7d..fcafa0a32 100644 --- a/gen/pb_python/flyteidl/core/tasks_pb2.py +++ b/gen/pb_python/flyteidl/core/tasks_pb2.py @@ -19,7 +19,7 @@ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19\x66lyteidl/core/tasks.proto\x12\rflyteidl.core\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xd0\x02\n\tResources\x12\x42\n\x08requests\x18\x01 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntryR\x08requests\x12>\n\x06limits\x18\x02 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntryR\x06limits\x1a`\n\rResourceEntry\x12\x39\n\x04name\x18\x01 \x01(\x0e\x32%.flyteidl.core.Resources.ResourceNameR\x04name\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\"]\n\x0cResourceName\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x07\n\x03\x43PU\x10\x01\x12\x07\n\x03GPU\x10\x02\x12\n\n\x06MEMORY\x10\x03\x12\x0b\n\x07STORAGE\x10\x04\x12\x15\n\x11\x45PHEMERAL_STORAGE\x10\x05\"\xac\x01\n\x0fRuntimeMetadata\x12>\n\x04type\x18\x01 \x01(\x0e\x32*.flyteidl.core.RuntimeMetadata.RuntimeTypeR\x04type\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12\x16\n\x06\x66lavor\x18\x03 \x01(\tR\x06\x66lavor\"\'\n\x0bRuntimeType\x12\t\n\x05OTHER\x10\x00\x12\r\n\tFLYTE_SDK\x10\x01\"\x91\x01\n\x0eGPUAccelerator\x12\x16\n\x06\x64\x65vice\x18\x01 \x01(\tR\x06\x64\x65vice\x12&\n\runpartitioned\x18\x02 \x01(\x08H\x00R\runpartitioned\x12\'\n\x0epartition_size\x18\x03 \x01(\tH\x00R\rpartitionSizeB\x16\n\x14partition_size_value\"q\n\x10ResourceMetadata\x12H\n\x0fgpu_accelerator\x18\x01 \x01(\x0b\x32\x1d.flyteidl.core.GPUAcceleratorH\x00R\x0egpuAcceleratorB\x13\n\x11\x61\x63\x63\x65lerator_value\"\xc3\x05\n\x0cTaskMetadata\x12\"\n\x0c\x64iscoverable\x18\x01 \x01(\x08R\x0c\x64iscoverable\x12\x38\n\x07runtime\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.RuntimeMetadataR\x07runtime\x12\x33\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x07timeout\x12\x36\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategyR\x07retries\x12+\n\x11\x64iscovery_version\x18\x06 \x01(\tR\x10\x64iscoveryVersion\x12\x38\n\x18\x64\x65precated_error_message\x18\x07 \x01(\tR\x16\x64\x65precatedErrorMessage\x12&\n\rinterruptible\x18\x08 \x01(\x08H\x00R\rinterruptible\x12-\n\x12\x63\x61\x63he_serializable\x18\t \x01(\x08R\x11\x63\x61\x63heSerializable\x12%\n\x0egenerates_deck\x18\n \x01(\x08R\rgeneratesDeck\x12\x39\n\x04tags\x18\x0b \x03(\x0b\x32%.flyteidl.core.TaskMetadata.TagsEntryR\x04tags\x12*\n\x11pod_template_name\x18\x0c \x01(\tR\x0fpodTemplateName\x12L\n\x11resource_metadata\x18\r \x01(\x0b\x32\x1f.flyteidl.core.ResourceMetadataR\x10resourceMetadata\x1a\x37\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x15\n\x13interruptible_value\"\x85\x05\n\x0cTaskTemplate\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x12\n\x04type\x18\x02 \x01(\tR\x04type\x12\x37\n\x08metadata\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.TaskMetadataR\x08metadata\x12;\n\tinterface\x18\x04 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterfaceR\tinterface\x12/\n\x06\x63ustom\x18\x05 \x01(\x0b\x32\x17.google.protobuf.StructR\x06\x63ustom\x12\x38\n\tcontainer\x18\x06 \x01(\x0b\x32\x18.flyteidl.core.ContainerH\x00R\tcontainer\x12\x30\n\x07k8s_pod\x18\x11 \x01(\x0b\x32\x15.flyteidl.core.K8sPodH\x00R\x06k8sPod\x12&\n\x03sql\x18\x12 \x01(\x0b\x32\x12.flyteidl.core.SqlH\x00R\x03sql\x12*\n\x11task_type_version\x18\x07 \x01(\x05R\x0ftaskTypeVersion\x12I\n\x10security_context\x18\x08 \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12?\n\x06\x63onfig\x18\x10 \x03(\x0b\x32\'.flyteidl.core.TaskTemplate.ConfigEntryR\x06\x63onfig\x1a\x39\n\x0b\x43onfigEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x08\n\x06target\"6\n\rContainerPort\x12%\n\x0e\x63ontainer_port\x18\x01 \x01(\rR\rcontainerPort\"\xfc\x03\n\tContainer\x12\x14\n\x05image\x18\x01 \x01(\tR\x05image\x12\x18\n\x07\x63ommand\x18\x02 \x03(\tR\x07\x63ommand\x12\x12\n\x04\x61rgs\x18\x03 \x03(\tR\x04\x61rgs\x12\x36\n\tresources\x18\x04 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12-\n\x03\x65nv\x18\x05 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairR\x03\x65nv\x12\x37\n\x06\x63onfig\x18\x06 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairB\x02\x18\x01R\x06\x63onfig\x12\x32\n\x05ports\x18\x07 \x03(\x0b\x32\x1c.flyteidl.core.ContainerPortR\x05ports\x12\x41\n\x0b\x64\x61ta_config\x18\t \x01(\x0b\x32 .flyteidl.core.DataLoadingConfigR\ndataConfig\x12I\n\x0c\x61rchitecture\x18\n \x01(\x0e\x32%.flyteidl.core.Container.ArchitectureR\x0c\x61rchitecture\"I\n\x0c\x41rchitecture\x12\x0b\n\x07UNKNOWN\x10\x00\x12\t\n\x05\x41MD64\x10\x01\x12\t\n\x05\x41RM64\x10\x02\x12\n\n\x06\x41RM_V6\x10\x03\x12\n\n\x06\x41RM_V7\x10\x04\"\xb5\x02\n\nIOStrategy\x12K\n\rdownload_mode\x18\x01 \x01(\x0e\x32&.flyteidl.core.IOStrategy.DownloadModeR\x0c\x64ownloadMode\x12\x45\n\x0bupload_mode\x18\x02 \x01(\x0e\x32$.flyteidl.core.IOStrategy.UploadModeR\nuploadMode\"L\n\x0c\x44ownloadMode\x12\x12\n\x0e\x44OWNLOAD_EAGER\x10\x00\x12\x13\n\x0f\x44OWNLOAD_STREAM\x10\x01\x12\x13\n\x0f\x44O_NOT_DOWNLOAD\x10\x02\"E\n\nUploadMode\x12\x12\n\x0eUPLOAD_ON_EXIT\x10\x00\x12\x10\n\x0cUPLOAD_EAGER\x10\x01\x12\x11\n\rDO_NOT_UPLOAD\x10\x02\"\xa7\x02\n\x11\x44\x61taLoadingConfig\x12\x18\n\x07\x65nabled\x18\x01 \x01(\x08R\x07\x65nabled\x12\x1d\n\ninput_path\x18\x02 \x01(\tR\tinputPath\x12\x1f\n\x0boutput_path\x18\x03 \x01(\tR\noutputPath\x12I\n\x06\x66ormat\x18\x04 \x01(\x0e\x32\x31.flyteidl.core.DataLoadingConfig.LiteralMapFormatR\x06\x66ormat\x12:\n\x0bio_strategy\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.IOStrategyR\nioStrategy\"1\n\x10LiteralMapFormat\x12\x08\n\x04JSON\x10\x00\x12\x08\n\x04YAML\x10\x01\x12\t\n\x05PROTO\x10\x02\"\xbd\x01\n\x06K8sPod\x12<\n\x08metadata\x18\x01 \x01(\x0b\x32 .flyteidl.core.K8sObjectMetadataR\x08metadata\x12\x32\n\x08pod_spec\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructR\x07podSpec\x12\x41\n\x0b\x64\x61ta_config\x18\x03 \x01(\x0b\x32 .flyteidl.core.DataLoadingConfigR\ndataConfig\"\xa9\x02\n\x11K8sObjectMetadata\x12\x44\n\x06labels\x18\x01 \x03(\x0b\x32,.flyteidl.core.K8sObjectMetadata.LabelsEntryR\x06labels\x12S\n\x0b\x61nnotations\x18\x02 \x03(\x0b\x32\x31.flyteidl.core.K8sObjectMetadata.AnnotationsEntryR\x0b\x61nnotations\x1a\x39\n\x0bLabelsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a>\n\x10\x41nnotationsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x92\x01\n\x03Sql\x12\x1c\n\tstatement\x18\x01 \x01(\tR\tstatement\x12\x34\n\x07\x64ialect\x18\x02 \x01(\x0e\x32\x1a.flyteidl.core.Sql.DialectR\x07\x64ialect\"7\n\x07\x44ialect\x12\r\n\tUNDEFINED\x10\x00\x12\x08\n\x04\x41NSI\x10\x01\x12\x08\n\x04HIVE\x10\x02\x12\t\n\x05OTHER\x10\x03\x42\xaa\x01\n\x11\x63om.flyteidl.coreB\nTasksProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19\x66lyteidl/core/tasks.proto\x12\rflyteidl.core\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xd0\x02\n\tResources\x12\x42\n\x08requests\x18\x01 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntryR\x08requests\x12>\n\x06limits\x18\x02 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntryR\x06limits\x1a`\n\rResourceEntry\x12\x39\n\x04name\x18\x01 \x01(\x0e\x32%.flyteidl.core.Resources.ResourceNameR\x04name\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\"]\n\x0cResourceName\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x07\n\x03\x43PU\x10\x01\x12\x07\n\x03GPU\x10\x02\x12\n\n\x06MEMORY\x10\x03\x12\x0b\n\x07STORAGE\x10\x04\x12\x15\n\x11\x45PHEMERAL_STORAGE\x10\x05\"\xac\x01\n\x0fRuntimeMetadata\x12>\n\x04type\x18\x01 \x01(\x0e\x32*.flyteidl.core.RuntimeMetadata.RuntimeTypeR\x04type\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12\x16\n\x06\x66lavor\x18\x03 \x01(\tR\x06\x66lavor\"\'\n\x0bRuntimeType\x12\t\n\x05OTHER\x10\x00\x12\r\n\tFLYTE_SDK\x10\x01\"\xf5\x04\n\x0cTaskMetadata\x12\"\n\x0c\x64iscoverable\x18\x01 \x01(\x08R\x0c\x64iscoverable\x12\x38\n\x07runtime\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.RuntimeMetadataR\x07runtime\x12\x33\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x07timeout\x12\x36\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategyR\x07retries\x12+\n\x11\x64iscovery_version\x18\x06 \x01(\tR\x10\x64iscoveryVersion\x12\x38\n\x18\x64\x65precated_error_message\x18\x07 \x01(\tR\x16\x64\x65precatedErrorMessage\x12&\n\rinterruptible\x18\x08 \x01(\x08H\x00R\rinterruptible\x12-\n\x12\x63\x61\x63he_serializable\x18\t \x01(\x08R\x11\x63\x61\x63heSerializable\x12%\n\x0egenerates_deck\x18\n \x01(\x08R\rgeneratesDeck\x12\x39\n\x04tags\x18\x0b \x03(\x0b\x32%.flyteidl.core.TaskMetadata.TagsEntryR\x04tags\x12*\n\x11pod_template_name\x18\x0c \x01(\tR\x0fpodTemplateName\x1a\x37\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x15\n\x13interruptible_value\"\x85\x05\n\x0cTaskTemplate\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x12\n\x04type\x18\x02 \x01(\tR\x04type\x12\x37\n\x08metadata\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.TaskMetadataR\x08metadata\x12;\n\tinterface\x18\x04 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterfaceR\tinterface\x12/\n\x06\x63ustom\x18\x05 \x01(\x0b\x32\x17.google.protobuf.StructR\x06\x63ustom\x12\x38\n\tcontainer\x18\x06 \x01(\x0b\x32\x18.flyteidl.core.ContainerH\x00R\tcontainer\x12\x30\n\x07k8s_pod\x18\x11 \x01(\x0b\x32\x15.flyteidl.core.K8sPodH\x00R\x06k8sPod\x12&\n\x03sql\x18\x12 \x01(\x0b\x32\x12.flyteidl.core.SqlH\x00R\x03sql\x12*\n\x11task_type_version\x18\x07 \x01(\x05R\x0ftaskTypeVersion\x12I\n\x10security_context\x18\x08 \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12?\n\x06\x63onfig\x18\x10 \x03(\x0b\x32\'.flyteidl.core.TaskTemplate.ConfigEntryR\x06\x63onfig\x1a\x39\n\x0b\x43onfigEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x08\n\x06target\"6\n\rContainerPort\x12%\n\x0e\x63ontainer_port\x18\x01 \x01(\rR\rcontainerPort\"\xfc\x03\n\tContainer\x12\x14\n\x05image\x18\x01 \x01(\tR\x05image\x12\x18\n\x07\x63ommand\x18\x02 \x03(\tR\x07\x63ommand\x12\x12\n\x04\x61rgs\x18\x03 \x03(\tR\x04\x61rgs\x12\x36\n\tresources\x18\x04 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12-\n\x03\x65nv\x18\x05 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairR\x03\x65nv\x12\x37\n\x06\x63onfig\x18\x06 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairB\x02\x18\x01R\x06\x63onfig\x12\x32\n\x05ports\x18\x07 \x03(\x0b\x32\x1c.flyteidl.core.ContainerPortR\x05ports\x12\x41\n\x0b\x64\x61ta_config\x18\t \x01(\x0b\x32 .flyteidl.core.DataLoadingConfigR\ndataConfig\x12I\n\x0c\x61rchitecture\x18\n \x01(\x0e\x32%.flyteidl.core.Container.ArchitectureR\x0c\x61rchitecture\"I\n\x0c\x41rchitecture\x12\x0b\n\x07UNKNOWN\x10\x00\x12\t\n\x05\x41MD64\x10\x01\x12\t\n\x05\x41RM64\x10\x02\x12\n\n\x06\x41RM_V6\x10\x03\x12\n\n\x06\x41RM_V7\x10\x04\"\xb5\x02\n\nIOStrategy\x12K\n\rdownload_mode\x18\x01 \x01(\x0e\x32&.flyteidl.core.IOStrategy.DownloadModeR\x0c\x64ownloadMode\x12\x45\n\x0bupload_mode\x18\x02 \x01(\x0e\x32$.flyteidl.core.IOStrategy.UploadModeR\nuploadMode\"L\n\x0c\x44ownloadMode\x12\x12\n\x0e\x44OWNLOAD_EAGER\x10\x00\x12\x13\n\x0f\x44OWNLOAD_STREAM\x10\x01\x12\x13\n\x0f\x44O_NOT_DOWNLOAD\x10\x02\"E\n\nUploadMode\x12\x12\n\x0eUPLOAD_ON_EXIT\x10\x00\x12\x10\n\x0cUPLOAD_EAGER\x10\x01\x12\x11\n\rDO_NOT_UPLOAD\x10\x02\"\xa7\x02\n\x11\x44\x61taLoadingConfig\x12\x18\n\x07\x65nabled\x18\x01 \x01(\x08R\x07\x65nabled\x12\x1d\n\ninput_path\x18\x02 \x01(\tR\tinputPath\x12\x1f\n\x0boutput_path\x18\x03 \x01(\tR\noutputPath\x12I\n\x06\x66ormat\x18\x04 \x01(\x0e\x32\x31.flyteidl.core.DataLoadingConfig.LiteralMapFormatR\x06\x66ormat\x12:\n\x0bio_strategy\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.IOStrategyR\nioStrategy\"1\n\x10LiteralMapFormat\x12\x08\n\x04JSON\x10\x00\x12\x08\n\x04YAML\x10\x01\x12\t\n\x05PROTO\x10\x02\"\xbd\x01\n\x06K8sPod\x12<\n\x08metadata\x18\x01 \x01(\x0b\x32 .flyteidl.core.K8sObjectMetadataR\x08metadata\x12\x32\n\x08pod_spec\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructR\x07podSpec\x12\x41\n\x0b\x64\x61ta_config\x18\x03 \x01(\x0b\x32 .flyteidl.core.DataLoadingConfigR\ndataConfig\"\xa9\x02\n\x11K8sObjectMetadata\x12\x44\n\x06labels\x18\x01 \x03(\x0b\x32,.flyteidl.core.K8sObjectMetadata.LabelsEntryR\x06labels\x12S\n\x0b\x61nnotations\x18\x02 \x03(\x0b\x32\x31.flyteidl.core.K8sObjectMetadata.AnnotationsEntryR\x0b\x61nnotations\x1a\x39\n\x0bLabelsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a>\n\x10\x41nnotationsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x92\x01\n\x03Sql\x12\x1c\n\tstatement\x18\x01 \x01(\tR\tstatement\x12\x34\n\x07\x64ialect\x18\x02 \x01(\x0e\x32\x1a.flyteidl.core.Sql.DialectR\x07\x64ialect\"7\n\x07\x44ialect\x12\r\n\tUNDEFINED\x10\x00\x12\x08\n\x04\x41NSI\x10\x01\x12\x08\n\x04HIVE\x10\x02\x12\t\n\x05OTHER\x10\x03\x42\xaa\x01\n\x11\x63om.flyteidl.coreB\nTasksProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -48,44 +48,40 @@ _globals['_RUNTIMEMETADATA']._serialized_end=741 _globals['_RUNTIMEMETADATA_RUNTIMETYPE']._serialized_start=702 _globals['_RUNTIMEMETADATA_RUNTIMETYPE']._serialized_end=741 - _globals['_GPUACCELERATOR']._serialized_start=744 - _globals['_GPUACCELERATOR']._serialized_end=889 - _globals['_RESOURCEMETADATA']._serialized_start=891 - _globals['_RESOURCEMETADATA']._serialized_end=1004 - _globals['_TASKMETADATA']._serialized_start=1007 - _globals['_TASKMETADATA']._serialized_end=1714 - _globals['_TASKMETADATA_TAGSENTRY']._serialized_start=1636 - _globals['_TASKMETADATA_TAGSENTRY']._serialized_end=1691 - _globals['_TASKTEMPLATE']._serialized_start=1717 - _globals['_TASKTEMPLATE']._serialized_end=2362 - _globals['_TASKTEMPLATE_CONFIGENTRY']._serialized_start=2295 - _globals['_TASKTEMPLATE_CONFIGENTRY']._serialized_end=2352 - _globals['_CONTAINERPORT']._serialized_start=2364 - _globals['_CONTAINERPORT']._serialized_end=2418 - _globals['_CONTAINER']._serialized_start=2421 - _globals['_CONTAINER']._serialized_end=2929 - _globals['_CONTAINER_ARCHITECTURE']._serialized_start=2856 - _globals['_CONTAINER_ARCHITECTURE']._serialized_end=2929 - _globals['_IOSTRATEGY']._serialized_start=2932 - _globals['_IOSTRATEGY']._serialized_end=3241 - _globals['_IOSTRATEGY_DOWNLOADMODE']._serialized_start=3094 - _globals['_IOSTRATEGY_DOWNLOADMODE']._serialized_end=3170 - _globals['_IOSTRATEGY_UPLOADMODE']._serialized_start=3172 - _globals['_IOSTRATEGY_UPLOADMODE']._serialized_end=3241 - _globals['_DATALOADINGCONFIG']._serialized_start=3244 - _globals['_DATALOADINGCONFIG']._serialized_end=3539 - _globals['_DATALOADINGCONFIG_LITERALMAPFORMAT']._serialized_start=3490 - _globals['_DATALOADINGCONFIG_LITERALMAPFORMAT']._serialized_end=3539 - _globals['_K8SPOD']._serialized_start=3542 - _globals['_K8SPOD']._serialized_end=3731 - _globals['_K8SOBJECTMETADATA']._serialized_start=3734 - _globals['_K8SOBJECTMETADATA']._serialized_end=4031 - _globals['_K8SOBJECTMETADATA_LABELSENTRY']._serialized_start=3910 - _globals['_K8SOBJECTMETADATA_LABELSENTRY']._serialized_end=3967 - _globals['_K8SOBJECTMETADATA_ANNOTATIONSENTRY']._serialized_start=3969 - _globals['_K8SOBJECTMETADATA_ANNOTATIONSENTRY']._serialized_end=4031 - _globals['_SQL']._serialized_start=4034 - _globals['_SQL']._serialized_end=4180 - _globals['_SQL_DIALECT']._serialized_start=4125 - _globals['_SQL_DIALECT']._serialized_end=4180 + _globals['_TASKMETADATA']._serialized_start=744 + _globals['_TASKMETADATA']._serialized_end=1373 + _globals['_TASKMETADATA_TAGSENTRY']._serialized_start=1295 + _globals['_TASKMETADATA_TAGSENTRY']._serialized_end=1350 + _globals['_TASKTEMPLATE']._serialized_start=1376 + _globals['_TASKTEMPLATE']._serialized_end=2021 + _globals['_TASKTEMPLATE_CONFIGENTRY']._serialized_start=1954 + _globals['_TASKTEMPLATE_CONFIGENTRY']._serialized_end=2011 + _globals['_CONTAINERPORT']._serialized_start=2023 + _globals['_CONTAINERPORT']._serialized_end=2077 + _globals['_CONTAINER']._serialized_start=2080 + _globals['_CONTAINER']._serialized_end=2588 + _globals['_CONTAINER_ARCHITECTURE']._serialized_start=2515 + _globals['_CONTAINER_ARCHITECTURE']._serialized_end=2588 + _globals['_IOSTRATEGY']._serialized_start=2591 + _globals['_IOSTRATEGY']._serialized_end=2900 + _globals['_IOSTRATEGY_DOWNLOADMODE']._serialized_start=2753 + _globals['_IOSTRATEGY_DOWNLOADMODE']._serialized_end=2829 + _globals['_IOSTRATEGY_UPLOADMODE']._serialized_start=2831 + _globals['_IOSTRATEGY_UPLOADMODE']._serialized_end=2900 + _globals['_DATALOADINGCONFIG']._serialized_start=2903 + _globals['_DATALOADINGCONFIG']._serialized_end=3198 + _globals['_DATALOADINGCONFIG_LITERALMAPFORMAT']._serialized_start=3149 + _globals['_DATALOADINGCONFIG_LITERALMAPFORMAT']._serialized_end=3198 + _globals['_K8SPOD']._serialized_start=3201 + _globals['_K8SPOD']._serialized_end=3390 + _globals['_K8SOBJECTMETADATA']._serialized_start=3393 + _globals['_K8SOBJECTMETADATA']._serialized_end=3690 + _globals['_K8SOBJECTMETADATA_LABELSENTRY']._serialized_start=3569 + _globals['_K8SOBJECTMETADATA_LABELSENTRY']._serialized_end=3626 + _globals['_K8SOBJECTMETADATA_ANNOTATIONSENTRY']._serialized_start=3628 + _globals['_K8SOBJECTMETADATA_ANNOTATIONSENTRY']._serialized_end=3690 + _globals['_SQL']._serialized_start=3693 + _globals['_SQL']._serialized_end=3839 + _globals['_SQL_DIALECT']._serialized_start=3784 + _globals['_SQL_DIALECT']._serialized_end=3839 # @@protoc_insertion_point(module_scope) diff --git a/gen/pb_python/flyteidl/core/tasks_pb2.pyi b/gen/pb_python/flyteidl/core/tasks_pb2.pyi index d1516d8d8..e33453ecd 100644 --- a/gen/pb_python/flyteidl/core/tasks_pb2.pyi +++ b/gen/pb_python/flyteidl/core/tasks_pb2.pyi @@ -57,24 +57,8 @@ class RuntimeMetadata(_message.Message): flavor: str def __init__(self, type: _Optional[_Union[RuntimeMetadata.RuntimeType, str]] = ..., version: _Optional[str] = ..., flavor: _Optional[str] = ...) -> None: ... -class GPUAccelerator(_message.Message): - __slots__ = ["device", "unpartitioned", "partition_size"] - DEVICE_FIELD_NUMBER: _ClassVar[int] - UNPARTITIONED_FIELD_NUMBER: _ClassVar[int] - PARTITION_SIZE_FIELD_NUMBER: _ClassVar[int] - device: str - unpartitioned: bool - partition_size: str - def __init__(self, device: _Optional[str] = ..., unpartitioned: bool = ..., partition_size: _Optional[str] = ...) -> None: ... - -class ResourceMetadata(_message.Message): - __slots__ = ["gpu_accelerator"] - GPU_ACCELERATOR_FIELD_NUMBER: _ClassVar[int] - gpu_accelerator: GPUAccelerator - def __init__(self, gpu_accelerator: _Optional[_Union[GPUAccelerator, _Mapping]] = ...) -> None: ... - class TaskMetadata(_message.Message): - __slots__ = ["discoverable", "runtime", "timeout", "retries", "discovery_version", "deprecated_error_message", "interruptible", "cache_serializable", "generates_deck", "tags", "pod_template_name", "resource_metadata"] + __slots__ = ["discoverable", "runtime", "timeout", "retries", "discovery_version", "deprecated_error_message", "interruptible", "cache_serializable", "generates_deck", "tags", "pod_template_name"] class TagsEntry(_message.Message): __slots__ = ["key", "value"] KEY_FIELD_NUMBER: _ClassVar[int] @@ -93,7 +77,6 @@ class TaskMetadata(_message.Message): GENERATES_DECK_FIELD_NUMBER: _ClassVar[int] TAGS_FIELD_NUMBER: _ClassVar[int] POD_TEMPLATE_NAME_FIELD_NUMBER: _ClassVar[int] - RESOURCE_METADATA_FIELD_NUMBER: _ClassVar[int] discoverable: bool runtime: RuntimeMetadata timeout: _duration_pb2.Duration @@ -105,8 +88,7 @@ class TaskMetadata(_message.Message): generates_deck: bool tags: _containers.ScalarMap[str, str] pod_template_name: str - resource_metadata: ResourceMetadata - def __init__(self, discoverable: bool = ..., runtime: _Optional[_Union[RuntimeMetadata, _Mapping]] = ..., timeout: _Optional[_Union[_duration_pb2.Duration, _Mapping]] = ..., retries: _Optional[_Union[_literals_pb2.RetryStrategy, _Mapping]] = ..., discovery_version: _Optional[str] = ..., deprecated_error_message: _Optional[str] = ..., interruptible: bool = ..., cache_serializable: bool = ..., generates_deck: bool = ..., tags: _Optional[_Mapping[str, str]] = ..., pod_template_name: _Optional[str] = ..., resource_metadata: _Optional[_Union[ResourceMetadata, _Mapping]] = ...) -> None: ... + def __init__(self, discoverable: bool = ..., runtime: _Optional[_Union[RuntimeMetadata, _Mapping]] = ..., timeout: _Optional[_Union[_duration_pb2.Duration, _Mapping]] = ..., retries: _Optional[_Union[_literals_pb2.RetryStrategy, _Mapping]] = ..., discovery_version: _Optional[str] = ..., deprecated_error_message: _Optional[str] = ..., interruptible: bool = ..., cache_serializable: bool = ..., generates_deck: bool = ..., tags: _Optional[_Mapping[str, str]] = ..., pod_template_name: _Optional[str] = ...) -> None: ... class TaskTemplate(_message.Message): __slots__ = ["id", "type", "metadata", "interface", "custom", "container", "k8s_pod", "sql", "task_type_version", "security_context", "config"] diff --git a/gen/pb_python/flyteidl/core/workflow_pb2.py b/gen/pb_python/flyteidl/core/workflow_pb2.py index 7f1d4700e..5272c8bab 100644 --- a/gen/pb_python/flyteidl/core/workflow_pb2.py +++ b/gen/pb_python/flyteidl/core/workflow_pb2.py @@ -22,7 +22,7 @@ from google.protobuf import duration_pb2 as google_dot_protobuf_dot_duration__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/core/workflow.proto\x12\rflyteidl.core\x1a\x1d\x66lyteidl/core/condition.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x19\x66lyteidl/core/types.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\"{\n\x07IfBlock\x12>\n\tcondition\x18\x01 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\tcondition\x12\x30\n\tthen_node\x18\x02 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x08thenNode\"\xd4\x01\n\x0bIfElseBlock\x12*\n\x04\x63\x61se\x18\x01 \x01(\x0b\x32\x16.flyteidl.core.IfBlockR\x04\x63\x61se\x12,\n\x05other\x18\x02 \x03(\x0b\x32\x16.flyteidl.core.IfBlockR\x05other\x12\x32\n\telse_node\x18\x03 \x01(\x0b\x32\x13.flyteidl.core.NodeH\x00R\x08\x65lseNode\x12,\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x14.flyteidl.core.ErrorH\x00R\x05\x65rrorB\t\n\x07\x64\x65\x66\x61ult\"A\n\nBranchNode\x12\x33\n\x07if_else\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.IfElseBlockR\x06ifElse\"\x97\x01\n\x08TaskNode\x12>\n\x0creference_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\x0breferenceId\x12>\n\toverrides\x18\x02 \x01(\x0b\x32 .flyteidl.core.TaskNodeOverridesR\toverridesB\x0b\n\treference\"\xa6\x01\n\x0cWorkflowNode\x12\x42\n\x0elaunchplan_ref\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\rlaunchplanRef\x12\x45\n\x10sub_workflow_ref\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\x0esubWorkflowRefB\x0b\n\treference\"/\n\x10\x41pproveCondition\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\"\x90\x01\n\x0fSignalCondition\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\x12\x30\n\x14output_variable_name\x18\x03 \x01(\tR\x12outputVariableName\"G\n\x0eSleepCondition\x12\x35\n\x08\x64uration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\"\xc5\x01\n\x08GateNode\x12;\n\x07\x61pprove\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.ApproveConditionH\x00R\x07\x61pprove\x12\x38\n\x06signal\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.SignalConditionH\x00R\x06signal\x12\x35\n\x05sleep\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.SleepConditionH\x00R\x05sleepB\x0b\n\tcondition\"\xbf\x01\n\tArrayNode\x12\'\n\x04node\x18\x01 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x04node\x12 \n\x0bparallelism\x18\x02 \x01(\rR\x0bparallelism\x12%\n\rmin_successes\x18\x03 \x01(\rH\x00R\x0cminSuccesses\x12,\n\x11min_success_ratio\x18\x04 \x01(\x02H\x00R\x0fminSuccessRatioB\x12\n\x10success_criteria\"\xce\x01\n\x0cNodeMetadata\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x33\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x07timeout\x12\x36\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategyR\x07retries\x12&\n\rinterruptible\x18\x06 \x01(\x08H\x00R\rinterruptibleB\x15\n\x13interruptible_value\"/\n\x05\x41lias\x12\x10\n\x03var\x18\x01 \x01(\tR\x03var\x12\x14\n\x05\x61lias\x18\x02 \x01(\tR\x05\x61lias\"\x9f\x04\n\x04Node\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x37\n\x08metadata\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.NodeMetadataR\x08metadata\x12.\n\x06inputs\x18\x03 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x06inputs\x12*\n\x11upstream_node_ids\x18\x04 \x03(\tR\x0fupstreamNodeIds\x12;\n\x0eoutput_aliases\x18\x05 \x03(\x0b\x32\x14.flyteidl.core.AliasR\routputAliases\x12\x36\n\ttask_node\x18\x06 \x01(\x0b\x32\x17.flyteidl.core.TaskNodeH\x00R\x08taskNode\x12\x42\n\rworkflow_node\x18\x07 \x01(\x0b\x32\x1b.flyteidl.core.WorkflowNodeH\x00R\x0cworkflowNode\x12<\n\x0b\x62ranch_node\x18\x08 \x01(\x0b\x32\x19.flyteidl.core.BranchNodeH\x00R\nbranchNode\x12\x36\n\tgate_node\x18\t \x01(\x0b\x32\x17.flyteidl.core.GateNodeH\x00R\x08gateNode\x12\x39\n\narray_node\x18\n \x01(\x0b\x32\x18.flyteidl.core.ArrayNodeH\x00R\tarrayNodeB\x08\n\x06target\"\xfc\x02\n\x10WorkflowMetadata\x12M\n\x12quality_of_service\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceR\x10qualityOfService\x12N\n\non_failure\x18\x02 \x01(\x0e\x32/.flyteidl.core.WorkflowMetadata.OnFailurePolicyR\tonFailure\x12=\n\x04tags\x18\x03 \x03(\x0b\x32).flyteidl.core.WorkflowMetadata.TagsEntryR\x04tags\x1a\x37\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"Q\n\x0fOnFailurePolicy\x12\x14\n\x10\x46\x41IL_IMMEDIATELY\x10\x00\x12(\n$FAIL_AFTER_EXECUTABLE_NODES_COMPLETE\x10\x01\"@\n\x18WorkflowMetadataDefaults\x12$\n\rinterruptible\x18\x01 \x01(\x08R\rinterruptible\"\xa2\x03\n\x10WorkflowTemplate\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12;\n\x08metadata\x18\x02 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowMetadataR\x08metadata\x12;\n\tinterface\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterfaceR\tinterface\x12)\n\x05nodes\x18\x04 \x03(\x0b\x32\x13.flyteidl.core.NodeR\x05nodes\x12\x30\n\x07outputs\x18\x05 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x07outputs\x12\x36\n\x0c\x66\x61ilure_node\x18\x06 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x0b\x66\x61ilureNode\x12T\n\x11metadata_defaults\x18\x07 \x01(\x0b\x32\'.flyteidl.core.WorkflowMetadataDefaultsR\x10metadataDefaults\"\x99\x01\n\x11TaskNodeOverrides\x12\x36\n\tresources\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12L\n\x11resource_metadata\x18\x02 \x01(\x0b\x32\x1f.flyteidl.core.ResourceMetadataR\x10resourceMetadataB\xad\x01\n\x11\x63om.flyteidl.coreB\rWorkflowProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/core/workflow.proto\x12\rflyteidl.core\x1a\x1d\x66lyteidl/core/condition.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x19\x66lyteidl/core/types.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\"{\n\x07IfBlock\x12>\n\tcondition\x18\x01 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\tcondition\x12\x30\n\tthen_node\x18\x02 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x08thenNode\"\xd4\x01\n\x0bIfElseBlock\x12*\n\x04\x63\x61se\x18\x01 \x01(\x0b\x32\x16.flyteidl.core.IfBlockR\x04\x63\x61se\x12,\n\x05other\x18\x02 \x03(\x0b\x32\x16.flyteidl.core.IfBlockR\x05other\x12\x32\n\telse_node\x18\x03 \x01(\x0b\x32\x13.flyteidl.core.NodeH\x00R\x08\x65lseNode\x12,\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x14.flyteidl.core.ErrorH\x00R\x05\x65rrorB\t\n\x07\x64\x65\x66\x61ult\"A\n\nBranchNode\x12\x33\n\x07if_else\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.IfElseBlockR\x06ifElse\"\x97\x01\n\x08TaskNode\x12>\n\x0creference_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\x0breferenceId\x12>\n\toverrides\x18\x02 \x01(\x0b\x32 .flyteidl.core.TaskNodeOverridesR\toverridesB\x0b\n\treference\"\xa6\x01\n\x0cWorkflowNode\x12\x42\n\x0elaunchplan_ref\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\rlaunchplanRef\x12\x45\n\x10sub_workflow_ref\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\x0esubWorkflowRefB\x0b\n\treference\"/\n\x10\x41pproveCondition\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\"\x90\x01\n\x0fSignalCondition\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\x12\x30\n\x14output_variable_name\x18\x03 \x01(\tR\x12outputVariableName\"G\n\x0eSleepCondition\x12\x35\n\x08\x64uration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\"\xc5\x01\n\x08GateNode\x12;\n\x07\x61pprove\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.ApproveConditionH\x00R\x07\x61pprove\x12\x38\n\x06signal\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.SignalConditionH\x00R\x06signal\x12\x35\n\x05sleep\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.SleepConditionH\x00R\x05sleepB\x0b\n\tcondition\"\xbf\x01\n\tArrayNode\x12\'\n\x04node\x18\x01 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x04node\x12 \n\x0bparallelism\x18\x02 \x01(\rR\x0bparallelism\x12%\n\rmin_successes\x18\x03 \x01(\rH\x00R\x0cminSuccesses\x12,\n\x11min_success_ratio\x18\x04 \x01(\x02H\x00R\x0fminSuccessRatioB\x12\n\x10success_criteria\"\xce\x01\n\x0cNodeMetadata\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x33\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x07timeout\x12\x36\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategyR\x07retries\x12&\n\rinterruptible\x18\x06 \x01(\x08H\x00R\rinterruptibleB\x15\n\x13interruptible_value\"/\n\x05\x41lias\x12\x10\n\x03var\x18\x01 \x01(\tR\x03var\x12\x14\n\x05\x61lias\x18\x02 \x01(\tR\x05\x61lias\"\x9f\x04\n\x04Node\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x37\n\x08metadata\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.NodeMetadataR\x08metadata\x12.\n\x06inputs\x18\x03 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x06inputs\x12*\n\x11upstream_node_ids\x18\x04 \x03(\tR\x0fupstreamNodeIds\x12;\n\x0eoutput_aliases\x18\x05 \x03(\x0b\x32\x14.flyteidl.core.AliasR\routputAliases\x12\x36\n\ttask_node\x18\x06 \x01(\x0b\x32\x17.flyteidl.core.TaskNodeH\x00R\x08taskNode\x12\x42\n\rworkflow_node\x18\x07 \x01(\x0b\x32\x1b.flyteidl.core.WorkflowNodeH\x00R\x0cworkflowNode\x12<\n\x0b\x62ranch_node\x18\x08 \x01(\x0b\x32\x19.flyteidl.core.BranchNodeH\x00R\nbranchNode\x12\x36\n\tgate_node\x18\t \x01(\x0b\x32\x17.flyteidl.core.GateNodeH\x00R\x08gateNode\x12\x39\n\narray_node\x18\n \x01(\x0b\x32\x18.flyteidl.core.ArrayNodeH\x00R\tarrayNodeB\x08\n\x06target\"\xfc\x02\n\x10WorkflowMetadata\x12M\n\x12quality_of_service\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceR\x10qualityOfService\x12N\n\non_failure\x18\x02 \x01(\x0e\x32/.flyteidl.core.WorkflowMetadata.OnFailurePolicyR\tonFailure\x12=\n\x04tags\x18\x03 \x03(\x0b\x32).flyteidl.core.WorkflowMetadata.TagsEntryR\x04tags\x1a\x37\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"Q\n\x0fOnFailurePolicy\x12\x14\n\x10\x46\x41IL_IMMEDIATELY\x10\x00\x12(\n$FAIL_AFTER_EXECUTABLE_NODES_COMPLETE\x10\x01\"@\n\x18WorkflowMetadataDefaults\x12$\n\rinterruptible\x18\x01 \x01(\x08R\rinterruptible\"\xa2\x03\n\x10WorkflowTemplate\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12;\n\x08metadata\x18\x02 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowMetadataR\x08metadata\x12;\n\tinterface\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterfaceR\tinterface\x12)\n\x05nodes\x18\x04 \x03(\x0b\x32\x13.flyteidl.core.NodeR\x05nodes\x12\x30\n\x07outputs\x18\x05 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x07outputs\x12\x36\n\x0c\x66\x61ilure_node\x18\x06 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x0b\x66\x61ilureNode\x12T\n\x11metadata_defaults\x18\x07 \x01(\x0b\x32\'.flyteidl.core.WorkflowMetadataDefaultsR\x10metadataDefaults\"K\n\x11TaskNodeOverrides\x12\x36\n\tresources\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresourcesB\xad\x01\n\x11\x63om.flyteidl.coreB\rWorkflowProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -69,6 +69,6 @@ _globals['_WORKFLOWMETADATADEFAULTS']._serialized_end=2962 _globals['_WORKFLOWTEMPLATE']._serialized_start=2965 _globals['_WORKFLOWTEMPLATE']._serialized_end=3383 - _globals['_TASKNODEOVERRIDES']._serialized_start=3386 - _globals['_TASKNODEOVERRIDES']._serialized_end=3539 + _globals['_TASKNODEOVERRIDES']._serialized_start=3385 + _globals['_TASKNODEOVERRIDES']._serialized_end=3460 # @@protoc_insertion_point(module_scope) diff --git a/gen/pb_python/flyteidl/core/workflow_pb2.pyi b/gen/pb_python/flyteidl/core/workflow_pb2.pyi index ab362cb71..95a108abc 100644 --- a/gen/pb_python/flyteidl/core/workflow_pb2.pyi +++ b/gen/pb_python/flyteidl/core/workflow_pb2.pyi @@ -193,9 +193,7 @@ class WorkflowTemplate(_message.Message): def __init__(self, id: _Optional[_Union[_identifier_pb2.Identifier, _Mapping]] = ..., metadata: _Optional[_Union[WorkflowMetadata, _Mapping]] = ..., interface: _Optional[_Union[_interface_pb2.TypedInterface, _Mapping]] = ..., nodes: _Optional[_Iterable[_Union[Node, _Mapping]]] = ..., outputs: _Optional[_Iterable[_Union[_literals_pb2.Binding, _Mapping]]] = ..., failure_node: _Optional[_Union[Node, _Mapping]] = ..., metadata_defaults: _Optional[_Union[WorkflowMetadataDefaults, _Mapping]] = ...) -> None: ... class TaskNodeOverrides(_message.Message): - __slots__ = ["resources", "resource_metadata"] + __slots__ = ["resources"] RESOURCES_FIELD_NUMBER: _ClassVar[int] - RESOURCE_METADATA_FIELD_NUMBER: _ClassVar[int] resources: _tasks_pb2.Resources - resource_metadata: _tasks_pb2.ResourceMetadata - def __init__(self, resources: _Optional[_Union[_tasks_pb2.Resources, _Mapping]] = ..., resource_metadata: _Optional[_Union[_tasks_pb2.ResourceMetadata, _Mapping]] = ...) -> None: ... + def __init__(self, resources: _Optional[_Union[_tasks_pb2.Resources, _Mapping]] = ...) -> None: ... diff --git a/gen/pb_python/flyteidl/service/flyteadmin/README.md b/gen/pb_python/flyteidl/service/flyteadmin/README.md index 079e78099..13bcadcc6 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/README.md +++ b/gen/pb_python/flyteidl/service/flyteadmin/README.md @@ -289,7 +289,6 @@ Class | Method | HTTP request | Description - [CoreEnumType](docs/CoreEnumType.md) - [CoreError](docs/CoreError.md) - [CoreExecutionError](docs/CoreExecutionError.md) - - [CoreGPUAccelerator](docs/CoreGPUAccelerator.md) - [CoreGateNode](docs/CoreGateNode.md) - [CoreIOStrategy](docs/CoreIOStrategy.md) - [CoreIdentifier](docs/CoreIdentifier.md) @@ -318,7 +317,6 @@ Class | Method | HTTP request | Description - [CorePromiseAttribute](docs/CorePromiseAttribute.md) - [CoreQualityOfService](docs/CoreQualityOfService.md) - [CoreQualityOfServiceSpec](docs/CoreQualityOfServiceSpec.md) - - [CoreResourceMetadata](docs/CoreResourceMetadata.md) - [CoreResourceType](docs/CoreResourceType.md) - [CoreResources](docs/CoreResources.md) - [CoreRetryStrategy](docs/CoreRetryStrategy.md) diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py index 5dbdfda09..02d7600b1 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py @@ -180,7 +180,6 @@ from flyteadmin.models.core_enum_type import CoreEnumType from flyteadmin.models.core_error import CoreError from flyteadmin.models.core_execution_error import CoreExecutionError -from flyteadmin.models.core_gpu_accelerator import CoreGPUAccelerator from flyteadmin.models.core_gate_node import CoreGateNode from flyteadmin.models.core_io_strategy import CoreIOStrategy from flyteadmin.models.core_identifier import CoreIdentifier @@ -209,7 +208,6 @@ from flyteadmin.models.core_promise_attribute import CorePromiseAttribute from flyteadmin.models.core_quality_of_service import CoreQualityOfService from flyteadmin.models.core_quality_of_service_spec import CoreQualityOfServiceSpec -from flyteadmin.models.core_resource_metadata import CoreResourceMetadata from flyteadmin.models.core_resource_type import CoreResourceType from flyteadmin.models.core_resources import CoreResources from flyteadmin.models.core_retry_strategy import CoreRetryStrategy diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py index 798519618..371e37b23 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py @@ -173,7 +173,6 @@ from flyteadmin.models.core_enum_type import CoreEnumType from flyteadmin.models.core_error import CoreError from flyteadmin.models.core_execution_error import CoreExecutionError -from flyteadmin.models.core_gpu_accelerator import CoreGPUAccelerator from flyteadmin.models.core_gate_node import CoreGateNode from flyteadmin.models.core_io_strategy import CoreIOStrategy from flyteadmin.models.core_identifier import CoreIdentifier @@ -202,7 +201,6 @@ from flyteadmin.models.core_promise_attribute import CorePromiseAttribute from flyteadmin.models.core_quality_of_service import CoreQualityOfService from flyteadmin.models.core_quality_of_service_spec import CoreQualityOfServiceSpec -from flyteadmin.models.core_resource_metadata import CoreResourceMetadata from flyteadmin.models.core_resource_type import CoreResourceType from flyteadmin.models.core_resources import CoreResources from flyteadmin.models.core_retry_strategy import CoreRetryStrategy diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_gpu_accelerator.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_gpu_accelerator.py deleted file mode 100644 index 2b4f144d4..000000000 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_gpu_accelerator.py +++ /dev/null @@ -1,167 +0,0 @@ -# coding: utf-8 - -""" - flyteidl/service/admin.proto - - No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 - - OpenAPI spec version: version not set - - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CoreGPUAccelerator(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'device': 'str', - 'unpartitioned': 'bool', - 'partition_size': 'str' - } - - attribute_map = { - 'device': 'device', - 'unpartitioned': 'unpartitioned', - 'partition_size': 'partition_size' - } - - def __init__(self, device=None, unpartitioned=None, partition_size=None): # noqa: E501 - """CoreGPUAccelerator - a model defined in Swagger""" # noqa: E501 - - self._device = None - self._unpartitioned = None - self._partition_size = None - self.discriminator = None - - if device is not None: - self.device = device - if unpartitioned is not None: - self.unpartitioned = unpartitioned - if partition_size is not None: - self.partition_size = partition_size - - @property - def device(self): - """Gets the device of this CoreGPUAccelerator. # noqa: E501 - - - :return: The device of this CoreGPUAccelerator. # noqa: E501 - :rtype: str - """ - return self._device - - @device.setter - def device(self, device): - """Sets the device of this CoreGPUAccelerator. - - - :param device: The device of this CoreGPUAccelerator. # noqa: E501 - :type: str - """ - - self._device = device - - @property - def unpartitioned(self): - """Gets the unpartitioned of this CoreGPUAccelerator. # noqa: E501 - - - :return: The unpartitioned of this CoreGPUAccelerator. # noqa: E501 - :rtype: bool - """ - return self._unpartitioned - - @unpartitioned.setter - def unpartitioned(self, unpartitioned): - """Sets the unpartitioned of this CoreGPUAccelerator. - - - :param unpartitioned: The unpartitioned of this CoreGPUAccelerator. # noqa: E501 - :type: bool - """ - - self._unpartitioned = unpartitioned - - @property - def partition_size(self): - """Gets the partition_size of this CoreGPUAccelerator. # noqa: E501 - - - :return: The partition_size of this CoreGPUAccelerator. # noqa: E501 - :rtype: str - """ - return self._partition_size - - @partition_size.setter - def partition_size(self, partition_size): - """Sets the partition_size of this CoreGPUAccelerator. - - - :param partition_size: The partition_size of this CoreGPUAccelerator. # noqa: E501 - :type: str - """ - - self._partition_size = partition_size - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CoreGPUAccelerator, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CoreGPUAccelerator): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_resource_metadata.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_resource_metadata.py deleted file mode 100644 index c97c6c5ce..000000000 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_resource_metadata.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - flyteidl/service/admin.proto - - No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 - - OpenAPI spec version: version not set - - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - -from flyteadmin.models.core_gpu_accelerator import CoreGPUAccelerator # noqa: F401,E501 - - -class CoreResourceMetadata(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'gpu_accelerator': 'CoreGPUAccelerator' - } - - attribute_map = { - 'gpu_accelerator': 'gpu_accelerator' - } - - def __init__(self, gpu_accelerator=None): # noqa: E501 - """CoreResourceMetadata - a model defined in Swagger""" # noqa: E501 - - self._gpu_accelerator = None - self.discriminator = None - - if gpu_accelerator is not None: - self.gpu_accelerator = gpu_accelerator - - @property - def gpu_accelerator(self): - """Gets the gpu_accelerator of this CoreResourceMetadata. # noqa: E501 - - - :return: The gpu_accelerator of this CoreResourceMetadata. # noqa: E501 - :rtype: CoreGPUAccelerator - """ - return self._gpu_accelerator - - @gpu_accelerator.setter - def gpu_accelerator(self, gpu_accelerator): - """Sets the gpu_accelerator of this CoreResourceMetadata. - - - :param gpu_accelerator: The gpu_accelerator of this CoreResourceMetadata. # noqa: E501 - :type: CoreGPUAccelerator - """ - - self._gpu_accelerator = gpu_accelerator - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CoreResourceMetadata, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CoreResourceMetadata): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_metadata.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_metadata.py index b7b8ff510..fdc8331bb 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_metadata.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_metadata.py @@ -16,7 +16,6 @@ import six -from flyteadmin.models.core_resource_metadata import CoreResourceMetadata # noqa: F401,E501 from flyteadmin.models.core_retry_strategy import CoreRetryStrategy # noqa: F401,E501 from flyteadmin.models.core_runtime_metadata import CoreRuntimeMetadata # noqa: F401,E501 @@ -45,8 +44,7 @@ class CoreTaskMetadata(object): 'cache_serializable': 'bool', 'generates_deck': 'bool', 'tags': 'dict(str, str)', - 'pod_template_name': 'str', - 'resource_metadata': 'CoreResourceMetadata' + 'pod_template_name': 'str' } attribute_map = { @@ -60,11 +58,10 @@ class CoreTaskMetadata(object): 'cache_serializable': 'cache_serializable', 'generates_deck': 'generates_deck', 'tags': 'tags', - 'pod_template_name': 'pod_template_name', - 'resource_metadata': 'resource_metadata' + 'pod_template_name': 'pod_template_name' } - def __init__(self, discoverable=None, runtime=None, timeout=None, retries=None, discovery_version=None, deprecated_error_message=None, interruptible=None, cache_serializable=None, generates_deck=None, tags=None, pod_template_name=None, resource_metadata=None): # noqa: E501 + def __init__(self, discoverable=None, runtime=None, timeout=None, retries=None, discovery_version=None, deprecated_error_message=None, interruptible=None, cache_serializable=None, generates_deck=None, tags=None, pod_template_name=None): # noqa: E501 """CoreTaskMetadata - a model defined in Swagger""" # noqa: E501 self._discoverable = None @@ -78,7 +75,6 @@ def __init__(self, discoverable=None, runtime=None, timeout=None, retries=None, self._generates_deck = None self._tags = None self._pod_template_name = None - self._resource_metadata = None self.discriminator = None if discoverable is not None: @@ -103,8 +99,6 @@ def __init__(self, discoverable=None, runtime=None, timeout=None, retries=None, self.tags = tags if pod_template_name is not None: self.pod_template_name = pod_template_name - if resource_metadata is not None: - self.resource_metadata = resource_metadata @property def discoverable(self): @@ -353,27 +347,6 @@ def pod_template_name(self, pod_template_name): self._pod_template_name = pod_template_name - @property - def resource_metadata(self): - """Gets the resource_metadata of this CoreTaskMetadata. # noqa: E501 - - - :return: The resource_metadata of this CoreTaskMetadata. # noqa: E501 - :rtype: CoreResourceMetadata - """ - return self._resource_metadata - - @resource_metadata.setter - def resource_metadata(self, resource_metadata): - """Sets the resource_metadata of this CoreTaskMetadata. - - - :param resource_metadata: The resource_metadata of this CoreTaskMetadata. # noqa: E501 - :type: CoreResourceMetadata - """ - - self._resource_metadata = resource_metadata - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_node_overrides.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_node_overrides.py index deb795553..7320a6d6e 100644 --- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_node_overrides.py +++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_task_node_overrides.py @@ -16,7 +16,6 @@ import six -from flyteadmin.models.core_resource_metadata import CoreResourceMetadata # noqa: F401,E501 from flyteadmin.models.core_resources import CoreResources # noqa: F401,E501 @@ -34,26 +33,21 @@ class CoreTaskNodeOverrides(object): and the value is json key in definition. """ swagger_types = { - 'resources': 'CoreResources', - 'resource_metadata': 'CoreResourceMetadata' + 'resources': 'CoreResources' } attribute_map = { - 'resources': 'resources', - 'resource_metadata': 'resource_metadata' + 'resources': 'resources' } - def __init__(self, resources=None, resource_metadata=None): # noqa: E501 + def __init__(self, resources=None): # noqa: E501 """CoreTaskNodeOverrides - a model defined in Swagger""" # noqa: E501 self._resources = None - self._resource_metadata = None self.discriminator = None if resources is not None: self.resources = resources - if resource_metadata is not None: - self.resource_metadata = resource_metadata @property def resources(self): @@ -78,27 +72,6 @@ def resources(self, resources): self._resources = resources - @property - def resource_metadata(self): - """Gets the resource_metadata of this CoreTaskNodeOverrides. # noqa: E501 - - - :return: The resource_metadata of this CoreTaskNodeOverrides. # noqa: E501 - :rtype: CoreResourceMetadata - """ - return self._resource_metadata - - @resource_metadata.setter - def resource_metadata(self, resource_metadata): - """Sets the resource_metadata of this CoreTaskNodeOverrides. - - - :param resource_metadata: The resource_metadata of this CoreTaskNodeOverrides. # noqa: E501 - :type: CoreResourceMetadata - """ - - self._resource_metadata = resource_metadata - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_gpu_accelerator.py b/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_gpu_accelerator.py deleted file mode 100644 index aa99885e5..000000000 --- a/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_gpu_accelerator.py +++ /dev/null @@ -1,40 +0,0 @@ -# coding: utf-8 - -""" - flyteidl/service/admin.proto - - No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 - - OpenAPI spec version: version not set - - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -from __future__ import absolute_import - -import unittest - -import flyteadmin -from flyteadmin.models.core_gpu_accelerator import CoreGPUAccelerator # noqa: E501 -from flyteadmin.rest import ApiException - - -class TestCoreGPUAccelerator(unittest.TestCase): - """CoreGPUAccelerator unit test stubs""" - - def setUp(self): - pass - - def tearDown(self): - pass - - def testCoreGPUAccelerator(self): - """Test CoreGPUAccelerator""" - # FIXME: construct object with mandatory attributes with example values - # model = flyteadmin.models.core_gpu_accelerator.CoreGPUAccelerator() # noqa: E501 - pass - - -if __name__ == '__main__': - unittest.main() diff --git a/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_resource_metadata.py b/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_resource_metadata.py deleted file mode 100644 index c99a8ec41..000000000 --- a/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_resource_metadata.py +++ /dev/null @@ -1,40 +0,0 @@ -# coding: utf-8 - -""" - flyteidl/service/admin.proto - - No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 - - OpenAPI spec version: version not set - - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -from __future__ import absolute_import - -import unittest - -import flyteadmin -from flyteadmin.models.core_resource_metadata import CoreResourceMetadata # noqa: E501 -from flyteadmin.rest import ApiException - - -class TestCoreResourceMetadata(unittest.TestCase): - """CoreResourceMetadata unit test stubs""" - - def setUp(self): - pass - - def tearDown(self): - pass - - def testCoreResourceMetadata(self): - """Test CoreResourceMetadata""" - # FIXME: construct object with mandatory attributes with example values - # model = flyteadmin.models.core_resource_metadata.CoreResourceMetadata() # noqa: E501 - pass - - -if __name__ == '__main__': - unittest.main() diff --git a/gen/pb_rust/flyteidl.core.rs b/gen/pb_rust/flyteidl.core.rs index 2873e794e..e3328f81d 100644 --- a/gen/pb_rust/flyteidl.core.rs +++ b/gen/pb_rust/flyteidl.core.rs @@ -1052,42 +1052,6 @@ pub mod runtime_metadata { } } } -/// Metadata associated with the GPU accelerator to allocate to a task -#[allow(clippy::derive_partial_eq_without_eq)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GpuAccelerator { - #[prost(string, tag="1")] - pub device: ::prost::alloc::string::String, - #[prost(oneof="gpu_accelerator::PartitionSizeValue", tags="2, 3")] - pub partition_size_value: ::core::option::Option, -} -/// Nested message and enum types in `GPUAccelerator`. -pub mod gpu_accelerator { - #[allow(clippy::derive_partial_eq_without_eq)] -#[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum PartitionSizeValue { - #[prost(bool, tag="2")] - Unpartitioned(bool), - #[prost(string, tag="3")] - PartitionSize(::prost::alloc::string::String), - } -} -/// Additional metadata associated with resources to allocate to a task -#[allow(clippy::derive_partial_eq_without_eq)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ResourceMetadata { - #[prost(oneof="resource_metadata::AcceleratorValue", tags="1")] - pub accelerator_value: ::core::option::Option, -} -/// Nested message and enum types in `ResourceMetadata`. -pub mod resource_metadata { - #[allow(clippy::derive_partial_eq_without_eq)] -#[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum AcceleratorValue { - #[prost(message, tag="1")] - GpuAccelerator(super::GpuAccelerator), - } -} /// Task Metadata #[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] @@ -1125,9 +1089,6 @@ pub struct TaskMetadata { /// identically as, the default PodTemplate configured in FlytePropeller. #[prost(string, tag="12")] pub pod_template_name: ::prost::alloc::string::String, - /// Additional metadata associated with resources to allocate to this task - #[prost(message, optional, tag="13")] - pub resource_metadata: ::core::option::Option, // For interruptible we will populate it at the node level but require it be part of TaskMetadata // for a user to set the value. // We are using oneof instead of bool because otherwise we would be unable to distinguish between value being @@ -2384,9 +2345,6 @@ pub struct TaskNodeOverrides { /// A customizable interface to convey resources requested for a task container. #[prost(message, optional, tag="1")] pub resources: ::core::option::Option, - /// Additional metadata associated with resources to allocate to this task - #[prost(message, optional, tag="2")] - pub resource_metadata: ::core::option::Option, } /// Adjacency list for the workflow. This is created as part of the compilation process. Every process after the compilation /// step uses this created ConnectionSet diff --git a/protos/flyteidl/core/tasks.proto b/protos/flyteidl/core/tasks.proto index 72573d585..808c196d1 100644 --- a/protos/flyteidl/core/tasks.proto +++ b/protos/flyteidl/core/tasks.proto @@ -61,22 +61,6 @@ message RuntimeMetadata { string flavor = 3; } -// Metadata associated with the GPU accelerator to allocate to a task -message GPUAccelerator { - string device = 1; - oneof partition_size_value { - bool unpartitioned = 2; - string partition_size = 3; - } -} - -// Additional metadata associated with resources to allocate to a task -message ResourceMetadata { - oneof accelerator_value { - GPUAccelerator gpu_accelerator = 1; - } -} - // Task Metadata message TaskMetadata { // Indicates whether the system should attempt to lookup this task's output to avoid duplication of work. @@ -122,9 +106,6 @@ message TaskMetadata { // task creates a k8s Pod. If this value is set, the specified PodTemplate will be used instead of, but applied // identically as, the default PodTemplate configured in FlytePropeller. string pod_template_name = 12; - - // Additional metadata associated with resources to allocate to this task - ResourceMetadata resource_metadata = 13; } // A Task structure that uniquely identifies a task in the system diff --git a/protos/flyteidl/core/workflow.proto b/protos/flyteidl/core/workflow.proto index ed6c589f8..37d39182e 100644 --- a/protos/flyteidl/core/workflow.proto +++ b/protos/flyteidl/core/workflow.proto @@ -279,7 +279,4 @@ message WorkflowTemplate { message TaskNodeOverrides { // A customizable interface to convey resources requested for a task container. Resources resources = 1; - - // Additional metadata associated with resources to allocate to this task - core.ResourceMetadata resource_metadata = 2; } From 85bfc8ff1c36b2d37a4fcc68a2be1911a9fc3940 Mon Sep 17 00:00:00 2001 From: Andrew Dye Date: Wed, 27 Sep 2023 13:09:18 -0700 Subject: [PATCH 8/8] Add batched reasons to TaskExecutionEvent (#443) * Add batched reasons to TaskExecutionEvent Signed-off-by: Andrew Dye * Change event name Signed-off-by: Andrew Dye * Rename Reason to EventReason Signed-off-by: Andrew Dye --------- Signed-off-by: Andrew Dye --- gen/pb-cpp/flyteidl/admin/event.pb.cc | 2 +- gen/pb-cpp/flyteidl/event/event.pb.cc | 548 ++++++- gen/pb-cpp/flyteidl/event/event.pb.h | 316 +++- gen/pb-go/flyteidl/event/event.pb.go | 265 +-- gen/pb-go/flyteidl/event/event.pb.validate.go | 92 ++ gen/pb-go/flyteidl/service/admin.swagger.json | 23 +- .../flyteidl/service/flyteadmin/README.md | 1 + .../service/flyteadmin/api/swagger.yaml | 18 +- .../flyteadmin/model_event_event_reason.go | 19 + .../model_event_task_execution_event.go | 4 +- gen/pb-go/flyteidl/service/openapi.go | 4 +- gen/pb-java/flyteidl/event/Event.java | 1439 ++++++++++++++++- gen/pb-js/flyteidl.d.ts | 64 + gen/pb-js/flyteidl.js | 156 ++ gen/pb_python/flyteidl/event/event_pb2.py | 26 +- gen/pb_python/flyteidl/event/event_pb2.pyi | 14 +- .../flyteidl/service/flyteadmin/README.md | 1 + .../service/flyteadmin/flyteadmin/__init__.py | 1 + .../flyteadmin/flyteadmin/models/__init__.py | 1 + .../flyteadmin/models/event_event_reason.py | 141 ++ .../models/event_task_execution_event.py | 35 +- .../test/test_event_event_reason.py | 40 + gen/pb_rust/flyteidl.event.rs | 15 + protos/flyteidl/event/event.proto | 14 +- 24 files changed, 3008 insertions(+), 231 deletions(-) create mode 100644 gen/pb-go/flyteidl/service/flyteadmin/model_event_event_reason.go create mode 100644 gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/event_event_reason.py create mode 100644 gen/pb_python/flyteidl/service/flyteadmin/test/test_event_event_reason.py diff --git a/gen/pb-cpp/flyteidl/admin/event.pb.cc b/gen/pb-cpp/flyteidl/admin/event.pb.cc index 1d1100c3f..32151d6da 100644 --- a/gen/pb-cpp/flyteidl/admin/event.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/event.pb.cc @@ -20,7 +20,7 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fevent_2eproto ::google::proto extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fevent_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_EventErrorIncompatibleCluster_flyteidl_2fadmin_2fevent_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fevent_2fevent_2eproto ::google::protobuf::internal::SCCInfo<4> scc_info_WorkflowExecutionEvent_flyteidl_2fevent_2fevent_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fevent_2fevent_2eproto ::google::protobuf::internal::SCCInfo<8> scc_info_NodeExecutionEvent_flyteidl_2fevent_2fevent_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fevent_2fevent_2eproto ::google::protobuf::internal::SCCInfo<8> scc_info_TaskExecutionEvent_flyteidl_2fevent_2fevent_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fevent_2fevent_2eproto ::google::protobuf::internal::SCCInfo<9> scc_info_TaskExecutionEvent_flyteidl_2fevent_2fevent_2eproto; namespace flyteidl { namespace admin { class EventErrorAlreadyInTerminalStateDefaultTypeInternal { diff --git a/gen/pb-cpp/flyteidl/event/event.pb.cc b/gen/pb-cpp/flyteidl/event/event.pb.cc index 7f7275900..2daa84889 100644 --- a/gen/pb-cpp/flyteidl/event/event.pb.cc +++ b/gen/pb-cpp/flyteidl/event/event.pb.cc @@ -27,6 +27,7 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fidentifier_2eproto ::google::p extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::protobuf::internal::SCCInfo<9> scc_info_Literal_flyteidl_2fcore_2fliterals_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fevent_2fevent_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_ParentNodeExecutionMetadata_flyteidl_2fevent_2fevent_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fevent_2fevent_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_ResourcePoolInfo_flyteidl_2fevent_2fevent_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fevent_2fevent_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_EventReason_flyteidl_2fevent_2fevent_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fevent_2fevent_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_ExternalResourceInfo_flyteidl_2fevent_2fevent_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fevent_2fevent_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_ParentTaskExecutionMetadata_flyteidl_2fevent_2fevent_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fevent_2fevent_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_WorkflowNodeMetadata_flyteidl_2fevent_2fevent_2eproto; @@ -75,6 +76,10 @@ class ParentNodeExecutionMetadataDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; } _ParentNodeExecutionMetadata_default_instance_; +class EventReasonDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed _instance; +} _EventReason_default_instance_; class TaskExecutionEventDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; @@ -214,6 +219,21 @@ static void InitDefaultsParentNodeExecutionMetadata_flyteidl_2fevent_2fevent_2ep ::google::protobuf::internal::SCCInfo<0> scc_info_ParentNodeExecutionMetadata_flyteidl_2fevent_2fevent_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsParentNodeExecutionMetadata_flyteidl_2fevent_2fevent_2eproto}, {}}; +static void InitDefaultsEventReason_flyteidl_2fevent_2fevent_2eproto() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::flyteidl::event::_EventReason_default_instance_; + new (ptr) ::flyteidl::event::EventReason(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::flyteidl::event::EventReason::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<1> scc_info_EventReason_flyteidl_2fevent_2fevent_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsEventReason_flyteidl_2fevent_2fevent_2eproto}, { + &scc_info_Timestamp_google_2fprotobuf_2ftimestamp_2eproto.base,}}; + static void InitDefaultsTaskExecutionEvent_flyteidl_2fevent_2fevent_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -225,8 +245,8 @@ static void InitDefaultsTaskExecutionEvent_flyteidl_2fevent_2fevent_2eproto() { ::flyteidl::event::TaskExecutionEvent::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<8> scc_info_TaskExecutionEvent_flyteidl_2fevent_2fevent_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 8, InitDefaultsTaskExecutionEvent_flyteidl_2fevent_2fevent_2eproto}, { +::google::protobuf::internal::SCCInfo<9> scc_info_TaskExecutionEvent_flyteidl_2fevent_2fevent_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 9, InitDefaultsTaskExecutionEvent_flyteidl_2fevent_2fevent_2eproto}, { &scc_info_Identifier_flyteidl_2fcore_2fidentifier_2eproto.base, &scc_info_NodeExecutionIdentifier_flyteidl_2fcore_2fidentifier_2eproto.base, &scc_info_TaskLog_flyteidl_2fcore_2fexecution_2eproto.base, @@ -234,6 +254,7 @@ ::google::protobuf::internal::SCCInfo<8> scc_info_TaskExecutionEvent_flyteidl_2f &scc_info_Literal_flyteidl_2fcore_2fliterals_2eproto.base, &scc_info_ExecutionError_flyteidl_2fcore_2fexecution_2eproto.base, &scc_info_ListValue_google_2fprotobuf_2fstruct_2eproto.base, + &scc_info_EventReason_flyteidl_2fevent_2fevent_2eproto.base, &scc_info_TaskExecutionMetadata_flyteidl_2fevent_2fevent_2eproto.base,}}; static void InitDefaultsExternalResourceInfo_flyteidl_2fevent_2fevent_2eproto() { @@ -289,13 +310,14 @@ void InitDefaults_flyteidl_2fevent_2fevent_2eproto() { ::google::protobuf::internal::InitSCC(&scc_info_DynamicWorkflowNodeMetadata_flyteidl_2fevent_2fevent_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_ParentTaskExecutionMetadata_flyteidl_2fevent_2fevent_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_ParentNodeExecutionMetadata_flyteidl_2fevent_2fevent_2eproto.base); + ::google::protobuf::internal::InitSCC(&scc_info_EventReason_flyteidl_2fevent_2fevent_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_TaskExecutionEvent_flyteidl_2fevent_2fevent_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_ExternalResourceInfo_flyteidl_2fevent_2fevent_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_ResourcePoolInfo_flyteidl_2fevent_2fevent_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_TaskExecutionMetadata_flyteidl_2fevent_2fevent_2eproto.base); } -::google::protobuf::Metadata file_level_metadata_flyteidl_2fevent_2fevent_2eproto[11]; +::google::protobuf::Metadata file_level_metadata_flyteidl_2fevent_2fevent_2eproto[12]; const ::google::protobuf::EnumDescriptor* file_level_enum_descriptors_flyteidl_2fevent_2fevent_2eproto[1]; constexpr ::google::protobuf::ServiceDescriptor const** file_level_service_descriptors_flyteidl_2fevent_2fevent_2eproto = nullptr; @@ -379,6 +401,13 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fevent_2fevent_2eproto::o ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::flyteidl::event::ParentNodeExecutionMetadata, node_id_), ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::flyteidl::event::EventReason, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + PROTOBUF_FIELD_OFFSET(::flyteidl::event::EventReason, reason_), + PROTOBUF_FIELD_OFFSET(::flyteidl::event::EventReason, occurred_at_), + ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::event::TaskExecutionEvent, _internal_metadata_), ~0u, // no _extensions_ PROTOBUF_FIELD_OFFSET(::flyteidl::event::TaskExecutionEvent, _oneof_case_[0]), @@ -398,6 +427,7 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fevent_2fevent_2eproto::o PROTOBUF_FIELD_OFFSET(::flyteidl::event::TaskExecutionEvent, custom_info_), PROTOBUF_FIELD_OFFSET(::flyteidl::event::TaskExecutionEvent, phase_version_), PROTOBUF_FIELD_OFFSET(::flyteidl::event::TaskExecutionEvent, reason_), + PROTOBUF_FIELD_OFFSET(::flyteidl::event::TaskExecutionEvent, reasons_), PROTOBUF_FIELD_OFFSET(::flyteidl::event::TaskExecutionEvent, task_type_), PROTOBUF_FIELD_OFFSET(::flyteidl::event::TaskExecutionEvent, metadata_), PROTOBUF_FIELD_OFFSET(::flyteidl::event::TaskExecutionEvent, event_version_), @@ -441,10 +471,11 @@ static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SE { 58, -1, sizeof(::flyteidl::event::DynamicWorkflowNodeMetadata)}, { 66, -1, sizeof(::flyteidl::event::ParentTaskExecutionMetadata)}, { 72, -1, sizeof(::flyteidl::event::ParentNodeExecutionMetadata)}, - { 78, -1, sizeof(::flyteidl::event::TaskExecutionEvent)}, - { 104, -1, sizeof(::flyteidl::event::ExternalResourceInfo)}, - { 115, -1, sizeof(::flyteidl::event::ResourcePoolInfo)}, - { 122, -1, sizeof(::flyteidl::event::TaskExecutionMetadata)}, + { 78, -1, sizeof(::flyteidl::event::EventReason)}, + { 85, -1, sizeof(::flyteidl::event::TaskExecutionEvent)}, + { 112, -1, sizeof(::flyteidl::event::ExternalResourceInfo)}, + { 123, -1, sizeof(::flyteidl::event::ResourcePoolInfo)}, + { 130, -1, sizeof(::flyteidl::event::TaskExecutionMetadata)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { @@ -455,6 +486,7 @@ static ::google::protobuf::Message const * const file_default_instances[] = { reinterpret_cast(&::flyteidl::event::_DynamicWorkflowNodeMetadata_default_instance_), reinterpret_cast(&::flyteidl::event::_ParentTaskExecutionMetadata_default_instance_), reinterpret_cast(&::flyteidl::event::_ParentNodeExecutionMetadata_default_instance_), + reinterpret_cast(&::flyteidl::event::_EventReason_default_instance_), reinterpret_cast(&::flyteidl::event::_TaskExecutionEvent_default_instance_), reinterpret_cast(&::flyteidl::event::_ExternalResourceInfo_default_instance_), reinterpret_cast(&::flyteidl::event::_ResourcePoolInfo_default_instance_), @@ -464,7 +496,7 @@ static ::google::protobuf::Message const * const file_default_instances[] = { ::google::protobuf::internal::AssignDescriptorsTable assign_descriptors_table_flyteidl_2fevent_2fevent_2eproto = { {}, AddDescriptors_flyteidl_2fevent_2fevent_2eproto, "flyteidl/event/event.proto", schemas, file_default_instances, TableStruct_flyteidl_2fevent_2fevent_2eproto::offsets, - file_level_metadata_flyteidl_2fevent_2fevent_2eproto, 11, file_level_enum_descriptors_flyteidl_2fevent_2fevent_2eproto, file_level_service_descriptors_flyteidl_2fevent_2fevent_2eproto, + file_level_metadata_flyteidl_2fevent_2fevent_2eproto, 12, file_level_enum_descriptors_flyteidl_2fevent_2fevent_2eproto, file_level_service_descriptors_flyteidl_2fevent_2fevent_2eproto, }; const char descriptor_table_protodef_flyteidl_2fevent_2fevent_2eproto[] = @@ -523,7 +555,9 @@ const char descriptor_table_protodef_flyteidl_2fevent_2fevent_2eproto[] = "(\t\"Q\n\033ParentTaskExecutionMetadata\0222\n\002id\030" "\001 \001(\0132&.flyteidl.core.TaskExecutionIdent" "ifier\".\n\033ParentNodeExecutionMetadata\022\017\n\007" - "node_id\030\001 \001(\t\"\207\006\n\022TaskExecutionEvent\022*\n\007" + "node_id\030\001 \001(\t\"N\n\013EventReason\022\016\n\006reason\030\001" + " \001(\t\022/\n\013occurred_at\030\002 \001(\0132\032.google.proto" + "buf.Timestamp\"\271\006\n\022TaskExecutionEvent\022*\n\007" "task_id\030\001 \001(\0132\031.flyteidl.core.Identifier" "\022H\n\030parent_node_execution_id\030\002 \001(\0132&.fly" "teidl.core.NodeExecutionIdentifier\022\025\n\rre" @@ -537,35 +571,36 @@ const char descriptor_table_protodef_flyteidl_2fevent_2fevent_2eproto[] = "\001(\0132\035.flyteidl.core.ExecutionErrorH\001\0220\n\013" "output_data\030\021 \001(\0132\031.flyteidl.core.Litera" "lMapH\001\022,\n\013custom_info\030\013 \001(\0132\027.google.pro" - "tobuf.Struct\022\025\n\rphase_version\030\014 \001(\r\022\016\n\006r" - "eason\030\r \001(\t\022\021\n\ttask_type\030\016 \001(\t\0227\n\010metada" - "ta\030\020 \001(\0132%.flyteidl.event.TaskExecutionM" - "etadata\022\025\n\revent_version\030\022 \001(\005\022/\n\013report" - "ed_at\030\024 \001(\0132\032.google.protobuf.TimestampB" - "\r\n\013input_valueB\017\n\routput_result\"\343\001\n\024Exte" - "rnalResourceInfo\022\023\n\013external_id\030\001 \001(\t\022\r\n" - "\005index\030\002 \001(\r\022\025\n\rretry_attempt\030\003 \001(\r\0221\n\005p" - "hase\030\004 \001(\0162\".flyteidl.core.TaskExecution" - ".Phase\0227\n\014cache_status\030\005 \001(\0162!.flyteidl." - "core.CatalogCacheStatus\022$\n\004logs\030\006 \003(\0132\026." - "flyteidl.core.TaskLog\"\?\n\020ResourcePoolInf" - "o\022\030\n\020allocation_token\030\001 \001(\t\022\021\n\tnamespace" - "\030\002 \001(\t\"\310\002\n\025TaskExecutionMetadata\022\026\n\016gene" - "rated_name\030\001 \001(\t\022@\n\022external_resources\030\002" - " \003(\0132$.flyteidl.event.ExternalResourceIn" - "fo\022<\n\022resource_pool_info\030\003 \003(\0132 .flyteid" - "l.event.ResourcePoolInfo\022\031\n\021plugin_ident" - "ifier\030\004 \001(\t\022K\n\016instance_class\030\020 \001(\01623.fl" - "yteidl.event.TaskExecutionMetadata.Insta" - "nceClass\"/\n\rInstanceClass\022\013\n\007DEFAULT\020\000\022\021" - "\n\rINTERRUPTIBLE\020\001B7Z5github.com/flyteorg" - "/flyteidl/gen/pb-go/flyteidl/eventb\006prot" - "o3" + "tobuf.Struct\022\025\n\rphase_version\030\014 \001(\r\022\022\n\006r" + "eason\030\r \001(\tB\002\030\001\022,\n\007reasons\030\025 \003(\0132\033.flyte" + "idl.event.EventReason\022\021\n\ttask_type\030\016 \001(\t" + "\0227\n\010metadata\030\020 \001(\0132%.flyteidl.event.Task" + "ExecutionMetadata\022\025\n\revent_version\030\022 \001(\005" + "\022/\n\013reported_at\030\024 \001(\0132\032.google.protobuf." + "TimestampB\r\n\013input_valueB\017\n\routput_resul" + "t\"\343\001\n\024ExternalResourceInfo\022\023\n\013external_i" + "d\030\001 \001(\t\022\r\n\005index\030\002 \001(\r\022\025\n\rretry_attempt\030" + "\003 \001(\r\0221\n\005phase\030\004 \001(\0162\".flyteidl.core.Tas" + "kExecution.Phase\0227\n\014cache_status\030\005 \001(\0162!" + ".flyteidl.core.CatalogCacheStatus\022$\n\004log" + "s\030\006 \003(\0132\026.flyteidl.core.TaskLog\"\?\n\020Resou" + "rcePoolInfo\022\030\n\020allocation_token\030\001 \001(\t\022\021\n" + "\tnamespace\030\002 \001(\t\"\310\002\n\025TaskExecutionMetada" + "ta\022\026\n\016generated_name\030\001 \001(\t\022@\n\022external_r" + "esources\030\002 \003(\0132$.flyteidl.event.External" + "ResourceInfo\022<\n\022resource_pool_info\030\003 \003(\013" + "2 .flyteidl.event.ResourcePoolInfo\022\031\n\021pl" + "ugin_identifier\030\004 \001(\t\022K\n\016instance_class\030" + "\020 \001(\01623.flyteidl.event.TaskExecutionMeta" + "data.InstanceClass\"/\n\rInstanceClass\022\013\n\007D" + "EFAULT\020\000\022\021\n\rINTERRUPTIBLE\020\001B7Z5github.co" + "m/flyteorg/flyteidl/gen/pb-go/flyteidl/e" + "ventb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fevent_2fevent_2eproto = { false, InitDefaults_flyteidl_2fevent_2fevent_2eproto, descriptor_table_protodef_flyteidl_2fevent_2fevent_2eproto, - "flyteidl/event/event.proto", &assign_descriptors_table_flyteidl_2fevent_2fevent_2eproto, 3682, + "flyteidl/event/event.proto", &assign_descriptors_table_flyteidl_2fevent_2fevent_2eproto, 3812, }; void AddDescriptors_flyteidl_2fevent_2fevent_2eproto() { @@ -5005,6 +5040,376 @@ ::google::protobuf::Metadata ParentNodeExecutionMetadata::GetMetadata() const { } +// =================================================================== + +void EventReason::InitAsDefaultInstance() { + ::flyteidl::event::_EventReason_default_instance_._instance.get_mutable()->occurred_at_ = const_cast< ::google::protobuf::Timestamp*>( + ::google::protobuf::Timestamp::internal_default_instance()); +} +class EventReason::HasBitSetters { + public: + static const ::google::protobuf::Timestamp& occurred_at(const EventReason* msg); +}; + +const ::google::protobuf::Timestamp& +EventReason::HasBitSetters::occurred_at(const EventReason* msg) { + return *msg->occurred_at_; +} +void EventReason::clear_occurred_at() { + if (GetArenaNoVirtual() == nullptr && occurred_at_ != nullptr) { + delete occurred_at_; + } + occurred_at_ = nullptr; +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int EventReason::kReasonFieldNumber; +const int EventReason::kOccurredAtFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +EventReason::EventReason() + : ::google::protobuf::Message(), _internal_metadata_(nullptr) { + SharedCtor(); + // @@protoc_insertion_point(constructor:flyteidl.event.EventReason) +} +EventReason::EventReason(const EventReason& from) + : ::google::protobuf::Message(), + _internal_metadata_(nullptr) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + reason_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.reason().size() > 0) { + reason_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.reason_); + } + if (from.has_occurred_at()) { + occurred_at_ = new ::google::protobuf::Timestamp(*from.occurred_at_); + } else { + occurred_at_ = nullptr; + } + // @@protoc_insertion_point(copy_constructor:flyteidl.event.EventReason) +} + +void EventReason::SharedCtor() { + ::google::protobuf::internal::InitSCC( + &scc_info_EventReason_flyteidl_2fevent_2fevent_2eproto.base); + reason_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + occurred_at_ = nullptr; +} + +EventReason::~EventReason() { + // @@protoc_insertion_point(destructor:flyteidl.event.EventReason) + SharedDtor(); +} + +void EventReason::SharedDtor() { + reason_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (this != internal_default_instance()) delete occurred_at_; +} + +void EventReason::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const EventReason& EventReason::default_instance() { + ::google::protobuf::internal::InitSCC(&::scc_info_EventReason_flyteidl_2fevent_2fevent_2eproto.base); + return *internal_default_instance(); +} + + +void EventReason::Clear() { +// @@protoc_insertion_point(message_clear_start:flyteidl.event.EventReason) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + reason_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (GetArenaNoVirtual() == nullptr && occurred_at_ != nullptr) { + delete occurred_at_; + } + occurred_at_ = nullptr; + _internal_metadata_.Clear(); +} + +#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER +const char* EventReason::_InternalParse(const char* begin, const char* end, void* object, + ::google::protobuf::internal::ParseContext* ctx) { + auto msg = static_cast(object); + ::google::protobuf::int32 size; (void)size; + int depth; (void)depth; + ::google::protobuf::uint32 tag; + ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; + auto ptr = begin; + while (ptr < end) { + ptr = ::google::protobuf::io::Parse32(ptr, &tag); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + switch (tag >> 3) { + // string reason = 1; + case 1: { + if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + ctx->extra_parse_data().SetFieldName("flyteidl.event.EventReason.reason"); + object = msg->mutable_reason(); + if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { + parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; + goto string_till_end; + } + GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); + ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); + ptr += size; + break; + } + // .google.protobuf.Timestamp occurred_at = 2; + case 2: { + if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + parser_till_end = ::google::protobuf::Timestamp::_InternalParse; + object = msg->mutable_occurred_at(); + if (size > end - ptr) goto len_delim_till_end; + ptr += size; + GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( + {parser_till_end, object}, ptr - size, ptr)); + break; + } + default: { + handle_unusual: + if ((tag & 7) == 4 || tag == 0) { + ctx->EndGroup(tag); + return ptr; + } + auto res = UnknownFieldParse(tag, {_InternalParse, msg}, + ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); + ptr = res.first; + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); + if (res.second) return ptr; + } + } // switch + } // while + return ptr; +string_till_end: + static_cast<::std::string*>(object)->clear(); + static_cast<::std::string*>(object)->reserve(size); + goto len_delim_till_end; +len_delim_till_end: + return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, + {parser_till_end, object}, size); +} +#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER +bool EventReason::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:flyteidl.event.EventReason) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string reason = 1; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_reason())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->reason().data(), static_cast(this->reason().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "flyteidl.event.EventReason.reason")); + } else { + goto handle_unusual; + } + break; + } + + // .google.protobuf.Timestamp occurred_at = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_occurred_at())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:flyteidl.event.EventReason) + return true; +failure: + // @@protoc_insertion_point(parse_failure:flyteidl.event.EventReason) + return false; +#undef DO_ +} +#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + +void EventReason::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:flyteidl.event.EventReason) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string reason = 1; + if (this->reason().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->reason().data(), static_cast(this->reason().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.event.EventReason.reason"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->reason(), output); + } + + // .google.protobuf.Timestamp occurred_at = 2; + if (this->has_occurred_at()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 2, HasBitSetters::occurred_at(this), output); + } + + if (_internal_metadata_.have_unknown_fields()) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + _internal_metadata_.unknown_fields(), output); + } + // @@protoc_insertion_point(serialize_end:flyteidl.event.EventReason) +} + +::google::protobuf::uint8* EventReason::InternalSerializeWithCachedSizesToArray( + ::google::protobuf::uint8* target) const { + // @@protoc_insertion_point(serialize_to_array_start:flyteidl.event.EventReason) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string reason = 1; + if (this->reason().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->reason().data(), static_cast(this->reason().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.event.EventReason.reason"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->reason(), target); + } + + // .google.protobuf.Timestamp occurred_at = 2; + if (this->has_occurred_at()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 2, HasBitSetters::occurred_at(this), target); + } + + if (_internal_metadata_.have_unknown_fields()) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields(), target); + } + // @@protoc_insertion_point(serialize_to_array_end:flyteidl.event.EventReason) + return target; +} + +size_t EventReason::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:flyteidl.event.EventReason) + size_t total_size = 0; + + if (_internal_metadata_.have_unknown_fields()) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + _internal_metadata_.unknown_fields()); + } + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + // string reason = 1; + if (this->reason().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->reason()); + } + + // .google.protobuf.Timestamp occurred_at = 2; + if (this->has_occurred_at()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *occurred_at_); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void EventReason::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.event.EventReason) + GOOGLE_DCHECK_NE(&from, this); + const EventReason* source = + ::google::protobuf::DynamicCastToGenerated( + &from); + if (source == nullptr) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.event.EventReason) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.event.EventReason) + MergeFrom(*source); + } +} + +void EventReason::MergeFrom(const EventReason& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.event.EventReason) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.reason().size() > 0) { + + reason_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.reason_); + } + if (from.has_occurred_at()) { + mutable_occurred_at()->::google::protobuf::Timestamp::MergeFrom(from.occurred_at()); + } +} + +void EventReason::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.event.EventReason) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void EventReason::CopyFrom(const EventReason& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.event.EventReason) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool EventReason::IsInitialized() const { + return true; +} + +void EventReason::Swap(EventReason* other) { + if (other == this) return; + InternalSwap(other); +} +void EventReason::InternalSwap(EventReason* other) { + using std::swap; + _internal_metadata_.Swap(&other->_internal_metadata_); + reason_.Swap(&other->reason_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + swap(occurred_at_, other->occurred_at_); +} + +::google::protobuf::Metadata EventReason::GetMetadata() const { + ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fevent_2fevent_2eproto); + return ::file_level_metadata_flyteidl_2fevent_2fevent_2eproto[kIndexInFileMessages]; +} + + // =================================================================== void TaskExecutionEvent::InitAsDefaultInstance() { @@ -5189,6 +5594,7 @@ const int TaskExecutionEvent::kOutputDataFieldNumber; const int TaskExecutionEvent::kCustomInfoFieldNumber; const int TaskExecutionEvent::kPhaseVersionFieldNumber; const int TaskExecutionEvent::kReasonFieldNumber; +const int TaskExecutionEvent::kReasonsFieldNumber; const int TaskExecutionEvent::kTaskTypeFieldNumber; const int TaskExecutionEvent::kMetadataFieldNumber; const int TaskExecutionEvent::kEventVersionFieldNumber; @@ -5203,7 +5609,8 @@ TaskExecutionEvent::TaskExecutionEvent() TaskExecutionEvent::TaskExecutionEvent(const TaskExecutionEvent& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr), - logs_(from.logs_) { + logs_(from.logs_), + reasons_(from.reasons_) { _internal_metadata_.MergeFrom(from._internal_metadata_); producer_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.producer_id().size() > 0) { @@ -5378,6 +5785,7 @@ void TaskExecutionEvent::Clear() { (void) cached_has_bits; logs_.Clear(); + reasons_.Clear(); producer_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); reason_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); task_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); @@ -5577,7 +5985,7 @@ const char* TaskExecutionEvent::_InternalParse(const char* begin, const char* en GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } - // string reason = 13; + // string reason = 13 [deprecated = true]; case 13: { if (static_cast<::google::protobuf::uint8>(tag) != 106) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); @@ -5668,6 +6076,22 @@ const char* TaskExecutionEvent::_InternalParse(const char* begin, const char* en {parser_till_end, object}, ptr - size, ptr)); break; } + // repeated .flyteidl.event.EventReason reasons = 21; + case 21: { + if (static_cast<::google::protobuf::uint8>(tag) != 170) goto handle_unusual; + do { + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + parser_till_end = ::flyteidl::event::EventReason::_InternalParse; + object = msg->add_reasons(); + if (size > end - ptr) goto len_delim_till_end; + ptr += size; + GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( + {parser_till_end, object}, ptr - size, ptr)); + if (ptr >= end) break; + } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 65535) == 426 && (ptr += 2)); + break; + } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -5853,7 +6277,7 @@ bool TaskExecutionEvent::MergePartialFromCodedStream( break; } - // string reason = 13; + // string reason = 13 [deprecated = true]; case 13: { if (static_cast< ::google::protobuf::uint8>(tag) == (106 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( @@ -5940,6 +6364,17 @@ bool TaskExecutionEvent::MergePartialFromCodedStream( break; } + // repeated .flyteidl.event.EventReason reasons = 21; + case 21: { + if (static_cast< ::google::protobuf::uint8>(tag) == (170 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, add_reasons())); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -6052,7 +6487,7 @@ void TaskExecutionEvent::SerializeWithCachedSizes( ::google::protobuf::internal::WireFormatLite::WriteUInt32(12, this->phase_version(), output); } - // string reason = 13; + // string reason = 13 [deprecated = true]; if (this->reason().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->reason().data(), static_cast(this->reason().length()), @@ -6101,6 +6536,15 @@ void TaskExecutionEvent::SerializeWithCachedSizes( 20, HasBitSetters::reported_at(this), output); } + // repeated .flyteidl.event.EventReason reasons = 21; + for (unsigned int i = 0, + n = static_cast(this->reasons_size()); i < n; i++) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 21, + this->reasons(static_cast(i)), + output); + } + if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -6206,7 +6650,7 @@ ::google::protobuf::uint8* TaskExecutionEvent::InternalSerializeWithCachedSizesT target = ::google::protobuf::internal::WireFormatLite::WriteUInt32ToArray(12, this->phase_version(), target); } - // string reason = 13; + // string reason = 13 [deprecated = true]; if (this->reason().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->reason().data(), static_cast(this->reason().length()), @@ -6261,6 +6705,14 @@ ::google::protobuf::uint8* TaskExecutionEvent::InternalSerializeWithCachedSizesT 20, HasBitSetters::reported_at(this), target); } + // repeated .flyteidl.event.EventReason reasons = 21; + for (unsigned int i = 0, + n = static_cast(this->reasons_size()); i < n; i++) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 21, this->reasons(static_cast(i)), target); + } + if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -6293,6 +6745,17 @@ size_t TaskExecutionEvent::ByteSizeLong() const { } } + // repeated .flyteidl.event.EventReason reasons = 21; + { + unsigned int count = static_cast(this->reasons_size()); + total_size += 2UL * count; + for (unsigned int i = 0; i < count; i++) { + total_size += + ::google::protobuf::internal::WireFormatLite::MessageSize( + this->reasons(static_cast(i))); + } + } + // string producer_id = 5; if (this->producer_id().size() > 0) { total_size += 1 + @@ -6300,7 +6763,7 @@ size_t TaskExecutionEvent::ByteSizeLong() const { this->producer_id()); } - // string reason = 13; + // string reason = 13 [deprecated = true]; if (this->reason().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( @@ -6456,6 +6919,7 @@ void TaskExecutionEvent::MergeFrom(const TaskExecutionEvent& from) { (void) cached_has_bits; logs_.MergeFrom(from.logs_); + reasons_.MergeFrom(from.reasons_); if (from.producer_id().size() > 0) { producer_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.producer_id_); @@ -6556,6 +7020,7 @@ void TaskExecutionEvent::InternalSwap(TaskExecutionEvent* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); CastToBase(&logs_)->InternalSwap(CastToBase(&other->logs_)); + CastToBase(&reasons_)->InternalSwap(CastToBase(&other->reasons_)); producer_id_.Swap(&other->producer_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); reason_.Swap(&other->reason_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), @@ -8061,6 +8526,9 @@ template<> PROTOBUF_NOINLINE ::flyteidl::event::ParentTaskExecutionMetadata* Are template<> PROTOBUF_NOINLINE ::flyteidl::event::ParentNodeExecutionMetadata* Arena::CreateMaybeMessage< ::flyteidl::event::ParentNodeExecutionMetadata >(Arena* arena) { return Arena::CreateInternal< ::flyteidl::event::ParentNodeExecutionMetadata >(arena); } +template<> PROTOBUF_NOINLINE ::flyteidl::event::EventReason* Arena::CreateMaybeMessage< ::flyteidl::event::EventReason >(Arena* arena) { + return Arena::CreateInternal< ::flyteidl::event::EventReason >(arena); +} template<> PROTOBUF_NOINLINE ::flyteidl::event::TaskExecutionEvent* Arena::CreateMaybeMessage< ::flyteidl::event::TaskExecutionEvent >(Arena* arena) { return Arena::CreateInternal< ::flyteidl::event::TaskExecutionEvent >(arena); } diff --git a/gen/pb-cpp/flyteidl/event/event.pb.h b/gen/pb-cpp/flyteidl/event/event.pb.h index ef79dac7d..eace42fee 100644 --- a/gen/pb-cpp/flyteidl/event/event.pb.h +++ b/gen/pb-cpp/flyteidl/event/event.pb.h @@ -49,7 +49,7 @@ struct TableStruct_flyteidl_2fevent_2fevent_2eproto { PROTOBUF_SECTION_VARIABLE(protodesc_cold); static const ::google::protobuf::internal::AuxillaryParseTableField aux[] PROTOBUF_SECTION_VARIABLE(protodesc_cold); - static const ::google::protobuf::internal::ParseTable schema[11] + static const ::google::protobuf::internal::ParseTable schema[12] PROTOBUF_SECTION_VARIABLE(protodesc_cold); static const ::google::protobuf::internal::FieldMetadata field_metadata[]; static const ::google::protobuf::internal::SerializationTable serialization_table[]; @@ -61,6 +61,9 @@ namespace event { class DynamicWorkflowNodeMetadata; class DynamicWorkflowNodeMetadataDefaultTypeInternal; extern DynamicWorkflowNodeMetadataDefaultTypeInternal _DynamicWorkflowNodeMetadata_default_instance_; +class EventReason; +class EventReasonDefaultTypeInternal; +extern EventReasonDefaultTypeInternal _EventReason_default_instance_; class ExternalResourceInfo; class ExternalResourceInfoDefaultTypeInternal; extern ExternalResourceInfoDefaultTypeInternal _ExternalResourceInfo_default_instance_; @@ -96,6 +99,7 @@ extern WorkflowNodeMetadataDefaultTypeInternal _WorkflowNodeMetadata_default_ins namespace google { namespace protobuf { template<> ::flyteidl::event::DynamicWorkflowNodeMetadata* Arena::CreateMaybeMessage<::flyteidl::event::DynamicWorkflowNodeMetadata>(Arena*); +template<> ::flyteidl::event::EventReason* Arena::CreateMaybeMessage<::flyteidl::event::EventReason>(Arena*); template<> ::flyteidl::event::ExternalResourceInfo* Arena::CreateMaybeMessage<::flyteidl::event::ExternalResourceInfo>(Arena*); template<> ::flyteidl::event::NodeExecutionEvent* Arena::CreateMaybeMessage<::flyteidl::event::NodeExecutionEvent>(Arena*); template<> ::flyteidl::event::ParentNodeExecutionMetadata* Arena::CreateMaybeMessage<::flyteidl::event::ParentNodeExecutionMetadata>(Arena*); @@ -1379,6 +1383,136 @@ class ParentNodeExecutionMetadata final : }; // ------------------------------------------------------------------- +class EventReason final : + public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.event.EventReason) */ { + public: + EventReason(); + virtual ~EventReason(); + + EventReason(const EventReason& from); + + inline EventReason& operator=(const EventReason& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + EventReason(EventReason&& from) noexcept + : EventReason() { + *this = ::std::move(from); + } + + inline EventReason& operator=(EventReason&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor() { + return default_instance().GetDescriptor(); + } + static const EventReason& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const EventReason* internal_default_instance() { + return reinterpret_cast( + &_EventReason_default_instance_); + } + static constexpr int kIndexInFileMessages = + 7; + + void Swap(EventReason* other); + friend void swap(EventReason& a, EventReason& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline EventReason* New() const final { + return CreateMaybeMessage(nullptr); + } + + EventReason* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const EventReason& from); + void MergeFrom(const EventReason& from); + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + static const char* _InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx); + ::google::protobuf::internal::ParseFunc _ParseFunc() const final { return _InternalParse; } + #else + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(EventReason* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return nullptr; + } + inline void* MaybeArenaPtr() const { + return nullptr; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string reason = 1; + void clear_reason(); + static const int kReasonFieldNumber = 1; + const ::std::string& reason() const; + void set_reason(const ::std::string& value); + #if LANG_CXX11 + void set_reason(::std::string&& value); + #endif + void set_reason(const char* value); + void set_reason(const char* value, size_t size); + ::std::string* mutable_reason(); + ::std::string* release_reason(); + void set_allocated_reason(::std::string* reason); + + // .google.protobuf.Timestamp occurred_at = 2; + bool has_occurred_at() const; + void clear_occurred_at(); + static const int kOccurredAtFieldNumber = 2; + const ::google::protobuf::Timestamp& occurred_at() const; + ::google::protobuf::Timestamp* release_occurred_at(); + ::google::protobuf::Timestamp* mutable_occurred_at(); + void set_allocated_occurred_at(::google::protobuf::Timestamp* occurred_at); + + // @@protoc_insertion_point(class_scope:flyteidl.event.EventReason) + private: + class HasBitSetters; + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr reason_; + ::google::protobuf::Timestamp* occurred_at_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::TableStruct_flyteidl_2fevent_2fevent_2eproto; +}; +// ------------------------------------------------------------------- + class TaskExecutionEvent final : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.event.TaskExecutionEvent) */ { public: @@ -1430,7 +1564,7 @@ class TaskExecutionEvent final : &_TaskExecutionEvent_default_instance_); } static constexpr int kIndexInFileMessages = - 7; + 8; void Swap(TaskExecutionEvent* other); friend void swap(TaskExecutionEvent& a, TaskExecutionEvent& b) { @@ -1499,6 +1633,18 @@ class TaskExecutionEvent final : const ::google::protobuf::RepeatedPtrField< ::flyteidl::core::TaskLog >& logs() const; + // repeated .flyteidl.event.EventReason reasons = 21; + int reasons_size() const; + void clear_reasons(); + static const int kReasonsFieldNumber = 21; + ::flyteidl::event::EventReason* mutable_reasons(int index); + ::google::protobuf::RepeatedPtrField< ::flyteidl::event::EventReason >* + mutable_reasons(); + const ::flyteidl::event::EventReason& reasons(int index) const; + ::flyteidl::event::EventReason* add_reasons(); + const ::google::protobuf::RepeatedPtrField< ::flyteidl::event::EventReason >& + reasons() const; + // string producer_id = 5; void clear_producer_id(); static const int kProducerIdFieldNumber = 5; @@ -1513,19 +1659,19 @@ class TaskExecutionEvent final : ::std::string* release_producer_id(); void set_allocated_producer_id(::std::string* producer_id); - // string reason = 13; - void clear_reason(); - static const int kReasonFieldNumber = 13; - const ::std::string& reason() const; - void set_reason(const ::std::string& value); + // string reason = 13 [deprecated = true]; + PROTOBUF_DEPRECATED void clear_reason(); + PROTOBUF_DEPRECATED static const int kReasonFieldNumber = 13; + PROTOBUF_DEPRECATED const ::std::string& reason() const; + PROTOBUF_DEPRECATED void set_reason(const ::std::string& value); #if LANG_CXX11 - void set_reason(::std::string&& value); + PROTOBUF_DEPRECATED void set_reason(::std::string&& value); #endif - void set_reason(const char* value); - void set_reason(const char* value, size_t size); - ::std::string* mutable_reason(); - ::std::string* release_reason(); - void set_allocated_reason(::std::string* reason); + PROTOBUF_DEPRECATED void set_reason(const char* value); + PROTOBUF_DEPRECATED void set_reason(const char* value, size_t size); + PROTOBUF_DEPRECATED ::std::string* mutable_reason(); + PROTOBUF_DEPRECATED ::std::string* release_reason(); + PROTOBUF_DEPRECATED void set_allocated_reason(::std::string* reason); // string task_type = 14; void clear_task_type(); @@ -1701,6 +1847,7 @@ class TaskExecutionEvent final : ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::RepeatedPtrField< ::flyteidl::core::TaskLog > logs_; + ::google::protobuf::RepeatedPtrField< ::flyteidl::event::EventReason > reasons_; ::google::protobuf::internal::ArenaStringPtr producer_id_; ::google::protobuf::internal::ArenaStringPtr reason_; ::google::protobuf::internal::ArenaStringPtr task_type_; @@ -1770,7 +1917,7 @@ class ExternalResourceInfo final : &_ExternalResourceInfo_default_instance_); } static constexpr int kIndexInFileMessages = - 8; + 9; void Swap(ExternalResourceInfo* other); friend void swap(ExternalResourceInfo& a, ExternalResourceInfo& b) { @@ -1931,7 +2078,7 @@ class ResourcePoolInfo final : &_ResourcePoolInfo_default_instance_); } static constexpr int kIndexInFileMessages = - 9; + 10; void Swap(ResourcePoolInfo* other); friend void swap(ResourcePoolInfo& a, ResourcePoolInfo& b) { @@ -2066,7 +2213,7 @@ class TaskExecutionMetadata final : &_TaskExecutionMetadata_default_instance_); } static constexpr int kIndexInFileMessages = - 10; + 11; void Swap(TaskExecutionMetadata* other); friend void swap(TaskExecutionMetadata& a, TaskExecutionMetadata& b) { @@ -4007,6 +4154,109 @@ inline void ParentNodeExecutionMetadata::set_allocated_node_id(::std::string* no // ------------------------------------------------------------------- +// EventReason + +// string reason = 1; +inline void EventReason::clear_reason() { + reason_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& EventReason::reason() const { + // @@protoc_insertion_point(field_get:flyteidl.event.EventReason.reason) + return reason_.GetNoArena(); +} +inline void EventReason::set_reason(const ::std::string& value) { + + reason_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:flyteidl.event.EventReason.reason) +} +#if LANG_CXX11 +inline void EventReason::set_reason(::std::string&& value) { + + reason_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:flyteidl.event.EventReason.reason) +} +#endif +inline void EventReason::set_reason(const char* value) { + GOOGLE_DCHECK(value != nullptr); + + reason_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:flyteidl.event.EventReason.reason) +} +inline void EventReason::set_reason(const char* value, size_t size) { + + reason_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:flyteidl.event.EventReason.reason) +} +inline ::std::string* EventReason::mutable_reason() { + + // @@protoc_insertion_point(field_mutable:flyteidl.event.EventReason.reason) + return reason_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* EventReason::release_reason() { + // @@protoc_insertion_point(field_release:flyteidl.event.EventReason.reason) + + return reason_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void EventReason::set_allocated_reason(::std::string* reason) { + if (reason != nullptr) { + + } else { + + } + reason_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), reason); + // @@protoc_insertion_point(field_set_allocated:flyteidl.event.EventReason.reason) +} + +// .google.protobuf.Timestamp occurred_at = 2; +inline bool EventReason::has_occurred_at() const { + return this != internal_default_instance() && occurred_at_ != nullptr; +} +inline const ::google::protobuf::Timestamp& EventReason::occurred_at() const { + const ::google::protobuf::Timestamp* p = occurred_at_; + // @@protoc_insertion_point(field_get:flyteidl.event.EventReason.occurred_at) + return p != nullptr ? *p : *reinterpret_cast( + &::google::protobuf::_Timestamp_default_instance_); +} +inline ::google::protobuf::Timestamp* EventReason::release_occurred_at() { + // @@protoc_insertion_point(field_release:flyteidl.event.EventReason.occurred_at) + + ::google::protobuf::Timestamp* temp = occurred_at_; + occurred_at_ = nullptr; + return temp; +} +inline ::google::protobuf::Timestamp* EventReason::mutable_occurred_at() { + + if (occurred_at_ == nullptr) { + auto* p = CreateMaybeMessage<::google::protobuf::Timestamp>(GetArenaNoVirtual()); + occurred_at_ = p; + } + // @@protoc_insertion_point(field_mutable:flyteidl.event.EventReason.occurred_at) + return occurred_at_; +} +inline void EventReason::set_allocated_occurred_at(::google::protobuf::Timestamp* occurred_at) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == nullptr) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(occurred_at_); + } + if (occurred_at) { + ::google::protobuf::Arena* submessage_arena = + reinterpret_cast<::google::protobuf::MessageLite*>(occurred_at)->GetArena(); + if (message_arena != submessage_arena) { + occurred_at = ::google::protobuf::internal::GetOwnedMessage( + message_arena, occurred_at, submessage_arena); + } + + } else { + + } + occurred_at_ = occurred_at; + // @@protoc_insertion_point(field_set_allocated:flyteidl.event.EventReason.occurred_at) +} + +// ------------------------------------------------------------------- + // TaskExecutionEvent // .flyteidl.core.Identifier task_id = 1; @@ -4602,7 +4852,7 @@ inline void TaskExecutionEvent::set_phase_version(::google::protobuf::uint32 val // @@protoc_insertion_point(field_set:flyteidl.event.TaskExecutionEvent.phase_version) } -// string reason = 13; +// string reason = 13 [deprecated = true]; inline void TaskExecutionEvent::clear_reason() { reason_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } @@ -4655,6 +4905,36 @@ inline void TaskExecutionEvent::set_allocated_reason(::std::string* reason) { // @@protoc_insertion_point(field_set_allocated:flyteidl.event.TaskExecutionEvent.reason) } +// repeated .flyteidl.event.EventReason reasons = 21; +inline int TaskExecutionEvent::reasons_size() const { + return reasons_.size(); +} +inline void TaskExecutionEvent::clear_reasons() { + reasons_.Clear(); +} +inline ::flyteidl::event::EventReason* TaskExecutionEvent::mutable_reasons(int index) { + // @@protoc_insertion_point(field_mutable:flyteidl.event.TaskExecutionEvent.reasons) + return reasons_.Mutable(index); +} +inline ::google::protobuf::RepeatedPtrField< ::flyteidl::event::EventReason >* +TaskExecutionEvent::mutable_reasons() { + // @@protoc_insertion_point(field_mutable_list:flyteidl.event.TaskExecutionEvent.reasons) + return &reasons_; +} +inline const ::flyteidl::event::EventReason& TaskExecutionEvent::reasons(int index) const { + // @@protoc_insertion_point(field_get:flyteidl.event.TaskExecutionEvent.reasons) + return reasons_.Get(index); +} +inline ::flyteidl::event::EventReason* TaskExecutionEvent::add_reasons() { + // @@protoc_insertion_point(field_add:flyteidl.event.TaskExecutionEvent.reasons) + return reasons_.Add(); +} +inline const ::google::protobuf::RepeatedPtrField< ::flyteidl::event::EventReason >& +TaskExecutionEvent::reasons() const { + // @@protoc_insertion_point(field_list:flyteidl.event.TaskExecutionEvent.reasons) + return reasons_; +} + // string task_type = 14; inline void TaskExecutionEvent::clear_task_type() { task_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); @@ -5294,6 +5574,8 @@ inline void TaskExecutionMetadata::set_instance_class(::flyteidl::event::TaskExe // ------------------------------------------------------------------- +// ------------------------------------------------------------------- + // @@protoc_insertion_point(namespace_scope) diff --git a/gen/pb-go/flyteidl/event/event.pb.go b/gen/pb-go/flyteidl/event/event.pb.go index 62b7a12e6..88c0e592a 100644 --- a/gen/pb-go/flyteidl/event/event.pb.go +++ b/gen/pb-go/flyteidl/event/event.pb.go @@ -48,7 +48,7 @@ func (x TaskExecutionMetadata_InstanceClass) String() string { } func (TaskExecutionMetadata_InstanceClass) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_4b035d24120b1b12, []int{10, 0} + return fileDescriptor_4b035d24120b1b12, []int{11, 0} } type WorkflowExecutionEvent struct { @@ -752,6 +752,55 @@ func (m *ParentNodeExecutionMetadata) GetNodeId() string { return "" } +type EventReason struct { + // An explanation for this event + Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty"` + // The time this reason occurred + OccurredAt *timestamp.Timestamp `protobuf:"bytes,2,opt,name=occurred_at,json=occurredAt,proto3" json:"occurred_at,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *EventReason) Reset() { *m = EventReason{} } +func (m *EventReason) String() string { return proto.CompactTextString(m) } +func (*EventReason) ProtoMessage() {} +func (*EventReason) Descriptor() ([]byte, []int) { + return fileDescriptor_4b035d24120b1b12, []int{7} +} + +func (m *EventReason) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_EventReason.Unmarshal(m, b) +} +func (m *EventReason) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_EventReason.Marshal(b, m, deterministic) +} +func (m *EventReason) XXX_Merge(src proto.Message) { + xxx_messageInfo_EventReason.Merge(m, src) +} +func (m *EventReason) XXX_Size() int { + return xxx_messageInfo_EventReason.Size(m) +} +func (m *EventReason) XXX_DiscardUnknown() { + xxx_messageInfo_EventReason.DiscardUnknown(m) +} + +var xxx_messageInfo_EventReason proto.InternalMessageInfo + +func (m *EventReason) GetReason() string { + if m != nil { + return m.Reason + } + return "" +} + +func (m *EventReason) GetOccurredAt() *timestamp.Timestamp { + if m != nil { + return m.OccurredAt + } + return nil +} + // Plugin specific execution event information. For tasks like Python, Hive, Spark, DynamicJob. type TaskExecutionEvent struct { // ID of the task. In combination with the retryAttempt this will indicate @@ -787,7 +836,10 @@ type TaskExecutionEvent struct { // The version field should be incremented when metadata changes across the duration of an individual phase. PhaseVersion uint32 `protobuf:"varint,12,opt,name=phase_version,json=phaseVersion,proto3" json:"phase_version,omitempty"` // An optional explanation for the phase transition. - Reason string `protobuf:"bytes,13,opt,name=reason,proto3" json:"reason,omitempty"` + // Deprecated: Use reasons instead. + Reason string `protobuf:"bytes,13,opt,name=reason,proto3" json:"reason,omitempty"` // Deprecated: Do not use. + // An optional list of explanations for the phase transition. + Reasons []*EventReason `protobuf:"bytes,21,rep,name=reasons,proto3" json:"reasons,omitempty"` // A predefined yet extensible Task type identifier. If the task definition is already registered in flyte admin // this type will be identical, but not all task executions necessarily use pre-registered definitions and this // type is useful to render the task in the UI, filter task executions, etc. @@ -813,7 +865,7 @@ func (m *TaskExecutionEvent) Reset() { *m = TaskExecutionEvent{} } func (m *TaskExecutionEvent) String() string { return proto.CompactTextString(m) } func (*TaskExecutionEvent) ProtoMessage() {} func (*TaskExecutionEvent) Descriptor() ([]byte, []int) { - return fileDescriptor_4b035d24120b1b12, []int{7} + return fileDescriptor_4b035d24120b1b12, []int{8} } func (m *TaskExecutionEvent) XXX_Unmarshal(b []byte) error { @@ -984,6 +1036,7 @@ func (m *TaskExecutionEvent) GetPhaseVersion() uint32 { return 0 } +// Deprecated: Do not use. func (m *TaskExecutionEvent) GetReason() string { if m != nil { return m.Reason @@ -991,6 +1044,13 @@ func (m *TaskExecutionEvent) GetReason() string { return "" } +func (m *TaskExecutionEvent) GetReasons() []*EventReason { + if m != nil { + return m.Reasons + } + return nil +} + func (m *TaskExecutionEvent) GetTaskType() string { if m != nil { return m.TaskType @@ -1055,7 +1115,7 @@ func (m *ExternalResourceInfo) Reset() { *m = ExternalResourceInfo{} } func (m *ExternalResourceInfo) String() string { return proto.CompactTextString(m) } func (*ExternalResourceInfo) ProtoMessage() {} func (*ExternalResourceInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_4b035d24120b1b12, []int{8} + return fileDescriptor_4b035d24120b1b12, []int{9} } func (m *ExternalResourceInfo) XXX_Unmarshal(b []byte) error { @@ -1134,7 +1194,7 @@ func (m *ResourcePoolInfo) Reset() { *m = ResourcePoolInfo{} } func (m *ResourcePoolInfo) String() string { return proto.CompactTextString(m) } func (*ResourcePoolInfo) ProtoMessage() {} func (*ResourcePoolInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_4b035d24120b1b12, []int{9} + return fileDescriptor_4b035d24120b1b12, []int{10} } func (m *ResourcePoolInfo) XXX_Unmarshal(b []byte) error { @@ -1193,7 +1253,7 @@ func (m *TaskExecutionMetadata) Reset() { *m = TaskExecutionMetadata{} } func (m *TaskExecutionMetadata) String() string { return proto.CompactTextString(m) } func (*TaskExecutionMetadata) ProtoMessage() {} func (*TaskExecutionMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_4b035d24120b1b12, []int{10} + return fileDescriptor_4b035d24120b1b12, []int{11} } func (m *TaskExecutionMetadata) XXX_Unmarshal(b []byte) error { @@ -1258,6 +1318,7 @@ func init() { proto.RegisterType((*DynamicWorkflowNodeMetadata)(nil), "flyteidl.event.DynamicWorkflowNodeMetadata") proto.RegisterType((*ParentTaskExecutionMetadata)(nil), "flyteidl.event.ParentTaskExecutionMetadata") proto.RegisterType((*ParentNodeExecutionMetadata)(nil), "flyteidl.event.ParentNodeExecutionMetadata") + proto.RegisterType((*EventReason)(nil), "flyteidl.event.EventReason") proto.RegisterType((*TaskExecutionEvent)(nil), "flyteidl.event.TaskExecutionEvent") proto.RegisterType((*ExternalResourceInfo)(nil), "flyteidl.event.ExternalResourceInfo") proto.RegisterType((*ResourcePoolInfo)(nil), "flyteidl.event.ResourcePoolInfo") @@ -1267,99 +1328,101 @@ func init() { func init() { proto.RegisterFile("flyteidl/event/event.proto", fileDescriptor_4b035d24120b1b12) } var fileDescriptor_4b035d24120b1b12 = []byte{ - // 1490 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x7d, 0x6e, 0xdb, 0x36, - 0x14, 0x8f, 0x9d, 0x0f, 0xdb, 0x4f, 0xb1, 0x63, 0xb3, 0x6e, 0xaa, 0x36, 0x4d, 0xe3, 0x79, 0xeb, - 0x90, 0xb6, 0x98, 0x0d, 0xb8, 0x68, 0x57, 0xac, 0x05, 0x86, 0x7c, 0x6d, 0xf1, 0x96, 0x06, 0x81, - 0x92, 0xb4, 0x40, 0xb7, 0x41, 0x60, 0x24, 0xc6, 0xd1, 0x2c, 0x8b, 0x02, 0x45, 0xa5, 0xf5, 0x29, - 0x76, 0x82, 0xed, 0x00, 0x3b, 0xcc, 0x4e, 0xb0, 0x4b, 0xec, 0x06, 0x03, 0x49, 0x49, 0x8e, 0x64, - 0x2d, 0x49, 0x3f, 0xf6, 0x4f, 0x00, 0xfd, 0xde, 0xe3, 0x8f, 0x8f, 0xef, 0x3b, 0x86, 0x3b, 0xa7, - 0xee, 0x98, 0x13, 0xc7, 0x76, 0xbb, 0xe4, 0x9c, 0x78, 0x5c, 0xfd, 0xed, 0xf8, 0x8c, 0x72, 0x8a, - 0x6a, 0xb1, 0xac, 0x23, 0xd1, 0x3b, 0x77, 0x13, 0x5d, 0x8b, 0x32, 0xd2, 0x75, 0x1d, 0x4e, 0x18, - 0x76, 0x03, 0xa5, 0x9d, 0x95, 0x5a, 0x74, 0xe4, 0x3b, 0x2e, 0x61, 0x91, 0x74, 0x35, 0x2d, 0x25, - 0xef, 0x88, 0x15, 0x72, 0x87, 0x7a, 0x91, 0xf8, 0x5e, 0x5a, 0xec, 0xd8, 0xc4, 0xe3, 0xce, 0xa9, - 0x93, 0x1c, 0x5f, 0xc9, 0x90, 0x63, 0x8e, 0x5d, 0x3a, 0x88, 0x84, 0x6b, 0x03, 0x4a, 0x07, 0x2e, - 0xe9, 0xca, 0xaf, 0x93, 0xf0, 0xb4, 0xcb, 0x9d, 0x11, 0x09, 0x38, 0x1e, 0xf9, 0xb1, 0x69, 0x59, - 0x85, 0x80, 0xb3, 0xd0, 0x8a, 0x9e, 0xd9, 0xfe, 0x73, 0x16, 0x96, 0x5f, 0x53, 0x36, 0x3c, 0x75, - 0xe9, 0xdb, 0x9d, 0xd8, 0xae, 0x1d, 0xf1, 0x62, 0xf4, 0x12, 0x16, 0x13, 0x4b, 0x4d, 0xc7, 0xd6, - 0x0b, 0xad, 0xc2, 0xba, 0xd6, 0x7b, 0xd8, 0x49, 0x1c, 0x23, 0xac, 0xe9, 0x4c, 0x1d, 0xee, 0x27, - 0xe6, 0x1b, 0x1a, 0x99, 0x80, 0x68, 0x0d, 0x34, 0x9f, 0x51, 0x3b, 0xb4, 0x08, 0x13, 0x6c, 0xc5, - 0x56, 0x61, 0xbd, 0x62, 0x40, 0x0c, 0xf5, 0x6d, 0xf4, 0x02, 0xe6, 0xfd, 0x33, 0x1c, 0x10, 0x7d, - 0xb6, 0x55, 0x58, 0xaf, 0xf5, 0xbe, 0xbc, 0xea, 0xa2, 0xce, 0x81, 0xd0, 0x36, 0xd4, 0x21, 0xf4, - 0x1c, 0x34, 0x6a, 0x59, 0x21, 0x63, 0xc4, 0x36, 0x31, 0xd7, 0xe7, 0xa4, 0xb1, 0x77, 0x3a, 0xea, - 0xf1, 0x9d, 0xf8, 0xf1, 0x9d, 0xa3, 0xd8, 0x3b, 0x06, 0xc4, 0xea, 0x1b, 0x1c, 0xad, 0x01, 0xd0, - 0x90, 0xfb, 0x21, 0x37, 0x43, 0xe6, 0xe8, 0xf3, 0xc2, 0xb4, 0xdd, 0x19, 0xa3, 0xa2, 0xb0, 0x63, - 0xe6, 0xa0, 0x27, 0x30, 0x4f, 0x18, 0xa3, 0x4c, 0x5f, 0x90, 0xbc, 0xab, 0x19, 0xdb, 0x26, 0x9e, - 0x13, 0x4a, 0xbb, 0x33, 0x86, 0xd2, 0x46, 0x2f, 0x40, 0x8b, 0x78, 0x6d, 0xcc, 0xb1, 0x5e, 0x92, - 0x87, 0x6f, 0x67, 0x0e, 0xef, 0xa9, 0x54, 0x7a, 0x89, 0xfd, 0xdd, 0x19, 0x23, 0xb2, 0x63, 0x1b, - 0x73, 0xbc, 0xb9, 0x04, 0xd5, 0xe8, 0x34, 0x23, 0x41, 0xe8, 0xf2, 0xf6, 0x6f, 0x15, 0x40, 0xfb, - 0xd4, 0x26, 0x99, 0x40, 0x3d, 0x85, 0x62, 0x12, 0x9e, 0xac, 0xd7, 0x52, 0xea, 0x17, 0x42, 0x53, - 0x74, 0xae, 0x11, 0x91, 0x67, 0xe9, 0x88, 0xb4, 0x2f, 0xe3, 0xfe, 0x84, 0xd1, 0x58, 0x85, 0x8a, - 0xe3, 0x65, 0x83, 0x51, 0x96, 0x90, 0x88, 0xc5, 0x37, 0x00, 0x4a, 0x2c, 0x7d, 0xda, 0xbc, 0xda, - 0xa7, 0x8a, 0x4d, 0xb8, 0x34, 0x13, 0xe8, 0x05, 0xc9, 0x5d, 0xc8, 0x0d, 0x74, 0xe9, 0x3a, 0x81, - 0x2e, 0xfc, 0x47, 0xa0, 0x97, 0xae, 0x32, 0xaa, 0x70, 0x31, 0xd0, 0xe8, 0x67, 0x58, 0x7e, 0x1b, - 0x65, 0xb7, 0xe9, 0x51, 0x9b, 0x98, 0x23, 0xc2, 0xb1, 0x24, 0x2a, 0x4b, 0xa2, 0x2f, 0x3a, 0xe9, - 0x66, 0x94, 0xd4, 0x82, 0x88, 0xc0, 0xcb, 0x48, 0x77, 0xb7, 0x68, 0x34, 0xdf, 0xe6, 0xe0, 0xe8, - 0x00, 0x10, 0xc7, 0xc1, 0x30, 0xc3, 0x5c, 0x93, 0xcc, 0xad, 0x2c, 0xf3, 0x11, 0x0e, 0x86, 0x19, - 0xd6, 0x3a, 0xcf, 0x60, 0xe8, 0x17, 0x68, 0xfa, 0x98, 0x11, 0x8f, 0x9b, 0x92, 0x38, 0xe1, 0xac, - 0x48, 0xce, 0x47, 0x59, 0xce, 0x03, 0xa9, 0x2b, 0x98, 0x13, 0xf7, 0xc5, 0x54, 0x06, 0xf2, 0x13, - 0x61, 0x0e, 0x7d, 0xda, 0x64, 0xb8, 0x8c, 0x3e, 0x95, 0x8c, 0x59, 0xfa, 0x94, 0xf5, 0x6b, 0xa0, - 0x31, 0xc2, 0xd9, 0xd8, 0x1c, 0x30, 0x1a, 0xfa, 0xba, 0xa6, 0xd2, 0x5e, 0x42, 0xdf, 0x0b, 0x04, - 0xb5, 0x60, 0x31, 0xf0, 0x89, 0xa5, 0x6e, 0x77, 0x6c, 0x7d, 0x51, 0x69, 0x08, 0x4c, 0x10, 0xf5, - 0x6d, 0xb4, 0x02, 0x15, 0x29, 0xf4, 0xf0, 0x88, 0xe8, 0x55, 0x29, 0x2e, 0x0b, 0x60, 0x1f, 0x8f, - 0x08, 0xfa, 0x1c, 0xaa, 0xd2, 0x30, 0xf3, 0x9c, 0xb0, 0xc0, 0xa1, 0x9e, 0x5e, 0x6f, 0x15, 0xd6, - 0xe7, 0x8d, 0x45, 0x09, 0xbe, 0x52, 0x98, 0x60, 0x70, 0x02, 0x53, 0x59, 0xa7, 0x37, 0x5a, 0x85, - 0xf5, 0xb2, 0x51, 0x76, 0x02, 0xf5, 0x14, 0xb4, 0x0a, 0xe0, 0x04, 0xa6, 0x3d, 0xf6, 0xf0, 0xc8, - 0xb1, 0x74, 0x24, 0xa5, 0x15, 0x27, 0xd8, 0x56, 0x00, 0xba, 0x0d, 0x65, 0x9b, 0x58, 0x43, 0x99, - 0xc2, 0x37, 0xe4, 0xe5, 0x25, 0xf1, 0x2d, 0xd2, 0xf7, 0xb9, 0x78, 0x9b, 0x4f, 0x19, 0x57, 0x75, - 0x77, 0xf3, 0xea, 0xba, 0x8b, 0xd5, 0x37, 0xf8, 0x66, 0x15, 0x34, 0x55, 0x58, 0xe7, 0xd8, 0x0d, - 0xc9, 0x54, 0xfb, 0xd9, 0x6c, 0xc0, 0x12, 0xc7, 0x6c, 0x40, 0x78, 0x12, 0x92, 0x36, 0x81, 0x66, - 0x5e, 0x2e, 0x7e, 0xe2, 0xd9, 0xd1, 0xfe, 0xa7, 0x08, 0xf5, 0x6c, 0x66, 0xa2, 0x6d, 0x58, 0xb4, - 0xb0, 0x75, 0x46, 0xcc, 0x80, 0x63, 0x1e, 0x06, 0xf2, 0x8e, 0x5a, 0xef, 0xb3, 0xcc, 0x1d, 0x5b, - 0x6a, 0x5a, 0x6e, 0x09, 0xcd, 0x43, 0xa9, 0x68, 0x68, 0xd6, 0xe4, 0x03, 0x7d, 0x0b, 0x5a, 0x34, - 0x50, 0xcd, 0x21, 0x19, 0xcb, 0x26, 0xa8, 0xf5, 0xee, 0xe5, 0x93, 0x24, 0x69, 0x05, 0xd1, 0x91, - 0x1f, 0xc9, 0x18, 0xbd, 0x06, 0xc4, 0x48, 0x40, 0xd8, 0x39, 0x96, 0x8f, 0x8d, 0x8c, 0x51, 0x1d, - 0x73, 0x3d, 0x9f, 0xc7, 0x98, 0xe8, 0x77, 0x22, 0x9b, 0x1a, 0x17, 0x38, 0x22, 0xcb, 0xee, 0x43, - 0xcd, 0x3a, 0x23, 0xd6, 0xd0, 0xa7, 0x8e, 0xa7, 0xfa, 0xd5, 0x9c, 0x0c, 0x76, 0x75, 0x82, 0x8a, - 0x90, 0xbf, 0x82, 0x7a, 0x94, 0x29, 0x66, 0x5c, 0xfe, 0x32, 0xe3, 0x72, 0x2a, 0x25, 0x4a, 0xa0, - 0xbc, 0x88, 0x19, 0x4b, 0x76, 0x5a, 0xd8, 0xfe, 0xab, 0x00, 0x2b, 0x97, 0x1c, 0x40, 0x0f, 0x2e, - 0x4c, 0x9d, 0x6c, 0xa7, 0xcb, 0x0c, 0x9a, 0x43, 0x68, 0x44, 0x1b, 0x91, 0x3d, 0xb1, 0xb1, 0x98, - 0x3b, 0xaf, 0xb6, 0x22, 0xbd, 0xf8, 0xca, 0x2d, 0x97, 0x06, 0x21, 0x23, 0x46, 0xdd, 0xca, 0x08, - 0x50, 0x17, 0x9a, 0xf1, 0xbb, 0x7f, 0xa5, 0x27, 0xa6, 0xac, 0x58, 0xe1, 0xa4, 0x59, 0xe9, 0xa4, - 0x46, 0x24, 0xfb, 0x81, 0x9e, 0x1c, 0xfa, 0xc4, 0x3a, 0x66, 0x4e, 0xfb, 0x18, 0x56, 0x2e, 0xe9, - 0x44, 0x97, 0x4e, 0xd1, 0xd4, 0x89, 0xf4, 0xe3, 0xda, 0x4f, 0x63, 0xda, 0xdc, 0x0e, 0x84, 0x6e, - 0x41, 0x29, 0xee, 0x23, 0x05, 0x69, 0xd9, 0x82, 0x27, 0x7b, 0x48, 0xfb, 0xef, 0x12, 0xa0, 0x14, - 0xaf, 0x1a, 0xe6, 0x3d, 0x28, 0xc9, 0xa6, 0x7a, 0x1d, 0xdf, 0x2e, 0x08, 0xcd, 0xbe, 0x8d, 0x4c, - 0xd0, 0x2f, 0x36, 0xcc, 0x54, 0xe5, 0x15, 0xdf, 0x6b, 0x2d, 0xb8, 0xe9, 0x4f, 0x3f, 0xa5, 0x6f, - 0x8b, 0x96, 0xa6, 0x5a, 0x26, 0xe6, 0x9c, 0x8c, 0x7c, 0x2e, 0x9d, 0x5c, 0x35, 0x16, 0x25, 0xb8, - 0xa1, 0xb0, 0xc9, 0xb6, 0x30, 0x97, 0xbb, 0x2d, 0xa4, 0xde, 0x9a, 0xde, 0x16, 0x32, 0x8b, 0xc8, - 0xfc, 0xd4, 0x22, 0xf2, 0x10, 0xe6, 0x5c, 0x3a, 0x08, 0xf4, 0x85, 0xd6, 0xec, 0xba, 0xd6, 0x5b, - 0xce, 0x61, 0xde, 0xa3, 0x03, 0x43, 0xea, 0x64, 0x57, 0x8f, 0xd2, 0x87, 0xaf, 0x1e, 0xe5, 0x2b, - 0x56, 0x8f, 0x1b, 0x1f, 0xb1, 0x7a, 0x54, 0x2e, 0x59, 0x3d, 0xe0, 0x63, 0x56, 0x8f, 0xc6, 0xfb, - 0xad, 0x1e, 0xcf, 0x40, 0xb3, 0xc2, 0x80, 0xd3, 0x91, 0xe9, 0x78, 0xa7, 0x54, 0x0e, 0x43, 0xad, - 0x77, 0x6b, 0xca, 0x5b, 0x87, 0xf2, 0x7f, 0x06, 0x03, 0x94, 0x6e, 0xdf, 0x3b, 0xa5, 0x22, 0x27, - 0x64, 0xf4, 0x92, 0x31, 0xb7, 0xa8, 0x72, 0x42, 0x82, 0xf1, 0x98, 0x5b, 0x86, 0x05, 0x46, 0x70, - 0x40, 0xbd, 0x68, 0x4a, 0x46, 0x5f, 0x62, 0xfc, 0xc9, 0x2c, 0xe7, 0x63, 0x9f, 0xc8, 0x55, 0xa4, - 0x62, 0x94, 0x05, 0x70, 0x34, 0xf6, 0x09, 0xda, 0x80, 0x72, 0x32, 0xf3, 0x55, 0x27, 0xbb, 0x9f, - 0xb7, 0xa6, 0x4c, 0x4f, 0xfb, 0xe4, 0xd8, 0xf4, 0x0c, 0x46, 0x39, 0x33, 0x38, 0x33, 0x2c, 0x9b, - 0x9f, 0x72, 0x58, 0xb6, 0xff, 0x28, 0x42, 0x73, 0xe7, 0x1d, 0x27, 0xcc, 0xc3, 0xae, 0x41, 0x02, - 0x1a, 0x32, 0x8b, 0x48, 0xbf, 0xad, 0x81, 0x46, 0x22, 0x7c, 0xd2, 0x14, 0x20, 0x86, 0xfa, 0x36, - 0x6a, 0xc2, 0xbc, 0xe3, 0xd9, 0xe4, 0x9d, 0x2c, 0xdd, 0xaa, 0xa1, 0x3e, 0xfe, 0xef, 0x12, 0xcc, - 0x0e, 0xd3, 0xf9, 0x0f, 0x1a, 0xa6, 0xef, 0x51, 0xa7, 0xed, 0x9f, 0xa0, 0x1e, 0xfb, 0xe5, 0x80, - 0x52, 0x57, 0xfa, 0xe6, 0x01, 0xd4, 0xb1, 0xeb, 0x52, 0x4b, 0x8d, 0x52, 0x4e, 0x87, 0xc4, 0x8b, - 0x1c, 0xb4, 0x34, 0xc1, 0x8f, 0x04, 0x8c, 0xee, 0x42, 0x45, 0x6c, 0x5f, 0x81, 0x8f, 0x2d, 0x12, - 0xfd, 0xeb, 0x32, 0x01, 0xda, 0xbf, 0xcf, 0xc2, 0xcd, 0xfc, 0x36, 0x7f, 0x1f, 0x6a, 0x03, 0xe2, - 0x11, 0x86, 0x45, 0xd4, 0xe5, 0xfe, 0xa6, 0x2e, 0xa8, 0x26, 0xa8, 0x5c, 0xe2, 0x0e, 0x01, 0x25, - 0x51, 0x62, 0x91, 0x99, 0x81, 0x5e, 0x94, 0xef, 0x9a, 0x5a, 0xc7, 0xf3, 0xe2, 0x6c, 0x34, 0x48, - 0x06, 0x0d, 0xd0, 0xbe, 0x5c, 0x15, 0xe4, 0x87, 0xe9, 0x53, 0xea, 0xaa, 0x9a, 0x9b, 0x95, 0xa4, - 0x53, 0x9b, 0x78, 0xd6, 0x39, 0x46, 0x9d, 0x65, 0xdd, 0xf5, 0x08, 0x1a, 0xbe, 0x1b, 0x0e, 0x1c, - 0xd1, 0xe8, 0xe3, 0x16, 0x1e, 0x2d, 0x09, 0x75, 0x25, 0x98, 0xb4, 0x76, 0xf4, 0x06, 0x6a, 0x8e, - 0x17, 0x70, 0xec, 0x59, 0xc4, 0xb4, 0x5c, 0x1c, 0x04, 0xb2, 0xb6, 0x6a, 0xbd, 0xc7, 0xd7, 0xaa, - 0xad, 0x4e, 0x3f, 0x3a, 0xbb, 0x25, 0x8e, 0x1a, 0x55, 0xe7, 0xe2, 0x67, 0xbb, 0x0b, 0xd5, 0x94, - 0x1c, 0x69, 0x50, 0xda, 0xde, 0xf9, 0x6e, 0xe3, 0x78, 0xef, 0xa8, 0x3e, 0x83, 0x1a, 0x50, 0xed, - 0xef, 0x1f, 0xed, 0x18, 0xc6, 0xf1, 0xc1, 0x51, 0x7f, 0x73, 0x6f, 0xa7, 0x5e, 0xd8, 0xfc, 0xfa, - 0xcd, 0x93, 0x81, 0xc3, 0xcf, 0xc2, 0x93, 0x8e, 0x45, 0x47, 0x5d, 0x69, 0x00, 0x65, 0x83, 0x6e, - 0xf2, 0x43, 0xc7, 0x80, 0x78, 0x5d, 0xff, 0xe4, 0xab, 0x01, 0xed, 0xa6, 0x7f, 0xa2, 0x39, 0x59, - 0x90, 0x65, 0xf9, 0xf8, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3f, 0x21, 0x33, 0xa4, 0xbb, 0x11, - 0x00, 0x00, + // 1536 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xeb, 0x6e, 0xdb, 0xc6, + 0x12, 0xb6, 0xe4, 0x8b, 0xa4, 0xa1, 0x25, 0x4b, 0x1b, 0xd9, 0x61, 0xec, 0x38, 0xd6, 0xd1, 0x39, + 0x39, 0x70, 0x12, 0x54, 0x02, 0x14, 0x24, 0x0d, 0x9a, 0x00, 0x85, 0x6f, 0xad, 0xd5, 0x3a, 0x86, + 0x41, 0xdb, 0x09, 0x90, 0xb6, 0x20, 0xd6, 0xe4, 0x5a, 0x66, 0x4d, 0x71, 0x89, 0xe5, 0xd2, 0x89, + 0x9f, 0xa2, 0x3f, 0xfb, 0xab, 0x7d, 0x80, 0x3e, 0x4c, 0xdf, 0xa5, 0x6f, 0x50, 0xec, 0x2e, 0x49, + 0x89, 0x14, 0xeb, 0x4b, 0x92, 0xfe, 0x31, 0xcc, 0x99, 0xd9, 0x8f, 0xb3, 0xf3, 0xcd, 0x8d, 0x82, + 0xe5, 0x53, 0xf7, 0x92, 0x13, 0xc7, 0x76, 0xbb, 0xe4, 0x82, 0x78, 0x5c, 0xfd, 0xed, 0xf8, 0x8c, + 0x72, 0x8a, 0x6a, 0xb1, 0xae, 0x23, 0xa5, 0xcb, 0xf7, 0x13, 0x5b, 0x8b, 0x32, 0xd2, 0x75, 0x1d, + 0x4e, 0x18, 0x76, 0x03, 0x65, 0x9d, 0xd5, 0x5a, 0x74, 0xe8, 0x3b, 0x2e, 0x61, 0x91, 0x76, 0x35, + 0xad, 0x25, 0x1f, 0x88, 0x15, 0x72, 0x87, 0x7a, 0x91, 0xfa, 0x41, 0x5a, 0xed, 0xd8, 0xc4, 0xe3, + 0xce, 0xa9, 0x93, 0x1c, 0x5f, 0xc9, 0x80, 0x63, 0x8e, 0x5d, 0x3a, 0x88, 0x94, 0x6b, 0x03, 0x4a, + 0x07, 0x2e, 0xe9, 0xca, 0xa7, 0x93, 0xf0, 0xb4, 0xcb, 0x9d, 0x21, 0x09, 0x38, 0x1e, 0xfa, 0xb1, + 0x6b, 0x59, 0x83, 0x80, 0xb3, 0xd0, 0x8a, 0xae, 0xd9, 0xfe, 0x63, 0x1a, 0x96, 0xde, 0x52, 0x76, + 0x7e, 0xea, 0xd2, 0xf7, 0x3b, 0xb1, 0x5f, 0x3b, 0xe2, 0xc6, 0xe8, 0x35, 0xcc, 0x27, 0x9e, 0x9a, + 0x8e, 0xad, 0x17, 0x5a, 0x85, 0x75, 0xad, 0xf7, 0xb8, 0x93, 0x04, 0x46, 0x78, 0xd3, 0x99, 0x38, + 0xdc, 0x4f, 0xdc, 0x37, 0x34, 0x32, 0x12, 0xa2, 0x35, 0xd0, 0x7c, 0x46, 0xed, 0xd0, 0x22, 0x4c, + 0xa0, 0x15, 0x5b, 0x85, 0xf5, 0x8a, 0x01, 0xb1, 0xa8, 0x6f, 0xa3, 0x57, 0x30, 0xeb, 0x9f, 0xe1, + 0x80, 0xe8, 0xd3, 0xad, 0xc2, 0x7a, 0xad, 0xf7, 0xff, 0xeb, 0x5e, 0xd4, 0x39, 0x10, 0xd6, 0x86, + 0x3a, 0x84, 0x5e, 0x82, 0x46, 0x2d, 0x2b, 0x64, 0x8c, 0xd8, 0x26, 0xe6, 0xfa, 0x8c, 0x74, 0x76, + 0xb9, 0xa3, 0x2e, 0xdf, 0x89, 0x2f, 0xdf, 0x39, 0x8a, 0xa3, 0x63, 0x40, 0x6c, 0xbe, 0xc1, 0xd1, + 0x1a, 0x00, 0x0d, 0xb9, 0x1f, 0x72, 0x33, 0x64, 0x8e, 0x3e, 0x2b, 0x5c, 0xdb, 0x9d, 0x32, 0x2a, + 0x4a, 0x76, 0xcc, 0x1c, 0xf4, 0x0c, 0x66, 0x09, 0x63, 0x94, 0xe9, 0x73, 0x12, 0x77, 0x35, 0xe3, + 0xdb, 0x28, 0x72, 0xc2, 0x68, 0x77, 0xca, 0x50, 0xd6, 0xe8, 0x15, 0x68, 0x11, 0xae, 0x8d, 0x39, + 0xd6, 0x4b, 0xf2, 0xf0, 0xbd, 0xcc, 0xe1, 0x3d, 0x95, 0x4a, 0xaf, 0xb1, 0xbf, 0x3b, 0x65, 0x44, + 0x7e, 0x6c, 0x63, 0x8e, 0x37, 0x17, 0xa0, 0x1a, 0x9d, 0x66, 0x24, 0x08, 0x5d, 0xde, 0xfe, 0xa5, + 0x02, 0x68, 0x9f, 0xda, 0x24, 0x43, 0xd4, 0x73, 0x28, 0x26, 0xf4, 0x64, 0xa3, 0x96, 0x32, 0x1f, + 0xa3, 0xa6, 0xe8, 0xdc, 0x80, 0x91, 0x17, 0x69, 0x46, 0xda, 0x57, 0x61, 0x7f, 0x46, 0x36, 0x56, + 0xa1, 0xe2, 0x78, 0x59, 0x32, 0xca, 0x52, 0x24, 0xb8, 0xf8, 0x0a, 0x40, 0xa9, 0x65, 0x4c, 0x9b, + 0xd7, 0xc7, 0x54, 0xa1, 0x89, 0x90, 0x66, 0x88, 0x9e, 0x93, 0xd8, 0x85, 0x5c, 0xa2, 0x4b, 0x37, + 0x21, 0xba, 0xf0, 0x0f, 0x44, 0x2f, 0x5c, 0xe7, 0x54, 0x61, 0x9c, 0x68, 0xf4, 0x23, 0x2c, 0xbd, + 0x8f, 0xb2, 0xdb, 0xf4, 0xa8, 0x4d, 0xcc, 0x21, 0xe1, 0x58, 0x02, 0x95, 0x25, 0xd0, 0xff, 0x3a, + 0xe9, 0x66, 0x94, 0xd4, 0x82, 0x60, 0xe0, 0x75, 0x64, 0xbb, 0x5b, 0x34, 0x9a, 0xef, 0x73, 0xe4, + 0xe8, 0x00, 0x10, 0xc7, 0xc1, 0x79, 0x06, 0xb9, 0x26, 0x91, 0x5b, 0x59, 0xe4, 0x23, 0x1c, 0x9c, + 0x67, 0x50, 0xeb, 0x3c, 0x23, 0x43, 0x3f, 0x41, 0xd3, 0xc7, 0x8c, 0x78, 0xdc, 0x94, 0xc0, 0x09, + 0x66, 0x45, 0x62, 0x3e, 0xc9, 0x62, 0x1e, 0x48, 0x5b, 0x81, 0x9c, 0x84, 0x2f, 0x86, 0x32, 0x90, + 0x9f, 0x28, 0x73, 0xe0, 0xd3, 0x2e, 0xc3, 0x55, 0xf0, 0xa9, 0x64, 0xcc, 0xc2, 0xa7, 0xbc, 0x5f, + 0x03, 0x8d, 0x11, 0xce, 0x2e, 0xcd, 0x01, 0xa3, 0xa1, 0xaf, 0x6b, 0x2a, 0xed, 0xa5, 0xe8, 0x5b, + 0x21, 0x41, 0x2d, 0x98, 0x0f, 0x7c, 0x62, 0xa9, 0xb7, 0x3b, 0xb6, 0x3e, 0xaf, 0x2c, 0x84, 0x4c, + 0x00, 0xf5, 0x6d, 0xb4, 0x02, 0x15, 0xa9, 0xf4, 0xf0, 0x90, 0xe8, 0x55, 0xa9, 0x2e, 0x0b, 0xc1, + 0x3e, 0x1e, 0x12, 0xf4, 0x5f, 0xa8, 0x4a, 0xc7, 0xcc, 0x0b, 0xc2, 0x02, 0x87, 0x7a, 0x7a, 0xbd, + 0x55, 0x58, 0x9f, 0x35, 0xe6, 0xa5, 0xf0, 0x8d, 0x92, 0x09, 0x04, 0x27, 0x30, 0x95, 0x77, 0x7a, + 0xa3, 0x55, 0x58, 0x2f, 0x1b, 0x65, 0x27, 0x50, 0x57, 0x41, 0xab, 0x00, 0x4e, 0x60, 0xda, 0x97, + 0x1e, 0x1e, 0x3a, 0x96, 0x8e, 0xa4, 0xb6, 0xe2, 0x04, 0xdb, 0x4a, 0x80, 0xee, 0x41, 0xd9, 0x26, + 0xd6, 0xb9, 0x4c, 0xe1, 0x3b, 0xf2, 0xe5, 0x25, 0xf1, 0x2c, 0xd2, 0xf7, 0xa5, 0xb8, 0x9b, 0x4f, + 0x19, 0x57, 0x75, 0xb7, 0x78, 0x7d, 0xdd, 0xc5, 0xe6, 0x1b, 0x7c, 0xb3, 0x0a, 0x9a, 0x2a, 0xac, + 0x0b, 0xec, 0x86, 0x64, 0xa2, 0xfd, 0x6c, 0x36, 0x60, 0x81, 0x63, 0x36, 0x20, 0x3c, 0xa1, 0xa4, + 0x4d, 0xa0, 0x99, 0x97, 0x8b, 0x9f, 0x79, 0x76, 0xb4, 0xff, 0x2a, 0x42, 0x3d, 0x9b, 0x99, 0x68, + 0x1b, 0xe6, 0x2d, 0x6c, 0x9d, 0x11, 0x33, 0xe0, 0x98, 0x87, 0x81, 0x7c, 0x47, 0xad, 0xf7, 0x9f, + 0xcc, 0x3b, 0xb6, 0xd4, 0xb4, 0xdc, 0x12, 0x96, 0x87, 0xd2, 0xd0, 0xd0, 0xac, 0xd1, 0x03, 0xfa, + 0x1a, 0xb4, 0x68, 0xa0, 0x9a, 0xe7, 0xe4, 0x52, 0x36, 0x41, 0xad, 0xf7, 0x20, 0x1f, 0x24, 0x49, + 0x2b, 0x88, 0x8e, 0x7c, 0x4f, 0x2e, 0xd1, 0x5b, 0x40, 0x8c, 0x04, 0x84, 0x5d, 0x60, 0x79, 0xd9, + 0xc8, 0x19, 0xd5, 0x31, 0xd7, 0xf3, 0x71, 0x8c, 0x91, 0x7d, 0x27, 0xf2, 0xa9, 0x31, 0x86, 0x11, + 0x79, 0xf6, 0x10, 0x6a, 0xd6, 0x19, 0xb1, 0xce, 0x7d, 0xea, 0x78, 0xaa, 0x5f, 0xcd, 0x48, 0xb2, + 0xab, 0x23, 0xa9, 0xa0, 0xfc, 0x0d, 0xd4, 0xa3, 0x4c, 0x31, 0xe3, 0xf2, 0x97, 0x19, 0x97, 0x53, + 0x29, 0x51, 0x02, 0xe5, 0x31, 0x66, 0x2c, 0xd8, 0x69, 0x65, 0xfb, 0xcf, 0x02, 0xac, 0x5c, 0x71, + 0x00, 0x3d, 0x1a, 0x9b, 0x3a, 0xd9, 0x4e, 0x97, 0x19, 0x34, 0x87, 0xd0, 0x88, 0x36, 0x22, 0x7b, + 0xe4, 0x63, 0x31, 0x77, 0x5e, 0x6d, 0x45, 0x76, 0xf1, 0x2b, 0xb7, 0x5c, 0x1a, 0x84, 0x8c, 0x18, + 0x75, 0x2b, 0xa3, 0x40, 0x5d, 0x68, 0xc6, 0xf7, 0xfe, 0x99, 0x9e, 0x98, 0xb2, 0x62, 0x45, 0x90, + 0xa6, 0x65, 0x90, 0x1a, 0x91, 0xee, 0x3b, 0x7a, 0x72, 0xe8, 0x13, 0xeb, 0x98, 0x39, 0xed, 0x63, + 0x58, 0xb9, 0xa2, 0x13, 0x5d, 0x39, 0x45, 0x53, 0x27, 0xd2, 0x97, 0x6b, 0x3f, 0x8f, 0x61, 0x73, + 0x3b, 0x10, 0xba, 0x0b, 0xa5, 0xb8, 0x8f, 0x14, 0xa4, 0x67, 0x73, 0x9e, 0xec, 0x21, 0xed, 0x13, + 0xd0, 0xe4, 0xf8, 0x36, 0x08, 0x0e, 0xa8, 0x87, 0x96, 0x60, 0x8e, 0xc9, 0xff, 0x62, 0x33, 0xf5, + 0x94, 0x9d, 0xa4, 0xc5, 0xdb, 0x4c, 0xd2, 0xf6, 0xaf, 0x65, 0x40, 0x29, 0xdf, 0xd5, 0xc2, 0xd0, + 0x83, 0x92, 0x6c, 0xdc, 0x37, 0xe1, 0x6f, 0x4e, 0x58, 0xf6, 0x6d, 0x64, 0x82, 0x3e, 0xde, 0x94, + 0x53, 0xd5, 0x5d, 0xbc, 0xd5, 0xea, 0xb1, 0xe8, 0x4f, 0x86, 0xab, 0x6f, 0x8b, 0xb6, 0xa9, 0xda, + 0x32, 0xe6, 0x9c, 0x0c, 0x7d, 0x2e, 0x89, 0xac, 0x1a, 0xf3, 0x52, 0xb8, 0xa1, 0x64, 0xa3, 0x8d, + 0x64, 0x26, 0x77, 0x23, 0x49, 0xdd, 0x35, 0xbd, 0x91, 0x64, 0x96, 0x9d, 0xd9, 0x89, 0x65, 0xe7, + 0x31, 0xcc, 0xb8, 0x74, 0x10, 0xe8, 0x73, 0xad, 0xe9, 0x75, 0xad, 0xb7, 0x94, 0x83, 0xbc, 0x47, + 0x07, 0x86, 0xb4, 0xc9, 0x92, 0x52, 0xfa, 0xf8, 0xf5, 0xa6, 0x7c, 0xcd, 0x7a, 0x73, 0xe7, 0x13, + 0xd6, 0x9b, 0xca, 0x15, 0xeb, 0x0d, 0x7c, 0xca, 0x7a, 0xd3, 0xb8, 0xdd, 0x7a, 0xf3, 0x02, 0x34, + 0x2b, 0x0c, 0x38, 0x1d, 0x9a, 0x8e, 0x77, 0x4a, 0xe5, 0xc0, 0xd5, 0x7a, 0x77, 0x27, 0xa2, 0x75, + 0x28, 0xbf, 0x4b, 0x0c, 0x50, 0xb6, 0x7d, 0xef, 0x94, 0x8a, 0x9c, 0x90, 0xec, 0x25, 0xa3, 0x74, + 0x5e, 0xe5, 0x84, 0x14, 0xc6, 0xa3, 0x74, 0x39, 0xa9, 0x1c, 0x39, 0x89, 0x37, 0x8b, 0x7a, 0x21, + 0xa9, 0x9e, 0x67, 0x50, 0x52, 0xff, 0x05, 0xfa, 0xa2, 0xe4, 0x75, 0x25, 0xdb, 0x13, 0xc7, 0x6a, + 0xd0, 0x88, 0x6d, 0xc5, 0x74, 0x96, 0x05, 0xc2, 0x2f, 0x7d, 0x22, 0x37, 0xa5, 0x8a, 0x51, 0x16, + 0x82, 0xa3, 0x4b, 0x9f, 0xa0, 0x0d, 0x28, 0x27, 0x2b, 0x89, 0x6a, 0xb4, 0x0f, 0xf3, 0xb6, 0xa8, + 0xc9, 0x65, 0x24, 0x39, 0x36, 0xb9, 0x22, 0xa0, 0x9c, 0x15, 0x21, 0x33, 0xcb, 0x9b, 0x9f, 0x73, + 0x96, 0xb7, 0x7f, 0x2f, 0x42, 0x73, 0xe7, 0x03, 0x27, 0xcc, 0xc3, 0xae, 0x41, 0x02, 0x1a, 0x32, + 0x8b, 0xc8, 0x90, 0xaf, 0x81, 0x46, 0x22, 0xf9, 0xa8, 0x67, 0x41, 0x2c, 0xea, 0xdb, 0xa8, 0x09, + 0xb3, 0x8e, 0x67, 0x93, 0x0f, 0xb2, 0xea, 0xab, 0x86, 0x7a, 0xf8, 0xb7, 0xab, 0x37, 0x3b, 0xeb, + 0x67, 0x3f, 0x6a, 0xd6, 0xdf, 0xa2, 0xc4, 0xdb, 0x3f, 0x40, 0x3d, 0x8e, 0xcb, 0x01, 0xa5, 0xae, + 0x8c, 0xcd, 0x23, 0xa8, 0x63, 0xd7, 0xa5, 0x96, 0x9a, 0xf4, 0x9c, 0x9e, 0x93, 0xb8, 0x5b, 0x2f, + 0x8c, 0xe4, 0x47, 0x42, 0x8c, 0xee, 0x43, 0x45, 0x2c, 0x87, 0x81, 0x8f, 0x2d, 0x12, 0x7d, 0x59, + 0x8d, 0x04, 0xed, 0xdf, 0xa6, 0x61, 0x31, 0x7f, 0x0a, 0x3d, 0x84, 0xda, 0x80, 0x78, 0x84, 0x61, + 0xc1, 0xba, 0x5c, 0x2f, 0xd5, 0x0b, 0xaa, 0x89, 0x54, 0xee, 0x98, 0x87, 0x80, 0x12, 0x96, 0x58, + 0xe4, 0x66, 0xa0, 0x17, 0xe5, 0xbd, 0x26, 0xbe, 0x16, 0xf2, 0x78, 0x36, 0x1a, 0x24, 0x23, 0x0d, + 0xd0, 0xbe, 0xdc, 0x64, 0xe4, 0x83, 0xe9, 0x53, 0xea, 0xaa, 0x72, 0x9d, 0x96, 0xa0, 0x13, 0x1f, + 0x0a, 0xd9, 0xe0, 0x18, 0x75, 0x96, 0x0d, 0xd7, 0x13, 0x68, 0xf8, 0x6e, 0x38, 0x70, 0xc4, 0x8c, + 0x88, 0xbb, 0x7f, 0xb4, 0xc3, 0xd4, 0x95, 0x62, 0x34, 0x15, 0xd0, 0x3b, 0xa8, 0x39, 0x5e, 0xc0, + 0xb1, 0x67, 0x11, 0xd3, 0x72, 0x71, 0x10, 0xc8, 0xda, 0xaa, 0xf5, 0x9e, 0xde, 0xa8, 0xb6, 0x3a, + 0xfd, 0xe8, 0xec, 0x96, 0x38, 0x6a, 0x54, 0x9d, 0xf1, 0xc7, 0x76, 0x17, 0xaa, 0x29, 0x3d, 0xd2, + 0xa0, 0xb4, 0xbd, 0xf3, 0xcd, 0xc6, 0xf1, 0xde, 0x51, 0x7d, 0x0a, 0x35, 0xa0, 0xda, 0xdf, 0x3f, + 0xda, 0x31, 0x8c, 0xe3, 0x83, 0xa3, 0xfe, 0xe6, 0xde, 0x4e, 0xbd, 0xb0, 0xf9, 0xe5, 0xbb, 0x67, + 0x03, 0x87, 0x9f, 0x85, 0x27, 0x1d, 0x8b, 0x0e, 0xbb, 0xd2, 0x01, 0xca, 0x06, 0xdd, 0xe4, 0x77, + 0x98, 0x01, 0xf1, 0xba, 0xfe, 0xc9, 0x17, 0x03, 0xda, 0x4d, 0xff, 0x82, 0x74, 0x32, 0x27, 0xcb, + 0xf2, 0xe9, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc3, 0x96, 0x96, 0x5e, 0x5a, 0x12, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/event/event.pb.validate.go b/gen/pb-go/flyteidl/event/event.pb.validate.go index c1ffac146..b86f83b11 100644 --- a/gen/pb-go/flyteidl/event/event.pb.validate.go +++ b/gen/pb-go/flyteidl/event/event.pb.validate.go @@ -793,6 +793,83 @@ var _ interface { ErrorName() string } = ParentNodeExecutionMetadataValidationError{} +// Validate checks the field values on EventReason with the rules defined in +// the proto definition for this message. If any rules are violated, an error +// is returned. +func (m *EventReason) Validate() error { + if m == nil { + return nil + } + + // no validation rules for Reason + + if v, ok := interface{}(m.GetOccurredAt()).(interface{ Validate() error }); ok { + if err := v.Validate(); err != nil { + return EventReasonValidationError{ + field: "OccurredAt", + reason: "embedded message failed validation", + cause: err, + } + } + } + + return nil +} + +// EventReasonValidationError is the validation error returned by +// EventReason.Validate if the designated constraints aren't met. +type EventReasonValidationError struct { + field string + reason string + cause error + key bool +} + +// Field function returns field value. +func (e EventReasonValidationError) Field() string { return e.field } + +// Reason function returns reason value. +func (e EventReasonValidationError) Reason() string { return e.reason } + +// Cause function returns cause value. +func (e EventReasonValidationError) Cause() error { return e.cause } + +// Key function returns key value. +func (e EventReasonValidationError) Key() bool { return e.key } + +// ErrorName returns error name. +func (e EventReasonValidationError) ErrorName() string { return "EventReasonValidationError" } + +// Error satisfies the builtin error interface +func (e EventReasonValidationError) Error() string { + cause := "" + if e.cause != nil { + cause = fmt.Sprintf(" | caused by: %v", e.cause) + } + + key := "" + if e.key { + key = "key for " + } + + return fmt.Sprintf( + "invalid %sEventReason.%s: %s%s", + key, + e.field, + e.reason, + cause) +} + +var _ error = EventReasonValidationError{} + +var _ interface { + Field() string + Reason() string + Key() bool + Cause() error + ErrorName() string +} = EventReasonValidationError{} + // Validate checks the field values on TaskExecutionEvent with the rules // defined in the proto definition for this message. If any rules are // violated, an error is returned. @@ -866,6 +943,21 @@ func (m *TaskExecutionEvent) Validate() error { // no validation rules for Reason + for idx, item := range m.GetReasons() { + _, _ = idx, item + + if v, ok := interface{}(item).(interface{ Validate() error }); ok { + if err := v.Validate(); err != nil { + return TaskExecutionEventValidationError{ + field: fmt.Sprintf("Reasons[%v]", idx), + reason: "embedded message failed validation", + cause: err, + } + } + } + + } + // no validation rules for TaskType if v, ok := interface{}(m.GetMetadata()).(interface{ Validate() error }); ok { diff --git a/gen/pb-go/flyteidl/service/admin.swagger.json b/gen/pb-go/flyteidl/service/admin.swagger.json index 674d87a91..aed368ddf 100644 --- a/gen/pb-go/flyteidl/service/admin.swagger.json +++ b/gen/pb-go/flyteidl/service/admin.swagger.json @@ -7280,6 +7280,20 @@ }, "description": "Flyte Workflow Structure that encapsulates task, branch and subworkflow nodes to form a statically analyzable,\ndirected acyclic graph." }, + "eventEventReason": { + "type": "object", + "properties": { + "reason": { + "type": "string", + "title": "An explanation for this event" + }, + "occurred_at": { + "type": "string", + "format": "date-time", + "title": "The time this reason occurred" + } + } + }, "eventExternalResourceInfo": { "type": "object", "properties": { @@ -7502,7 +7516,14 @@ }, "reason": { "type": "string", - "description": "An optional explanation for the phase transition." + "description": "An optional explanation for the phase transition.\nDeprecated: Use reasons instead." + }, + "reasons": { + "type": "array", + "items": { + "$ref": "#/definitions/eventEventReason" + }, + "description": "An optional list of explanations for the phase transition." }, "task_type": { "type": "string", diff --git a/gen/pb-go/flyteidl/service/flyteadmin/README.md b/gen/pb-go/flyteidl/service/flyteadmin/README.md index a60fe53cb..14173a799 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/README.md +++ b/gen/pb-go/flyteidl/service/flyteadmin/README.md @@ -308,6 +308,7 @@ Class | Method | HTTP request | Description - [CoreWorkflowNode](docs/CoreWorkflowNode.md) - [CoreWorkflowTemplate](docs/CoreWorkflowTemplate.md) - [DataLoadingConfigLiteralMapFormat](docs/DataLoadingConfigLiteralMapFormat.md) + - [EventEventReason](docs/EventEventReason.md) - [EventExternalResourceInfo](docs/EventExternalResourceInfo.md) - [EventNodeExecutionEvent](docs/EventNodeExecutionEvent.md) - [EventParentNodeExecutionMetadata](docs/EventParentNodeExecutionMetadata.md) diff --git a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml index 69a279c1f..dc5adf6fd 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml +++ b/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml @@ -99370,6 +99370,16 @@ definitions: simple: {} structure: tag: "tag" + eventEventReason: + type: "object" + properties: + reason: + type: "string" + title: "An explanation for this event" + occurred_at: + type: "string" + format: "date-time" + title: "The time this reason occurred" eventExternalResourceInfo: type: "object" properties: @@ -99584,7 +99594,13 @@ definitions: \ when metadata changes across the duration of an individual phase." reason: type: "string" - description: "An optional explanation for the phase transition." + description: "An optional explanation for the phase transition.\nDeprecated:\ + \ Use reasons instead." + reasons: + type: "array" + description: "An optional list of explanations for the phase transition." + items: + $ref: "#/definitions/eventEventReason" task_type: type: "string" description: "A predefined yet extensible Task type identifier. If the task\ diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_event_event_reason.go b/gen/pb-go/flyteidl/service/flyteadmin/model_event_event_reason.go new file mode 100644 index 000000000..2f8537678 --- /dev/null +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_event_event_reason.go @@ -0,0 +1,19 @@ +/* + * flyteidl/service/admin.proto + * + * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + * + * API version: version not set + * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) + */ + +package flyteadmin + +import ( + "time" +) + +type EventEventReason struct { + Reason string `json:"reason,omitempty"` + OccurredAt time.Time `json:"occurred_at,omitempty"` +} diff --git a/gen/pb-go/flyteidl/service/flyteadmin/model_event_task_execution_event.go b/gen/pb-go/flyteidl/service/flyteadmin/model_event_task_execution_event.go index f394fdf30..dac65497a 100644 --- a/gen/pb-go/flyteidl/service/flyteadmin/model_event_task_execution_event.go +++ b/gen/pb-go/flyteidl/service/flyteadmin/model_event_task_execution_event.go @@ -37,8 +37,10 @@ type EventTaskExecutionEvent struct { CustomInfo *ProtobufStruct `json:"custom_info,omitempty"` // Some phases, like RUNNING, can send multiple events with changed metadata (new logs, additional custom_info, etc) that should be recorded regardless of the lack of phase change. The version field should be incremented when metadata changes across the duration of an individual phase. PhaseVersion int64 `json:"phase_version,omitempty"` - // An optional explanation for the phase transition. + // An optional explanation for the phase transition. Deprecated: Use reasons instead. Reason string `json:"reason,omitempty"` + // An optional list of explanations for the phase transition. + Reasons []EventEventReason `json:"reasons,omitempty"` // A predefined yet extensible Task type identifier. If the task definition is already registered in flyte admin this type will be identical, but not all task executions necessarily use pre-registered definitions and this type is useful to render the task in the UI, filter task executions, etc. TaskType string `json:"task_type,omitempty"` // Metadata around how a task was executed. diff --git a/gen/pb-go/flyteidl/service/openapi.go b/gen/pb-go/flyteidl/service/openapi.go index 500a0783b..4a41c73ba 100644 --- a/gen/pb-go/flyteidl/service/openapi.go +++ b/gen/pb-go/flyteidl/service/openapi.go @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x5d\x23\xbd\xdf\xde\x6c\xdc\x71\xcc\xab\xb4\xf3\x41\x25\x4c\x1f\xca\x4d\xa7\xa0\x40\xca\xa2\xaa\xa6\xb3\xf5\x79\xf5\xbd\x24\xe6\x00\x32\x36\x7c\x1c\x73\x22\x03\x23\x3e\xf2\xb6\xb8\x84\x4e\x89\x96\x3e\x46\x4c\x93\x71\xe8\x70\x30\x00\xdb\x0e\x6f\x5b\x77\x1a\x09\x2e\xa5\x8d\xbc\x37\xed\x2c\xcf\x9f\xda\xa2\x96\x9f\x41\x09\x3f\xbf\xbe\x1a\xd7\xab\xfa\x05\xcf\x5c\x7d\x3f\xfb\xb0\x31\xc9\xbe\xb5\xa9\x95\xd5\xfc\x8a\xb5\x58\xa3\x9e\xdf\xf1\xe9\xc5\xb9\x2f\x62\x55\xe9\xba\x5e\xd0\x2f\x44\x56\x6f\x2f\xe9\x57\x9f\x71\x50\xdc\xaf\xd2\xc4\x92\xf2\x7e\xab\x37\xab\x1c\xef\xbb\x0d\x6c\x5e\x65\xeb\x57\xf2\x87\x32\xcd\xac\x0a\x4b\xdf\xd1\x36\xb5\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x76\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\xb5\xad\x58\xcf\xe3\x75\x6f\x61\xd2\x77\x11\xc6\xfc\x7a\x39\xcc\xc9\xa2\x88\xda\x93\x56\x76\x73\x25\xb8\x5b\xec\xfe\x13\xe2\x21\xe1\x5b\x37\x74\xdb\x24\x45\x0f\x1d\x25\x08\x96\x36\x1c\x03\x72\xf9\x2a\x79\x3e\x6b\x98\x87\xfd\x98\x4d\x36\xf0\xa1\x2f\xc2\x10\x5c\x35\xb6\xae\x58\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\x63\x7e\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\x01\x07\xa6\x67\x30\x8f\x49\x9a\x6a\x05\x1e\x54\x13\xc6\x0f\x79\xe6\x74\x96\xd2\x5b\x50\x41\x83\x4e\xf5\x8d\x15\x84\x2b\xe8\x2f\xd8\x21\xf9\x4c\xa5\xd2\x72\x45\x43\xac\xa6\x6b\x04\x24\x1e\xa8\xab\x35\x27\xf6\x86\x1b\x7d\x18\x7c\x77\x7d\x7b\x3f\x3c\x1b\x7d\x28\xa2\xf3\x5d\xfa\x99\x47\x84\x72\x00\xff\x9c\x8d\x98\x0f\xa8\xf5\x00\xc8\xb0\x97\x08\xc7\x71\x81\x6c\x60\x95\x48\x23\xb3\x2d\xe5\xc8\xc1\xa9\x58\x19\x4a\xbb\xa4\x99\x07\xc8\x41\xda\xd7\x93\xb5\xc4\x75\x56\x3a\x39\x26\x93\x6a\x49\xca\xcb\x8e\x2e\x9b\x10\xbb\x55\x19\x5d\x9b\x28\x07\x2e\xc8\xc8\xb3\xd3\x95\xe0\x76\x3e\xc6\xe6\x12\x5e\x8f\xdb\xb9\x0d\xd9\x60\x53\x3f\xd2\xcf\x24\xbe\x6d\x91\xaa\x76\x92\xd1\xd2\x29\x12\xb0\x71\x17\x72\x46\xd7\xd1\xf8\xfd\x54\x1e\xf4\x77\xdd\xd9\xd2\x75\x01\xc9\x56\xc0\xab\x02\xb6\xaa\x42\x18\x45\x44\x28\x4c\x19\x9a\xc2\xc1\x66\xd1\x02\x01\x60\x07\x01\x1f\xf6\x1f\x51\x4a\x19\x20\x07\x2c\x5b\xda\x87\xf2\x3c\xd6\x10\x5a\x2f\xcf\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\x83\x9f\x97\xca\xaa\x95\x16\x96\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xc6\x89\x26\x0b\x45\x1e\x6e\x2f\xb6\x92\xef\x9a\x9d\x65\xad\x18\xe1\xa1\x74\xd5\x8c\x88\xd0\xe5\xd3\x98\x44\xab\x50\x4c\xbb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x32\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\x76\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x8d\x93\x66\x87\xb2\x24\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\x47\xa6\x42\xfc\x40\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x11\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\x06\x37\xe7\x0d\x6b\x7d\x51\x75\x21\x7d\x59\xe5\x6c\x12\xef\xcd\xda\x35\x48\x52\x90\x9e\xb8\x17\xa8\x48\x76\xa6\xdb\xc1\x20\x19\xa7\xff\x4d\x39\x92\x60\x1f\xd0\x7a\x9b\x54\x86\x52\xda\xf1\x0a\x60\xde\xf5\x32\xf1\x8a\x65\x58\x13\xf4\x28\x1c\x90\x4d\x03\x09\x81\x7e\xea\x31\xc6\x07\x21\xf0\x0f\x37\x05\x73\x6d\x6c\xc1\xce\xc0\x90\x8a\xd9\x74\x41\x43\xfa\xd1\x50\xb4\x07\xcb\x00\xf8\x0f\x57\x90\xd1\xc5\x06\xdb\xdc\xf5\x70\xba\x21\xb5\xad\x07\xa0\x54\x8c\xcf\x99\xbf\x2d\x16\x35\xce\xb0\xb5\x3b\x80\x12\xe5\x2a\x25\x34\x15\xd6\x3b\x1a\xb1\x20\x60\x45\x1a\xb5\x47\x9f\x11\x57\x9c\x04\x2a\xde\x32\x00\xb6\x86\x24\x1d\x2f\xfc\x94\x76\xa0\x9a\x22\xaf\xe6\xe5\xf2\x22\xb5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\xa0\x33\xad\xab\x38\x04\xc7\x6a\xa5\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xcd\xaa\xfe\x39\x23\xd1\x26\x10\x32\x37\x58\xe0\x94\x28\x22\x96\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x2a\x48\x18\x3f\x8b\xb5\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x35\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x6d\xe7\xf4\x3a\x50\x28\xf7\x35\x50\x91\x52\xb8\xd0\x9e\x60\xa0\xac\x1e\x65\x1b\xf8\xc9\x2a\x5e\xba\x13\xde\xed\x32\x1c\x5c\x0a\x6d\xe5\x50\x95\x72\x27\x80\x4a\x40\xa5\x32\x38\x20\xcd\x00\x26\x20\xb4\x34\x45\x48\x06\x6e\x3f\x0b\x6f\x57\x18\x74\xad\x64\x55\x2d\x2e\x55\x59\xae\x15\x3c\x6e\x57\xe0\x0e\xbd\x44\xb3\x6b\x89\x66\x15\x29\x97\xa2\x6b\x35\x75\x12\x51\xc1\x99\xb1\x45\x9f\x2d\x40\x40\x79\x82\x90\x7b\x64\xaf\x48\x5b\x39\x16\xae\x7e\xca\xfc\xbf\xca\x1c\xdc\x11\x75\x48\xaa\x4d\x49\x95\x47\x81\x0b\x0a\x3c\x50\x49\x28\x0d\xd8\xb8\x1a\x18\xad\x09\x83\x34\x56\xfe\xf3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x07\xf0\x16\xc0\x20\xc8\x7c\x92\x52\x85\x70\x30\xc3\x92\x49\xf2\xc0\x9e\x67\xfd\x01\xcc\xb8\x31\xcf\xbe\x09\xa2\x67\xc5\xa1\xd9\xc0\xbe\x56\x34\xb2\x6d\x2a\x7d\x10\xd3\xfc\xb2\xc9\xf4\x81\xc6\x13\x6a\x98\x8d\x67\xae\xcf\xa6\x47\xcd\xd6\x06\x0b\x1a\x0a\xc8\xae\x54\xaa\xca\xdd\x62\x0d\x3d\x2b\x32\xe9\x8b\x8d\xe8\x94\x4a\x5f\xbc\xbe\x8b\x5c\xfa\xb6\x32\x65\xcb\x72\x2b\xdd\x27\x2d\xf6\x6f\x97\xb3\xab\xb8\x0b\x9c\x0f\x25\xa5\x9b\x56\x49\x69\xdf\x50\xcd\x8a\x84\x80\xcd\xc3\xcb\xd7\x51\x07\x8b\xfc\xac\x90\x8a\x82\x74\xcb\x32\x26\x0c\xa9\x72\x7e\xc6\x15\xe4\xd4\x44\x50\xc2\xbd\x96\xe7\x39\x62\xcd\x12\xc8\x72\x9e\xb8\x6d\x8a\xc6\x4e\xd1\xcf\x82\xf3\xe7\x66\x61\x2d\x5a\x3f\xf9\x20\x37\xa3\x2c\xdb\x62\xec\x55\x11\xb3\x70\xf1\xb5\x05\x27\x69\xc1\x63\x93\x84\xe3\x86\x53\xd9\x3c\xf4\x5a\x02\xc5\xca\x73\x61\x2f\xdd\x1d\xaa\x76\x35\xee\xdc\x39\xdf\xc4\xcb\xc8\x96\x1b\xbb\x80\x69\xa7\xc6\x57\x3c\xb5\x9b\x14\x99\x05\x50\xd1\x9d\x41\xa1\x56\xd1\x09\x74\xe3\x07\xe0\xdd\xb5\x43\xc7\x26\xd2\xc5\x03\x74\x57\xb6\xa4\x34\x61\x5b\xbc\xff\x05\x26\xbd\x6e\x61\xe0\xc0\xdb\x28\x6c\xb4\x2f\x0d\xed\x06\x50\x11\xd8\x06\x49\x56\xf8\xb0\x17\xed\x72\x16\x13\xc1\x08\x56\xf3\xd7\xcb\xb1\x38\xdd\xd6\x38\x1d\x8c\xef\x65\xf3\x2d\x4e\x77\x52\x15\x3e\x1c\x6e\xb9\x42\xfa\xca\x71\xea\xd7\xbb\xd8\x89\x6c\xe8\x81\xaf\x11\x5c\x53\x1c\x1b\x8c\x86\x01\x04\xcd\x3a\x54\xba\x55\x1a\x46\xb3\x32\xf7\x32\x09\x29\x0d\x56\x9f\x5a\x2a\x8a\x3e\xec\x61\x65\xe5\x15\x4b\xf2\x45\x64\x7e\xbc\x7c\x32\xc2\xb2\x1a\xce\x79\x90\x9f\x00\x85\xb4\x15\xa6\xcc\x72\xaf\x65\x29\x09\x5a\xa2\x4c\x71\x53\x16\xc2\xde\xe7\xb7\x7c\xf1\xe9\x2d\x7d\xb2\x43\x9f\xec\xd0\xb0\x47\x7d\xb2\x03\x42\xfb\x96\xec\xb0\x4a\x01\x5d\x66\xfe\xf4\x1e\x39\xa8\xb5\x59\x2a\x70\x63\xf6\x77\x85\x16\xb9\x79\x40\xbf\xb3\x20\x86\xd1\x50\xf6\x17\xfb\x43\x63\x40\x54\xed\xb3\xea\x6c\x43\x6b\x26\x5b\x54\x9d\x02\x58\xc4\x89\x45\xa1\xb3\xe1\xca\x65\xeb\xd3\x32\x43\xe9\x88\x7d\xcf\x9f\xc9\x13\x11\x07\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xe8\x18\x38\x08\x25\x40\x73\x13\x05\x81\xd1\x15\x4e\x49\x6c\xea\x1d\x06\x41\x8d\xd6\x5c\x6b\x1d\xad\x4d\x60\xab\x80\x1b\x6a\xb6\xc1\x45\x4d\x8c\x98\x09\x34\x34\xc1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x37\xf0\xef\x8e\xd0\xbd\xbe\x9f\xa8\x2c\x8f\x37\xc0\x5e\x6b\x1b\xdb\x88\xcd\x04\xcf\x33\x6f\x41\xe3\x13\x53\xf8\xd6\xc4\x3e\xd5\xdd\xc0\x30\x18\xe7\x03\x8e\x70\xac\x35\xf1\xe5\x84\xf3\x26\x31\xa8\x1b\x01\x18\x85\x04\xa4\x8f\xa1\x0f\xac\xb3\x81\xee\xc6\x7b\x1b\xc0\xb6\x2c\x83\x61\x7f\x21\xd7\xf2\x19\x91\x60\x13\xf2\x36\xf7\x52\x16\x79\x19\xa9\xa0\x71\x9c\xcb\x2c\xa2\xde\x6b\xe1\x2c\xfb\xcd\x20\x08\x45\xe7\x36\xe2\xcb\xa4\xa8\xda\x7b\xe2\xc5\x6c\xa5\x9d\x63\x67\xdb\xf8\xc5\x4d\x2e\x32\x0e\x92\x58\xb2\x70\xa0\x0d\x16\xe7\x2d\xe3\x59\x6e\xa2\xda\x68\x18\xe4\xd4\x48\xd9\x54\xaa\x4b\xac\xa2\xb9\xe6\xdc\x05\xde\xd9\x8e\xa2\xfd\x0a\xae\xfc\xb2\xf6\xd3\x86\x19\x9c\x86\xbd\xb7\x38\x14\x3a\xd8\xd3\xcd\xbd\xef\x82\xeb\x9d\x24\x91\xea\xfe\x8c\xd3\xcd\x96\xb3\x0e\xac\xa2\xee\x13\xfb\x44\x4f\x74\x15\x15\xad\x1a\x7f\x37\xda\x2a\xd7\xdb\xda\x79\x1c\xe1\x16\x00\x32\x67\x16\xae\xab\x78\xd1\xd6\x67\x6d\x71\xfe\x0b\xba\x59\x0e\x90\xc5\xc8\x7f\xd2\xe2\x88\xb7\xb7\xa6\x38\xd3\x4a\x84\xe2\xfa\x96\x14\x33\x23\xc7\x9a\x28\x59\x84\x51\x2e\xa8\x3b\xfb\x95\x8c\xf0\x76\xea\x00\xfb\xe4\x71\x58\x4f\x29\xc2\x41\xa9\x39\xe3\xee\xc7\x91\xca\xb1\x0f\x4b\x04\x9a\x70\x25\xd0\x4d\xf6\xbb\x73\xab\x0b\x27\xde\x35\xec\xe9\x4a\xc2\xde\x62\x97\x71\x13\xba\x61\xa7\x93\x46\xd9\x2c\x80\x46\x6c\xb6\x11\x77\xa9\x7c\xd0\xf8\x65\xb7\xea\x0d\x8d\x9f\x3a\xd9\x67\x93\x6f\x97\x40\x37\x6d\x1c\x99\x5d\x8a\x72\xb7\x61\xb0\x56\x7a\x0a\x41\x2b\xad\xfd\x0e\xb0\x67\x29\xb8\xe9\xb1\x95\xa6\xfe\xcb\xff\x65\x2a\x65\x99\xa5\xf9\x2f\xc4\xc5\x88\x99\xdf\x0f\x7c\x95\x0a\xfd\x42\x01\xff\x8a\x53\x52\x00\x64\x8a\x32\x94\x1e\x00\x8a\x58\x28\x34\x03\xf5\xeb\x41\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xe8\x01\xcf\xcc\x52\xcc\xf0\x0c\x80\x85\x0f\x20\x2e\x0e\xc4\xd5\x42\x15\x31\x24\x6d\xaa\x1d\x02\xb7\xd2\xcc\xd2\x66\xdb\x16\x55\x7f\xa1\x4f\x23\xca\x5a\x5c\xd3\x22\xb8\xa2\x99\xfa\x6f\x6d\xff\x9b\x49\xec\xf7\x83\xbb\x1f\xc6\xb7\xc3\xbb\xeb\x87\xdb\xd3\x92\xd8\x7e\x7a\xf1\x70\x77\x3f\xbc\x6d\x7c\x56\x64\xaa\xfe\xf5\x61\xf8\xd0\xf2\xc8\x35\x70\x31\xf8\x6e\x58\x2a\xa1\xfd\xd7\x87\xc1\xc5\xf9\xfd\xcf\xe3\xeb\x8f\xe3\xbb\xe1\xed\x8f\xe7\xa7\xc3\xf1\xdd\xcd\xf0\xf4\xfc\xe3\xf9\xe9\x40\x7f\x19\xbe\x7b\x73\xf1\xf0\xe9\xfc\x6a\xec\x82\x8e\xc3\x47\x3f\x5d\xdf\xfe\xf0\xf1\xe2\xfa\xa7\x71\xd0\xe5\xf5\xd5\xc7\xf3\x4f\x4d\xb3\x18\xdc\xdd\x9d\x7f\xba\xba\x1c\x5e\x2d\x2f\xd5\xdd\xbc\x1a\xad\x55\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xae\x8b\x1b\x43\x8f\x87\x07\xee\x2f\x53\x58\xfb\x50\xb3\x40\xe7\x15\x2b\xb8\xc7\x88\x79\xb7\xa5\xbf\x54\x15\x9e\x49\x97\x78\x5c\x1a\xed\x09\x1a\xc0\x59\x01\x85\xa1\xd4\x29\xe4\x35\xf8\x91\x3a\x47\x37\xd0\x61\x42\x53\x0a\x3e\x6f\x74\x88\xaa\x1b\x5e\x6e\xd0\xce\x09\x86\x60\xbd\x76\xf1\xb2\xd3\x20\xab\x39\xcd\x40\x29\x27\xc8\x71\x68\x62\xcc\x09\x06\x79\x76\xc1\x70\x4a\xa3\x6a\x02\x06\x80\xaf\xa2\x02\x68\xa4\xda\x62\x89\xc0\xca\x2d\xcf\x09\xfa\xe1\x2f\xc5\xa0\xc0\x83\x61\x35\xef\xbc\x56\x4f\xcf\x3e\x10\xb9\x59\xd5\x55\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\xeb\x76\x83\xbb\x29\x67\x01\xd8\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd0\x1d\x00\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xc5\xf7\x09\x99\xe3\x27\xca\x5d\xf1\x0a\x53\xe3\x03\xd6\xd1\x8a\x56\xe8\x10\xb5\x1e\x94\x13\x34\x88\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xb0\x3c\xec\x10\x1f\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xbb\x87\x72\xa9\xb3\xc3\xf2\xdd\xbb\xc5\xf5\xaf\x57\x70\xec\x48\x79\xbc\x91\x30\x70\x8f\xe5\xa3\x63\xcd\xab\x04\x02\x07\xaa\xb3\x5d\x8f\x16\x5d\xa7\x6b\xa7\x7e\x65\xc7\x70\xd0\x36\xeb\xb3\x15\x13\x7a\x45\x97\x6e\xc6\x49\xa5\x70\x57\xe7\xfe\x4a\x85\xbf\x1a\x3b\xdb\xa9\xb7\xa7\x59\x1a\x83\x23\x39\xf6\xf4\xbf\xc6\x3c\x6e\xe0\xd3\x6b\xff\xe5\x52\x91\x6d\x1c\xac\xdb\xba\x3e\xa0\x5a\x8a\xae\xf5\x03\x2d\xa5\xc3\x1d\x81\x3b\x75\x17\x06\xa1\xec\x02\x8d\xc0\xdd\x87\x29\xb3\xc5\x78\x88\xf7\x47\xb9\xf2\xd3\xfa\x1c\xfb\x02\x71\x78\xc2\x9f\x4a\xca\x65\x4a\xa4\xc4\x2d\x70\x25\x81\x49\x6c\x1b\xc6\xe0\x4f\xa8\xfd\xb0\x23\x3d\xb9\x33\x79\xaf\xbf\x5a\x66\xf4\xb9\x0d\x35\x63\x37\x51\x2d\xb0\xc6\x2e\xce\x16\x5d\x9b\x6c\x3b\xcd\x5f\x0e\x8a\x50\x1a\x2e\x82\x08\xa3\x36\xf7\x4f\x47\xb3\x5a\x75\xc1\x1a\x6b\x2c\x85\x2e\xbc\xf5\x23\x70\x82\xd6\x37\xc6\xc3\xb6\x7e\x15\x5c\x5e\x9f\x35\xa8\xae\xe4\xef\x0c\xeb\x4f\x47\x3c\x4d\x8d\x5c\x50\xb2\xa5\x1e\x20\x6c\x92\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\x71\x30\x62\xcf\xc1\x86\x94\xc2\x80\x07\x61\x4b\x80\x25\xfa\x59\x1f\x37\xfa\x54\x0a\xae\x06\x91\x91\x42\xa4\x6f\x40\x08\xc6\x21\x58\x14\x8f\x5a\x41\xe0\xc1\x7e\x6d\x41\xea\x1b\x54\x0a\xac\xac\x6f\x5b\xbd\x40\x3f\xb7\xa0\x4c\xdf\x16\x9a\x72\xd7\x21\x04\x95\x02\x9b\x46\xb0\x83\x42\x81\xaf\x0a\xee\xed\x93\x35\x4d\x6e\x6f\x3a\xb1\x08\x15\x7a\xba\x6e\xb5\x7f\xef\x66\xf4\x7b\xe3\x77\xc8\x5b\x20\x4d\x82\xd6\x3c\xbe\x37\x3a\xd4\x32\xab\x4b\xb5\xb7\x81\x18\x12\x1d\x1a\xcc\xc0\xaf\x20\xce\x72\x70\x73\xfe\xd5\x01\xfa\x2a\xcc\x35\xfb\x6a\xa3\x03\x68\xc7\x6d\x8b\x05\x82\x36\x55\x4a\x38\x28\x1f\x3b\xd8\xab\xca\x49\xb4\x7b\x66\x0f\x22\x6a\x3b\x87\xfa\xcb\xd2\x37\xe0\x9c\x86\xe2\x77\xc6\x7f\xeb\xc3\x9d\xad\x0b\xc8\xc8\xb8\x54\x36\xac\x5d\x3c\x62\x93\x45\xd5\xc9\x73\xe0\xbd\x3c\x9d\x4f\xe9\xd6\x05\xdd\x74\x7b\xf5\xe4\xe4\x1d\x87\xe1\x2e\xbf\x0f\x56\xa4\x3b\x0f\x4c\xc4\x35\x9f\x06\x5c\xac\x2d\x4a\xa1\x8f\x5f\x6f\x9a\x55\xc9\x5e\xe6\x16\xb3\x71\x53\x56\xc9\x3f\xef\x8d\xdc\x3a\x04\x7d\x0f\x9a\x56\xc4\xc6\xfb\xb7\x08\xd7\x3d\x95\xbd\x2c\x95\xed\x22\xdf\xa1\x3c\xb8\xf5\x2f\xd0\x53\x23\xc7\x05\xcd\x38\x83\xab\x56\x26\x3c\x83\x2f\x55\xfd\x5b\x5d\x2e\x77\x4d\x9f\x6f\xb0\x26\xab\x9d\xbe\x77\x26\x70\xc0\xb8\x5d\xeb\x63\xad\x0e\x75\xa0\x6c\x09\x22\x4e\x4d\x6e\xa3\xa2\x29\x39\x40\x9c\x25\x8b\x20\xd8\xc1\x9e\x57\x20\x37\x13\xa3\x34\x27\x54\xb8\x4e\x2c\xc2\xe0\x5a\xc9\xf0\x6b\x4a\xe3\x6d\x34\xb2\x45\xa4\xc9\xd5\xe0\x72\x78\x36\x1e\x5e\xdd\x9f\xdf\xff\xdc\x80\x1e\x59\x7e\xec\x00\x24\x83\x17\xee\x7e\xbe\xbb\x1f\x5e\x8e\x3f\x0d\xaf\x86\xb7\x83\xfb\x15\xe0\x92\xcb\x3a\x6b\x03\x2e\xcc\x65\x93\xfa\xb6\x0e\x78\xa1\x33\xf3\x36\xf4\x5e\x87\x98\x0c\x3a\xa1\xa4\x05\x66\xd2\x24\xfe\xb3\x98\x08\x14\x93\x27\x92\xf0\xac\x30\xab\x36\x2e\x58\x80\x3f\xd9\xd0\xfe\x32\x0c\x4a\x68\xb3\xba\xc6\x27\xc8\x54\x7a\x0b\x8a\xdd\xfa\x06\x41\xe4\xc3\x82\xb0\xaf\x14\x22\x9f\xb3\x84\x46\x54\x05\x89\x81\x5c\x58\xf7\x8a\x71\x1f\x42\x74\xea\x0a\xe2\xda\x59\x34\xca\xce\x75\xfe\xd0\x93\x5e\xd7\xf6\xfd\x89\xf2\x78\x68\x2b\xcb\x07\xed\x40\xb1\x6f\x71\x1a\xd7\xe0\xda\x36\x18\xdd\x4b\x98\x07\xea\x19\x3a\x36\xb9\xaf\x05\xca\xad\x79\x90\xab\x6f\xc3\x65\x71\x32\xa5\x73\xbd\x3c\x50\xa6\x1b\xa5\xbe\x71\xb8\x4b\xa9\xac\xe6\x0e\x70\x37\x6c\xec\xfa\x9a\x01\x0b\xb5\x6a\x31\xcc\xc4\x9c\x62\x24\x48\xca\x95\x56\xc0\x4c\x44\xc0\x81\x16\xaa\x28\x4e\xe8\xaf\x80\x50\x25\xc8\x51\x10\x41\xe1\x70\xbd\x0a\xf7\x81\x45\x8f\x38\x1a\xb1\xb3\xe1\xcd\xed\xf0\x54\x33\xa4\x23\xf4\x20\x01\x7c\xaa\x34\xf5\x33\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xb6\x60\x30\x22\x04\x17\xdd\xf9\x83\xef\x6f\x08\xdf\x35\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb5\x26\x72\x90\x33\xb0\xf3\x94\xac\x5b\xfc\x5c\x5a\x91\x10\x7c\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x7c\x67\xf7\xf9\x95\xfa\xbc\x81\x6f\x97\xcd\xf3\x1e\x42\xec\xa4\x2a\xb0\x40\x0d\x5c\xa8\xaf\x79\x53\x99\x67\xab\xa8\x28\xde\x02\xa8\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x38\x6c\x68\x69\xab\x07\xcd\xac\x7b\x54\xf5\x9a\xe1\x94\xe7\x0c\x94\x06\x08\x63\x6d\x18\x8c\xcc\x08\x53\x2b\x06\xf3\x56\x30\x2c\x95\xa1\xee\x2f\x12\x4b\xc3\x40\xdb\xc0\x58\x9a\xfc\x49\x50\x78\x79\xbd\x6b\xd9\x05\xe5\x95\x9c\x4a\xfa\x50\xf9\xfb\xb9\x59\xcb\xc6\xf2\x71\xeb\xee\xee\xb1\x7c\x5c\xdd\x55\x4c\xa2\xc7\x75\x2f\x9b\x6a\x66\x66\x62\xeb\x56\xd7\x8c\x7d\x0b\xfd\xd4\x16\x66\x81\x72\xe5\xd1\x23\xfa\xfe\xfe\xf2\x02\x4d\xa9\x96\x7b\xf5\xb5\x72\x85\xb5\x8c\xfd\x20\x12\x67\x17\xb6\xb6\xd5\x5c\x24\xfe\xee\x85\x8d\x77\xa2\x54\x20\x25\xe8\x1b\x0d\xcf\x88\x33\xf6\x0a\x8b\xb5\x57\x29\xcc\x22\x30\x8b\x79\x6a\xe6\x71\x2c\xf3\xe9\x94\x7e\x3e\x52\x58\x7c\xd3\xb2\x1e\x26\xaa\x62\xfc\x77\x3e\x19\xeb\x11\x6d\x79\x11\x37\x35\x87\x6c\x39\x65\xbf\x6c\x76\x66\x67\xe6\xdd\xff\xcb\x27\x90\xeb\x9e\x09\x0e\xf8\x7f\xe0\x9d\xb3\x91\x0a\xf6\x15\x47\x49\x47\xc8\x25\x50\x95\x20\x4e\x22\x2e\x04\xb1\x29\xf2\xa6\xb2\x68\x86\x85\xa2\x60\xad\x75\x10\x29\x25\x6c\xfc\x62\x8b\xc2\x82\xdf\x73\x5c\xe0\x50\x4f\x08\x01\x07\x4f\x46\x93\xf5\x94\xde\xd3\x92\x6f\xb2\x72\x02\x6d\xe4\xa9\x45\xcd\x04\x83\xcc\x4a\x11\x6b\xf8\x44\x98\xda\x89\x7e\x02\x4d\x34\x24\xed\x77\xf3\x32\x98\x02\x9f\xe7\x67\xc5\xe5\xe6\x42\x7a\xc3\xa8\x26\x25\x30\xdc\xf3\x36\x51\xca\xba\xd4\xdb\x1c\xfd\x4f\x9d\x7d\xc7\xf0\x6a\x7d\x5d\x56\x84\xc6\xdb\xd5\x2e\x0a\x7d\x17\x61\xad\x0e\xd8\x7f\x43\x18\x1f\x49\x8c\x15\x23\x80\x8f\xb0\xca\x69\x75\xcf\x4d\x9f\x9a\xb6\x2a\x5d\xae\xdc\xf2\x0d\x30\x6b\x4a\xcd\x7c\x22\x90\xd2\xb9\x8b\x40\xf4\x75\x52\xf7\x61\x20\x0f\x22\x81\x10\xea\xa5\x56\x2c\x53\x64\x5c\x73\x3e\x2f\xd9\xe1\x0e\x32\xba\x19\x8c\x16\x1a\x49\x26\x48\xa4\xaf\xb2\x13\x74\x93\x10\x2d\x79\xe5\x5a\xfa\xca\x93\xc4\xe1\x7b\x2d\x97\x0e\xd7\xc2\xa4\x7b\xf1\x79\x05\xba\xc7\x92\x89\x39\x7c\xbb\xe5\x33\x0b\xd6\x60\xf7\x80\x0b\xc1\xfa\x82\x09\x19\x0c\x89\x65\x2d\x12\x38\xfc\xc2\xc4\xcd\x82\x29\x09\x97\x2e\x32\xfa\xab\x66\xbf\x82\xc8\x39\x6f\x4d\x72\x0c\x67\xfb\x32\x73\x70\x4b\xf9\x82\x93\x70\xf7\x61\x5b\x5c\x75\x07\xb9\xa6\x72\x07\x96\x44\x9c\x65\x53\xf4\xb5\x1f\x7c\xf4\x87\x45\x5b\xb5\x77\xab\x1d\x1a\xdc\x92\x85\xa9\x2d\x44\x3e\x2b\x5c\x17\x85\x32\xb3\x30\xbe\x57\xff\x79\x61\x40\x2e\x52\x02\xa8\x92\x45\xcd\x39\xa4\xef\xda\xb6\x2d\xd6\xf3\x1c\xe7\x62\x2d\x48\x8a\x02\xb3\x7c\x1d\xce\x6d\x93\x51\x8a\x61\xe9\x45\x68\x66\x97\xb6\x94\x04\x88\xd1\x36\xd4\x48\x96\x70\xe0\x2c\xd9\x98\x65\x6c\x54\xf1\xda\x99\xf2\xb6\x6e\x35\x90\x92\x0b\x51\xe6\xa5\xbc\x6b\x25\x0a\x2c\x4d\xa0\x47\x16\x5b\x1f\x59\xcc\xd6\x15\xf1\xb4\x07\x38\x80\x4a\x40\xe2\x7f\xe1\x40\xab\x0a\x0e\xd6\xe8\xbd\x2a\xf3\xa9\xb4\x3b\x9d\xd2\x9c\x4a\x5f\x68\x5e\x72\xb6\xa5\x07\x4e\x4f\x66\x31\x86\xc4\xd1\x6d\xa2\x70\x4a\xf3\x37\xde\x03\x68\x93\xc4\xc8\xa0\x17\x18\xdc\x63\xbb\x76\xde\x73\x92\x61\x41\x98\x1a\xb1\x5b\x3d\x0a\xf3\x45\x11\x89\xe1\xe2\x70\x1c\x16\x3d\x54\xac\x9d\x22\x6c\xbf\x82\x45\x6f\x0b\x84\x93\x63\xf3\x12\xa8\xa6\x2f\x98\x64\xff\x9d\x79\xc7\x60\x1e\x58\xcc\x1f\x3d\x55\x3a\x2d\xd4\x78\x2d\x40\x46\x73\x0a\x90\x03\x31\x91\xf6\x42\xa2\xca\x62\x4a\x78\xf1\x3b\x27\x0e\x7d\x19\x3e\xf3\xfc\xab\x89\x61\x3b\x43\x01\x73\x06\x3a\x39\x62\x41\x1f\x4b\xc0\x3a\x8d\xb2\xbe\xa1\x2a\x01\xfb\x4c\x63\xef\xf8\x82\x7f\x9a\x1d\xe2\x82\xce\x28\x0b\x4a\x26\xd9\xe9\xa5\x38\x03\xf3\xae\x39\x83\x7c\xea\xef\xb4\x7b\x9b\x65\x70\x04\x23\xfe\x9f\xff\xfe\xdb\x11\x6d\xf3\x7e\xc8\xb1\x5d\x81\x7d\xd8\xc9\xf5\xb6\x25\xdc\xf9\x00\x45\xa4\x05\x9d\x22\xd0\x69\x65\x29\x73\xa2\xf8\xd5\x5e\x6e\x9a\x68\xb8\x9a\x1b\x77\x6f\x99\xdc\xc1\x37\x22\xf2\xe5\x55\x04\x02\x16\x57\x04\x04\x14\x5e\xdf\x20\xe8\xd6\xd5\x88\x30\xc1\x92\xba\xfd\xca\x85\x52\x61\x50\x01\x98\xdf\x36\xc1\x89\x73\x2c\x5f\x2e\x02\xa5\xb1\xb6\x91\x31\x1a\x87\x77\xe4\xaa\x58\x14\x33\x48\x93\xd4\xa8\x77\x25\x97\x44\x98\x03\xed\x51\x9f\x2c\xf1\x84\x50\x85\x10\x8a\xb8\xc2\xa5\x46\x52\x4c\xd7\x0a\x9b\xd7\xef\x37\x03\x29\x96\x6c\xea\x78\x46\xc4\x38\xce\x4b\x31\xd2\xab\xda\xbe\xd1\x1f\x9d\xe5\x6a\xb1\xba\x7d\x99\xe0\x7a\x6d\x97\x65\xe0\x95\xfa\xfd\x96\x66\x57\x0b\x86\x41\x24\x4b\x59\x38\x6c\x81\x86\x24\x15\x68\x48\x1b\x5a\x59\xb2\x04\xc0\x45\xc3\x14\x20\xc7\x15\x0a\x83\xbd\x89\x0c\x80\x35\x8c\x1c\x4d\xf2\xc2\x72\xe2\x4b\x02\xc4\x47\x23\xf6\xd1\xd4\xd4\x00\x65\xc6\x0c\x20\x82\xbc\x16\xf2\x39\xe3\x92\x94\x12\xad\x1a\x60\xfe\x6d\xa2\xa4\x1d\x46\xb3\x4c\x5a\x7c\xb4\xbd\x48\xfa\xe6\x20\x9f\xf5\x0d\xaf\x4f\xb9\x99\x02\xb7\x92\x7a\x22\x9a\x51\x4d\x3b\xe3\xc6\x93\xf6\x72\xa5\x66\x8b\xd0\x25\x80\x7b\x52\xc9\xe2\x00\xf9\xe9\x55\x08\x22\x21\x4f\x04\xac\xc6\x30\xc6\xb0\x98\x43\xd9\x7c\xd5\xc2\x4e\x56\x1d\xa0\x22\xcb\x11\xd8\x02\x8a\xab\x23\x28\xe7\x82\x35\xd1\x62\x39\xcb\x65\xeb\x84\xac\xa6\xf8\x8b\x35\xa4\xd0\x41\x58\xd4\x62\x41\x14\x22\x9f\x15\xb1\x65\x2f\xef\x5d\xca\x5c\x3d\xca\x1e\x35\x67\xfd\xb4\x8b\x48\x2f\x5e\x80\x78\xe0\x12\xa5\x5d\x4e\x60\xec\xee\x7d\x9b\x23\x37\xc7\x2c\xb6\x89\x9f\x56\x96\xd6\x32\x05\xcc\xce\xd8\x96\x7c\x48\xbc\x4d\x5f\x0c\xd0\xc0\x4d\x9b\x06\xb6\x1c\x2e\x32\xa7\x17\x69\xc9\x1c\xa2\x08\xb8\xd0\x02\x6a\xce\x14\x4d\x34\x71\xd8\x31\x68\xad\x39\x67\x1e\x8f\x0f\x02\xb8\xdb\x20\xdf\xa8\x94\x94\xcd\xc6\x76\x25\x5d\x0e\x63\xb7\x8b\xa1\x4c\x53\x97\xa6\x29\xf3\xe3\x77\xae\xa1\xe5\xb6\x63\x43\xd6\x00\xc7\xe5\xb2\x27\x41\xb0\x66\xdc\x4d\xc6\xe2\xa8\xb9\xa4\xcb\x31\x8d\xcd\x52\x50\x53\x5d\x19\x26\xba\x8e\x79\x19\xc4\xba\x3a\x5c\x41\x71\x85\x48\x9b\x11\x69\xf2\x9c\x20\x20\x5d\xb5\xa4\x7c\xca\xd6\x54\xcf\x73\xe6\x45\x34\x5b\xdb\xc9\x27\xb4\x57\xb2\x46\xb1\xeb\xce\x46\xdd\xe3\x24\x99\xe0\xe8\xd1\x2b\x1b\x5e\xe5\xe6\xc2\x61\xe3\x6b\x01\x15\x8a\x7f\x19\xe2\xd2\x03\x8d\x40\xba\x09\x9d\x62\x06\xb0\xc6\x0e\xbb\xe8\xdc\xac\x9a\x45\x02\x33\x08\x45\x66\xf4\x26\x84\x3f\x26\x59\xc2\x17\x69\xcb\x7d\x56\xcd\x94\xdb\x26\x20\xa5\x2d\x51\x6f\xa7\x57\x59\x85\xe9\xad\x7d\x99\xd5\xd2\x6e\x76\x00\x9f\xb4\x06\x97\xfc\x94\xf0\x09\x58\x0e\xad\x96\xed\x52\x49\x82\x8c\x86\xea\x79\x5e\x37\xc1\xa5\x7a\x22\xa9\xcc\x12\xbc\x58\xd6\x83\x49\xad\x78\xd9\x7d\x33\xa9\xf8\xab\x8d\x60\xdd\x83\x92\x1b\x3f\x7f\x09\xa0\xde\x0b\x27\x09\x98\x77\x0d\xff\xaa\x18\x93\x4c\x4e\xdb\x91\xf1\xc5\x2a\x3e\x62\x0a\xcf\xdc\xe6\x5a\xe1\x92\x3f\x33\x22\xe4\x9c\x66\xa5\xa2\x80\x5b\x47\x41\x5b\x8a\xb6\xff\x31\x31\xbf\x6b\xf0\x4e\x9e\x1d\x1a\x20\x0e\x4d\x1f\x32\xc3\x51\x61\xfc\x8b\x12\x2c\x25\x9d\x2e\x02\xfc\x0c\x1f\x50\x0a\x59\x4a\x65\x6d\x39\xa8\xc3\xd5\xc4\x68\xcc\xf8\x76\x93\x40\xbe\x7d\xf2\xdc\x43\xf9\xf8\xd1\x38\x04\x2a\xd3\xf7\x49\x1d\x2c\xc5\xdd\xd4\x16\x34\xa5\x15\x70\xd5\x64\xca\x6f\x96\xf0\xbd\x14\xe3\xa6\xdd\x8c\x50\x08\x93\x76\xd8\x56\x91\xf1\xb8\x16\x21\xe6\x8b\x2a\x65\x0c\xc2\xe6\x6b\xc5\xc9\x99\x3f\x35\x71\x7a\x4c\x0c\x80\x0e\x28\x3e\x3e\x40\x72\x2b\x2c\xa9\x2e\x74\x71\x46\x12\xb2\x93\xc0\xe2\x0d\x88\xa4\xea\xb5\x0f\xc8\x63\x29\x69\x14\x58\xfa\xab\x8d\x0b\x1b\xc4\x3b\xb7\x20\xd2\x34\x0f\xfd\x27\x33\x50\x1b\xf2\xdc\xb4\x8b\x60\xff\x82\x55\xee\xaa\xbb\x34\x41\xdb\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\xfb\x48\x6a\x6f\x1c\x19\x5c\x1b\xd7\x27\xd2\x25\x8a\x61\xe5\x01\xd8\x88\x03\xd5\xf9\x74\x37\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe2\xde\xd7\xf1\x7f\x4f\x34\xb1\xb3\xbc\x86\x1d\xad\x7e\xf3\x21\x5f\xef\xd4\xde\x11\x25\xdd\x95\x50\x43\x0b\xb4\x9b\xb3\x87\x5b\xb0\x1f\xc7\xd2\x08\xae\x5f\xbc\xdc\xb2\x35\x16\x80\x1d\x99\xcd\x88\xff\x0d\x09\x54\x66\x8e\xb1\xfd\xc2\x67\xbf\x97\x70\x9f\x70\x09\x2b\xcf\xac\xd1\xdb\x73\xbd\x2a\x69\x7f\xe9\xa2\xd7\xfa\x34\x5e\x1d\x55\x41\xdd\xbd\x3c\xb8\x9e\x3c\xe8\xb0\x24\xf7\xf0\xf2\x6f\x3b\x06\xfb\x79\xff\xec\x81\x70\x58\xbb\x12\x77\x27\x22\xbe\x23\x32\xd9\x0b\x49\xb1\xb6\x15\xaf\x25\x2f\x1e\x3a\x30\x9f\x02\x1a\x67\x7f\xb7\x68\x3f\x4e\xf2\xad\x75\x03\xbd\xdc\x05\xbb\x9a\x5e\x76\x42\x1f\x80\x6b\x89\x21\xfd\x37\xb7\x85\x32\xe0\xf0\x06\x21\x63\x35\xdf\xc3\x8a\x60\x3c\x3b\xbc\x4e\x61\x78\xb5\xe5\x7c\x89\xed\xb5\xb9\x5e\x9d\x37\xf7\x25\x49\x6d\xdd\xb1\xec\x42\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x3e\x26\xb6\xdb\x2d\xda\x80\x20\xe3\xb6\x6c\x97\x87\xac\xa9\xba\xd9\xf6\xd9\xea\x2e\x95\x6d\x9c\x09\x32\xa5\x9f\x37\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\xd4\x4b\x03\xf7\x0c\xd4\x57\x0b\xe2\xf6\xec\x4a\xdb\x9a\x4a\x23\x56\x24\x00\xda\xec\xbf\x47\xb2\x40\x5c\x94\x7e\xda\x14\xeb\x70\xf7\xb5\xdd\xcc\xbe\xce\x95\xca\xe4\xc9\xf1\xf1\x8c\xaa\x79\x3e\x39\x8a\x78\x6a\xc2\xcd\xb9\x98\x99\x3f\x8e\xa9\x94\x39\x91\xc7\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\xd0\x63\xea\x7e\xa7\xf2\x96\x13\x2c\xb7\x8b\xec\x71\x99\x5a\x2f\x9c\xb1\x1b\x74\xe3\x72\x24\xf5\x37\x52\xe1\x34\x0b\xa3\x47\x4d\x75\x34\xa9\x70\x51\x93\x01\xd2\xef\xf4\x34\xd1\x1c\x67\x19\x61\xed\x66\x07\x93\x4f\xb9\x05\xeb\x71\x19\x99\x76\x84\xe4\x73\x96\x60\x56\x46\x19\x80\x02\x43\x82\x44\x84\x29\x9b\x01\x5f\xd4\x4b\x06\x6a\x34\x48\x37\x86\xff\xaf\x97\x71\x07\x73\xa4\xb2\xa8\x1c\xe6\x86\x63\xab\x78\xba\xda\x8e\x38\x58\xba\x6a\xe5\xd4\x62\xed\x88\x5b\xb5\x65\xb9\x78\x77\xf5\xfa\xd9\xeb\x57\x6e\x11\x9c\x8d\xc9\x67\xcd\xe4\xe4\xa6\xb8\x54\x0f\x92\x48\x34\xf8\xe9\x0e\xc9\x05\x53\xf8\xf3\x09\xba\xa4\x0c\x04\xd8\xef\x79\x2e\x24\x3a\xc3\x8b\x43\x3e\x3d\x4c\x39\x53\x73\x74\x09\xff\x6b\x7f\x7a\x26\xe4\x11\xfd\x4c\xb0\xb0\xfc\xc1\x56\x5e\xf3\x45\xbc\x35\x09\x89\x9c\x49\x44\x9e\xf4\x09\xfd\xc3\x7f\xa2\xd4\xb4\x7c\x82\xbe\x3d\xfe\xc3\x7f\xa2\xdf\xc1\xff\xff\xff\xd1\xef\x5a\x34\xfd\xf5\x90\xad\xa0\x3e\xef\x6d\xd9\x9d\x7b\x50\x59\xa9\x0d\x4a\x96\x9f\x0a\x5e\xec\x54\x63\xcb\x8f\x34\x7a\xe4\xd3\xe9\x58\x13\x86\xc9\x57\x1b\x63\x51\x43\x45\xde\x10\x26\x94\xda\x02\xcb\xa6\x60\x5b\x51\x2a\xc5\x76\x6a\x80\x0d\x1c\xbb\x96\x79\x51\x60\x16\x82\x88\x4a\x45\x7b\xa9\x84\xaf\x48\xac\xb9\xea\x3a\xa7\xc3\x59\xf7\x5c\x8e\xb3\xb3\xe0\x84\x40\x20\x61\xd1\x70\x1f\xf8\x17\x46\xb1\x9a\x40\x1f\xbb\x90\x8d\xc7\xa1\x16\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\xd6\x3a\x5f\x1d\x2a\x79\xc7\xc5\x56\xfa\xd6\x23\xa9\xc5\x6c\x77\x2c\x0b\xe4\x4a\xd5\x86\xe5\xeb\x21\x11\x9a\x0b\x0f\xd7\x6b\xec\x22\xb6\x78\xe0\x6a\x2b\x26\x15\x26\xb8\xac\xdb\xa1\xd7\x53\x3f\xf3\x9f\xac\x1a\x26\x44\x9a\xb9\xb7\x8b\xb2\x68\x30\x5a\x2d\x22\x69\x96\xd8\x30\xe2\x06\x4c\xbf\x55\x1b\x7a\xe7\x61\x1c\xa0\x71\x08\x7b\x84\x94\x0f\xe6\x24\x5b\x9b\x27\xdf\xbc\x9f\xb9\x88\xc8\x29\xdf\x2e\xec\x35\xa1\xac\x16\x2f\xdf\xbd\xe2\x8e\x5f\xbd\x0b\x5b\x5b\xc9\xc1\xde\xf2\xb8\x50\x16\x8c\x5b\xc0\x16\x5b\x08\xf0\x36\xcb\xb3\x01\xdc\xb6\x5d\x40\x3a\xd6\x4a\x00\x6c\xc1\xb5\x8d\xe1\xb8\x60\x78\xae\x82\x44\xa5\x70\x84\xc0\x9a\x17\x2e\x89\x5d\x83\xa0\xa2\xad\xc7\x11\x14\x43\x29\x22\x95\x2a\x45\xc7\xb1\xa9\x08\x22\x36\x84\xe4\x34\x75\x89\x0e\x90\xc0\x10\x94\xa9\xe6\xba\x3d\x49\xc4\xe1\x14\x47\x94\xcd\x0e\x02\x34\x46\x40\x46\x08\xaf\x83\x26\x22\xbd\xc7\xf2\x71\xb7\x81\x86\x5b\xd7\x69\xa4\x71\x51\x2b\xcc\xe2\xa7\x18\xc7\x06\xad\x41\xd1\x29\x2c\x1f\xdb\x00\x84\x6a\xe8\x65\x4b\x46\xe7\x97\xc2\x61\x9e\x2d\x1b\x9f\xcb\xb4\x26\xa1\x3e\x05\xa5\x09\x5c\xe5\x60\x8b\x65\xe8\x12\xdb\xb0\x07\x1b\xa9\x82\x78\x2e\x19\xbf\x9c\x73\xa1\xc6\x1b\xc2\x9f\x56\xb3\xc5\x19\x39\x4c\x00\xb7\x84\x3f\x11\xf1\x44\xc9\x73\x19\x45\x74\x1d\x5a\x34\x46\xb3\x20\xaa\x0e\x60\x26\xd3\x8c\x43\x0a\xcd\x14\xa5\x98\x2d\x0c\xa3\xd4\xcc\x05\xcb\x47\xe9\xeb\x95\x22\x99\xe2\x24\x39\x40\x82\xe4\xd2\xd4\xf1\x95\x24\x99\x1e\xba\x8a\x0f\x31\x4a\xf8\x8c\x46\x38\x41\x93\x84\x47\x8f\x72\xc4\xb4\xa0\xc0\x66\x86\x49\x65\x82\x47\x44\xca\x40\xb2\x2a\x92\xb6\x6d\x2a\x1d\x14\x2b\x55\x44\xa4\x94\x51\xa9\x68\xe4\x44\xa6\x02\x7b\xc1\x94\xcc\x8e\x30\x98\x84\x21\x31\x11\x86\xab\x25\x3d\x62\x30\x28\x73\x66\x6b\x03\xc1\x75\x6d\xa1\xe5\x5c\x90\x78\xdb\x01\xda\x01\x52\x9e\xa3\x90\xb1\x2a\x1f\xc8\x15\x47\xea\xd4\x7e\x06\xc7\x78\x19\x09\xdc\x96\x4f\x94\x27\x48\x7f\xd2\x4a\xe8\x3d\x10\x53\xee\x43\xe0\x4b\x92\x8b\x8f\x0c\xdf\x33\xe0\x2e\x18\x72\x0b\x5c\xd7\x2a\x9a\xd6\xab\x08\x22\x0f\x94\xa3\xaa\x7a\xcd\x29\x8b\x92\x3c\xf6\x05\x09\xb5\x08\xf0\xa4\x89\xc4\x2d\x8f\x5e\x7b\x2d\x28\x1c\x20\x2c\xd1\x33\x49\x12\xfd\x5f\x13\x01\x7f\xe8\xeb\x03\x68\x96\x6c\x6a\x38\x40\x27\x8e\x4b\xb7\x51\xd4\xde\x81\x30\xde\x60\x35\x37\xa9\xed\x29\x57\xa6\x16\xa4\x01\x61\x74\xf6\x2d\x83\xda\x37\x49\xf8\x04\x4e\x3a\xe0\x33\xba\xd4\xd8\x20\xad\x2e\x8f\x22\x42\x62\x12\xa3\xaf\x83\x83\xeb\x61\x17\xbe\x69\x46\x0b\x2c\xad\xc8\x1e\x60\x33\x56\x0d\x6b\xad\x08\x8d\xe5\x72\x66\x47\xe8\xa6\x82\x3f\x12\x96\x29\xc7\x55\x34\xaa\x83\xda\x16\xbe\x0d\x9e\x63\x65\x12\x2f\xb7\x43\x6b\xe2\x39\x96\xfa\xdc\x01\x9e\x63\x65\x9e\x2d\xb1\xfb\x7c\xf6\xa2\x39\xc7\x7a\x52\x17\xbc\x7b\x22\x98\xc1\xc1\x32\x77\x67\x89\x04\xdd\x81\x5c\x34\x11\xe2\x7e\x61\x55\x56\x8a\xfe\xbd\x2d\x56\x65\x65\x30\xfb\x8c\x55\x59\x19\xea\xfe\x62\x55\x36\x0c\xb4\x03\x56\xa5\x71\xee\x8f\x35\x51\x77\x63\x0a\x90\xd8\x32\xc9\xa7\x77\x90\xea\xbd\x74\x8c\xa7\x26\x70\xc0\x5c\x63\xee\x8e\xb6\xd0\xcd\x30\x5a\x9b\x03\xd9\x16\x0e\x55\x71\x42\xac\x4b\x7b\xde\xfb\x46\xa5\xd1\xd0\xd6\x33\xbb\x1f\x84\xd6\x6e\xb0\x43\x46\x38\xb3\x39\xe5\x6d\x15\x55\xf6\x27\x7b\x76\x33\x18\x50\x80\xda\x2b\xb1\xfc\x4e\x40\x59\x97\x95\xe2\x04\x73\xfe\x6c\x0b\x04\x01\x19\x1a\xa2\x6c\x25\x41\xe8\x74\x6c\x95\xb6\xb6\x95\xa3\x4c\x91\x59\x55\xa7\x2d\x0e\x0d\x65\xea\x4f\x7f\x5c\xc9\x89\x0c\x92\xa0\x53\x0f\x83\x12\x01\xde\xd9\x61\x9f\x91\x18\x45\x73\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x14\x53\xa7\x48\xe5\xd2\xb8\x96\xa8\x1c\xb1\x12\xf4\xe6\x11\xfa\x08\x75\x4f\x71\x9a\x69\xfd\xcb\xcf\x8f\x6a\x4a\x1a\xe5\xdf\x7e\xfb\x27\x82\xbe\x45\x29\xc1\xac\xa4\xc3\x82\xda\xa4\xaf\x3e\x80\xaa\x53\x73\x32\x62\x8d\x5b\x81\x86\x9f\x4d\x29\x25\x17\xef\x77\xce\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd9\x29\x7c\xd9\x18\x00\xeb\x6e\xec\x7a\x1b\x0f\xe0\x1e\x39\x94\xa4\x04\x61\xd4\xe0\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\x1e\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x0e\x80\x12\xf2\x68\x6e\x1c\xab\x5a\x67\xc1\xb6\x2e\xc3\x13\x95\xb9\x56\x68\xa1\x2d\x57\x06\x42\x2a\x6c\xa0\x97\xe6\x14\xfa\xd1\xea\x37\x81\xaf\xc2\x2c\x39\xd4\x4d\x8b\x0a\xd1\x51\x2b\x3c\xbf\x23\x3a\x6a\x89\xaa\x7a\x74\x54\x8f\x8e\x5a\x5f\x97\x7d\x44\x47\xad\xec\x79\x37\x74\xd4\xa6\x2d\xdf\x00\x1d\xb5\xd4\xcc\x17\x83\x8e\x5a\x59\xd1\x2f\x06\x1d\xb5\x32\xaf\x1e\x1d\xf5\xcb\x43\x47\xdd\x12\xff\xb3\x99\x17\x1b\x7c\x25\x45\xd9\x62\x6d\x22\xfb\x4a\xa2\xf3\x6b\x4d\x60\xd1\x63\x39\xa8\xcd\x5f\x57\xdb\x63\x8e\x36\x33\xa1\xf5\x30\x47\x1b\x55\xf5\x76\x56\xb7\x2d\xc0\x13\x28\x06\xaf\x8c\x39\x5a\x9a\x40\x1f\x5f\xb9\x7e\x7c\x65\x23\xf1\xd9\xbe\xf5\xf0\x5c\xd0\x65\xf5\x42\xee\x88\x3a\x5a\xda\x9f\x4e\x91\x98\x20\xba\xef\x80\x12\x5f\x56\x9a\xbf\x2f\x1d\xf2\x95\xb2\x7c\xb8\x8a\xd2\xe2\x1f\x6b\x09\xcf\xa1\xc5\x19\x25\x3c\xf4\xff\xf7\x94\xbb\x41\x64\x70\x65\x79\xbd\x5f\xc5\xd0\x62\x07\x52\xed\x4c\xa1\x4e\x2b\xdd\x4d\xa2\xac\x4b\x9e\x5c\xd3\xc5\xec\x06\x71\x97\x91\xa8\xc5\xc6\x4c\x53\xba\xab\x66\x57\x5d\x64\x1e\x0b\x0b\x14\xf2\x5a\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x5a\x63\x9b\x6a\x23\xdc\xc6\x55\x9a\xe5\x9d\x03\x62\x82\x55\x9d\x6d\xf6\x59\x4a\x52\x2e\x56\x05\x56\x35\x7e\x69\x2b\xba\x6c\xf2\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xdd\x46\xba\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xce\xdb\xbd\xed\x36\x5b\xcc\xcc\x35\x1d\x42\x0e\x33\x78\xb9\xc1\xcd\xbe\x54\x72\x77\x03\x7d\x37\xc6\x74\xf8\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x4e\x15\x5f\xd9\x7a\xc7\x6b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\xeb\x07\x78\xb4\xa0\xa6\xd6\x97\x07\x22\x73\x24\x11\x87\xa1\x66\x50\x1a\x4c\x7d\xbd\x4a\x54\xe2\x34\xca\x2d\x88\x24\x17\xad\x51\xa6\x5d\x0c\xda\x91\xca\x71\x02\x9a\x44\x58\xa4\xb1\xba\xa9\x93\x45\x43\xda\x63\x37\x8f\x09\x65\xea\xcf\xff\xb1\xd6\x6e\x6a\xd5\xca\xae\x1b\x14\x96\xc2\x51\x44\xa4\xb1\xb1\xdb\x28\x64\x3c\xe1\x4f\x50\x53\x6a\x9b\x5d\xd5\x47\x59\xcf\x5b\x33\x78\x0f\x45\x1c\x17\xa4\x6e\xc4\x85\xb9\xe0\xf9\x6c\xee\x6c\x48\xfa\xcc\xe8\xa9\x35\xed\xe5\x8f\x35\x1b\xf9\xda\x7b\xf9\x5d\x4e\x93\xcd\x2c\x74\x77\xa5\x6a\x5b\x9f\xce\xef\x91\x9c\xfb\xd3\x3a\x81\x66\x1b\x37\xb6\x3e\xe8\xee\x7d\xda\x6f\xbd\xbf\x06\xba\x39\x70\xf0\x9b\x53\x9e\x24\xe0\x69\x90\x24\x7d\x0a\x8b\xe4\x87\xdd\xc3\x84\xef\xe9\x7a\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x49\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x4d\x36\xb6\x9f\xea\x85\x4e\xde\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x5b\x92\x57\x0e\x1c\x5c\x31\x8f\x7d\x0d\x1e\xac\x30\x3b\x1f\xcb\x57\x5c\x33\x2e\x70\xc8\x28\x3e\x03\xbd\xc4\x23\x36\x28\xe5\x53\xb8\x82\xd0\x93\x45\x11\x90\x6d\x74\x88\x90\x99\x41\x39\x09\x6b\x58\x01\x37\x9a\xfe\x0b\x34\x1d\x03\x5e\x6b\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x10\x47\x8b\x28\xa1\x51\xa0\x33\xcf\x04\xce\xe6\x4d\x1c\xcf\xed\x7c\x8f\xba\xf3\x56\xa8\x3b\x6d\x75\x97\xd6\x89\xdb\x76\x74\xc5\x70\x4a\x7a\x34\xa0\x26\x34\xa0\x03\x8f\x77\xc1\x8a\x0a\x52\x6f\x08\xa3\x50\x3f\x77\x3d\x24\xd0\x1b\x40\x02\x6d\x72\xf8\x0a\xbc\x9f\xd2\xb1\xeb\x61\x8a\x3e\x74\x82\x29\xf2\x97\xe0\x5e\x21\xcf\xb4\x9f\xc7\x37\x46\x34\xa9\x0f\xec\x2d\x61\x89\x1a\xc4\x85\x75\xe4\xa6\x65\xb8\x44\xcb\xe8\xa2\xd3\xba\xbc\x2d\x4a\xd0\x7a\x2b\xb3\x16\x00\x50\xe3\xdd\xb5\x27\x70\x40\xed\xdb\xb0\x27\xe7\x66\x97\x59\x2d\xeb\x95\xc8\x0c\x33\x5b\xd6\x51\xb0\xd6\x4b\x72\xf1\xf4\xf0\xbe\x12\x5d\x8a\x5a\x62\x9b\x25\xbb\x0c\x9c\x0f\x9a\x08\x34\xe7\x49\xec\x40\x28\xfc\x6a\xf9\x0e\x7c\x26\x80\x5f\x20\xb7\x19\x50\xd3\x1b\xb4\xad\xa2\x20\xd8\xb2\x94\x16\xbf\x89\x30\xdc\x1d\x30\x9a\x5d\x58\x11\x3c\x27\xd9\xc4\x7e\xb0\x52\x16\x91\x65\xf3\xf7\x92\x31\x96\x56\x08\xac\xe6\xcd\xc3\x5c\x69\xf7\x5d\x31\xb8\x65\xa2\x47\x60\x1c\x14\x4d\x15\x2d\x0d\x9d\xc1\xd3\x27\xea\x0c\x11\x38\xec\x71\xa9\x97\xce\xcd\xae\x93\xa7\xae\x4a\x2c\x1b\x04\x83\xd5\x2a\xb7\x6d\x0f\x0e\x94\xe2\xcf\xe3\x0c\x0b\x9c\x24\x24\xa1\x32\x7d\xb1\x60\xe0\xd3\xb2\xbb\x56\x9f\x55\xc1\x8d\x89\x88\xe5\xe9\xc4\x90\xa2\x1b\x88\xad\x17\xa9\x38\x12\x39\x0b\xa1\xcd\x9e\x6b\x45\xf5\x73\xb8\x17\xc0\xaa\x14\xcd\xa1\x38\xe9\x14\x53\xc1\x88\x6c\x2d\x05\x49\xa2\x5c\x50\xb5\x18\xdb\xca\x9a\xdd\x0f\xdc\x9d\xfd\xf2\xd4\x7e\xb8\xdc\xc3\xed\xb2\xfa\x5d\x7f\xbe\x92\x67\x46\x04\x94\x09\x72\x05\x6f\x82\xea\xa1\x16\xb5\x81\xf8\x5a\x43\x10\xfe\x5c\xbb\xb6\xdb\x02\x87\xf1\xf3\x38\xc8\xa8\x1a\x47\x55\xe2\x58\x75\x58\x9b\x70\xa7\x96\x4d\xf2\x85\x91\x97\x5a\xbc\xc8\x2f\x50\x65\xc4\xa6\x4d\x98\xa6\xf5\x80\x03\x57\x30\xd8\x2b\x8b\x8d\x09\x52\xde\xad\x52\xd5\x32\x4e\x8b\xf5\xd3\x14\x7c\xb4\x64\xb0\x83\xe0\xab\x0e\x23\x0e\x3a\xd9\xd1\xb0\xf5\x41\x17\x22\xcf\x14\x9d\xd4\xa1\x6d\xd4\xee\xaa\x8e\x0e\x12\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x34\x62\x03\x89\x9e\x09\x62\xc4\x42\x48\x34\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x03\xdd\x30\x54\x2d\x55\x1c\x82\x3f\x31\x7a\x16\x38\xcb\x88\x18\x31\x9b\xc5\x01\x0e\x17\xce\x13\xd3\x7e\x5b\x88\xab\x5d\x03\x32\x8e\x70\x34\x7f\xa5\x3d\xc2\x90\x8c\x13\xcd\x49\xec\xf2\x85\xcb\xdb\xe3\xe6\x6d\x0c\xd6\x6b\x6c\xd6\xf9\xd4\x95\xcf\x3a\xb0\x9d\x24\x91\xe6\x28\xbe\x9a\x72\x46\x84\x1e\xb5\xa6\xe1\x27\xc2\x10\x9d\xba\x71\xd8\xd8\x1d\xf4\x0c\x9e\x29\x4d\xfa\x4f\x98\x26\x26\x01\xdf\x75\xed\x84\x40\x63\x7e\x1f\x31\xe3\xee\x66\x51\x29\x43\x95\x32\x2a\xe7\x9a\x53\xe7\xe0\x93\x04\x35\xa3\x2d\x71\x86\x3d\xad\x73\x9a\x87\xfa\xf5\xe5\x1c\xf4\x89\x0a\xce\x52\x48\x92\xb1\xb8\x4c\x6e\xf9\x24\x51\xfe\x78\x34\xa6\x38\xae\x94\x88\xe3\x58\x96\x8d\x9f\x46\xad\xa4\xbf\x96\xcc\x2e\x87\xa5\xac\xc0\x28\x80\x15\x82\x20\x4e\x57\x59\x6c\x99\xfc\xdb\xa7\x36\xd4\x53\x1b\x9a\xd7\x66\x1f\xd3\x1b\xfc\x21\x5e\x37\xc5\xa1\x6d\xfb\x77\x21\xd9\xee\x30\xd5\xe1\x8d\x73\x02\x5e\x26\x1d\xe0\x6d\xf3\x37\x5e\x22\x75\xa3\x4f\x70\x78\xc3\x04\x87\xce\x96\xda\x72\x6c\x76\xfb\xb1\x5d\x2b\x39\x60\x05\x98\x53\x53\x2f\x97\x44\x09\x1a\xc9\x5d\xf0\x07\x99\xe1\x8e\x51\x6d\xa0\x05\x66\x2b\xa4\x26\xfd\x82\x77\x42\x42\x9c\x98\xaf\xf3\x37\x11\x04\x3f\xc6\xfc\xb9\x66\xab\x93\x21\x9a\xc6\x25\xd7\x62\x8f\x20\x11\x95\xa4\x14\xc9\x42\x25\x62\x44\x5a\x63\x27\x1e\xb1\x39\x25\x02\x8b\x68\x0e\xd9\x8d\xc5\xc6\x98\x2c\x59\x03\x68\x64\x62\x19\x42\x6f\xd3\x1a\x9b\xde\x61\xdd\xab\x16\x26\x8f\x4f\x67\xf7\x5c\x8f\x24\x35\x9f\x78\x61\xc6\x4a\x19\xa1\x49\xae\xd3\xf6\x6f\x1b\x88\xef\x17\xfb\x45\x83\xf1\x7d\x30\x51\xf0\x45\xc7\x80\xfc\x82\x1a\xfa\xa0\xfc\x17\x0a\xca\x6f\x58\xe2\xf5\x02\xf3\x37\x32\xf9\xbd\x7e\xcc\xb0\xeb\xf9\x35\xe2\x86\x57\x05\x6d\xe5\x93\xf1\x8b\x1f\xbd\xc6\x39\x77\x3d\x81\x3f\x79\xa2\x30\x12\xb1\xd0\x74\x36\x21\x71\x0c\x9c\x56\x71\x5b\x29\xba\xa0\x1d\x67\x1e\xd0\x77\x2f\x96\x9a\xd8\x71\xc2\xd9\x4c\xd2\xd8\x80\xad\x64\x18\x2a\xb6\x86\xc6\x0b\x00\x17\x80\xfd\x4d\x12\x22\x9c\x57\x42\xa0\xaf\x25\x65\x16\x4d\xd1\xff\x16\x73\x22\xd9\x57\xca\x18\x0b\x30\x5b\xa0\x47\xc6\x9f\x13\x12\xcf\x60\x87\xaa\x83\x39\x44\x94\x1c\x20\xaa\xfc\x67\x02\xd0\x08\x78\xae\x46\x7a\xec\x10\x6b\x66\x34\x00\x62\xbf\x0d\x6a\xa2\xfb\x66\xbe\x39\x42\xe8\x9c\xa1\x29\x8e\xd4\x01\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\xf4\x31\xe3\x0d\x9d\x37\x9f\x0d\xc7\x1d\x34\xb9\x0e\x12\x8a\xb7\x8a\xad\x7b\xc2\xdb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xab\xad\xb3\x32\x95\x75\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x9d\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xa6\x4d\xcb\xf4\x8d\x47\x4e\x39\x33\x0e\xc2\xad\xe4\x4e\x3a\x63\x38\x59\xd3\xc6\x51\x5b\xb9\xba\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xca\x7c\x43\x79\x0f\xa3\x98\x64\x84\xc5\x84\x45\x0b\x20\x11\x06\xc8\x39\x82\xe1\x04\x61\xf8\x0e\x27\x47\xe8\xcc\xe4\xd7\x78\x09\xcf\x5e\xeb\x70\xa1\xa7\x98\xd1\xa9\xd6\x13\xc0\x08\x6b\x47\x39\x62\x66\x98\xce\x07\x12\x14\xed\xf7\x2b\xd6\xb4\x33\xfa\x06\xb9\xda\x12\x95\x98\x95\xbf\x47\xcb\x2f\x1c\xe8\x6d\xd9\xee\xe8\xe6\x5c\x0d\x02\x99\x4f\x0e\xe1\xdf\xa5\x84\x33\x07\xd4\x53\xa0\xc8\x90\x84\x80\x39\xd0\x7a\xbc\xe0\x62\x6c\x03\x96\xdb\x85\xdf\x6e\x45\x1e\x47\xd0\x47\x49\xa9\x49\x29\xa3\x69\x9e\x06\xce\x3b\x53\xb1\x20\xb2\xf6\x4b\x93\x89\x91\x69\x3d\x20\x72\xe0\xe5\x48\x5f\xae\x6c\x81\x66\xf4\x89\xb0\x11\xcb\x38\x65\xea\x08\x5d\x71\x45\x82\x12\x11\x06\x3a\x8a\x67\x8a\xa6\x06\xed\x54\x10\x7d\x0e\x0c\x28\x36\x00\x4d\xce\xb1\x3a\x40\x71\x0e\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xec\x0c\xc4\x47\x8b\x11\x33\x37\xdd\x14\xd3\x24\x17\xc4\xca\xac\xd8\xe4\xc5\x14\x43\x2e\x46\x66\x91\xd0\x82\x49\xa4\x74\x36\x57\x7a\x8b\xb4\x8c\x67\xfd\x8d\x73\xcd\x8d\xf8\x88\x4d\x08\xc2\x28\xe3\x92\x2a\xfa\xe4\xfd\x97\x74\x8a\xb0\x94\x60\x41\x39\x42\x67\x25\xfb\x3f\x95\xa0\x7a\xb7\xc5\xd5\x52\x36\xb6\xb6\xe7\xf6\x7c\x9c\xad\x37\xb2\xd4\x8b\x5d\x65\x3c\x91\x3c\xc9\x55\xe8\x82\x6d\xde\xdb\xc2\x34\xee\x80\xfb\xc1\x40\xcc\xa7\x23\xe6\xe8\x5a\x1e\xa1\x81\x44\x92\xeb\x5d\x92\x66\x2b\x23\x41\x15\x11\xd4\xa0\x38\x11\x65\x36\xc1\x9f\x53\x7f\x06\x52\x2c\x1e\xb5\x08\x15\x5a\xe0\x0d\xa6\x68\xc9\xda\x31\x31\x12\x12\xc0\x5a\x85\xdb\x01\xa6\x7f\xc4\x38\x3b\x64\x64\x86\x57\xed\xc8\x88\x95\xb6\x04\x7d\x4d\xa7\x85\x42\xda\xe6\x73\x0c\xd6\x6e\x0c\x91\x4f\x6d\xbb\x64\x3a\x6e\xdb\xa4\x69\xc2\xf1\x0a\xb7\xf1\xb4\x38\xf4\xe8\xef\x7c\x62\xc6\xa8\xf5\x7e\xae\x40\x0a\xd4\xea\xd5\x94\x0b\x32\xc7\x2c\x3e\x70\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\xac\x75\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x61\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x1b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x0d\x04\xbf\x24\x5f\x2b\xb9\x2a\x70\xfb\x2d\xda\x6a\x9a\x28\xbc\xaa\xcc\xc8\x1a\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x34\x62\xe7\xea\x2b\xa9\x45\x74\xce\x66\xfa\xa2\x89\x9f\xa8\x2c\x8a\x9c\x44\x9c\xc9\x3c\x25\xc2\x76\xa1\x6f\x64\x4d\x91\xb6\x40\x00\x76\x32\x94\x1e\x9b\xde\xfb\x27\x9c\xd0\xd8\x15\xe2\xd1\x3f\x9a\x33\xa7\x47\x29\x9d\x47\xb1\x21\x24\xcc\x6e\x6e\xac\xd7\xea\xcd\xc4\xfa\x1f\x43\xc9\x1d\xa5\x85\x90\x8f\xad\xad\xfe\xb8\x2a\xe2\xdb\x55\x5f\x22\xde\x4f\x6a\x93\x42\xcb\x05\x23\xbb\x0a\x67\xab\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x16\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbe\xb5\x67\x5b\x96\x89\x90\x11\x4e\xea\x3b\xbc\xc4\xde\x6c\xde\x5f\xae\x04\xd8\xe3\x66\xda\x5e\x9a\xf4\x1b\xf1\x24\x59\xa7\x84\x49\x65\xe6\xa7\xc5\xe7\xcb\x47\x54\xf4\xa3\x37\xc0\xed\x05\x9c\x1a\x73\x79\xe3\xc4\x9a\x52\xa4\xb2\xbb\x14\xbe\x64\xd4\xb0\x85\x65\xad\x23\xc6\xa7\x50\xe4\x26\x69\x8b\xea\xca\x04\x4f\xe9\x3a\x28\xcb\x26\xd0\xe9\xd6\xd9\xc5\x57\x58\x19\x9c\xf5\x1c\x44\x53\x43\x5e\xb6\x47\xc8\xd7\xc3\x56\xdc\x5c\x72\x86\x52\x9c\x6d\xb4\xe0\xab\xbc\x42\x03\x94\x1a\x97\x9c\x5d\x3d\xc0\x5b\x24\x50\x2f\x06\x16\xf9\x19\x2f\x8a\xd4\xe8\x36\xfc\x5c\xb6\x16\x39\x3c\xe8\xd7\xcf\xd9\x94\xaf\x71\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x5d\xce\xe3\x69\x13\x51\xaf\x7d\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x9d\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf9\x52\x5d\x96\xe8\x70\xe7\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\x69\x6e\xf5\x15\xd6\xcc\x1e\x92\x4e\x8b\xb5\x25\x76\xc3\x7a\x38\xc0\xae\x47\x8f\xfa\xdb\x7c\x42\x57\x16\x39\xe8\xbe\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x9f\x37\x18\x38\x5d\x82\x98\x0f\xa8\x32\xa1\xf2\x4e\x7a\xca\x05\x0d\x0a\x83\x3a\x19\x09\x51\x28\x50\x12\x3a\x79\x02\x85\x1e\x4c\x8b\x73\xfe\x6c\xa2\xd3\x05\xd5\x3c\xcb\x08\xab\x0a\xcc\x3d\x9a\x17\x50\x6b\x2d\x31\xc6\x26\xff\x01\x37\x31\x83\xd8\xd6\x3e\x2e\x46\xd5\xb2\xa5\xbb\x28\xf1\xd4\x3d\xff\xce\xf5\x7a\xaf\xbf\xa8\xef\x4d\xe3\x08\xef\xcb\xad\xaf\x3d\x3a\x2f\xe5\xaf\x1f\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\x67\x3f\x1c\x3f\x9c\x23\xa2\x22\x94\xd0\x47\x32\x62\x91\x7c\x3a\xd0\xe2\xf1\x3f\x72\xa2\xf4\xcf\x2d\x1e\x01\x9a\x12\x26\x81\x13\x50\x55\xc3\x1e\x6a\x5e\x48\xb7\x30\xfa\xbf\x67\xe5\xef\x97\x90\x7c\x2d\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x03\xc5\x18\x5b\xe4\xb0\xa9\x1a\xe6\x06\xe9\x42\xec\xef\x39\x5b\x53\xe8\x3a\x2d\x3e\x0a\x46\xd1\x22\xd3\xa5\x19\x06\xac\xeb\xf5\xf2\x90\xcc\x37\x8d\xad\xaf\x62\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x34\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\x9a\xb8\x84\xc0\x2c\x9a\x6f\x6b\x42\xa6\xd3\x31\x49\xd6\x91\x44\xcf\xa7\xc3\x44\x6a\xfa\x8e\x1e\x5b\x4e\xe7\x26\x35\x1b\x8b\xc9\xd8\x4a\xb4\xa6\xee\x13\x2a\x4c\xd0\x38\x31\x15\xe5\x08\x02\x1f\x65\x35\x7b\xcc\x00\x44\xe8\x5d\xb4\x92\xba\x71\x51\x9a\xb4\x0d\x1f\x92\x0d\xbd\x20\xac\x46\x4c\xe4\x0c\x8a\x4d\xf8\x88\x05\x8c\x0a\xbc\xf0\xc8\xf9\x0f\xac\x37\x67\xa6\xd9\x84\x81\xe3\x36\x2f\x6b\xfd\x8c\xe7\x12\x6c\x35\x29\x51\xfa\x82\xfa\x1a\xea\xc0\x9a\x90\xa1\x03\x94\x09\x9a\x82\xb9\x55\x7e\xd3\xb0\x75\xa7\x58\xe1\x84\xcf\x06\x42\xd1\x29\x8e\xd4\x3d\xde\x4a\x03\xc7\xb6\x99\x4d\xc3\x4f\xdd\x30\xd0\xf9\x99\x5e\xfc\x19\x61\x44\xc0\x44\xb5\x4e\xde\x7c\x84\xe1\xc9\x46\x9c\x1b\xac\x6c\xd6\x30\x2a\xbd\xc5\x02\xe7\x8a\xa7\x5a\xbf\xc5\x49\xb2\x38\x30\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x97\xbb\xc9\x2e\xee\x29\x8e\xe6\xe4\x0e\xaa\x22\x37\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\x27\xe8\x7f\x8a\x39\x9e\x0e\x4e\xbf\x1f\x8e\xcf\xce\xef\x06\xdf\x5d\x0c\xcf\x82\xf9\xd8\x27\x97\xe7\x77\x77\xf5\x5f\xbf\x3f\xbf\xaf\xff\x78\x73\x7d\xf3\x70\x31\xb8\x6f\x6a\xe5\xe2\xfa\xfa\x87\x87\x9b\xf1\xc7\xc1\xf9\xc5\xc3\xed\xb0\xe1\xd3\x87\xfb\xf6\x87\x77\x3f\x9c\xdf\xdc\x0c\xcf\xdc\xaa\xfc\x2d\x38\x5d\x60\x3d\x86\xd4\x8b\xe6\x69\x54\x0f\xe0\x21\x2a\xbf\x78\x82\x1e\xaa\xa5\x0f\x6c\x2c\xb2\xc1\xb1\x78\xc6\x52\xf3\x30\x08\x85\x1f\x31\xe4\x3e\xd7\x8b\xd2\xf6\xa9\x09\xd7\x89\xe6\x04\x25\x9c\x3f\xe6\x99\x65\x6d\x26\x3e\x8c\x71\x63\xf8\x21\x32\x68\xed\xfb\xf3\xfb\x93\x7a\x09\x06\xdf\x58\x80\x98\xe5\xce\x00\x8c\x0b\x3b\x76\x0a\xb6\x14\x07\xcd\x5f\x58\x6f\x83\x1e\xfc\xce\x2c\xeb\xc7\xb4\x86\x99\xaa\x74\x13\xc7\xb6\xe8\xaf\x9b\x58\xd0\x70\x79\x5f\x97\xad\xa6\x5f\x0e\x53\x7b\x0a\x4d\x48\x84\x73\x13\xd4\xa4\xef\x29\x21\xb8\x08\x07\x5c\xd0\xc3\xee\x1a\xb5\x74\xd4\xd8\x60\x65\xcf\xf4\xc4\xe5\x23\xcd\x32\x12\x7f\xa8\xcb\x2f\xe5\xea\xb0\xb6\x26\x39\x9f\xa2\xe0\x4c\x6a\xbd\x1e\x74\x7e\x57\x38\x65\xbe\xf0\x9e\x34\x08\xdc\x28\x42\x59\x00\xc8\x59\xdf\x09\xbe\xb0\x05\x05\xd7\x18\x56\xe8\x99\x40\x4a\x75\x6e\x2b\x47\x19\xdd\x5b\x9f\x6d\xe8\xce\xd8\xb4\x5d\x1d\xb8\x52\xaa\x75\x2b\x33\xde\x85\xc0\xad\xbf\x97\xa4\x89\x11\x6f\x91\x17\x7b\x66\x1a\x05\xee\xec\x62\xde\x60\xc4\x2d\xc1\x0d\xee\x36\x68\xb0\x90\x2f\x91\xaf\xea\x37\xd2\x8a\xcb\x42\xb3\xed\x2e\xe3\x71\x58\x20\x25\x80\xeb\xee\x03\x2b\x81\x20\xaf\x5c\xab\x7b\x1e\xe3\x85\x26\x0e\x88\x35\x96\x79\x96\x71\xa1\x50\x4b\x1b\xc6\x8d\x6f\xc6\x07\x77\x8e\x9d\x87\xe7\x71\xd0\x88\x96\x30\x64\x43\x2d\x8d\x6e\xf0\x08\x76\x5d\x0b\xc6\x11\x06\xc8\x82\x22\xe8\xeb\x1e\xa5\x25\x95\xba\x44\xa1\x4d\xc2\xef\x36\x19\x06\x99\xbe\xe0\xbb\x96\xe1\x6b\xea\xfd\xda\xb5\xd0\xb8\xe5\x09\x99\xaa\x71\xa3\xd7\x67\x89\x81\x53\xb7\xc8\xda\x10\x65\xe8\x6c\xbe\x83\x16\xbb\x6b\x09\x7f\xb4\x81\x3d\x5a\x35\x08\x2c\x04\x82\x73\x65\xe4\xd3\x42\x87\x41\x6e\x35\xc1\xbc\x60\x3b\xb5\xb9\x60\x5e\x08\xd4\x32\xbf\xf1\x87\xfa\xb4\xa9\xa3\x11\x1b\x42\x00\x45\xa1\x88\xb8\x14\x31\xd0\x02\x56\xca\xff\xa5\xa2\xa3\xaf\x1a\xad\xd9\x8e\xf0\x5a\xd0\xbd\xad\x97\x9f\x2c\x50\x51\x58\xb6\xf4\x5d\x97\xd3\x63\xac\xde\x4e\x04\x34\x13\xb6\x65\xdc\x15\xc9\xac\x65\xde\xcc\xb3\x88\xf4\x81\xf8\x30\xdd\xd5\x11\xfa\xc9\x59\x7e\x20\xf0\xb5\xa8\xc9\x6c\x63\x37\x12\xbc\x70\xa0\x90\x4d\x0b\xbb\x0b\x9c\xc5\x5d\x87\xc2\x2e\x5f\x60\x0f\xe8\xd4\xb0\xca\x25\x05\x9c\x31\x63\x91\x5d\x23\xed\xe3\xd4\x7f\x74\x47\x96\x47\x05\x7c\x84\x32\x9c\x36\xb2\x0a\x84\x0e\x96\x2c\xfe\x97\xd9\x2c\x93\x89\xea\x0a\x6b\xd9\xb2\x88\xd6\x83\xaa\xcf\x0f\x78\x00\x4d\xa2\x2a\x9a\xd2\x24\x01\x39\xe0\x08\x0d\xa0\x3c\x30\x24\x72\xea\xab\xd0\x05\x58\xd0\x19\xe3\xab\x72\xcc\x5a\x88\x29\x0a\x88\xe9\xae\x9d\x98\x24\x50\x53\x91\xc7\xbf\x1b\x8a\xda\x01\xa6\x8b\xe6\x2d\xb8\x8e\x88\xdd\x1d\xc9\x65\x0d\xe5\xfd\x2d\xa2\xa3\x6b\xc3\x0d\x3e\xfc\x57\xf3\xd0\x3f\xe5\x58\x60\xa6\x20\xe6\xd7\x8a\xee\x82\x04\xa9\x47\xe4\x33\xc4\x67\x30\x63\x08\x86\x9f\xc2\xcd\x75\x2e\x7f\x08\xf7\x42\x34\x3e\x40\xf4\x88\x1c\x41\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\x56\x8b\x65\x3c\x42\x83\x44\x72\xfb\x05\x61\x51\x02\xe5\xb8\x83\xf0\x64\x4f\xf9\xd6\xad\x34\x59\x80\x82\x02\x5b\x59\x34\xcf\xed\x83\xe0\x43\x28\x32\x06\x3e\xf1\x04\x4e\x7a\xf1\xfb\xef\x79\x66\xbc\x15\x6d\x71\x12\x2f\x58\xce\xa1\x76\x0d\xbd\xd8\x26\x99\x52\x81\xcb\x36\x08\xde\x80\x8d\x29\x62\x4c\x03\x04\x16\xf4\x35\x56\x28\x21\x58\x2a\xf4\x87\x6f\xd6\x8a\x0d\x71\x13\x2c\xb8\xab\x3d\xbe\x45\xa2\x98\x4b\x35\x08\x85\x3b\xdf\x31\xd4\x8e\xc3\x42\x21\x8c\x18\x79\x0e\x23\x4b\x39\x04\x03\xbb\x82\x70\x24\xc8\x6d\x35\xf1\x64\x26\x33\x1f\xb2\x35\x8c\xca\xd4\xc2\x47\x1c\xdc\xb1\x75\x9f\xda\x61\x35\x50\x96\x55\x9e\x6c\x88\x27\x40\x72\x15\x41\xff\x73\xac\x46\xcc\x72\x56\x17\x36\x12\xa4\x79\x0d\x92\xa4\x1c\x68\x8f\x21\x97\x84\xe9\x09\x43\x7d\xf6\x23\xbf\x40\x57\xa0\x7e\xf9\x68\xe7\x92\x9d\xae\x38\x2c\x26\x1e\xcf\xe3\x1d\x85\x6d\x37\x4a\x3b\x4d\xf6\xe5\x57\x14\x82\x1b\xba\xbf\x30\x85\xf2\x3b\x08\xc3\xa4\x69\xc8\x2b\x0e\x56\xdd\xa6\xbf\x44\x36\xde\x75\x07\xdd\x45\xe5\x66\xfb\x38\x5c\xb3\xcf\xbc\xc1\xdc\xde\xb2\xb9\x81\x6c\xb1\x8d\x02\xee\xc3\xee\x5f\xcb\xe3\x5b\x1a\xfa\x79\x0c\x49\x7f\xab\xb9\x60\x91\x44\xe7\x58\x87\x89\xbd\x8e\x83\x9c\x9e\x20\x85\x00\x82\xff\x1c\xe3\xb3\x6f\xb6\x78\x5e\xb3\xf7\x3d\xfd\x83\x62\xfe\x6e\x2a\x3e\x08\xae\x3e\xf1\x76\x61\x6f\x10\xff\x1d\x47\x10\xe9\x0f\x3d\xb9\x1c\x83\x3a\x20\x93\x83\xb1\xc6\x60\xcc\x6f\x14\x0f\x33\xc1\x23\x22\xe5\x11\x1a\xc2\x45\x63\xff\x89\xf0\xd4\x39\x24\x82\x97\x47\x4c\x6b\x26\x0e\xbf\x25\x68\xbf\x4c\xe2\x4d\x27\xc0\x80\xc1\x6d\xe5\xcb\x49\x57\xd7\x28\x69\xd3\x26\x1c\x16\x1d\xb4\x01\x65\x0d\xd0\x70\x76\x82\x62\x1e\x3d\x12\x71\x2c\x48\x4c\xe5\x09\xf8\xd6\x55\xab\x53\x2f\xd5\xda\xf6\xd6\x92\x46\x5b\xa0\xc0\x8a\xa4\xb8\x53\xd3\xbf\x0d\xb0\x76\xe1\xb5\x07\x88\x4e\x41\x9d\x70\x39\x19\x26\x08\xd9\xc1\xdd\x10\xa6\xc4\x02\xe2\xfa\xbd\x29\xab\xb2\x10\x4e\xd3\xd0\x42\x5b\x5b\x36\x91\xd8\x45\x0c\xce\x86\xd3\xbe\x9f\x13\x49\x5c\xc0\x81\x99\x94\xe2\x36\x96\xd9\xb0\x8b\x0c\xab\xb9\x84\xd4\xd5\xf2\x1a\x58\xa5\x0b\x3e\xd5\x2b\x84\x33\x88\x57\x30\x56\x8a\xe2\x23\x9f\x60\x29\x15\x4d\x92\x11\x63\x84\xc4\x12\x41\x96\xe9\x57\x8d\x19\xf2\xfa\xd3\x03\x84\xe3\x18\xfd\xef\xaf\x3f\x5e\xfc\x7c\x3f\x1c\x9f\x5f\x81\xd1\xfa\xfc\x62\xf8\xcd\x81\xff\xf1\xfa\xe1\xde\xff\x6a\x2c\x2c\x4f\x44\xa0\x14\x3f\x82\x8a\xc7\x24\xb1\xc9\x13\x64\xc4\xc2\x91\x3a\xec\x00\xfd\x44\x12\x17\xe9\x6a\xc5\x14\x0f\xa1\x68\xf7\xb0\xb5\x62\xb1\xb1\xf9\xad\xa1\xfc\xde\xfa\x4f\x96\xd3\xa0\x23\x1e\xdf\x85\x13\x03\x21\x47\x06\xcb\x20\x99\xdc\xea\xbe\x05\xc1\x11\x36\xa3\xac\x2d\x1e\x8f\xb0\xa7\x97\x14\xe2\x7f\x20\x8b\x1f\xb5\x7a\x7d\x83\xa9\xe8\x4c\x7b\xcd\x68\x40\xee\xc4\x68\x3d\x1d\xcb\xea\xa1\x92\x46\x16\x36\xd9\x36\xad\x31\x9f\x4d\x40\x70\x6f\x3e\x5d\x0b\x2f\x45\x3e\x2b\xe1\x50\x2a\x7c\x3e\x87\x83\x72\xf2\x17\x4d\x41\x83\x23\x76\x7f\x7d\x76\x7d\x82\x48\x82\x27\x1c\x42\xf9\x6d\x48\x90\x6b\xc2\x2e\x58\xc4\xd3\xa0\xa1\x12\x42\xc9\x01\xca\x0a\x84\x92\xd0\x88\x76\x64\xda\x58\x81\x54\x92\x71\x51\xc7\xf7\xd8\xad\x0a\x68\x27\x7b\xc3\x45\x97\xeb\x5f\xbf\x06\x4b\xc7\x33\xad\xc8\x55\x38\xaf\xbd\x9b\xa7\x04\x9b\x5a\xfa\xc6\x2d\x64\x6d\xf9\x36\x80\x35\x49\x4a\xf5\x14\xf5\xc1\x91\x47\xd6\x05\x5f\xbc\xc9\x19\xfa\xe1\x2f\x12\x4d\x72\x35\x62\xe5\x36\x38\x43\x83\x9f\xee\xd0\x77\x58\x45\xf3\x6f\x46\xec\x5a\xab\x99\x3f\xfc\xa5\x05\x4a\x69\x6d\x74\x42\xbd\x26\x67\x58\xe1\x0b\x8e\x63\xca\x66\x4d\xd0\x84\x45\xfd\x98\xe1\xfd\xe0\x04\x5d\x5b\x1d\xbe\xc8\x04\xf1\x29\xc1\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x65\xf8\x36\xa3\x99\xc1\x85\x35\x62\xf7\x06\x93\x51\x73\x55\xaa\x50\xc6\x6d\x0d\x23\xad\x95\x19\xb4\x4a\xec\x32\xa4\x48\xb2\x40\x7a\x75\x80\x8c\xfd\x66\x58\x79\x0c\xe4\x99\x3a\xb3\x1f\x31\x50\xd0\x7d\x6e\x4a\xc2\x23\x9c\x40\x4c\xde\x61\x60\xd3\xd3\x6a\x3b\xcf\x21\x3f\xdc\x14\x3d\x5f\x94\x43\x67\x3d\x64\x81\x17\xca\xc2\x8d\x02\x03\x00\xec\xa3\xf5\xc6\xa6\x5c\x73\x1c\x83\xc5\x06\xc6\xb7\xc4\xac\x8e\xfe\xd0\x63\xb3\x99\x65\xd1\x4f\x7d\xda\x16\xcf\x99\xc3\x22\x89\xc0\x7c\xcf\x16\x10\xbe\x0d\x45\x47\x38\x84\x7e\x14\xdc\xd9\x12\x65\x6d\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\x58\xcf\x15\xcb\x33\x1b\xd8\x68\x65\xfd\x4c\x90\x43\x9f\x01\x15\x97\xd6\x54\xdf\xb0\x47\xe8\x36\x54\xaf\x63\x1e\xe5\xa9\x43\x56\x86\xec\xa9\xa2\xac\x7c\x49\xe2\x31\x17\xfb\x2a\x8a\x07\x94\x16\x45\x20\x7d\xbc\xb3\x7e\x6c\x08\x66\x10\x7e\x5a\x97\xd4\xdb\x05\x5f\xe0\x1d\xdb\x45\xad\x99\x86\xc6\x59\xb9\xa5\x52\x6b\x5b\xe7\x25\x5e\x15\xe8\xaf\x5c\x80\xb0\x45\x3e\x67\x1c\x8c\xdc\x26\x3d\x8b\xc7\x5f\x49\x74\x7e\xa3\x25\x20\xad\xf1\xfa\x33\x98\x4b\x65\x82\xcb\x20\x5d\xc7\x7c\x6d\xd2\x05\x0e\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x9d\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x3a\xa7\xda\x62\x17\xec\x01\x6c\x5b\xfe\x4d\x50\x1e\x83\xd8\x21\x3c\xb3\x27\x5c\x86\x27\x13\x95\x8e\x66\x11\x49\x20\x89\x3a\x28\x73\x08\x2f\xec\x5a\x89\xfe\x7f\x2d\x01\x2b\x1b\xeb\xa3\xb2\x59\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xf0\x33\xd6\x9c\xfb\xc0\xc2\x68\x99\x8f\x8c\xe7\x65\x8a\x23\x83\x0a\x2a\xd1\xd7\x9f\x4f\xf4\x6f\x07\x68\x71\x02\x41\xa4\x07\xe8\xd7\x13\x8b\x96\x83\x85\x1a\xeb\x9f\xbe\x71\xb2\xb6\x6d\x02\x06\x4d\x25\xfa\xea\xf8\x09\x0b\x53\x33\xfa\xd8\x8c\xe8\x2b\xcb\x59\x7d\x5d\xbc\x50\x36\x4f\x38\x7f\xb4\x01\xb6\xb5\x0f\x8f\x1d\xf0\x1a\x90\xb7\xf7\x9b\x98\xad\xf7\x89\xf9\x0a\x1d\xc2\x0b\x04\x1d\x65\x13\x74\xf4\x77\xc9\x19\x3a\x5a\xe0\x34\xb1\xbf\xba\xa7\x36\xfe\x17\x4b\x9b\x13\x17\xfb\x20\x9f\x64\x61\x2c\xa5\xdf\x25\x7c\x02\xb3\xba\x74\x33\x35\x11\xb4\x30\xd0\xe2\xf6\x29\x2e\x2c\x3b\x11\x97\x88\x0a\xf8\x41\x29\x57\xe6\x15\xe0\x71\x4d\xb3\xfa\xec\x87\xf4\xdf\xc6\x2f\x0c\x8b\xe2\x92\xf8\x8c\x71\xd8\x47\xaf\xe9\x46\x3f\xa3\xaf\x2d\x0b\xfa\x46\xdf\x31\x36\x5c\xd9\x2c\x43\x53\x07\x0b\xdf\xc1\xcf\x41\x07\x94\x21\x93\x96\xb9\xe4\xcb\x5f\x8f\x8f\x8e\x8e\xfc\xd7\x90\xb5\xfe\xff\x22\xaa\x24\x49\xa6\xa6\x25\x77\x83\x2d\x46\xec\xd2\x15\x5e\x70\xc6\xeb\x02\xd2\x31\x13\x5c\xf1\x88\x27\xe8\xb0\x30\xe8\xc6\x3c\x92\xe8\xdf\xb5\x58\x1b\x2c\x25\xfc\xa8\xf5\xb8\x16\x18\x58\x83\xf4\xfc\x4a\x87\xca\x1a\xc4\xab\xc7\x2a\x44\x71\xf3\x8a\x2d\x96\x61\x15\x0f\xa0\x05\x4d\x39\xc7\x16\xe9\x4d\x08\xfd\x32\xf9\xac\xe0\x51\x0b\x90\x5e\x63\x28\x7b\xf3\x4d\x59\x63\xb7\x05\x9e\x9e\x21\xeb\x96\x05\xb0\x78\x57\x96\x33\x98\x79\x1e\x84\xee\x13\x7d\xb9\xb0\xb0\x14\x80\xcc\xd3\x14\x8b\xc5\x71\x71\xda\xea\xc4\x59\x20\xad\x01\x8f\x49\xdc\x02\x80\x0b\x37\xb1\x47\xcb\x46\x31\x58\xf1\xd2\xdd\x68\xfe\xec\x46\x50\xcb\x30\x40\x2c\x20\x2c\xe2\xb1\xa5\xeb\x22\xfb\xb4\x2c\xb1\xf8\x77\xea\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\xb7\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x86\x7b\xf4\xfc\xfa\xce\x7d\xd3\xfd\xd2\x85\x75\x28\x8b\xec\x38\x09\xf1\xf1\xd8\x0c\x09\xfc\x5c\x5c\xbf\x10\xdb\x61\xac\x33\xb9\xcf\xcd\x35\xff\x3e\xe5\x37\x34\xd1\xb7\x16\xd0\xf8\xd1\x88\x95\x7e\x3e\x40\x24\xa1\x29\x65\x3e\xb6\xce\x30\x77\x3e\x35\xd2\xf3\x23\x55\x7a\xcb\x64\xfc\xa8\x39\x98\xc3\x75\x0a\x54\xaa\x01\x5b\x38\xd2\xf1\x8e\x29\x6b\x81\xc8\xa5\x1e\x57\xa1\xa3\x6b\x61\x56\x37\x71\x68\x05\x52\x1a\x10\x1e\x9c\xdf\x11\xd3\xad\xb9\xb3\x54\x84\x0b\x07\xed\x05\xcd\x1d\x3a\x40\xfc\x80\x03\x40\x1f\xa5\x98\x5f\x2f\xff\x36\x08\x28\x43\x96\xa7\xdb\x26\x9b\xd8\xf0\xe1\xb7\x32\xd3\xdd\x08\xe2\x6e\x2a\x9b\xb8\x44\x58\x9e\xba\x03\xb5\x06\xc5\x0d\xad\xf8\x13\x93\x28\xc1\x06\xa9\x46\x37\x04\x91\x8f\x07\xc6\x41\x9a\x05\x7d\x99\xeb\xc5\x74\x63\x6a\xec\x24\x84\x7d\x6d\xfe\xfd\x0d\xb2\x77\xc3\xb7\x07\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\x3e\x00\x65\xb4\xd6\x1f\x96\xc0\x04\x60\xd4\x4d\x14\xa0\x99\xf0\x56\xb9\x46\x10\x05\x3b\x66\x3c\x26\xdb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x96\x4e\x4b\xa4\x5c\xd3\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x2d\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x6d\x37\x21\x6a\x40\x2b\xea\x74\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x9c\xb3\x29\x3f\xb1\x3a\xd5\x05\x65\x8f\x86\xe2\x5f\x6a\x8f\x0c\x20\x36\x89\x4b\x30\x6e\xae\x4a\x2b\xcc\xe1\x10\x51\x16\x25\x39\x5c\x7c\x52\xe1\xe8\xd1\x80\x7a\xb7\x19\x7d\xf5\x37\xe3\xd5\xc9\x94\x2d\x12\x53\x9e\x24\xb6\xdb\xe2\x02\x2d\xca\x58\x3f\x51\x8c\x30\x7a\xb8\x3d\x6f\xee\xfb\x91\xd6\x9d\x39\xcd\xb7\x67\x99\x40\xe0\x7f\x7e\xa0\x6b\xc5\x5d\x56\x60\xf1\x48\x89\xd4\xbd\x71\xa9\x0d\x74\x55\x13\xe9\x27\xac\xc8\xb6\x99\x50\x06\x03\x6c\x8d\x48\xbd\x1a\xb8\xda\x52\xeb\xf1\x96\xc8\x64\x05\xaa\x18\x84\x06\xb5\x43\xa4\x85\xc1\x5a\xf0\x70\x0d\xec\x06\x78\xbf\xdb\x7c\x2a\xef\xae\x98\xce\xf2\x61\x26\x84\xac\x81\x36\x70\xa7\x5f\xef\x38\xc8\xd2\xab\xcb\xc6\xf8\x8c\x4d\xf5\x85\x3a\xe8\x6f\x6c\x25\xbb\x75\x98\xad\x23\x47\x23\x5e\x4b\x9f\x23\xe2\x47\xe2\xc2\x70\xbc\x2c\xe6\xfa\x9d\x81\x6f\x8b\x97\x8a\x3b\x78\x0b\x6d\x03\xe1\x07\x62\xeb\x96\x61\x13\x5a\xfc\x1a\xa7\x9d\x01\xe5\x8a\x8e\xcf\xec\xc7\x97\x35\x78\x39\xcf\x8a\x2e\x21\x8b\xcf\x03\xa7\xa4\x98\xe9\x93\xed\x7a\x6d\x31\x42\x1a\x89\x70\xa3\x21\x3d\x64\x1b\x0d\xc8\xf4\xd8\xb1\xee\xa1\xed\xca\xb5\xf2\x6c\xec\xf0\x38\x31\x76\x26\x35\x07\x13\x44\x51\x2f\x48\x73\xb4\xb2\x29\xc2\xd4\x16\x4a\xf0\xff\xc7\xde\xd7\x35\xb7\x8d\x64\x67\xdf\xef\xaf\xe8\xaa\x5c\x78\xfc\xbe\x14\xb5\x33\x5b\x49\x4d\x5c\x95\x0b\x5a\x96\x77\xb8\x6b\x4b\x5e\x49\x9e\xd9\xbc\x61\x8a\x6e\x02\x4d\x12\x11\xd8\x0d\xa3\x01\xc9\x4c\x36\xff\xfd\xad\x3e\xe7\xf4\x07\x3e\x09\x90\x92\x3d\xd9\xcc\x45\xb2\x63\x11\x68\xf4\x77\x9f\x3e\xe7\x39\xcf\x93\x6f\xf0\x82\xa4\x45\xa1\x5f\xb6\x8c\xb0\xcf\x79\x38\x61\x84\x8f\xd0\x64\x0d\xe3\x9e\x60\x7e\xf7\xad\x34\x57\xcb\x2a\xb9\xa8\x3b\x95\x9d\xba\x71\xc0\x9c\xe7\x13\x31\x22\x95\x23\x13\x77\x6c\xd6\x4a\x37\x67\xca\x89\xda\xdc\x57\x7c\xe7\x18\x01\xac\x42\x30\xe5\x77\x61\xe5\x56\x02\x78\x71\xbb\xeb\x70\xb2\x08\x77\x58\x05\x12\xc5\xec\xaa\xc1\x42\xce\xec\x23\x9e\xdd\xcb\x5c\xcc\x72\x34\xc0\x01\x1f\x8a\x68\x68\xb8\x5f\x71\xdf\xeb\xd4\xb8\x8e\x46\x8c\x4d\xde\xac\xeb\x88\x9b\xfb\x9d\x3b\x8d\x48\x31\xc8\x71\x78\xf6\xaa\x35\x91\x7c\xfe\x09\x1f\xbf\xb5\x4d\xac\x29\xf1\xb7\x7d\xf8\xf0\x5d\xca\x32\x46\x50\x41\xa1\xf8\x3f\x62\x48\xd3\xbd\x9f\xa6\x9e\x24\xae\xf6\xb1\xe6\x6a\x2d\x4e\xda\x8d\x13\xbe\x5b\xe6\xaa\x5b\xce\x6a\x40\x37\xd9\x22\x2a\xfe\x9d\x2d\xca\x5b\xec\xd9\xe7\x92\xa7\x78\xb8\x49\x9a\x8e\xb6\xda\x60\x2a\xff\xf0\x4f\x6c\x06\xa7\x0f\x7b\x0f\xfb\x22\x04\xf8\xa1\xb4\x42\xb1\x64\x97\x89\x5c\x2b\xc9\x3b\x75\xdd\xee\x7f\xd4\x4b\xd2\xa6\x59\xf2\x28\x52\x65\x53\x87\x66\x44\x4b\x5a\x4a\x0b\x1b\xc5\xd9\x7d\xb9\x12\xb9\x14\xa8\x5d\x07\xcf\x31\xfb\xdc\xa0\xea\x2a\x5e\x16\xdb\x1f\x96\x51\x9a\x0c\x16\xcc\x81\xec\xa2\x99\x79\xed\x02\xdf\xea\x6b\x40\xa5\xfc\x4a\xd5\x25\xc3\xdf\x18\xfe\x36\x65\xaf\x79\x74\x2f\x64\xcc\xb2\xb4\xdc\x24\x44\x26\x00\x27\x14\x6c\x97\x81\x7b\xb6\xda\x30\xb4\x2d\xb0\x7c\x73\x0c\x2d\xe4\x8e\xdf\x23\x89\x2d\x19\x91\x11\x4f\x3b\xa9\xa8\x9c\x59\xbd\x4c\x9a\x73\xf7\xe0\x68\xb9\xf3\xb0\x59\x4c\x7d\xee\xe9\x12\x73\x2b\x1e\xb7\x8a\x22\xd2\x15\xab\x7e\xc4\xc2\x75\xb3\xb5\xc1\xf9\x62\xf3\xf2\x9d\x8a\x21\x55\x06\x57\x2f\xb8\x7b\x81\x88\xb9\x94\x8c\x03\x6d\xcc\x0b\xcd\xca\xcc\xda\x67\xe0\x87\x4c\x21\x2a\x8c\x43\x60\x7e\xc8\x12\x73\x4b\xdb\x8a\x85\x04\xa4\x2d\x73\xcd\x6b\x88\x5d\x31\xe1\x01\x31\x6d\x5b\xc3\x1a\x49\x13\x4e\x8b\x71\x36\x78\x9c\x0f\xcc\xd3\x81\x28\xe2\x62\x2b\xe4\xf2\x08\x3a\xe1\xe1\x83\x56\x41\x0c\x93\x19\xec\xfc\xb9\xae\x0b\x4b\x99\x90\x80\x14\xb9\xf0\x43\xae\xcc\x64\x5d\x33\xa3\x13\xcd\x34\x2f\x12\x6d\xf6\xb2\xd6\x1e\xf7\x54\x15\xa7\xf4\x3a\x1f\xc7\x8f\xd1\xc2\x8d\x51\xeb\x0b\x97\x95\x30\x65\x6f\xc1\x0b\x16\xdc\x0c\x94\x63\x9a\xe8\xda\xb0\x8a\xad\xe8\xa4\x5c\x7c\x0a\x38\x8f\x6d\x41\xf0\x7c\xaf\x73\xd3\x65\xa0\x4c\xd9\xcc\x47\x1f\x90\x6b\x03\xe3\x0a\x07\x5a\x24\x52\x2d\x8e\x99\x7c\x83\x1c\x75\x10\xa1\x87\x09\xc4\xc0\x92\xd2\xe6\xef\x9e\x41\xde\x55\xf3\x11\x92\x3c\xf9\xbd\x90\x7d\xde\x98\xe1\x35\x44\x77\x59\xaf\x4b\xc0\xf9\xe1\x14\xba\xe2\x8e\xa9\xe0\xf0\x65\xe7\xe9\x4d\x92\xf5\xb9\xe9\x72\x73\x0d\x89\xee\x29\xb5\x04\xbd\xb1\x44\x90\xf2\xb8\x55\x3a\x5c\x67\x76\xfc\xf0\x26\x9b\x97\x8e\x25\x1c\x52\x73\x5c\x07\x23\x26\x47\xaa\x90\x3f\x05\x6a\xed\x16\x29\x7a\x9a\xdd\x78\x33\xbb\x85\x42\x37\x40\x14\xcb\x16\xd5\x5c\xcd\x7f\xfe\x51\x5f\xc3\x8a\x7d\x8a\x4c\xfd\x76\x59\xd6\xd3\x51\xf2\x47\xc6\x07\x1c\xfe\xcb\x6b\xba\xf2\xd8\x71\x4b\x64\x2a\x66\x7e\x7a\x8d\x17\x70\xfd\xf6\xcd\xaa\x09\xbf\x0e\x6a\xdb\xa1\x99\xfd\x3e\x00\x11\xb0\x55\x99\xa0\x86\x7a\xc5\x20\x54\xd6\xe2\x00\xfe\x63\x38\xfe\x13\xed\xce\x93\xf6\x39\xf6\x41\xc5\xa7\x4c\xac\xf1\x74\x7a\xcd\x79\x3d\x00\x63\xac\xdb\x34\xdf\x7b\x7a\x22\x53\xdd\xe8\xd0\x78\x39\x5c\x25\x1d\xe0\x00\xab\x72\x7d\x0b\xea\x22\x5d\x8c\x15\x01\xf1\xbe\x4d\x41\x33\xe3\x6c\x3e\xe3\x12\x22\xba\x06\x85\xa2\xcb\xfe\xf8\xe7\xec\x4f\xb7\xd7\x57\x67\x3b\x9e\xeb\x2d\x87\x8c\x60\x5b\xd6\xc4\x0a\xb6\xe1\xf5\xd8\x46\xbd\x12\xb9\x90\x67\x6c\xa3\x26\x18\x63\x7d\xc5\xb6\x45\x91\xe9\x57\xe7\xe7\x9b\xa4\xd8\x96\xab\x69\xa4\x76\xe7\xbe\x6b\xce\x79\x96\x9c\xaf\x52\xb5\x3a\xcf\x05\xa0\x6c\xcf\xbe\x9f\xfe\xf0\x3d\x8c\xcc\xf9\xc3\xf7\xe7\x10\x59\x9b\x6e\xd4\x3f\xbc\xfb\xe1\x9f\xff\xf0\x4f\xa6\xe0\x6c\x5f\x6c\x95\x7c\x45\x01\xdc\xde\xb2\xcf\xd0\x2a\x3f\xc7\x57\x6a\x5f\xf9\xe7\xe9\xef\xc3\x6a\xd0\xa3\x3b\x15\x8b\x54\x9f\x3f\x7c\xbf\xb4\x03\x33\xcd\xf6\xbf\xe1\x52\xbf\x19\x2e\xf5\x3e\x29\x7e\xc3\xa5\x7e\x53\x5c\xea\x70\x0b\xc7\xed\x31\x40\xf4\xe9\xf7\x47\xf3\x77\xb7\x47\x5a\xd7\xfb\xa1\x7d\xa8\xe5\x70\x08\xb3\x06\x4e\x38\x22\xee\xc5\xa8\x2b\x76\xad\xb9\xee\xea\xd0\xe1\x62\x1b\x4b\xb6\xdf\x69\xcc\x8f\x4a\x92\x06\x14\x48\x12\x01\x91\x33\xba\x04\x33\x9e\xb4\xa1\x4d\x09\xed\x74\x4a\xff\x3d\x27\x25\xf9\x53\x73\x91\x53\x73\x8f\xe4\x21\x4f\xf1\x6d\x8b\xcd\x52\x8f\x96\x7f\xfc\x29\x58\xbb\x07\xea\xb8\x3a\x32\x62\x9c\x3c\x50\x17\x5b\xaf\x8e\x6a\x6c\xb9\x3e\x0e\xe4\x37\x43\xca\x3f\x17\xa7\x73\xaa\xf8\xf4\x41\x7b\x70\x58\x16\x05\x10\x09\x27\xb2\xa6\xac\xcc\x33\xa5\x85\x9e\xb2\xb7\x35\xa5\x43\x0f\x5c\xbc\x79\x7b\xc1\xbe\xff\xf1\x9f\xff\xb0\x90\xdf\xb5\x9c\xdb\xb0\xdf\xab\x7c\x43\x38\x4a\x38\xad\x77\x5c\x17\x22\x3f\xcf\xd7\xd1\x39\xee\x72\xe7\xe6\xfd\x33\xfa\xe8\x99\x5a\x9f\x39\x4a\xe2\x33\x62\x67\x9d\xee\xe2\x71\x04\x03\x95\xa9\x87\x67\x0d\x1d\x34\x1a\x0e\x25\xa4\x22\x52\x6b\x47\x3e\x8f\x79\x2e\xa8\x53\xa1\xd6\x2d\xff\xf1\x3a\x55\x2b\xfd\xd2\x11\xa0\x71\x6d\xbf\xe1\x19\x89\xba\x97\xe6\xd3\xb0\x93\xdb\x29\xf2\x9c\x8e\x0a\xbb\x97\x84\xd7\x91\x31\x1d\xdf\xbe\xd8\xfc\x71\x8f\x7c\x0c\x3c\x57\xa5\xb4\xec\xce\x4a\x0a\xb5\x06\x14\x1f\x58\xc2\x16\xa5\x00\xbe\x5a\x73\xd2\x7a\xee\x85\x5c\x64\x78\xc0\x40\x54\xa1\xbb\xbb\x4f\x64\x38\x3f\xd4\xcf\xcf\xc1\x70\x7e\x6a\xbf\xd3\x86\xf2\x8d\x3a\xfc\x54\x28\x21\x2e\xa5\x31\xa8\x0a\xf3\xfc\xc1\x08\xaa\xdb\x07\xbc\xfa\x90\x27\x13\xce\x78\x0e\x46\x9a\x38\x2b\xd4\x19\x90\xd6\x00\x15\x0a\x6a\x0e\x74\xc1\x2a\x20\xf2\x3c\xe6\x98\x34\xcf\x0f\xa8\x27\x1a\xe6\x5f\x82\x8a\x92\x4d\xa2\x91\xc2\x93\x20\x59\x89\x94\x22\xa7\x98\xda\xc1\x13\x75\x64\x5c\x3a\x1c\xca\x7e\x44\x56\xa0\x6b\x1d\xf0\xc1\x3b\x3c\x3e\x0f\x36\x81\x29\x03\xeb\x73\xab\x76\xca\x98\x33\xaa\xd4\xc1\x8f\x78\x7b\x81\x43\xb8\xd3\xf6\xda\xf1\x0c\x49\xea\xbe\x5d\x6b\xcc\xd2\x32\x3f\xa1\x53\x2f\x7c\x68\x94\xc4\xc6\xaa\x2a\x2a\x70\xa0\xfe\x8e\x0d\xbe\x7f\xde\x00\xea\x01\x75\xea\x40\x2a\x96\x38\x9e\x93\xff\x34\xf7\x1a\x33\xa5\xdc\x4d\xc1\x9d\xdc\x08\xd2\x41\x2e\xc6\x90\xee\xd5\x5a\xf3\x9d\xd9\xd2\xe5\x6e\xe4\x18\x38\x90\xf1\x90\x01\xe0\x12\x61\xb7\x16\x6f\x7b\xd6\x0a\xb8\xed\x5a\x97\x56\x98\x35\x5e\x5a\xbe\xd0\x71\x55\xbd\x75\x05\x10\x35\x68\xb3\xde\x9e\x6e\x09\xd0\xd9\xd8\xc7\xb8\x21\x58\xdb\xa2\x03\x74\x23\xc7\x2f\x46\x10\x58\x19\xd3\x77\xf0\x11\x9c\x9c\x8d\x1e\x0c\xd6\x42\x57\x07\x8e\x73\xb1\xf5\x79\xac\xda\xe0\xfc\xc8\x50\xe7\xb3\x77\x4c\x2d\x1b\x97\x47\xf7\xe2\x83\x57\xa1\xde\x67\x62\xc2\x56\x25\xfc\x7e\x75\x7d\x17\xa2\x35\x12\x6c\xed\x59\xb4\x15\xd1\x3d\x38\x4c\xf0\xc8\x73\xa2\x8d\xc4\x86\xb7\x90\x5e\xfa\xab\x50\x16\x7a\xb0\x77\x6c\xe8\x4e\x11\x40\xe5\x2c\x4e\x74\x96\xf2\x3d\x04\x79\x25\xe2\xf4\x7d\x80\xd8\x25\xb8\x98\xad\xe0\x90\xbf\x78\xf8\x48\x9b\x51\x99\xf9\xf7\xc6\xf6\x25\xcf\x57\x49\x91\xf3\x7c\xcf\x7c\x67\x36\xf7\x03\xa6\xc5\x8e\xcb\x22\x89\x16\x72\x27\xb8\x0c\x51\x79\x14\xe4\x36\x9d\x1c\x2b\x41\x7c\xc1\xeb\xb5\x88\x0a\x4f\x38\x08\xc6\xbb\xeb\xa9\x43\x6b\x70\x5c\xdb\xdd\xca\xeb\x6d\xfa\x4f\x89\xc4\xf4\xf6\x64\x07\x98\x4f\x9a\x43\x74\x34\x1e\x19\xbc\x01\xa9\x38\x3a\x72\xed\x65\x10\xfe\x65\xe7\x14\x5b\x89\xe2\x51\x40\x3e\x3d\x25\x00\xb6\xd9\xf8\x27\xcb\x05\x9c\xa6\xfe\xdb\xae\x9b\x1c\x20\xc1\x70\x81\x85\x60\x32\x47\xfc\x23\x6b\x0c\x3e\x2f\x28\x25\x11\xbc\x3d\x2f\xc8\x6f\xf5\x02\x8e\x69\x73\x7b\xcc\x1f\x44\xbc\x90\x55\x5a\x25\xb2\x19\xfd\x82\x63\x5e\x08\xeb\x69\x76\x1b\xdb\xc7\x83\x7c\xf9\x97\x40\x25\xe1\x49\x24\x5d\xd2\x5d\x8f\x30\x17\x36\xfa\x39\x6f\x55\x56\x13\x30\xb4\xee\x07\x40\xb2\x84\xb6\x42\x37\xa4\x8b\x57\xc1\x53\xb8\x49\xe9\x48\x63\x90\x51\xce\x01\x60\xc9\x2f\xd9\xf0\x74\xb6\x95\xb1\x90\x36\x9b\x7a\x5d\xa6\xc8\x12\xda\x25\x15\x46\x1c\x52\x36\xf3\xe3\xdb\x65\x00\x39\xbf\x1a\x0b\xb4\xc5\x1c\xec\x21\x00\x23\xe3\x5e\x67\x67\xbd\x90\x1a\x05\xa9\xad\xac\x10\x38\x9e\x37\xa2\x80\xd3\x3c\x2e\x53\x4c\x0e\x06\x8f\x39\xf0\x51\xf1\x34\x65\x49\xa1\x17\xd2\xd1\x67\x21\x19\x3a\xec\xb0\xd6\xa5\x6e\x15\x69\xa5\xd3\xb5\x25\xed\x7e\xb0\xc3\x92\x28\x29\x1a\x10\xee\x7d\x28\xc5\x91\x65\x82\x63\x2e\x1b\x0e\xdb\x42\x86\x77\xae\xfa\x20\x50\xe2\x17\x68\x94\x3f\x45\x0e\x56\x0f\x22\x1f\x84\xdd\x47\x0f\xc9\x94\xcd\xb0\x75\xe6\xc2\x65\x55\x36\xb1\xb6\x94\x3f\x4f\x48\x4b\x73\xab\x29\xb4\xf5\x91\xfb\x7b\x2b\xc8\x39\x47\x65\xca\xf3\x14\x38\xe9\xd7\x65\xca\x92\x75\x20\x18\x0a\x63\x80\xe4\x49\x66\xb8\x22\x05\x67\xb5\xf5\x92\x6b\xbe\x13\x41\xde\x36\xb9\x77\xd2\x00\x43\x81\x8c\xd0\x18\x9c\x37\x65\xbd\x9c\xb2\x37\x75\x85\x79\x58\x13\x01\xe9\x62\xa2\x71\xfb\x73\xf5\x0d\x52\x0e\x51\xa9\x3e\x59\x9b\x2b\xe5\x8b\x60\xd5\x75\x8c\x20\x90\xb7\x8f\x03\x68\x58\xea\xfe\x7e\xd4\x70\x6b\xca\xb1\x79\xb5\x06\xdb\x70\x0b\xa2\xa3\x82\xf6\x54\x18\x59\xc9\x90\xb0\xf2\x88\x8a\x3a\x42\xd0\x96\xca\xee\x7a\xf4\x49\x61\x1c\x47\x56\x35\x50\xfb\x19\x5f\xd1\x60\xe6\x84\x70\x9c\x21\x3d\xbb\xe1\xc5\x58\x6c\x8e\x4b\xc6\x19\x5f\xd1\x56\x1c\xd4\x90\x6a\xc2\xee\x31\xb2\x9e\x5e\x82\x7f\x7c\x45\x9d\xf4\xb3\xd7\x03\xf0\x9a\xf8\x95\x1c\x4a\xcb\x74\xe8\x5a\xa0\x17\x92\x0e\xbb\xf1\xe9\x9f\x33\x3f\xe7\x40\xf0\x88\x99\xea\x4f\xd9\xb5\x14\x88\x9c\x53\xeb\xe0\x50\xa1\x0a\x90\x32\x12\x90\xcd\xcb\x40\x82\x3a\x4d\xe4\xbd\xa5\x96\x30\x4b\x6e\xc2\xb8\x2f\x1d\x76\x3d\x9c\x36\xb8\x8b\x74\xd8\x92\x6d\xd2\x0c\x27\x98\x97\xc3\x12\x34\xdb\xef\xfc\x01\x00\x75\xfc\x0e\xd0\xd6\x8e\xe1\xc3\xd2\x8b\x24\x77\xb7\xb8\x8a\xc6\x78\x88\x1a\x2d\x92\x62\x7f\xa8\x7f\x3f\x6c\xab\x28\xc4\x11\x42\x46\x1f\xaf\xde\x5c\xbe\x9d\x5f\x55\xd5\x87\xfe\xf2\xf1\xf2\x63\xf5\x2f\x37\x1f\xaf\xae\xe6\x57\x7f\x0c\xff\x74\xfb\xf1\xe2\xe2\xf2\xf2\x4d\xf5\xb9\xb7\xb3\xf9\xbb\xda\x73\xe6\x4f\xd5\x87\x66\xaf\xaf\x6f\x6a\x7a\x47\x56\xac\x28\xf8\xd3\xdd\xfc\xfd\xe5\x9b\xe5\xf5\xc7\x8a\x64\xd2\x9b\x7f\xbd\x9a\xbd\x9f\x5f\x2c\x5b\xea\x73\x73\x79\x71\xfd\xf3\xe5\xcd\x01\xc5\x23\xdf\xde\xd6\x2e\x7d\x0a\xf8\xd8\xd1\xfa\x57\x33\xb6\xce\x13\x21\xe3\x74\x8f\xd8\x7b\x7b\xb3\xad\x81\x69\xc3\xb3\x37\xd9\x09\x55\x9e\x02\xa1\xbf\xdb\xa2\x42\x3d\xb0\x60\x60\x69\x94\x32\xcb\xf5\x7d\x27\x47\x62\x91\x37\xa3\x02\xbd\x99\x42\x45\xbe\x77\xb9\x68\x7d\xd5\xf1\x0c\x4a\xf4\x11\x96\x89\xbc\xaf\x2e\x60\x19\xe5\x65\x56\x24\xab\xee\xa4\x88\x81\xcc\x42\xe3\xef\xde\xc8\xf7\xd7\x4e\x8e\x72\xd5\xbe\x31\x56\x72\x03\x4e\x01\x1e\x43\x09\xc7\xca\xba\xb9\xb7\x2d\x58\x33\x2b\x57\x69\x12\xb1\x24\xae\xfb\x53\x30\x85\x0d\x5d\xc6\x75\x5a\xd0\x4c\xe4\x60\xaa\x9a\x1b\x40\x96\x8b\x33\x5e\x16\x5b\xab\x38\xef\x32\x19\x91\xa6\x53\x44\xb9\xc0\x58\x80\xd0\xe0\xa4\x45\x3d\xaf\xe0\x4b\x50\x19\xca\xe0\x8e\x81\x2c\x66\x1a\x50\xb4\x77\xc4\x08\xf0\x4d\x2c\x7d\x84\x93\x14\x9f\xef\xed\x1a\xaa\x71\xa2\xeb\x62\xce\x70\xc2\xe3\x8f\x56\x15\xcc\xb4\xdb\xec\xd4\x4e\x15\x0b\x07\xd9\xe6\x6e\xb4\x37\xe3\xd0\x1c\x0b\x27\x4a\x35\x99\x81\x4a\xa7\x9f\x2e\x72\x01\x87\x08\x41\x01\xac\xff\x02\xa0\x2b\x94\xeb\x01\x29\x1e\xe6\xaa\xb6\x12\x5b\x9e\xae\xd1\xe2\x30\x43\xe3\xd7\x55\x73\x8a\xde\xa9\x7b\x21\x6f\x70\xc0\xbe\xc9\x76\x28\xf1\xe6\xe3\x73\xfa\x9d\x47\xc8\xbb\x30\x4d\x1d\xed\xac\xb2\xb9\x6e\x60\x4c\x15\x78\x4f\x08\x7e\xc6\x94\x0e\xcf\xd8\x6b\xd3\xe4\xd6\xeb\xe4\x8b\x29\x70\x21\x45\x2b\x67\x29\xe0\x85\x2c\xbb\x92\xdb\x97\x01\x1b\x85\x14\x35\xf7\x42\x82\x9e\x18\xca\x0d\x1f\x9c\xb3\xe3\xfc\xe7\xcd\xb1\xe8\x71\xe8\x83\xcf\x2f\xa9\xc8\xac\x85\x51\x1e\xdb\x4f\x05\xe6\xd8\x4c\xd9\x1b\x22\xde\x30\x7f\xb9\x78\x37\xbf\xbc\xba\x5b\x5e\xdc\x5c\xbe\xb9\xbc\xba\x9b\xcf\xde\xdd\x0e\x5d\x7e\x4f\x91\x17\x55\x5b\x7d\xf5\xf4\x20\xb7\x43\x9c\xd3\xca\xf3\xe9\xb9\xae\x51\x7e\xd9\xc1\x90\x1c\xae\x7d\x12\x67\xcb\x38\xd1\x91\x39\xfe\xf6\x4b\x21\x63\x20\x7b\x3e\x6a\xaa\xb6\x17\x55\x6f\x85\x7b\x82\xb9\x27\xec\x0e\x82\xa7\xdd\x83\x9d\xd1\xee\x77\x40\xdd\x81\x1b\x32\x17\x66\xf1\xc7\xe6\x7e\xe0\x4e\x9b\xe9\x61\x85\x0f\x53\xdc\x69\x6d\xab\x16\x51\x6f\x13\xd6\x37\xd1\xba\xe4\x66\x7f\xb4\x8f\x01\xe4\xb0\xa3\x57\x88\x81\x2f\x64\x9c\x4e\x02\xb5\x54\x96\xe8\x85\xdc\x71\x19\xf3\x42\xe5\xfb\x8e\x26\x0e\xdb\x3c\xc3\x65\x53\xdd\x42\xc3\x23\x5b\x0a\x11\xdb\x51\xc0\x47\xb9\xac\x4f\x25\xe4\xa5\xbe\xbb\xfe\xf3\xe5\xd5\xed\xf2\xf2\xea\xe7\xe5\x87\x9b\xcb\xb7\xf3\xbf\x3a\x24\x64\xc6\x75\x9b\x3a\x62\x96\x0b\xb3\xbb\x58\x9a\x8f\xd6\xfd\x05\x25\x0b\x6d\x39\x24\x53\x95\xac\x17\xd2\xee\x2c\xb9\x2f\x7e\x9b\xab\x72\xb3\x6d\x2f\xa8\x5e\xcb\x0f\xb3\xbb\x9f\x8e\xaa\x26\x90\x30\xa1\xae\x19\xae\xb6\x26\x22\x34\x59\xd3\xbe\x87\x30\xd2\x5a\xf5\x80\x4a\x0c\x1e\x6d\x8b\x32\x74\xec\x68\x47\xdd\x5e\x9a\x9b\x56\xaf\xf1\xdf\xf2\x78\xd7\x04\xba\x0b\xf6\xcd\xca\x31\x02\x08\x65\x94\xc7\x6c\x94\xf6\xaa\xe5\x6f\x95\x13\xec\x87\xb3\x54\x6c\x36\x22\xc6\xe9\x55\x2f\x98\x7c\x70\xb4\x05\x46\xfe\x5c\x6f\xeb\x45\x12\xb0\x3b\xe1\x60\x76\x78\xaf\xe1\x1b\xf8\x07\xf7\x4a\xfb\x5e\x71\x61\x45\xb2\x23\x25\x75\xc1\x65\x47\x20\xf9\xa1\x89\xd0\x1c\xb4\x15\x5d\xe7\xcc\x25\x3f\x91\xc3\xc4\x86\x0c\xfc\x3a\xe8\x02\xbc\x9c\x8e\x0b\x75\xf5\xb8\x11\x59\xca\x23\xe1\x72\x18\x90\x01\x0f\xee\xf5\xc7\x04\xf0\x48\x26\x50\x92\xbf\x25\x90\x0f\x0c\x34\xc5\x5b\xa6\x00\x78\x6e\x6f\xec\x7e\xfc\xfc\xae\x95\xde\x8b\x1b\xf1\x5e\x81\xa3\x19\x75\x9a\x08\xfa\x8e\xbe\x28\x10\x3f\xeb\x84\x25\x8f\x9a\x0e\xb5\x2f\xff\x4c\x03\x8f\x77\xe6\xaa\xa3\x9b\x5b\x66\x39\x37\x3d\x9c\xe9\xd8\xe7\x2f\x2c\x8a\xbc\x97\x8c\xf2\x29\xc2\x11\x1f\x72\xb5\x4b\xb4\x98\x15\x45\x9e\xac\xca\x50\x8d\x6f\x24\x60\xae\x72\x39\xf1\x0d\xce\x72\x15\x97\x91\xa5\x04\x82\xd6\x7a\xd8\x0f\x79\xf9\xac\xd5\x11\xb3\x33\x33\xfb\xe8\xe6\x26\xe2\x33\x00\xf4\x2f\x64\x57\x8c\xcd\x6e\x8c\x1d\xbe\xbf\x0f\xf6\x28\x3f\x65\x4a\xb6\x4c\x8a\xee\xce\xb4\x73\x60\x58\x62\x2d\xb3\x8f\x83\x05\xdc\x81\x9a\xa2\xe9\xb2\xe2\x18\x40\xaf\xda\x28\x5d\x0c\x20\xee\xa8\x19\x07\xee\x1a\x86\x8d\xa9\x66\xcc\xa0\xdd\xb0\xe5\x1a\xcd\xf9\x22\xda\x56\x2b\x0e\xad\xa9\xb2\xe6\xd5\xab\xeb\xcc\xe3\xd3\xdc\x26\x83\xc2\x68\x13\x74\x34\x24\xe4\xd8\xae\x28\xa0\x39\x39\xc7\x71\xde\xee\xd0\x62\x74\x37\x3a\x3c\x0c\x60\x1f\x4d\x79\x29\xa3\x2d\xcb\x52\x8e\xc9\xe4\x5b\xae\x71\x4a\x5b\x2c\x09\x5f\x25\x69\x52\x00\x4b\x0f\x86\x38\x6b\x3d\x6c\xae\x79\x3c\xbf\xb7\xc4\xb8\xdc\x53\x32\xf5\x4d\xfa\x13\x31\xbb\xae\x55\x5f\x15\xb5\xeb\x97\x6c\xb8\x0d\x0d\x9b\x96\x84\xd8\xf5\xc3\x61\x36\x62\x98\x96\xbe\x2d\xe3\x46\x96\x4a\xfc\x50\x7f\xbd\xd2\xdf\x2d\xd6\xcb\x78\xc4\x0a\x31\xbe\x8f\x38\x7d\xea\x7c\xf0\xad\x2b\x6b\x9d\x2a\xde\xa1\x49\x6c\xcb\x46\x7a\xf7\xae\xb2\x63\x55\xae\xba\x08\x85\xb1\x56\xfd\xa5\xf7\x05\x43\xec\xba\x7d\x2a\x67\x69\xb8\x01\xf2\x42\x14\xc9\x38\x7f\x4f\xd0\x68\x5e\x88\x33\x78\xbd\xbd\x70\xca\x30\x1c\xdc\xe6\xc6\x44\xf3\x22\x23\xce\x68\x03\x2c\x61\xdb\xec\xaa\x9d\xce\xa7\x60\xc2\x4f\x1c\xaf\x44\x1e\x98\x4a\x87\x75\x0b\xfe\xf0\x43\x4b\xb7\x34\x1a\xfd\x97\x92\x9b\xfd\xf0\x7a\x7d\x8b\x5c\x39\xa7\x34\xba\x48\x9a\xcb\xaa\x7d\xfb\xa9\x7f\xf5\xae\x1a\x5e\x0b\x27\xfe\xe0\x4c\xe4\xb6\xd6\xdc\x9a\xb7\x87\xef\x42\xf3\x8a\x1b\x2d\xcb\x13\x05\x9c\x31\x6a\x8d\x0c\x8c\xdd\x74\x93\xad\xdf\x3d\xa1\x27\x3f\x97\xa2\x14\x66\x02\xad\xca\x78\xd3\xf4\x72\x8f\xb0\x94\x7d\x93\xb6\xea\x91\xed\xca\x68\xcb\x6c\xe1\x2c\x16\x29\xdf\x57\x9a\x06\x46\x62\xa1\x52\x20\x70\x3e\x92\x4d\x36\x2a\x75\xa1\x76\x00\x30\xf6\xe5\xe6\xa5\x84\x55\xce\xb8\x5d\x5d\x6d\xfb\x7b\x85\x5d\xee\xc8\xd0\xe6\xed\x87\xcb\x8b\xf9\xdb\x79\x2d\xae\x38\xbb\xfd\x73\xf8\xef\x5f\xae\x6f\xfe\xfc\xf6\xdd\xf5\x2f\xe1\xdf\xde\xcd\x3e\x5e\x5d\xfc\xb4\xfc\xf0\x6e\x76\x55\x89\x3e\xce\xee\x66\xb7\x97\x77\x07\x02\x8c\xcd\xaf\x76\x0f\x04\x0f\xc8\xef\x2c\xe4\xd9\xb2\x80\x5b\x3f\x03\x7d\xf5\x15\x9b\x59\x2a\xc0\x0a\x59\xa5\x0d\x12\x03\xaa\x04\x35\xb1\x29\x96\xfc\x86\x17\xfc\x82\x17\x3c\x55\x9b\x29\x9b\x31\x02\x84\x23\xd0\x5f\x1b\x0b\x89\x78\xd2\xcc\xe8\x60\x11\xc6\x4c\x8a\xfc\x1d\xde\xcb\x1c\xaa\x35\x31\x14\xa6\x22\x24\xc4\xb7\x59\x6d\x0b\x79\xf9\x20\x64\x51\x02\x5b\x37\x4f\x53\x46\x9f\xb5\x0f\x04\x19\xfb\xb6\x96\x3a\xd9\x25\x29\xcf\xbd\x22\xdd\x35\x95\x05\xb7\x14\x5b\x57\x47\xd0\xd4\x4c\x07\xb7\x17\xb9\x8f\x73\x06\xf5\xbe\x78\x37\x07\xbb\x2f\x2a\xac\xdc\x8a\xfd\xf8\x42\x22\x03\x1e\x7d\x71\xc7\x21\xf9\xa4\x50\xe4\x59\xc5\xcf\xd3\xc3\xdd\x13\x51\x9f\xb2\x88\x6d\x0c\xe2\xb9\x6e\x94\xae\x92\xf6\x3f\x2e\x65\x91\xef\x07\x1b\x73\x77\x90\x6d\xad\xc1\x20\x27\x2c\x5b\x55\xa5\x0e\x1d\x5f\xcc\x96\x7e\x05\x16\x9e\x05\x5a\x52\x5c\xc6\x85\x5f\x10\xd7\xd2\x71\xe9\x48\xcd\xc9\xfb\x6b\xed\x87\x90\x10\x07\x7a\x61\xa5\x4a\x19\x6b\x42\xdd\xed\x12\x79\xbe\xe3\x5f\x5e\xda\x96\x22\xc1\x84\xd3\x8a\x00\xf2\x30\x91\x9a\xeb\xd7\xde\x6c\x72\xfd\xdd\xb5\x90\x3d\xfd\x75\xd8\x44\xb6\x3b\x2b\xdc\xf5\xfc\xc5\x1c\xf1\x83\x0f\x62\xdf\x36\x7e\x0d\xbd\x1f\xc4\x28\xd2\x82\x87\x42\xb2\x5c\x98\x07\x1d\x38\x31\x45\xcc\xa9\xfb\x37\x24\x21\x54\x34\x09\xdb\xf7\xee\x30\xde\x7f\xd2\xb2\x69\x45\x1a\x3c\x83\x60\x13\x7d\xc9\x8c\x19\xe2\x0e\xac\xcb\x9b\x92\x2e\x28\xa0\x6a\x06\xeb\x3f\xd4\x8a\xad\x21\x03\x89\x34\xc7\x73\x01\x21\x0e\x18\x0a\xcb\x30\x0e\x14\x53\x0d\x30\x83\x9d\x02\xa9\xd0\xe0\xf8\x97\xe6\x8e\x29\x3e\x97\x14\xbb\xfd\xfe\xf7\xe3\xce\xd9\x22\xdf\x33\xab\x66\x11\x66\x40\x51\x02\x20\x9d\xb9\x50\xaf\x52\x26\x6d\xbc\x73\x37\xa5\x34\x47\xf1\x53\xc0\x5e\x86\xc7\x35\x6b\x1f\xa5\x7f\x1e\x4c\x12\xb2\x2e\xf9\x1c\x9f\x7f\x36\x1a\xd1\x9f\x6b\xec\xa1\xf4\x39\x80\xa4\x53\xe9\xe1\x81\xb6\xe2\xd1\xfd\x23\xcf\x63\xf4\xdb\x02\x0e\x65\xca\x7e\x52\x8f\xe2\x41\xe4\x13\x16\x89\xbc\xe0\x44\xdd\xa5\x21\x10\x0f\x0b\x8a\xca\x59\x48\xc8\xd0\x40\x1e\x34\x09\x72\xed\x45\xb2\xd9\x9a\x4b\x74\x00\xa3\x50\xb9\xd9\x8e\x0a\x64\x6d\xcc\x44\x44\x64\x49\x1d\x1d\xb0\x4e\xf9\x43\x93\x8b\xec\x18\x96\x07\x36\x77\x69\xa6\x36\x4e\x69\x55\x1b\xfa\x80\x2f\xd4\x61\xb4\x69\x22\xbd\xcd\x84\x6d\x54\xca\xe5\x66\x3a\x9d\x32\x51\x44\xd3\x97\xa3\x26\x3a\x15\x18\x46\x3e\x1d\xbc\x3a\x55\x4a\x8b\x74\xef\x08\x7e\x5c\x02\x0c\x20\x2e\xbf\x14\x42\xea\x04\xfd\x3c\x2d\xd3\xff\xb6\x1e\x15\xf8\xba\x41\x94\xf6\xeb\xf9\xe8\xf4\xca\x8e\x72\x40\x04\x6a\x44\x49\xf8\x7c\xfb\xcd\xeb\xa8\x74\xe1\xf6\xb2\xa4\x92\x63\x73\x60\x7f\x56\x5d\x92\xe6\x47\xf1\xee\xb5\x96\x44\x24\x25\x47\xe5\x0d\xb6\xf7\x59\x23\x95\xf3\x84\x2c\xce\x9e\x84\xcc\x91\xb9\x98\x43\x1c\x01\xb7\xf5\xe1\x1e\xbd\x2c\x0e\xeb\x52\xb4\x36\x68\x64\xae\xab\x4f\x4a\x1f\x63\x3a\x61\xba\x5c\xba\x87\x1b\x97\xcb\x7c\x05\x77\x7a\x1c\x84\x03\x2a\xd1\x0e\xc8\xc1\xf2\xe1\x12\x47\x1e\x15\x44\x47\x74\xa1\x72\xbe\x11\x6c\x27\xe2\xa4\xdc\xb5\x6e\x36\xae\xba\xa7\xe0\xfe\x54\x5a\xee\xba\x69\xfc\x4e\x35\xa0\x7d\x25\xf1\xbf\x2e\xe0\x73\x83\x0d\x68\x2f\xde\x6f\xe5\x81\xa8\xbe\xe8\xfb\xa7\xbe\x36\x27\x65\x9e\x68\x20\x9c\x3c\x26\xe5\xd1\x15\x83\x45\x43\xe4\x74\x9f\xa1\xcf\xb9\x32\xba\x67\x36\xa4\x45\xaf\x68\x1c\x55\x08\xb7\x76\x1f\x0a\x75\x34\xe1\xe8\x31\x02\xf1\x99\xa3\x22\xdc\x60\x36\x06\x34\xf0\x04\x77\x82\x02\x09\x93\x51\x28\xb6\xb6\x49\x74\xf7\x22\xa0\x25\x8b\x81\x20\xfe\x11\x39\x6e\xfe\xfc\xa3\xb6\xe8\x0d\x02\xd8\x78\x8b\xa5\xf0\x1f\xc1\x80\xc8\xc3\xf7\x16\x57\x85\x2d\xc4\x22\x80\x3c\x2c\xe6\xb2\x68\x2d\xc0\xc3\x0e\xa1\x2c\x7c\xe5\x67\x5e\xa6\xed\x8f\x53\xf9\xf0\x28\x8a\x4d\xcd\x7e\xb9\x65\xd8\xd5\x44\x25\x9e\xf7\x55\x34\x28\xe4\x30\xb2\x0b\xba\x6b\x79\x84\x25\x58\x19\x07\xec\x74\xcb\x25\x6f\xba\x5d\x14\xd1\xd6\x5b\x1e\x55\xd5\x68\x52\x12\xa4\x76\xee\x3c\x39\x3a\x82\x66\x43\xf4\x61\xb2\x91\x2a\xd4\xf5\x50\x52\x40\x64\xca\x6c\x40\x2a\x2c\x96\x25\xc5\x61\x88\xd7\x48\xc6\xb0\x43\x53\xad\x50\x08\xdd\xa1\x76\x56\x02\x8c\x70\xa5\x48\x90\x67\xc8\xe2\x63\xf1\x4e\x44\xc2\x74\x75\xd2\xec\x2a\x73\xc3\x42\x56\x3f\xd5\xe8\x24\x8b\xc1\x4a\x72\x81\x5c\xb7\xda\x58\x6f\x45\xf2\x60\x16\x6a\x73\x5a\xbb\x09\x0a\x3b\x40\x73\xee\x2d\x24\x56\x3b\x20\xcc\xbd\x17\x7b\x1d\xaa\xe0\xd1\x8c\x62\x5d\x13\x32\x31\xed\xa1\xf1\x3a\x3c\x14\xd0\x71\xcb\x40\xd5\x7f\xd8\x59\x86\x1f\x7d\x6f\x5e\xee\x01\x77\x36\x0a\x37\x73\xd0\x67\x29\x7a\x9f\x22\x6d\x13\xbe\x9f\x69\x0c\x3d\x7e\x0b\xd0\x79\x21\xfe\x2e\x4c\x39\x81\x8b\xaf\xb9\xdf\x2e\x24\x71\x6a\x07\x87\x9c\xd9\x70\x9a\xc3\x46\xa9\xd3\xc8\xe4\xbb\xaf\xd0\xbe\x00\xed\xa1\xa5\x80\xac\x7e\xd2\x06\x5b\xad\x88\xea\x42\xc2\xa7\x31\xb9\xd4\xfa\xf0\x5a\x3f\x78\x24\x28\x90\x06\xb7\x13\x08\x18\x64\x70\xe1\x93\xc4\xfc\x87\x72\x8a\x78\xfb\x89\x84\xe9\xbe\x99\x6c\xc5\xe0\x59\x04\xde\xed\xe5\xc5\xcd\xe5\xdd\x57\x03\x0a\x5a\x94\xde\x68\xa4\xa0\xad\xe7\x9b\xcb\xb7\xb3\x8f\xef\xee\x96\x6f\xe6\x37\xcf\x01\x15\xa4\x9f\x8e\xc0\x0a\xde\x12\x55\xff\x85\x92\x85\xf8\x72\xd2\x99\x9c\x97\x72\xc9\x47\xe4\xac\x38\xb1\x8e\x3e\x73\x07\x0b\x6d\x4a\x0d\x38\x1d\x00\xe2\x9d\xc4\x13\xcd\x29\x0b\xac\xbd\xd3\x70\x9d\xa4\x29\xa4\xf0\x3a\xf7\x3a\xa5\x87\x99\x4e\x85\xfd\xc7\x52\x6d\xd2\x9e\xba\x90\xab\x8a\x12\x04\xb8\xfc\xb6\xe6\x12\x8c\xc9\xbb\x99\xe9\x80\x3c\x81\xd4\xc8\x3e\x35\x82\x4d\x22\x85\xaf\x06\x4a\x1f\x97\x92\x75\x52\x48\xd3\x20\x3e\x27\x24\x8a\x0c\xaf\xa1\xb6\xa6\x9d\x71\x95\xf9\x69\xcd\x4f\xfb\xa3\x6b\x21\x2e\xe2\x44\xa2\x61\x5a\x59\xcd\xb7\xed\x53\xf7\xdc\x2f\x01\xe8\x77\x33\x92\x1c\x62\x10\xa0\x2e\xec\x07\x92\x06\x02\x55\x8a\x7c\x70\xe2\x3e\x41\xe8\x90\x5a\xd7\xfa\xd9\x6c\x85\xa6\xaf\x13\x88\x54\x70\x62\x25\x89\xd2\x52\x17\x22\x27\xb7\xc9\xec\x97\xdb\x85\x7c\x6d\x8e\xaf\x97\x74\x0a\x91\x92\x0d\x7e\x02\x81\x2b\xaa\xf2\x7d\x6b\xa1\x84\x3b\xd8\x77\xe8\xa3\xde\x09\x2e\x35\x2a\xbf\xa7\xa9\xc8\xfd\xcc\xc0\xfa\x08\x11\x93\xfa\x1f\xd0\xb0\xfa\xf7\x49\xfc\x5b\xc1\xaa\x35\xf5\xa5\x5f\x49\xfe\xba\x3e\x9f\xba\x32\xc4\x01\x2a\xfc\x9c\x33\xa7\x25\x63\x65\xe8\x2c\x22\x94\x75\xeb\x24\xaa\xe6\x8f\x0c\x9a\x4b\x77\x58\xdc\x6f\x53\xe9\x09\xa7\xd2\x80\x73\x3d\x3c\x25\xd8\x56\x99\x0d\xd4\xc9\xbc\xf8\x30\xb3\x63\xa8\x48\x01\xf4\x65\xba\xb1\xf5\xd4\xa9\x49\x1d\x9e\x82\xfd\x80\xa2\x4e\x83\xd6\xce\x5a\xa8\x70\xbc\xa6\x96\x8d\xed\xf4\xaa\x28\x3e\x0f\xe5\xdc\xcc\x82\x0c\xa5\x2a\x2c\x79\x84\xc3\xf5\x11\x48\xd1\x3c\xe0\x58\x4b\x7a\xeb\x48\x4c\x20\xd6\x4a\x59\x9e\xa8\x44\x76\x17\x82\x21\x2b\xe9\xb4\x58\x8b\x30\x11\xdf\x26\xdf\x3b\xf2\x8e\x31\x93\xef\x78\xad\xcb\xea\x9c\x73\x44\x90\x47\x81\x1d\xae\xae\xaf\x2e\x43\xa8\xc2\xfc\xea\xee\xf2\x8f\x97\x37\x95\x44\xec\x77\xd7\xb3\x4a\x32\xf5\xed\xdd\x4d\x2d\x87\xfa\xf5\xf5\xf5\xbb\xcb\x06\xe6\xe1\xf2\x6e\xfe\xbe\x52\xf8\x9b\x8f\x37\xb3\xbb\xf9\x75\xe5\xb9\xd7\xf3\xab\xd9\xcd\xbf\x86\x7f\xb9\xbc\xb9\xb9\xbe\xa9\x7d\xef\xe3\x45\x3f\x7a\xa2\xd2\x8c\x76\xf7\x8f\x0f\xce\x06\x9c\x98\xad\xcb\xb8\xaa\x05\x7a\xc2\x2a\x1e\x88\x3c\x3b\x34\x1d\x6d\x9e\x75\x1c\x52\xe5\xe3\xc2\x30\x55\x1d\x35\xeb\x9e\x5e\xbc\xb4\xd2\x75\x19\x3f\x6d\xdb\x33\xa7\xda\xf2\x29\x90\x80\xbd\x06\xa0\xfb\x4a\xcd\x71\xab\x0b\x48\x46\xc3\xae\xcd\x20\x82\xb5\xe1\x9d\xd2\x3d\x32\x7e\xf6\x9a\xda\x6f\x1c\xaa\xa7\xe7\x60\x3a\x40\x65\xf3\x54\x34\x16\x7d\x95\x0e\x3e\x66\xb3\xc4\x93\xd8\x1a\x0a\xf6\xc7\xe0\xe0\x86\x66\x98\x99\x13\x4c\xc7\x2e\x95\xc9\xf6\x7c\x93\x7e\xda\xb4\xb1\xf5\xa7\x8f\x34\xeb\x5e\xe3\xd8\x18\x51\x6f\xe0\x3a\x1a\x53\xef\x3b\xae\xef\xc7\xd6\x9b\x3e\xd2\xac\x37\x98\x7d\x47\xd5\x1b\x1c\xde\x45\x3b\xff\xc9\x88\x4d\x2c\x2c\xa6\x5a\x3d\x97\x9c\xed\x1e\x09\xc4\x5c\x87\xd5\xd1\x2c\x80\xe7\xbd\x5e\x66\x7c\x78\x20\x03\x6a\xe3\x96\x2b\xaf\xd1\x81\xdf\xc2\xaf\xd0\xc2\x55\x2e\xf8\x7d\xac\x1e\x69\x3c\xea\xc8\x50\x36\x68\x37\xaf\x76\x90\xd9\xc3\xed\x11\x01\x12\xf0\xe6\x93\x88\x52\xf3\xc5\x03\x4c\x2e\x21\x42\x6b\xb4\xc1\x02\x15\xd2\x3a\x83\x0c\x70\xf6\x48\x3f\x3a\x0b\x89\xd6\x7c\x9b\x92\xa9\x19\x55\x53\x23\xe2\x7c\x80\xa6\x3a\x1b\x1a\x83\xeb\x3a\x18\x58\x4a\xe0\x28\x73\x00\xd3\xad\x72\xb8\x33\x41\x87\x24\x12\x9c\xc9\xb9\xb9\xf0\xe4\x22\x4a\xb4\x08\xd4\x9c\x5a\x4f\xec\xcf\xa7\x69\x3f\x14\xbc\x68\x75\xbb\x0e\xf6\x87\xf3\xa8\x28\x79\xca\x3e\x97\x22\xdf\x13\x75\x1e\xfa\x2a\xf1\x2f\x11\x97\x98\x29\x52\x88\x5d\x06\xe9\xd8\x61\x8a\xc3\x42\xfe\x02\x40\x09\x1c\x82\x17\x9a\xfd\x11\x20\x0f\xf6\x61\x3a\x84\x77\xbc\x80\xb3\xf8\x2f\xf8\x0d\xf7\xdb\x74\x21\x2b\xea\x28\xc1\x5b\x15\xa1\x94\xe9\x42\x5a\x79\x82\x58\x45\x7a\x0a\x37\xbe\xa9\xca\x37\xe7\x24\xec\x6b\x26\xbb\xba\x5f\x29\x75\x7f\x2e\xe4\x39\xf8\xa4\x8a\x73\x5e\x16\xea\x1c\xe0\x52\x38\xfe\xfa\xdc\xea\x7f\x5a\x01\x55\x7d\xbe\x4d\x1e\x04\xfc\xbf\xe9\xb6\xd8\xa5\xff\xa0\xb3\xed\x97\xb3\x4d\x9a\x9f\x99\x77\xcf\xc2\x77\xcf\xec\xbb\x67\xf6\xdd\x33\xf3\x1a\xfe\xbf\x6c\x8f\xe1\x1d\xf1\x85\x9b\xb3\x6c\xb2\x90\x89\xd4\x22\x2f\xc0\xfa\x79\xcc\x93\xc2\xcb\xd0\xec\xd9\x8b\xff\xfa\x2f\x36\xcd\xf9\x23\xa6\x32\xbe\xe1\x05\xff\x80\xfe\xc5\xff\xfe\xef\x17\x10\x50\xc5\xa4\x9e\x8c\xe7\x9f\x4b\x51\x2c\xa4\x16\x66\x11\xb2\xff\xb3\x90\x10\x81\xdd\xed\x97\x05\xfa\x5d\xd1\x07\x19\x6b\xf6\x2f\x58\xe6\x1c\x69\x24\x63\x6d\x4a\xea\x48\x27\x48\x78\xda\x22\x19\xdd\xe1\xa2\xff\x9c\xbe\xa1\xe7\x47\x2c\xeb\xcf\x69\x75\x55\x5b\x21\x14\xfd\x39\x85\x03\x34\x55\xdc\x82\xb5\x98\x9b\xbc\x70\x4f\xa6\xca\xb5\xad\x91\x06\x34\xe0\x59\xc3\xf4\xed\x6b\xe5\x16\xa9\xac\xad\xe7\xbe\xb1\x8d\x40\xac\xc0\xc7\x21\x20\x7a\x9e\x98\x15\x72\x8b\x9e\x50\xb0\xdc\xb0\xe5\x60\x93\x52\xe8\xdc\x95\x87\x8e\x0b\xfd\x87\x57\xe7\xe7\x13\xb6\xd1\xf0\x3f\xab\xcf\xf0\x3f\x80\x1e\x7a\x2a\x36\xd6\x46\x67\x3a\x20\x5c\x73\x94\x0f\x8f\xc4\x53\xa0\xe8\xbe\x06\x01\x78\x6d\x9a\xbe\x2e\x65\x9c\x0a\x9f\x02\x59\x09\x89\xa4\xca\x4a\xd6\xa3\x63\xac\x2e\xb5\x02\x63\xbc\x12\x11\x37\x1b\x5f\xe3\xdb\x08\x2e\x55\xeb\x42\x48\xf4\x86\xe5\x5e\x89\x8d\xa3\xe7\x0a\xcc\x62\x80\x42\xf2\x82\x20\xe7\x02\xfe\x08\x1f\x01\x46\xed\x49\xfd\x27\xb6\x57\x25\x91\x43\x03\xe5\x69\x2c\xa2\x14\x18\xf8\x2d\xed\x0b\xcb\x45\x51\xe6\x92\x71\x96\x71\x19\x73\x0d\x33\x70\x9d\x43\xb4\x33\x67\xbc\x59\xd1\x09\xc2\x71\x55\x59\x00\x99\x11\x22\x0b\xc2\x9e\x40\xf6\xee\xa0\xce\x93\xa0\x12\x78\x26\x00\x89\x70\xe3\xc5\xe9\x42\x5a\xad\x30\xc2\xc2\xa1\xa7\x2c\x52\xd9\x9e\xa8\x6a\xea\x9d\x9e\x58\xcf\x19\x75\xf7\xc4\xe3\x4d\xea\xcf\x4e\x58\x52\x0d\xad\x01\x51\x78\x11\xa8\x1d\x5b\xbd\xe8\xef\x84\x8c\x54\x2c\x72\xfd\xd2\x2c\xc3\xc4\xdd\x3b\xd0\x7e\x48\xb4\x1f\x0c\xd8\xa5\xcc\xe1\x46\xde\x42\x53\xbc\x53\xd4\x31\xbd\x53\xa1\x96\x6e\xb3\x73\x0e\x2f\x95\x5f\x3b\x0a\xa6\xad\xbe\xf4\x9f\x5f\x15\x11\x13\xe2\x3a\xed\x9d\xf3\x78\x17\x04\x2e\xd9\x70\xc7\xc5\x42\xd1\xc6\x21\xe3\xc4\x4a\xcb\x26\x05\xa8\xd7\xe5\x42\x17\x0b\x49\x27\xf0\x84\xad\x05\x37\x76\xde\x84\x45\xfa\x01\x37\x63\x3c\xee\x8b\x47\xe5\x31\x38\x56\x97\x04\xc0\xb0\x95\xc2\xbd\x93\x18\x1f\x03\x44\x01\x8f\x0a\x04\x18\x74\xaa\x90\x5b\x53\x05\x3a\xab\x75\x43\x3c\xa2\x1f\xac\xcc\x45\x5d\x52\x2a\x54\x59\x81\x9e\xd8\x63\xa0\x98\xd5\xeb\x81\x3f\x98\x8d\x07\x5b\x87\x30\x90\x60\x73\x04\x8b\x9b\xb0\xb4\xb8\xce\x7c\x0c\x37\xe4\x1a\x07\xdf\x4c\xd7\xa2\xea\xe9\x08\xa8\xc0\x71\x7e\x0b\xf3\xea\x41\x87\x95\x16\xb9\xd5\xe0\xc0\xb6\x22\x33\xe0\x36\xc9\xe3\xb3\x8c\xe7\xc5\xde\x4e\xdf\x34\x59\x01\x75\x7f\x9a\xdc\x0b\x36\xcb\x73\xf5\xf8\xd4\xbd\xd0\xb9\xb5\x74\xdd\xb0\x4f\x41\xb2\x8f\xbd\xe5\xb7\xf2\x82\xd6\xdd\x1d\xc7\x71\x90\x76\x39\x3e\x5a\xbf\x93\x8b\x22\xdf\x2f\xcd\x44\xdc\x65\x9d\x3b\xc5\xa0\xa4\x89\xe1\x46\xee\x38\x7a\xd3\x9a\x0b\xa3\x93\xde\xb4\x32\xaa\xbf\x1e\x7a\xd3\x16\xe6\xd2\x26\xbd\xe9\xfc\x6a\x7e\x37\x9f\xbd\x9b\xff\xbf\x5a\x89\xbf\xcc\xe6\x77\xf3\xab\x3f\x2e\xdf\x5e\xdf\x2c\x6f\x2e\x6f\xaf\x3f\xde\x5c\x5c\xf6\xf3\x15\x35\x6b\xef\x4d\xf0\x33\x16\x7e\xe7\x15\xbb\x0b\x80\x1a\x98\x6c\x40\xf6\x37\x69\x57\xc2\xac\x32\x8b\x39\x91\x9b\x09\x2c\xd4\x57\xec\x32\xcf\xe7\x3b\xbe\x11\x1f\xca\x34\x05\x38\x15\x66\xf6\x5c\xe4\x02\x2e\x9e\x13\xf6\x41\xc5\xf3\xe0\x3d\x48\x47\x6c\x6d\x06\x7c\x9f\xc7\x71\x2e\xb4\xc6\xcf\x4f\xe8\xfb\x01\x78\xc8\xa5\x3a\x12\x78\x8e\x3f\xf0\x24\x35\xf7\xb7\x57\xec\x35\x8f\xee\xd5\x7a\x8d\xe9\x33\x13\x97\x38\xc5\x3e\x97\xaa\xe0\x4c\x7c\x89\x80\xa3\xab\x7d\x9e\xbc\x53\x9b\x6f\x00\x55\x1e\x10\x9e\xea\xb8\xa4\x80\x46\xd9\xb2\xfd\x38\x6f\xdf\x08\xa8\x95\xef\xf1\xd5\xb7\xf8\x66\xbb\x83\xb2\x48\x9f\x20\x3d\xfe\x9d\xda\xb4\x2b\xc6\x80\x75\x4d\x32\x37\x14\x48\x88\x88\x6c\x43\x6d\x98\x4e\xe4\xfd\x42\xfe\xb2\x15\x92\xa9\x32\xc7\x3f\xc1\x35\xdf\x98\x99\x69\xa9\xb7\x02\x24\x64\x27\xec\x51\xb0\x1d\xdf\xa3\xd9\x0c\x77\x02\x27\x73\x01\x53\x06\x4e\x11\xf3\x76\x9a\x48\xb3\x5b\x64\x89\xcd\x4b\xa8\x0f\xfd\x53\xdc\xb8\x2c\x43\x1d\x3f\x9d\x40\xb6\xef\x3c\xad\xe0\xf3\xc0\x55\xe6\x71\x93\x16\x20\x44\x3b\x37\xa8\x68\x2a\x75\x5f\x66\x9e\xcb\xf2\x85\x0d\x4e\x42\x77\x3f\xa8\x24\x66\x71\x99\xa5\x49\xe4\xf6\xdd\x47\x95\x77\x12\xf6\x62\x02\xcd\xf0\x53\xa7\x9e\x16\xd6\xd7\xb0\x96\xec\x9c\x00\x49\xd7\x43\xdd\xfb\xcc\xe4\xc5\x2c\x91\x51\x5a\x82\x3e\x58\xa9\x45\x7e\x56\xe4\xc9\x66\x03\x06\xb8\xcd\xf5\xfb\xf5\xb3\x1b\x7b\xf6\xc4\xd3\xd3\xda\xc2\xa4\xf3\x54\x6d\x92\x88\xa7\x21\xb8\xd9\xa3\x22\x1c\x7d\xaa\x5d\xf6\xa4\x9e\x0a\x79\x10\xb6\x42\x9d\x0c\x48\x59\x2e\x80\xc1\x77\x09\x5b\xf9\x92\xb6\xbb\x53\xea\xbd\x66\xe6\x82\x8e\xf5\x0a\xc9\x4d\x6d\x78\xc1\x9e\x70\xfe\xdb\x56\x42\x0b\x4c\x4c\x94\xd7\x66\xea\x51\x8a\x1c\x2c\x58\x80\x7d\x98\x96\x4a\x05\xb6\x89\x93\xd5\x72\xf8\x64\x2b\x2b\xb7\x76\x40\x6c\xcc\x9c\xdd\x24\x0f\x42\x7e\x7d\x36\xea\xe0\x03\x11\x8f\xb6\x62\x69\xed\xf2\xa7\xde\xb2\xdc\x01\x30\x72\xb3\xb2\xfa\x16\xe1\x56\xea\xc2\x9b\x70\x75\xc2\x1a\x37\xf7\x2e\x0c\x24\xf6\x64\x64\x99\x4a\x2c\x63\x11\xdd\x7f\xf5\xad\xd9\x83\xac\x6c\x45\x18\x67\x6f\x44\x74\xcf\x3e\xde\xcc\x31\x1b\x38\x29\x98\xd9\x0a\xf4\xd6\xeb\xf5\x74\xde\xdd\x0a\xbe\x79\x06\x46\xa7\xa1\x82\x43\x9e\x63\xde\xc9\xac\x99\x0a\x11\x20\x0a\xf2\x25\xcd\x26\x49\xb9\x34\x00\x04\xe3\x85\x95\xa1\x01\x47\x3c\xd3\x3b\x50\x9d\x29\x8b\x40\xaa\x2d\xe5\x2b\x91\x76\x30\x2e\x66\x2a\x5e\xda\x38\xc9\xa9\x60\x9e\x46\x59\xd6\x8f\x41\x51\x47\x9b\xc7\xc0\x8d\xc5\x7a\x47\x0f\xb2\xfb\x1f\x75\x40\xaf\xa1\x42\xe2\x67\xb8\xd7\x73\x0d\xe9\xdd\xeb\x64\x63\xa3\x6d\xc9\x9a\xb4\x71\x30\xa1\x1f\x54\xe0\xcd\x7e\x69\x4a\xfa\xa0\x62\x82\xe9\x39\x12\x33\x63\x05\x09\xf2\x9e\x78\x5c\x45\x58\x05\xa7\x94\xaf\xc1\x37\xa0\x0b\xc1\x63\xa6\xd6\xe4\x4d\xcc\xb2\x34\x01\x4a\xdf\x18\xd9\xc3\x81\x3d\x43\x57\xd1\xf1\x61\x69\xb6\xb2\x01\xc9\xc7\x07\x0b\xc4\xeb\x8d\x37\xfa\x20\x97\x69\x57\xd5\xc9\x5d\xb7\xa9\x4e\x55\x81\x73\xf9\x48\xc7\x5e\xa1\xfb\xbd\x69\x9b\x54\xad\xa0\xa3\xba\x41\x71\x3d\x1b\xb4\xd9\x9d\xf2\x24\x1e\x73\xbc\xdb\x3e\xb9\x76\xaf\xf6\x55\xf0\xda\x7a\x3a\xdc\x97\xec\x30\x33\x22\x5c\x0f\x23\xf8\xb5\x34\xf6\x43\x77\x6d\x08\x10\x6a\x17\x21\x74\xd6\x78\x41\x72\x03\xb0\x2a\xdc\x76\xdc\x71\xad\xae\xb6\xe5\xa4\x81\x6e\x12\xa3\x1c\xe8\x4b\xcf\xa5\xd2\x3f\xc8\x27\xb0\x5b\xe0\xca\x75\x14\x17\x63\x38\xa3\xed\xd0\x21\xc6\xd7\xf4\xa7\x1f\xc4\x4a\xf2\xc5\xa0\x11\xad\xf7\xbb\x5d\xc5\xa7\x74\xf9\x73\xac\xa8\xb2\x50\xde\xe5\x0f\xed\x99\x03\x69\x68\x98\xd6\x05\xdb\xc6\x3c\xee\x80\x0b\x58\x1b\xcc\x2e\xcd\x11\x20\xd4\x51\x30\xd8\x2c\x17\x36\x78\xb4\x17\x85\x4b\xee\x4f\xad\x2a\x18\xc4\x46\x5c\xab\xab\xec\x26\x96\xc0\xc0\x31\x52\x41\x24\x83\xec\xbd\x48\xed\x32\x25\x01\x9b\x82\xa9\x4a\x0b\x49\x85\x5b\x6d\x67\x17\x5e\xa9\xe4\xbb\x4d\xc8\xab\x85\xd9\x13\x42\xab\xf4\x81\xe2\x68\x81\x04\x01\xa8\xc2\x99\x0a\x5e\x98\x0b\x82\xb9\x0e\x43\x80\x97\xb6\x77\x80\x83\xd7\x04\x8e\x73\xb1\x49\x74\x21\xc2\x14\xc1\xf0\xfd\x27\xd3\xa2\xac\xdc\xa0\xfb\xba\xbe\x53\x8b\xf2\x90\x29\x6c\x56\xed\x88\xfa\xec\x33\x11\xcf\xdd\x7b\xfd\x93\xa1\x96\xc5\xed\x37\x89\xca\x29\x80\x73\x00\xaf\x00\x1a\xf9\x9e\xb4\x13\x0f\x70\x83\x44\x4c\x3c\xdc\xa3\xda\xcc\x10\x6d\x4a\x9e\x73\x59\x08\xa1\x17\x92\xa2\x8f\xc8\x5b\x16\x52\x73\xd4\xd0\x70\xce\xc0\x8d\x94\x2e\x90\x06\x08\x5e\x59\xf3\x24\x2d\xf3\xce\x3b\x27\xce\xca\xa3\xb8\x07\xfa\x7a\xe9\x02\x8a\x65\x6d\x83\xe6\xb2\x58\x83\x55\xe4\xa8\x33\xea\xb1\xc3\x6a\x92\x67\x47\x13\xec\x96\x3b\x7c\xbc\x9d\xc3\xb1\x23\xb1\xf5\x47\xbd\xcc\xd4\x88\x1d\xef\xcf\x3f\xea\x0f\xaa\x23\x25\x58\x7f\x6e\x38\xc6\x7a\x62\xe8\x9f\xbb\xe4\x14\xb8\xbe\x87\xf0\xd3\xa1\xfb\xf8\x20\x4a\xc6\x83\x41\xaa\xce\xbd\x0b\x66\xed\x96\xcb\x38\x35\xf7\x54\x5e\xd4\x4e\x20\x0f\xf6\x35\x76\x71\x61\x37\xc7\xee\xcc\x2e\x48\x94\x58\x46\x8d\x2c\xbb\x43\xfd\x54\x4b\xcf\xeb\x05\xd4\xd5\xbe\x52\x4d\x9a\x6b\x4b\xd6\xf0\x27\x3b\x89\x98\xba\x05\xdb\x3d\x05\xd7\xc9\xe6\x57\x70\xc9\x7a\xdf\xdc\x29\x23\x5a\x8a\x74\x7e\x39\xe4\xf7\x89\x8b\x11\x92\x6c\xcc\x66\x16\x92\x13\x2f\x24\x69\x1c\x63\xe4\x15\x42\x6e\xc8\x45\xa5\xd9\xf7\x2e\xf3\xf2\xfb\x7f\xb4\x4c\x44\x7b\xb6\x86\xbe\x06\xba\x2f\x15\x45\x65\x0e\x61\x51\x72\xdd\x30\x81\x67\x93\x1e\x45\xb2\x01\x27\xb2\x03\xb3\xa0\xf9\xd4\x66\x3d\x38\x5f\x5d\xa5\x51\x77\xe0\xa2\x41\xb5\x66\x77\x16\x92\x08\x4f\xae\x0b\xa6\x0b\x91\xb5\xee\x4a\x15\xa3\xab\x2a\x48\x7e\x82\xd9\xe5\xe5\xd0\x07\xda\xba\x23\xf6\xe8\x59\x70\x9d\xfe\xd3\xed\xf5\x15\xcb\xf8\x1e\x70\x61\x85\x22\x25\x79\x20\x63\xac\xaf\xdf\x43\x23\x50\x6d\x7c\x75\xb1\x61\x9f\x5a\x80\x69\xbb\xef\x96\xbe\xd8\xb4\xa1\x60\xce\xd0\x94\x34\x4b\x39\x57\xe9\x59\x96\x72\x19\x40\x7f\xf5\x94\xd5\x3e\x1f\xc6\x7a\x5d\xd4\x87\xd0\x34\x50\x01\x70\xa7\xd0\x5c\xc8\xcb\x56\x70\x68\x55\x63\xfd\xa4\xf0\x6e\xe7\x1e\xd1\x0b\x7a\x7b\x8f\xd2\x06\x3c\x32\xcb\x04\x99\x05\x6c\xc8\xda\xa1\x1e\xb8\x06\x40\xe2\x88\x81\xea\x17\x84\x5f\x48\xab\xf7\xab\x1e\x35\x8b\x91\x7b\xa1\x4c\xf4\x16\xfc\x93\x18\x10\x00\x70\x10\xed\x2f\x88\x5c\xc8\xb9\xd4\x66\x40\xc1\xa7\x29\x1e\x04\x39\x36\x2a\xc1\xb8\xf9\x9b\x77\x2e\xbe\x8f\x83\x44\x92\x6c\x1d\x5d\x1f\x18\x66\xa7\x5c\x60\x5a\x15\xca\x0f\x13\xfb\xbf\xe7\x59\x5f\xd6\xd8\xc9\x25\x1e\x1a\x25\xc7\x3c\x53\xb7\x3a\x41\xab\x15\x54\x9a\x2a\xa9\x63\x61\xef\x7d\x94\x27\x6e\x3f\xad\xe4\xcf\x87\x45\x05\x06\x5f\xc2\x86\x65\x02\x8e\xd8\x7b\x02\x12\x38\x87\xad\x71\xf6\xb2\x59\xe5\xa0\x81\x03\xec\x55\xe8\x49\x9b\xb2\x5b\x21\xd8\x27\xe8\x29\xf3\xb1\x4f\xa4\xb1\x06\x70\xc1\x82\x27\xad\x12\x38\xf0\xf4\x5c\xae\xd5\x69\x9b\x41\xbe\x69\xc0\xd1\x4e\xea\x95\xf6\x7a\x9e\x0a\x78\x83\x54\x46\xf9\xbc\xf9\xf7\xad\xed\x3a\x00\x6f\xfb\xe0\xef\xe4\x94\x95\x67\x6b\x6a\xce\x67\x18\xe2\x63\x18\x9e\x6a\x93\xc4\xb4\x72\x82\xac\xc5\xf7\x52\x3d\x4a\xb4\x05\xe8\x4b\xec\x3b\xb3\xfe\xe0\x00\x43\x07\x2a\x9a\x05\x25\xee\x86\x2f\x81\x46\x79\xe6\xfe\xcd\x6e\x31\x56\x84\x75\x06\x71\x14\x0d\xc6\x0f\xc9\x9a\xc0\x6e\xfe\xdd\x6c\xc2\x5e\x4f\xd8\xc5\x84\x4d\xa7\xd3\x97\x13\x54\x6e\xa6\x1a\xe1\x2b\x88\x1c\x2b\xf8\xc6\x94\x4d\x72\x11\xeb\xe0\x03\x20\x80\x64\x0e\x2b\xcb\x16\xc6\xfd\x53\x81\xe7\xc1\x36\x01\x73\x18\x29\xe1\x82\xe2\xea\xd1\x56\x25\xbe\x52\x00\xd1\x14\x91\xca\x2d\xc8\x53\x17\x2a\xb7\x80\xb5\x07\x9e\xf3\x44\x42\x6a\x37\x6f\xc2\x75\xe9\xcb\x01\xb9\xb3\xf8\xc2\x77\xd0\xfe\x44\x3a\x7e\x4b\xd3\x4d\x77\xae\xfe\xc5\x3e\x23\x87\xf4\x63\x9e\x14\x85\x39\x9d\xf5\x42\xde\xb2\x57\xff\xc2\x66\x59\x96\x0a\x36\x63\x7f\x63\xaf\xb9\xe4\x92\xb3\xd7\xec\x6f\xec\x82\xcb\x82\xa7\xaa\xcc\x04\xbb\x60\x7f\x33\xdd\x66\xca\xbb\x52\xe6\x38\xdc\x4f\x18\x67\xb2\x4c\xf1\xd4\xff\xce\x82\xc1\x5e\xba\x76\x71\x3f\x3a\x2b\x51\x3c\x0a\x21\x99\x56\x3b\x3a\x0a\xff\xea\x62\x12\x3a\x91\x9b\x54\x14\x34\x1f\xaa\xb0\x3d\xfc\xc0\x19\xb4\xf4\xd5\x42\x3a\x5f\xde\x5f\x4d\x8d\xff\xca\xfe\xc6\xae\xca\x34\x35\x55\x32\x1b\x8d\x99\x48\xaf\x98\x4d\xa3\x10\x72\xfa\x98\xdc\x27\x99\x88\x13\x0e\x89\x14\xe6\x5f\xe7\x77\x30\xda\xcb\xd2\x73\xe6\x85\x6b\xda\x09\xce\x9c\xb2\xf5\x3c\x4b\x52\xb6\x93\x43\xb2\x83\xdf\x73\xf3\xab\xbe\x3a\xde\x22\xf2\x4c\xa1\xb4\x1e\xc8\x60\x45\xb1\xa0\x50\x76\xe9\xa8\x2d\xa0\x76\xd8\xda\xb2\x5a\x8e\x82\xf0\x50\x3f\x75\x93\x05\x0d\xb1\x27\xbf\x43\x0e\xd0\x2e\x1a\xba\xe5\x36\x94\x57\x2a\x69\xee\x60\x4b\x7a\xaa\x9f\x41\x51\x21\xa7\xb8\xf2\x73\x55\x44\xad\xd2\xc5\x2a\x19\xa4\x36\x57\xab\xec\x47\xf2\x5d\x60\x82\x9a\x59\xa6\x49\x7a\x6e\x96\xea\xf9\x95\x92\xe6\xda\xaa\x93\x0d\xd2\x13\x01\x8c\x08\x65\xda\xac\x51\x70\x57\x35\x59\x83\x25\x00\xf6\x81\xa9\x12\x42\xdb\x0a\xb3\x0b\x98\x21\x48\xf7\x0b\x69\xde\xa0\x13\x09\x60\xee\x89\x63\xb1\xc5\xaf\x59\x5d\x7b\xfa\x16\x6d\xc8\x41\xe1\x2d\x13\xac\x2f\x87\xf6\x84\x09\x47\x29\x5b\x27\x78\xc5\xaf\x02\x06\x37\x2a\xcd\xd2\x7b\x60\xdc\x73\x25\x52\x25\x37\x66\x56\x74\x6d\x02\x6a\xc7\x93\x53\x80\x25\x61\x15\xb0\xb0\xce\x1a\x98\xc3\x92\x1e\xa1\x21\x31\xe7\x64\x12\xfb\xfb\xbd\x2e\x57\xc6\x8e\x70\x1e\x59\x77\x1a\x52\xe3\xba\x12\x8a\x4f\x8b\x2f\x7f\xd4\x22\x07\x9a\x65\x44\x38\x38\x6f\x3f\x1e\x9c\x9e\x6c\x03\x5b\x34\x6c\x51\xf5\x02\x63\xdb\x5d\x21\x14\x4d\x68\xa4\x56\x0f\x98\x8f\xdf\x12\x23\x3b\x04\x39\xfb\x76\x36\x7f\x57\x7b\xae\x89\x9c\x6d\x81\xd7\xde\xcd\xdf\x5f\xbe\x59\x5e\x7f\xbc\x6b\x3c\x67\x4a\xa3\x3f\x8d\x55\xfa\xb7\xbd\xf7\x14\xf0\xc1\xcf\x28\xf7\xb2\x54\x6b\x9b\x49\x39\xfc\x4c\x6f\x08\xee\x0c\x43\xa9\x84\x24\xdb\xa1\x30\x4d\x73\xe2\x74\xe6\x83\xcb\x25\x45\x24\x86\x55\xb6\xde\x61\xd7\xf2\x2d\xbe\xfe\x41\xa5\x49\xd4\x0f\x7a\xb3\xc7\xd5\x56\x3d\xb6\xa0\x88\x56\x02\x50\xa0\xe4\xff\xa1\x4a\xa1\x85\x5e\x88\xa8\xf0\x11\xb7\x66\xe3\xfe\x57\x03\x6d\x0e\xdf\xc1\xd1\xa3\xec\xba\x0d\x04\x38\x5d\x0c\x0f\xce\x56\x20\xd8\x04\x5e\x79\xf4\xb5\x42\x2e\x1d\xc4\xb6\x23\x4e\x2e\xe8\x4a\xcf\xc3\x06\xfd\xb8\x55\xa9\xb9\x8b\xc9\x98\xc8\x4a\x17\x32\x13\x79\xa4\x00\xa0\x82\x79\xf0\x8a\x45\xdb\x24\x8d\xbd\x78\xcb\x77\x80\xe8\x05\xdc\xdd\x4b\x92\xe5\x13\x2e\xc6\x6c\x8b\xef\x39\x75\xed\xb4\xb3\x7a\xe5\xa7\x79\xa0\x9e\x0e\xa2\xd7\x37\xed\x7f\x21\x28\x19\x76\x05\xd1\x0b\xd5\xa2\x85\xa6\xd3\x2b\xf5\x19\xe5\xe1\x05\x45\xf1\xb5\x15\xff\xb4\x17\xa7\xa2\x36\xae\x34\xcd\xea\x5d\x09\xa4\xb3\x88\xa2\x42\x00\x89\x16\x50\x9d\x9d\xe0\x68\x8b\x79\x0a\x48\x1a\xd4\x85\xf4\xf1\xd1\x17\x3a\xb4\xcb\x5a\xc7\x19\x39\x55\x2d\x08\x70\xc2\x5e\x54\x1a\xfa\x02\x48\x49\xa5\x82\xef\x51\x0c\xab\xd2\x35\x30\x5d\x27\x2c\x29\x16\x32\xd1\x38\x33\x73\x91\x8a\x07\x53\xbb\xd0\x59\x4c\x58\x17\x7b\x77\xb6\xcd\x06\x1c\x39\xb7\xe9\xc7\x4e\xe6\x1e\x16\x61\x1e\x92\x5b\x72\x70\x4c\xc7\x42\x1b\xbb\x11\x64\x39\xc4\x17\xb3\x00\x12\x88\x85\x20\xfc\x23\x16\xd2\xd6\x0f\x50\x21\xa8\x65\xbb\x90\xf3\x35\xe4\x80\x42\xe6\x69\x1c\xe3\x2d\xd4\x0a\x35\x38\xa6\xb1\x84\x9c\xc3\x8a\xee\xe4\x76\x20\x48\x55\x12\x57\x92\x78\x10\xf9\xbe\x00\xa7\x2e\xf4\xab\x14\xbc\xd8\xb2\xa4\x98\x00\x45\x9c\xdd\x29\x17\x92\xc7\xa4\x54\x4e\xc5\x99\xae\x81\x79\xdf\x33\xce\xf4\xfb\x4a\x3d\xf4\x19\xb6\xa7\xa2\xbe\x70\x55\x67\x29\x97\x4b\x3c\x41\xbe\x01\xee\x2b\x10\xfc\xec\x0a\x75\x96\xab\xa5\xa3\xb5\x79\x92\x7a\x06\x9a\xd0\xa1\x0c\xaf\xb1\x63\xed\x87\x26\x38\x19\x3c\xad\xb5\xbd\x9e\x38\x3f\x0d\xa1\x0b\x72\x66\x23\xb0\xc3\x77\x01\x0f\x09\xe3\x35\x24\x82\x9d\xad\x87\x30\x61\x76\x06\xfc\x5a\xf1\x49\x43\x46\xbe\x76\x86\xd4\x87\x7d\x3c\x34\xa6\x61\x21\x1e\x05\x8f\x39\x50\xad\xe7\x85\xc8\x74\xfa\x51\x9a\x50\x19\xdb\xda\x20\xdc\x87\xc9\x13\x02\xfd\x70\xce\xcd\xd3\x2e\xe8\x1a\xde\xc3\x54\x0b\xb6\xf2\x29\x7d\xd4\xb0\x4f\x0d\xf5\x94\xf8\xdc\x6b\xa8\xd7\x94\xcd\x25\xb3\xe6\xde\x84\xbd\xc0\x89\xa5\x5f\x90\x0b\x92\x54\x81\x29\x76\x1e\xd3\xea\xa1\x6c\xd5\x3a\x14\x03\x73\x06\xfc\x72\xc3\x48\x50\x2f\xb5\xe1\xb3\xf6\xcb\xeb\x04\x72\x16\x8e\x49\x4b\xc7\x28\xe2\x0a\x0b\xa0\x43\x12\xaf\xdd\x7b\x34\xda\x95\xf7\x66\xfb\x06\xdb\x78\x17\x7b\x6d\x5f\x34\x5d\x94\x95\x74\x9e\xda\xdf\x99\xca\x17\xd2\x96\x46\x2e\x49\x8d\x5a\x4a\xf5\xa2\x02\x08\x35\xd9\xfc\xc1\x4c\x05\x10\x83\x95\xcf\x02\x55\x36\xcf\xbf\x5a\xdf\x05\x00\x14\xb1\x12\x5e\xcf\x7c\xca\x66\xfe\x6b\xc6\xf0\x30\x13\x7c\x87\xc7\x7c\x9d\xa3\x31\x4d\x4d\xa7\x24\x85\xa5\x84\x0c\xd2\x1b\x74\x09\xc4\xa6\xeb\xd2\x6c\x46\x01\xfb\xeb\x42\x9a\xce\x63\xeb\x04\x70\xbf\xd4\x2f\x0b\xf9\x5e\x69\x9b\x4d\xaf\x7d\x7f\x58\x0c\x29\x75\xdb\x0b\xa7\x22\x46\x7f\x78\x03\x87\x36\xf9\xfc\x6b\x12\xff\x90\xd7\x42\x94\x18\x7b\x55\xe6\xbe\x51\x11\x97\x0b\xf9\x1f\xa6\x7b\x50\xc9\xda\xc9\xc0\xab\x35\x2e\x61\x18\x41\x08\x96\x7c\xc2\x42\xbf\xfb\xc7\x97\x9f\x5e\x22\x0e\xbd\xd4\x20\xdc\x38\xa9\x1e\x20\x8e\x08\xbc\x4c\x53\x88\x44\xdb\x16\x38\x32\x0a\xff\x09\xde\x07\xcb\xa1\x4b\xdd\x52\x56\x4d\x8c\x21\x0b\xbd\x6f\x06\x7b\xe7\xf3\x8c\x45\xbc\x88\xb6\x67\xd6\x96\xa3\x6d\xcc\x9e\x7e\x34\x7c\xa8\xe0\x66\x2c\xad\x76\x2e\x6c\x73\xe1\xcc\x77\x8e\x9d\xaf\x32\x5f\x4c\x13\x00\x58\x73\x57\x17\x86\x71\xe4\xa1\x38\x39\xbd\x10\xbb\xb7\xf3\xdc\xe3\x56\x96\xcd\xdf\x38\xc9\x4b\x2e\xf9\x4e\xc4\xec\x05\x64\x4c\xbd\xb0\x83\xbf\x90\xd9\x6a\x9a\xee\xd7\x05\x51\x3c\x99\x4e\x99\x82\x80\xd1\x81\x53\x6e\x19\x37\xaf\x49\x07\x3a\xbb\xf3\xa2\xd5\x6e\xeb\xb8\xbe\x71\x5f\x1a\x6e\xb0\xa0\x8f\xcb\xf5\xce\x6d\x15\x22\x54\x65\x52\xe7\xfa\x7e\xc2\x56\x39\x97\xa0\x3d\x11\x87\x46\x95\x5f\x9d\x70\x79\x46\xfe\x24\x9b\x42\x21\x79\xba\x07\xec\xf8\x64\x21\x91\x6c\x0a\x58\x89\xf7\x51\x9a\x44\x6c\x93\xf3\x6c\x5b\xb3\x83\xc4\x83\x90\xc5\x25\xb1\x2b\x58\x90\xfa\xa9\xa1\x65\xc7\xd6\x70\x12\xe7\xde\xbc\x6a\xed\x70\x4f\x43\xe1\x3d\xac\x98\xa8\x42\x37\x6a\x0b\x6a\x75\x13\x7c\x42\x52\x68\xc0\xc7\xc5\xfe\x52\xae\x54\x6a\x09\xcd\xe6\x6f\x98\xca\x41\x4b\xa0\x50\xf4\xa7\x24\xee\x3a\xc5\x12\x19\x8b\x2f\x27\xb1\x0a\xf4\x1f\x48\xd6\xbc\x33\x9f\x09\x28\xeb\xeb\x8d\x85\x55\x94\x0b\x73\x58\x14\xf6\x06\xd7\x78\x4a\xd7\x11\x76\xb3\xb4\xd8\x02\xec\x0d\x01\xd7\xbe\x53\x77\x7c\xcf\xa2\x2d\x97\x9b\xe0\x0a\x0d\x28\x24\x91\xa9\x1c\x35\xf7\x1e\x80\xbe\x4b\xe5\x36\x6b\x93\x72\x11\x09\xf5\xed\x1c\xde\x08\xb6\x54\x36\xe1\x90\x6f\x36\xb9\xd8\x40\x22\xfd\x42\x56\xb2\xa9\x81\xba\xcc\xd2\xfd\xe3\x77\xfa\x92\x51\x9f\x86\xd1\xa1\xeb\xd6\x52\xe4\x7b\x97\xca\x47\x82\x95\xae\xeb\x1a\xdd\x3a\x61\x89\x98\x4e\xd8\x0f\x1e\x60\x2a\x22\x25\x5d\x2e\x60\x47\x22\x58\xcd\x35\x7d\x60\x2f\x6a\xa1\x7e\x68\xaf\x3b\xfc\xd6\x90\xbd\x6c\x9d\x34\xbd\xc9\x94\x05\x2f\xca\x11\x7b\x25\x49\x1b\x5f\x98\x97\x6f\xf1\xdd\x5e\x0c\x36\xcf\xcc\xf6\x66\x69\x77\xcc\xf3\x66\x87\x37\xdf\xf6\xb4\xbc\x6d\x7d\x7d\xd0\xd1\x99\xaa\x6e\x47\xe7\x53\x98\x94\x96\x5b\xe1\xb0\xaf\x33\xed\xe0\x0b\xe8\x69\xd3\x58\x57\xa6\x05\xa3\x12\xcc\x5c\xd7\xaf\x5b\x2d\x3b\x40\x96\xab\xb8\x8c\x44\x6c\x56\x2e\xd8\xed\x88\xdc\x70\xb4\x05\x95\x4d\xb2\xed\x40\xa8\x70\xaf\x80\xc0\xf5\xd7\xba\x1b\x0f\xa2\xbb\x75\xdd\xff\xb1\xe3\x5e\x6c\x2d\x93\xb6\x4e\x0f\xd7\x27\xf6\x53\x3e\xf2\x9c\x72\x9f\xaf\x92\xd4\xaa\x3c\xd9\x24\x92\x17\x2a\x67\xdf\xb9\xe4\xc4\x97\x4e\xd9\x06\x7a\xf1\x29\xb6\x89\x4a\x17\xe1\x36\xd1\x7e\xf7\x02\x3c\xb3\x88\x97\xe3\xb8\xb3\xc6\x32\x3c\xc3\x24\x35\x4f\xe9\x82\xef\xb2\x90\xf6\xd1\xe9\x06\x53\xcf\xa4\xd8\x09\xcc\x56\x0c\x7c\x7c\x89\xf6\x39\x58\x0b\x49\x9e\x71\x1c\x37\x95\x87\xbc\xc5\x9d\x67\x73\x56\x16\xcb\x23\xa9\x4c\xf0\xe5\x71\x0e\x12\x0a\x97\xbf\xe7\x59\x3f\x39\x04\xa7\xab\x31\x26\xa1\x38\x31\x65\x6b\xa9\x54\xe7\x67\xbf\x32\xc0\x48\xb2\xca\x7a\x88\xf7\xe6\x9d\x0d\x68\xf8\x7b\x4b\xe5\x22\x00\x03\x81\x2c\x79\x1a\xac\x0a\xbc\x82\xba\x6d\xcd\x9c\xe2\x96\x51\xe2\x22\x55\x65\xcc\x68\x53\xa3\x70\x71\x3e\xc5\xd3\x11\x68\x2b\xa7\xd3\x2e\x0e\xaf\x91\x8a\xa5\x6e\xff\x81\xf7\xda\x57\x20\xfc\xd6\xb1\x03\xf7\x2e\x7d\xea\xd9\x67\x1b\x7a\xea\x69\x18\x7b\xb7\x1d\x8f\x1a\x7b\xe7\xad\x05\x0e\xad\x71\x8e\x3c\xb8\x37\x25\x71\x0a\xeb\x2d\x74\x74\xb7\xb0\x7c\x56\x02\x88\xfa\xfe\xe4\xcf\xd9\x4c\xdb\xfe\x4f\x65\x3c\x17\xb2\x58\xc2\x17\xc7\x7d\x0c\x3e\xf2\x01\x5e\xaf\x18\x4c\x83\x1c\x96\xff\x76\xa7\xd0\x0f\x6d\x09\x33\xfe\x9d\xdd\x92\xef\x45\x5b\x55\x7b\x73\x3a\x7e\x97\x00\x36\x26\x88\xd9\xb9\x81\xeb\x18\x2e\x6a\xd0\x11\xbd\x17\x34\xa8\xb2\xb5\x0f\x6a\x90\xaf\x3d\x84\x54\xa1\x14\x72\x43\x51\x86\xa7\xd9\x6a\xed\xdf\x02\x12\xed\xab\xca\xbf\x81\xf0\xd0\x8c\x5f\xca\xfe\x53\xe4\xca\xa7\x2d\xa0\x53\x25\x2c\xb8\xd7\x5e\x3f\x5e\xff\x13\xed\x71\x54\x9e\x0c\xa5\xd7\xe0\x2f\xc4\x49\x82\x37\xdf\xd5\xde\x5e\x47\xba\xe8\xd4\x45\xb4\xec\xe0\xd9\x1f\x54\x95\xe0\xe2\x19\xf2\xe6\x27\xb5\xc3\xcc\x2e\xd0\x73\xb8\x57\x13\xeb\xdf\x8e\x67\x84\x43\x23\xc8\x6b\x3d\xc8\x30\x85\x46\xfc\xdb\x5f\xff\x7d\xda\xa5\xec\x0c\x55\x1f\x0b\xeb\x71\x95\x7f\x9b\x27\x42\xc6\x10\x34\xe4\x71\x53\x02\x46\x56\xbc\xc8\x95\xed\xd9\x4c\xc3\x27\xc9\xee\x6b\x3f\x6a\xf5\x12\x27\xd1\x57\x88\x3c\xfb\x4d\xd6\x2d\xdf\x4a\x5c\xaa\xcb\x94\xd0\xcb\x78\x2f\xf9\xae\xa9\x85\xfd\xac\x75\xdc\x27\x22\x8d\xa1\x8a\xf4\xf5\x43\xd1\x93\x58\x44\xf7\x63\x6d\x82\xa3\x09\xac\x45\x74\xcf\x7e\xba\x7b\xff\x0e\xf5\x0a\x13\xbd\x90\x57\xbc\x48\x1e\xc4\xc7\x3c\x75\x6e\x6b\x62\x24\xc9\x53\xbb\x46\xaa\x84\xaa\x01\x79\x87\x65\x5f\xb5\x86\x43\xc8\x77\xbd\xdb\x9f\xad\xca\xe8\x5e\x14\xe7\x39\x97\xb1\xda\x61\x33\xce\x75\xb9\x5e\x27\x5f\xa6\x05\xcf\x3b\xc8\xaf\xd1\x8f\xf0\x0d\xed\x5c\x2f\x69\x52\x78\x9b\x17\x4d\xdd\x47\xc8\x4e\x24\xa1\xdc\x8a\x71\x0b\x57\xe0\x9c\xef\x04\xb0\x97\xb1\x2a\x71\x3c\x94\x82\x09\x7f\xa0\xaf\xa6\x35\x21\xbd\x15\xa9\xb7\x7e\x0a\x8c\xfb\x4f\x41\xad\xaa\x0a\xc2\xb6\x52\x5e\xb3\x6c\xc7\xef\xf1\x7e\xb8\xc9\x85\xd6\x13\xa6\x15\xd4\x78\x21\x2d\x66\xda\xe6\xf5\x00\x3e\x03\xf8\x0f\xd3\x3d\x8b\x54\x96\x80\xc4\x9b\x6b\xd7\x56\x3d\x82\x3f\x39\x4c\x6f\x03\x55\xce\x52\x16\x49\xca\xf8\xba\x20\x67\x33\x90\x3d\x5b\x71\x17\x3d\x5d\x48\x08\x19\x46\xd0\x7c\x08\xe5\xbb\x30\x81\x6b\x84\x66\x6b\x1e\x25\x69\x52\x10\x05\x0d\x24\xc3\x70\xd3\x5e\x73\x1e\x98\xbe\xcc\xf9\x9e\xa7\xfe\x62\xc5\xd3\xd2\x67\xf4\x9d\x69\x51\xa7\x38\xfb\x5d\xf8\xbf\x95\x7b\x6e\xdf\xa9\x7b\xc2\x85\xf7\x94\xc3\xa7\x79\xa5\x75\x8a\xa3\xfe\x1c\x4f\x62\x8b\x13\xad\x98\xba\x9e\x79\xd6\x1d\x3f\xe0\x3b\xef\xb8\x54\x4f\xad\x4e\x4c\xf3\x0b\x23\x7a\xaf\xdd\x08\xfb\x4a\xee\x82\x2e\x0e\xdc\x21\xd5\xb7\xde\xee\x0f\x4a\xa5\xa7\x7a\xbc\x79\x6a\x37\xd4\x25\x48\x27\x9e\x72\x5d\xc3\x09\xe0\x1c\x47\xf3\x37\x2e\xf6\xea\x48\x65\xab\x82\x2b\x04\x0b\xa2\x2a\xc0\x46\x01\x95\xe8\x41\x0c\xeb\xac\x25\xf8\x3e\x12\xf9\x0c\x65\x20\x6a\xc7\x9a\xce\x4d\x17\x7c\x90\xcb\xce\x7d\x1d\x81\x78\xaf\x56\xc3\x51\xce\x30\x14\x3a\xac\x7d\xca\x39\xc6\x42\x82\x4e\xd7\x8f\xc1\xb7\x6d\x7f\xa2\xbc\xb2\x39\x9f\xc8\x4a\x5e\xc8\xc0\x22\x46\x56\x1d\x0b\x2d\x77\xbd\xd6\xe6\x2f\xab\x4c\xc3\x93\xfd\x65\xa7\xb0\x30\xf7\x06\x54\xde\x84\x7a\x4a\x80\x09\x88\xd4\x6e\x95\x48\x9b\xaa\x4c\x4e\x64\x30\xe5\x67\x96\xe4\xce\x39\xfc\xad\x49\x8e\x2c\xfb\xb5\xbe\x77\x66\x44\xc8\x17\x18\x6e\x59\x87\xae\xbb\xe1\xfd\xe9\x69\x09\xa3\x3b\x50\xaa\xf5\x16\x24\x9a\xf1\xf4\x91\xef\x35\x68\x8e\x0a\xb3\x2b\xae\xd1\x71\x5a\xad\xff\x24\x38\xde\x2d\x81\x22\x09\x78\x97\x24\x45\x4c\x6d\x49\x90\xbf\x41\xa4\x56\x5d\xd5\xf3\xe2\xbc\xd0\xed\x9d\xf3\x6d\x62\x21\x79\x6f\x2c\x04\x83\x91\xff\x33\xc2\x1f\x3d\x4e\xd6\x13\x7d\xbd\xc1\x31\x89\x16\x19\xc1\x45\x20\x81\x07\xb6\x63\xf3\xed\x09\xdb\xf1\x44\xd2\x32\x40\x05\xab\x58\xac\xca\xcd\xa6\xd3\x05\xf9\xeb\x8f\x65\x54\xd7\xc9\xdf\xbd\xaf\xb9\x97\xd9\xe9\x29\xbc\xb1\x73\xfb\x25\x74\x0f\x9b\x7b\xd5\xd7\x71\xc0\x7e\x43\x6f\x77\x6b\xc8\xa9\x31\x89\x9e\xc6\xdb\x3d\x1f\xe2\xed\xb6\x18\x1f\x48\xb5\xa2\xeb\xaa\xc5\x61\xfc\xe6\x06\xff\x3a\x6e\xf0\x41\x93\x02\xe9\x3d\x96\x49\xd5\x40\xef\xa9\xe1\x91\x2c\x61\x8e\x4e\x12\x6a\x45\x6a\xe0\x5a\xc8\x58\xb3\x15\x8f\x9e\x81\x36\x0c\x4e\xc7\xd3\xfd\x6d\x07\xc0\x25\xb7\x6a\x27\x18\x7c\x4a\xa3\xf6\x01\xa3\x6c\xb6\x09\xa0\x16\x4d\x03\x3d\x22\x83\xf0\x1e\x70\x9c\x22\x32\x24\xf6\x46\xf5\x77\x52\x3c\x32\x73\x5a\x4d\x42\x18\x57\x30\x3c\x20\x8a\xf3\xd2\x58\x87\x15\xcc\xb7\x4b\xdd\xcf\xc5\x86\xe7\x31\x64\x1a\xd0\x92\x4c\x79\x74\x6f\xfe\x1b\xea\x47\x5f\x24\xa8\x99\xe5\xe7\x46\xf8\xa3\x2f\x2d\x91\x51\x0e\xa4\x4c\x84\x6a\xf3\xf5\xc3\xd7\x35\xe3\x51\xae\x34\x3a\x65\x9c\x96\x24\x64\xba\x82\x01\xfb\x90\xc4\x25\x4f\xf1\x8b\x9d\x9e\x6c\xae\x4f\xe2\x1b\x9f\x05\xb2\x2f\xe2\x4b\x96\x72\x59\x5d\x93\xd8\x5c\xe0\xaa\x49\x7a\x66\xbe\xa3\x5c\x3b\xa5\x2a\xa3\xa9\x23\xe7\x81\xe2\xaa\x5f\x56\x68\x1d\xe7\x82\xc7\xfb\x90\x98\x2a\x91\xa4\xbb\xcf\xe3\x5d\x22\xcd\xd0\x5b\x55\x2f\xb7\xbf\x5a\x82\x5f\x04\x5c\x82\xf8\x45\x9a\xd6\x96\xbe\x66\x52\x18\x93\x8a\xe7\x49\xba\x07\x2b\x3a\xcb\xc5\x59\xf0\x9d\x60\x7d\x53\xbe\x07\x50\x15\x13\x89\x42\xa9\xc5\xba\x4c\xd1\xd6\x86\xdb\xa8\x6b\x00\xad\xc3\x8f\xf3\x89\x39\x66\x0b\xa2\x9c\x0f\x3e\x8c\x42\x4e\x4f\x81\x9d\x6f\xc4\xc0\xc6\xc5\x71\x3c\x71\x5a\x0e\x10\xdf\xad\x7a\xb4\x89\x3e\x8f\xdc\x23\x39\xbb\xce\x94\x27\xf3\xdd\xf7\x5b\x5f\xf6\xde\x63\x57\x27\x76\x7e\x5c\x09\xd8\xd0\x6f\x22\x76\x2b\x32\x91\xd0\x1c\xd2\x42\xf4\xfe\xd0\x52\x63\xbe\x90\x19\x4b\xd8\xb5\xed\xf5\xbe\xea\x0e\x65\xae\x75\x89\x56\x92\x2d\xca\xdf\xff\xfe\x0f\x82\xfd\x1e\x12\xa8\xc8\x0a\xc7\xa8\x0b\x50\xa7\x61\xe9\xb0\x51\xb9\x0f\x08\xe4\x55\x6b\x8c\x08\x6b\x03\x3e\xda\x6c\x65\x80\x0e\xf2\x68\xcb\x74\xb9\x42\x5c\x1c\x27\xc7\x3d\x97\x8e\x99\xf4\x9d\x02\x88\x1b\x9e\x67\xb6\xf6\xff\x4b\xdc\xd4\xc8\x0e\xbe\x90\x99\x42\xf2\x5c\x00\x14\xae\x04\xdb\xf1\xfc\x1e\xc4\xde\x48\xd1\x9b\xf1\x82\x7d\x97\x88\x69\xd5\x69\xfd\xb2\x52\x1f\x0a\x13\x20\x29\x26\xcb\x4b\x29\xad\x7a\x05\x33\xe6\x98\xf7\x20\x4f\x16\x72\x55\x86\x37\xae\x8a\x0b\xda\x4f\x2d\x70\x43\xc3\x66\xab\x80\x29\x81\x2a\xc5\x75\xa0\x34\xce\x06\xf8\xa2\x17\xf2\x99\x9c\xd1\x5d\x6e\xae\x0f\x64\x79\x58\x17\x56\x80\xd6\x86\xe6\x86\x02\x8b\x30\x1c\x38\xed\xe1\x68\xff\x00\x2a\x8b\x13\xf6\x53\xf2\x20\x26\xec\x36\xe3\xf9\xfd\x84\xbd\xc1\xa0\xd2\x9f\xd4\xaa\xcd\x73\xd5\x48\xa7\x3f\xd9\x7b\x75\x9c\xf3\x66\xb0\x54\xbb\xb3\x79\x7f\x69\xea\xb0\x77\x45\x54\xff\x67\xe2\xbc\x3a\x98\x0e\xfe\xde\xef\xdf\x07\x82\x9f\xbf\x41\xa2\xfe\x2e\xef\x82\xfd\x24\x07\xbf\x0b\xff\xd7\xee\x5f\xd6\xe2\x02\xdb\x93\x76\xb9\x56\xac\xd3\xaf\x2b\xad\x33\x89\xeb\x87\x72\x33\xbb\x73\xd8\x52\xa0\xe4\xd9\xd8\x25\xf6\x8e\x80\x72\xd3\xab\xb6\xbf\x2e\x52\xa5\xcb\xbc\x7f\xf1\xdf\x54\x6b\x6d\xbf\xde\x42\x74\x08\x93\x6d\xb7\x12\x90\xb3\x3d\x14\xd4\x80\x8f\x2d\xff\x43\xad\x96\x80\xe0\x39\x6d\x85\xb7\x15\x67\xa5\x53\x5c\x1c\x88\xaa\xea\x4f\xc8\xdb\x4c\x00\xdf\x8e\x37\x45\xbd\x1b\xbc\x36\xc3\x9c\x43\x60\x21\x2d\xfd\x30\xe6\x0b\xe6\xb9\x00\x9e\x54\x73\xef\x7d\x10\x39\xcb\x78\xee\xc2\xe8\xd6\x22\x0a\x6e\x3e\x1e\x6a\x11\xe6\xf8\x40\xaa\x1e\xdd\xb7\x56\x42\x48\xd7\xdb\x63\x4c\x09\x63\x1d\xd4\x7b\x9f\x30\x54\x8f\x82\x45\x08\xcf\xef\x50\x2f\x6b\xbc\x17\xdc\x05\xc1\xe4\xde\x88\x22\xd8\xcd\x6b\xa6\x45\x65\x69\x56\xe2\x32\xbf\x2a\x1c\x79\x6b\xe4\xb5\x46\x4d\x54\x71\x1b\x0c\x8a\x64\x3d\x85\x97\xf8\x03\x2f\xb6\x78\xa1\xdd\xa9\x82\x64\xe4\x91\x23\x05\xe7\x0b\xfa\x5a\x57\xa9\x5a\x81\x14\x8f\xf9\xa5\xeb\x6e\x18\xd1\xd2\x1e\xd4\x75\xcd\x01\x1b\xb2\x33\x98\xdd\x04\xf2\x0c\x73\xa1\x81\x6e\xa2\x19\x9b\x19\x8a\x7a\x1d\x77\xe9\x6e\x56\xd7\x6c\xfa\x6f\x1a\x97\xed\x26\x3f\xb9\x59\xd6\x00\x81\xbc\x3c\x22\x2f\xe3\x32\xcc\xd5\x33\xc6\x01\x51\xb5\x52\xf0\x13\xd9\x1a\x6b\xed\xb5\x8a\xaf\x0b\x39\xc3\x5f\x82\x43\x80\x7b\x1d\x0e\x87\x32\x24\x71\x3f\xb7\xfe\x30\x79\x8f\xcd\x42\x5c\x1b\x79\x08\x26\xde\x83\x07\x97\x81\x09\xe4\xca\xc9\x22\xc9\x05\x93\x10\x7b\x5f\x48\x5d\xae\xce\x3c\x2d\x83\xb9\xc5\x3d\x00\x95\x88\x16\x19\x87\xab\x0c\xb0\xb5\x9c\xb5\x1c\xc3\xe8\x8f\xf3\x7c\xfa\x96\xbe\x8c\xa7\xb4\xf9\x43\x06\x1e\xe6\x05\xbb\xb6\xbb\x72\xcc\x65\x0d\x6e\xd1\x36\x27\x15\x0f\xbb\xbe\xfd\x02\x14\x3f\x20\xaf\xef\x06\xb1\x03\xdf\xfa\x00\x0f\x63\x80\x43\x8f\x6e\x88\x22\x2d\xe4\xff\xb5\x67\x43\x37\x54\x75\xc4\x4c\x37\x3d\x63\x8e\xa8\x4e\x08\x6d\xa5\x6e\xf6\x0a\x19\x18\x81\xdd\x95\x6a\x4c\xf9\xb6\x52\xb9\x45\x73\x84\xfc\xf6\x8a\x92\x30\xe1\xd7\x87\x44\x07\x64\xc7\xf0\xb5\x5b\x21\xd8\xab\x5c\xac\x5f\x7d\xca\xc5\x7a\x69\x47\x7a\x0a\x0d\x9a\x9a\x16\x35\x29\x8f\x07\x4e\x0e\x9d\x29\xd9\x4e\xfd\x76\x80\x9a\xb1\xd6\x24\x2c\x27\x68\x53\xb2\x66\x5e\x06\xcd\xb4\x07\xf2\xdf\x45\x5c\xe7\x62\x6e\xd4\xec\xab\x1f\x73\x5d\xf8\xa7\x01\x00\xa3\x0e\xf9\xb0\xbf\xff\xe3\xad\xd2\x67\x43\x8e\xb7\xbb\x2a\x50\xc4\x6e\xf6\x5c\xba\x03\xaf\x1b\x50\xfc\x75\x31\xcf\x30\x80\x3a\xe3\x8f\x92\x58\x3c\x46\xb9\x9e\x86\x1d\x6b\xed\x42\xe6\xe6\x58\x6b\x20\xbf\xfc\x2a\x93\xd6\xd3\x97\x38\xad\xad\x49\x20\x53\xcb\xd3\x34\x64\x94\xf7\xf1\xa5\x85\xf4\xd9\x8e\xc6\x6a\x4d\x53\xeb\xc2\xab\xd8\x1b\xc4\xd9\x12\x43\x9a\xa9\x98\x58\xca\x09\x22\x6b\xa3\x28\xd0\xd9\x8a\x83\x06\xa2\xd3\x59\x39\xb4\x9a\x9f\xea\x12\xf9\x2b\xcb\xb6\x3d\x10\x6f\xc5\xcf\x2e\xef\xc5\x7e\x74\x5d\xdb\x23\x1d\x5e\x82\x71\x0b\x8b\xd9\xee\xb2\x11\xcf\x73\x8b\x1d\xa7\xaf\x32\x73\x57\x5a\xf3\xa8\xe2\xe6\xec\xa8\xe7\x56\x44\xf7\x99\x4a\xe4\xe8\xbd\x28\xa8\x8f\x31\xa4\x0a\x73\x9e\xf9\xd2\xdc\xed\x70\xd0\xe1\x58\xb1\x27\xb1\x21\x1a\x40\x05\x16\x10\xe9\xa9\xa8\x38\x73\x1a\x93\xdd\xd3\xee\xa9\xfd\x17\xc2\x9f\x0d\xcf\xe0\x8b\x6d\x89\x0f\xd5\x4e\x15\xde\xe2\xd8\xa9\xf0\x20\xf2\x46\x4e\xd1\xc0\xce\xe6\xac\x42\xe0\xd6\xda\xa5\xe0\x82\xfc\xcd\x33\xf4\x9b\x67\xe8\x7f\xb8\x67\xe8\x6b\xba\x85\x00\x11\xf2\x9c\x3e\xa1\x9e\x00\xf9\x09\xcb\xd1\x7d\xf5\x54\xc1\x65\xb4\x8e\x27\x81\x30\x68\x90\x3f\xd7\x84\xb7\x5b\x7a\x85\x02\x64\x95\xa3\x7b\x21\x3b\x63\xf4\x96\x14\xa7\x53\x3d\xf6\xa9\x60\x9f\xdd\x9c\x3e\xc1\xdb\xfd\x1c\x69\x1e\xe0\x43\x94\xa9\x6d\x34\x13\x66\x9d\x80\xed\x69\x1a\x7e\x06\x50\x29\x95\x3b\x5a\x5f\x4d\xb9\x5d\x18\x8c\x44\xf2\x1d\x84\x08\xd5\x88\x70\x87\x22\xc1\xec\x87\x97\x99\x52\x69\x2b\x20\xec\x49\x3b\xb0\x91\x1e\x32\xb4\xf3\xe6\x68\x8c\xea\x10\x26\x65\x7b\xd1\xa7\x1a\xf8\xc4\x04\xcc\x42\x00\x25\x00\x98\x4d\x71\x09\x19\x7a\xbe\x3b\xa6\x3e\xaf\x87\x3b\x87\x0b\x21\xa3\x56\x22\xe2\xa0\x82\x67\x21\x6b\x11\x77\x39\x17\x21\xd5\x4e\x23\x09\x42\x37\xbf\xd3\x11\xb5\x84\x72\x97\x49\x1b\xed\xff\xd8\xc5\x55\xb3\x10\x2c\xa0\x1a\x6b\x6e\x91\x24\x96\x74\xee\x90\xe8\xa1\x65\xd8\x5d\x46\x29\xd7\x03\x0d\xeb\xd6\x7d\x67\x4e\x05\x5d\x40\x39\xc3\x37\xd2\x9f\x20\x09\x65\x37\x10\xb9\xb3\x90\x33\x27\xfa\xe7\xb1\x5f\x0e\xaf\x86\xe1\x52\x44\xea\x35\x86\x06\x99\xec\xfc\xcd\x65\xc2\x74\x19\x6d\x81\xab\xaf\xba\x4f\x85\xfb\x56\x73\xc5\x4e\x16\xd2\x5c\x88\xc0\xd5\xb2\xe3\x90\x6d\xfd\x68\x8c\x55\x9d\xfc\xa7\x70\xf0\x2c\xa2\x84\x0a\x11\x59\x78\x71\x52\xb2\x15\xbd\x66\x69\x13\x11\x60\xe1\x31\x25\x65\x16\xf3\x42\x4c\x17\x1e\x6d\x93\xa0\xa7\xd3\xa2\x3c\xc8\x64\xd6\x61\xc3\x42\xf4\x5e\x6d\xa7\x4d\x93\xb5\x88\xf6\x51\x43\x05\xa5\x9f\x7c\xe0\xb7\x6b\xdb\xaf\xeb\xda\x86\x1c\xa3\x98\x29\x37\xa6\x6b\xa9\xaa\x37\xfe\xf5\xd3\x3a\x57\xb0\xa0\x26\x7a\x44\x3f\x7f\xc5\x6b\x67\x8b\x0d\x3c\xce\x9e\x1f\x7c\x0f\xea\x3f\xce\xfc\xc5\xd6\x1f\xd6\x41\x62\x7d\xc3\x2c\x0c\x83\x8b\x45\x38\x75\x8c\x41\x3b\x38\xac\xdf\xcd\x5d\xf2\xab\x02\x27\x0d\xb9\xb8\x1a\x8b\xdb\xc1\x95\xae\xac\xa5\x2d\x05\x9e\x77\x3d\x16\x77\xc0\x69\xcd\x8b\x17\xda\xf5\x7a\x75\x07\xb4\x88\xf7\x77\x89\x2e\x7e\xae\x29\x26\x1e\x27\xb9\xf8\x6c\xa6\xa9\xad\x2a\x56\x73\xa8\x45\x75\x53\xb5\x79\xd4\xda\xce\x39\xb8\x3c\x59\x8d\x2c\x53\xef\x31\xf7\xa0\x4f\xae\xbf\x3e\xe1\xd1\xf4\x98\xf3\x2c\x13\xb9\x3d\xc8\x1b\xb6\x16\x08\x4e\xc1\x57\x40\x31\x6e\x2b\x50\xb6\xb6\x76\xcb\x35\x5b\x49\xad\x68\x78\x0c\xba\x6e\xda\x3e\x72\x57\x65\x9a\x76\x8e\xdc\x61\x1d\x9b\xab\x8f\xef\xde\x2d\x7f\x9e\xbd\xfb\x78\x69\x9b\xdf\xaa\x0b\x13\x3c\xd6\xd9\x27\xae\x26\xd4\x27\x5e\x79\xce\x7c\x56\x58\xe9\x5c\xe5\x5b\x8d\x4e\xae\x32\x4d\xab\x9a\x41\x0b\xf9\x89\xca\x01\x98\x36\xea\x21\x9a\x7e\x63\xbd\x1d\x57\xfd\x3e\x3c\xf6\xc9\x14\xfe\x09\xdf\x3d\x63\xbe\x11\xaf\x40\xd9\x8e\x14\xb3\xda\xfb\x95\x72\x40\x4e\x58\x0e\x08\x06\xee\x5a\x0e\x4f\xad\x8a\x76\xdc\xf2\xf8\x28\x81\x8f\x59\xc4\x56\xcc\xec\x49\x56\x07\xf6\xdd\xa7\x6a\x9c\xda\xed\xe5\x31\x5e\x69\xa0\xdc\x09\x6a\x59\x81\x42\xaf\x97\x7b\x5a\x48\xf4\x81\x9a\x3a\x15\xaa\xbb\x4e\x6c\x4e\xe6\x6d\xca\xe5\xa6\xe4\x1b\x63\xdd\xda\x8f\x2f\xe4\x2e\xd9\x6c\x91\x5d\xa2\xcc\x3c\x3e\x99\x33\x09\x24\x24\xb5\x29\x54\xc3\x27\x27\x72\x21\xa9\x4d\x72\xe3\x8b\x47\xac\xec\x9f\x6e\x5d\x73\x08\x94\x8e\x05\x91\x1c\x97\x5c\x48\x1c\x5c\x64\xbd\xb0\x91\x10\xb8\xb1\xf0\xa2\x3e\x75\x39\xc4\x2e\x51\xb2\xda\xec\xe9\x1b\x88\xc9\x2c\xa4\x4b\x4c\x45\xcf\x11\xb5\x21\x90\x6d\xc0\x2a\x1d\xde\x4f\xec\x60\xd8\x35\x41\x75\x6b\x9f\xf5\x27\x9f\x01\x66\xc1\x2d\x47\x68\xef\x36\xb7\xb1\x81\xde\x42\x1e\x6c\x1c\x5d\x6c\x05\x90\x8d\xdc\x5e\x1b\xdb\x2e\x7c\xa6\x13\xda\xaa\xca\x55\x3a\xa2\x4a\xf8\x7c\x6f\xa5\x70\x4b\xee\xaf\xd4\x80\xeb\xf0\x4d\x6d\x69\x99\x69\xda\xf7\xd9\x95\x52\x1d\xe3\xf2\x84\x01\xc5\x4a\xa5\xe8\x85\x43\x9d\x51\x46\xc5\x31\xf3\x65\x40\x8a\x5e\xbd\x8b\xec\xee\xd3\x57\xa1\x34\xd1\x47\x55\xc7\xdb\x4f\x83\x6b\xe4\x2c\x04\x3a\xec\x46\xed\xb0\x74\xce\x55\x36\xd8\x8e\x6d\x92\xe2\x49\x56\xc4\x36\xc1\xed\xc5\x2c\x1e\x54\x98\x35\xf3\x7f\xe2\x26\xd1\xc4\x8f\xdc\x04\x2a\x19\x95\xb9\x36\xdb\x25\xed\x77\xb4\x6b\xab\x9c\xf1\x85\xb4\x6a\x08\x76\x3b\x9e\x59\x70\x6e\xee\xfe\x8a\x69\x8f\x19\xb2\x89\x83\xc5\x5a\x30\x25\x85\xdd\x0d\x17\xd2\x2a\x1f\x4f\x18\x5f\x69\x2b\x28\xcc\xe5\xde\xa9\xfc\x26\x4e\xc2\x8d\x4b\x06\xa8\xe7\xc3\x7b\x5e\xcd\x0c\xa8\x9c\xf3\xbf\x33\xff\xf7\xdf\xbf\xfb\xff\x01\x00\x00\xff\xff\x8a\x19\x06\x09\xc6\xa9\x04\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x5d\x23\xbd\xdf\xde\x6c\xdc\x71\xcc\xab\xb4\xf3\x41\x25\x4c\x1f\xca\x4d\xa7\xa0\x40\xca\xa2\xaa\xa6\xb3\xf5\x79\xf5\xbd\x24\xe6\x00\x32\x36\x7c\x1c\x73\x22\x03\x23\x3e\xf2\xb6\xb8\x84\x4e\x89\x96\x3e\x46\x4c\x93\x71\xe8\x70\x30\x00\xdb\x0e\x6f\x5b\x77\x1a\x09\x2e\xa5\x8d\xbc\x37\xed\x2c\xcf\x9f\xda\xa2\x96\x9f\x41\x09\x3f\xbf\xbe\x1a\xd7\xab\xfa\x05\xcf\x5c\x7d\x3f\xfb\xb0\x31\xc9\xbe\xb5\xa9\x95\xd5\xfc\x8a\xb5\x58\xa3\x9e\xdf\xf1\xe9\xc5\xb9\x2f\x62\x55\xe9\xba\x5e\xd0\x2f\x44\x56\x6f\x2f\xe9\x57\x9f\x71\x50\xdc\xaf\xd2\xc4\x92\xf2\x7e\xab\x37\xab\x1c\xef\xbb\x0d\x6c\x5e\x65\xeb\x57\xf2\x87\x32\xcd\xac\x0a\x4b\xdf\xd1\x36\xb5\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x76\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\xb5\xad\x58\xcf\xe3\x75\x6f\x61\xd2\x77\x11\xc6\xfc\x7a\x39\xcc\xc9\xa2\x88\xda\x93\x56\x76\x73\x25\xb8\x5b\xec\xfe\x13\xe2\x21\xe1\x5b\x37\x74\xdb\x24\x45\x0f\x1d\x25\x08\x96\x36\x1c\x03\x72\xf9\x2a\x79\x3e\x6b\x98\x87\xfd\x98\x4d\x36\xf0\xa1\x2f\xc2\x10\x5c\x35\xb6\xae\x58\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\x63\x7e\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\x01\x07\xa6\x67\x30\x8f\x49\x9a\x6a\x05\x1e\x54\x13\xc6\x0f\x79\xe6\x74\x96\xd2\x5b\x50\x41\x83\x4e\xf5\x8d\x15\x84\x2b\xe8\x2f\xd8\x21\xf9\x4c\xa5\xd2\x72\x45\x43\xac\xa6\x6b\x04\x24\x1e\xa8\xab\x35\x27\xf6\x86\x1b\x7d\x18\x7c\x77\x7d\x7b\x3f\x3c\x1b\x7d\x28\xa2\xf3\x5d\xfa\x99\x47\x84\x72\x00\xff\x9c\x8d\x98\x0f\xa8\xf5\x00\xc8\xb0\x97\x08\xc7\x71\x81\x6c\x60\x95\x48\x23\xb3\x2d\xe5\xc8\xc1\xa9\x58\x19\x4a\xbb\xa4\x99\x07\xc8\x41\xda\xd7\x93\xb5\xc4\x75\x56\x3a\x39\x26\x93\x6a\x49\xca\xcb\x8e\x2e\x9b\x10\xbb\x55\x19\x5d\x9b\x28\x07\x2e\xc8\xc8\xb3\xd3\x95\xe0\x76\x3e\xc6\xe6\x12\x5e\x8f\xdb\xb9\x0d\xd9\x60\x53\x3f\xd2\xcf\x24\xbe\x6d\x91\xaa\x76\x92\xd1\xd2\x29\x12\xb0\x71\x17\x72\x46\xd7\xd1\xf8\xfd\x54\x1e\xf4\x77\xdd\xd9\xd2\x75\x01\xc9\x56\xc0\xab\x02\xb6\xaa\x42\x18\x45\x44\x28\x4c\x19\x9a\xc2\xc1\x66\xd1\x02\x01\x60\x07\x01\x1f\xf6\x1f\x51\x4a\x19\x20\x07\x2c\x5b\xda\x87\xf2\x3c\xd6\x10\x5a\x2f\xcf\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\x83\x9f\x97\xca\xaa\x95\x16\x96\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xc6\x89\x26\x0b\x45\x1e\x6e\x2f\xb6\x92\xef\x9a\x9d\x65\xad\x18\xe1\xa1\x74\xd5\x8c\x88\xd0\xe5\xd3\x98\x44\xab\x50\x4c\xbb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x32\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\x76\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x8d\x93\x66\x87\xb2\x24\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\x47\xa6\x42\xfc\x40\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x11\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\x06\x37\xe7\x0d\x6b\x7d\x51\x75\x21\x7d\x59\xe5\x6c\x12\xef\xcd\xda\x35\x48\x52\x90\x9e\xb8\x17\xa8\x48\x76\xa6\xdb\xc1\x20\x19\xa7\xff\x4d\x39\x92\x60\x1f\xd0\x7a\x9b\x54\x86\x52\xda\xf1\x0a\x60\xde\xf5\x32\xf1\x8a\x65\x58\x13\xf4\x28\x1c\x90\x4d\x03\x09\x81\x7e\xea\x31\xc6\x07\x21\xf0\x0f\x37\x05\x73\x6d\x6c\xc1\xce\xc0\x90\x8a\xd9\x74\x41\x43\xfa\xd1\x50\xb4\x07\xcb\x00\xf8\x0f\x57\x90\xd1\xc5\x06\xdb\xdc\xf5\x70\xba\x21\xb5\xad\x07\xa0\x54\x8c\xcf\x99\xbf\x2d\x16\x35\xce\xb0\xb5\x3b\x80\x12\xe5\x2a\x25\x34\x15\xd6\x3b\x1a\xb1\x20\x60\x45\x1a\xb5\x47\x9f\x11\x57\x9c\x04\x2a\xde\x32\x00\xb6\x86\x24\x1d\x2f\xfc\x94\x76\xa0\x9a\x22\xaf\xe6\xe5\xf2\x22\xb5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\xa0\x33\xad\xab\x38\x04\xc7\x6a\xa5\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xcd\xaa\xfe\x39\x23\xd1\x26\x10\x32\x37\x58\xe0\x94\x28\x22\x96\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x2a\x48\x18\x3f\x8b\xb5\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x35\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x6d\xe7\xf4\x3a\x50\x28\xf7\x35\x50\x91\x52\xb8\xd0\x9e\x60\xa0\xac\x1e\x65\x1b\xf8\xc9\x2a\x5e\xba\x13\xde\xed\x32\x1c\x5c\x0a\x6d\xe5\x50\x95\x72\x27\x80\x4a\x40\xa5\x32\x38\x20\xcd\x00\x26\x20\xb4\x34\x45\x48\x06\x6e\x3f\x0b\x6f\x57\x18\x74\xad\x64\x55\x2d\x2e\x55\x59\xae\x15\x3c\x6e\x57\xe0\x0e\xbd\x44\xb3\x6b\x89\x66\x15\x29\x97\xa2\x6b\x35\x75\x12\x51\xc1\x99\xb1\x45\x9f\x2d\x40\x40\x79\x82\x90\x7b\x64\xaf\x48\x5b\x39\x16\xae\x7e\xca\xfc\xbf\xca\x1c\xdc\x11\x75\x48\xaa\x4d\x49\x95\x47\x81\x0b\x0a\x3c\x50\x49\x28\x0d\xd8\xb8\x1a\x18\xad\x09\x83\x34\x56\xfe\xf3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x07\xf0\x16\xc0\x20\xc8\x7c\x92\x52\x85\x70\x30\xc3\x92\x49\xf2\xc0\x9e\x67\xfd\x01\xcc\xb8\x31\xcf\xbe\x09\xa2\x67\xc5\xa1\xd9\xc0\xbe\x56\x34\xb2\x6d\x2a\x7d\x10\xd3\xfc\xb2\xc9\xf4\x81\xc6\x13\x6a\x98\x8d\x67\xae\xcf\xa6\x47\xcd\xd6\x06\x0b\x1a\x0a\xc8\xae\x54\xaa\xca\xdd\x62\x0d\x3d\x2b\x32\xe9\x8b\x8d\xe8\x94\x4a\x5f\xbc\xbe\x8b\x5c\xfa\xb6\x32\x65\xcb\x72\x2b\xdd\x27\x2d\xf6\x6f\x97\xb3\xab\xb8\x0b\x9c\x0f\x25\xa5\x9b\x56\x49\x69\xdf\x50\xcd\x8a\x84\x80\xcd\xc3\xcb\xd7\x51\x07\x8b\xfc\xac\x90\x8a\x82\x74\xcb\x32\x26\x0c\xa9\x72\x7e\xc6\x15\xe4\xd4\x44\x50\xc2\xbd\x96\xe7\x39\x62\xcd\x12\xc8\x72\x9e\xb8\x6d\x8a\xc6\x4e\xd1\xcf\x82\xf3\xe7\x66\x61\x2d\x5a\x3f\xf9\x20\x37\xa3\x2c\xdb\x62\xec\x55\x11\xb3\x70\xf1\xb5\x05\x27\x69\xc1\x63\x93\x84\xe3\x86\x53\xd9\x3c\xf4\x5a\x02\xc5\xca\x73\x61\x2f\xdd\x1d\xaa\x76\x35\xee\xdc\x39\xdf\xc4\xcb\xc8\x96\x1b\xbb\x80\x69\xa7\xc6\x57\x3c\xb5\x9b\x14\x99\x05\x50\xd1\x9d\x41\xa1\x56\xd1\x09\x74\xe3\x07\xe0\xdd\xb5\x43\xc7\x26\xd2\xc5\x03\x74\x57\xb6\xa4\x34\x61\x5b\xbc\xff\x05\x26\xbd\x6e\x61\xe0\xc0\xdb\x28\x6c\xb4\x2f\x0d\xed\x06\x50\x11\xd8\x06\x49\x56\xf8\xb0\x17\xed\x72\x16\x13\xc1\x08\x56\xf3\xd7\xcb\xb1\x38\xdd\xd6\x38\x1d\x8c\xef\x65\xf3\x2d\x4e\x77\x52\x15\x3e\x1c\x6e\xb9\x42\xfa\xca\x71\xea\xd7\xbb\xd8\x89\x6c\xe8\x81\xaf\x11\x5c\x53\x1c\x1b\x8c\x86\x01\x04\xcd\x3a\x54\xba\x55\x1a\x46\xb3\x32\xf7\x32\x09\x29\x0d\x56\x9f\x5a\x2a\x8a\x3e\xec\x61\x65\xe5\x15\x4b\xf2\x45\x64\x7e\xbc\x7c\x32\xc2\xb2\x1a\xce\x79\x90\x9f\x00\x85\xb4\x15\xa6\xcc\x72\xaf\x65\x29\x09\x5a\xa2\x4c\x71\x53\x16\xc2\xde\xe7\xb7\x7c\xf1\xe9\x2d\x7d\xb2\x43\x9f\xec\xd0\xb0\x47\x7d\xb2\x03\x42\xfb\x96\xec\xb0\x4a\x01\x5d\x66\xfe\xf4\x1e\x39\xa8\xb5\x59\x2a\x70\x63\xf6\x77\x85\x16\xb9\x79\x40\xbf\xb3\x20\x86\xd1\x50\xf6\x17\xfb\x43\x63\x40\x54\xed\xb3\xea\x6c\x43\x6b\x26\x5b\x54\x9d\x02\x58\xc4\x89\x45\xa1\xb3\xe1\xca\x65\xeb\xd3\x32\x43\xe9\x88\x7d\xcf\x9f\xc9\x13\x11\x07\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xe8\x18\x38\x08\x25\x40\x73\x13\x05\x81\xd1\x15\x4e\x49\x6c\xea\x1d\x06\x41\x8d\xd6\x5c\x6b\x1d\xad\x4d\x60\xab\x80\x1b\x6a\xb6\xc1\x45\x4d\x8c\x98\x09\x34\x34\xc1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x37\xf0\xef\x8e\xd0\xbd\xbe\x9f\xa8\x2c\x8f\x37\xc0\x5e\x6b\x1b\xdb\x88\xcd\x04\xcf\x33\x6f\x41\xe3\x13\x53\xf8\xd6\xc4\x3e\xd5\xdd\xc0\x30\x18\xe7\x03\x8e\x70\xac\x35\xf1\xe5\x84\xf3\x26\x31\xa8\x1b\x01\x18\x85\x04\xa4\x8f\xa1\x0f\xac\xb3\x81\xee\xc6\x7b\x1b\xc0\xb6\x2c\x83\x61\x7f\x21\xd7\xf2\x19\x91\x60\x13\xf2\x36\xf7\x52\x16\x79\x19\xa9\xa0\x71\x9c\xcb\x2c\xa2\xde\x6b\xe1\x2c\xfb\xcd\x20\x08\x45\xe7\x36\xe2\xcb\xa4\xa8\xda\x7b\xe2\xc5\x6c\xa5\x9d\x63\x67\xdb\xf8\xc5\x4d\x2e\x32\x0e\x92\x58\xb2\x70\xa0\x0d\x16\xe7\x2d\xe3\x59\x6e\xa2\xda\x68\x18\xe4\xd4\x48\xd9\x54\xaa\x4b\xac\xa2\xb9\xe6\xdc\x05\xde\xd9\x8e\xa2\xfd\x0a\xae\xfc\xb2\xf6\xd3\x86\x19\x9c\x86\xbd\xb7\x38\x14\x3a\xd8\xd3\xcd\xbd\xef\x82\xeb\x9d\x24\x91\xea\xfe\x8c\xd3\xcd\x96\xb3\x0e\xac\xa2\xee\x13\xfb\x44\x4f\x74\x15\x15\xad\x1a\x7f\x37\xda\x2a\xd7\xdb\xda\x79\x1c\xe1\x16\x00\x32\x67\x16\xae\xab\x78\xd1\xd6\x67\x6d\x71\xfe\x0b\xba\x59\x0e\x90\xc5\xc8\x7f\xd2\xe2\x88\xb7\xb7\xa6\x38\xd3\x4a\x84\xe2\xfa\x96\x14\x33\x23\xc7\x9a\x28\x59\x84\x51\x2e\xa8\x3b\xfb\x95\x8c\xf0\x76\xea\x00\xfb\xe4\x71\x58\x4f\x29\xc2\x41\xa9\x39\xe3\xee\xc7\x91\xca\xb1\x0f\x4b\x04\x9a\x70\x25\xd0\x4d\xf6\xbb\x73\xab\x0b\x27\xde\x35\xec\xe9\x4a\xc2\xde\x62\x97\x71\x13\xba\x61\xa7\x93\x46\xd9\x2c\x80\x46\x6c\xb6\x11\x77\xa9\x7c\xd0\xf8\x65\xb7\xea\x0d\x8d\x9f\x3a\xd9\x67\x93\x6f\x97\x40\x37\x6d\x1c\x99\x5d\x8a\x72\xb7\x61\xb0\x56\x7a\x0a\x41\x2b\xad\xfd\x0e\xb0\x67\x29\xb8\xe9\xb1\x95\xa6\xfe\xcb\xff\x65\x2a\x65\x99\xa5\xf9\x2f\xc4\xc5\x88\x99\xdf\x0f\x7c\x95\x0a\xfd\x42\x01\xff\x8a\x53\x52\x00\x64\x8a\x32\x94\x1e\x00\x8a\x58\x28\x34\x03\xf5\xeb\x41\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xe8\x01\xcf\xcc\x52\xcc\xf0\x0c\x80\x85\x0f\x20\x2e\x0e\xc4\xd5\x42\x15\x31\x24\x6d\xaa\x1d\x02\xb7\xd2\xcc\xd2\x66\xdb\x16\x55\x7f\xa1\x4f\x23\xca\x5a\x5c\xd3\x22\xb8\xa2\x99\xfa\x6f\x6d\xff\x9b\x49\xec\xf7\x83\xbb\x1f\xc6\xb7\xc3\xbb\xeb\x87\xdb\xd3\x92\xd8\x7e\x7a\xf1\x70\x77\x3f\xbc\x6d\x7c\x56\x64\xaa\xfe\xf5\x61\xf8\xd0\xf2\xc8\x35\x70\x31\xf8\x6e\x58\x2a\xa1\xfd\xd7\x87\xc1\xc5\xf9\xfd\xcf\xe3\xeb\x8f\xe3\xbb\xe1\xed\x8f\xe7\xa7\xc3\xf1\xdd\xcd\xf0\xf4\xfc\xe3\xf9\xe9\x40\x7f\x19\xbe\x7b\x73\xf1\xf0\xe9\xfc\x6a\xec\x82\x8e\xc3\x47\x3f\x5d\xdf\xfe\xf0\xf1\xe2\xfa\xa7\x71\xd0\xe5\xf5\xd5\xc7\xf3\x4f\x4d\xb3\x18\xdc\xdd\x9d\x7f\xba\xba\x1c\x5e\x2d\x2f\xd5\xdd\xbc\x1a\xad\x55\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xae\x8b\x1b\x43\x8f\x87\x07\xee\x2f\x53\x58\xfb\x50\xb3\x40\xe7\x15\x2b\xb8\xc7\x88\x79\xb7\xa5\xbf\x54\x15\x9e\x49\x97\x78\x5c\x1a\xed\x09\x1a\xc0\x59\x01\x85\xa1\xd4\x29\xe4\x35\xf8\x91\x3a\x47\x37\xd0\x61\x42\x53\x0a\x3e\x6f\x74\x88\xaa\x1b\x5e\x6e\xd0\xce\x09\x86\x60\xbd\x76\xf1\xb2\xd3\x20\xab\x39\xcd\x40\x29\x27\xc8\x71\x68\x62\xcc\x09\x06\x79\x76\xc1\x70\x4a\xa3\x6a\x02\x06\x80\xaf\xa2\x02\x68\xa4\xda\x62\x89\xc0\xca\x2d\xcf\x09\xfa\xe1\x2f\xc5\xa0\xc0\x83\x61\x35\xef\xbc\x56\x4f\xcf\x3e\x10\xb9\x59\xd5\x55\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\xeb\x76\x83\xbb\x29\x67\x01\xd8\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd0\x1d\x00\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xc5\xf7\x09\x99\xe3\x27\xca\x5d\xf1\x0a\x53\xe3\x03\xd6\xd1\x8a\x56\xe8\x10\xb5\x1e\x94\x13\x34\x88\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xb0\x3c\xec\x10\x1f\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xbb\x87\x72\xa9\xb3\xc3\xf2\xdd\xbb\xc5\xf5\xaf\x57\x70\xec\x48\x79\xbc\x91\x30\x70\x8f\xe5\xa3\x63\xcd\xab\x04\x02\x07\xaa\xb3\x5d\x8f\x16\x5d\xa7\x6b\xa7\x7e\x65\xc7\x70\xd0\x36\xeb\xb3\x15\x13\x7a\x45\x97\x6e\xc6\x49\xa5\x70\x57\xe7\xfe\x4a\x85\xbf\x1a\x3b\xdb\xa9\xb7\xa7\x59\x1a\x83\x23\x39\xf6\xf4\xbf\xc6\x3c\x6e\xe0\xd3\x6b\xff\xe5\x52\x91\x6d\x1c\xac\xdb\xba\x3e\xa0\x5a\x8a\xae\xf5\x03\x2d\xa5\xc3\x1d\x81\x3b\x75\x17\x06\xa1\xec\x02\x8d\xc0\xdd\x87\x29\xb3\xc5\x78\x88\xf7\x47\xb9\xf2\xd3\xfa\x1c\xfb\x02\x71\x78\xc2\x9f\x4a\xca\x65\x4a\xa4\xc4\x2d\x70\x25\x81\x49\x6c\x1b\xc6\xe0\x4f\xa8\xfd\xb0\x23\x3d\xb9\x33\x79\xaf\xbf\x5a\x66\xf4\xb9\x0d\x35\x63\x37\x51\x2d\xb0\xc6\x2e\xce\x16\x5d\x9b\x6c\x3b\xcd\x5f\x0e\x8a\x50\x1a\x2e\x82\x08\xa3\x36\xf7\x4f\x47\xb3\x5a\x75\xc1\x1a\x6b\x2c\x85\x2e\xbc\xf5\x23\x70\x82\xd6\x37\xc6\xc3\xb6\x7e\x15\x5c\x5e\x9f\x35\xa8\xae\xe4\xef\x0c\xeb\x4f\x47\x3c\x4d\x8d\x5c\x50\xb2\xa5\x1e\x20\x6c\x92\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\x71\x30\x62\xcf\xc1\x86\x94\xc2\x80\x07\x61\x4b\x80\x25\xfa\x59\x1f\x37\xfa\x54\x0a\xae\x06\x91\x91\x42\xa4\x6f\x40\x08\xc6\x21\x58\x14\x8f\x5a\x41\xe0\xc1\x7e\x6d\x41\xea\x1b\x54\x0a\xac\xac\x6f\x5b\xbd\x40\x3f\xb7\xa0\x4c\xdf\x16\x9a\x72\xd7\x21\x04\x95\x02\x9b\x46\xb0\x83\x42\x81\xaf\x0a\xee\xed\x93\x35\x4d\x6e\x6f\x3a\xb1\x08\x15\x7a\xba\x6e\xb5\x7f\xef\x66\xf4\x7b\xe3\x77\xc8\x5b\x20\x4d\x82\xd6\x3c\xbe\x37\x3a\xd4\x32\xab\x4b\xb5\xb7\x81\x18\x12\x1d\x1a\xcc\xc0\xaf\x20\xce\x72\x70\x73\xfe\xd5\x01\xfa\x2a\xcc\x35\xfb\x6a\xa3\x03\x68\xc7\x6d\x8b\x05\x82\x36\x55\x4a\x38\x28\x1f\x3b\xd8\xab\xca\x49\xb4\x7b\x66\x0f\x22\x6a\x3b\x87\xfa\xcb\xd2\x37\xe0\x9c\x86\xe2\x77\xc6\x7f\xeb\xc3\x9d\xad\x0b\xc8\xc8\xb8\x54\x36\xac\x5d\x3c\x62\x93\x45\xd5\xc9\x73\xe0\xbd\x3c\x9d\x4f\xe9\xd6\x05\xdd\x74\x7b\xf5\xe4\xe4\x1d\x87\xe1\x2e\xbf\x0f\x56\xa4\x3b\x0f\x4c\xc4\x35\x9f\x06\x5c\xac\x2d\x4a\xa1\x8f\x5f\x6f\x9a\x55\xc9\x5e\xe6\x16\xb3\x71\x53\x56\xc9\x3f\xef\x8d\xdc\x3a\x04\x7d\x0f\x9a\x56\xc4\xc6\xfb\xb7\x08\xd7\x3d\x95\xbd\x2c\x95\xed\x22\xdf\xa1\x3c\xb8\xf5\x2f\xd0\x53\x23\xc7\x05\xcd\x38\x83\xab\x56\x26\x3c\x83\x2f\x55\xfd\x5b\x5d\x2e\x77\x4d\x9f\x6f\xb0\x26\xab\x9d\xbe\x77\x26\x70\xc0\xb8\x5d\xeb\x63\xad\x0e\x75\xa0\x6c\x09\x22\x4e\x4d\x6e\xa3\xa2\x29\x39\x40\x9c\x25\x8b\x20\xd8\xc1\x9e\x57\x20\x37\x13\xa3\x34\x27\x54\xb8\x4e\x2c\xc2\xe0\x5a\xc9\xf0\x6b\x4a\xe3\x6d\x34\xb2\x45\xa4\xc9\xd5\xe0\x72\x78\x36\x1e\x5e\xdd\x9f\xdf\xff\xdc\x80\x1e\x59\x7e\xec\x00\x24\x83\x17\xee\x7e\xbe\xbb\x1f\x5e\x8e\x3f\x0d\xaf\x86\xb7\x83\xfb\x15\xe0\x92\xcb\x3a\x6b\x03\x2e\xcc\x65\x93\xfa\xb6\x0e\x78\xa1\x33\xf3\x36\xf4\x5e\x87\x98\x0c\x3a\xa1\xa4\x05\x66\xd2\x24\xfe\xb3\x98\x08\x14\x93\x27\x92\xf0\xac\x30\xab\x36\x2e\x58\x80\x3f\xd9\xd0\xfe\x32\x0c\x4a\x68\xb3\xba\xc6\x27\xc8\x54\x7a\x0b\x8a\xdd\xfa\x06\x41\xe4\xc3\x82\xb0\xaf\x14\x22\x9f\xb3\x84\x46\x54\x05\x89\x81\x5c\x58\xf7\x8a\x71\x1f\x42\x74\xea\x0a\xe2\xda\x59\x34\xca\xce\x75\xfe\xd0\x93\x5e\xd7\xf6\xfd\x89\xf2\x78\x68\x2b\xcb\x07\xed\x40\xb1\x6f\x71\x1a\xd7\xe0\xda\x36\x18\xdd\x4b\x98\x07\xea\x19\x3a\x36\xb9\xaf\x05\xca\xad\x79\x90\xab\x6f\xc3\x65\x71\x32\xa5\x73\xbd\x3c\x50\xa6\x1b\xa5\xbe\x71\xb8\x4b\xa9\xac\xe6\x0e\x70\x37\x6c\xec\xfa\x9a\x01\x0b\xb5\x6a\x31\xcc\xc4\x9c\x62\x24\x48\xca\x95\x56\xc0\x4c\x44\xc0\x81\x16\xaa\x28\x4e\xe8\xaf\x80\x50\x25\xc8\x51\x10\x41\xe1\x70\xbd\x0a\xf7\x81\x45\x8f\x38\x1a\xb1\xb3\xe1\xcd\xed\xf0\x54\x33\xa4\x23\xf4\x20\x01\x7c\xaa\x34\xf5\x33\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xb6\x60\x30\x22\x04\x17\xdd\xf9\x83\xef\x6f\x08\xdf\x35\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb5\x26\x72\x90\x33\xb0\xf3\x94\xac\x5b\xfc\x5c\x5a\x91\x10\x7c\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x7c\x67\xf7\xf9\x95\xfa\xbc\x81\x6f\x97\xcd\xf3\x1e\x42\xec\xa4\x2a\xb0\x40\x0d\x5c\xa8\xaf\x79\x53\x99\x67\xab\xa8\x28\xde\x02\xa8\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x38\x6c\x68\x69\xab\x07\xcd\xac\x7b\x54\xf5\x9a\xe1\x94\xe7\x0c\x94\x06\x08\x63\x6d\x18\x8c\xcc\x08\x53\x2b\x06\xf3\x56\x30\x2c\x95\xa1\xee\x2f\x12\x4b\xc3\x40\xdb\xc0\x58\x9a\xfc\x49\x50\x78\x79\xbd\x6b\xd9\x05\xe5\x95\x9c\x4a\xfa\x50\xf9\xfb\xb9\x59\xcb\xc6\xf2\x71\xeb\xee\xee\xb1\x7c\x5c\xdd\x55\x4c\xa2\xc7\x75\x2f\x9b\x6a\x66\x66\x62\xeb\x56\xd7\x8c\x7d\x0b\xfd\xd4\x16\x66\x81\x72\xe5\xd1\x23\xfa\xfe\xfe\xf2\x02\x4d\xa9\x96\x7b\xf5\xb5\x72\x85\xb5\x8c\xfd\x20\x12\x67\x17\xb6\xb6\xd5\x5c\x24\xfe\xee\x85\x8d\x77\xa2\x54\x20\x25\xe8\x1b\x0d\xcf\x88\x33\xf6\x0a\x8b\xb5\x57\x29\xcc\x22\x30\x8b\x79\x6a\xe6\x71\x2c\xf3\xe9\x94\x7e\x3e\x52\x58\x7c\xd3\xb2\x1e\x26\xaa\x62\xfc\x77\x3e\x19\xeb\x11\x6d\x79\x11\x37\x35\x87\x6c\x39\x65\xbf\x6c\x76\x66\x67\xe6\xdd\xff\xcb\x27\x90\xeb\x9e\x09\x0e\xf8\x7f\xe0\x9d\xb3\x91\x0a\xf6\x15\x47\x49\x47\xc8\x25\x50\x95\x20\x4e\x22\x2e\x04\xb1\x29\xf2\xa6\xb2\x68\x86\x85\xa2\x60\xad\x75\x10\x29\x25\x6c\xfc\x62\x8b\xc2\x82\xdf\x73\x5c\xe0\x50\x4f\x08\x01\x07\x4f\x46\x93\xf5\x94\xde\xd3\x92\x6f\xb2\x72\x02\x6d\xe4\xa9\x45\xcd\x04\x83\xcc\x4a\x11\x6b\xf8\x44\x98\xda\x89\x7e\x02\x4d\x34\x24\xed\x77\xf3\x32\x98\x02\x9f\xe7\x67\xc5\xe5\xe6\x42\x7a\xc3\xa8\x26\x25\x30\xdc\xf3\x36\x51\xca\xba\xd4\xdb\x1c\xfd\x4f\x9d\x7d\xc7\xf0\x6a\x7d\x5d\x56\x84\xc6\xdb\xd5\x2e\x0a\x7d\x17\x61\xad\x0e\xd8\x7f\x43\x18\x1f\x49\x8c\x15\x23\x80\x8f\xb0\xca\x69\x75\xcf\x4d\x9f\x9a\xb6\x2a\x5d\xae\xdc\xf2\x0d\x30\x6b\x4a\xcd\x7c\x22\x90\xd2\xb9\x8b\x40\xf4\x75\x52\xf7\x61\x20\x0f\x22\x81\x10\xea\xa5\x56\x2c\x53\x64\x5c\x73\x3e\x2f\xd9\xe1\x0e\x32\xba\x19\x8c\x16\x1a\x49\x26\x48\xa4\xaf\xb2\x13\x74\x93\x10\x2d\x79\xe5\x5a\xfa\xca\x93\xc4\xe1\x7b\x2d\x97\x0e\xd7\xc2\xa4\x7b\xf1\x79\x05\xba\xc7\x92\x89\x39\x7c\xbb\xe5\x33\x0b\xd6\x60\xf7\x80\x0b\xc1\xfa\x82\x09\x19\x0c\x89\x65\x2d\x12\x38\xfc\xc2\xc4\xcd\x82\x29\x09\x97\x2e\x32\xfa\xab\x66\xbf\x82\xc8\x39\x6f\x4d\x72\x0c\x67\xfb\x32\x73\x70\x4b\xf9\x82\x93\x70\xf7\x61\x5b\x5c\x75\x07\xb9\xa6\x72\x07\x96\x44\x9c\x65\x53\xf4\xb5\x1f\x7c\xf4\x87\x45\x5b\xb5\x77\xab\x1d\x1a\xdc\x92\x85\xa9\x2d\x44\x3e\x2b\x5c\x17\x85\x32\xb3\x30\xbe\x57\xff\x79\x61\x40\x2e\x52\x02\xa8\x92\x45\xcd\x39\xa4\xef\xda\xb6\x2d\xd6\xf3\x1c\xe7\x62\x2d\x48\x8a\x02\xb3\x7c\x1d\xce\x6d\x93\x51\x8a\x61\xe9\x45\x68\x66\x97\xb6\x94\x04\x88\xd1\x36\xd4\x48\x96\x70\xe0\x2c\xd9\x98\x65\x6c\x54\xf1\xda\x99\xf2\xb6\x6e\x35\x90\x92\x0b\x51\xe6\xa5\xbc\x6b\x25\x0a\x2c\x4d\xa0\x47\x16\x5b\x1f\x59\xcc\xd6\x15\xf1\xb4\x07\x38\x80\x4a\x40\xe2\x7f\xe1\x40\xab\x0a\x0e\xd6\xe8\xbd\x2a\xf3\xa9\xb4\x3b\x9d\xd2\x9c\x4a\x5f\x68\x5e\x72\xb6\xa5\x07\x4e\x4f\x66\x31\x86\xc4\xd1\x6d\xa2\x70\x4a\xf3\x37\xde\x03\x68\x93\xc4\xc8\xa0\x17\x18\xdc\x63\xbb\x76\xde\x73\x92\x61\x41\x98\x1a\xb1\x5b\x3d\x0a\xf3\x45\x11\x89\xe1\xe2\x70\x1c\x16\x3d\x54\xac\x9d\x22\x6c\xbf\x82\x45\x6f\x0b\x84\x93\x63\xf3\x12\xa8\xa6\x2f\x98\x64\xff\x9d\x79\xc7\x60\x1e\x58\xcc\x1f\x3d\x55\x3a\x2d\xd4\x78\x2d\x40\x46\x73\x0a\x90\x03\x31\x91\xf6\x42\xa2\xca\x62\x4a\x78\xf1\x3b\x27\x0e\x7d\x19\x3e\xf3\xfc\xab\x89\x61\x3b\x43\x01\x73\x06\x3a\x39\x62\x41\x1f\x4b\xc0\x3a\x8d\xb2\xbe\xa1\x2a\x01\xfb\x4c\x63\xef\xf8\x82\x7f\x9a\x1d\xe2\x82\xce\x28\x0b\x4a\x26\xd9\xe9\xa5\x38\x03\xf3\xae\x39\x83\x7c\xea\xef\xb4\x7b\x9b\x65\x70\x04\x23\xfe\x9f\xff\xfe\xdb\x11\x6d\xf3\x7e\xc8\xb1\x5d\x81\x7d\xd8\xc9\xf5\xb6\x25\xdc\xf9\x00\x45\xa4\x05\x9d\x22\xd0\x69\x65\x29\x73\xa2\xf8\xd5\x5e\x6e\x9a\x68\xb8\x9a\x1b\x77\x6f\x99\xdc\xc1\x37\x22\xf2\xe5\x55\x04\x02\x16\x57\x04\x04\x14\x5e\xdf\x20\xe8\xd6\xd5\x88\x30\xc1\x92\xba\xfd\xca\x85\x52\x61\x50\x01\x98\xdf\x36\xc1\x89\x73\x2c\x5f\x2e\x02\xa5\xb1\xb6\x91\x31\x1a\x87\x77\xe4\xaa\x58\x14\x33\x48\x93\xd4\xa8\x77\x25\x97\x44\x98\x03\xed\x51\x9f\x2c\xf1\x84\x50\x85\x10\x8a\xb8\xc2\xa5\x46\x52\x4c\xd7\x0a\x9b\xd7\xef\x37\x03\x29\x96\x6c\xea\x78\x46\xc4\x38\xce\x4b\x31\xd2\xab\xda\xbe\xd1\x1f\x9d\xe5\x6a\xb1\xba\x7d\x99\xe0\x7a\x6d\x97\x65\xe0\x95\xfa\xfd\x96\x66\x57\x0b\x86\x41\x24\x4b\x59\x38\x6c\x81\x86\x24\x15\x68\x48\x1b\x5a\x59\xb2\x04\xc0\x45\xc3\x14\x20\xc7\x15\x0a\x83\xbd\x89\x0c\x80\x35\x8c\x1c\x4d\xf2\xc2\x72\xe2\x4b\x02\xc4\x47\x23\xf6\xd1\xd4\xd4\x00\x65\xc6\x0c\x20\x82\xbc\x16\xf2\x39\xe3\x92\x94\x12\xad\x1a\x60\xfe\x6d\xa2\xa4\x1d\x46\xb3\x4c\x5a\x7c\xb4\xbd\x48\xfa\xe6\x20\x9f\xf5\x0d\xaf\x4f\xb9\x99\x02\xb7\x92\x7a\x22\x9a\x51\x4d\x3b\xe3\xc6\x93\xf6\x72\xa5\x66\x8b\xd0\x25\x80\x7b\x52\xc9\xe2\x00\xf9\xe9\x55\x08\x22\x21\x4f\x04\xac\xc6\x30\xc6\xb0\x98\x43\xd9\x7c\xd5\xc2\x4e\x56\x1d\xa0\x22\xcb\x11\xd8\x02\x8a\xab\x23\x28\xe7\x82\x35\xd1\x62\x39\xcb\x65\xeb\x84\xac\xa6\xf8\x8b\x35\xa4\xd0\x41\x58\xd4\x62\x41\x14\x22\x9f\x15\xb1\x65\x2f\xef\x5d\xca\x5c\x3d\xca\x1e\x35\x67\xfd\xb4\x8b\x48\x2f\x5e\x80\x78\xe0\x12\xa5\x5d\x4e\x60\xec\xee\x7d\x9b\x23\x37\xc7\x2c\xb6\x89\x9f\x56\x96\xd6\x32\x05\xcc\xce\xd8\x96\x7c\x48\xbc\x4d\x5f\x0c\xd0\xc0\x4d\x9b\x06\xb6\x1c\x2e\x32\xa7\x17\x69\xc9\x1c\xa2\x08\xb8\xd0\x02\x6a\xce\x14\x4d\x34\x71\xd8\x31\x68\xad\x39\x67\x1e\x8f\x0f\x02\xb8\xdb\x20\xdf\xa8\x94\x94\xcd\xc6\x76\x25\x5d\x0e\x63\xb7\x8b\xa1\x4c\x53\x97\xa6\x29\xf3\xe3\x77\xae\xa1\xe5\xb6\x63\x43\xd6\x00\xc7\xe5\xb2\x27\x41\xb0\x66\xdc\x4d\xc6\xe2\xa8\xb9\xa4\xcb\x31\x8d\xcd\x52\x50\x53\x5d\x19\x26\xba\x8e\x79\x19\xc4\xba\x3a\x5c\x41\x71\x85\x48\x9b\x11\x69\xf2\x9c\x20\x20\x5d\xb5\xa4\x7c\xca\xd6\x54\xcf\x73\xe6\x45\x34\x5b\xdb\xc9\x27\xb4\x57\xb2\x46\xb1\xeb\xce\x46\xdd\xe3\x24\x99\xe0\xe8\xd1\x2b\x1b\x5e\xe5\xe6\xc2\x61\xe3\x6b\x01\x15\x8a\x7f\x19\xe2\xd2\x03\x8d\x40\xba\x09\x9d\x62\x06\xb0\xc6\x0e\xbb\xe8\xdc\xac\x9a\x45\x02\x33\x08\x45\x66\xf4\x26\x84\x3f\x26\x59\xc2\x17\x69\xcb\x7d\x56\xcd\x94\xdb\x26\x20\xa5\x2d\x51\x6f\xa7\x57\x59\x85\xe9\xad\x7d\x99\xd5\xd2\x6e\x76\x00\x9f\xb4\x06\x97\xfc\x94\xf0\x09\x58\x0e\xad\x96\xed\x52\x49\x82\x8c\x86\xea\x79\x5e\x37\xc1\xa5\x7a\x22\xa9\xcc\x12\xbc\x58\xd6\x83\x49\xad\x78\xd9\x7d\x33\xa9\xf8\xab\x8d\x60\xdd\x83\x92\x1b\x3f\x7f\x09\xa0\xde\x0b\x27\x09\x98\x77\x0d\xff\xaa\x18\x93\x4c\x4e\xdb\x91\xf1\xc5\x2a\x3e\x62\x0a\xcf\xdc\xe6\x5a\xe1\x92\x3f\x33\x22\xe4\x9c\x66\xa5\xa2\x80\x5b\x47\x41\x5b\x8a\xb6\xff\x31\x31\xbf\x6b\xf0\x4e\x9e\x1d\x1a\x20\x0e\x4d\x1f\x32\xc3\x51\x61\xfc\x8b\x12\x2c\x25\x9d\x2e\x02\xfc\x0c\x1f\x50\x0a\x59\x4a\x65\x6d\x39\xa8\xc3\xd5\xc4\x68\xcc\xf8\x76\x93\x40\xbe\x7d\xf2\xdc\x43\xf9\xf8\xd1\x38\x04\x2a\xd3\xf7\x49\x1d\x2c\xc5\xdd\xd4\x16\x34\xa5\x15\x70\xd5\x64\xca\x6f\x96\xf0\xbd\x14\xe3\xa6\xdd\x8c\x50\x08\x93\x76\xd8\x56\x91\xf1\xb8\x16\x21\xe6\x8b\x2a\x65\x0c\xc2\xe6\x6b\xc5\xc9\x99\x3f\x35\x71\x7a\x4c\x0c\x80\x0e\x28\x3e\x3e\x40\x72\x2b\x2c\xa9\x2e\x74\x71\x46\x12\xb2\x93\xc0\xe2\x0d\x88\xa4\xea\xb5\x0f\xc8\x63\x29\x69\x14\x58\xfa\xab\x8d\x0b\x1b\xc4\x3b\xb7\x20\xd2\x34\x0f\xfd\x27\x33\x50\x1b\xf2\xdc\xb4\x8b\x60\xff\x82\x55\xee\xaa\xbb\x34\x41\xdb\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\xfb\x48\x6a\x6f\x1c\x19\x5c\x1b\xd7\x27\xd2\x25\x8a\x61\xe5\x01\xd8\x88\x03\xd5\xf9\x74\x37\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe2\xde\xd7\xf1\x7f\x4f\x34\xb1\xb3\xbc\x86\x1d\xad\x7e\xf3\x21\x5f\xef\xd4\xde\x11\x25\xdd\x95\x50\x43\x0b\xb4\x9b\xb3\x87\x5b\xb0\x1f\xc7\xd2\x08\xae\x5f\xbc\xdc\xb2\x35\x16\x80\x1d\x99\xcd\x88\xff\x0d\x09\x54\x66\x8e\xb1\xfd\xc2\x67\xbf\x97\x70\x9f\x70\x09\x2b\xcf\xac\xd1\xdb\x73\xbd\x2a\x69\x7f\xe9\xa2\xd7\xfa\x34\x5e\x1d\x55\x41\xdd\xbd\x3c\xb8\x9e\x3c\xe8\xb0\x24\xf7\xf0\xf2\x6f\x3b\x06\xfb\x79\xff\xec\x81\x70\x58\xbb\x12\x77\x27\x22\xbe\x23\x32\xd9\x0b\x49\xb1\xb6\x15\xaf\x25\x2f\x1e\x3a\x30\x9f\x02\x1a\x67\x7f\xb7\x68\x3f\x4e\xf2\xad\x75\x03\xbd\xdc\x05\xbb\x9a\x5e\x76\x42\x1f\x80\x6b\x89\x21\xfd\x37\xb7\x85\x32\xe0\xf0\x06\x21\x63\x35\xdf\xc3\x8a\x60\x3c\x3b\xbc\x4e\x61\x78\xb5\xe5\x7c\x89\xed\xb5\xb9\x5e\x9d\x37\xf7\x25\x49\x6d\xdd\xb1\xec\x42\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x3e\x26\xb6\xdb\x2d\xda\x80\x20\xe3\xb6\x6c\x97\x87\xac\xa9\xba\xd9\xf6\xd9\xea\x2e\x95\x6d\x9c\x09\x32\xa5\x9f\x37\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\xd4\x4b\x03\xf7\x0c\xd4\x57\x0b\xe2\xf6\xec\x4a\xdb\x9a\x4a\x23\x56\x24\x00\xda\xec\xbf\x47\xb2\x40\x5c\x94\x7e\xda\x14\xeb\x70\xf7\xb5\xdd\xcc\xbe\xce\x95\xca\xe4\xc9\xf1\xf1\x8c\xaa\x79\x3e\x39\x8a\x78\x6a\xc2\xcd\xb9\x98\x99\x3f\x8e\xa9\x94\x39\x91\xc7\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\xd0\x63\xea\x7e\xa7\xf2\x96\x13\x2c\xb7\x8b\xec\x71\x99\x5a\x2f\x9c\xb1\x1b\x74\xe3\x72\x24\xf5\x37\x52\xe1\x34\x0b\xa3\x47\x4d\x75\x34\xa9\x70\x51\x93\x01\xd2\xef\xf4\x34\xd1\x1c\x67\x19\x61\xed\x66\x07\x93\x4f\xb9\x05\xeb\x71\x19\x99\x76\x84\xe4\x73\x96\x60\x56\x46\x19\x80\x02\x43\x82\x44\x84\x29\x9b\x01\x5f\xd4\x4b\x06\x6a\x34\x48\x37\x86\xff\xaf\x97\x71\x07\x73\xa4\xb2\xa8\x1c\xe6\x86\x63\xab\x78\xba\xda\x8e\x38\x58\xba\x6a\xe5\xd4\x62\xed\x88\x5b\xb5\x65\xb9\x78\x77\xf5\xfa\xd9\xeb\x57\x6e\x11\x9c\x8d\xc9\x67\xcd\xe4\xe4\xa6\xb8\x54\x0f\x92\x48\x34\xf8\xe9\x0e\xc9\x05\x53\xf8\xf3\x09\xba\xa4\x0c\x04\xd8\xef\x79\x2e\x24\x3a\xc3\x8b\x43\x3e\x3d\x4c\x39\x53\x73\x74\x09\xff\x6b\x7f\x7a\x26\xe4\x11\xfd\x4c\xb0\xb0\xfc\xc1\x56\x5e\xf3\x45\xbc\x35\x09\x89\x9c\x49\x44\x9e\xf4\x09\xfd\xc3\x7f\xa2\xd4\xb4\x7c\x82\xbe\x3d\xfe\xc3\x7f\xa2\xdf\xc1\xff\xff\xff\xd1\xef\x5a\x34\xfd\xf5\x90\xad\xa0\x3e\xef\x6d\xd9\x9d\x7b\x50\x59\xa9\x0d\x4a\x96\x9f\x0a\x5e\xec\x54\x63\xcb\x8f\x34\x7a\xe4\xd3\xe9\x58\x13\x86\xc9\x57\x1b\x63\x51\x43\x45\xde\x10\x26\x94\xda\x02\xcb\xa6\x60\x5b\x51\x2a\xc5\x76\x6a\x80\x0d\x1c\xbb\x96\x79\x51\x60\x16\x82\x88\x4a\x45\x7b\xa9\x84\xaf\x48\xac\xb9\xea\x3a\xa7\xc3\x59\xf7\x5c\x8e\xb3\xb3\xe0\x84\x40\x20\x61\xd1\x70\x1f\xf8\x17\x46\xb1\x9a\x40\x1f\xbb\x90\x8d\xc7\xa1\x16\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\xd6\x3a\x5f\x1d\x2a\x79\xc7\xc5\x56\xfa\xd6\x23\xa9\xc5\x6c\x77\x2c\x0b\xe4\x4a\xd5\x86\xe5\xeb\x21\x11\x9a\x0b\x0f\xd7\x6b\xec\x22\xb6\x78\xe0\x6a\x2b\x26\x15\x26\xb8\xac\xdb\xa1\xd7\x53\x3f\xf3\x9f\xac\x1a\x26\x44\x9a\xb9\xb7\x8b\xb2\x68\x30\x5a\x2d\x22\x69\x96\xd8\x30\xe2\x06\x4c\xbf\x55\x1b\x7a\xe7\x61\x1c\xa0\x71\x08\x7b\x84\x94\x0f\xe6\x24\x5b\x9b\x27\xdf\xbc\x9f\xb9\x88\xc8\x29\xdf\x2e\xec\x35\xa1\xac\x16\x2f\xdf\xbd\xe2\x8e\x5f\xbd\x0b\x5b\x5b\xc9\xc1\xde\xf2\xb8\x50\x16\x8c\x5b\xc0\x16\x5b\x08\xf0\x36\xcb\xb3\x01\xdc\xb6\x5d\x40\x3a\xd6\x4a\x00\x6c\xc1\xb5\x8d\xe1\xb8\x60\x78\xae\x82\x44\xa5\x70\x84\xc0\x9a\x17\x2e\x89\x5d\x83\xa0\xa2\xad\xc7\x11\x14\x43\x29\x22\x95\x2a\x45\xc7\xb1\xa9\x08\x22\x36\x84\xe4\x34\x75\x89\x0e\x90\xc0\x10\x94\xa9\xe6\xba\x3d\x49\xc4\xe1\x14\x47\x94\xcd\x0e\x02\x34\x46\x40\x46\x08\xaf\x83\x26\x22\xbd\xc7\xf2\x71\xb7\x81\x86\x5b\xd7\x69\xa4\x71\x51\x2b\xcc\xe2\xa7\x18\xc7\x06\xad\x41\xd1\x29\x2c\x1f\xdb\x00\x84\x6a\xe8\x65\x4b\x46\xe7\x97\xc2\x61\x9e\x2d\x1b\x9f\xcb\xb4\x26\xa1\x3e\x05\xa5\x09\x5c\xe5\x60\x8b\x65\xe8\x12\xdb\xb0\x07\x1b\xa9\x82\x78\x2e\x19\xbf\x9c\x73\xa1\xc6\x1b\xc2\x9f\x56\xb3\xc5\x19\x39\x4c\x00\xb7\x84\x3f\x11\xf1\x44\xc9\x73\x19\x45\x74\x1d\x5a\x34\x46\xb3\x20\xaa\x0e\x60\x26\xd3\x8c\x43\x0a\xcd\x14\xa5\x98\x2d\x0c\xa3\xd4\xcc\x05\xcb\x47\xe9\xeb\x95\x22\x99\xe2\x24\x39\x40\x82\xe4\xd2\xd4\xf1\x95\x24\x99\x1e\xba\x8a\x0f\x31\x4a\xf8\x8c\x46\x38\x41\x93\x84\x47\x8f\x72\xc4\xb4\xa0\xc0\x66\x86\x49\x65\x82\x47\x44\xca\x40\xb2\x2a\x92\xb6\x6d\x2a\x1d\x14\x2b\x55\x44\xa4\x94\x51\xa9\x68\xe4\x44\xa6\x02\x7b\xc1\x94\xcc\x8e\x30\x98\x84\x21\x31\x11\x86\xab\x25\x3d\x62\x30\x28\x73\x66\x6b\x03\xc1\x75\x6d\xa1\xe5\x5c\x90\x78\xdb\x01\xda\x01\x52\x9e\xa3\x90\xb1\x2a\x1f\xc8\x15\x47\xea\xd4\x7e\x06\xc7\x78\x19\x09\xdc\x96\x4f\x94\x27\x48\x7f\xd2\x4a\xe8\x3d\x10\x53\xee\x43\xe0\x4b\x92\x8b\x8f\x0c\xdf\x33\xe0\x2e\x18\x72\x0b\x5c\xd7\x2a\x9a\xd6\xab\x08\x22\x0f\x94\xa3\xaa\x7a\xcd\x29\x8b\x92\x3c\xf6\x05\x09\xb5\x08\xf0\xa4\x89\xc4\x2d\x8f\x5e\x7b\x2d\x28\x1c\x20\x2c\xd1\x33\x49\x12\xfd\x5f\x13\x01\x7f\xe8\xeb\x03\x68\x96\x6c\x6a\x38\x40\x27\x8e\x4b\xb7\x51\xd4\xde\x81\x30\xde\x60\x35\x37\xa9\xed\x29\x57\xa6\x16\xa4\x01\x61\x74\xf6\x2d\x83\xda\x37\x49\xf8\x04\x4e\x3a\xe0\x33\xba\xd4\xd8\x20\xad\x2e\x8f\x22\x42\x62\x12\xa3\xaf\x83\x83\xeb\x61\x17\xbe\x69\x46\x0b\x2c\xad\xc8\x1e\x60\x33\x56\x0d\x6b\xad\x08\x8d\xe5\x72\x66\x47\xe8\xa6\x82\x3f\x12\x96\x29\xc7\x55\x34\xaa\x83\xda\x16\xbe\x0d\x9e\x63\x65\x12\x2f\xb7\x43\x6b\xe2\x39\x96\xfa\xdc\x01\x9e\x63\x65\x9e\x2d\xb1\xfb\x7c\xf6\xa2\x39\xc7\x7a\x52\x17\xbc\x7b\x22\x98\xc1\xc1\x32\x77\x67\x89\x04\xdd\x81\x5c\x34\x11\xe2\x7e\x61\x55\x56\x8a\xfe\xbd\x2d\x56\x65\x65\x30\xfb\x8c\x55\x59\x19\xea\xfe\x62\x55\x36\x0c\xb4\x03\x56\xa5\x71\xee\x8f\x35\x51\x77\x63\x0a\x90\xd8\x32\xc9\xa7\x77\x90\xea\xbd\x74\x8c\xa7\x26\x70\xc0\x5c\x63\xee\x8e\xb6\xd0\xcd\x30\x5a\x9b\x03\xd9\x16\x0e\x55\x71\x42\xac\x4b\x7b\xde\xfb\x46\xa5\xd1\xd0\xd6\x33\xbb\x1f\x84\xd6\x6e\xb0\x43\x46\x38\xb3\x39\xe5\x6d\x15\x55\xf6\x27\x7b\x76\x33\x18\x50\x80\xda\x2b\xb1\xfc\x4e\x40\x59\x97\x95\xe2\x04\x73\xfe\x6c\x0b\x04\x01\x19\x1a\xa2\x6c\x25\x41\xe8\x74\x6c\x95\xb6\xb6\x95\xa3\x4c\x91\x59\x55\xa7\x2d\x0e\x0d\x65\xea\x4f\x7f\x5c\xc9\x89\x0c\x92\xa0\x53\x0f\x83\x12\x01\xde\xd9\x61\x9f\x91\x18\x45\x73\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x14\x53\xa7\x48\xe5\xd2\xb8\x96\xa8\x1c\xb1\x12\xf4\xe6\x11\xfa\x08\x75\x4f\x71\x9a\x69\xfd\xcb\xcf\x8f\x6a\x4a\x1a\xe5\xdf\x7e\xfb\x27\x82\xbe\x45\x29\xc1\xac\xa4\xc3\x82\xda\xa4\xaf\x3e\x80\xaa\x53\x73\x32\x62\x8d\x5b\x81\x86\x9f\x4d\x29\x25\x17\xef\x77\xce\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd9\x29\x7c\xd9\x18\x00\xeb\x6e\xec\x7a\x1b\x0f\xe0\x1e\x39\x94\xa4\x04\x61\xd4\xe0\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\x1e\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x0e\x80\x12\xf2\x68\x6e\x1c\xab\x5a\x67\xc1\xb6\x2e\xc3\x13\x95\xb9\x56\x68\xa1\x2d\x57\x06\x42\x2a\x6c\xa0\x97\xe6\x14\xfa\xd1\xea\x37\x81\xaf\xc2\x2c\x39\xd4\x4d\x8b\x0a\xd1\x51\x2b\x3c\xbf\x23\x3a\x6a\x89\xaa\x7a\x74\x54\x8f\x8e\x5a\x5f\x97\x7d\x44\x47\xad\xec\x79\x37\x74\xd4\xa6\x2d\xdf\x00\x1d\xb5\xd4\xcc\x17\x83\x8e\x5a\x59\xd1\x2f\x06\x1d\xb5\x32\xaf\x1e\x1d\xf5\xcb\x43\x47\xdd\x12\xff\xb3\x99\x17\x1b\x7c\x25\x45\xd9\x62\x6d\x22\xfb\x4a\xa2\xf3\x6b\x4d\x60\xd1\x63\x39\xa8\xcd\x5f\x57\xdb\x63\x8e\x36\x33\xa1\xf5\x30\x47\x1b\x55\xf5\x76\x56\xb7\x2d\xc0\x13\x28\x06\xaf\x8c\x39\x5a\x9a\x40\x1f\x5f\xb9\x7e\x7c\x65\x23\xf1\xd9\xbe\xf5\xf0\x5c\xd0\x65\xf5\x42\xee\x88\x3a\x5a\xda\x9f\x4e\x91\x98\x20\xba\xef\x80\x12\x5f\x56\x9a\xbf\x2f\x1d\xf2\x95\xb2\x7c\xb8\x8a\xd2\xe2\x1f\x6b\x09\xcf\xa1\xc5\x19\x25\x3c\xf4\xff\xf7\x94\xbb\x41\x64\x70\x65\x79\xbd\x5f\xc5\xd0\x62\x07\x52\xed\x4c\xa1\x4e\x2b\xdd\x4d\xa2\xac\x4b\x9e\x5c\xd3\xc5\xec\x06\x71\x97\x91\xa8\xc5\xc6\x4c\x53\xba\xab\x66\x57\x5d\x64\x1e\x0b\x0b\x14\xf2\x5a\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x5a\x63\x9b\x6a\x23\xdc\xc6\x55\x9a\xe5\x9d\x03\x62\x82\x55\x9d\x6d\xf6\x59\x4a\x52\x2e\x56\x05\x56\x35\x7e\x69\x2b\xba\x6c\xf2\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xdd\x46\xba\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xce\xdb\xbd\xed\x36\x5b\xcc\xcc\x35\x1d\x42\x0e\x33\x78\xb9\xc1\xcd\xbe\x54\x72\x77\x03\x7d\x37\xc6\x74\xf8\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x4e\x15\x5f\xd9\x7a\xc7\x6b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\xeb\x07\x78\xb4\xa0\xa6\xd6\x97\x07\x22\x73\x24\x11\x87\xa1\x66\x50\x1a\x4c\x7d\xbd\x4a\x54\xe2\x34\xca\x2d\x88\x24\x17\xad\x51\xa6\x5d\x0c\xda\x91\xca\x71\x02\x9a\x44\x58\xa4\xb1\xba\xa9\x93\x45\x43\xda\x63\x37\x8f\x09\x65\xea\xcf\xff\xb1\xd6\x6e\x6a\xd5\xca\xae\x1b\x14\x96\xc2\x51\x44\xa4\xb1\xb1\xdb\x28\x64\x3c\xe1\x4f\x50\x53\x6a\x9b\x5d\xd5\x47\x59\xcf\x5b\x33\x78\x0f\x45\x1c\x17\xa4\x6e\xc4\x85\xb9\xe0\xf9\x6c\xee\x6c\x48\xfa\xcc\xe8\xa9\x35\xed\xe5\x8f\x35\x1b\xf9\xda\x7b\xf9\x5d\x4e\x93\xcd\x2c\x74\x77\xa5\x6a\x5b\x9f\xce\xef\x91\x9c\xfb\xd3\x3a\x81\x66\x1b\x37\xb6\x3e\xe8\xee\x7d\xda\x6f\xbd\xbf\x06\xba\x39\x70\xf0\x9b\x53\x9e\x24\xe0\x69\x90\x24\x7d\x0a\x8b\xe4\x87\xdd\xc3\x84\xef\xe9\x7a\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x49\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x4d\x36\xb6\x9f\xea\x85\x4e\xde\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x5b\x92\x57\x0e\x1c\x5c\x31\x8f\x7d\x0d\x1e\xac\x30\x3b\x1f\xcb\x57\x5c\x33\x2e\x70\xc8\x28\x3e\x03\xbd\xc4\x23\x36\x28\xe5\x53\xb8\x82\xd0\x93\x45\x11\x90\x6d\x74\x88\x90\x99\x41\x39\x09\x6b\x58\x01\x37\x9a\xfe\x0b\x34\x1d\x03\x5e\x6b\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x10\x47\x8b\x28\xa1\x51\xa0\x33\xcf\x04\xce\xe6\x4d\x1c\xcf\xed\x7c\x8f\xba\xf3\x56\xa8\x3b\x6d\x75\x97\xd6\x89\xdb\x76\x74\xc5\x70\x4a\x7a\x34\xa0\x26\x34\xa0\x03\x8f\x77\xc1\x8a\x0a\x52\x6f\x08\xa3\x50\x3f\x77\x3d\x24\xd0\x1b\x40\x02\x6d\x72\xf8\x0a\xbc\x9f\xd2\xb1\xeb\x61\x8a\x3e\x74\x82\x29\xf2\x97\xe0\x5e\x21\xcf\xb4\x9f\xc7\x37\x46\x34\xa9\x0f\xec\x2d\x61\x89\x1a\xc4\x85\x75\xe4\xa6\x65\xb8\x44\xcb\xe8\xa2\xd3\xba\xbc\x2d\x4a\xd0\x7a\x2b\xb3\x16\x00\x50\xe3\xdd\xb5\x27\x70\x40\xed\xdb\xb0\x27\xe7\x66\x97\x59\x2d\xeb\x95\xc8\x0c\x33\x5b\xd6\x51\xb0\xd6\x4b\x72\xf1\xf4\xf0\xbe\x12\x5d\x8a\x5a\x62\x9b\x25\xbb\x0c\x9c\x0f\x9a\x08\x34\xe7\x49\xec\x40\x28\xfc\x6a\xf9\x0e\x7c\x26\x80\x5f\x20\xb7\x19\x50\xd3\x1b\xb4\xad\xa2\x20\xd8\xb2\x94\x16\xbf\x89\x30\xdc\x1d\x30\x9a\x5d\x58\x11\x3c\x27\xd9\xc4\x7e\xb0\x52\x16\x91\x65\xf3\xf7\x92\x31\x96\x56\x08\xac\xe6\xcd\xc3\x5c\x69\xf7\x5d\x31\xb8\x65\xa2\x47\x60\x1c\x14\x4d\x15\x2d\x0d\x9d\xc1\xd3\x27\xea\x0c\x11\x38\xec\x71\xa9\x97\xce\xcd\xae\x93\xa7\xae\x4a\x2c\x1b\x04\x83\xd5\x2a\xb7\x6d\x0f\x0e\x94\xe2\xcf\xe3\x0c\x0b\x9c\x24\x24\xa1\x32\x7d\xb1\x60\xe0\xd3\xb2\xbb\x56\x9f\x55\xc1\x8d\x89\x88\xe5\xe9\xc4\x90\xa2\x1b\x88\xad\x17\xa9\x38\x12\x39\x0b\xa1\xcd\x9e\x6b\x45\xf5\x73\xb8\x17\xc0\xaa\x14\xcd\xa1\x38\xe9\x14\x53\xc1\x88\x6c\x2d\x05\x49\xa2\x5c\x50\xb5\x18\xdb\xca\x9a\xdd\x0f\xdc\x9d\xfd\xf2\xd4\x7e\xb8\xdc\xc3\xed\xb2\xfa\x5d\x7f\xbe\x92\x67\x46\x04\x94\x09\x72\x05\x6f\x82\xea\xa1\x16\xb5\x81\xf8\x5a\x43\x10\xfe\x5c\xbb\xb6\xdb\x02\x87\xf1\xf3\x38\xc8\xa8\x1a\x47\x55\xe2\x58\x75\x58\x9b\x70\xa7\x96\x4d\xf2\x85\x91\x97\x5a\xbc\xc8\x2f\x50\x65\xc4\xa6\x4d\x98\xa6\xf5\x80\x03\x57\x30\xd8\x2b\x8b\x8d\x09\x52\xde\xad\x52\xd5\x32\x4e\x8b\xf5\xd3\x14\x7c\xb4\x64\xb0\x83\xe0\xab\x0e\x23\x0e\x3a\xd9\xd1\xb0\xf5\x41\x17\x22\xcf\x14\x9d\xd4\xa1\x6d\xd4\xee\xaa\x8e\x0e\x12\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x34\x62\x03\x89\x9e\x09\x62\xc4\x42\x48\x34\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x03\xdd\x30\x54\x2d\x55\x1c\x82\x3f\x31\x7a\x16\x38\xcb\x88\x18\x31\x9b\xc5\x01\x0e\x17\xce\x13\xd3\x7e\x5b\x88\xab\x5d\x03\x32\x8e\x70\x34\x7f\xa5\x3d\xc2\x90\x8c\x13\xcd\x49\xec\xf2\x85\xcb\xdb\xe3\xe6\x6d\x0c\xd6\x6b\x6c\xd6\xf9\xd4\x95\xcf\x3a\xb0\x9d\x24\x91\xe6\x28\xbe\x9a\x72\x46\x84\x1e\xb5\xa6\xe1\x27\xc2\x10\x9d\xba\x71\xd8\xd8\x1d\xf4\x0c\x9e\x29\x4d\xfa\x4f\x98\x26\x26\x01\xdf\x75\xed\x84\x40\x63\x7e\x1f\x31\xe3\xee\x66\x51\x29\x43\x95\x32\x2a\xe7\x9a\x53\xe7\xe0\x93\x04\x35\xa3\x2d\x71\x86\x3d\xad\x73\x9a\x87\xfa\xf5\xe5\x1c\xf4\x89\x0a\xce\x52\x48\x92\xb1\xb8\x4c\x6e\xf9\x24\x51\xfe\x78\x34\xa6\x38\xae\x94\x88\xe3\x58\x96\x8d\x9f\x46\xad\xa4\xbf\x96\xcc\x2e\x87\xa5\xac\xc0\x28\x80\x15\x82\x20\x4e\x57\x59\x6c\x99\xfc\xdb\xa7\x36\xd4\x53\x1b\x9a\xd7\x66\x1f\xd3\x1b\xfc\x21\x5e\x37\xc5\xa1\x6d\xfb\x77\x21\xd9\xee\x30\xd5\xe1\x8d\x73\x02\x5e\x26\x1d\xe0\x6d\xf3\x37\x5e\x22\x75\xa3\x4f\x70\x78\xc3\x04\x87\xce\x96\xda\x72\x6c\x76\xfb\xb1\x5d\x2b\x39\x60\x05\x98\x53\x53\x2f\x97\x44\x09\x1a\xc9\x5d\xf0\x07\x99\xe1\x8e\x51\x6d\xa0\x05\x66\x2b\xa4\x26\xfd\x82\x77\x42\x42\x9c\x98\xaf\xf3\x37\x11\x04\x3f\xc6\xfc\xb9\x66\xab\x93\x21\x9a\xc6\x25\xd7\x62\x8f\x20\x11\x95\xa4\x14\xc9\x42\x25\x62\x44\x5a\x63\x27\x1e\xb1\x39\x25\x02\x8b\x68\x0e\xd9\x8d\xc5\xc6\x98\x2c\x59\x03\x68\x64\x62\x19\x42\x6f\xd3\x1a\x9b\xde\x61\xdd\xab\x16\x26\x8f\x4f\x67\xf7\x5c\x8f\x24\x35\x9f\x78\x61\xc6\x4a\x19\xa1\x49\xae\xd3\xf6\x6f\x1b\x88\xef\x17\xfb\x45\x83\xf1\x7d\x30\x51\xf0\x45\xc7\x80\xfc\x82\x1a\xfa\xa0\xfc\x17\x0a\xca\x6f\x58\xe2\xf5\x02\xf3\x37\x32\xf9\xbd\x7e\xcc\xb0\xeb\xf9\x35\xe2\x86\x57\x05\x6d\xe5\x93\xf1\x8b\x1f\xbd\xc6\x39\x77\x3d\x81\x3f\x79\xa2\x30\x12\xb1\xd0\x74\x36\x21\x71\x0c\x9c\x56\x71\x5b\x29\xba\xa0\x1d\x67\x1e\xd0\x77\x2f\x96\x9a\xd8\x71\xc2\xd9\x4c\xd2\xd8\x80\xad\x64\x18\x2a\xb6\x86\xc6\x0b\x00\x17\x80\xfd\x4d\x12\x22\x9c\x57\x42\xa0\xaf\x25\x65\x16\x4d\xd1\xff\x16\x73\x22\xd9\x57\xca\x18\x0b\x30\x5b\xa0\x47\xc6\x9f\x13\x12\xcf\x60\x87\xaa\x83\x39\x44\x94\x1c\x20\xaa\xfc\x67\x02\xd0\x08\x78\xae\x46\x7a\xec\x10\x6b\x66\x34\x00\x62\xbf\x0d\x6a\xa2\xfb\x66\xbe\x39\x42\xe8\x9c\xa1\x29\x8e\xd4\x01\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\xf4\x31\xe3\x0d\x9d\x37\x9f\x0d\xc7\x1d\x34\xb9\x0e\x12\x8a\xb7\x8a\xad\x7b\xc2\xdb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xab\xad\xb3\x32\x95\x75\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x9d\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xa6\x4d\xcb\xf4\x8d\x47\x4e\x39\x33\x0e\xc2\xad\xe4\x4e\x3a\x63\x38\x59\xd3\xc6\x51\x5b\xb9\xba\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xca\x7c\x43\x79\x0f\xa3\x98\x64\x84\xc5\x84\x45\x0b\x20\x11\x06\xc8\x39\x82\xe1\x04\x61\xf8\x0e\x27\x47\xe8\xcc\xe4\xd7\x78\x09\xcf\x5e\xeb\x70\xa1\xa7\x98\xd1\xa9\xd6\x13\xc0\x08\x6b\x47\x39\x62\x66\x98\xce\x07\x12\x14\xed\xf7\x2b\xd6\xb4\x33\xfa\x06\xb9\xda\x12\x95\x98\x95\xbf\x47\xcb\x2f\x1c\xe8\x6d\xd9\xee\xe8\xe6\x5c\x0d\x02\x99\x4f\x0e\xe1\xdf\xa5\x84\x33\x07\xd4\x53\xa0\xc8\x90\x84\x80\x39\xd0\x7a\xbc\xe0\x62\x6c\x03\x96\xdb\x85\xdf\x6e\x45\x1e\x47\xd0\x47\x49\xa9\x49\x29\xa3\x69\x9e\x06\xce\x3b\x53\xb1\x20\xb2\xf6\x4b\x93\x89\x91\x69\x3d\x20\x72\xe0\xe5\x48\x5f\xae\x6c\x81\x66\xf4\x89\xb0\x11\xcb\x38\x65\xea\x08\x5d\x71\x45\x82\x12\x11\x06\x3a\x8a\x67\x8a\xa6\x06\xed\x54\x10\x7d\x0e\x0c\x28\x36\x00\x4d\xce\xb1\x3a\x40\x71\x0e\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xec\x0c\xc4\x47\x8b\x11\x33\x37\xdd\x14\xd3\x24\x17\xc4\xca\xac\xd8\xe4\xc5\x14\x43\x2e\x46\x66\x91\xd0\x82\x49\xa4\x74\x36\x57\x7a\x8b\xb4\x8c\x67\xfd\x8d\x73\xcd\x8d\xf8\x88\x4d\x08\xc2\x28\xe3\x92\x2a\xfa\xe4\xfd\x97\x74\x8a\xb0\x94\x60\x41\x39\x42\x67\x25\xfb\x3f\x95\xa0\x7a\xb7\xc5\xd5\x52\x36\xb6\xb6\xe7\xf6\x7c\x9c\xad\x37\xb2\xd4\x8b\x5d\x65\x3c\x91\x3c\xc9\x55\xe8\x82\x6d\xde\xdb\xc2\x34\xee\x80\xfb\xc1\x40\xcc\xa7\x23\xe6\xe8\x5a\x1e\xa1\x81\x44\x92\xeb\x5d\x92\x66\x2b\x23\x41\x15\x11\xd4\xa0\x38\x11\x65\x36\xc1\x9f\x53\x7f\x06\x52\x2c\x1e\xb5\x08\x15\x5a\xe0\x0d\xa6\x68\xc9\xda\x31\x31\x12\x12\xc0\x5a\x85\xdb\x01\xa6\x7f\xc4\x38\x3b\x64\x64\x86\x57\xed\xc8\x88\x95\xb6\x04\x7d\x4d\xa7\x85\x42\xda\xe6\x73\x0c\xd6\x6e\x0c\x91\x4f\x6d\xbb\x64\x3a\x6e\xdb\xa4\x69\xc2\xf1\x0a\xb7\xf1\xb4\x38\xf4\xe8\xef\x7c\x62\xc6\xa8\xf5\x7e\xae\x40\x0a\xd4\xea\xd5\x94\x0b\x32\xc7\x2c\x3e\x70\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\xac\x75\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x61\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x1b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x0d\x04\xbf\x24\x5f\x2b\xb9\x2a\x70\xfb\x2d\xda\x6a\x9a\x28\xbc\xaa\xcc\xc8\x1a\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x34\x62\xe7\xea\x2b\xa9\x45\x74\xce\x66\xfa\xa2\x89\x9f\xa8\x2c\x8a\x9c\x44\x9c\xc9\x3c\x25\xc2\x76\xa1\x6f\x64\x4d\x91\xb6\x40\x00\x76\x32\x94\x1e\x9b\xde\xfb\x27\x9c\xd0\xd8\x15\xe2\xd1\x3f\x9a\x33\xa7\x47\x29\x9d\x47\xb1\x21\x24\xcc\x6e\x6e\xac\xd7\xea\xcd\xc4\xfa\x1f\x43\xc9\x1d\xa5\x85\x90\x8f\xad\xad\xfe\xb8\x2a\xe2\xdb\x55\x5f\x22\xde\x4f\x6a\x93\x42\xcb\x05\x23\xbb\x0a\x67\xab\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x16\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbe\xb5\x67\x5b\x96\x89\x90\x11\x4e\xea\x3b\xbc\xc4\xde\x6c\xde\x5f\xae\x04\xd8\xe3\x66\xda\x5e\x9a\xf4\x1b\xf1\x24\x59\xa7\x84\x49\x65\xe6\xa7\xc5\xe7\xcb\x47\x54\xf4\xa3\x37\xc0\xed\x05\x9c\x1a\x73\x79\xe3\xc4\x9a\x52\xa4\xb2\xbb\x14\xbe\x64\xd4\xb0\x85\x65\xad\x23\xc6\xa7\x50\xe4\x26\x69\x8b\xea\xca\x04\x4f\xe9\x3a\x28\xcb\x26\xd0\xe9\xd6\xd9\xc5\x57\x58\x19\x9c\xf5\x1c\x44\x53\x43\x5e\xb6\x47\xc8\xd7\xc3\x56\xdc\x5c\x72\x86\x52\x9c\x6d\xb4\xe0\xab\xbc\x42\x03\x94\x1a\x97\x9c\x5d\x3d\xc0\x5b\x24\x50\x2f\x06\x16\xf9\x19\x2f\x8a\xd4\xe8\x36\xfc\x5c\xb6\x16\x39\x3c\xe8\xd7\xcf\xd9\x94\xaf\x71\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x5d\xce\xe3\x69\x13\x51\xaf\x7d\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x9d\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf9\x52\x5d\x96\xe8\x70\xe7\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\x69\x6e\xf5\x15\xd6\xcc\x1e\x92\x4e\x8b\xb5\x25\x76\xc3\x7a\x38\xc0\xae\x47\x8f\xfa\xdb\x7c\x42\x57\x16\x39\xe8\xbe\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x9f\x37\x18\x38\x5d\x82\x98\x0f\xa8\x32\xa1\xf2\x4e\x7a\xca\x05\x0d\x0a\x83\x3a\x19\x09\x51\x28\x50\x12\x3a\x79\x02\x85\x1e\x4c\x8b\x73\xfe\x6c\xa2\xd3\x05\xd5\x3c\xcb\x08\xab\x0a\xcc\x3d\x9a\x17\x50\x6b\x2d\x31\xc6\x26\xff\x01\x37\x31\x83\xd8\xd6\x3e\x2e\x46\xd5\xb2\xa5\xbb\x28\xf1\xd4\x3d\xff\xce\xf5\x7a\xaf\xbf\xa8\xef\x4d\xe3\x08\xef\xcb\xad\xaf\x3d\x3a\x2f\xe5\xaf\x1f\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\x67\x3f\x1c\x3f\x9c\x23\xa2\x22\x94\xd0\x47\x32\x62\x91\x7c\x3a\xd0\xe2\xf1\x3f\x72\xa2\xf4\xcf\x2d\x1e\x01\x9a\x12\x26\x81\x13\x50\x55\xc3\x1e\x6a\x5e\x48\xb7\x30\xfa\xbf\x67\xe5\xef\x97\x90\x7c\x2d\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x03\xc5\x18\x5b\xe4\xb0\xa9\x1a\xe6\x06\xe9\x42\xec\xef\x39\x5b\x53\xe8\x3a\x2d\x3e\x0a\x46\xd1\x22\xd3\xa5\x19\x06\xac\xeb\xf5\xf2\x90\xcc\x37\x8d\xad\xaf\x62\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x34\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\x9a\xb8\x84\xc0\x2c\x9a\x6f\x6b\x42\xa6\xd3\x31\x49\xd6\x91\x44\xcf\xa7\xc3\x44\x6a\xfa\x8e\x1e\x5b\x4e\xe7\x26\x35\x1b\x8b\xc9\xd8\x4a\xb4\xa6\xee\x13\x2a\x4c\xd0\x38\x31\x15\xe5\x08\x02\x1f\x65\x35\x7b\xcc\x00\x44\xe8\x5d\xb4\x92\xba\x71\x51\x9a\xb4\x0d\x1f\x92\x0d\xbd\x20\xac\x46\x4c\xe4\x0c\x8a\x4d\xf8\x88\x05\x8c\x0a\xbc\xf0\xc8\xf9\x0f\xac\x37\x67\xa6\xd9\x84\x81\xe3\x36\x2f\x6b\xfd\x8c\xe7\x12\x6c\x35\x29\x51\xfa\x82\xfa\x1a\xea\xc0\x9a\x90\xa1\x03\x94\x09\x9a\x82\xb9\x55\x7e\xd3\xb0\x75\xa7\x58\xe1\x84\xcf\x06\x42\xd1\x29\x8e\xd4\x3d\xde\x4a\x03\xc7\xb6\x99\x4d\xc3\x4f\xdd\x30\xd0\xf9\x99\x5e\xfc\x19\x61\x44\xc0\x44\xb5\x4e\xde\x7c\x84\xe1\xc9\x46\x9c\x1b\xac\x6c\xd6\x30\x2a\xbd\xc5\x02\xe7\x8a\xa7\x5a\xbf\xc5\x49\xb2\x38\x30\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x97\xbb\xc9\x2e\xee\x29\x8e\xe6\xe4\x0e\xaa\x22\x37\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\x27\xe8\x7f\x8a\x39\x9e\x0e\x4e\xbf\x1f\x8e\xcf\xce\xef\x06\xdf\x5d\x0c\xcf\x82\xf9\xd8\x27\x97\xe7\x77\x77\xf5\x5f\xbf\x3f\xbf\xaf\xff\x78\x73\x7d\xf3\x70\x31\xb8\x6f\x6a\xe5\xe2\xfa\xfa\x87\x87\x9b\xf1\xc7\xc1\xf9\xc5\xc3\xed\xb0\xe1\xd3\x87\xfb\xf6\x87\x77\x3f\x9c\xdf\xdc\x0c\xcf\xdc\xaa\xfc\x2d\x38\x5d\x60\x3d\x86\xd4\x8b\xe6\x69\x54\x0f\xe0\x21\x2a\xbf\x78\x82\x1e\xaa\xa5\x0f\x6c\x2c\xb2\xc1\xb1\x78\xc6\x52\xf3\x30\x08\x85\x1f\x31\xe4\x3e\xd7\x8b\xd2\xf6\xa9\x09\xd7\x89\xe6\x04\x25\x9c\x3f\xe6\x99\x65\x6d\x26\x3e\x8c\x71\x63\xf8\x21\x32\x68\xed\xfb\xf3\xfb\x93\x7a\x09\x06\xdf\x58\x80\x98\xe5\xce\x00\x8c\x0b\x3b\x76\x0a\xb6\x14\x07\xcd\x5f\x58\x6f\x83\x1e\xfc\xce\x2c\xeb\xc7\xb4\x86\x99\xaa\x74\x13\xc7\xb6\xe8\xaf\x9b\x58\xd0\x70\x79\x5f\x97\xad\xa6\x5f\x0e\x53\x7b\x0a\x4d\x48\x84\x73\x13\xd4\xa4\xef\x29\x21\xb8\x08\x07\x5c\xd0\xc3\xee\x1a\xb5\x74\xd4\xd8\x60\x65\xcf\xf4\xc4\xe5\x23\xcd\x32\x12\x7f\xa8\xcb\x2f\xe5\xea\xb0\xb6\x26\x39\x9f\xa2\xe0\x4c\x6a\xbd\x1e\x74\x7e\x57\x38\x65\xbe\xf0\x9e\x34\x08\xdc\x28\x42\x59\x00\xc8\x59\xdf\x09\xbe\xb0\x05\x05\xd7\x18\x56\xe8\x99\x40\x4a\x75\x6e\x2b\x47\x19\xdd\x5b\x9f\x6d\xe8\xce\xd8\xb4\x5d\x1d\xb8\x52\xaa\x75\x2b\x33\xde\x85\xc0\xad\xbf\x97\xa4\x89\x11\x6f\x91\x17\x7b\x66\x1a\x05\xee\xec\x62\xde\x60\xc4\x2d\xc1\x0d\xee\x36\x68\xb0\x90\x2f\x91\xaf\xea\x37\xd2\x8a\xcb\x42\xb3\xed\x2e\xe3\x71\x58\x20\x25\x80\xeb\xee\x03\x2b\x81\x20\xaf\x5c\xab\x7b\x1e\xe3\x85\x26\x0e\x88\x35\x96\x79\x96\x71\xa1\x50\x4b\x1b\xc6\x8d\x6f\xc6\x07\x77\x8e\x9d\x87\xe7\x71\xd0\x88\x96\x30\x64\x43\x2d\x8d\x6e\xf0\x08\x76\x5d\x0b\xc6\x11\x06\xc8\x82\x22\xe8\xeb\x1e\xa5\x25\x95\xba\x44\xa1\x4d\xc2\xef\x36\x19\x06\x99\xbe\xe0\xbb\x96\xe1\x6b\xea\xfd\xda\xb5\xd0\xb8\xe5\x09\x99\xaa\x71\xa3\xd7\x67\x89\x81\x53\xb7\xc8\xda\x10\x65\xe8\x6c\xbe\x83\x16\xbb\x6b\x09\x7f\xb4\x81\x3d\x5a\x35\x08\x2c\x04\x82\x73\x65\xe4\xd3\x42\x87\x41\x6e\x35\xc1\xbc\x60\x3b\xb5\xb9\x60\x5e\x08\xd4\x32\xbf\xf1\x87\xfa\xb4\xa9\xa3\x11\x1b\x42\x00\x45\xa1\x88\xb8\x14\x31\xd0\x02\x56\xca\xff\xa5\xa2\xa3\xaf\x1a\xad\xd9\x8e\xf0\x5a\xd0\xbd\xad\x97\x9f\x2c\x50\x51\x58\xb6\xf4\x5d\x97\xd3\x63\xac\xde\x4e\x04\x34\x13\xb6\x65\xdc\x15\xc9\xac\x65\xde\xcc\xb3\x88\xf4\x81\xf8\x30\xdd\xd5\x11\xfa\xc9\x59\x7e\x20\xf0\xb5\xa8\xc9\x6c\x63\x37\x12\xbc\x70\xa0\x90\x4d\x0b\xbb\x0b\x9c\xc5\x5d\x87\xc2\x2e\x5f\x60\x0f\xe8\xd4\xb0\xca\x25\x05\x9c\x31\x63\x91\x5d\x23\xed\xe3\xd4\x7f\x74\x47\x96\x47\x05\x7c\x84\x32\x9c\x36\xb2\x0a\x84\x0e\x96\x2c\xfe\x97\xd9\x2c\x93\x89\xea\x0a\x6b\xd9\xb2\x88\xd6\x83\xaa\xcf\x0f\x78\x00\x4d\xa2\x2a\x9a\xd2\x24\x01\x39\xe0\x08\x0d\xa0\x3c\x30\x24\x72\xea\xab\xd0\x05\x58\xd0\x19\xe3\xab\x72\xcc\x5a\x88\x29\x0a\x88\xe9\xae\x9d\x98\x24\x50\x53\x91\xc7\xbf\x1b\x8a\xda\x01\xa6\x8b\xe6\x2d\xb8\x8e\x88\xdd\x1d\xc9\x65\x0d\xe5\xfd\x2d\xa2\xa3\x6b\xc3\x0d\x3e\xfc\x57\xf3\xd0\x3f\xe5\x58\x60\xa6\x20\xe6\xd7\x8a\xee\x82\x04\xa9\x47\xe4\x33\xc4\x67\x30\x63\x08\x86\x9f\xc2\xcd\x75\x2e\x7f\x08\xf7\x42\x34\x3e\x40\xf4\x88\x1c\x41\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\x56\x8b\x65\x3c\x42\x83\x44\x72\xfb\x05\x61\x51\x02\xe5\xb8\x83\xf0\x64\x4f\xf9\xd6\xad\x34\x59\x80\x82\x02\x5b\x59\x34\xcf\xed\x83\xe0\x43\x28\x32\x06\x3e\xf1\x04\x4e\x7a\xf1\xfb\xef\x79\x66\xbc\x15\x6d\x71\x12\x2f\x58\xce\xa1\x76\x0d\xbd\xd8\x26\x99\x52\x81\xcb\x36\x08\xde\x80\x8d\x29\x62\x4c\x03\x04\x16\xf4\x35\x56\x28\x21\x58\x2a\xf4\x87\x6f\xd6\x8a\x0d\x71\x13\x2c\xb8\xab\x3d\xbe\x45\xa2\x98\x4b\x35\x08\x85\x3b\xdf\x31\xd4\x8e\xc3\x42\x21\x8c\x18\x79\x0e\x23\x4b\x39\x04\x03\xbb\x82\x70\x24\xc8\x6d\x35\xf1\x64\x26\x33\x1f\xb2\x35\x8c\xca\xd4\xc2\x47\x1c\xdc\xb1\x75\x9f\xda\x61\x35\x50\x96\x55\x9e\x6c\x88\x27\x40\x72\x15\x41\xff\x73\xac\x46\xcc\x72\x56\x17\x36\x12\xa4\x79\x0d\x92\xa4\x1c\x68\x8f\x21\x97\x84\xe9\x09\x43\x7d\xf6\x23\xbf\x40\x57\xa0\x7e\xf9\x68\xe7\x92\x9d\xae\x38\x2c\x26\x1e\xcf\xe3\x1d\x85\x6d\x37\x4a\x3b\x4d\xf6\xe5\x57\x14\x82\x1b\xba\xbf\x30\x85\xf2\x3b\x08\xc3\xa4\x69\xc8\x2b\x0e\x56\xdd\xa6\xbf\x44\x36\xde\x75\x07\xdd\x45\xe5\x66\xfb\x38\x5c\xb3\xcf\xbc\xc1\xdc\xde\xb2\xb9\x81\x6c\xb1\x8d\x02\xee\xc3\xee\x5f\xcb\xe3\x5b\x1a\xfa\x79\x0c\x49\x7f\xab\xb9\x60\x91\x44\xe7\x58\x87\x89\xbd\x8e\x83\x9c\x9e\x20\x85\x00\x82\xff\x1c\xe3\xb3\x6f\xb6\x78\x5e\xb3\xf7\x3d\xfd\x83\x62\xfe\x6e\x2a\x3e\x08\xae\x3e\xf1\x76\x61\x6f\x10\xff\x1d\x47\x10\xe9\x0f\x3d\xb9\x1c\x83\x3a\x20\x93\x83\xb1\xc6\x60\xcc\x6f\x14\x0f\x33\xc1\x23\x22\xe5\x11\x1a\xc2\x45\x63\xff\x89\xf0\xd4\x39\x24\x82\x97\x47\x4c\x6b\x26\x0e\xbf\x25\x68\xbf\x4c\xe2\x4d\x27\xc0\x80\xc1\x6d\xe5\xcb\x49\x57\xd7\x28\x69\xd3\x26\x1c\x16\x1d\xb4\x01\x65\x0d\xd0\x70\x76\x82\x62\x1e\x3d\x12\x71\x2c\x48\x4c\xe5\x09\xf8\xd6\x55\xab\x53\x2f\xd5\xda\xf6\xd6\x92\x46\x5b\xa0\xc0\x8a\xa4\xb8\x53\xd3\xbf\x0d\xb0\x76\xe1\xb5\x07\x88\x4e\x41\x9d\x70\x39\x19\x26\x08\xd9\xc1\xdd\x10\xa6\xc4\x02\xe2\xfa\xbd\x29\xab\xb2\x10\x4e\xd3\xd0\x42\x5b\x5b\x36\x91\xd8\x45\x0c\xce\x86\xd3\xbe\x9f\x13\x49\x5c\xc0\x81\x99\x94\xe2\x36\x96\xd9\xb0\x8b\x0c\xab\xb9\x84\xd4\xd5\xf2\x1a\x58\xa5\x0b\x3e\xd5\x2b\x84\x33\x88\x57\x30\x56\x8a\xe2\x23\x9f\x60\x29\x15\x4d\x92\x11\x63\x84\xc4\x12\x41\x96\xe9\x57\x8d\x19\xf2\xfa\xd3\x03\x84\xe3\x18\xfd\xef\xaf\x3f\x5e\xfc\x7c\x3f\x1c\x9f\x5f\x81\xd1\xfa\xfc\x62\xf8\xcd\x81\xff\xf1\xfa\xe1\xde\xff\x6a\x2c\x2c\x4f\x44\xa0\x14\x3f\x82\x8a\xc7\x24\xb1\xc9\x13\x64\xc4\xc2\x91\x3a\xec\x00\xfd\x44\x12\x17\xe9\x6a\xc5\x14\x0f\xa1\x68\xf7\xb0\xb5\x62\xb1\xb1\xf9\xad\xa1\xfc\xde\xfa\x4f\x96\xd3\xa0\x23\x1e\xdf\x85\x13\x03\x21\x47\x06\xcb\x20\x99\xdc\xea\xbe\x05\xc1\x11\x36\xa3\xac\x2d\x1e\x8f\xb0\xa7\x97\x14\xe2\x7f\x20\x8b\x1f\xb5\x7a\x7d\x83\xa9\xe8\x4c\x7b\xcd\x68\x40\xee\xc4\x68\x3d\x1d\xcb\xea\xa1\x92\x46\x16\x36\xd9\x36\xad\x31\x9f\x4d\x40\x70\x6f\x3e\x5d\x0b\x2f\x45\x3e\x2b\xe1\x50\x2a\x7c\x3e\x87\x83\x72\xf2\x17\x4d\x41\x83\x23\x76\x7f\x7d\x76\x7d\x82\x48\x82\x27\x1c\x42\xf9\x6d\x48\x90\x6b\xc2\x2e\x58\xc4\xd3\xa0\xa1\x12\x42\xc9\x01\xca\x0a\x84\x92\xd0\x88\x76\x64\xda\x58\x81\x54\x92\x71\x51\xc7\xf7\xd8\xad\x0a\x68\x27\x7b\xc3\x45\x97\xeb\x5f\xbf\x06\x4b\xc7\x33\xad\xc8\x55\x38\xaf\xbd\x9b\xa7\x04\x9b\x5a\xfa\xc6\x2d\x64\x6d\xf9\x36\x80\x35\x49\x4a\xf5\x14\xf5\xc1\x91\x47\xd6\x05\x5f\xbc\xc9\x19\xfa\xe1\x2f\x12\x4d\x72\x35\x62\xe5\x36\x38\x43\x83\x9f\xee\xd0\x77\x58\x45\xf3\x6f\x46\xec\x5a\xab\x99\x3f\xfc\xa5\x05\x4a\x69\x6d\x74\x42\xbd\x26\x67\x58\xe1\x0b\x8e\x63\xca\x66\x4d\xd0\x84\x45\xfd\x98\xe1\xfd\xe0\x04\x5d\x5b\x1d\xbe\xc8\x04\xf1\x29\xc1\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x65\xf8\x36\xa3\x99\xc1\x85\x35\x62\xf7\x06\x93\x51\x73\x55\xaa\x50\xc6\x6d\x0d\x23\xad\x95\x19\xb4\x4a\xec\x32\xa4\x48\xb2\x40\x7a\x75\x80\x8c\xfd\x66\x58\x79\x0c\xe4\x99\x3a\xb3\x1f\x31\x50\xd0\x7d\x6e\x4a\xc2\x23\x9c\x40\x4c\xde\x61\x60\xd3\xd3\x6a\x3b\xcf\x21\x3f\xdc\x14\x3d\x5f\x94\x43\x67\x3d\x64\x81\x17\xca\xc2\x8d\x02\x03\x00\xec\xa3\xf5\xc6\xa6\x5c\x73\x1c\x83\xc5\x06\xc6\xb7\xc4\xac\x8e\xfe\xd0\x63\xb3\x99\x65\xd1\x4f\x7d\xda\x16\xcf\x99\xc3\x22\x89\xc0\x7c\xcf\x16\x10\xbe\x0d\x45\x47\x38\x84\x7e\x14\xdc\xd9\x12\x65\x6d\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\x58\xcf\x15\xcb\x33\x1b\xd8\x68\x65\xfd\x4c\x90\x43\x9f\x01\x15\x97\xd6\x54\xdf\xb0\x47\xe8\x36\x54\xaf\x63\x1e\xe5\xa9\x43\x56\x86\xec\xa9\xa2\xac\x7c\x49\xe2\x31\x17\xfb\x2a\x8a\x07\x94\x16\x45\x20\x7d\xbc\xb3\x7e\x6c\x08\x66\x10\x7e\x5a\x97\xd4\xdb\x05\x5f\xe0\x1d\xdb\x45\xad\x99\x86\xc6\x59\xb9\xa5\x52\x6b\x5b\xe7\x25\x5e\x15\xe8\xaf\x5c\x80\xb0\x45\x3e\x67\x1c\x8c\xdc\x26\x3d\x8b\xc7\x5f\x49\x74\x7e\xa3\x25\x20\xad\xf1\xfa\x33\x98\x4b\x65\x82\xcb\x20\x5d\xc7\x7c\x6d\xd2\x05\x0e\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x9d\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x3a\xa7\xda\x62\x17\xec\x01\x6c\x5b\xfe\x4d\x50\x1e\x83\xd8\x21\x3c\xb3\x27\x5c\x86\x27\x13\x95\x8e\x66\x11\x49\x20\x89\x3a\x28\x73\x08\x2f\xec\x5a\x89\xfe\x7f\x2d\x01\x2b\x1b\xeb\xa3\xb2\x59\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xf0\x33\xd6\x9c\xfb\xc0\xc2\x68\x99\x8f\x8c\xe7\x65\x8a\x23\x83\x0a\x2a\xd1\xd7\x9f\x4f\xf4\x6f\x07\x68\x71\x02\x41\xa4\x07\xe8\xd7\x13\x8b\x96\x83\x85\x1a\xeb\x9f\xbe\x71\xb2\xb6\x6d\x02\x06\x4d\x25\xfa\xea\xf8\x09\x0b\x53\x33\xfa\xd8\x8c\xe8\x2b\xcb\x59\x7d\x5d\xbc\x50\x36\x4f\x38\x7f\xb4\x01\xb6\xb5\x0f\x8f\x1d\xf0\x1a\x90\xb7\xf7\x9b\x98\xad\xf7\x89\xf9\x0a\x1d\xc2\x0b\x04\x1d\x65\x13\x74\xf4\x77\xc9\x19\x3a\x5a\xe0\x34\xb1\xbf\xba\xa7\x36\xfe\x17\x4b\x9b\x13\x17\xfb\x20\x9f\x64\x61\x2c\xa5\xdf\x25\x7c\x02\xb3\xba\x74\x33\x35\x11\xb4\x30\xd0\xe2\xf6\x29\x2e\x2c\x3b\x11\x97\x88\x0a\xf8\x41\x29\x57\xe6\x15\xe0\x71\x4d\xb3\xfa\xec\x87\xf4\xdf\xc6\x2f\x0c\x8b\xe2\x92\xf8\x8c\x71\xd8\x47\xaf\xe9\x46\x3f\xa3\xaf\x2d\x0b\xfa\x46\xdf\x31\x36\x5c\xd9\x2c\x43\x53\x07\x0b\xdf\xc1\xcf\x41\x07\x94\x21\x93\x96\xb9\xe4\xcb\x5f\x8f\x8f\x8e\x8e\xfc\xd7\x90\xb5\xfe\xff\x22\xaa\x24\x49\xa6\xa6\x25\x77\x83\x2d\x46\xec\xd2\x15\x5e\x70\xc6\xeb\x02\xd2\x31\x13\x5c\xf1\x88\x27\xe8\xb0\x30\xe8\xc6\x3c\x92\xe8\xdf\xb5\x58\x1b\x2c\x25\xfc\xa8\xf5\xb8\x16\x18\x58\x83\xf4\xfc\x4a\x87\xca\x1a\xc4\xab\xc7\x2a\x44\x71\xf3\x8a\x2d\x96\x61\x15\x0f\xa0\x05\x4d\x39\xc7\x16\xe9\x4d\x08\xfd\x32\xf9\xac\xe0\x51\x0b\x90\x5e\x63\x28\x7b\xf3\x4d\x59\x63\xb7\x05\x9e\x9e\x21\xeb\x96\x05\xb0\x78\x57\x96\x33\x98\x79\x1e\x84\xee\x13\x7d\xb9\xb0\xb0\x14\x80\xcc\xd3\x14\x8b\xc5\x71\x71\xda\xea\xc4\x59\x20\xad\x01\x8f\x49\xdc\x02\x80\x0b\x37\xb1\x47\xcb\x46\x31\x58\xf1\xd2\xdd\x68\xfe\xec\x46\x50\xcb\x30\x40\x2c\x20\x2c\xe2\xb1\xa5\xeb\x22\xfb\xb4\x2c\xb1\xf8\x77\xea\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\xb7\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x86\x7b\xf4\xfc\xfa\xce\x7d\xd3\xfd\xd2\x85\x75\x28\x8b\xec\x38\x09\xf1\xf1\xd8\x0c\x09\xfc\x5c\x5c\xbf\x10\xdb\x61\xac\x33\xb9\xcf\xcd\x35\xff\x3e\xe5\x37\x34\xd1\xb7\x16\xd0\xf8\xd1\x88\x95\x7e\x3e\x40\x24\xa1\x29\x65\x3e\xb6\xce\x30\x77\x3e\x35\xd2\xf3\x23\x55\x7a\xcb\x64\xfc\xa8\x39\x98\xc3\x75\x0a\x54\xaa\x01\x5b\x38\xd2\xf1\x8e\x29\x6b\x81\xc8\xa5\x1e\x57\xa1\xa3\x6b\x61\x56\x37\x71\x68\x05\x52\x1a\x10\x1e\x9c\xdf\x11\xd3\xad\xb9\xb3\x54\x84\x0b\x07\xed\x05\xcd\x1d\x3a\x40\xfc\x80\x03\x40\x1f\xa5\x98\x5f\x2f\xff\x36\x08\x28\x43\x96\xa7\xdb\x26\x9b\xd8\xf0\xe1\xb7\x32\xd3\xdd\x08\xe2\x6e\x2a\x9b\xb8\x44\x58\x9e\xba\x03\xb5\x06\xc5\x0d\xad\xf8\x13\x93\x28\xc1\x06\xa9\x46\x37\x04\x91\x8f\x07\xc6\x41\x9a\x05\x7d\x99\xeb\xc5\x74\x63\x6a\xec\x24\x84\x7d\x6d\xfe\xfd\x0d\xb2\x77\xc3\xb7\x07\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\x3e\x00\x65\xb4\xd6\x1f\x96\xc0\x04\x60\xd4\x4d\x14\xa0\x99\xf0\x56\xb9\x46\x10\x05\x3b\x66\x3c\x26\xdb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x96\x4e\x4b\xa4\x5c\xd3\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x2d\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x6d\x37\x21\x6a\x40\x2b\xea\x74\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x9c\xb3\x29\x3f\xb1\x3a\xd5\x05\x65\x8f\x86\xe2\x5f\x6a\x8f\x0c\x20\x36\x89\x4b\x30\x6e\xae\x4a\x2b\xcc\xe1\x10\x51\x16\x25\x39\x5c\x7c\x52\xe1\xe8\xd1\x80\x7a\xb7\x19\x7d\xf5\x37\xe3\xd5\xc9\x94\x2d\x12\x53\x9e\x24\xb6\xdb\xe2\x02\x2d\xca\x58\x3f\x51\x8c\x30\x7a\xb8\x3d\x6f\xee\xfb\x91\xd6\x9d\x39\xcd\xb7\x67\x99\x40\xe0\x7f\x7e\xa0\x6b\xc5\x5d\x56\x60\xf1\x48\x89\xd4\xbd\x71\xa9\x0d\x74\x55\x13\xe9\x27\xac\xc8\xb6\x99\x50\x06\x03\x6c\x8d\x48\xbd\x1a\xb8\xda\x52\xeb\xf1\x96\xc8\x64\x05\xaa\x18\x84\x06\xb5\x43\xa4\x85\xc1\x5a\xf0\x70\x0d\xec\x06\x78\xbf\xdb\x7c\x2a\xef\xae\x98\xce\xf2\x61\x26\x84\xac\x81\x36\x70\xa7\x5f\xef\x38\xc8\xd2\xab\xcb\xc6\xf8\x8c\x4d\xf5\x85\x3a\xe8\x6f\x6c\x25\xbb\x75\x98\xad\x23\x47\x23\x5e\x4b\x9f\x23\xe2\x47\xe2\xc2\x70\xbc\x2c\xe6\xfa\x9d\x81\x6f\x8b\x97\x8a\x3b\x78\x0b\x6d\x03\xe1\x07\x62\xeb\x96\x61\x13\x5a\xfc\x1a\xa7\x9d\x01\xe5\x8a\x8e\xcf\xec\xc7\x97\x35\x78\x39\xcf\x8a\x2e\x21\x8b\xcf\x03\xa7\xa4\x98\xe9\x93\xed\x7a\x6d\x31\x42\x1a\x89\x70\xa3\x21\x3d\x64\x1b\x0d\xc8\xf4\xd8\xb1\xee\xa1\xed\xca\xb5\xf2\x6c\xec\xf0\x38\x31\x76\x26\x35\x07\x13\x44\x51\x2f\x48\x73\xb4\xb2\x29\xc2\xd4\x16\x4a\xf0\xff\xc7\xde\xd7\x35\xb7\x8d\x64\x67\xdf\xe7\x57\x74\x55\x2e\x3c\x7e\x5f\x8a\xda\x99\xad\xa4\x26\xae\xca\x05\x2d\xcb\x3b\xdc\xb5\x25\xaf\x24\xcf\x6c\xde\x30\x45\x37\x81\x26\x89\x08\xec\x86\xd1\x80\x34\x4c\x36\xff\xfd\xad\x3e\xe7\xf4\x07\x3e\x09\x90\x92\xed\xdd\xcc\x45\xb2\x63\x11\x68\xf4\x77\x9f\x3e\xe7\x39\xcf\x93\x6f\xf0\x82\xa4\x45\xa1\x5f\xb6\x8c\xb0\xcf\x79\x38\x61\x84\x8f\xd0\x64\x0d\xe3\x9e\x60\x7e\xf7\xad\x34\x57\xcb\x2a\xb9\xa8\x3b\x95\x9d\xba\x71\xc0\x9c\xe7\x13\x31\x22\x95\x23\x13\x77\x6c\xd6\x4a\x37\x67\xca\x89\xda\xdc\x57\x7c\xe7\x18\x01\xac\x42\x30\xe5\x77\x61\xe5\x56\x02\x78\x71\xbb\xeb\x70\xb2\x08\x77\x58\x05\x12\xc5\xec\xaa\xc1\x42\xce\xec\x23\x9e\xdd\xcb\x5c\xcc\x72\x34\xc0\x01\x1f\x8a\x68\x68\xb8\x5f\x71\xdf\xeb\xd4\xb8\x8e\x46\x8c\x4d\xde\xac\xeb\x88\x9b\xfb\x9d\x3b\x8d\x48\x31\xc8\x71\x78\xf6\xaa\x35\x91\x7c\xfe\x09\x1f\xbf\xb5\x4d\xac\x29\xf1\xb7\x7d\xf8\xf0\x5d\xca\x32\x46\x50\x41\xa1\xf8\x3f\x62\x48\xd3\xbd\x9f\xa6\x9e\x24\xae\xf6\xb1\xe6\x6a\x2d\x4e\xda\x8d\x13\xbe\x5b\xe6\xaa\x5b\xce\x6a\x40\x37\xd9\x22\x2a\xfe\x9d\x2d\xca\x5b\xec\xd9\xe7\x92\xa7\x78\xb8\x49\x9a\x8e\xb6\xda\x60\x2a\xff\xf0\xcf\x6c\x06\xa7\x0f\x7b\x0f\xfb\x22\x04\xf8\xa1\xb4\x42\xb1\x64\x97\x89\x5c\x2b\xc9\x3b\x75\xdd\xee\x7f\xd4\x4b\xd2\xa6\x59\xf2\x28\x52\x65\x53\x87\x66\x44\x4b\x5a\x4a\x0b\x1b\xc5\xd9\x7d\xb9\x12\xb9\x14\xa8\x5d\x07\xcf\x31\xfb\xdc\xa0\xea\x2a\x5e\x16\xdb\x1f\x96\x51\x9a\x0c\x16\xcc\x81\xec\xa2\x99\x79\xed\x02\xdf\xea\x6b\x40\xa5\xfc\x4a\xd5\x25\xc3\xdf\x18\xfe\x36\x65\xaf\x79\x74\x2f\x64\xcc\xb2\xb4\xdc\x24\x44\x26\x00\x27\x14\x6c\x97\x81\x7b\xb6\xda\x30\xb4\x2d\xb0\x7c\x73\x0c\x2d\xe4\x8e\xdf\x23\x89\x2d\x19\x91\x11\x4f\x3b\xa9\xa8\x9c\x59\xbd\x4c\x9a\x73\xf7\xe0\x68\xb9\xf3\xb0\x59\x4c\x7d\xee\xe9\x12\x73\x2b\x1e\xb7\x8a\x22\xd2\x15\xab\x7e\xc4\xc2\x75\xb3\xb5\xc1\xf9\x62\xf3\xf2\x9d\x8a\x21\x55\x06\x57\x2f\xb8\x7b\x81\x88\xb9\x94\x8c\x03\x6d\xcc\x0b\xcd\xca\xcc\xda\x67\xe0\x87\x4c\x21\x2a\x8c\x43\x60\x7e\xc8\x12\x73\x4b\xdb\x8a\x85\x04\xa4\x2d\x73\xcd\x6b\x88\x5d\x31\xe1\x01\x31\x6d\x5b\xc3\x1a\x49\x13\x4e\x8b\x71\x36\x78\x9c\x0f\xcc\xd3\x81\x28\xe2\x62\x2b\xe4\xf2\x08\x3a\xe1\xe1\x83\x56\x41\x0c\x93\x19\xec\xfc\xb9\xae\x0b\x4b\x99\x90\x80\x14\xb9\xf0\x43\xae\xcc\x64\x5d\x33\xa3\x13\xcd\x34\x2f\x12\x6d\xf6\xb2\xd6\x1e\xf7\x54\x15\xa7\xf4\x3a\x1f\xc7\x8f\xd1\xc2\x8d\x51\xeb\x0b\x97\x95\x30\x65\x6f\xc1\x0b\x16\xdc\x0c\x94\x63\x9a\xe8\xda\xb0\x8a\xad\xe8\xa4\x5c\x7c\x0a\x38\x8f\x6d\x41\xf0\x7c\xaf\x73\xd3\x65\xa0\x4c\xd9\xcc\x47\x1f\x90\x6b\x03\xe3\x0a\x07\x5a\x24\x52\x2d\x8e\x99\x7c\x83\x1c\x75\x10\xa1\x87\x09\xc4\xc0\x92\xd2\xe6\xef\x9e\x41\xde\x55\xf3\x11\x92\x3c\xf9\xbd\x90\x7d\xde\x98\xe1\x35\x44\x77\x59\xaf\x4b\xc0\xf9\xe1\x14\xba\xe2\x8e\xa9\xe0\xf0\x65\xe7\xe9\x4d\x92\xf5\xb9\xe9\x72\x73\x0d\x89\xee\x29\xb5\x04\xbd\xb1\x44\x90\xf2\xb8\x55\x3a\x5c\x67\x76\xfc\xf0\x26\x9b\x97\x8e\x25\x1c\x52\x73\x5c\x07\x23\x26\x47\xaa\x90\x3f\x05\x6a\xed\x16\x29\x7a\x9a\xdd\x78\x33\xbb\x85\x42\x37\x40\x14\xcb\x16\xd5\x5c\xcd\x7f\xfa\x51\x5f\xc3\x8a\x7d\x8a\x4c\xfd\x76\x59\xd6\xd3\x51\xf2\x47\xc6\x07\x1c\xfe\xcb\x6b\xba\xf2\xd8\x71\x4b\x64\x2a\x66\x7e\x7a\x8d\x17\x70\xfd\xfa\xcd\xaa\x09\xbf\x0e\x6a\xdb\xa1\x99\xfd\x3e\x00\x11\xb0\x55\x99\xa0\x86\x7a\xc5\x20\x54\xd6\xe2\x00\xfe\x63\x38\xfe\x13\xed\xce\x93\xf6\x39\xf6\x41\xc5\xa7\x4c\xac\xf1\x74\x7a\xcd\x79\x3d\x00\x63\xac\xdb\x34\xdf\x7b\x7a\x22\x53\xdd\xe8\xd0\x78\x39\x5c\x25\x1d\xe0\x00\xab\x72\x7d\x0b\xea\x22\x5d\x8c\x15\x01\xf1\xbe\x4d\x41\x33\xe3\x6c\x3e\xe3\x12\x22\xba\x06\x85\xa2\xcb\xfe\xf8\xe7\xec\x8f\xb7\xd7\x57\x67\x3b\x9e\xeb\x2d\x87\x8c\x60\x5b\xd6\xc4\x0a\xb6\xe1\xf5\xd8\x46\xbd\x12\xb9\x90\x67\x6c\xa3\x26\x18\x63\x7d\xc5\xb6\x45\x91\xe9\x57\xe7\xe7\x9b\xa4\xd8\x96\xab\x69\xa4\x76\xe7\xbe\x6b\xce\x79\x96\x9c\xaf\x52\xb5\x3a\xcf\x05\xa0\x6c\xcf\xbe\x9f\xfe\xf0\x3d\x8c\xcc\xf9\xc3\xf7\xe7\x10\x59\x9b\x6e\xd4\x3f\xbe\xfb\xe1\x5f\x7e\xff\xcf\xa6\xe0\x6c\x5f\x6c\x95\x7c\x45\x01\xdc\xde\xb2\xcf\xd0\x2a\x3f\xc7\x57\x6a\x5f\xf9\x97\xe9\xef\xc2\x6a\xd0\xa3\x3b\x15\x8b\x54\x9f\x3f\x7c\xbf\xb4\x03\x33\xcd\xf6\xbf\xe1\x52\xbf\x1a\x2e\xf5\x3e\x29\x7e\xc3\xa5\x7e\x55\x5c\xea\x70\x0b\xc7\xed\x31\x40\xf4\xe9\xf7\x47\xf3\x77\xb7\x47\x5a\xd7\xfb\xa1\x7d\xa8\xe5\x70\x08\xb3\x06\x4e\x38\x22\xee\xc5\xa8\x2b\x76\xad\xb9\xee\xea\xd0\xe1\x62\x1b\x4b\xb6\xdf\x69\xcc\x8f\x4a\x92\x06\x14\x48\x12\x01\x91\x33\xba\x04\x33\x9e\xb4\xa1\x4d\x09\xed\x74\x4a\xff\x3d\x27\x25\xf9\x53\x73\x91\x53\x73\x8f\xe4\x21\x4f\xf1\x6d\x8b\xcd\x52\x8f\x96\x7f\xfc\x29\x58\xbb\x07\xea\xb8\x3a\x32\x62\x9c\x3c\x50\x17\x5b\xaf\x8e\x6a\x6c\xb9\x3e\x0e\xe4\x37\x43\xca\x3f\x17\xa7\x73\xaa\xf8\xf4\x41\x7b\x70\x58\x16\x05\x10\x09\x27\xb2\xa6\xac\xcc\x33\xa5\x85\x9e\xb2\xb7\x35\xa5\x43\x0f\x5c\xbc\x79\x7b\xc1\xbe\xff\xf1\x5f\x7e\xbf\x90\xdf\xb5\x9c\xdb\xb0\xdf\xab\x7c\x43\x38\x4a\x38\xad\x77\x5c\x17\x22\x3f\xcf\xd7\xd1\x39\xee\x72\xe7\xe6\xfd\x33\xfa\xe8\x99\x5a\x9f\x39\x4a\xe2\x33\x62\x67\x9d\xee\xe2\x71\x04\x03\x95\xa9\x87\x67\x0d\x1d\x34\x1a\x0e\x25\xa4\x22\x52\x6b\x47\x3e\x8f\x79\x2e\xa8\x53\xa1\xd6\x2d\xff\xf1\x3a\x55\x2b\xfd\xd2\x11\xa0\x71\x6d\xbf\xe1\x19\x89\xba\x97\xe6\xd3\xb0\x93\xdb\x29\xf2\x9c\x8e\x0a\xbb\x97\x84\xd7\x91\x31\x1d\xdf\xbe\xd8\xfc\x71\x8f\x7c\x0c\x3c\x57\xa5\xb4\xec\xce\x4a\x0a\xb5\x06\x14\x1f\x58\xc2\x16\xa5\x00\xbe\x5a\x73\xd2\x7a\xee\x85\x5c\x64\x78\xc0\x40\x54\xa1\xbb\xbb\x4f\x64\x38\x3f\xd4\xcf\xcf\xc1\x70\x7e\x6a\xbf\xd3\x86\xf2\x95\x3a\xfc\x54\x28\x21\x2e\xa5\x31\xa8\x0a\xf3\xfc\xc1\x08\xaa\xdb\x07\xbc\xfa\x90\x27\x13\xce\x78\x0e\x46\x9a\x38\x2b\xd4\x19\x90\xd6\x00\x15\x0a\x6a\x0e\x74\xc1\x2a\x20\xf2\x3c\xe6\x98\x34\xcf\x0f\xa8\x27\x1a\xe6\xbf\x06\x15\x25\x9b\x44\x23\x85\x27\x41\xb2\x12\x29\x45\x4e\x31\xb5\x83\x27\xea\xc8\xb8\x74\x38\x94\xfd\x88\xac\x40\xd7\x3a\xe0\x83\x77\x78\x7c\x1e\x6c\x02\x53\x06\xd6\xe7\x56\xed\x94\x31\x67\x54\xa9\x83\x1f\xf1\xf6\x02\x87\x70\xa7\xed\xb5\xe3\x19\x92\xd4\x7d\xbd\xd6\x98\xa5\x65\x7e\x42\xa7\x5e\xf8\xd0\x28\x89\x8d\x55\x55\x54\xe0\x40\xfd\x1d\x1b\x7c\xff\xbc\x01\xd4\x03\xea\xd4\x81\x54\x2c\x71\x3c\x27\xff\x65\xee\x35\x66\x4a\xb9\x9b\x82\x3b\xb9\x11\xa4\x83\x5c\x8c\x21\xdd\xab\xb5\xe6\x3b\xb3\xa5\xcb\xdd\xc8\x31\x70\x20\xe3\x21\x03\xc0\x25\xc2\x6e\x2d\xde\xf6\xac\x15\x70\xdb\xb5\x2e\xad\x30\x6b\xbc\xb4\x7c\xa1\xe3\xaa\x7a\xeb\x0a\x20\x6a\xd0\x66\xbd\x3d\xdd\x12\xa0\xb3\xb1\x8f\x71\x43\xb0\xb6\x45\x07\xe8\x46\x8e\x5f\x8c\x20\xb0\x32\xa6\xef\xe0\x23\x38\x39\x1b\x3d\x18\xac\x85\xae\x0e\x1c\xe7\x62\xeb\xf3\x58\xb5\xc1\xf9\x91\xa1\xce\x67\xef\x98\x5a\x36\x2e\x8f\xee\xc5\x07\xaf\x42\xbd\xcf\xc4\x84\xad\x4a\xf8\xfd\xea\xfa\x2e\x44\x6b\x24\xd8\xda\xb3\x68\x2b\xa2\x7b\x70\x98\xe0\x91\xe7\x44\x1b\x89\x0d\x6f\x21\xbd\xf4\x57\xa1\x2c\xf4\x60\xef\xd8\xd0\x9d\x22\x80\xca\x59\x9c\xe8\x2c\xe5\x7b\x08\xf2\x4a\xc4\xe9\xfb\x00\xb1\x4b\x70\x31\x5b\xc1\x21\x7f\xf1\xf0\x91\x36\xa3\x32\xf3\xef\x8d\xed\x4b\x9e\xaf\x92\x22\xe7\xf9\x9e\xf9\xce\x6c\xee\x07\x4c\x8b\x1d\x97\x45\x12\x2d\xe4\x4e\x70\x19\xa2\xf2\x28\xc8\x6d\x3a\x39\x56\x82\xf8\x82\xd7\x6b\x11\x15\x9e\x70\x10\x8c\x77\xd7\x53\x87\xd6\xe0\xb8\xb6\xbb\x95\xd7\xdb\xf4\x9f\x12\x89\xe9\xed\xc9\x0e\x30\x9f\x34\x87\xe8\x68\x3c\x32\x78\x03\x52\x71\x74\xe4\xda\xcb\x20\xfc\xcb\xce\x29\xb6\x12\xc5\xa3\x80\x7c\x7a\x4a\x00\x6c\xb3\xf1\x4f\x96\x0b\x38\x4d\xfd\xb7\x5d\x37\x39\x40\x82\xe1\x02\x0b\xc1\x64\x8e\xf8\x47\xd6\x18\x7c\x5e\x50\x4a\x22\x78\x7b\x5e\x90\xdf\xea\x05\x1c\xd3\xe6\xf6\x98\x3f\x88\x78\x21\xab\xb4\x4a\x64\x33\xfa\x05\xc7\xbc\x10\xd6\xd3\xec\x36\xb6\x8f\x07\xf9\xf2\x2f\x81\x4a\xc2\x93\x48\xba\xa4\xbb\x1e\x61\x2e\x6c\xf4\x73\xde\xaa\xac\x26\x60\x68\xdd\x0f\x80\x64\x09\x6d\x85\x6e\x48\x17\xaf\x82\xa7\x70\x93\xd2\x91\xc6\x20\xa3\x9c\x03\xc0\x92\x5f\xb2\xe1\xe9\x6c\x2b\x63\x21\x6d\x36\xf5\xba\x4c\x91\x25\xb4\x4b\x2a\x8c\x38\xa4\x6c\xe6\xc7\xd7\xcb\x00\x72\x7e\x35\x16\x68\x8b\x39\xd8\x43\x00\x46\xc6\xbd\xce\xce\x7a\x21\x35\x0a\x52\x5b\x59\x21\x70\x3c\x6f\x44\x01\xa7\x79\x5c\xa6\x98\x1c\x0c\x1e\x73\xe0\xa3\xe2\x69\xca\x92\x42\x2f\xa4\xa3\xcf\x42\x32\x74\xd8\x61\xad\x4b\xdd\x2a\xd2\x4a\xa7\x6b\x4b\xda\xfd\x60\x87\x25\x51\x52\x34\x20\xdc\xfb\x50\x8a\x23\xcb\x04\xc7\x5c\x36\x1c\xb6\x85\x0c\xef\x5c\xf5\x41\xa0\xc4\x2f\xd0\x28\x7f\x8a\x1c\xac\x1e\x44\x3e\x08\xbb\x8f\x1e\x92\x29\x9b\x61\xeb\xcc\x85\xcb\xaa\x6c\x62\x6d\x29\x7f\x9e\x90\x96\xe6\x56\x53\x68\xeb\x23\xf7\xf7\x56\x90\x73\x8e\xca\x94\xe7\x29\x70\xd2\xaf\xcb\x94\x25\xeb\x40\x30\x14\xc6\x00\xc9\x93\xcc\x70\x45\x0a\xce\x6a\xeb\x25\xd7\x7c\x27\x82\xbc\x6d\x72\xef\xa4\x01\x86\x02\x19\xa1\x31\x38\x6f\xca\x7a\x39\x65\x6f\xea\x0a\xf3\xb0\x26\x02\xd2\xc5\x44\xe3\xf6\xe7\xea\x1b\xa4\x1c\xa2\x52\x7d\xb2\x36\x57\xca\x17\xc1\xaa\xeb\x18\x41\x20\x6f\x1f\x07\xd0\xb0\xd4\xfd\xfd\xa8\xe1\xd6\x94\x63\xf3\x6a\x0d\xb6\xe1\x16\x44\x47\x05\xed\xa9\x30\xb2\x92\x21\x61\xe5\x11\x15\x75\x84\xa0\x2d\x95\xdd\xf5\xe8\x93\xc2\x38\x8e\xac\x6a\xa0\xf6\x33\xbe\xa2\xc1\xcc\x09\xe1\x38\x43\x7a\x76\xc3\x8b\xb1\xd8\x1c\x97\x8c\x33\xbe\xa2\xad\x38\xa8\x21\xd5\x84\xdd\x63\x64\x3d\xbd\x04\xff\xf8\x8a\x3a\xe9\x67\xaf\x07\xe0\x35\xf1\x2b\x39\x94\x96\xe9\xd0\xb5\x40\x2f\x24\x1d\x76\xe3\xd3\x3f\x67\x7e\xce\x81\xe0\x11\x33\xd5\x9f\xb2\x6b\x29\x10\x39\xa7\xd6\xc1\xa1\x42\x15\x20\x65\x24\x20\x9b\x97\x81\x04\x75\x9a\xc8\x7b\x4b\x2d\x61\x96\xdc\x84\x71\x5f\x3a\xec\x7a\x38\x6d\x70\x17\xe9\xb0\x25\xdb\xa4\x19\x4e\x30\x2f\x87\x25\x68\xb6\xdf\xf9\x03\x00\xea\xf8\x1d\xa0\xad\x1d\xc3\x87\xa5\x17\x49\xee\x6e\x71\x15\x8d\xf1\x10\x35\x5a\x24\xc5\xfe\x50\xff\x7e\xd8\x56\x51\x88\x23\x84\x8c\x3e\x5e\xbd\xb9\x7c\x3b\xbf\xaa\xaa\x0f\xfd\xf9\xe3\xe5\xc7\xea\x5f\x6e\x3e\x5e\x5d\xcd\xaf\xfe\x10\xfe\xe9\xf6\xe3\xc5\xc5\xe5\xe5\x9b\xea\x73\x6f\x67\xf3\x77\xb5\xe7\xcc\x9f\xaa\x0f\xcd\x5e\x5f\xdf\xd4\xf4\x8e\xac\x58\x51\xf0\xa7\xbb\xf9\xfb\xcb\x37\xcb\xeb\x8f\x15\xc9\xa4\x37\xff\x76\x35\x7b\x3f\xbf\x58\xb6\xd4\xe7\xe6\xf2\xe2\xfa\xe7\xcb\x9b\x03\x8a\x47\xbe\xbd\xad\x5d\xfa\x14\xf0\xb1\xa3\xf5\xaf\x66\x6c\x9d\x27\x42\xc6\xe9\x1e\xb1\xf7\xf6\x66\x5b\x03\xd3\x86\x67\x6f\xb2\x13\xaa\x3c\x05\x42\x7f\xb7\x45\x85\x7a\x60\xc1\xc0\xd2\x28\x65\x96\xeb\xfb\x4e\x8e\xc4\x22\x6f\x46\x05\x7a\x33\x85\x8a\x7c\xef\x72\xd1\xfa\xaa\xe3\x19\x94\xe8\x23\x2c\x13\x79\x5f\x5d\xc0\x32\xca\xcb\xac\x48\x56\xdd\x49\x11\x03\x99\x85\xc6\xdf\xbd\x91\xef\xaf\x9d\x1c\xe5\xaa\x7d\x63\xac\xe4\x06\x9c\x02\x3c\x86\x12\x8e\x95\x75\x73\x6f\x5b\xb0\x66\x56\xae\xd2\x24\x62\x49\x5c\xf7\xa7\x60\x0a\x1b\xba\x8c\xeb\xb4\xa0\x99\xc8\xc1\x54\x35\x37\x80\x2c\x17\x67\xbc\x2c\xb6\x56\x71\xde\x65\x32\x22\x4d\xa7\x88\x72\x81\xb1\x00\xa1\xc1\x49\x8b\x7a\x5e\xc1\x97\xa0\x32\x94\xc1\x1d\x03\x59\xcc\x34\xa0\x68\xef\x88\x11\xe0\x9b\x58\xfa\x08\x27\x29\x3e\xdf\xdb\x35\x54\xe3\x44\xd7\xc5\x9c\xe1\x84\xc7\x1f\xad\x2a\x98\x69\xb7\xd9\xa9\x9d\x2a\x16\x0e\xb2\xcd\xdd\x68\x6f\xc6\xa1\x39\x16\x4e\x94\x6a\x32\x03\x95\x4e\x3f\x5d\xe4\x02\x0e\x11\x82\x02\x58\xff\x05\x40\x57\x28\xd7\x03\x52\x3c\xcc\x55\x6d\x25\xb6\x3c\x5d\xa3\xc5\x61\x86\xc6\xaf\xab\xe6\x14\xbd\x53\xf7\x42\xde\xe0\x80\x7d\x95\xed\x50\xe2\xcd\xc7\xe7\xf4\x3b\x8f\x90\x77\x61\x9a\x3a\xda\x59\x65\x73\xdd\xc0\x98\x2a\xf0\x9e\x10\xfc\x8c\x29\x1d\x9e\xb1\xd7\xa6\xc9\xad\xd7\xc9\xaf\xa6\xc0\x85\x14\xad\x9c\xa5\x80\x17\xb2\xec\x4a\x6e\x5f\x06\x6c\x14\x52\xd4\xdc\x0b\x09\x7a\x62\x28\x37\x7c\x70\xce\x8e\xf3\x9f\x37\xc7\xa2\xc7\xa1\x0f\x3e\xbf\xa4\x22\xb3\x16\x46\x79\x6c\x3f\x15\x98\x63\x33\x65\x6f\x88\x78\xc3\xfc\xe5\xe2\xdd\xfc\xf2\xea\x6e\x79\x71\x73\xf9\xe6\xf2\xea\x6e\x3e\x7b\x77\x3b\x74\xf9\x3d\x45\x5e\x54\x6d\xf5\xd5\xd3\x83\xdc\x0e\x71\x4e\x2b\xcf\xa7\xe7\xba\x46\xf9\x65\x07\x43\x72\xb8\xf6\x49\x9c\x2d\xe3\x44\x47\xe6\xf8\xdb\x2f\x85\x8c\x81\xec\xf9\xa8\xa9\xda\x5e\x54\xbd\x15\xee\x09\xe6\x9e\xb0\x3b\x08\x9e\x76\x0f\x76\x46\xbb\xdf\x01\x75\x07\x6e\xc8\x5c\x98\xc5\x1f\x9b\xfb\x81\x3b\x6d\xa6\x87\x15\x3e\x4c\x71\xa7\xb5\xad\x5a\x44\xbd\x4d\x58\xdf\x44\xeb\x92\x9b\xfd\xd1\x3e\x06\x90\xc3\x8e\x5e\x21\x06\xbe\x90\x71\x3a\x09\xd4\x52\x59\xa2\x17\x72\xc7\x65\xcc\x0b\x95\xef\x3b\x9a\x38\x6c\xf3\x0c\x97\x4d\x75\x0b\x0d\x8f\x6c\x29\x44\x6c\x47\x01\x1f\xe5\xb2\x3e\x95\x90\x97\xfa\xee\xfa\x4f\x97\x57\xb7\xcb\xcb\xab\x9f\x97\x1f\x6e\x2e\xdf\xce\xff\xe2\x90\x90\x19\xd7\x6d\xea\x88\x59\x2e\xcc\xee\x62\x69\x3e\x5a\xf7\x17\x94\x2c\xb4\xe5\x90\x4c\x55\xb2\x5e\x48\xbb\xb3\xe4\xbe\xf8\x6d\xae\xca\xcd\xb6\xbd\xa0\x7a\x2d\x3f\xcc\xee\x7e\x3a\xaa\x9a\x40\xc2\x84\xba\x66\xb8\xda\x9a\x88\xd0\x64\x4d\xfb\x1e\xc2\x48\x6b\xd5\x03\x2a\x31\x78\xb4\x2d\xca\xd0\xb1\xa3\x1d\x75\x7b\x69\x6e\x5a\xbd\xc6\x7f\xcb\xe3\x5d\x13\xe8\x2e\xd8\x37\x2b\xc7\x08\x20\x94\x51\x1e\xb3\x51\xda\xab\x96\xbf\x55\x4e\xb0\x1f\xce\x52\xb1\xd9\x88\x18\xa7\x57\xbd\x60\xf2\xc1\xd1\x16\x18\xf9\x73\xbd\xad\x17\x49\xc0\xee\x84\x83\xd9\xe1\xbd\x86\x6f\xe0\x1f\xdc\x2b\xed\x7b\xc5\x85\x15\xc9\x8e\x94\xd4\x05\x97\x1d\x81\xe4\x87\x26\x42\x73\xd0\x56\x74\x9d\x33\x97\xfc\x44\x0e\x13\x1b\x32\xf0\xeb\xa0\x0b\xf0\x72\x3a\x2e\xd4\xd5\xe3\x46\x64\x29\x8f\x84\xcb\x61\x40\x06\x3c\xb8\xd7\x1f\x13\xc0\x23\x99\x40\x49\xfe\x96\x40\x3e\x30\xd0\x14\x6f\x99\x02\xe0\xb9\xbd\xb1\xfb\xf1\xf3\xbb\x56\x7a\x2f\x6e\xc4\x7b\x05\x8e\x66\xd4\x69\x22\xe8\x3b\xfa\xa2\x40\xfc\xac\x13\x96\x3c\x6a\x3a\xd4\xbe\xfc\x33\x0d\x3c\xde\x99\xab\x8e\x6e\x6e\x99\xe5\xdc\xf4\x70\xa6\x63\x9f\xbf\xb0\x28\xf2\x5e\x32\xca\xa7\x08\x47\x7c\xc8\xd5\x2e\xd1\x62\x56\x14\x79\xb2\x2a\x43\x35\xbe\x91\x80\xb9\xca\xe5\xc4\x37\x38\xcb\x55\x5c\x46\x96\x12\x08\x5a\xeb\x61\x3f\xe4\xe5\xb3\x56\x47\xcc\xce\xcc\xec\xa3\x9b\x9b\x88\xcf\x00\xd0\xbf\x90\x5d\x31\x36\xbb\x31\x76\xf8\xfe\x3e\xd8\xa3\xfc\x94\x29\xd9\x32\x29\xba\x3b\xd3\xce\x81\x61\x89\xb5\xcc\x3e\x0e\x16\x70\x07\x6a\x8a\xa6\xcb\x8a\x63\x00\xbd\x6a\xa3\x74\x31\x80\xb8\xa3\x66\x1c\xb8\x6b\x18\x36\xa6\x9a\x31\x83\x76\xc3\x96\x6b\x34\xe7\x8b\x68\x5b\xad\x38\xb4\xa6\xca\x9a\x57\xaf\xae\x33\x8f\x4f\x73\x9b\x0c\x0a\xa3\x4d\xd0\xd1\x90\x90\x63\xbb\xa2\x80\xe6\xe4\x1c\xc7\x79\xbb\x43\x8b\xd1\xdd\xe8\xf0\x30\x80\x7d\x34\xe5\xa5\x8c\xb6\x2c\x4b\x39\x26\x93\x6f\xb9\xc6\x29\x6d\xb1\x24\x7c\x95\xa4\x49\x01\x2c\x3d\x18\xe2\xac\xf5\xb0\xb9\xe6\xf1\xfc\xde\x12\xe3\x72\x4f\xc9\xd4\x37\xe9\x4f\xc4\xec\xba\x56\x7d\x51\xd4\xae\x5f\xb2\xe1\x36\x34\x6c\x5a\x12\x62\xd7\x0f\x87\xd9\x88\x61\x5a\xfa\xb6\x8c\x1b\x59\x2a\xf1\x43\xfd\xf5\x4a\x7f\xb7\x58\x2f\xe3\x11\x2b\xc4\xf8\x3e\xe2\xf4\xa9\xf3\xc1\xb7\xae\xac\x75\xaa\x78\x87\x26\xb1\x2d\x1b\xe9\xdd\xbb\xca\x8e\x55\xb9\xea\x22\x14\xc6\x5a\xf5\x97\xde\x17\x0c\xb1\xeb\xf6\xa9\x9c\xa5\xe1\x06\xc8\x0b\x51\x24\xe3\xfc\x3d\x41\xa3\x79\x21\xce\xe0\xf5\xf6\xc2\x29\xc3\x70\x70\x9b\x1b\x13\xcd\x8b\x8c\x38\xa3\x0d\xb0\x84\x6d\xb3\xab\x76\x3a\x9f\x82\x09\x3f\x71\xbc\x12\x79\x60\x2a\x1d\xd6\x2d\xf8\xfd\x0f\x2d\xdd\xd2\x68\xf4\x9f\x4b\x6e\xf6\xc3\xeb\xf5\x2d\x72\xe5\x9c\xd2\xe8\x22\x69\x2e\xab\xf6\xed\xa7\xfe\xd5\xbb\x6a\x78\x2d\x9c\xf8\x83\x33\x91\xdb\x5a\x73\x6b\xde\x1e\xbe\x0b\xcd\x2b\x6e\xb4\x2c\x4f\x14\x70\xc6\xa8\x35\x32\x30\x76\xd3\x4d\xb6\x7e\xf7\x84\x9e\xfc\x5c\x8a\x52\x98\x09\xb4\x2a\xe3\x4d\xd3\xcb\x3d\xc2\x52\xf6\x4d\xda\xaa\x47\xb6\x2b\xa3\x2d\xb3\x85\xb3\x58\xa4\x7c\x5f\x69\x1a\x18\x89\x85\x4a\x81\xc0\xf9\x48\x36\xd9\xa8\xd4\x85\xda\x01\xc0\xd8\x97\x9b\x97\x12\x56\x39\xe3\x76\x75\xb5\xed\xef\x15\x76\xb9\x23\x43\x9b\xb7\x1f\x2e\x2f\xe6\x6f\xe7\xb5\xb8\xe2\xec\xf6\x4f\xe1\xbf\x7f\xb9\xbe\xf9\xd3\xdb\x77\xd7\xbf\x84\x7f\x7b\x37\xfb\x78\x75\xf1\xd3\xf2\xc3\xbb\xd9\x55\x25\xfa\x38\xbb\x9b\xdd\x5e\xde\x1d\x08\x30\x36\xbf\xda\x3d\x10\x3c\x20\xbf\xb3\x90\x67\xcb\x02\x6e\xfd\x0c\xf4\xd5\x57\x6c\x66\xa9\x00\x2b\x64\x95\x36\x48\x0c\xa8\x12\xd4\xc4\xa6\x58\xf2\x1b\x5e\xf0\x0b\x5e\xf0\x54\x6d\xa6\x6c\xc6\x08\x10\x8e\x40\x7f\x6d\x2c\x24\xe2\x49\x33\xa3\x83\x45\x18\x33\x29\xf2\x77\x78\x2f\x73\xa8\xd6\xc4\x50\x98\x8a\x90\x10\xdf\x66\xb5\x2d\xe4\xe5\x83\x90\x45\x09\x6c\xdd\x3c\x4d\x19\x7d\xd6\x3e\x10\x64\xec\xdb\x5a\xea\x64\x97\xa4\x3c\xf7\x8a\x74\xd7\x54\x16\xdc\x52\x6c\x5d\x1d\x41\x53\x33\x1d\xdc\x5e\xe4\x3e\xce\x19\xd4\xfb\xe2\xdd\x1c\xec\xbe\xa8\xb0\x72\x2b\xf6\xe3\x0b\x89\x0c\x78\xf4\xc5\x1d\x87\xe4\x93\x42\x91\x67\x15\x3f\x4f\x0f\x77\x4f\x44\x7d\xca\x22\xb6\x31\x88\xe7\xba\x51\xba\x4a\xda\xff\xb8\x94\x45\xbe\x1f\x6c\xcc\xdd\x41\xb6\xb5\x06\x83\x9c\xb0\x6c\x55\x95\x3a\x74\x7c\x31\x5b\xfa\x15\x58\x78\x16\x68\x49\x71\x19\x17\x7e\x41\x5c\x4b\xc7\xa5\x23\x35\x27\xef\xb7\xda\x0f\x21\x21\x0e\xf4\xc2\x4a\x95\x32\xd6\x84\xba\xdb\x25\xf2\x7c\xc7\x7f\x7d\x69\x5b\x8a\x04\x13\x4e\x2b\x02\xc8\xc3\x44\x6a\xae\x5f\x7b\xb3\xc9\xf5\x77\xd7\x42\xf6\xf4\xd7\x61\x13\xd9\xee\xac\x70\xd7\xf3\x17\x73\xc4\x0f\x3e\x88\x7d\xdb\xf8\x35\xf4\x7e\x10\xa3\x48\x0b\x1e\x0a\xc9\x72\x61\x1e\x74\xe0\xc4\x14\x31\xa7\xee\xdf\x90\x84\x50\xd1\x24\x6c\xdf\xbb\xc3\x78\xff\x49\xcb\xa6\x15\x69\xf0\x0c\x82\x4d\xf4\x25\x33\x66\x88\x3b\xb0\x2e\x6f\x4a\xba\xa0\x80\xaa\x19\xac\xff\x54\x2b\xb6\x86\x0c\x24\xd2\x1c\xcf\x05\x84\x38\x60\x28\x2c\xc3\x38\x50\x4c\x35\xc0\x0c\x76\x0a\xa4\x42\x83\xe3\x5f\x9a\x3b\xa6\xf8\x5c\x52\xec\xf6\xfb\xdf\x8d\x3b\x67\x8b\x7c\xcf\xac\x9a\x45\x98\x01\x45\x09\x80\x74\xe6\x42\xbd\x4a\x99\xb4\xf1\xce\xdd\x94\xd2\x1c\xc5\x4f\x01\x7b\x19\x1e\xd7\xac\x7d\x94\xfe\x79\x30\x49\xc8\xba\xe4\x73\x7c\xfe\xd9\x68\x44\x7f\xae\xb1\x87\xd2\xe7\x00\x92\x4e\xa5\x87\x07\xda\x8a\x47\xf7\x8f\x3c\x8f\xd1\x6f\x0b\x38\x94\x29\xfb\x49\x3d\x8a\x07\x91\x4f\x58\x24\xf2\x82\x13\x75\x97\x86\x40\x3c\x2c\x28\x2a\x67\x21\x21\x43\x03\x79\xd0\x24\xc8\xb5\x17\xc9\x66\x6b\x2e\xd1\x01\x8c\x42\xe5\x66\x3b\x2a\x90\xb5\x31\x13\x11\x91\x25\x75\x74\xc0\x3a\xe5\x0f\x4d\x2e\xb2\x63\x58\x1e\xd8\xdc\xa5\x99\xda\x38\xa5\x55\x6d\xe8\x03\xbe\x50\x87\xd1\xa6\x89\xf4\x36\x13\xb6\x51\x29\x97\x9b\xe9\x74\xca\x44\x11\x4d\x5f\x8e\x9a\xe8\x54\x60\x18\xf9\x74\xf0\xea\x54\x29\x2d\xd2\xbd\x23\xf8\x71\x09\x30\x80\xb8\xfc\xb5\x10\x52\x27\xe8\xe7\x69\x99\xfe\xb7\xf5\xa8\xc0\x97\x0d\xa2\xb4\x5f\xcf\x47\xa7\x57\x76\x94\x03\x22\x50\x23\x4a\xc2\xe7\xdb\x6f\x5e\x47\xa5\x0b\xb7\x97\x25\x95\x1c\x9b\x03\xfb\xb3\xea\x92\x34\x3f\x8a\x77\xaf\xb5\x24\x22\x29\x39\x2a\x6f\xb0\xbd\xcf\x1a\xa9\x9c\x27\x64\x71\xf6\x24\x64\x8e\xcc\xc5\x1c\xe2\x08\xb8\xad\x0f\xf7\xe8\x65\x71\x58\x97\xa2\xb5\x41\x23\x73\x5d\x7d\x52\xfa\x18\xd3\x09\xd3\xe5\xd2\x3d\xdc\xb8\x5c\xe6\x2b\xb8\xd3\xe3\x20\x1c\x50\x89\x76\x40\x0e\x96\x0f\x97\x38\xf2\xa8\x20\x3a\xa2\x0b\x95\xf3\x8d\x60\x3b\x11\x27\xe5\xae\x75\xb3\x71\xd5\x3d\x05\xf7\xa7\xd2\x72\xd7\x4d\xe3\x77\xaa\x01\xed\x2b\x89\xff\x75\x01\x9f\x1b\x6c\x40\x7b\xf1\x7e\x2b\x0f\x44\xf5\x45\xdf\x3f\xf5\xb5\x39\x29\xf3\x44\x03\xe1\xe4\x31\x29\x8f\xae\x18\x2c\x1a\x22\xa7\xfb\x0c\x7d\xce\x95\xd1\x3d\xb3\x21\x2d\x7a\x45\xe3\xa8\x42\xb8\xb5\xfb\x50\xa8\xa3\x09\x47\x8f\x11\x88\xcf\x1c\x15\xe1\x06\xb3\x31\xa0\x81\x27\xb8\x13\x14\x48\x98\x8c\x42\xb1\xb5\x4d\xa2\xbb\x17\x01\x2d\x59\x0c\x04\xf1\x8f\xc8\x71\xf3\xa7\x1f\xb5\x45\x6f\x10\xc0\xc6\x5b\x2c\x85\xff\x08\x06\x44\x1e\xbe\xb7\xb8\x2a\x6c\x21\x16\x01\xe4\x61\x31\x97\x45\x6b\x01\x1e\x76\x08\x65\xe1\x2b\x3f\xf3\x32\x6d\x7f\x9c\xca\x87\x47\x51\x6c\x6a\xf6\xcb\x2d\xc3\xae\x26\x2a\xf1\xbc\xaf\xa2\x41\x21\x87\x91\x5d\xd0\x5d\xcb\x23\x2c\xc1\xca\x38\x60\xa7\x5b\x2e\x79\xd3\xed\xa2\x88\xb6\xde\xf2\xa8\xaa\x46\x93\x92\x20\xb5\x73\xe7\xc9\xd1\x11\x34\x1b\xa2\x0f\x93\x8d\x54\xa1\xae\x87\x92\x02\x22\x53\x66\x03\x52\x61\xb1\x2c\x29\x0e\x43\xbc\x46\x32\x86\x1d\x9a\x6a\x85\x42\xe8\x0e\xb5\xb3\x12\x60\x84\x2b\x45\x82\x3c\x43\x16\x1f\x8b\x77\x22\x12\xa6\xab\x93\x66\x57\x99\x1b\x16\xb2\xfa\xa9\x46\x27\x59\x0c\x56\x92\x0b\xe4\xba\xd5\xc6\x7a\x2b\x92\x07\xb3\x50\x9b\xd3\xda\x4d\x50\xd8\x01\x9a\x73\x6f\x21\xb1\xda\x01\x61\xee\xbd\xd8\xeb\x50\x05\x8f\x66\x14\xeb\x9a\x90\x89\x69\x0f\x8d\xd7\xe1\xa1\x80\x8e\x5b\x06\xaa\xfe\xc3\xce\x32\xfc\xe8\x7b\xf3\x72\x0f\xb8\xb3\x51\xb8\x99\x83\x3e\x4b\xd1\xfb\x14\x69\x9b\xf0\xfd\x4c\x63\xe8\xf1\x5b\x80\xce\x0b\xf1\x77\x61\xca\x09\x5c\x7c\xcd\xfd\x76\x21\x89\x53\x3b\x38\xe4\xcc\x86\xd3\x1c\x36\x4a\x9d\x46\x26\xdf\x7d\x85\xf6\x05\x68\x0f\x2d\x05\x64\xf5\x93\x36\xd8\x6a\x45\x54\x17\x12\x3e\x8d\xc9\xa5\xd6\x87\xd7\xfa\xc1\x23\x41\x81\x34\xb8\x9d\x40\xc0\x20\x83\x0b\x9f\x24\xe6\x3f\x94\x53\xc4\xdb\x4f\x24\x4c\xf7\xcd\x64\x2b\x06\xcf\x22\xf0\x6e\x2f\x2f\x6e\x2e\xef\xbe\x18\x50\xd0\xa2\xf4\x46\x23\x05\x6d\x3d\xdf\x5c\xbe\x9d\x7d\x7c\x77\xb7\x7c\x33\xbf\x79\x0e\xa8\x20\xfd\x74\x04\x56\xf0\x96\xa8\xfa\x2f\x94\x2c\xc4\xaf\x27\x9d\xc9\x79\x29\x97\x7c\x44\xce\x8a\x13\xeb\xe8\x33\x77\xb0\xd0\xa6\xd4\x80\xd3\x01\x20\xde\x49\x3c\xd1\x9c\xb2\xc0\xda\x3b\x0d\xd7\x49\x9a\x42\x0a\xaf\x73\xaf\x53\x7a\x98\xe9\x54\xd8\x7f\x2c\xd5\x26\xed\xa9\x0b\xb9\xaa\x28\x41\x80\xcb\x6f\x6b\x2e\xc1\x98\xbc\x9b\x99\x0e\xc8\x13\x48\x8d\xec\x53\x23\xd8\x24\x52\xf8\x6a\xa0\xf4\x71\x29\x59\x27\x85\x34\x0d\xe2\x73\x42\xa2\xc8\xf0\x1a\x6a\x6b\xda\x19\x57\x99\x9f\xd6\xfc\xb4\x3f\xba\x16\xe2\x22\x4e\x24\x1a\xa6\x95\xd5\x7c\xdb\x3e\x75\xcf\xfd\x12\x80\x7e\x37\x23\xc9\x21\x06\x01\xea\xc2\x7e\x20\x69\x20\x50\xa5\xc8\x07\x27\xee\x13\x84\x0e\xa9\x75\xad\x9f\xcd\x56\x68\xfa\x3a\x81\x48\x05\x27\x56\x92\x28\x2d\x75\x21\x72\x72\x9b\xcc\x7e\xb9\x5d\xc8\xd7\xe6\xf8\x7a\x49\xa7\x10\x29\xd9\xe0\x27\x10\xb8\xa2\x2a\xdf\xb7\x16\x4a\xb8\x83\x7d\x87\x3e\xea\x9d\xe0\x52\xa3\xf2\x7b\x9a\x8a\xdc\xcf\x0c\xac\x8f\x10\x31\xa9\xff\x01\x0d\xab\x7f\x9f\xc4\xbf\x15\xac\x5a\x53\x5f\xfa\x95\xe4\xaf\xeb\xf3\xa9\x2b\x43\x1c\xa0\xc2\xcf\x39\x73\x5a\x32\x56\x86\xce\x22\x42\x59\xb7\x4e\xa2\x6a\xfe\xc8\xa0\xb9\x74\x87\xc5\xfd\x36\x95\x9e\x70\x2a\x0d\x38\xd7\xc3\x53\x82\x6d\x95\xd9\x40\x9d\xcc\x8b\x0f\x33\x3b\x86\x8a\x14\x40\x5f\xa6\x1b\x5b\x4f\x9d\x9a\xd4\xe1\x29\xd8\x0f\x28\xea\x34\x68\xed\xac\x85\x0a\xc7\x6b\x6a\xd9\xd8\x4e\xaf\x8a\xe2\xf3\x50\xce\xcd\x2c\xc8\x50\xaa\xc2\x92\x47\x38\x5c\x1f\x81\x14\xcd\x03\x8e\xb5\xa4\xb7\x8e\xc4\x04\x62\xad\x94\xe5\x89\x4a\x64\x77\x21\x18\xb2\x92\x4e\x8b\xb5\x08\x13\xf1\x6d\xf2\xbd\x23\xef\x18\x33\xf9\x8e\xd7\xba\xac\xce\x39\x47\x04\x79\x14\xd8\xe1\xea\xfa\xea\x32\x84\x2a\xcc\xaf\xee\x2e\xff\x70\x79\x53\x49\xc4\x7e\x77\x3d\xab\x24\x53\xdf\xde\xdd\xd4\x72\xa8\x5f\x5f\x5f\xbf\xbb\x6c\x60\x1e\x2e\xef\xe6\xef\x2b\x85\xbf\xf9\x78\x33\xbb\x9b\x5f\x57\x9e\x7b\x3d\xbf\x9a\xdd\xfc\x5b\xf8\x97\xcb\x9b\x9b\xeb\x9b\xda\xf7\x3e\x5e\xf4\xa3\x27\x2a\xcd\x68\x77\xff\xf8\xe0\x6c\xc0\x89\xd9\xba\x8c\xab\x5a\xa0\x27\xac\xe2\x81\xc8\xb3\x43\xd3\xd1\xe6\x59\xc7\x21\x55\x3e\x2e\x0c\x53\xd5\x51\xb3\xee\xe9\xc5\x4b\x2b\x5d\x97\xf1\xd3\xb6\x3d\x73\xaa\x2d\x9f\x02\x09\xd8\x6b\x00\xba\xaf\xd4\x1c\xb7\xba\x80\x64\x34\xec\xda\x0c\x22\x58\x1b\xde\x29\xdd\x23\xe3\x67\xaf\xa9\xfd\xc6\xa1\x7a\x7a\x0e\xa6\x03\x54\x36\x4f\x45\x63\xd1\x57\xe9\xe0\x63\x36\x4b\x3c\x89\xad\xa1\x60\x7f\x0c\x0e\x6e\x68\x86\x99\x39\xc1\x74\xec\x52\x99\x6c\xcf\x37\xe9\xa7\x4d\x1b\x5b\x7f\xfa\x48\xb3\xee\x35\x8e\x8d\x11\xf5\x06\xae\xa3\x31\xf5\xbe\xe3\xfa\x7e\x6c\xbd\xe9\x23\xcd\x7a\x83\xd9\x77\x54\xbd\xc1\xe1\x5d\xb4\xf3\x9f\x8c\xd8\xc4\xc2\x62\xaa\xd5\x73\xc9\xd9\xee\x91\x40\xcc\x75\x58\x1d\xcd\x02\x78\xde\xeb\x65\xc6\x87\x07\x32\xa0\x36\x6e\xb9\xf2\x1a\x1d\xf8\x2d\xfc\x0a\x2d\x5c\xe5\x82\xdf\xc7\xea\x91\xc6\xa3\x8e\x0c\x65\x83\x76\xf3\x6a\x07\x99\x3d\xdc\x1e\x11\x20\x01\x6f\x3e\x89\x28\x35\x5f\x3c\xc0\xe4\x12\x22\xb4\x46\x1b\x2c\x50\x21\xad\x33\xc8\x00\x67\x8f\xf4\xa3\xb3\x90\x68\xcd\xb7\x29\x99\x9a\x51\x35\x35\x22\xce\x07\x68\xaa\xb3\xa1\x31\xb8\xae\x83\x81\xa5\x04\x8e\x32\x07\x30\xdd\x2a\x87\x3b\x13\x74\x48\x22\xc1\x99\x9c\x9b\x0b\x4f\x2e\xa2\x44\x8b\x40\xcd\xa9\xf5\xc4\xfe\x7c\x9a\xf6\x43\xc1\x8b\x56\xb7\xeb\x60\x7f\x38\x8f\x8a\x92\xa7\xec\x73\x29\xf2\x3d\x51\xe7\xa1\xaf\x12\xff\x12\x71\x89\x99\x22\x85\xd8\x65\x90\x8e\x1d\xa6\x38\x2c\xe4\x2f\x00\x94\xc0\x21\x78\xa1\xd9\x1f\x00\xf2\x60\x1f\xa6\x43\x78\xc7\x0b\x38\x8b\xff\x8c\xdf\x70\xbf\x4d\x17\xb2\xa2\x8e\x12\xbc\x55\x11\x4a\x99\x2e\xa4\x95\x27\x88\x55\xa4\xa7\x70\xe3\x9b\xaa\x7c\x73\x4e\xc2\xbe\x66\xb2\xab\xfb\x95\x52\xf7\xe7\x42\x9e\x83\x4f\xaa\x38\xe7\x65\xa1\xce\x01\x2e\x85\xe3\xaf\xcf\xad\xfe\xa7\x15\x50\xd5\xe7\xdb\xe4\x41\xc0\xff\x9b\x6e\x8b\x5d\xfa\x8f\x3a\xdb\xfe\x7a\xb6\x49\xf3\x33\xf3\xee\x59\xf8\xee\x99\x7d\xf7\xcc\xbe\x7b\x66\x5e\xc3\xff\x97\xed\x31\xbc\x23\x7e\xe5\xe6\x2c\x9b\x2c\x64\x22\xb5\xc8\x0b\xb0\x7e\x1e\xf3\xa4\xf0\x32\x34\x7b\xf6\xe2\xbf\xff\x9b\x4d\x73\xfe\x88\xa9\x8c\x6f\x78\xc1\x3f\xa0\x7f\xf1\x7f\xfe\xe7\x05\x04\x54\x31\xa9\x27\xe3\xf9\xe7\x52\x14\x0b\xa9\x85\x59\x84\xec\xff\x2c\x24\x44\x60\x77\xfb\x65\x81\x7e\x57\xf4\x41\xc6\x9a\xfd\x2b\x96\x39\x47\x1a\xc9\x58\x9b\x92\x3a\xd2\x09\x12\x9e\xb6\x48\x46\x77\xb8\xe8\x3f\xa7\x6f\xe8\xf9\x11\xcb\xfa\x73\x5a\x5d\xd5\x56\x08\x45\x7f\x4e\xe1\x00\x4d\x15\xb7\x60\x2d\xe6\x26\x2f\xdc\x93\xa9\x72\x6d\x6b\xa4\x01\x0d\x78\xd6\x30\x7d\xfb\x5a\xb9\x45\x2a\x6b\xeb\xb9\x6f\x6c\x23\x10\x2b\xf0\x71\x08\x88\x9e\x27\x66\x85\xdc\xa2\x27\x14\x2c\x37\x6c\x39\xd8\xa4\x14\x3a\x77\xe5\xa1\xe3\x42\xff\xfe\xd5\xf9\xf9\x84\x6d\x34\xfc\xcf\xea\x33\xfc\x0f\xa0\x87\x9e\x8a\x8d\xb5\xd1\x99\x0e\x08\xd7\x1c\xe5\xc3\x23\xf1\x14\x28\xba\x2f\x41\x00\x5e\x9b\xa6\xaf\x4b\x19\xa7\xc2\xa7\x40\x56\x42\x22\xa9\xb2\x92\xf5\xe8\x18\xab\x4b\xad\xc0\x18\xaf\x44\xc4\xcd\xc6\xd7\xf8\x36\x82\x4b\xd5\xba\x10\x12\xbd\x61\xb9\x57\x62\xe3\xe8\xb9\x02\xb3\x18\xa0\x90\xbc\x20\xc8\xb9\x80\x3f\xc2\x47\x80\x51\x7b\x52\xff\x89\xed\x55\x49\xe4\xd0\x40\x79\x1a\x8b\x28\x05\x06\x7e\x4b\xfb\xc2\x72\x51\x94\xb9\x64\x9c\x65\x5c\xc6\x5c\xc3\x0c\x5c\xe7\x10\xed\xcc\x19\x6f\x56\x74\x82\x70\x5c\x55\x16\x40\x66\x84\xc8\x82\xb0\x27\x90\xbd\x3b\xa8\xf3\x24\xa8\x04\x9e\x09\x40\x22\xdc\x78\x71\xba\x90\x56\x2b\x8c\xb0\x70\xe8\x29\x8b\x54\xb6\x27\xaa\x9a\x7a\xa7\x27\xd6\x73\x46\xdd\x3d\xf1\x78\x93\xfa\xb3\x13\x96\x54\x43\x6b\x40\x14\x5e\x04\x6a\xc7\x56\x2f\xfa\x3b\x21\x23\x15\x8b\x5c\xbf\x34\xcb\x30\x71\xf7\x0e\xb4\x1f\x12\xed\x07\x03\x76\x29\x73\xb8\x91\xb7\xd0\x14\xef\x14\x75\x4c\xef\x54\xa8\xa5\xdb\xec\x9c\xc3\x4b\xe5\x5b\x47\xc1\xb4\xd5\x97\xfe\xf3\x8b\x22\x62\x42\x5c\xa7\xbd\x73\x1e\xef\x82\xc0\x25\x1b\xee\xb8\x58\x28\xda\x38\x64\x9c\x58\x69\xd9\xa4\x00\xf5\xba\x5c\xe8\x62\x21\xe9\x04\x9e\xb0\xb5\xe0\xc6\xce\x9b\xb0\x48\x3f\xe0\x66\x8c\xc7\x7d\xf1\xa8\x3c\x06\xc7\xea\x92\x00\x18\xb6\x52\xb8\x77\x12\xe3\x63\x80\x28\xe0\x51\x81\x00\x83\x4e\x15\x72\x6b\xaa\x40\x67\xb5\x6e\x88\x47\xf4\x83\x95\xb9\xa8\x4b\x4a\x85\x2a\x2b\xd0\x13\x7b\x0c\x14\xb3\x7a\x3d\xf0\x07\xb3\xf1\x60\xeb\x10\x06\x12\x6c\x8e\x60\x71\x13\x96\x16\xd7\x99\x8f\xe1\x86\x5c\xe3\xe0\x9b\xe9\x5a\x54\x3d\x1d\x01\x15\x38\xce\x6f\x61\x5e\x3d\xe8\xb0\xd2\x22\xb7\x1a\x1c\xd8\x56\x64\x06\xdc\x26\x79\x7c\x96\xf1\xbc\xd8\xdb\xe9\x9b\x26\x2b\xa0\xee\x4f\x93\x7b\xc1\x66\x79\xae\x1e\x9f\xba\x17\x3a\xb7\x96\xae\x1b\xf6\x29\x48\xf6\xb1\xb7\xfc\x56\x5e\xd0\xba\xbb\xe3\x38\x0e\xd2\x2e\xc7\x47\xeb\x77\x72\x51\xe4\xfb\xa5\x99\x88\xbb\xac\x73\xa7\x18\x94\x34\x31\xdc\xc8\x1d\x47\x6f\x5a\x73\x61\x74\xd2\x9b\x56\x46\xf5\xdb\xa1\x37\x6d\x61\x2e\x6d\xd2\x9b\xce\xaf\xe6\x77\xf3\xd9\xbb\xf9\xff\xab\x95\xf8\xcb\x6c\x7e\x37\xbf\xfa\xc3\xf2\xed\xf5\xcd\xf2\xe6\xf2\xf6\xfa\xe3\xcd\xc5\x65\x3f\x5f\x51\xb3\xf6\xde\x04\x3f\x63\xe1\x77\x5e\xb1\xbb\x00\xa8\x81\xc9\x06\x64\x7f\x93\x76\x25\xcc\x2a\xb3\x98\x13\xb9\x99\xc0\x42\x7d\xc5\x2e\xf3\x7c\xbe\xe3\x1b\xf1\xa1\x4c\x53\x80\x53\x61\x66\xcf\x45\x2e\xe0\xe2\x39\x61\x1f\x54\x3c\x0f\xde\x83\x74\xc4\xd6\x66\xc0\xf7\x79\x1c\xe7\x42\x6b\xfc\xfc\x84\xbe\x1f\x80\x87\x5c\xaa\x23\x81\xe7\xf8\x03\x4f\x52\x73\x7f\x7b\xc5\x5e\xf3\xe8\x5e\xad\xd7\x98\x3e\x33\x71\x89\x53\xec\x73\xa9\x0a\xce\xc4\xaf\x11\x70\x74\xb5\xcf\x93\x77\x6a\xf3\x15\xa0\xca\x03\xc2\x53\x1d\x97\x14\xd0\x28\x5b\xb6\x1f\xe7\xed\x1b\x01\xb5\xf2\x3d\xbe\xfa\x16\xdf\x6c\x77\x50\x16\xe9\x13\xa4\xc7\xbf\x53\x9b\x76\xc5\x18\xb0\xae\x49\xe6\x86\x02\x09\x11\x91\x6d\xa8\x0d\xd3\x89\xbc\x5f\xc8\x5f\xb6\x42\x32\x55\xe6\xf8\x27\xb8\xe6\x1b\x33\x33\x2d\xf5\x56\x80\x84\xec\x84\x3d\x0a\xb6\xe3\x7b\x34\x9b\xe1\x4e\xe0\x64\x2e\x60\xca\xc0\x29\x62\xde\x4e\x13\x69\x76\x8b\x2c\xb1\x79\x09\xf5\xa1\x7f\x8a\x1b\x97\x65\xa8\xe3\xa7\x13\xc8\xf6\x9d\xa7\x15\x7c\x1e\xb8\xca\x3c\x6e\xd2\x02\x84\x68\xe7\x06\x15\x4d\xa5\xee\xcb\xcc\x73\x59\xbe\xb0\xc1\x49\xe8\xee\x07\x95\xc4\x2c\x2e\xb3\x34\x89\xdc\xbe\xfb\xa8\xf2\x4e\xc2\x5e\x4c\xa0\x19\x7e\xea\xd4\xd3\xc2\xfa\x1a\xd6\x92\x9d\x13\x20\xe9\x7a\xa8\x7b\x9f\x99\xbc\x98\x25\x32\x4a\x4b\xd0\x07\x2b\xb5\xc8\xcf\x8a\x3c\xd9\x6c\xc0\x00\xb7\xb9\x7e\xdf\x3e\xbb\xb1\x67\x4f\x3c\x3d\xad\x2d\x4c\x3a\x4f\xd5\x26\x89\x78\x1a\x82\x9b\x3d\x2a\xc2\xd1\xa7\xda\x65\x4f\xea\xa9\x90\x07\x61\x2b\xd4\xc9\x80\x94\xe5\x02\x18\x7c\x97\xb0\x95\x2f\x69\xbb\x3b\xa5\xde\x6b\x66\x2e\xe8\x58\xaf\x90\xdc\xd4\x86\x17\xec\x09\xe7\xbf\x6d\x25\xb4\xc0\xc4\x44\x79\x6d\xa6\x1e\xa5\xc8\xc1\x82\x05\xd8\x87\x69\xa9\x54\x60\x9b\x38\x59\x2d\x87\x4f\xb6\xb2\x72\x6b\x07\xc4\xc6\xcc\xd9\x4d\xf2\x20\xe4\x97\x67\xa3\x0e\x3e\x10\xf1\x68\x2b\x96\xd6\x2e\x7f\xea\x2d\xcb\x1d\x00\x23\x37\x2b\xab\x6f\x11\x6e\xa5\x2e\xbc\x09\x57\x27\xac\x71\x73\xef\xc2\x40\x62\x4f\x46\x96\xa9\xc4\x32\x16\xd1\xfd\x17\xdf\x9a\x3d\xc8\xca\x56\x84\x71\xf6\x46\x44\xf7\xec\xe3\xcd\x1c\xb3\x81\x93\x82\x99\xad\x40\x6f\xbd\x5e\x4f\xe7\xdd\xad\xe0\x9b\x67\x60\x74\x1a\x2a\x38\xe4\x39\xe6\x9d\xcc\x9a\xa9\x10\x01\xa2\x20\x5f\xd2\x6c\x92\x94\x4b\x03\x40\x30\x5e\x58\x19\x1a\x70\xc4\x33\xbd\x03\xd5\x99\xb2\x08\xa4\xda\x52\xbe\x12\x69\x07\xe3\x62\xa6\xe2\xa5\x8d\x93\x9c\x0a\xe6\x69\x94\x65\xfd\x18\x14\x75\xb4\x79\x0c\xdc\x58\xac\x77\xf4\x20\xbb\xff\x51\x07\xf4\x1a\x2a\x24\x7e\x86\x7b\x3d\xd7\x90\xde\xbd\x4e\x36\x36\xda\x96\xac\x49\x1b\x07\x13\xfa\x41\x05\xde\xec\x97\xa6\xa4\x0f\x2a\x26\x98\x9e\x23\x31\x33\x56\x90\x20\xef\x89\xc7\x55\x84\x55\x70\x4a\xf9\x1a\x7c\x03\xba\x10\x3c\x66\x6a\x4d\xde\xc4\x2c\x4b\x13\xa0\xf4\x8d\x91\x3d\x1c\xd8\x33\x74\x15\x1d\x1f\x96\x66\x2b\x1b\x90\x7c\x7c\xb0\x40\xbc\xde\x78\xa3\x0f\x72\x99\x76\x55\x9d\xdc\x75\x9b\xea\x54\x15\x38\x97\x8f\x74\xec\x15\xba\xdf\x9b\xb6\x49\xd5\x0a\x3a\xaa\x1b\x14\xd7\xb3\x41\x9b\xdd\x29\x4f\xe2\x31\xc7\xbb\xed\x93\x6b\xf7\x6a\x5f\x05\xaf\xad\xa7\xc3\x7d\xc9\x0e\x33\x23\xc2\xf5\x30\x82\x5f\x4b\x63\x3f\x74\xd7\x86\x00\xa1\x76\x11\x42\x67\x8d\x17\x24\x37\x00\xab\xc2\x6d\xc7\x1d\xd7\xea\x6a\x5b\x4e\x1a\xe8\x26\x31\xca\x81\xbe\xf4\x5c\x2a\xfd\x83\x7c\x02\xbb\x05\xae\x5c\x47\x71\x31\x86\x33\xda\x0e\x1d\x62\x7c\x4d\x7f\xfa\x41\xac\x24\x5f\x0c\x1a\xd1\x7a\xbf\xdb\x55\x7c\x4a\x97\x3f\xc7\x8a\x2a\x0b\xe5\x5d\xfe\xd0\x9e\x39\x90\x86\x86\x69\x5d\xb0\x6d\xcc\xe3\x0e\xb8\x80\xb5\xc1\xec\xd2\x1c\x01\x42\x1d\x05\x83\xcd\x72\x61\x83\x47\x7b\x51\xb8\xe4\xfe\xd4\xaa\x82\x41\x6c\xc4\xb5\xba\xca\x6e\x62\x09\x0c\x1c\x23\x15\x44\x32\xc8\xde\x8b\xd4\x2e\x53\x12\xb0\x29\x98\xaa\xb4\x90\x54\xb8\xd5\x76\x76\xe1\x95\x4a\xbe\xdb\x84\xbc\x5a\x98\x3d\x21\xb4\x4a\x1f\x28\x8e\x16\x48\x10\x80\x2a\x9c\xa9\xe0\x85\xb9\x20\x98\xeb\x30\x04\x78\x69\x7b\x07\x38\x78\x4d\xe0\x38\x17\x9b\x44\x17\x22\x4c\x11\x0c\xdf\x7f\x32\x2d\xca\xca\x0d\xba\xaf\xeb\x3b\xb5\x28\x0f\x99\xc2\x66\xd5\x8e\xa8\xcf\x3e\x13\xf1\xdc\xbd\xd7\x3f\x19\x6a\x59\xdc\x7e\x93\xa8\x9c\x02\x38\x07\xf0\x0a\xa0\x91\xef\x49\x3b\xf1\x00\x37\x48\xc4\xc4\xc3\x3d\xaa\xcd\x0c\xd1\xa6\xe4\x39\x97\x85\x10\x7a\x21\x29\xfa\x88\xbc\x65\x21\x35\x47\x0d\x0d\xe7\x0c\xdc\x48\xe9\x02\x69\x80\xe0\x95\x35\x4f\xd2\x32\xef\xbc\x73\xe2\xac\x3c\x8a\x7b\xa0\xaf\x97\x2e\xa0\x58\xd6\x36\x68\x2e\x8b\x35\x58\x45\x8e\x3a\xa3\x1e\x3b\xac\x26\x79\x76\x34\xc1\x6e\xb9\xc3\xc7\xdb\x39\x1c\x3b\x12\x5b\x7f\xd4\xcb\x4c\x8d\xd8\xf1\xfe\xf4\xa3\xfe\xa0\x3a\x52\x82\xf5\xe7\x86\x63\xac\x27\x86\xfe\xb9\x4b\x4e\x81\xeb\x7b\x08\x3f\x1d\xba\x8f\x0f\xa2\x64\x3c\x18\xa4\xea\xdc\xbb\x60\xd6\x6e\xb9\x8c\x53\x73\x4f\xe5\x45\xed\x04\xf2\x60\x5f\x63\x17\x17\x76\x73\xec\xce\xec\x82\x44\x89\x65\xd4\xc8\xb2\x3b\xd4\x4f\xb5\xf4\xbc\x5e\x40\x5d\xed\x2b\xd5\xa4\xb9\xb6\x64\x0d\x7f\xb2\x93\x88\xa9\x5b\xb0\xdd\x53\x70\x9d\x6c\xbe\x81\x4b\xd6\xfb\xe6\x4e\x19\xd1\x52\xa4\xf3\xcb\x21\xbf\x4f\x5c\x8c\x90\x64\x63\x36\xb3\x90\x9c\x78\x21\x49\xe3\x18\x23\xaf\x10\x72\x43\x2e\x2a\xcd\xbe\x77\x99\x97\xdf\xff\x93\x65\x22\xda\xb3\x35\xf4\x35\xd0\x7d\xa9\x28\x2a\x73\x08\x8b\x92\xeb\x86\x09\x3c\x9b\xf4\x28\x92\x0d\x38\x91\x1d\x98\x05\xcd\xa7\x36\xeb\xc1\xf9\xea\x2a\x8d\xba\x03\x17\x0d\xaa\x35\xbb\xb3\x90\x44\x78\x72\x5d\x30\x5d\x88\xac\x75\x57\xaa\x18\x5d\x55\x41\xf2\x13\xcc\x2e\x2f\x87\x3e\xd0\xd6\x1d\xb1\x47\xcf\x82\xeb\xf4\x1f\x6f\xaf\xaf\x58\xc6\xf7\x80\x0b\x2b\x14\x29\xc9\x03\x19\x63\x7d\xfd\x1e\x1a\x81\x6a\xe3\xab\x8b\x0d\xfb\xd4\x02\x4c\xdb\x7d\xb7\xf4\xc5\xa6\x0d\x05\x73\x86\xa6\xa4\x59\xca\xb9\x4a\xcf\xb2\x94\xcb\x00\xfa\xab\xa7\xac\xf6\xf9\x30\xd6\xeb\xa2\x3e\x84\xa6\x81\x0a\x80\x3b\x85\xe6\x42\x5e\xb6\x82\x43\xab\x1a\xeb\x27\x85\x77\x3b\xf7\x88\x5e\xd0\xdb\x7b\x94\x36\xe0\x91\x59\x26\xc8\x2c\x60\x43\xd6\x0e\xf5\xc0\x35\x00\x12\x47\x0c\x54\xbf\x20\xfc\x42\x5a\xbd\x5f\xf5\xa8\x59\x8c\xdc\x0b\x65\xa2\xb7\xe0\x9f\xc4\x80\x00\x80\x83\x68\x7f\x41\xe4\x42\xce\xa5\x36\x03\x0a\x3e\x4d\xf1\x20\xc8\xb1\x51\x09\xc6\xcd\xdf\xbc\x73\xf1\x7d\x1c\x24\x92\x64\xeb\xe8\xfa\xc0\x30\x3b\xe5\x02\xd3\xaa\x50\x7e\x98\xd8\xff\x3d\xcf\xfa\xb2\xc6\x4e\x2e\xf1\xd0\x28\x39\xe6\x99\xba\xd5\x09\x5a\xad\xa0\xd2\x54\x49\x1d\x0b\x7b\xef\xa3\x3c\x71\xfb\x69\x25\x7f\x3e\x2c\x2a\x30\xf8\x12\x36\x2c\x13\x70\xc4\xde\x13\x90\xc0\x39\x6c\x8d\xb3\x97\xcd\x2a\x07\x0d\x1c\x60\xaf\x42\x4f\xda\x94\xdd\x0a\xc1\x3e\x41\x4f\x99\x8f\x7d\x22\x8d\x35\x80\x0b\x16\x3c\x69\x95\xc0\x81\xa7\xe7\x72\xad\x4e\xdb\x0c\xf2\x4d\x03\x8e\x76\x52\xaf\xb4\xd7\xf3\x54\xc0\x1b\xa4\x32\xca\xe7\xcd\xbf\x6f\x6d\xd7\x01\x78\xdb\x07\x7f\x27\xa7\xac\x3c\x5b\x53\x73\x3e\xc3\x10\x1f\xc3\xf0\x54\x9b\x24\xa6\x95\x13\x64\x2d\xbe\x97\xea\x51\xa2\x2d\x40\x5f\x62\xdf\x99\xf5\x07\x07\x18\x3a\x50\xd1\x2c\x28\x71\x37\x7c\x09\x34\xca\x33\xf7\x6f\x76\x8b\xb1\x22\xac\x33\x88\xa3\x68\x30\x7e\x48\xd6\x04\x76\xf3\xef\x66\x13\xf6\x7a\xc2\x2e\x26\x6c\x3a\x9d\xbe\x9c\xa0\x72\x33\xd5\x08\x5f\x41\xe4\x58\xc1\x37\xa6\x6c\x92\x8b\x58\x07\x1f\x00\x01\x24\x73\x58\x59\xb6\x30\xee\x9f\x0a\x3c\x0f\xb6\x09\x98\xc3\x48\x09\x17\x14\x57\x8f\xb6\x2a\xf1\x95\x02\x88\xa6\x88\x54\x6e\x41\x9e\xba\x50\xb9\x05\xac\x3d\xf0\x9c\x27\x12\x52\xbb\x79\x13\xae\x4b\x5f\x0e\xc8\x9d\xc5\xaf\x7c\x07\xed\x4f\xa4\xe3\xb7\x34\xdd\x74\xe7\xea\x5f\xec\x33\x72\x48\x3f\xe6\x49\x51\x98\xd3\x59\x2f\xe4\x2d\x7b\xf5\xaf\x6c\x96\x65\xa9\x60\x33\xf6\x57\xf6\x9a\x4b\x2e\x39\x7b\xcd\xfe\xca\x2e\xb8\x2c\x78\xaa\xca\x4c\xb0\x0b\xf6\x57\xd3\x6d\xa6\xbc\x2b\x65\x8e\xc3\xfd\x84\x71\x26\xcb\x14\x4f\xfd\xef\x2c\x18\xec\xa5\x6b\x17\xf7\xa3\xb3\x12\xc5\xa3\x10\x92\x69\xb5\xa3\xa3\xf0\x2f\x2e\x26\xa1\x13\xb9\x49\x45\x41\xf3\xa1\x0a\xdb\xc3\x0f\x9c\x41\x4b\x5f\x2d\xa4\xf3\xe5\xfd\xc5\xd4\xf8\x2f\xec\xaf\xec\xaa\x4c\x53\x53\x25\xb3\xd1\x98\x89\xf4\x8a\xd9\x34\x0a\x21\xa7\x8f\xc9\x7d\x92\x89\x38\xe1\x90\x48\x61\xfe\x75\x7e\x07\xa3\xbd\x2c\x3d\x67\x5e\xb8\xa6\x9d\xe0\xcc\x29\x5b\xcf\xb3\x24\x65\x3b\x39\x24\x3b\xf8\x3d\x37\xbf\xea\xab\xe3\x2d\x22\xcf\x14\x4a\xeb\x81\x0c\x56\x14\x0b\x0a\x65\x97\x8e\xda\x02\x6a\x87\xad\x2d\xab\xe5\x28\x08\x0f\xf5\x53\x37\x59\xd0\x10\x7b\xf2\x3b\xe4\x00\xed\xa2\xa1\x5b\x6e\x43\x79\xa5\x92\xe6\x0e\xb6\xa4\xa7\xfa\x19\x14\x15\x72\x8a\x2b\x3f\x57\x45\xd4\x2a\x5d\xac\x92\x41\x6a\x73\xb5\xca\x7e\x24\xdf\x05\x26\xa8\x99\x65\x9a\xa4\xe7\x66\xa9\x9e\x5f\x29\x69\xae\xad\x3a\xd9\x20\x3d\x11\xc0\x88\x50\xa6\xcd\x1a\x05\x77\x55\x93\x35\x58\x02\x60\x1f\x98\x2a\x21\xb4\xad\x30\xbb\x80\x19\x82\x74\xbf\x90\xe6\x0d\x3a\x91\x00\xe6\x9e\x38\x16\x5b\xfc\x9a\xd5\xb5\xa7\x6f\xd1\x86\x1c\x14\xde\x32\xc1\xfa\x72\x68\x4f\x98\x70\x94\xb2\x75\x82\x57\xfc\x2a\x60\x70\xa3\xd2\x2c\xbd\x07\xc6\x3d\x57\x22\x55\x72\x63\x66\x45\xd7\x26\xa0\x76\x3c\x39\x05\x58\x12\x56\x01\x0b\xeb\xac\x81\x39\x2c\xe9\x11\x1a\x12\x73\x4e\x26\xb1\xbf\xdf\xeb\x72\x65\xec\x08\xe7\x91\x75\xa7\x21\x35\xae\x2b\xa1\xf8\xb4\xf8\xf2\x47\x2d\x72\xa0\x59\x46\x84\x83\xf3\xf6\xe3\xc1\xe9\xc9\x36\xb0\x45\xc3\x16\x55\x2f\x30\xb6\xdd\x15\x42\xd1\x84\x46\x6a\xf5\x80\xf9\xf8\x35\x31\xb2\x43\x90\xb3\x6f\x67\xf3\x77\xb5\xe7\x9a\xc8\xd9\x16\x78\xed\xdd\xfc\xfd\xe5\x9b\xe5\xf5\xc7\xbb\xc6\x73\xa6\x34\xfa\xd3\x58\xa5\x7f\xdb\x7b\x4f\x01\x1f\xfc\x8c\x72\x2f\x4b\xb5\xb6\x99\x94\xc3\xcf\xf4\x86\xe0\xce\x30\x94\x4a\x48\xb2\x1d\x0a\xd3\x34\x27\x4e\x67\x3e\xb8\x5c\x52\x44\x62\x58\x65\xeb\x1d\x76\x2d\xdf\xe2\xeb\x1f\x54\x9a\x44\xfd\xa0\x37\x7b\x5c\x6d\xd5\x63\x0b\x8a\x68\x25\x00\x05\x4a\xfe\x1f\xaa\x14\x5a\xe8\x85\x88\x0a\x1f\x71\x6b\x36\xee\x7f\x35\xd0\xe6\xf0\x1d\x1c\x3d\xca\xae\xdb\x40\x80\xd3\xc5\xf0\xe0\x6c\x05\x82\x4d\xe0\x95\x47\x5f\x2b\xe4\xd2\x41\x6c\x3b\xe2\xe4\x82\xae\xf4\x3c\x6c\xd0\x8f\x5b\x95\x9a\xbb\x98\x8c\x89\xac\x74\x21\x33\x91\x47\x0a\x00\x2a\x98\x07\xaf\x58\xb4\x4d\xd2\xd8\x8b\xb7\x7c\x07\x88\x5e\xc0\xdd\xbd\x24\x59\x3e\xe1\x62\xcc\xb6\xf8\x9e\x53\xd7\x4e\x3b\xab\x57\x7e\x9a\x07\xea\xe9\x20\x7a\x7d\xd3\xfe\x17\x82\x92\x61\x57\x10\xbd\x50\x2d\x5a\x68\x3a\xbd\x52\x9f\x51\x1e\x5e\x50\x14\x5f\x5b\xf1\x4f\x7b\x71\x2a\x6a\xe3\x4a\xd3\xac\xde\x95\x40\x3a\x8b\x28\x2a\x04\x90\x68\x01\xd5\xd9\x09\x8e\xb6\x98\xa7\x80\xa4\x41\x5d\x48\x1f\x1f\x7d\xa1\x43\xbb\xac\x75\x9c\x91\x53\xd5\x82\x00\x27\xec\x45\xa5\xa1\x2f\x80\x94\x54\x2a\xf8\x1e\xc5\xb0\x2a\x5d\x03\xd3\x75\xc2\x92\x62\x21\x13\x8d\x33\x33\x17\xa9\x78\x30\xb5\x0b\x9d\xc5\x84\x75\xb1\x77\x67\xdb\x6c\xc0\x91\x73\x9b\x7e\xec\x64\xee\x61\x11\xe6\x21\xb9\x25\x07\xc7\x74\x2c\xb4\xb1\x1b\x41\x96\x43\xfc\x6a\x16\x40\x02\xb1\x10\x84\x7f\xc4\x42\xda\xfa\x01\x2a\x04\xb5\x6c\x17\x72\xbe\x86\x1c\x50\xc8\x3c\x8d\x63\xbc\x85\x5a\xa1\x06\xc7\x34\x96\x90\x73\x58\xd1\x9d\xdc\x0e\x04\xa9\x4a\xe2\x4a\x12\x0f\x22\xdf\x17\xe0\xd4\x85\x7e\x95\x82\x17\x5b\x96\x14\x13\xa0\x88\xb3\x3b\xe5\x42\xf2\x98\x94\xca\xa9\x38\xd3\x35\x30\xef\x7b\xc6\x99\x7e\x5f\xa9\x87\x3e\xc3\xf6\x54\xd4\x17\xae\xea\x2c\xe5\x72\x89\x27\xc8\x57\xc0\x7d\x05\x82\x9f\x5d\xa1\xce\x72\xb5\x74\xb4\x36\x4f\x52\xcf\x40\x13\x3a\x94\xe1\x35\x76\xac\xfd\xd0\x04\x27\x83\xa7\xb5\xb6\xd7\x13\xe7\xa7\x21\x74\x41\xce\x6c\x04\x76\xf8\x2e\xe0\x21\x61\xbc\x86\x44\xb0\xb3\xf5\x10\x26\xcc\xce\x80\x6f\x15\x9f\x34\x64\xe4\x6b\x67\x48\x7d\xd8\xc7\x43\x63\x1a\x16\xe2\x51\xf0\x98\x03\xd5\x7a\x5e\x88\x4c\xa7\x1f\xa5\x09\x95\xb1\xad\x0d\xc2\x7d\x98\x3c\x21\xd0\x0f\xe7\xdc\x3c\xed\x82\xae\xe1\x3d\x4c\xb5\x60\x2b\x9f\xd2\x47\x0d\xfb\xd4\x50\x4f\x89\xcf\xbd\x86\x7a\x4d\xd9\x5c\x32\x6b\xee\x4d\xd8\x0b\x9c\x58\xfa\x05\xb9\x20\x49\x15\x98\x62\xe7\x31\xad\x1e\xca\x56\xad\x43\x31\x30\x67\xc0\x2f\x37\x8c\x04\xf5\x52\x1b\x3e\x6b\xbf\xbc\x4e\x20\x67\xe1\x98\xb4\x74\x8c\x22\xae\xb0\x00\x3a\x24\xf1\xda\xbd\x47\xa3\x5d\x79\x6f\xb6\x6f\xb0\x8d\x77\xb1\xd7\xf6\x45\xd3\x45\x59\x49\xe7\xa9\xfd\x9d\xa9\x7c\x21\x6d\x69\xe4\x92\xd4\xa8\xa5\x54\x2f\x2a\x80\x50\x93\xcd\x1f\xcc\x54\x00\x31\x58\xf9\x2c\x50\x65\xf3\xfc\xab\xf5\x5d\x00\x40\x11\x2b\xe1\xf5\xcc\xa7\x6c\xe6\xbf\x66\x0c\x0f\x33\xc1\x77\x78\xcc\xd7\x39\x1a\xd3\xd4\x74\x4a\x52\x58\x4a\xc8\x20\xbd\x41\x97\x40\x6c\xba\x2e\xcd\x66\x14\xb0\xbf\x2e\xa4\xe9\x3c\xb6\x4e\x00\xf7\x4b\xfd\xb2\x90\xef\x95\xb6\xd9\xf4\xda\xf7\x87\xc5\x90\x52\xb7\xbd\x70\x2a\x62\xf4\x87\x37\x70\x68\x93\xcf\xbf\x26\xf1\x0f\x79\x2d\x44\x89\xb1\x57\x65\xee\x1b\x15\x71\xb9\x90\xff\x69\xba\x07\x95\xac\x9d\x0c\xbc\x5a\xe3\x12\x86\x11\x84\x60\xc9\x27\x2c\xf4\xbb\x7f\x7a\xf9\xe9\x25\xe2\xd0\x4b\x0d\xc2\x8d\x93\xea\x01\xe2\x88\xc0\xcb\x34\x85\x48\xb4\x6d\x81\x23\xa3\xf0\x9f\xe0\x7d\xb0\x1c\xba\xd4\x2d\x65\xd5\xc4\x18\xb2\xd0\xfb\x66\xb0\x77\x3e\xcf\x58\xc4\x8b\x68\x7b\x66\x6d\x39\xda\xc6\xec\xe9\x47\xc3\x87\x0a\x6e\xc6\xd2\x6a\xe7\xc2\x36\x17\xce\x7c\xe7\xd8\xf9\x2a\xf3\xc5\x34\x01\x80\x35\x77\x75\x61\x18\x47\x1e\x8a\x93\xd3\x0b\xb1\x7b\x3b\xcf\x3d\x6e\x65\xd9\xfc\x8d\x93\xbc\xe4\x92\xef\x44\xcc\x5e\x40\xc6\xd4\x0b\x3b\xf8\x0b\x99\xad\xa6\xe9\x7e\x5d\x10\xc5\x93\xe9\x94\x29\x08\x18\x1d\x38\xe5\x96\x71\xf3\x9a\x74\xa0\xb3\x3b\x2f\x5a\xed\xb6\x8e\xeb\x1b\xf7\xa5\xe1\x06\x0b\xfa\xb8\x5c\xef\xdc\x56\x21\x42\x55\x26\x75\xae\xef\x27\x6c\x95\x73\x09\xda\x13\x71\x68\x54\xf9\xd5\x09\x97\x67\xe4\x4f\xb2\x29\x14\x92\xa7\x7b\xc0\x8e\x4f\x16\x12\xc9\xa6\x80\x95\x78\x1f\xa5\x49\xc4\x36\x39\xcf\xb6\x35\x3b\x48\x3c\x08\x59\x80\x84\xe9\x8d\xe0\xfa\xb4\x68\x7d\x5e\x2f\x81\x0d\x8e\xa7\xcc\x24\xdc\x3e\xb8\xac\xd1\x83\x42\xf5\x3a\x8e\x16\x80\x6b\x89\x78\x39\x8e\x1a\xe4\x20\x81\x65\x85\x16\x8d\x38\x7a\x20\x02\x69\x1a\xc7\xec\x57\x0f\x85\xbf\xb1\x5f\x89\xb5\xc2\x82\xff\x4f\x0d\xd9\x3b\x16\x8c\x93\xb8\x0c\xe7\x55\x2b\x92\x7b\x7a\x0f\xef\xb9\xc6\x04\x20\xf2\x54\x58\xb0\xb0\xdb\x38\x26\x24\x31\x07\x3c\x67\xec\xcf\xe5\x4a\xa5\x96\x28\x6e\xfe\x86\xa9\x1c\x34\x1a\x0a\x45\x7f\x4a\xe2\x2e\xeb\x20\x91\xb1\xf8\xf5\x24\xb6\x86\xfe\x83\xde\x9a\xcd\xe6\x33\x81\x14\x40\xbd\xb1\xb0\x3b\xe5\xc2\x1c\xc2\x85\xbd\x19\x37\x9e\xd2\x75\xe4\xe2\x2c\x2d\xb6\x00\x27\x44\x20\xbb\xef\xd4\x1d\xdf\xb3\x68\xcb\xe5\x26\x70\x4d\x00\xba\x4b\x64\x2a\x47\x2d\xc3\x07\xa0\x45\x53\xb9\xcd\x86\xa5\x1c\x4f\x42\xd3\xbb\x40\x02\x82\x58\x95\x4d\xe4\xe4\x9b\x4d\x2e\x36\x40\x50\xb0\x90\x95\x2c\x75\xa0\x84\xb3\x32\x0a\xf8\x9d\xbe\x24\xdf\xa7\x61\xca\xe8\xba\x0d\x16\xf9\xde\xa5\x48\x92\x10\xa8\x5f\xcf\xf5\x6e\x9d\xb0\x44\x4c\x27\xec\x07\x0f\xdc\x15\x91\x92\x2e\xc7\xb2\x23\xc1\xae\xe6\xf2\x67\x07\xae\x0e\x4d\x4a\x8d\xf6\xba\xc3\x6f\x0d\x39\xd1\xd6\x49\xd3\x9b\xa4\x5a\xf0\xa2\x1c\x71\x06\x91\x64\xf4\x85\x79\xf9\x16\xdf\xed\xc5\xb6\xf3\xcc\x1c\x1b\x96\xce\xc8\x3c\x6f\x4e\x4e\xf3\x6d\x4f\x77\xdc\xd6\xd7\x07\x1d\xc8\xa9\xea\x76\x20\x3f\x85\xa9\x6e\x39\x2b\x0e\xfb\x90\xd3\x0e\x1e\x86\x9e\x36\x8d\x75\x11\x5b\x90\x2f\xc1\xf7\x75\xfd\x1a\xdb\xb2\x03\x64\xb9\x8a\xcb\x48\xc4\x66\xe5\xc2\x7d\x08\x11\x31\x8e\x0e\xa2\xb2\x49\xb6\x1d\xb4\x15\x4e\x1b\x38\x75\xbf\x94\xcf\x61\x10\x8d\xb0\xeb\xfe\x8f\x1d\xfe\x06\x6b\xf1\xb5\x75\x7a\xb8\x3e\xb1\x9f\xf2\x91\xe7\x94\xfb\x7c\x95\xfc\x57\xe5\xc9\x26\x91\xbc\x50\x39\xfb\xce\x25\x7d\xbe\x74\x8a\x41\xdd\x16\xc2\xc8\x6d\xa2\xd2\x45\xb8\x4d\x7c\x51\xc3\xa3\x6d\x92\x9a\xa7\x74\xc1\x77\x59\x48\xa7\xe9\xf4\x98\xa9\x67\x52\xec\x04\x67\x9b\x80\xef\x34\xd1\x3e\xb7\x6d\x21\x29\xe2\x80\xe3\xa6\xf2\x90\x0f\xba\xf3\x6c\xce\xca\x62\x79\x24\x45\x0c\xbe\x3c\xce\xf1\x44\x30\x84\xf7\x3c\xeb\x27\xdd\xe0\xe4\x72\xc0\xe4\x1e\x27\x52\x6d\x2d\x95\xea\xfc\xec\x57\x5c\x18\x49\x02\x5a\x0f\x9d\xdf\xbc\xb3\x81\x22\x7f\x1f\xac\x5c\xb0\x60\x20\x90\x7d\x50\x83\x55\x81\x57\x7b\xb7\xad\x99\x53\xdc\x32\x75\x5c\xa4\xaa\x8c\x19\x6d\x6a\x14\x86\xcf\xa7\x78\x3a\x02\x1d\xe8\x74\xda\xc5\x8d\x36\x52\x09\xd6\xed\x3f\xf0\x5e\xfb\x0a\x84\xdf\x3a\x76\xe0\xde\xa5\x4f\x3d\xfb\x6c\x43\x4f\x3d\x0d\x63\xef\xb6\xe3\x51\x63\xef\xbc\xe0\xc0\x4d\x36\xce\x41\x0a\xf7\xd1\x24\x4e\x61\xbd\x85\x01\x84\x16\xf6\xd4\x4a\x60\x56\xdf\x9f\xfc\x39\x9b\xc1\xdc\xff\xa9\x8c\xe7\x42\x16\x4b\xf8\xe2\xb8\x8f\xc1\x47\x3e\xc0\xeb\x15\x83\x69\x90\x23\xf8\xdf\xef\x14\xfa\xf7\x2d\x11\xc9\x7f\xb0\x5b\xf2\x69\x99\xfd\x2a\x01\x10\xa9\xbe\x67\xdf\x25\x80\x39\x0a\x62\xa1\x6e\xe0\x3a\x86\x8b\x1a\x74\x44\xef\x05\x0d\xaa\x6c\xed\x83\x1a\xe4\x6b\x0f\xa1\x6a\x28\x85\xdc\x7b\x94\x39\x6b\xb6\x5a\xfb\xb7\x80\x9c\xfc\xaa\xf2\x6f\x20\x92\x34\xe3\x97\xb2\xff\x12\xb9\xf2\xe9\x20\xe8\xac\x0a\x0b\xee\xb5\xd7\x8f\xd7\x55\x45\x7b\x1c\x15\x3d\x43\x49\x3b\xf8\x0b\x71\xbd\xa0\x47\x61\xb5\xb7\xd7\x91\x2e\x9a\x7a\x11\x2d\x3b\xf4\x0b\x06\x55\x25\xb8\x78\x86\x7a\x04\x49\xed\x30\xb3\x0b\xf4\x1c\xfc\x15\xc4\xa6\xb8\xe3\x19\xe1\xfb\x08\x4a\x5c\x0f\xde\x4c\xa1\x11\xff\xfe\x97\xff\x98\x76\x29\x66\x43\xd5\xc7\xc2\xa5\x5c\xe5\xdf\xe6\x89\x90\x31\x04\x63\x79\xdc\x94\xd6\x91\x15\xef\x7c\x65\x7b\x36\xd3\xf0\x49\xb2\x26\xdb\x8f\x5a\xbd\xc4\x49\xf4\x05\x22\xfa\x7e\x93\x75\xcb\xb7\x12\xef\xeb\x32\x25\xf4\x32\xde\x4b\xbe\x6b\x6a\x8c\x3f\x6b\x1d\xf7\x89\x48\x63\xa8\x22\x7d\xfd\x50\x54\x2a\x16\xd1\xfd\x58\x9b\xe0\x68\x62\x70\x11\xdd\xb3\x9f\xee\xde\xbf\x43\x1d\xc8\x44\x2f\xe4\x15\x2f\x92\x07\xf1\x31\x4f\x5d\x38\x80\x98\x5e\xf2\xd4\xae\x91\x2a\x51\x6d\x40\x8a\x62\x59\x6d\xad\xe1\x10\xf2\x88\xef\xf6\x67\xab\x32\xba\x17\xc5\x79\xce\x65\xac\x76\xd8\x8c\x73\x5d\xae\xd7\xc9\xaf\xd3\x82\xe7\x1d\xa4\xe2\xe8\x47\xf8\x8a\x76\xae\x97\x8a\x29\xbc\xcd\x8b\xa6\xee\x23\x64\x7d\x92\x00\x71\xc5\xb8\x85\x2b\x70\xce\x77\x02\x58\xe1\x58\x95\x90\x1f\x4a\xc1\x44\x4a\xd0\xad\xd3\x9a\x10\xf4\x8a\x54\x71\x3f\x05\xc6\xfd\xa7\xa0\x56\x55\x65\x66\x5b\x29\xaf\x05\xb7\xe3\xf7\x78\x3f\xdc\xe4\x42\xeb\x09\xd3\x0a\x6a\xbc\x90\x16\x8b\x6e\xf3\xa5\x00\xf7\x02\xbc\x92\xe9\x9e\x45\x2a\x4b\x40\x3a\xcf\xb5\x6b\xab\x1e\xc1\x4f\x1f\xa6\x0d\x82\xda\x69\x29\x8b\x24\x65\x7c\x5d\x90\x13\x1f\x48\xb4\xad\x68\x8e\x9e\x2e\x24\x84\x62\x23\x68\x3e\x40\x24\x5c\xf8\xc5\x35\x42\xb3\x35\x8f\x92\x34\x29\x88\xda\x07\x92\x8c\xb8\x69\xaf\x39\x0f\x4c\x5f\xe6\x7c\xcf\x53\x7f\xb1\xe2\x69\xe9\x33\x25\xcf\xb4\xa8\x53\xc7\x75\x3b\x3e\xfb\x4e\xdd\x13\x2e\xbc\xa7\x1c\x3e\xcd\x2b\xad\x53\x72\xf5\xe7\x78\x12\x5b\xfc\x6d\xc5\xd4\xf5\x8c\xbe\xee\xf8\x81\x98\x44\xc7\xa5\x7a\x6a\xf5\x77\x9a\x5f\x18\xd1\x7b\xed\x46\xd8\x17\x72\x17\x74\x71\x0b\x0f\xa9\xbe\xf5\x76\x7f\x50\x2a\x3d\xd5\xe3\xcd\x53\xbb\xa1\x2e\x41\x92\xf2\x94\xeb\x1a\x4e\x00\xe7\x38\x9a\xbf\x71\x31\x6d\x47\xd6\x5b\x15\xb2\x21\xb8\x15\x55\x01\x36\x0a\xa8\x44\x0f\x12\x5b\x67\x2d\xa0\x86\x91\x88\x72\x28\x03\xd1\x50\xd6\x74\x6e\xba\xe0\x03\x8e\x00\xee\xeb\x08\x84\x86\xb5\x1a\x8e\x72\x86\xa1\x80\x64\xed\x53\xce\x31\x16\x12\x9f\xba\x7e\x0c\xbe\x6d\xfb\x13\x65\xab\xcd\xf9\x44\x56\xf2\x42\x06\x16\x31\xb2\x15\x59\xc8\xbe\xeb\xb5\x36\x7f\x59\x65\x1a\x9e\xec\x2f\x3b\x85\xdd\xba\x37\xa0\xf2\x26\xd4\xa9\x02\xac\x45\xa4\x76\xab\x44\xda\x14\x70\x72\x22\x83\x29\x3f\xb3\xe4\x81\xce\xe1\x6f\x4d\x72\x54\x2f\xa8\xf5\xbd\x33\x23\x42\x1e\xc6\x70\xcb\x3a\x74\xdd\x0d\xef\x4f\x4f\x4b\xc4\xdd\x11\xc9\xab\xb7\x20\xd1\x8c\xa7\x8f\x7c\xaf\x41\xcb\x55\x98\x5d\x71\x8d\x8e\xd3\x6a\xfd\x27\xc1\xf1\x6e\x89\x29\x49\x18\xbd\x24\x89\x67\x6a\x4b\x82\xbc\x18\x22\xb5\xaa\xb5\x9e\x6f\xe8\x85\x6e\xef\x9c\xaf\x13\x0b\xc9\x7b\x63\x21\x18\xe4\xfd\xdb\x08\x7f\xf4\x38\x59\x4f\xf4\xf5\x06\xc7\x24\x5a\x64\x04\xc3\x81\xc4\x28\x17\x02\x9e\xb0\x1d\x4f\x24\x2d\x03\x54\x06\x8b\xc5\xaa\xdc\x6c\x3a\x5d\x90\xdf\x7e\x2c\xa3\xba\x4e\xfe\xee\x7d\xcd\xbd\x8c\x59\x4f\xe1\x8d\x9d\xdb\x2f\xa1\x7b\xd8\xdc\xab\xbe\x8c\x03\xf6\x2b\x7a\xbb\x5b\x43\x4e\x8d\x49\xf4\x34\xde\xee\xf9\x10\x6f\xb7\xc5\x4e\x41\x0a\x1b\x5d\x57\x2d\xbe\xe5\x37\x37\xf8\x97\x71\x83\x0f\x9a\x14\x48\x9b\xb2\x4c\xaa\x06\x7a\x4f\x0d\x8f\x64\x5f\x73\x34\x9d\x50\x2b\x52\x59\xd7\x42\xc6\x9a\xad\x78\xf4\x0c\x74\x6c\x70\x3a\x9e\xee\x6f\x3b\x00\x2e\xb9\x55\x3b\xc1\xe0\x53\x1a\x35\x25\x18\x65\x09\x4e\x00\x0d\x6a\x1a\xe8\x11\x19\x84\xf7\x80\xe3\x14\x91\x21\xb1\x37\xaa\xbf\x93\xe2\x91\x99\xd3\x6a\x12\xc2\xe3\x82\xe1\x01\xb1\xa1\x97\xc6\x3a\xac\x60\xe9\x1d\x25\x42\x2e\x36\x3c\x8f\x21\x83\x83\x96\x64\xca\xa3\x7b\xf3\xdf\x50\x3f\xfa\x22\x41\xf8\x2c\xef\x39\xc2\x4a\x7d\x69\x89\x8c\x72\x20\xbb\x22\xb4\xa0\xaf\x1f\xbe\xae\x19\x8f\x72\xa5\xd1\x29\xe3\x34\x3a\x21\x83\x18\x0c\xd8\x87\x24\x2e\x79\x8a\x5f\xec\xf4\x64\x8f\x85\x87\xd5\x01\x3d\x81\x9c\x4e\x13\x2d\x46\xc3\x81\x1c\x40\xd0\x8d\xd3\x85\x7c\xe3\x02\x12\xaf\xd8\x47\x2d\x08\xc5\xa5\x2d\x21\x71\x6f\x4d\x9f\xcd\x7c\x68\x60\xee\x3a\x6d\x88\x9e\x0e\xb0\x20\xe6\xa0\x23\x74\x77\x4f\x1c\x20\xf5\x3b\x65\x50\x46\x93\x93\xce\x03\x4d\x5f\xdf\x2d\x78\x4f\xc8\x05\x8f\xf7\x21\xf5\x59\x22\x19\x44\xc1\x18\x8f\x77\x89\x34\x8b\xc0\xea\xc6\xb9\x93\xc6\x52\x48\x23\xa4\x17\xe4\x55\xd2\xb4\xb6\x09\x6a\x26\x85\x31\x2e\x79\x9e\xa4\x7b\xb8\x4f\x64\xb9\x38\x0b\xbe\x13\x8c\x0f\x65\x14\x01\x19\x36\xd1\x74\x94\x5a\xac\xcb\x14\x6f\x1d\x70\x2f\x77\x0d\xa0\x1d\xe9\xe3\x7c\x62\x0c\x8e\x82\x44\x0d\x82\x0f\xa3\x54\xd8\x53\x64\x67\x34\xa2\x81\xe3\x22\x5a\x9e\x9a\x2f\x07\x10\xf9\x56\x3d\xda\x54\xb2\x47\xee\xb1\xc2\x5d\xa7\xeb\x93\x45\x31\xfa\xed\x50\x7b\x03\xb4\xfb\x14\x76\x7e\x5c\x09\x5d\xd1\x6f\x22\x76\x7b\x53\x22\xa1\x39\xa4\xb6\xe9\x3d\xc3\xa5\xc6\x8c\x34\x33\x96\x70\x7e\x59\x47\x47\xd5\x31\xcc\x5c\xeb\x12\xad\x24\x5b\x94\xbf\xfb\xdd\xef\x05\xfb\x1d\xa4\xe8\xd1\x7d\x04\xe3\x4f\x40\xce\x87\xa5\xc3\x96\xed\x3e\x20\x90\xb9\xaf\x31\x22\xac\x0d\x02\x6a\xf3\xe1\x01\x44\xc9\xa3\x2d\xd3\xe5\x0a\x11\x82\x9c\x42\x18\x5c\x3a\xee\xdb\x77\x0a\xc0\x7e\x78\xb2\xdb\xda\xff\x2f\x71\xd8\x23\xff\xfc\x42\x66\x0a\xe9\x99\x01\x5a\xb9\x12\x6c\xc7\xf3\x7b\x90\x13\x24\xcd\x78\xc6\x0b\xf6\x5d\x22\xa6\x55\xf7\xfd\xcb\x4a\x7d\x28\x60\x82\xb4\xab\x2c\x2f\xa5\xb4\xfa\x28\xcc\x18\xa6\xde\x97\x3e\x59\xc8\x55\x19\xde\x3d\x2b\xce\x78\x3f\xb5\xc0\x21\x0f\x9b\xad\x02\x2e\x0e\xaa\x14\xd7\x81\x96\x3d\x1b\xe0\x95\x5f\xc8\x67\x72\xcb\x77\x39\xfc\x3e\x90\x0d\x66\x9d\x79\x41\x3e\x00\x34\x37\x94\xf0\x84\xe1\xc0\x69\x0f\x46\xce\x07\xd0\xf1\x9c\xb0\x9f\x92\x07\x31\x61\xb7\x19\xcf\xef\x27\xec\x0d\x86\xd7\xfe\xa8\x56\x6d\x3e\xbc\x06\x61\xc3\xc9\x7e\xbc\xe3\xdc\x58\x7d\x44\x26\xed\xd6\xff\x2f\x4d\xa5\xff\xae\xd8\xf2\xdf\x26\xe2\xad\x83\x4b\xe3\xef\xdd\x13\x71\x20\x0c\xfc\x1b\x38\xec\xef\xf2\x56\xdc\x4f\xa3\xf1\x0f\xe1\xff\xda\xfd\xcb\x5a\x5c\x60\x7b\xd2\x2e\xd7\x8a\xfa\xfa\xb6\x12\x87\x93\xb8\x7e\x28\x37\xf3\x87\x87\x2d\x05\x4a\xcf\x8e\x5d\xea\xf8\x08\x50\x3b\xbd\x6a\xfb\xeb\x22\x55\xba\xcc\xfb\x17\xff\x4d\xb5\xd6\xf6\xeb\x2d\x54\x9a\x30\xd9\x76\x2b\x01\xac\x00\x43\xe1\x1d\xf8\xd8\xf2\x3f\xd5\x6a\x09\x58\xa6\xd3\x56\x78\x5b\x71\x56\x9c\xc7\x45\xc4\xa8\xaa\xfe\x84\xbc\xcd\x04\x30\x3a\x79\x53\xd4\x07\x04\x6a\x33\xcc\xb9\x46\x16\xd2\x12\x5c\x63\x46\x6a\x9e\x0b\x60\xe2\xcd\x05\x68\x4e\xb1\x8c\xe7\x0e\x50\x60\x2d\xa2\xe0\xe6\xe3\x41\x27\x61\x16\x19\x24\x83\xd2\x7d\x6b\x25\x84\x74\xbd\x3d\xc6\x94\x30\xd6\x41\xbd\xf7\x09\x4d\xf6\x28\x58\x84\x89\x0a\x1d\xfa\x78\x8d\xf7\x82\xbb\x20\x98\xdc\x1b\x51\x04\xbb\x79\xcd\xb4\xa8\x2c\xcd\x4a\x84\xea\x9b\x42\xd4\xb7\xc6\xa0\x6b\xe4\x57\x15\x07\xca\xa0\x98\xde\x53\xf8\xcb\x3f\xf0\x62\x8b\x17\xda\x9d\x2a\x04\xee\x99\xc8\xc2\x83\xf3\x05\xbd\xce\xab\x54\xad\x40\xec\xc9\xfc\xd2\x75\x37\x8c\x68\x69\x0f\xea\xba\xe6\x80\x0d\xd9\x19\xcc\x6e\x02\x99\xac\xb9\xd0\x40\x68\xd2\x8c\x52\x0d\xc5\xff\x8e\xbb\x74\x37\xab\x6b\x36\xfd\x37\x8d\xcb\x76\x93\x01\xdf\x2c\x6b\x00\x83\x5e\x1e\x91\xa1\x72\x19\x66\x83\x1a\xe3\x80\xc8\x80\x29\x0c\x8c\x7c\xa0\xb5\xf6\x5a\x4d\xe1\x85\x9c\xe1\x2f\xc1\x21\xc0\xbd\xd2\x8b\xc3\x5b\x92\x7c\xa4\x5b\x7f\x98\x1e\xca\x66\x21\xc2\x8f\x3c\x04\x13\xef\xcb\x84\xcb\xc0\x04\xb2\x06\x65\x91\xe4\x82\x49\x40\x21\x2c\xa4\x2e\x57\x67\x9e\xf8\xc3\xdc\xe2\x1e\x80\xac\x46\x8b\x8c\xc3\x55\x06\xf8\x80\xce\x5a\x8e\x61\xf4\x4c\x7a\xc5\x06\x4b\x90\xc7\x53\xda\xfc\x21\x17\x11\x33\xcf\x5d\xdb\x5d\x39\xe6\xb2\x06\xb7\x68\x9b\xf5\x8c\x87\x5d\xdf\x7e\x01\x9a\x32\x90\xe1\x78\x83\x28\x8a\xaf\x7d\x80\x87\xd1\xd0\xa1\x47\x37\xc4\xd3\x16\xf2\xff\xda\xb3\xa1\x1b\xb4\x3b\x62\xa6\x9b\x9e\x31\x47\x54\x27\x98\xb8\x52\x37\x7b\x85\x0c\x8c\xc0\xee\x4a\x35\xa6\x7c\x5b\xa9\xdc\xe2\x5a\x42\x05\x05\x45\xe9\xa8\xf0\xeb\x43\xa2\x03\x3a\x6d\xf8\xda\xad\x10\xec\x55\x2e\xd6\xaf\x3e\xe5\x62\xbd\xb4\x23\x3d\x85\x06\x4d\x4d\x8b\x9a\xa4\xda\x03\x27\x87\xce\x94\x6c\x27\x17\x3c\x40\xfe\x59\x6b\x12\x96\x13\xb4\x29\x59\x33\x2f\xb4\x67\xda\x03\x0c\x0b\x22\xae\xb3\x7d\x37\x6a\xf6\xc5\x8f\xb9\x2e\x24\xd8\x00\xa8\x55\x87\x40\xdd\xdf\xff\xf1\x56\xe9\xb3\x21\xc7\xdb\x5d\x15\x32\x63\x37\x7b\x2e\xdd\x81\xd7\x0d\xad\xfe\xb2\xe8\x6f\x18\x40\x9d\xf1\x47\x49\x3c\x31\xa3\x5c\x4f\xc3\x8e\xb5\x76\xa9\x7c\x73\xac\x35\x30\x70\x7e\x95\x49\xeb\xe9\x4b\x9c\x9a\xdb\x24\x10\x42\xe6\x69\x1a\x6a\x16\xf8\x48\xdb\x42\xfa\xbc\x4f\x63\xb5\xa6\xa9\x75\xe1\x55\xec\x0d\x62\x05\x8a\x21\xe1\x56\x4c\x2c\xa9\x09\xd1\x01\x52\x3c\xec\x6c\xc5\x41\x65\xd3\x29\xf9\x1c\x5a\xcd\x4f\x75\x89\xfc\xc6\xf2\x8e\x0f\x44\x9e\xf1\xb3\xcb\x7b\xb1\x1f\x5d\xd7\xf6\x48\x47\x40\xd9\x00\x8b\xd9\xee\xb2\x11\xcf\x73\x8b\xa2\xa7\xaf\x32\x73\x57\x5a\xf3\xa8\xe2\xe6\xec\xa8\xe7\x56\x44\xf7\x99\x4a\xe4\xe8\xbd\xa8\x42\x21\x01\x93\xbd\x60\xbe\x34\x77\x3b\x1c\x74\x38\x56\xec\x49\x6c\x88\x06\x78\x85\x85\x86\x7a\xb2\x33\xce\x9c\x8a\x69\xf7\xb4\x7b\x6a\xff\x85\xf0\x67\xc3\x33\xf8\x62\x5b\xe2\x43\xb5\x53\x85\xb7\x38\x76\x2a\x4c\x9b\xbc\x91\x5d\x35\xb0\xb3\x39\xab\x50\x04\xb6\x76\x29\xb8\x20\x7f\xf3\x0c\xfd\xe6\x19\xfa\x1b\xf7\x0c\x7d\x49\xb7\x10\x60\x63\x9e\xd3\x27\xd4\x13\x20\x3f\x61\x39\xba\xaf\x9e\x2a\xe9\x8d\xd6\xf1\x24\x90\x9e\x0d\x32\x09\x9b\x40\x7f\x4b\x34\x51\x80\x70\x77\x74\x2f\x64\x67\x8c\xde\xd2\x03\x75\xea\x13\x3f\x2d\x82\xa5\x8d\xdd\x28\x78\xbb\x1f\xca\xe2\xa1\x4e\x44\xca\xdb\x46\xb8\x61\xd6\x09\xd8\x9e\xa6\xe1\x67\x00\x1a\x53\xb9\x23\x8e\xd6\x94\xe5\x86\xc1\x48\xa4\x21\x42\xb0\x54\x8d\x6a\x79\x28\x26\xce\x7e\x78\x99\x29\x95\xb6\x42\xe3\x9e\xb4\x03\x1b\x89\x32\x43\x3b\x6f\x8e\xc6\xa8\x0e\x01\x63\xb6\x17\x7d\xd2\x85\x4f\xd1\xc0\x7c\x0c\xd0\x9a\x80\xd9\x14\x97\x90\xab\xe8\xbb\x63\xea\x33\x9c\xb8\x73\xb8\x10\x46\x6c\x25\x22\x0e\x3a\x8b\x16\xbc\x17\x71\x97\x7d\x12\x92\x0e\x35\xd2\x41\x74\xf3\x3b\x1d\x51\x4b\x28\x77\x99\xb4\x09\x4b\x8c\x5d\x5c\x35\x0b\xc1\x42\xcb\xb1\xe6\x16\x49\x62\x69\x0d\x0f\xc9\x6a\x5a\x0e\xe7\x65\x94\x72\x3d\xd0\xb0\x6e\xdd\x77\xe6\x54\xd0\x05\x94\x33\x7c\x23\xfd\x09\xd2\x71\x76\x03\x91\x3b\x0b\x39\x73\xb2\x92\x1e\xfb\xe5\x90\x7b\x18\x2e\x45\xcc\x62\x63\x68\x90\x2b\xd1\xdf\x5c\x26\x4c\x97\xd1\x16\xd8\x20\xab\xfb\x54\xb8\x6f\x35\x57\xec\x64\x21\xcd\x85\x08\x5c\x2d\x3b\x0e\x79\xe7\x8f\xc6\x58\xd5\xc9\x7f\x09\x07\xcf\x22\x72\xac\x10\x91\x85\x17\x27\x25\x5b\xd1\x6b\x96\x98\x13\x01\x16\x1e\x53\x52\x66\x31\x2f\xc4\x74\xe1\xd1\x36\x09\x7a\x3a\x2d\xca\x83\x4c\x66\x1d\x36\x2c\xc4\x31\xd6\x76\xda\x34\x59\x8b\x68\x1f\x35\x74\x76\xfa\x69\x18\x7e\xbb\xb6\x7d\x5b\xd7\x36\x64\xb1\xc5\x9c\xc1\x31\x5d\x4b\x55\xbd\xf1\xaf\x9f\xd6\xb9\x82\x05\x35\xd1\x23\xfa\xf9\x0b\x5e\x3b\x5b\x6c\xe0\x71\xf6\xfc\xe0\x7b\x50\xff\x71\xe6\x2f\xb6\xfe\xb0\x0e\x28\x06\x1a\x66\x61\x18\x5c\x2c\xc2\xa9\x63\x0c\xda\xc1\x61\xfd\x6e\x16\x97\x6f\x0a\x9c\x34\xe4\xe2\x6a\x2c\x6e\x07\x57\xba\xb2\x96\xb6\x14\x78\xde\xf5\x58\xdc\x01\x6b\x3a\x2f\x5e\x68\xd7\xeb\xd5\x1d\xd0\x62\xff\xdf\x25\xba\xf8\xb9\xa6\xc9\x79\x9c\xa8\xe7\xb3\x99\xa6\xb6\xaa\x58\xcd\xa1\x16\xd5\x4d\xd5\xe6\x51\x6b\x3b\xe7\xe0\xf2\x64\x55\xd8\x4c\xbd\xc7\xdc\x83\x3e\xb9\xfe\xfa\x84\x47\xd3\x63\xce\xb3\x4c\xe4\xf6\x20\x6f\xd8\x5a\x20\x69\x06\x5f\x01\x4d\xc2\xad\x40\x61\xe4\xda\x2d\xd7\x6c\x25\xb5\xa2\xe1\x31\xe8\xba\x69\xfb\xc8\x5d\x95\x69\xda\x39\x72\x87\x95\x92\xae\x3e\xbe\x7b\xb7\xfc\x79\xf6\xee\xe3\xa5\x6d\x7e\xab\xf2\x50\xf0\x58\x67\x9f\xb8\x9a\x50\x9f\x78\x6d\x43\xf3\x59\x61\xc5\x99\x95\x6f\x35\x3a\xb9\xca\x34\xad\xaa\x52\x2d\xe4\x27\x2a\x07\x60\xda\xa8\xb8\x69\xfa\x8d\xf5\x76\x5c\xf5\xfb\xf0\xd8\x27\x53\xf8\x27\x7c\xf7\x8c\xf9\x46\xbc\x02\xed\x44\xd2\x64\x6b\xef\x57\xca\x86\x39\x61\x39\x20\x18\xb8\x6b\x39\x3c\xb5\xee\xde\x71\xcb\xe3\xa3\x04\xc6\x6f\x11\x5b\xb9\xbc\x27\x59\x1d\xd8\x77\x9f\xaa\x71\x6a\xb7\x97\xc7\x78\xa5\x81\x72\x27\xa8\x96\x06\x1a\xd0\x5e\x50\x6c\x21\xd1\x07\x6a\xea\x54\xa8\xee\x3a\xb1\x39\x99\xb7\x29\x97\x9b\x92\x6f\x8c\x75\x6b\x3f\xbe\x90\xbb\x64\xb3\x45\x9e\x8d\x32\xf3\xf8\x64\xce\x24\xd0\xb1\xd4\xa6\x50\x0d\x9f\x9c\xc8\x85\xa4\x36\xc9\x8d\x2f\x1e\xb1\xb2\x7f\xbc\x75\xcd\x21\x50\x3a\x16\x44\x82\x6f\x72\x21\x71\x70\x91\xff\xc3\x46\x42\xe0\xc6\xc2\x8b\xfa\xd4\xe5\x10\xbb\x44\x51\x74\xb3\xa7\x6f\x20\x26\xb3\x90\x2e\x45\x17\x3d\x47\xd4\x86\x40\x18\x04\xab\x74\x78\x3f\xb1\x83\x61\xd7\x04\xd5\xad\x7d\xd6\x9f\x7c\x06\x98\x05\xb7\x1c\xa1\xee\xdc\xdc\xc6\x06\x7a\x0b\x79\xb0\x71\x74\xf1\x36\x40\x5e\x76\x7b\x6d\x6c\xbb\xf0\x99\x4e\x68\xab\x2a\x57\xe9\x88\x2a\xe1\xf3\xbd\x95\xc2\x2d\xb9\xbf\x52\x03\xae\xc3\x37\xb5\xa5\x65\xa6\x69\xdf\x67\x57\x4a\x75\x8c\xcb\x13\x06\x14\x2b\x95\xa2\x17\x0e\x75\x46\x19\x15\xc7\xcc\x97\x01\xc9\x8a\xf5\x2e\xb2\xbb\x4f\x5f\x85\xd2\x44\x1f\x55\x1d\x6f\x3f\x0d\xae\x91\xb3\x10\xe8\xb0\x1b\xb5\xc3\xd2\x39\x57\xd9\x60\x3b\xb6\x49\x8a\x27\x59\x99\xe4\x04\xb7\x17\xb3\x78\x50\xc3\xd8\xcc\xff\x89\x9b\x44\x13\x3f\x72\x13\xa8\x64\x54\xe6\xda\x6c\x97\xb4\xdf\xd1\xae\xad\x72\xc6\x17\xd2\xa6\xaa\xd9\xed\x78\x66\xc1\xb9\xb9\xfb\x2b\x26\x80\x66\xc8\x57\x0f\x16\x6b\xc1\x94\x14\x76\x37\x5c\x48\xab\xad\x3d\x61\x7c\xa5\xad\x64\x35\x97\x7b\xa7\x23\x9d\x38\x91\x40\x2e\x19\xa0\x9e\x0f\xef\x79\x35\x33\xa0\x72\xce\xff\x83\xf9\xbf\xff\xf9\x87\xff\x1f\x00\x00\xff\xff\x7f\x4e\x89\x9c\x28\xac\x04\x00") func adminSwaggerJsonBytes() ([]byte, error) { return bindataRead( @@ -93,7 +93,7 @@ func adminSwaggerJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin.swagger.json", size: 305606, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} + info := bindataFileInfo{name: "admin.swagger.json", size: 306216, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/gen/pb-java/flyteidl/event/Event.java b/gen/pb-java/flyteidl/event/Event.java index 2376082bf..13a0ed07a 100644 --- a/gen/pb-java/flyteidl/event/Event.java +++ b/gen/pb-java/flyteidl/event/Event.java @@ -11113,6 +11113,845 @@ public flyteidl.event.Event.ParentNodeExecutionMetadata getDefaultInstanceForTyp } + public interface EventReasonOrBuilder extends + // @@protoc_insertion_point(interface_extends:flyteidl.event.EventReason) + com.google.protobuf.MessageOrBuilder { + + /** + *
+     * An explanation for this event
+     * 
+ * + * string reason = 1; + */ + java.lang.String getReason(); + /** + *
+     * An explanation for this event
+     * 
+ * + * string reason = 1; + */ + com.google.protobuf.ByteString + getReasonBytes(); + + /** + *
+     * The time this reason occurred
+     * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + boolean hasOccurredAt(); + /** + *
+     * The time this reason occurred
+     * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + com.google.protobuf.Timestamp getOccurredAt(); + /** + *
+     * The time this reason occurred
+     * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + com.google.protobuf.TimestampOrBuilder getOccurredAtOrBuilder(); + } + /** + * Protobuf type {@code flyteidl.event.EventReason} + */ + public static final class EventReason extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:flyteidl.event.EventReason) + EventReasonOrBuilder { + private static final long serialVersionUID = 0L; + // Use EventReason.newBuilder() to construct. + private EventReason(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private EventReason() { + reason_ = ""; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private EventReason( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + java.lang.String s = input.readStringRequireUtf8(); + + reason_ = s; + break; + } + case 18: { + com.google.protobuf.Timestamp.Builder subBuilder = null; + if (occurredAt_ != null) { + subBuilder = occurredAt_.toBuilder(); + } + occurredAt_ = input.readMessage(com.google.protobuf.Timestamp.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(occurredAt_); + occurredAt_ = subBuilder.buildPartial(); + } + + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return flyteidl.event.Event.internal_static_flyteidl_event_EventReason_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return flyteidl.event.Event.internal_static_flyteidl_event_EventReason_fieldAccessorTable + .ensureFieldAccessorsInitialized( + flyteidl.event.Event.EventReason.class, flyteidl.event.Event.EventReason.Builder.class); + } + + public static final int REASON_FIELD_NUMBER = 1; + private volatile java.lang.Object reason_; + /** + *
+     * An explanation for this event
+     * 
+ * + * string reason = 1; + */ + public java.lang.String getReason() { + java.lang.Object ref = reason_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + reason_ = s; + return s; + } + } + /** + *
+     * An explanation for this event
+     * 
+ * + * string reason = 1; + */ + public com.google.protobuf.ByteString + getReasonBytes() { + java.lang.Object ref = reason_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + reason_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int OCCURRED_AT_FIELD_NUMBER = 2; + private com.google.protobuf.Timestamp occurredAt_; + /** + *
+     * The time this reason occurred
+     * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + public boolean hasOccurredAt() { + return occurredAt_ != null; + } + /** + *
+     * The time this reason occurred
+     * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + public com.google.protobuf.Timestamp getOccurredAt() { + return occurredAt_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : occurredAt_; + } + /** + *
+     * The time this reason occurred
+     * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + public com.google.protobuf.TimestampOrBuilder getOccurredAtOrBuilder() { + return getOccurredAt(); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!getReasonBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, reason_); + } + if (occurredAt_ != null) { + output.writeMessage(2, getOccurredAt()); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!getReasonBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, reason_); + } + if (occurredAt_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, getOccurredAt()); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof flyteidl.event.Event.EventReason)) { + return super.equals(obj); + } + flyteidl.event.Event.EventReason other = (flyteidl.event.Event.EventReason) obj; + + if (!getReason() + .equals(other.getReason())) return false; + if (hasOccurredAt() != other.hasOccurredAt()) return false; + if (hasOccurredAt()) { + if (!getOccurredAt() + .equals(other.getOccurredAt())) return false; + } + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + REASON_FIELD_NUMBER; + hash = (53 * hash) + getReason().hashCode(); + if (hasOccurredAt()) { + hash = (37 * hash) + OCCURRED_AT_FIELD_NUMBER; + hash = (53 * hash) + getOccurredAt().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static flyteidl.event.Event.EventReason parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.event.Event.EventReason parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.event.Event.EventReason parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.event.Event.EventReason parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.event.Event.EventReason parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.event.Event.EventReason parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.event.Event.EventReason parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static flyteidl.event.Event.EventReason parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static flyteidl.event.Event.EventReason parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static flyteidl.event.Event.EventReason parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static flyteidl.event.Event.EventReason parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static flyteidl.event.Event.EventReason parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(flyteidl.event.Event.EventReason prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code flyteidl.event.EventReason} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:flyteidl.event.EventReason) + flyteidl.event.Event.EventReasonOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return flyteidl.event.Event.internal_static_flyteidl_event_EventReason_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return flyteidl.event.Event.internal_static_flyteidl_event_EventReason_fieldAccessorTable + .ensureFieldAccessorsInitialized( + flyteidl.event.Event.EventReason.class, flyteidl.event.Event.EventReason.Builder.class); + } + + // Construct using flyteidl.event.Event.EventReason.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + reason_ = ""; + + if (occurredAtBuilder_ == null) { + occurredAt_ = null; + } else { + occurredAt_ = null; + occurredAtBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return flyteidl.event.Event.internal_static_flyteidl_event_EventReason_descriptor; + } + + @java.lang.Override + public flyteidl.event.Event.EventReason getDefaultInstanceForType() { + return flyteidl.event.Event.EventReason.getDefaultInstance(); + } + + @java.lang.Override + public flyteidl.event.Event.EventReason build() { + flyteidl.event.Event.EventReason result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public flyteidl.event.Event.EventReason buildPartial() { + flyteidl.event.Event.EventReason result = new flyteidl.event.Event.EventReason(this); + result.reason_ = reason_; + if (occurredAtBuilder_ == null) { + result.occurredAt_ = occurredAt_; + } else { + result.occurredAt_ = occurredAtBuilder_.build(); + } + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof flyteidl.event.Event.EventReason) { + return mergeFrom((flyteidl.event.Event.EventReason)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(flyteidl.event.Event.EventReason other) { + if (other == flyteidl.event.Event.EventReason.getDefaultInstance()) return this; + if (!other.getReason().isEmpty()) { + reason_ = other.reason_; + onChanged(); + } + if (other.hasOccurredAt()) { + mergeOccurredAt(other.getOccurredAt()); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + flyteidl.event.Event.EventReason parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (flyteidl.event.Event.EventReason) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private java.lang.Object reason_ = ""; + /** + *
+       * An explanation for this event
+       * 
+ * + * string reason = 1; + */ + public java.lang.String getReason() { + java.lang.Object ref = reason_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + reason_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+       * An explanation for this event
+       * 
+ * + * string reason = 1; + */ + public com.google.protobuf.ByteString + getReasonBytes() { + java.lang.Object ref = reason_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + reason_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+       * An explanation for this event
+       * 
+ * + * string reason = 1; + */ + public Builder setReason( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + reason_ = value; + onChanged(); + return this; + } + /** + *
+       * An explanation for this event
+       * 
+ * + * string reason = 1; + */ + public Builder clearReason() { + + reason_ = getDefaultInstance().getReason(); + onChanged(); + return this; + } + /** + *
+       * An explanation for this event
+       * 
+ * + * string reason = 1; + */ + public Builder setReasonBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + reason_ = value; + onChanged(); + return this; + } + + private com.google.protobuf.Timestamp occurredAt_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> occurredAtBuilder_; + /** + *
+       * The time this reason occurred
+       * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + public boolean hasOccurredAt() { + return occurredAtBuilder_ != null || occurredAt_ != null; + } + /** + *
+       * The time this reason occurred
+       * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + public com.google.protobuf.Timestamp getOccurredAt() { + if (occurredAtBuilder_ == null) { + return occurredAt_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : occurredAt_; + } else { + return occurredAtBuilder_.getMessage(); + } + } + /** + *
+       * The time this reason occurred
+       * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + public Builder setOccurredAt(com.google.protobuf.Timestamp value) { + if (occurredAtBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + occurredAt_ = value; + onChanged(); + } else { + occurredAtBuilder_.setMessage(value); + } + + return this; + } + /** + *
+       * The time this reason occurred
+       * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + public Builder setOccurredAt( + com.google.protobuf.Timestamp.Builder builderForValue) { + if (occurredAtBuilder_ == null) { + occurredAt_ = builderForValue.build(); + onChanged(); + } else { + occurredAtBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+       * The time this reason occurred
+       * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + public Builder mergeOccurredAt(com.google.protobuf.Timestamp value) { + if (occurredAtBuilder_ == null) { + if (occurredAt_ != null) { + occurredAt_ = + com.google.protobuf.Timestamp.newBuilder(occurredAt_).mergeFrom(value).buildPartial(); + } else { + occurredAt_ = value; + } + onChanged(); + } else { + occurredAtBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+       * The time this reason occurred
+       * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + public Builder clearOccurredAt() { + if (occurredAtBuilder_ == null) { + occurredAt_ = null; + onChanged(); + } else { + occurredAt_ = null; + occurredAtBuilder_ = null; + } + + return this; + } + /** + *
+       * The time this reason occurred
+       * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + public com.google.protobuf.Timestamp.Builder getOccurredAtBuilder() { + + onChanged(); + return getOccurredAtFieldBuilder().getBuilder(); + } + /** + *
+       * The time this reason occurred
+       * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + public com.google.protobuf.TimestampOrBuilder getOccurredAtOrBuilder() { + if (occurredAtBuilder_ != null) { + return occurredAtBuilder_.getMessageOrBuilder(); + } else { + return occurredAt_ == null ? + com.google.protobuf.Timestamp.getDefaultInstance() : occurredAt_; + } + } + /** + *
+       * The time this reason occurred
+       * 
+ * + * .google.protobuf.Timestamp occurred_at = 2; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> + getOccurredAtFieldBuilder() { + if (occurredAtBuilder_ == null) { + occurredAtBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( + getOccurredAt(), + getParentForChildren(), + isClean()); + occurredAt_ = null; + } + return occurredAtBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:flyteidl.event.EventReason) + } + + // @@protoc_insertion_point(class_scope:flyteidl.event.EventReason) + private static final flyteidl.event.Event.EventReason DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new flyteidl.event.Event.EventReason(); + } + + public static flyteidl.event.Event.EventReason getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public EventReason parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new EventReason(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public flyteidl.event.Event.EventReason getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + + } + public interface TaskExecutionEventOrBuilder extends // @@protoc_insertion_point(interface_extends:flyteidl.event.TaskExecutionEvent) com.google.protobuf.MessageOrBuilder { @@ -11443,20 +12282,66 @@ flyteidl.core.Execution.TaskLogOrBuilder getLogsOrBuilder( /** *
      * An optional explanation for the phase transition.
+     * Deprecated: Use reasons instead.
      * 
* - * string reason = 13; + * string reason = 13 [deprecated = true]; */ - java.lang.String getReason(); + @java.lang.Deprecated java.lang.String getReason(); /** *
      * An optional explanation for the phase transition.
+     * Deprecated: Use reasons instead.
+     * 
+ * + * string reason = 13 [deprecated = true]; + */ + @java.lang.Deprecated com.google.protobuf.ByteString + getReasonBytes(); + + /** + *
+     * An optional list of explanations for the phase transition.
+     * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + java.util.List + getReasonsList(); + /** + *
+     * An optional list of explanations for the phase transition.
+     * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + flyteidl.event.Event.EventReason getReasons(int index); + /** + *
+     * An optional list of explanations for the phase transition.
+     * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + int getReasonsCount(); + /** + *
+     * An optional list of explanations for the phase transition.
+     * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + java.util.List + getReasonsOrBuilderList(); + /** + *
+     * An optional list of explanations for the phase transition.
      * 
* - * string reason = 13; + * repeated .flyteidl.event.EventReason reasons = 21; */ - com.google.protobuf.ByteString - getReasonBytes(); + flyteidl.event.Event.EventReasonOrBuilder getReasonsOrBuilder( + int index); /** *
@@ -11576,6 +12461,7 @@ private TaskExecutionEvent() {
       producerId_ = "";
       logs_ = java.util.Collections.emptyList();
       reason_ = "";
+      reasons_ = java.util.Collections.emptyList();
       taskType_ = "";
     }
 
@@ -11783,6 +12669,15 @@ private TaskExecutionEvent(
 
               break;
             }
+            case 170: {
+              if (!((mutable_bitField0_ & 0x00008000) != 0)) {
+                reasons_ = new java.util.ArrayList();
+                mutable_bitField0_ |= 0x00008000;
+              }
+              reasons_.add(
+                  input.readMessage(flyteidl.event.Event.EventReason.parser(), extensionRegistry));
+              break;
+            }
             default: {
               if (!parseUnknownField(
                   input, unknownFields, extensionRegistry, tag)) {
@@ -11801,6 +12696,9 @@ private TaskExecutionEvent(
         if (((mutable_bitField0_ & 0x00000020) != 0)) {
           logs_ = java.util.Collections.unmodifiableList(logs_);
         }
+        if (((mutable_bitField0_ & 0x00008000) != 0)) {
+          reasons_ = java.util.Collections.unmodifiableList(reasons_);
+        }
         this.unknownFields = unknownFields.build();
         makeExtensionsImmutable();
       }
@@ -12413,11 +13311,12 @@ public int getPhaseVersion() {
     /**
      * 
      * An optional explanation for the phase transition.
+     * Deprecated: Use reasons instead.
      * 
* - * string reason = 13; + * string reason = 13 [deprecated = true]; */ - public java.lang.String getReason() { + @java.lang.Deprecated public java.lang.String getReason() { java.lang.Object ref = reason_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; @@ -12432,11 +13331,12 @@ public java.lang.String getReason() { /** *
      * An optional explanation for the phase transition.
+     * Deprecated: Use reasons instead.
      * 
* - * string reason = 13; + * string reason = 13 [deprecated = true]; */ - public com.google.protobuf.ByteString + @java.lang.Deprecated public com.google.protobuf.ByteString getReasonBytes() { java.lang.Object ref = reason_; if (ref instanceof java.lang.String) { @@ -12450,6 +13350,61 @@ public java.lang.String getReason() { } } + public static final int REASONS_FIELD_NUMBER = 21; + private java.util.List reasons_; + /** + *
+     * An optional list of explanations for the phase transition.
+     * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public java.util.List getReasonsList() { + return reasons_; + } + /** + *
+     * An optional list of explanations for the phase transition.
+     * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public java.util.List + getReasonsOrBuilderList() { + return reasons_; + } + /** + *
+     * An optional list of explanations for the phase transition.
+     * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public int getReasonsCount() { + return reasons_.size(); + } + /** + *
+     * An optional list of explanations for the phase transition.
+     * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public flyteidl.event.Event.EventReason getReasons(int index) { + return reasons_.get(index); + } + /** + *
+     * An optional list of explanations for the phase transition.
+     * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public flyteidl.event.Event.EventReasonOrBuilder getReasonsOrBuilder( + int index) { + return reasons_.get(index); + } + public static final int TASK_TYPE_FIELD_NUMBER = 14; private volatile java.lang.Object taskType_; /** @@ -12658,6 +13613,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (reportedAt_ != null) { output.writeMessage(20, getReportedAt()); } + for (int i = 0; i < reasons_.size(); i++) { + output.writeMessage(21, reasons_.get(i)); + } unknownFields.writeTo(output); } @@ -12738,6 +13696,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(20, getReportedAt()); } + for (int i = 0; i < reasons_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(21, reasons_.get(i)); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -12784,6 +13746,8 @@ public boolean equals(final java.lang.Object obj) { != other.getPhaseVersion()) return false; if (!getReason() .equals(other.getReason())) return false; + if (!getReasonsList() + .equals(other.getReasonsList())) return false; if (!getTaskType() .equals(other.getTaskType())) return false; if (hasMetadata() != other.hasMetadata()) return false; @@ -12869,6 +13833,10 @@ public int hashCode() { hash = (53 * hash) + getPhaseVersion(); hash = (37 * hash) + REASON_FIELD_NUMBER; hash = (53 * hash) + getReason().hashCode(); + if (getReasonsCount() > 0) { + hash = (37 * hash) + REASONS_FIELD_NUMBER; + hash = (53 * hash) + getReasonsList().hashCode(); + } hash = (37 * hash) + TASK_TYPE_FIELD_NUMBER; hash = (53 * hash) + getTaskType().hashCode(); if (hasMetadata()) { @@ -13042,6 +14010,7 @@ private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getLogsFieldBuilder(); + getReasonsFieldBuilder(); } } @java.lang.Override @@ -13087,6 +14056,12 @@ public Builder clear() { reason_ = ""; + if (reasonsBuilder_ == null) { + reasons_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00008000); + } else { + reasonsBuilder_.clear(); + } taskType_ = ""; if (metadataBuilder_ == null) { @@ -13196,6 +14171,15 @@ public flyteidl.event.Event.TaskExecutionEvent buildPartial() { } result.phaseVersion_ = phaseVersion_; result.reason_ = reason_; + if (reasonsBuilder_ == null) { + if (((bitField0_ & 0x00008000) != 0)) { + reasons_ = java.util.Collections.unmodifiableList(reasons_); + bitField0_ = (bitField0_ & ~0x00008000); + } + result.reasons_ = reasons_; + } else { + result.reasons_ = reasonsBuilder_.build(); + } result.taskType_ = taskType_; if (metadataBuilder_ == null) { result.metadata_ = metadata_; @@ -13314,6 +14298,32 @@ public Builder mergeFrom(flyteidl.event.Event.TaskExecutionEvent other) { reason_ = other.reason_; onChanged(); } + if (reasonsBuilder_ == null) { + if (!other.reasons_.isEmpty()) { + if (reasons_.isEmpty()) { + reasons_ = other.reasons_; + bitField0_ = (bitField0_ & ~0x00008000); + } else { + ensureReasonsIsMutable(); + reasons_.addAll(other.reasons_); + } + onChanged(); + } + } else { + if (!other.reasons_.isEmpty()) { + if (reasonsBuilder_.isEmpty()) { + reasonsBuilder_.dispose(); + reasonsBuilder_ = null; + reasons_ = other.reasons_; + bitField0_ = (bitField0_ & ~0x00008000); + reasonsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getReasonsFieldBuilder() : null; + } else { + reasonsBuilder_.addAllMessages(other.reasons_); + } + } + } if (!other.getTaskType().isEmpty()) { taskType_ = other.taskType_; onChanged(); @@ -15338,11 +16348,12 @@ public Builder clearPhaseVersion() { /** *
        * An optional explanation for the phase transition.
+       * Deprecated: Use reasons instead.
        * 
* - * string reason = 13; + * string reason = 13 [deprecated = true]; */ - public java.lang.String getReason() { + @java.lang.Deprecated public java.lang.String getReason() { java.lang.Object ref = reason_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = @@ -15357,11 +16368,12 @@ public java.lang.String getReason() { /** *
        * An optional explanation for the phase transition.
+       * Deprecated: Use reasons instead.
        * 
* - * string reason = 13; + * string reason = 13 [deprecated = true]; */ - public com.google.protobuf.ByteString + @java.lang.Deprecated public com.google.protobuf.ByteString getReasonBytes() { java.lang.Object ref = reason_; if (ref instanceof String) { @@ -15377,11 +16389,12 @@ public java.lang.String getReason() { /** *
        * An optional explanation for the phase transition.
+       * Deprecated: Use reasons instead.
        * 
* - * string reason = 13; + * string reason = 13 [deprecated = true]; */ - public Builder setReason( + @java.lang.Deprecated public Builder setReason( java.lang.String value) { if (value == null) { throw new NullPointerException(); @@ -15394,11 +16407,12 @@ public Builder setReason( /** *
        * An optional explanation for the phase transition.
+       * Deprecated: Use reasons instead.
        * 
* - * string reason = 13; + * string reason = 13 [deprecated = true]; */ - public Builder clearReason() { + @java.lang.Deprecated public Builder clearReason() { reason_ = getDefaultInstance().getReason(); onChanged(); @@ -15407,11 +16421,12 @@ public Builder clearReason() { /** *
        * An optional explanation for the phase transition.
+       * Deprecated: Use reasons instead.
        * 
* - * string reason = 13; + * string reason = 13 [deprecated = true]; */ - public Builder setReasonBytes( + @java.lang.Deprecated public Builder setReasonBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); @@ -15423,6 +16438,318 @@ public Builder setReasonBytes( return this; } + private java.util.List reasons_ = + java.util.Collections.emptyList(); + private void ensureReasonsIsMutable() { + if (!((bitField0_ & 0x00008000) != 0)) { + reasons_ = new java.util.ArrayList(reasons_); + bitField0_ |= 0x00008000; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + flyteidl.event.Event.EventReason, flyteidl.event.Event.EventReason.Builder, flyteidl.event.Event.EventReasonOrBuilder> reasonsBuilder_; + + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public java.util.List getReasonsList() { + if (reasonsBuilder_ == null) { + return java.util.Collections.unmodifiableList(reasons_); + } else { + return reasonsBuilder_.getMessageList(); + } + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public int getReasonsCount() { + if (reasonsBuilder_ == null) { + return reasons_.size(); + } else { + return reasonsBuilder_.getCount(); + } + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public flyteidl.event.Event.EventReason getReasons(int index) { + if (reasonsBuilder_ == null) { + return reasons_.get(index); + } else { + return reasonsBuilder_.getMessage(index); + } + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public Builder setReasons( + int index, flyteidl.event.Event.EventReason value) { + if (reasonsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureReasonsIsMutable(); + reasons_.set(index, value); + onChanged(); + } else { + reasonsBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public Builder setReasons( + int index, flyteidl.event.Event.EventReason.Builder builderForValue) { + if (reasonsBuilder_ == null) { + ensureReasonsIsMutable(); + reasons_.set(index, builderForValue.build()); + onChanged(); + } else { + reasonsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public Builder addReasons(flyteidl.event.Event.EventReason value) { + if (reasonsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureReasonsIsMutable(); + reasons_.add(value); + onChanged(); + } else { + reasonsBuilder_.addMessage(value); + } + return this; + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public Builder addReasons( + int index, flyteidl.event.Event.EventReason value) { + if (reasonsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureReasonsIsMutable(); + reasons_.add(index, value); + onChanged(); + } else { + reasonsBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public Builder addReasons( + flyteidl.event.Event.EventReason.Builder builderForValue) { + if (reasonsBuilder_ == null) { + ensureReasonsIsMutable(); + reasons_.add(builderForValue.build()); + onChanged(); + } else { + reasonsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public Builder addReasons( + int index, flyteidl.event.Event.EventReason.Builder builderForValue) { + if (reasonsBuilder_ == null) { + ensureReasonsIsMutable(); + reasons_.add(index, builderForValue.build()); + onChanged(); + } else { + reasonsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public Builder addAllReasons( + java.lang.Iterable values) { + if (reasonsBuilder_ == null) { + ensureReasonsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, reasons_); + onChanged(); + } else { + reasonsBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public Builder clearReasons() { + if (reasonsBuilder_ == null) { + reasons_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00008000); + onChanged(); + } else { + reasonsBuilder_.clear(); + } + return this; + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public Builder removeReasons(int index) { + if (reasonsBuilder_ == null) { + ensureReasonsIsMutable(); + reasons_.remove(index); + onChanged(); + } else { + reasonsBuilder_.remove(index); + } + return this; + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public flyteidl.event.Event.EventReason.Builder getReasonsBuilder( + int index) { + return getReasonsFieldBuilder().getBuilder(index); + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public flyteidl.event.Event.EventReasonOrBuilder getReasonsOrBuilder( + int index) { + if (reasonsBuilder_ == null) { + return reasons_.get(index); } else { + return reasonsBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public java.util.List + getReasonsOrBuilderList() { + if (reasonsBuilder_ != null) { + return reasonsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(reasons_); + } + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public flyteidl.event.Event.EventReason.Builder addReasonsBuilder() { + return getReasonsFieldBuilder().addBuilder( + flyteidl.event.Event.EventReason.getDefaultInstance()); + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public flyteidl.event.Event.EventReason.Builder addReasonsBuilder( + int index) { + return getReasonsFieldBuilder().addBuilder( + index, flyteidl.event.Event.EventReason.getDefaultInstance()); + } + /** + *
+       * An optional list of explanations for the phase transition.
+       * 
+ * + * repeated .flyteidl.event.EventReason reasons = 21; + */ + public java.util.List + getReasonsBuilderList() { + return getReasonsFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + flyteidl.event.Event.EventReason, flyteidl.event.Event.EventReason.Builder, flyteidl.event.Event.EventReasonOrBuilder> + getReasonsFieldBuilder() { + if (reasonsBuilder_ == null) { + reasonsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + flyteidl.event.Event.EventReason, flyteidl.event.Event.EventReason.Builder, flyteidl.event.Event.EventReasonOrBuilder>( + reasons_, + ((bitField0_ & 0x00008000) != 0), + getParentForChildren(), + isClean()); + reasons_ = null; + } + return reasonsBuilder_; + } + private java.lang.Object taskType_ = ""; /** *
@@ -20243,6 +21570,11 @@ public flyteidl.event.Event.TaskExecutionMetadata getDefaultInstanceForType() {
   private static final 
     com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
       internal_static_flyteidl_event_ParentNodeExecutionMetadata_fieldAccessorTable;
+  private static final com.google.protobuf.Descriptors.Descriptor
+    internal_static_flyteidl_event_EventReason_descriptor;
+  private static final 
+    com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
+      internal_static_flyteidl_event_EventReason_fieldAccessorTable;
   private static final com.google.protobuf.Descriptors.Descriptor
     internal_static_flyteidl_event_TaskExecutionEvent_descriptor;
   private static final 
@@ -20327,7 +21659,9 @@ public flyteidl.event.Event.TaskExecutionMetadata getDefaultInstanceForType() {
       "(\t\"Q\n\033ParentTaskExecutionMetadata\0222\n\002id\030" +
       "\001 \001(\0132&.flyteidl.core.TaskExecutionIdent" +
       "ifier\".\n\033ParentNodeExecutionMetadata\022\017\n\007" +
-      "node_id\030\001 \001(\t\"\207\006\n\022TaskExecutionEvent\022*\n\007" +
+      "node_id\030\001 \001(\t\"N\n\013EventReason\022\016\n\006reason\030\001" +
+      " \001(\t\022/\n\013occurred_at\030\002 \001(\0132\032.google.proto" +
+      "buf.Timestamp\"\271\006\n\022TaskExecutionEvent\022*\n\007" +
       "task_id\030\001 \001(\0132\031.flyteidl.core.Identifier" +
       "\022H\n\030parent_node_execution_id\030\002 \001(\0132&.fly" +
       "teidl.core.NodeExecutionIdentifier\022\025\n\rre" +
@@ -20341,30 +21675,31 @@ public flyteidl.event.Event.TaskExecutionMetadata getDefaultInstanceForType() {
       "\001(\0132\035.flyteidl.core.ExecutionErrorH\001\0220\n\013" +
       "output_data\030\021 \001(\0132\031.flyteidl.core.Litera" +
       "lMapH\001\022,\n\013custom_info\030\013 \001(\0132\027.google.pro" +
-      "tobuf.Struct\022\025\n\rphase_version\030\014 \001(\r\022\016\n\006r" +
-      "eason\030\r \001(\t\022\021\n\ttask_type\030\016 \001(\t\0227\n\010metada" +
-      "ta\030\020 \001(\0132%.flyteidl.event.TaskExecutionM" +
-      "etadata\022\025\n\revent_version\030\022 \001(\005\022/\n\013report" +
-      "ed_at\030\024 \001(\0132\032.google.protobuf.TimestampB" +
-      "\r\n\013input_valueB\017\n\routput_result\"\343\001\n\024Exte" +
-      "rnalResourceInfo\022\023\n\013external_id\030\001 \001(\t\022\r\n" +
-      "\005index\030\002 \001(\r\022\025\n\rretry_attempt\030\003 \001(\r\0221\n\005p" +
-      "hase\030\004 \001(\0162\".flyteidl.core.TaskExecution" +
-      ".Phase\0227\n\014cache_status\030\005 \001(\0162!.flyteidl." +
-      "core.CatalogCacheStatus\022$\n\004logs\030\006 \003(\0132\026." +
-      "flyteidl.core.TaskLog\"?\n\020ResourcePoolInf" +
-      "o\022\030\n\020allocation_token\030\001 \001(\t\022\021\n\tnamespace" +
-      "\030\002 \001(\t\"\310\002\n\025TaskExecutionMetadata\022\026\n\016gene" +
-      "rated_name\030\001 \001(\t\022@\n\022external_resources\030\002" +
-      " \003(\0132$.flyteidl.event.ExternalResourceIn" +
-      "fo\022<\n\022resource_pool_info\030\003 \003(\0132 .flyteid" +
-      "l.event.ResourcePoolInfo\022\031\n\021plugin_ident" +
-      "ifier\030\004 \001(\t\022K\n\016instance_class\030\020 \001(\01623.fl" +
-      "yteidl.event.TaskExecutionMetadata.Insta" +
-      "nceClass\"/\n\rInstanceClass\022\013\n\007DEFAULT\020\000\022\021" +
-      "\n\rINTERRUPTIBLE\020\001B7Z5github.com/flyteorg" +
-      "/flyteidl/gen/pb-go/flyteidl/eventb\006prot" +
-      "o3"
+      "tobuf.Struct\022\025\n\rphase_version\030\014 \001(\r\022\022\n\006r" +
+      "eason\030\r \001(\tB\002\030\001\022,\n\007reasons\030\025 \003(\0132\033.flyte" +
+      "idl.event.EventReason\022\021\n\ttask_type\030\016 \001(\t" +
+      "\0227\n\010metadata\030\020 \001(\0132%.flyteidl.event.Task" +
+      "ExecutionMetadata\022\025\n\revent_version\030\022 \001(\005" +
+      "\022/\n\013reported_at\030\024 \001(\0132\032.google.protobuf." +
+      "TimestampB\r\n\013input_valueB\017\n\routput_resul" +
+      "t\"\343\001\n\024ExternalResourceInfo\022\023\n\013external_i" +
+      "d\030\001 \001(\t\022\r\n\005index\030\002 \001(\r\022\025\n\rretry_attempt\030" +
+      "\003 \001(\r\0221\n\005phase\030\004 \001(\0162\".flyteidl.core.Tas" +
+      "kExecution.Phase\0227\n\014cache_status\030\005 \001(\0162!" +
+      ".flyteidl.core.CatalogCacheStatus\022$\n\004log" +
+      "s\030\006 \003(\0132\026.flyteidl.core.TaskLog\"?\n\020Resou" +
+      "rcePoolInfo\022\030\n\020allocation_token\030\001 \001(\t\022\021\n" +
+      "\tnamespace\030\002 \001(\t\"\310\002\n\025TaskExecutionMetada" +
+      "ta\022\026\n\016generated_name\030\001 \001(\t\022@\n\022external_r" +
+      "esources\030\002 \003(\0132$.flyteidl.event.External" +
+      "ResourceInfo\022<\n\022resource_pool_info\030\003 \003(\013" +
+      "2 .flyteidl.event.ResourcePoolInfo\022\031\n\021pl" +
+      "ugin_identifier\030\004 \001(\t\022K\n\016instance_class\030" +
+      "\020 \001(\01623.flyteidl.event.TaskExecutionMeta" +
+      "data.InstanceClass\"/\n\rInstanceClass\022\013\n\007D" +
+      "EFAULT\020\000\022\021\n\rINTERRUPTIBLE\020\001B7Z5github.co" +
+      "m/flyteorg/flyteidl/gen/pb-go/flyteidl/e" +
+      "ventb\006proto3"
     };
     com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
         new com.google.protobuf.Descriptors.FileDescriptor.    InternalDescriptorAssigner() {
@@ -20427,26 +21762,32 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors(
       com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
         internal_static_flyteidl_event_ParentNodeExecutionMetadata_descriptor,
         new java.lang.String[] { "NodeId", });
-    internal_static_flyteidl_event_TaskExecutionEvent_descriptor =
+    internal_static_flyteidl_event_EventReason_descriptor =
       getDescriptor().getMessageTypes().get(7);
+    internal_static_flyteidl_event_EventReason_fieldAccessorTable = new
+      com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
+        internal_static_flyteidl_event_EventReason_descriptor,
+        new java.lang.String[] { "Reason", "OccurredAt", });
+    internal_static_flyteidl_event_TaskExecutionEvent_descriptor =
+      getDescriptor().getMessageTypes().get(8);
     internal_static_flyteidl_event_TaskExecutionEvent_fieldAccessorTable = new
       com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
         internal_static_flyteidl_event_TaskExecutionEvent_descriptor,
-        new java.lang.String[] { "TaskId", "ParentNodeExecutionId", "RetryAttempt", "Phase", "ProducerId", "Logs", "OccurredAt", "InputUri", "InputData", "OutputUri", "Error", "OutputData", "CustomInfo", "PhaseVersion", "Reason", "TaskType", "Metadata", "EventVersion", "ReportedAt", "InputValue", "OutputResult", });
+        new java.lang.String[] { "TaskId", "ParentNodeExecutionId", "RetryAttempt", "Phase", "ProducerId", "Logs", "OccurredAt", "InputUri", "InputData", "OutputUri", "Error", "OutputData", "CustomInfo", "PhaseVersion", "Reason", "Reasons", "TaskType", "Metadata", "EventVersion", "ReportedAt", "InputValue", "OutputResult", });
     internal_static_flyteidl_event_ExternalResourceInfo_descriptor =
-      getDescriptor().getMessageTypes().get(8);
+      getDescriptor().getMessageTypes().get(9);
     internal_static_flyteidl_event_ExternalResourceInfo_fieldAccessorTable = new
       com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
         internal_static_flyteidl_event_ExternalResourceInfo_descriptor,
         new java.lang.String[] { "ExternalId", "Index", "RetryAttempt", "Phase", "CacheStatus", "Logs", });
     internal_static_flyteidl_event_ResourcePoolInfo_descriptor =
-      getDescriptor().getMessageTypes().get(9);
+      getDescriptor().getMessageTypes().get(10);
     internal_static_flyteidl_event_ResourcePoolInfo_fieldAccessorTable = new
       com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
         internal_static_flyteidl_event_ResourcePoolInfo_descriptor,
         new java.lang.String[] { "AllocationToken", "Namespace", });
     internal_static_flyteidl_event_TaskExecutionMetadata_descriptor =
-      getDescriptor().getMessageTypes().get(10);
+      getDescriptor().getMessageTypes().get(11);
     internal_static_flyteidl_event_TaskExecutionMetadata_fieldAccessorTable = new
       com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
         internal_static_flyteidl_event_TaskExecutionMetadata_descriptor,
diff --git a/gen/pb-js/flyteidl.d.ts b/gen/pb-js/flyteidl.d.ts
index fc4be4945..a7fde2b80 100644
--- a/gen/pb-js/flyteidl.d.ts
+++ b/gen/pb-js/flyteidl.d.ts
@@ -7254,6 +7254,64 @@ export namespace flyteidl {
             public static verify(message: { [k: string]: any }): (string|null);
         }
 
+        /** Properties of an EventReason. */
+        interface IEventReason {
+
+            /** EventReason reason */
+            reason?: (string|null);
+
+            /** EventReason occurredAt */
+            occurredAt?: (google.protobuf.ITimestamp|null);
+        }
+
+        /** Represents an EventReason. */
+        class EventReason implements IEventReason {
+
+            /**
+             * Constructs a new EventReason.
+             * @param [properties] Properties to set
+             */
+            constructor(properties?: flyteidl.event.IEventReason);
+
+            /** EventReason reason. */
+            public reason: string;
+
+            /** EventReason occurredAt. */
+            public occurredAt?: (google.protobuf.ITimestamp|null);
+
+            /**
+             * Creates a new EventReason instance using the specified properties.
+             * @param [properties] Properties to set
+             * @returns EventReason instance
+             */
+            public static create(properties?: flyteidl.event.IEventReason): flyteidl.event.EventReason;
+
+            /**
+             * Encodes the specified EventReason message. Does not implicitly {@link flyteidl.event.EventReason.verify|verify} messages.
+             * @param message EventReason message or plain object to encode
+             * @param [writer] Writer to encode to
+             * @returns Writer
+             */
+            public static encode(message: flyteidl.event.IEventReason, writer?: $protobuf.Writer): $protobuf.Writer;
+
+            /**
+             * Decodes an EventReason message from the specified reader or buffer.
+             * @param reader Reader or buffer to decode from
+             * @param [length] Message length if known beforehand
+             * @returns EventReason
+             * @throws {Error} If the payload is not a reader or valid buffer
+             * @throws {$protobuf.util.ProtocolError} If required fields are missing
+             */
+            public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.EventReason;
+
+            /**
+             * Verifies an EventReason message.
+             * @param message Plain object to verify
+             * @returns `null` if valid, otherwise the reason why it is not
+             */
+            public static verify(message: { [k: string]: any }): (string|null);
+        }
+
         /** Properties of a TaskExecutionEvent. */
         interface ITaskExecutionEvent {
 
@@ -7302,6 +7360,9 @@ export namespace flyteidl {
             /** TaskExecutionEvent reason */
             reason?: (string|null);
 
+            /** TaskExecutionEvent reasons */
+            reasons?: (flyteidl.event.IEventReason[]|null);
+
             /** TaskExecutionEvent taskType */
             taskType?: (string|null);
 
@@ -7369,6 +7430,9 @@ export namespace flyteidl {
             /** TaskExecutionEvent reason. */
             public reason: string;
 
+            /** TaskExecutionEvent reasons. */
+            public reasons: flyteidl.event.IEventReason[];
+
             /** TaskExecutionEvent taskType. */
             public taskType: string;
 
diff --git a/gen/pb-js/flyteidl.js b/gen/pb-js/flyteidl.js
index 78e602fde..2477e38c8 100644
--- a/gen/pb-js/flyteidl.js
+++ b/gen/pb-js/flyteidl.js
@@ -17608,6 +17608,135 @@
                 return ParentNodeExecutionMetadata;
             })();
     
+            event.EventReason = (function() {
+    
+                /**
+                 * Properties of an EventReason.
+                 * @memberof flyteidl.event
+                 * @interface IEventReason
+                 * @property {string|null} [reason] EventReason reason
+                 * @property {google.protobuf.ITimestamp|null} [occurredAt] EventReason occurredAt
+                 */
+    
+                /**
+                 * Constructs a new EventReason.
+                 * @memberof flyteidl.event
+                 * @classdesc Represents an EventReason.
+                 * @implements IEventReason
+                 * @constructor
+                 * @param {flyteidl.event.IEventReason=} [properties] Properties to set
+                 */
+                function EventReason(properties) {
+                    if (properties)
+                        for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
+                            if (properties[keys[i]] != null)
+                                this[keys[i]] = properties[keys[i]];
+                }
+    
+                /**
+                 * EventReason reason.
+                 * @member {string} reason
+                 * @memberof flyteidl.event.EventReason
+                 * @instance
+                 */
+                EventReason.prototype.reason = "";
+    
+                /**
+                 * EventReason occurredAt.
+                 * @member {google.protobuf.ITimestamp|null|undefined} occurredAt
+                 * @memberof flyteidl.event.EventReason
+                 * @instance
+                 */
+                EventReason.prototype.occurredAt = null;
+    
+                /**
+                 * Creates a new EventReason instance using the specified properties.
+                 * @function create
+                 * @memberof flyteidl.event.EventReason
+                 * @static
+                 * @param {flyteidl.event.IEventReason=} [properties] Properties to set
+                 * @returns {flyteidl.event.EventReason} EventReason instance
+                 */
+                EventReason.create = function create(properties) {
+                    return new EventReason(properties);
+                };
+    
+                /**
+                 * Encodes the specified EventReason message. Does not implicitly {@link flyteidl.event.EventReason.verify|verify} messages.
+                 * @function encode
+                 * @memberof flyteidl.event.EventReason
+                 * @static
+                 * @param {flyteidl.event.IEventReason} message EventReason message or plain object to encode
+                 * @param {$protobuf.Writer} [writer] Writer to encode to
+                 * @returns {$protobuf.Writer} Writer
+                 */
+                EventReason.encode = function encode(message, writer) {
+                    if (!writer)
+                        writer = $Writer.create();
+                    if (message.reason != null && message.hasOwnProperty("reason"))
+                        writer.uint32(/* id 1, wireType 2 =*/10).string(message.reason);
+                    if (message.occurredAt != null && message.hasOwnProperty("occurredAt"))
+                        $root.google.protobuf.Timestamp.encode(message.occurredAt, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim();
+                    return writer;
+                };
+    
+                /**
+                 * Decodes an EventReason message from the specified reader or buffer.
+                 * @function decode
+                 * @memberof flyteidl.event.EventReason
+                 * @static
+                 * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
+                 * @param {number} [length] Message length if known beforehand
+                 * @returns {flyteidl.event.EventReason} EventReason
+                 * @throws {Error} If the payload is not a reader or valid buffer
+                 * @throws {$protobuf.util.ProtocolError} If required fields are missing
+                 */
+                EventReason.decode = function decode(reader, length) {
+                    if (!(reader instanceof $Reader))
+                        reader = $Reader.create(reader);
+                    var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.EventReason();
+                    while (reader.pos < end) {
+                        var tag = reader.uint32();
+                        switch (tag >>> 3) {
+                        case 1:
+                            message.reason = reader.string();
+                            break;
+                        case 2:
+                            message.occurredAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32());
+                            break;
+                        default:
+                            reader.skipType(tag & 7);
+                            break;
+                        }
+                    }
+                    return message;
+                };
+    
+                /**
+                 * Verifies an EventReason message.
+                 * @function verify
+                 * @memberof flyteidl.event.EventReason
+                 * @static
+                 * @param {Object.} message Plain object to verify
+                 * @returns {string|null} `null` if valid, otherwise the reason why it is not
+                 */
+                EventReason.verify = function verify(message) {
+                    if (typeof message !== "object" || message === null)
+                        return "object expected";
+                    if (message.reason != null && message.hasOwnProperty("reason"))
+                        if (!$util.isString(message.reason))
+                            return "reason: string expected";
+                    if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) {
+                        var error = $root.google.protobuf.Timestamp.verify(message.occurredAt);
+                        if (error)
+                            return "occurredAt." + error;
+                    }
+                    return null;
+                };
+    
+                return EventReason;
+            })();
+    
             event.TaskExecutionEvent = (function() {
     
                 /**
@@ -17629,6 +17758,7 @@
                  * @property {google.protobuf.IStruct|null} [customInfo] TaskExecutionEvent customInfo
                  * @property {number|null} [phaseVersion] TaskExecutionEvent phaseVersion
                  * @property {string|null} [reason] TaskExecutionEvent reason
+                 * @property {Array.|null} [reasons] TaskExecutionEvent reasons
                  * @property {string|null} [taskType] TaskExecutionEvent taskType
                  * @property {flyteidl.event.ITaskExecutionMetadata|null} [metadata] TaskExecutionEvent metadata
                  * @property {number|null} [eventVersion] TaskExecutionEvent eventVersion
@@ -17645,6 +17775,7 @@
                  */
                 function TaskExecutionEvent(properties) {
                     this.logs = [];
+                    this.reasons = [];
                     if (properties)
                         for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
                             if (properties[keys[i]] != null)
@@ -17771,6 +17902,14 @@
                  */
                 TaskExecutionEvent.prototype.reason = "";
     
+                /**
+                 * TaskExecutionEvent reasons.
+                 * @member {Array.} reasons
+                 * @memberof flyteidl.event.TaskExecutionEvent
+                 * @instance
+                 */
+                TaskExecutionEvent.prototype.reasons = $util.emptyArray;
+    
                 /**
                  * TaskExecutionEvent taskType.
                  * @member {string} taskType
@@ -17891,6 +18030,9 @@
                         $root.flyteidl.core.LiteralMap.encode(message.inputData, writer.uint32(/* id 19, wireType 2 =*/154).fork()).ldelim();
                     if (message.reportedAt != null && message.hasOwnProperty("reportedAt"))
                         $root.google.protobuf.Timestamp.encode(message.reportedAt, writer.uint32(/* id 20, wireType 2 =*/162).fork()).ldelim();
+                    if (message.reasons != null && message.reasons.length)
+                        for (var i = 0; i < message.reasons.length; ++i)
+                            $root.flyteidl.event.EventReason.encode(message.reasons[i], writer.uint32(/* id 21, wireType 2 =*/170).fork()).ldelim();
                     return writer;
                 };
     
@@ -17959,6 +18101,11 @@
                         case 13:
                             message.reason = reader.string();
                             break;
+                        case 21:
+                            if (!(message.reasons && message.reasons.length))
+                                message.reasons = [];
+                            message.reasons.push($root.flyteidl.event.EventReason.decode(reader, reader.uint32()));
+                            break;
                         case 14:
                             message.taskType = reader.string();
                             break;
@@ -18086,6 +18233,15 @@
                     if (message.reason != null && message.hasOwnProperty("reason"))
                         if (!$util.isString(message.reason))
                             return "reason: string expected";
+                    if (message.reasons != null && message.hasOwnProperty("reasons")) {
+                        if (!Array.isArray(message.reasons))
+                            return "reasons: array expected";
+                        for (var i = 0; i < message.reasons.length; ++i) {
+                            var error = $root.flyteidl.event.EventReason.verify(message.reasons[i]);
+                            if (error)
+                                return "reasons." + error;
+                        }
+                    }
                     if (message.taskType != null && message.hasOwnProperty("taskType"))
                         if (!$util.isString(message.taskType))
                             return "taskType: string expected";
diff --git a/gen/pb_python/flyteidl/event/event_pb2.py b/gen/pb_python/flyteidl/event/event_pb2.py
index 08b6e5c77..318f71348 100644
--- a/gen/pb_python/flyteidl/event/event_pb2.py
+++ b/gen/pb_python/flyteidl/event/event_pb2.py
@@ -20,7 +20,7 @@
 from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/event/event.proto\x12\x0e\x66lyteidl.event\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1c\x66lyteidl/core/compiler.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1b\x66lyteidl/core/catalog.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xaa\x03\n\x16WorkflowExecutionEvent\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\x12\x1f\n\x0bproducer_id\x18\x02 \x01(\tR\nproducerId\x12<\n\x05phase\x18\x03 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x05phase\x12;\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1f\n\noutput_uri\x18\x05 \x01(\tH\x00R\toutputUri\x12\x35\n\x05\x65rror\x18\x06 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12<\n\x0boutput_data\x18\x07 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\noutputDataB\x0f\n\routput_result\"\x8f\t\n\x12NodeExecutionEvent\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\x12\x1f\n\x0bproducer_id\x18\x02 \x01(\tR\nproducerId\x12\x38\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.PhaseR\x05phase\x12;\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1d\n\tinput_uri\x18\x05 \x01(\tH\x00R\x08inputUri\x12:\n\ninput_data\x18\x14 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\tinputData\x12\x1f\n\noutput_uri\x18\x06 \x01(\tH\x01R\toutputUri\x12\x35\n\x05\x65rror\x18\x07 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x01R\x05\x65rror\x12<\n\x0boutput_data\x18\x0f \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x01R\noutputData\x12\\\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.event.WorkflowNodeMetadataH\x02R\x14workflowNodeMetadata\x12P\n\x12task_node_metadata\x18\x0e \x01(\x0b\x32 .flyteidl.event.TaskNodeMetadataH\x02R\x10taskNodeMetadata\x12]\n\x14parent_task_metadata\x18\t \x01(\x0b\x32+.flyteidl.event.ParentTaskExecutionMetadataR\x12parentTaskMetadata\x12]\n\x14parent_node_metadata\x18\n \x01(\x0b\x32+.flyteidl.event.ParentNodeExecutionMetadataR\x12parentNodeMetadata\x12\x1f\n\x0bretry_group\x18\x0b \x01(\tR\nretryGroup\x12 \n\x0cspec_node_id\x18\x0c \x01(\tR\nspecNodeId\x12\x1b\n\tnode_name\x18\r \x01(\tR\x08nodeName\x12#\n\revent_version\x18\x10 \x01(\x05R\x0c\x65ventVersion\x12\x1b\n\tis_parent\x18\x11 \x01(\x08R\x08isParent\x12\x1d\n\nis_dynamic\x18\x12 \x01(\x08R\tisDynamic\x12\x19\n\x08\x64\x65\x63k_uri\x18\x13 \x01(\tR\x07\x64\x65\x63kUri\x12;\n\x0breported_at\x18\x15 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\nreportedAtB\r\n\x0binput_valueB\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"e\n\x14WorkflowNodeMetadata\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\"\xf1\x02\n\x10TaskNodeMetadata\x12\x44\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12?\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadataR\ncatalogKey\x12W\n\x12reservation_status\x18\x03 \x01(\x0e\x32(.flyteidl.core.CatalogReservation.StatusR\x11reservationStatus\x12%\n\x0e\x63heckpoint_uri\x18\x04 \x01(\tR\rcheckpointUri\x12V\n\x10\x64ynamic_workflow\x18\x10 \x01(\x0b\x32+.flyteidl.event.DynamicWorkflowNodeMetadataR\x0f\x64ynamicWorkflow\"\xce\x01\n\x1b\x44ynamicWorkflowNodeMetadata\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12S\n\x11\x63ompiled_workflow\x18\x02 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosureR\x10\x63ompiledWorkflow\x12/\n\x14\x64ynamic_job_spec_uri\x18\x03 \x01(\tR\x11\x64ynamicJobSpecUri\"U\n\x1bParentTaskExecutionMetadata\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x02id\"6\n\x1bParentNodeExecutionMetadata\x12\x17\n\x07node_id\x18\x01 \x01(\tR\x06nodeId\"\xdc\x07\n\x12TaskExecutionEvent\x12\x32\n\x07task_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x06taskId\x12_\n\x18parent_node_execution_id\x18\x02 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x15parentNodeExecutionId\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\x12\x38\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12\x1f\n\x0bproducer_id\x18\x05 \x01(\tR\nproducerId\x12*\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\x12;\n\x0boccurred_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1d\n\tinput_uri\x18\x08 \x01(\tH\x00R\x08inputUri\x12:\n\ninput_data\x18\x13 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\tinputData\x12\x1f\n\noutput_uri\x18\t \x01(\tH\x01R\toutputUri\x12\x35\n\x05\x65rror\x18\n \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x01R\x05\x65rror\x12<\n\x0boutput_data\x18\x11 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x01R\noutputData\x12\x38\n\x0b\x63ustom_info\x18\x0b \x01(\x0b\x32\x17.google.protobuf.StructR\ncustomInfo\x12#\n\rphase_version\x18\x0c \x01(\rR\x0cphaseVersion\x12\x16\n\x06reason\x18\r \x01(\tR\x06reason\x12\x1b\n\ttask_type\x18\x0e \x01(\tR\x08taskType\x12\x41\n\x08metadata\x18\x10 \x01(\x0b\x32%.flyteidl.event.TaskExecutionMetadataR\x08metadata\x12#\n\revent_version\x18\x12 \x01(\x05R\x0c\x65ventVersion\x12;\n\x0breported_at\x18\x14 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\nreportedAtB\r\n\x0binput_valueB\x0f\n\routput_result\"\x9e\x02\n\x14\x45xternalResourceInfo\x12\x1f\n\x0b\x65xternal_id\x18\x01 \x01(\tR\nexternalId\x12\x14\n\x05index\x18\x02 \x01(\rR\x05index\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\x12\x38\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12\x44\n\x0c\x63\x61\x63he_status\x18\x05 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12*\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\"[\n\x10ResourcePoolInfo\x12)\n\x10\x61llocation_token\x18\x01 \x01(\tR\x0f\x61llocationToken\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\"\x9d\x03\n\x15TaskExecutionMetadata\x12%\n\x0egenerated_name\x18\x01 \x01(\tR\rgeneratedName\x12S\n\x12\x65xternal_resources\x18\x02 \x03(\x0b\x32$.flyteidl.event.ExternalResourceInfoR\x11\x65xternalResources\x12N\n\x12resource_pool_info\x18\x03 \x03(\x0b\x32 .flyteidl.event.ResourcePoolInfoR\x10resourcePoolInfo\x12+\n\x11plugin_identifier\x18\x04 \x01(\tR\x10pluginIdentifier\x12Z\n\x0einstance_class\x18\x10 \x01(\x0e\x32\x33.flyteidl.event.TaskExecutionMetadata.InstanceClassR\rinstanceClass\"/\n\rInstanceClass\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x00\x12\x11\n\rINTERRUPTIBLE\x10\x01\x42\xb0\x01\n\x12\x63om.flyteidl.eventB\nEventProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event\xa2\x02\x03\x46\x45X\xaa\x02\x0e\x46lyteidl.Event\xca\x02\x0e\x46lyteidl\\Event\xe2\x02\x1a\x46lyteidl\\Event\\GPBMetadata\xea\x02\x0f\x46lyteidl::Eventb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/event/event.proto\x12\x0e\x66lyteidl.event\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1c\x66lyteidl/core/compiler.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1b\x66lyteidl/core/catalog.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xaa\x03\n\x16WorkflowExecutionEvent\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\x12\x1f\n\x0bproducer_id\x18\x02 \x01(\tR\nproducerId\x12<\n\x05phase\x18\x03 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x05phase\x12;\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1f\n\noutput_uri\x18\x05 \x01(\tH\x00R\toutputUri\x12\x35\n\x05\x65rror\x18\x06 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12<\n\x0boutput_data\x18\x07 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\noutputDataB\x0f\n\routput_result\"\x8f\t\n\x12NodeExecutionEvent\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\x12\x1f\n\x0bproducer_id\x18\x02 \x01(\tR\nproducerId\x12\x38\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.PhaseR\x05phase\x12;\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1d\n\tinput_uri\x18\x05 \x01(\tH\x00R\x08inputUri\x12:\n\ninput_data\x18\x14 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\tinputData\x12\x1f\n\noutput_uri\x18\x06 \x01(\tH\x01R\toutputUri\x12\x35\n\x05\x65rror\x18\x07 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x01R\x05\x65rror\x12<\n\x0boutput_data\x18\x0f \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x01R\noutputData\x12\\\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.event.WorkflowNodeMetadataH\x02R\x14workflowNodeMetadata\x12P\n\x12task_node_metadata\x18\x0e \x01(\x0b\x32 .flyteidl.event.TaskNodeMetadataH\x02R\x10taskNodeMetadata\x12]\n\x14parent_task_metadata\x18\t \x01(\x0b\x32+.flyteidl.event.ParentTaskExecutionMetadataR\x12parentTaskMetadata\x12]\n\x14parent_node_metadata\x18\n \x01(\x0b\x32+.flyteidl.event.ParentNodeExecutionMetadataR\x12parentNodeMetadata\x12\x1f\n\x0bretry_group\x18\x0b \x01(\tR\nretryGroup\x12 \n\x0cspec_node_id\x18\x0c \x01(\tR\nspecNodeId\x12\x1b\n\tnode_name\x18\r \x01(\tR\x08nodeName\x12#\n\revent_version\x18\x10 \x01(\x05R\x0c\x65ventVersion\x12\x1b\n\tis_parent\x18\x11 \x01(\x08R\x08isParent\x12\x1d\n\nis_dynamic\x18\x12 \x01(\x08R\tisDynamic\x12\x19\n\x08\x64\x65\x63k_uri\x18\x13 \x01(\tR\x07\x64\x65\x63kUri\x12;\n\x0breported_at\x18\x15 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\nreportedAtB\r\n\x0binput_valueB\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"e\n\x14WorkflowNodeMetadata\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\"\xf1\x02\n\x10TaskNodeMetadata\x12\x44\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12?\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadataR\ncatalogKey\x12W\n\x12reservation_status\x18\x03 \x01(\x0e\x32(.flyteidl.core.CatalogReservation.StatusR\x11reservationStatus\x12%\n\x0e\x63heckpoint_uri\x18\x04 \x01(\tR\rcheckpointUri\x12V\n\x10\x64ynamic_workflow\x18\x10 \x01(\x0b\x32+.flyteidl.event.DynamicWorkflowNodeMetadataR\x0f\x64ynamicWorkflow\"\xce\x01\n\x1b\x44ynamicWorkflowNodeMetadata\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12S\n\x11\x63ompiled_workflow\x18\x02 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosureR\x10\x63ompiledWorkflow\x12/\n\x14\x64ynamic_job_spec_uri\x18\x03 \x01(\tR\x11\x64ynamicJobSpecUri\"U\n\x1bParentTaskExecutionMetadata\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x02id\"6\n\x1bParentNodeExecutionMetadata\x12\x17\n\x07node_id\x18\x01 \x01(\tR\x06nodeId\"b\n\x0b\x45ventReason\x12\x16\n\x06reason\x18\x01 \x01(\tR\x06reason\x12;\n\x0boccurred_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\"\x97\x08\n\x12TaskExecutionEvent\x12\x32\n\x07task_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x06taskId\x12_\n\x18parent_node_execution_id\x18\x02 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x15parentNodeExecutionId\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\x12\x38\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12\x1f\n\x0bproducer_id\x18\x05 \x01(\tR\nproducerId\x12*\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\x12;\n\x0boccurred_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1d\n\tinput_uri\x18\x08 \x01(\tH\x00R\x08inputUri\x12:\n\ninput_data\x18\x13 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\tinputData\x12\x1f\n\noutput_uri\x18\t \x01(\tH\x01R\toutputUri\x12\x35\n\x05\x65rror\x18\n \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x01R\x05\x65rror\x12<\n\x0boutput_data\x18\x11 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x01R\noutputData\x12\x38\n\x0b\x63ustom_info\x18\x0b \x01(\x0b\x32\x17.google.protobuf.StructR\ncustomInfo\x12#\n\rphase_version\x18\x0c \x01(\rR\x0cphaseVersion\x12\x1a\n\x06reason\x18\r \x01(\tB\x02\x18\x01R\x06reason\x12\x35\n\x07reasons\x18\x15 \x03(\x0b\x32\x1b.flyteidl.event.EventReasonR\x07reasons\x12\x1b\n\ttask_type\x18\x0e \x01(\tR\x08taskType\x12\x41\n\x08metadata\x18\x10 \x01(\x0b\x32%.flyteidl.event.TaskExecutionMetadataR\x08metadata\x12#\n\revent_version\x18\x12 \x01(\x05R\x0c\x65ventVersion\x12;\n\x0breported_at\x18\x14 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\nreportedAtB\r\n\x0binput_valueB\x0f\n\routput_result\"\x9e\x02\n\x14\x45xternalResourceInfo\x12\x1f\n\x0b\x65xternal_id\x18\x01 \x01(\tR\nexternalId\x12\x14\n\x05index\x18\x02 \x01(\rR\x05index\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\x12\x38\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12\x44\n\x0c\x63\x61\x63he_status\x18\x05 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12*\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\"[\n\x10ResourcePoolInfo\x12)\n\x10\x61llocation_token\x18\x01 \x01(\tR\x0f\x61llocationToken\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\"\x9d\x03\n\x15TaskExecutionMetadata\x12%\n\x0egenerated_name\x18\x01 \x01(\tR\rgeneratedName\x12S\n\x12\x65xternal_resources\x18\x02 \x03(\x0b\x32$.flyteidl.event.ExternalResourceInfoR\x11\x65xternalResources\x12N\n\x12resource_pool_info\x18\x03 \x03(\x0b\x32 .flyteidl.event.ResourcePoolInfoR\x10resourcePoolInfo\x12+\n\x11plugin_identifier\x18\x04 \x01(\tR\x10pluginIdentifier\x12Z\n\x0einstance_class\x18\x10 \x01(\x0e\x32\x33.flyteidl.event.TaskExecutionMetadata.InstanceClassR\rinstanceClass\"/\n\rInstanceClass\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x00\x12\x11\n\rINTERRUPTIBLE\x10\x01\x42\xb0\x01\n\x12\x63om.flyteidl.eventB\nEventProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event\xa2\x02\x03\x46\x45X\xaa\x02\x0e\x46lyteidl.Event\xca\x02\x0e\x46lyteidl\\Event\xe2\x02\x1a\x46lyteidl\\Event\\GPBMetadata\xea\x02\x0f\x46lyteidl::Eventb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -29,6 +29,8 @@
 
   DESCRIPTOR._options = None
   DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.eventB\nEventProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event\242\002\003FEX\252\002\016Flyteidl.Event\312\002\016Flyteidl\\Event\342\002\032Flyteidl\\Event\\GPBMetadata\352\002\017Flyteidl::Event'
+  _TASKEXECUTIONEVENT.fields_by_name['reason']._options = None
+  _TASKEXECUTIONEVENT.fields_by_name['reason']._serialized_options = b'\030\001'
   _globals['_WORKFLOWEXECUTIONEVENT']._serialized_start=262
   _globals['_WORKFLOWEXECUTIONEVENT']._serialized_end=688
   _globals['_NODEEXECUTIONEVENT']._serialized_start=691
@@ -43,14 +45,16 @@
   _globals['_PARENTTASKEXECUTIONMETADATA']._serialized_end=2629
   _globals['_PARENTNODEEXECUTIONMETADATA']._serialized_start=2631
   _globals['_PARENTNODEEXECUTIONMETADATA']._serialized_end=2685
-  _globals['_TASKEXECUTIONEVENT']._serialized_start=2688
-  _globals['_TASKEXECUTIONEVENT']._serialized_end=3676
-  _globals['_EXTERNALRESOURCEINFO']._serialized_start=3679
-  _globals['_EXTERNALRESOURCEINFO']._serialized_end=3965
-  _globals['_RESOURCEPOOLINFO']._serialized_start=3967
-  _globals['_RESOURCEPOOLINFO']._serialized_end=4058
-  _globals['_TASKEXECUTIONMETADATA']._serialized_start=4061
-  _globals['_TASKEXECUTIONMETADATA']._serialized_end=4474
-  _globals['_TASKEXECUTIONMETADATA_INSTANCECLASS']._serialized_start=4427
-  _globals['_TASKEXECUTIONMETADATA_INSTANCECLASS']._serialized_end=4474
+  _globals['_EVENTREASON']._serialized_start=2687
+  _globals['_EVENTREASON']._serialized_end=2785
+  _globals['_TASKEXECUTIONEVENT']._serialized_start=2788
+  _globals['_TASKEXECUTIONEVENT']._serialized_end=3835
+  _globals['_EXTERNALRESOURCEINFO']._serialized_start=3838
+  _globals['_EXTERNALRESOURCEINFO']._serialized_end=4124
+  _globals['_RESOURCEPOOLINFO']._serialized_start=4126
+  _globals['_RESOURCEPOOLINFO']._serialized_end=4217
+  _globals['_TASKEXECUTIONMETADATA']._serialized_start=4220
+  _globals['_TASKEXECUTIONMETADATA']._serialized_end=4633
+  _globals['_TASKEXECUTIONMETADATA_INSTANCECLASS']._serialized_start=4586
+  _globals['_TASKEXECUTIONMETADATA_INSTANCECLASS']._serialized_end=4633
 # @@protoc_insertion_point(module_scope)
diff --git a/gen/pb_python/flyteidl/event/event_pb2.pyi b/gen/pb_python/flyteidl/event/event_pb2.pyi
index 540d98573..9a9837082 100644
--- a/gen/pb_python/flyteidl/event/event_pb2.pyi
+++ b/gen/pb_python/flyteidl/event/event_pb2.pyi
@@ -119,8 +119,16 @@ class ParentNodeExecutionMetadata(_message.Message):
     node_id: str
     def __init__(self, node_id: _Optional[str] = ...) -> None: ...
 
+class EventReason(_message.Message):
+    __slots__ = ["reason", "occurred_at"]
+    REASON_FIELD_NUMBER: _ClassVar[int]
+    OCCURRED_AT_FIELD_NUMBER: _ClassVar[int]
+    reason: str
+    occurred_at: _timestamp_pb2.Timestamp
+    def __init__(self, reason: _Optional[str] = ..., occurred_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ...) -> None: ...
+
 class TaskExecutionEvent(_message.Message):
-    __slots__ = ["task_id", "parent_node_execution_id", "retry_attempt", "phase", "producer_id", "logs", "occurred_at", "input_uri", "input_data", "output_uri", "error", "output_data", "custom_info", "phase_version", "reason", "task_type", "metadata", "event_version", "reported_at"]
+    __slots__ = ["task_id", "parent_node_execution_id", "retry_attempt", "phase", "producer_id", "logs", "occurred_at", "input_uri", "input_data", "output_uri", "error", "output_data", "custom_info", "phase_version", "reason", "reasons", "task_type", "metadata", "event_version", "reported_at"]
     TASK_ID_FIELD_NUMBER: _ClassVar[int]
     PARENT_NODE_EXECUTION_ID_FIELD_NUMBER: _ClassVar[int]
     RETRY_ATTEMPT_FIELD_NUMBER: _ClassVar[int]
@@ -136,6 +144,7 @@ class TaskExecutionEvent(_message.Message):
     CUSTOM_INFO_FIELD_NUMBER: _ClassVar[int]
     PHASE_VERSION_FIELD_NUMBER: _ClassVar[int]
     REASON_FIELD_NUMBER: _ClassVar[int]
+    REASONS_FIELD_NUMBER: _ClassVar[int]
     TASK_TYPE_FIELD_NUMBER: _ClassVar[int]
     METADATA_FIELD_NUMBER: _ClassVar[int]
     EVENT_VERSION_FIELD_NUMBER: _ClassVar[int]
@@ -155,11 +164,12 @@ class TaskExecutionEvent(_message.Message):
     custom_info: _struct_pb2.Struct
     phase_version: int
     reason: str
+    reasons: _containers.RepeatedCompositeFieldContainer[EventReason]
     task_type: str
     metadata: TaskExecutionMetadata
     event_version: int
     reported_at: _timestamp_pb2.Timestamp
-    def __init__(self, task_id: _Optional[_Union[_identifier_pb2.Identifier, _Mapping]] = ..., parent_node_execution_id: _Optional[_Union[_identifier_pb2.NodeExecutionIdentifier, _Mapping]] = ..., retry_attempt: _Optional[int] = ..., phase: _Optional[_Union[_execution_pb2.TaskExecution.Phase, str]] = ..., producer_id: _Optional[str] = ..., logs: _Optional[_Iterable[_Union[_execution_pb2.TaskLog, _Mapping]]] = ..., occurred_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., input_uri: _Optional[str] = ..., input_data: _Optional[_Union[_literals_pb2.LiteralMap, _Mapping]] = ..., output_uri: _Optional[str] = ..., error: _Optional[_Union[_execution_pb2.ExecutionError, _Mapping]] = ..., output_data: _Optional[_Union[_literals_pb2.LiteralMap, _Mapping]] = ..., custom_info: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., phase_version: _Optional[int] = ..., reason: _Optional[str] = ..., task_type: _Optional[str] = ..., metadata: _Optional[_Union[TaskExecutionMetadata, _Mapping]] = ..., event_version: _Optional[int] = ..., reported_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ...) -> None: ...
+    def __init__(self, task_id: _Optional[_Union[_identifier_pb2.Identifier, _Mapping]] = ..., parent_node_execution_id: _Optional[_Union[_identifier_pb2.NodeExecutionIdentifier, _Mapping]] = ..., retry_attempt: _Optional[int] = ..., phase: _Optional[_Union[_execution_pb2.TaskExecution.Phase, str]] = ..., producer_id: _Optional[str] = ..., logs: _Optional[_Iterable[_Union[_execution_pb2.TaskLog, _Mapping]]] = ..., occurred_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., input_uri: _Optional[str] = ..., input_data: _Optional[_Union[_literals_pb2.LiteralMap, _Mapping]] = ..., output_uri: _Optional[str] = ..., error: _Optional[_Union[_execution_pb2.ExecutionError, _Mapping]] = ..., output_data: _Optional[_Union[_literals_pb2.LiteralMap, _Mapping]] = ..., custom_info: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., phase_version: _Optional[int] = ..., reason: _Optional[str] = ..., reasons: _Optional[_Iterable[_Union[EventReason, _Mapping]]] = ..., task_type: _Optional[str] = ..., metadata: _Optional[_Union[TaskExecutionMetadata, _Mapping]] = ..., event_version: _Optional[int] = ..., reported_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ...) -> None: ...
 
 class ExternalResourceInfo(_message.Message):
     __slots__ = ["external_id", "index", "retry_attempt", "phase", "cache_status", "logs"]
diff --git a/gen/pb_python/flyteidl/service/flyteadmin/README.md b/gen/pb_python/flyteidl/service/flyteadmin/README.md
index 13bcadcc6..3f98e5376 100644
--- a/gen/pb_python/flyteidl/service/flyteadmin/README.md
+++ b/gen/pb_python/flyteidl/service/flyteadmin/README.md
@@ -357,6 +357,7 @@ Class | Method | HTTP request | Description
  - [CoreWorkflowNode](docs/CoreWorkflowNode.md)
  - [CoreWorkflowTemplate](docs/CoreWorkflowTemplate.md)
  - [DataLoadingConfigLiteralMapFormat](docs/DataLoadingConfigLiteralMapFormat.md)
+ - [EventEventReason](docs/EventEventReason.md)
  - [EventExternalResourceInfo](docs/EventExternalResourceInfo.md)
  - [EventNodeExecutionEvent](docs/EventNodeExecutionEvent.md)
  - [EventParentNodeExecutionMetadata](docs/EventParentNodeExecutionMetadata.md)
diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py
index 02d7600b1..5db75c705 100644
--- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py
+++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py
@@ -248,6 +248,7 @@
 from flyteadmin.models.core_workflow_node import CoreWorkflowNode
 from flyteadmin.models.core_workflow_template import CoreWorkflowTemplate
 from flyteadmin.models.data_loading_config_literal_map_format import DataLoadingConfigLiteralMapFormat
+from flyteadmin.models.event_event_reason import EventEventReason
 from flyteadmin.models.event_external_resource_info import EventExternalResourceInfo
 from flyteadmin.models.event_node_execution_event import EventNodeExecutionEvent
 from flyteadmin.models.event_parent_node_execution_metadata import EventParentNodeExecutionMetadata
diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py
index 371e37b23..8ff7d2024 100644
--- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py
+++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py
@@ -241,6 +241,7 @@
 from flyteadmin.models.core_workflow_node import CoreWorkflowNode
 from flyteadmin.models.core_workflow_template import CoreWorkflowTemplate
 from flyteadmin.models.data_loading_config_literal_map_format import DataLoadingConfigLiteralMapFormat
+from flyteadmin.models.event_event_reason import EventEventReason
 from flyteadmin.models.event_external_resource_info import EventExternalResourceInfo
 from flyteadmin.models.event_node_execution_event import EventNodeExecutionEvent
 from flyteadmin.models.event_parent_node_execution_metadata import EventParentNodeExecutionMetadata
diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/event_event_reason.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/event_event_reason.py
new file mode 100644
index 000000000..783e0f171
--- /dev/null
+++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/event_event_reason.py
@@ -0,0 +1,141 @@
+# coding: utf-8
+
+"""
+    flyteidl/service/admin.proto
+
+    No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)  # noqa: E501
+
+    OpenAPI spec version: version not set
+    
+    Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+import pprint
+import re  # noqa: F401
+
+import six
+
+
+class EventEventReason(object):
+    """NOTE: This class is auto generated by the swagger code generator program.
+
+    Do not edit the class manually.
+    """
+
+    """
+    Attributes:
+      swagger_types (dict): The key is attribute name
+                            and the value is attribute type.
+      attribute_map (dict): The key is attribute name
+                            and the value is json key in definition.
+    """
+    swagger_types = {
+        'reason': 'str',
+        'occurred_at': 'datetime'
+    }
+
+    attribute_map = {
+        'reason': 'reason',
+        'occurred_at': 'occurred_at'
+    }
+
+    def __init__(self, reason=None, occurred_at=None):  # noqa: E501
+        """EventEventReason - a model defined in Swagger"""  # noqa: E501
+
+        self._reason = None
+        self._occurred_at = None
+        self.discriminator = None
+
+        if reason is not None:
+            self.reason = reason
+        if occurred_at is not None:
+            self.occurred_at = occurred_at
+
+    @property
+    def reason(self):
+        """Gets the reason of this EventEventReason.  # noqa: E501
+
+
+        :return: The reason of this EventEventReason.  # noqa: E501
+        :rtype: str
+        """
+        return self._reason
+
+    @reason.setter
+    def reason(self, reason):
+        """Sets the reason of this EventEventReason.
+
+
+        :param reason: The reason of this EventEventReason.  # noqa: E501
+        :type: str
+        """
+
+        self._reason = reason
+
+    @property
+    def occurred_at(self):
+        """Gets the occurred_at of this EventEventReason.  # noqa: E501
+
+
+        :return: The occurred_at of this EventEventReason.  # noqa: E501
+        :rtype: datetime
+        """
+        return self._occurred_at
+
+    @occurred_at.setter
+    def occurred_at(self, occurred_at):
+        """Sets the occurred_at of this EventEventReason.
+
+
+        :param occurred_at: The occurred_at of this EventEventReason.  # noqa: E501
+        :type: datetime
+        """
+
+        self._occurred_at = occurred_at
+
+    def to_dict(self):
+        """Returns the model properties as a dict"""
+        result = {}
+
+        for attr, _ in six.iteritems(self.swagger_types):
+            value = getattr(self, attr)
+            if isinstance(value, list):
+                result[attr] = list(map(
+                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
+                    value
+                ))
+            elif hasattr(value, "to_dict"):
+                result[attr] = value.to_dict()
+            elif isinstance(value, dict):
+                result[attr] = dict(map(
+                    lambda item: (item[0], item[1].to_dict())
+                    if hasattr(item[1], "to_dict") else item,
+                    value.items()
+                ))
+            else:
+                result[attr] = value
+        if issubclass(EventEventReason, dict):
+            for key, value in self.items():
+                result[key] = value
+
+        return result
+
+    def to_str(self):
+        """Returns the string representation of the model"""
+        return pprint.pformat(self.to_dict())
+
+    def __repr__(self):
+        """For `print` and `pprint`"""
+        return self.to_str()
+
+    def __eq__(self, other):
+        """Returns true if both objects are equal"""
+        if not isinstance(other, EventEventReason):
+            return False
+
+        return self.__dict__ == other.__dict__
+
+    def __ne__(self, other):
+        """Returns true if both objects are not equal"""
+        return not self == other
diff --git a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/event_task_execution_event.py b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/event_task_execution_event.py
index d80680d7d..b3ba4e284 100644
--- a/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/event_task_execution_event.py
+++ b/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/event_task_execution_event.py
@@ -22,6 +22,7 @@
 from flyteadmin.models.core_node_execution_identifier import CoreNodeExecutionIdentifier  # noqa: F401,E501
 from flyteadmin.models.core_task_execution_phase import CoreTaskExecutionPhase  # noqa: F401,E501
 from flyteadmin.models.core_task_log import CoreTaskLog  # noqa: F401,E501
+from flyteadmin.models.event_event_reason import EventEventReason  # noqa: F401,E501
 from flyteadmin.models.flyteidlevent_task_execution_metadata import FlyteidleventTaskExecutionMetadata  # noqa: F401,E501
 from flyteadmin.models.protobuf_struct import ProtobufStruct  # noqa: F401,E501
 
@@ -55,6 +56,7 @@ class EventTaskExecutionEvent(object):
         'custom_info': 'ProtobufStruct',
         'phase_version': 'int',
         'reason': 'str',
+        'reasons': 'list[EventEventReason]',
         'task_type': 'str',
         'metadata': 'FlyteidleventTaskExecutionMetadata',
         'event_version': 'int',
@@ -77,13 +79,14 @@ class EventTaskExecutionEvent(object):
         'custom_info': 'custom_info',
         'phase_version': 'phase_version',
         'reason': 'reason',
+        'reasons': 'reasons',
         'task_type': 'task_type',
         'metadata': 'metadata',
         'event_version': 'event_version',
         'reported_at': 'reported_at'
     }
 
-    def __init__(self, task_id=None, parent_node_execution_id=None, retry_attempt=None, phase=None, producer_id=None, logs=None, occurred_at=None, input_uri=None, input_data=None, output_uri=None, error=None, output_data=None, custom_info=None, phase_version=None, reason=None, task_type=None, metadata=None, event_version=None, reported_at=None):  # noqa: E501
+    def __init__(self, task_id=None, parent_node_execution_id=None, retry_attempt=None, phase=None, producer_id=None, logs=None, occurred_at=None, input_uri=None, input_data=None, output_uri=None, error=None, output_data=None, custom_info=None, phase_version=None, reason=None, reasons=None, task_type=None, metadata=None, event_version=None, reported_at=None):  # noqa: E501
         """EventTaskExecutionEvent - a model defined in Swagger"""  # noqa: E501
 
         self._task_id = None
@@ -101,6 +104,7 @@ def __init__(self, task_id=None, parent_node_execution_id=None, retry_attempt=No
         self._custom_info = None
         self._phase_version = None
         self._reason = None
+        self._reasons = None
         self._task_type = None
         self._metadata = None
         self._event_version = None
@@ -137,6 +141,8 @@ def __init__(self, task_id=None, parent_node_execution_id=None, retry_attempt=No
             self.phase_version = phase_version
         if reason is not None:
             self.reason = reason
+        if reasons is not None:
+            self.reasons = reasons
         if task_type is not None:
             self.task_type = task_type
         if metadata is not None:
@@ -460,7 +466,7 @@ def phase_version(self, phase_version):
     def reason(self):
         """Gets the reason of this EventTaskExecutionEvent.  # noqa: E501
 
-        An optional explanation for the phase transition.  # noqa: E501
+        An optional explanation for the phase transition. Deprecated: Use reasons instead.  # noqa: E501
 
         :return: The reason of this EventTaskExecutionEvent.  # noqa: E501
         :rtype: str
@@ -471,7 +477,7 @@ def reason(self):
     def reason(self, reason):
         """Sets the reason of this EventTaskExecutionEvent.
 
-        An optional explanation for the phase transition.  # noqa: E501
+        An optional explanation for the phase transition. Deprecated: Use reasons instead.  # noqa: E501
 
         :param reason: The reason of this EventTaskExecutionEvent.  # noqa: E501
         :type: str
@@ -479,6 +485,29 @@ def reason(self, reason):
 
         self._reason = reason
 
+    @property
+    def reasons(self):
+        """Gets the reasons of this EventTaskExecutionEvent.  # noqa: E501
+
+        An optional list of explanations for the phase transition.  # noqa: E501
+
+        :return: The reasons of this EventTaskExecutionEvent.  # noqa: E501
+        :rtype: list[EventEventReason]
+        """
+        return self._reasons
+
+    @reasons.setter
+    def reasons(self, reasons):
+        """Sets the reasons of this EventTaskExecutionEvent.
+
+        An optional list of explanations for the phase transition.  # noqa: E501
+
+        :param reasons: The reasons of this EventTaskExecutionEvent.  # noqa: E501
+        :type: list[EventEventReason]
+        """
+
+        self._reasons = reasons
+
     @property
     def task_type(self):
         """Gets the task_type of this EventTaskExecutionEvent.  # noqa: E501
diff --git a/gen/pb_python/flyteidl/service/flyteadmin/test/test_event_event_reason.py b/gen/pb_python/flyteidl/service/flyteadmin/test/test_event_event_reason.py
new file mode 100644
index 000000000..074be99c2
--- /dev/null
+++ b/gen/pb_python/flyteidl/service/flyteadmin/test/test_event_event_reason.py
@@ -0,0 +1,40 @@
+# coding: utf-8
+
+"""
+    flyteidl/service/admin.proto
+
+    No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)  # noqa: E501
+
+    OpenAPI spec version: version not set
+    
+    Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import flyteadmin
+from flyteadmin.models.event_event_reason import EventEventReason  # noqa: E501
+from flyteadmin.rest import ApiException
+
+
+class TestEventEventReason(unittest.TestCase):
+    """EventEventReason unit test stubs"""
+
+    def setUp(self):
+        pass
+
+    def tearDown(self):
+        pass
+
+    def testEventEventReason(self):
+        """Test EventEventReason"""
+        # FIXME: construct object with mandatory attributes with example values
+        # model = flyteadmin.models.event_event_reason.EventEventReason()  # noqa: E501
+        pass
+
+
+if __name__ == '__main__':
+    unittest.main()
diff --git a/gen/pb_rust/flyteidl.event.rs b/gen/pb_rust/flyteidl.event.rs
index 879decf0a..f55ea618b 100644
--- a/gen/pb_rust/flyteidl.event.rs
+++ b/gen/pb_rust/flyteidl.event.rs
@@ -183,6 +183,16 @@ pub struct ParentNodeExecutionMetadata {
     #[prost(string, tag="1")]
     pub node_id: ::prost::alloc::string::String,
 }
+#[allow(clippy::derive_partial_eq_without_eq)]
+#[derive(Clone, PartialEq, ::prost::Message)]
+pub struct EventReason {
+    /// An explanation for this event
+    #[prost(string, tag="1")]
+    pub reason: ::prost::alloc::string::String,
+    /// The time this reason occurred
+    #[prost(message, optional, tag="2")]
+    pub occurred_at: ::core::option::Option<::prost_types::Timestamp>,
+}
 /// Plugin specific execution event information. For tasks like Python, Hive, Spark, DynamicJob.
 #[allow(clippy::derive_partial_eq_without_eq)]
 #[derive(Clone, PartialEq, ::prost::Message)]
@@ -220,8 +230,13 @@ pub struct TaskExecutionEvent {
     #[prost(uint32, tag="12")]
     pub phase_version: u32,
     /// An optional explanation for the phase transition.
+    /// Deprecated: Use reasons instead.
+    #[deprecated]
     #[prost(string, tag="13")]
     pub reason: ::prost::alloc::string::String,
+    /// An optional list of explanations for the phase transition.
+    #[prost(message, repeated, tag="21")]
+    pub reasons: ::prost::alloc::vec::Vec,
     /// A predefined yet extensible Task type identifier. If the task definition is already registered in flyte admin
     /// this type will be identical, but not all task executions necessarily use pre-registered definitions and this
     /// type is useful to render the task in the UI, filter task executions, etc.
diff --git a/protos/flyteidl/event/event.proto b/protos/flyteidl/event/event.proto
index 71fa0799e..934c9f944 100644
--- a/protos/flyteidl/event/event.proto
+++ b/protos/flyteidl/event/event.proto
@@ -154,6 +154,14 @@ message ParentNodeExecutionMetadata {
     string node_id = 1;
 }
 
+message EventReason {
+    // An explanation for this event
+    string reason = 1;
+
+    // The time this reason occurred
+    google.protobuf.Timestamp occurred_at = 2;
+}
+
 // Plugin specific execution event information. For tasks like Python, Hive, Spark, DynamicJob.
 message TaskExecutionEvent {
     // ID of the task. In combination with the retryAttempt this will indicate
@@ -180,7 +188,6 @@ message TaskExecutionEvent {
     // by the executor of the task.
     google.protobuf.Timestamp occurred_at = 7;
 
-
     oneof input_value {
       // URI of the input file, it encodes all the information
       // including Cloud source provider. ie., s3://...
@@ -211,8 +218,11 @@ message TaskExecutionEvent {
     uint32 phase_version = 12;
 
     // An optional explanation for the phase transition.
-    string reason = 13;
+    // Deprecated: Use reasons instead.
+    string reason = 13 [deprecated = true];
 
+    // An optional list of explanations for the phase transition.
+    repeated EventReason reasons = 21;
 
     // A predefined yet extensible Task type identifier. If the task definition is already registered in flyte admin
     // this type will be identical, but not all task executions necessarily use pre-registered definitions and this