-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpoetry.lock
7757 lines (6991 loc) · 408 KB
/
poetry.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand.
[[package]]
name = "altgraph"
version = "0.17.3"
description = "Python graph (network) package"
category = "main"
optional = false
python-versions = "*"
files = [
{file = "altgraph-0.17.3-py2.py3-none-any.whl", hash = "sha256:c8ac1ca6772207179ed8003ce7687757c04b0b71536f81e2ac5755c6226458fe"},
{file = "altgraph-0.17.3.tar.gz", hash = "sha256:ad33358114df7c9416cdb8fa1eaa5852166c505118717021c6a8c7c7abbd03dd"},
]
[[package]]
name = "ansicon"
version = "1.89.0"
description = "Python wrapper for loading Jason Hood's ANSICON"
category = "main"
optional = false
python-versions = "*"
files = [
{file = "ansicon-1.89.0-py2.py3-none-any.whl", hash = "sha256:f1def52d17f65c2c9682cf8370c03f541f410c1752d6a14029f97318e4b9dfec"},
{file = "ansicon-1.89.0.tar.gz", hash = "sha256:e4d039def5768a47e4afec8e89e83ec3ae5a26bf00ad851f914d1240b444d2b1"},
]
[[package]]
name = "appnope"
version = "0.1.3"
description = "Disable App Nap on macOS >= 10.9"
category = "dev"
optional = false
python-versions = "*"
files = [
{file = "appnope-0.1.3-py2.py3-none-any.whl", hash = "sha256:265a455292d0bd8a72453494fa24df5a11eb18373a60c7c0430889f22548605e"},
{file = "appnope-0.1.3.tar.gz", hash = "sha256:02bd91c4de869fbb1e1c50aafc4098827a7a54ab2f39d9dcba6c9547ed920e24"},
]
[[package]]
name = "asttokens"
version = "2.2.1"
description = "Annotate AST trees with source code positions"
category = "dev"
optional = false
python-versions = "*"
files = [
{file = "asttokens-2.2.1-py2.py3-none-any.whl", hash = "sha256:6b0ac9e93fb0335014d382b8fa9b3afa7df546984258005da0b9e7095b3deb1c"},
{file = "asttokens-2.2.1.tar.gz", hash = "sha256:4622110b2a6f30b77e1473affaa97e711bc2f07d3f10848420ff1898edbe94f3"},
]
[package.dependencies]
six = "*"
[package.extras]
test = ["astroid", "pytest"]
[[package]]
name = "attrdict"
version = "2.0.1"
description = "A dict with attribute-style access"
category = "main"
optional = false
python-versions = "*"
files = [
{file = "attrdict-2.0.1-py2.py3-none-any.whl", hash = "sha256:9432e3498c74ff7e1b20b3d93b45d766b71cbffa90923496f82c4ae38b92be34"},
{file = "attrdict-2.0.1.tar.gz", hash = "sha256:35c90698b55c683946091177177a9e9c0713a0860f0e049febd72649ccd77b70"},
]
[package.dependencies]
six = "*"
[[package]]
name = "attrs"
version = "23.1.0"
description = "Classes Without Boilerplate"
category = "dev"
optional = false
python-versions = ">=3.7"
files = [
{file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"},
{file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"},
]
[package.extras]
cov = ["attrs[tests]", "coverage[toml] (>=5.3)"]
dev = ["attrs[docs,tests]", "pre-commit"]
docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"]
tests = ["attrs[tests-no-zope]", "zope-interface"]
tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
[[package]]
name = "aws-sam-translator"
version = "1.67.0"
description = "AWS SAM Translator is a library that transform SAM templates into AWS CloudFormation templates"
category = "dev"
optional = false
python-versions = ">=3.7, <=4.0, !=4.0"
files = [
{file = "aws-sam-translator-1.67.0.tar.gz", hash = "sha256:207a216bec1ac3323b58e15ed7231c0f476b1a1a10892c9a6b22784041d32506"},
{file = "aws_sam_translator-1.67.0-py3-none-any.whl", hash = "sha256:291fed2f08bad7f38368f4ee8609fce64dfe5c6b1872bb24b93cda1880bc9f7d"},
]
[package.dependencies]
boto3 = ">=1.19.5,<2.0.0"
jsonschema = ">=3.2,<5"
pydantic = ">=1.8,<2.0"
typing-extensions = ">=4.4,<5"
[package.extras]
dev = ["black (==23.1.0)", "boto3 (>=1.23,<2)", "boto3-stubs[appconfig,serverlessrepo] (>=1.19.5,<2.0.0)", "coverage (>=5.3,<8)", "dateparser (>=1.1,<2.0)", "importlib-metadata", "mypy (>=1.1.0,<1.2.0)", "parameterized (>=0.7,<1.0)", "pytest (>=6.2,<8)", "pytest-cov (>=2.10,<5)", "pytest-env (>=0.6,<1)", "pytest-rerunfailures (>=9.1,<12)", "pytest-xdist (>=2.5,<4)", "pyyaml (>=6.0,<7.0)", "requests (>=2.28,<3.0)", "ruamel.yaml (==0.17.21)", "ruff (==0.0.261)", "tenacity (>=8.0,<9.0)", "types-PyYAML (>=6.0,<7.0)", "types-jsonschema (>=3.2,<4.0)"]
[[package]]
name = "aws-xray-sdk"
version = "2.12.0"
description = "The AWS X-Ray SDK for Python (the SDK) enables Python developers to record and emit information from within their applications to the AWS X-Ray service."
category = "dev"
optional = false
python-versions = "*"
files = [
{file = "aws-xray-sdk-2.12.0.tar.gz", hash = "sha256:295afc237073a80956d7d4f27c31830edcb9a8ccca9ef8aa44990badef15e5b7"},
{file = "aws_xray_sdk-2.12.0-py2.py3-none-any.whl", hash = "sha256:30886e23cc2daadc1c06a76f25b071205e84848419d1ddf097b62a565e156542"},
]
[package.dependencies]
botocore = ">=1.11.3"
wrapt = "*"
[[package]]
name = "backcall"
version = "0.2.0"
description = "Specifications for callback functions passed in to an API"
category = "dev"
optional = false
python-versions = "*"
files = [
{file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"},
{file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"},
]
[[package]]
name = "blessed"
version = "1.20.0"
description = "Easy, practical library for making terminal apps, by providing an elegant, well-documented interface to Colors, Keyboard input, and screen Positioning capabilities."
category = "main"
optional = false
python-versions = ">=2.7"
files = [
{file = "blessed-1.20.0-py2.py3-none-any.whl", hash = "sha256:0c542922586a265e699188e52d5f5ac5ec0dd517e5a1041d90d2bbf23f906058"},
{file = "blessed-1.20.0.tar.gz", hash = "sha256:2cdd67f8746e048f00df47a2880f4d6acbcdb399031b604e34ba8f71d5787680"},
]
[package.dependencies]
jinxed = {version = ">=1.1.0", markers = "platform_system == \"Windows\""}
six = ">=1.9.0"
wcwidth = ">=0.1.4"
[[package]]
name = "blinker"
version = "1.6.2"
description = "Fast, simple object-to-object and broadcast signaling"
category = "dev"
optional = false
python-versions = ">=3.7"
files = [
{file = "blinker-1.6.2-py3-none-any.whl", hash = "sha256:c3d739772abb7bc2860abf5f2ec284223d9ad5c76da018234f6f50d6f31ab1f0"},
{file = "blinker-1.6.2.tar.gz", hash = "sha256:4afd3de66ef3a9f8067559fb7a1cbe555c17dcbe15971b05d1b625c3e7abe213"},
]
[[package]]
name = "boto3"
version = "1.26.137"
description = "The AWS SDK for Python"
category = "main"
optional = false
python-versions = ">= 3.7"
files = [
{file = "boto3-1.26.137-py3-none-any.whl", hash = "sha256:b6d729beec0462ac1ae4a83a0fb04a62061a9f1f406d3151b45345daa9d1a5bc"},
{file = "boto3-1.26.137.tar.gz", hash = "sha256:cac699fc46b43c10ca12aa6ea087c0b979613c5e3570aea11d86891652cb581e"},
]
[package.dependencies]
botocore = ">=1.29.137,<1.30.0"
jmespath = ">=0.7.1,<2.0.0"
s3transfer = ">=0.6.0,<0.7.0"
[package.extras]
crt = ["botocore[crt] (>=1.21.0,<2.0a0)"]
[[package]]
name = "boto3-stubs-lite"
version = "1.26.137"
description = "Type annotations for boto3 1.26.137 generated with mypy-boto3-builder 7.14.5"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "boto3-stubs-lite-1.26.137.tar.gz", hash = "sha256:205e33fbf9bc09bab4c1b6e49530d2fa7602428fb7b3ea174288b00baf62d36d"},
{file = "boto3_stubs_lite-1.26.137-py3-none-any.whl", hash = "sha256:908b58f06a5dc5eb456216d2b8cba59dbc3dfb1eceb2d978a6ae5815d08fd78b"},
]
[package.dependencies]
botocore-stubs = "*"
mypy-boto3-accessanalyzer = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-account = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-acm = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-acm-pca = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-alexaforbusiness = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-amp = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-amplify = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-amplifybackend = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-amplifyuibuilder = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-apigateway = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-apigatewaymanagementapi = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-apigatewayv2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appconfig = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appconfigdata = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appflow = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appintegrations = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-application-autoscaling = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-application-insights = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-applicationcostprofiler = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appmesh = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-apprunner = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appstream = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appsync = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-arc-zonal-shift = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-athena = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-auditmanager = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-autoscaling = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-autoscaling-plans = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-backup = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-backup-gateway = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-backupstorage = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-batch = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-billingconductor = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-braket = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-budgets = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ce = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-chime = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-chime-sdk-identity = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-chime-sdk-media-pipelines = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-chime-sdk-meetings = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-chime-sdk-messaging = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-chime-sdk-voice = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cleanrooms = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloud9 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudcontrol = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-clouddirectory = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudformation = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudfront = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudhsm = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudhsmv2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudsearch = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudsearchdomain = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudtrail = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudtrail-data = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudwatch = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codeartifact = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codebuild = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codecatalyst = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codecommit = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codedeploy = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codeguru-reviewer = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codeguruprofiler = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codepipeline = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codestar = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codestar-connections = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codestar-notifications = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cognito-identity = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cognito-idp = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cognito-sync = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-comprehend = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-comprehendmedical = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-compute-optimizer = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-config = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-connect = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-connect-contact-lens = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-connectcampaigns = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-connectcases = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-connectparticipant = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-controltower = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cur = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-customer-profiles = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-databrew = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-dataexchange = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-datapipeline = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-datasync = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-dax = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-detective = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-devicefarm = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-devops-guru = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-directconnect = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-discovery = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-dlm = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-dms = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-docdb = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-docdb-elastic = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-drs = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ds = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-dynamodb = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-dynamodbstreams = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ebs = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ec2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ec2-instance-connect = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ecr = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ecr-public = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ecs = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-efs = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-eks = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-elastic-inference = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-elasticache = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-elasticbeanstalk = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-elastictranscoder = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-elb = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-elbv2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-emr = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-emr-containers = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-emr-serverless = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-es = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-events = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-evidently = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-finspace = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-finspace-data = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-firehose = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-fis = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-fms = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-forecast = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-forecastquery = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-frauddetector = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-fsx = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-gamelift = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-gamesparks = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-glacier = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-globalaccelerator = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-glue = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-grafana = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-greengrass = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-greengrassv2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-groundstation = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-guardduty = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-health = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-healthlake = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-honeycode = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iam = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-identitystore = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-imagebuilder = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-importexport = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-inspector = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-inspector2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-internetmonitor = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iot = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iot-data = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iot-jobs-data = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iot-roborunner = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iot1click-devices = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iot1click-projects = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotanalytics = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotdeviceadvisor = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotevents = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotevents-data = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotfleethub = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotfleetwise = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotsecuretunneling = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotsitewise = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotthingsgraph = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iottwinmaker = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotwireless = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ivs = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ivs-realtime = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ivschat = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kafka = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kafkaconnect = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kendra = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kendra-ranking = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-keyspaces = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesis = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesis-video-archived-media = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesis-video-media = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesis-video-signaling = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesis-video-webrtc-storage = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesisanalytics = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesisanalyticsv2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesisvideo = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kms = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lakeformation = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lambda = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lex-models = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lex-runtime = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lexv2-models = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lexv2-runtime = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-license-manager = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-license-manager-linux-subscriptions = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-license-manager-user-subscriptions = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lightsail = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-location = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-logs = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lookoutequipment = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lookoutmetrics = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lookoutvision = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-m2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-machinelearning = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-macie = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-macie2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-managedblockchain = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-marketplace-catalog = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-marketplace-entitlement = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-marketplacecommerceanalytics = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediaconnect = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediaconvert = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-medialive = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediapackage = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediapackage-vod = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediapackagev2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediastore = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediastore-data = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediatailor = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-memorydb = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-meteringmarketplace = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mgh = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mgn = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-migration-hub-refactor-spaces = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-migrationhub-config = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-migrationhuborchestrator = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-migrationhubstrategy = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mobile = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mq = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mturk = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mwaa = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-neptune = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-network-firewall = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-networkmanager = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-nimble = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-oam = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-omics = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-opensearch = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-opensearchserverless = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-opsworks = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-opsworkscm = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-organizations = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-osis = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-outposts = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-panorama = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-personalize = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-personalize-events = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-personalize-runtime = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pi = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pinpoint = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pinpoint-email = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pinpoint-sms-voice = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pinpoint-sms-voice-v2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pipes = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-polly = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pricing = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-privatenetworks = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-proton = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-qldb = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-qldb-session = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-quicksight = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ram = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-rbin = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-rds = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-rds-data = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-redshift = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-redshift-data = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-redshift-serverless = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-rekognition = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-resiliencehub = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-resource-explorer-2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-resource-groups = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-resourcegroupstaggingapi = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-robomaker = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-rolesanywhere = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-route53 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-route53-recovery-cluster = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-route53-recovery-control-config = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-route53-recovery-readiness = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-route53domains = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-route53resolver = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-rum = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-s3 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-s3control = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-s3outposts = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker-a2i-runtime = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker-edge = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker-featurestore-runtime = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker-geospatial = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker-metrics = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker-runtime = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-savingsplans = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-scheduler = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-schemas = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sdb = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-secretsmanager = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-securityhub = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-securitylake = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-serverlessrepo = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-service-quotas = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-servicecatalog = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-servicecatalog-appregistry = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-servicediscovery = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ses = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sesv2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-shield = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-signer = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-simspaceweaver = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sms = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sms-voice = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-snow-device-management = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-snowball = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sns = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sqs = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ssm = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ssm-contacts = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ssm-incidents = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ssm-sap = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sso = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sso-admin = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sso-oidc = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-stepfunctions = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-storagegateway = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sts = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-support = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-support-app = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-swf = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-synthetics = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-textract = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-timestream-query = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-timestream-write = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-tnb = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-transcribe = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-transfer = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-translate = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-voice-id = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-vpc-lattice = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-waf = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-waf-regional = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-wafv2 = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-wellarchitected = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-wisdom = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-workdocs = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-worklink = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-workmail = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-workmailmessageflow = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-workspaces = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-workspaces-web = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-xray = {version = ">=1.26.0,<1.27.0", optional = true, markers = "extra == \"all\""}
types-s3transfer = "*"
[package.extras]
accessanalyzer = ["mypy-boto3-accessanalyzer (>=1.26.0,<1.27.0)"]
account = ["mypy-boto3-account (>=1.26.0,<1.27.0)"]
acm = ["mypy-boto3-acm (>=1.26.0,<1.27.0)"]
acm-pca = ["mypy-boto3-acm-pca (>=1.26.0,<1.27.0)"]
alexaforbusiness = ["mypy-boto3-alexaforbusiness (>=1.26.0,<1.27.0)"]
all = ["mypy-boto3-accessanalyzer (>=1.26.0,<1.27.0)", "mypy-boto3-account (>=1.26.0,<1.27.0)", "mypy-boto3-acm (>=1.26.0,<1.27.0)", "mypy-boto3-acm-pca (>=1.26.0,<1.27.0)", "mypy-boto3-alexaforbusiness (>=1.26.0,<1.27.0)", "mypy-boto3-amp (>=1.26.0,<1.27.0)", "mypy-boto3-amplify (>=1.26.0,<1.27.0)", "mypy-boto3-amplifybackend (>=1.26.0,<1.27.0)", "mypy-boto3-amplifyuibuilder (>=1.26.0,<1.27.0)", "mypy-boto3-apigateway (>=1.26.0,<1.27.0)", "mypy-boto3-apigatewaymanagementapi (>=1.26.0,<1.27.0)", "mypy-boto3-apigatewayv2 (>=1.26.0,<1.27.0)", "mypy-boto3-appconfig (>=1.26.0,<1.27.0)", "mypy-boto3-appconfigdata (>=1.26.0,<1.27.0)", "mypy-boto3-appflow (>=1.26.0,<1.27.0)", "mypy-boto3-appintegrations (>=1.26.0,<1.27.0)", "mypy-boto3-application-autoscaling (>=1.26.0,<1.27.0)", "mypy-boto3-application-insights (>=1.26.0,<1.27.0)", "mypy-boto3-applicationcostprofiler (>=1.26.0,<1.27.0)", "mypy-boto3-appmesh (>=1.26.0,<1.27.0)", "mypy-boto3-apprunner (>=1.26.0,<1.27.0)", "mypy-boto3-appstream (>=1.26.0,<1.27.0)", "mypy-boto3-appsync (>=1.26.0,<1.27.0)", "mypy-boto3-arc-zonal-shift (>=1.26.0,<1.27.0)", "mypy-boto3-athena (>=1.26.0,<1.27.0)", "mypy-boto3-auditmanager (>=1.26.0,<1.27.0)", "mypy-boto3-autoscaling (>=1.26.0,<1.27.0)", "mypy-boto3-autoscaling-plans (>=1.26.0,<1.27.0)", "mypy-boto3-backup (>=1.26.0,<1.27.0)", "mypy-boto3-backup-gateway (>=1.26.0,<1.27.0)", "mypy-boto3-backupstorage (>=1.26.0,<1.27.0)", "mypy-boto3-batch (>=1.26.0,<1.27.0)", "mypy-boto3-billingconductor (>=1.26.0,<1.27.0)", "mypy-boto3-braket (>=1.26.0,<1.27.0)", "mypy-boto3-budgets (>=1.26.0,<1.27.0)", "mypy-boto3-ce (>=1.26.0,<1.27.0)", "mypy-boto3-chime (>=1.26.0,<1.27.0)", "mypy-boto3-chime-sdk-identity (>=1.26.0,<1.27.0)", "mypy-boto3-chime-sdk-media-pipelines (>=1.26.0,<1.27.0)", "mypy-boto3-chime-sdk-meetings (>=1.26.0,<1.27.0)", "mypy-boto3-chime-sdk-messaging (>=1.26.0,<1.27.0)", "mypy-boto3-chime-sdk-voice (>=1.26.0,<1.27.0)", "mypy-boto3-cleanrooms (>=1.26.0,<1.27.0)", "mypy-boto3-cloud9 (>=1.26.0,<1.27.0)", "mypy-boto3-cloudcontrol (>=1.26.0,<1.27.0)", "mypy-boto3-clouddirectory (>=1.26.0,<1.27.0)", "mypy-boto3-cloudformation (>=1.26.0,<1.27.0)", "mypy-boto3-cloudfront (>=1.26.0,<1.27.0)", "mypy-boto3-cloudhsm (>=1.26.0,<1.27.0)", "mypy-boto3-cloudhsmv2 (>=1.26.0,<1.27.0)", "mypy-boto3-cloudsearch (>=1.26.0,<1.27.0)", "mypy-boto3-cloudsearchdomain (>=1.26.0,<1.27.0)", "mypy-boto3-cloudtrail (>=1.26.0,<1.27.0)", "mypy-boto3-cloudtrail-data (>=1.26.0,<1.27.0)", "mypy-boto3-cloudwatch (>=1.26.0,<1.27.0)", "mypy-boto3-codeartifact (>=1.26.0,<1.27.0)", "mypy-boto3-codebuild (>=1.26.0,<1.27.0)", "mypy-boto3-codecatalyst (>=1.26.0,<1.27.0)", "mypy-boto3-codecommit (>=1.26.0,<1.27.0)", "mypy-boto3-codedeploy (>=1.26.0,<1.27.0)", "mypy-boto3-codeguru-reviewer (>=1.26.0,<1.27.0)", "mypy-boto3-codeguruprofiler (>=1.26.0,<1.27.0)", "mypy-boto3-codepipeline (>=1.26.0,<1.27.0)", "mypy-boto3-codestar (>=1.26.0,<1.27.0)", "mypy-boto3-codestar-connections (>=1.26.0,<1.27.0)", "mypy-boto3-codestar-notifications (>=1.26.0,<1.27.0)", "mypy-boto3-cognito-identity (>=1.26.0,<1.27.0)", "mypy-boto3-cognito-idp (>=1.26.0,<1.27.0)", "mypy-boto3-cognito-sync (>=1.26.0,<1.27.0)", "mypy-boto3-comprehend (>=1.26.0,<1.27.0)", "mypy-boto3-comprehendmedical (>=1.26.0,<1.27.0)", "mypy-boto3-compute-optimizer (>=1.26.0,<1.27.0)", "mypy-boto3-config (>=1.26.0,<1.27.0)", "mypy-boto3-connect (>=1.26.0,<1.27.0)", "mypy-boto3-connect-contact-lens (>=1.26.0,<1.27.0)", "mypy-boto3-connectcampaigns (>=1.26.0,<1.27.0)", "mypy-boto3-connectcases (>=1.26.0,<1.27.0)", "mypy-boto3-connectparticipant (>=1.26.0,<1.27.0)", "mypy-boto3-controltower (>=1.26.0,<1.27.0)", "mypy-boto3-cur (>=1.26.0,<1.27.0)", "mypy-boto3-customer-profiles (>=1.26.0,<1.27.0)", "mypy-boto3-databrew (>=1.26.0,<1.27.0)", "mypy-boto3-dataexchange (>=1.26.0,<1.27.0)", "mypy-boto3-datapipeline (>=1.26.0,<1.27.0)", "mypy-boto3-datasync (>=1.26.0,<1.27.0)", "mypy-boto3-dax (>=1.26.0,<1.27.0)", "mypy-boto3-detective (>=1.26.0,<1.27.0)", "mypy-boto3-devicefarm (>=1.26.0,<1.27.0)", "mypy-boto3-devops-guru (>=1.26.0,<1.27.0)", "mypy-boto3-directconnect (>=1.26.0,<1.27.0)", "mypy-boto3-discovery (>=1.26.0,<1.27.0)", "mypy-boto3-dlm (>=1.26.0,<1.27.0)", "mypy-boto3-dms (>=1.26.0,<1.27.0)", "mypy-boto3-docdb (>=1.26.0,<1.27.0)", "mypy-boto3-docdb-elastic (>=1.26.0,<1.27.0)", "mypy-boto3-drs (>=1.26.0,<1.27.0)", "mypy-boto3-ds (>=1.26.0,<1.27.0)", "mypy-boto3-dynamodb (>=1.26.0,<1.27.0)", "mypy-boto3-dynamodbstreams (>=1.26.0,<1.27.0)", "mypy-boto3-ebs (>=1.26.0,<1.27.0)", "mypy-boto3-ec2 (>=1.26.0,<1.27.0)", "mypy-boto3-ec2-instance-connect (>=1.26.0,<1.27.0)", "mypy-boto3-ecr (>=1.26.0,<1.27.0)", "mypy-boto3-ecr-public (>=1.26.0,<1.27.0)", "mypy-boto3-ecs (>=1.26.0,<1.27.0)", "mypy-boto3-efs (>=1.26.0,<1.27.0)", "mypy-boto3-eks (>=1.26.0,<1.27.0)", "mypy-boto3-elastic-inference (>=1.26.0,<1.27.0)", "mypy-boto3-elasticache (>=1.26.0,<1.27.0)", "mypy-boto3-elasticbeanstalk (>=1.26.0,<1.27.0)", "mypy-boto3-elastictranscoder (>=1.26.0,<1.27.0)", "mypy-boto3-elb (>=1.26.0,<1.27.0)", "mypy-boto3-elbv2 (>=1.26.0,<1.27.0)", "mypy-boto3-emr (>=1.26.0,<1.27.0)", "mypy-boto3-emr-containers (>=1.26.0,<1.27.0)", "mypy-boto3-emr-serverless (>=1.26.0,<1.27.0)", "mypy-boto3-es (>=1.26.0,<1.27.0)", "mypy-boto3-events (>=1.26.0,<1.27.0)", "mypy-boto3-evidently (>=1.26.0,<1.27.0)", "mypy-boto3-finspace (>=1.26.0,<1.27.0)", "mypy-boto3-finspace-data (>=1.26.0,<1.27.0)", "mypy-boto3-firehose (>=1.26.0,<1.27.0)", "mypy-boto3-fis (>=1.26.0,<1.27.0)", "mypy-boto3-fms (>=1.26.0,<1.27.0)", "mypy-boto3-forecast (>=1.26.0,<1.27.0)", "mypy-boto3-forecastquery (>=1.26.0,<1.27.0)", "mypy-boto3-frauddetector (>=1.26.0,<1.27.0)", "mypy-boto3-fsx (>=1.26.0,<1.27.0)", "mypy-boto3-gamelift (>=1.26.0,<1.27.0)", "mypy-boto3-gamesparks (>=1.26.0,<1.27.0)", "mypy-boto3-glacier (>=1.26.0,<1.27.0)", "mypy-boto3-globalaccelerator (>=1.26.0,<1.27.0)", "mypy-boto3-glue (>=1.26.0,<1.27.0)", "mypy-boto3-grafana (>=1.26.0,<1.27.0)", "mypy-boto3-greengrass (>=1.26.0,<1.27.0)", "mypy-boto3-greengrassv2 (>=1.26.0,<1.27.0)", "mypy-boto3-groundstation (>=1.26.0,<1.27.0)", "mypy-boto3-guardduty (>=1.26.0,<1.27.0)", "mypy-boto3-health (>=1.26.0,<1.27.0)", "mypy-boto3-healthlake (>=1.26.0,<1.27.0)", "mypy-boto3-honeycode (>=1.26.0,<1.27.0)", "mypy-boto3-iam (>=1.26.0,<1.27.0)", "mypy-boto3-identitystore (>=1.26.0,<1.27.0)", "mypy-boto3-imagebuilder (>=1.26.0,<1.27.0)", "mypy-boto3-importexport (>=1.26.0,<1.27.0)", "mypy-boto3-inspector (>=1.26.0,<1.27.0)", "mypy-boto3-inspector2 (>=1.26.0,<1.27.0)", "mypy-boto3-internetmonitor (>=1.26.0,<1.27.0)", "mypy-boto3-iot (>=1.26.0,<1.27.0)", "mypy-boto3-iot-data (>=1.26.0,<1.27.0)", "mypy-boto3-iot-jobs-data (>=1.26.0,<1.27.0)", "mypy-boto3-iot-roborunner (>=1.26.0,<1.27.0)", "mypy-boto3-iot1click-devices (>=1.26.0,<1.27.0)", "mypy-boto3-iot1click-projects (>=1.26.0,<1.27.0)", "mypy-boto3-iotanalytics (>=1.26.0,<1.27.0)", "mypy-boto3-iotdeviceadvisor (>=1.26.0,<1.27.0)", "mypy-boto3-iotevents (>=1.26.0,<1.27.0)", "mypy-boto3-iotevents-data (>=1.26.0,<1.27.0)", "mypy-boto3-iotfleethub (>=1.26.0,<1.27.0)", "mypy-boto3-iotfleetwise (>=1.26.0,<1.27.0)", "mypy-boto3-iotsecuretunneling (>=1.26.0,<1.27.0)", "mypy-boto3-iotsitewise (>=1.26.0,<1.27.0)", "mypy-boto3-iotthingsgraph (>=1.26.0,<1.27.0)", "mypy-boto3-iottwinmaker (>=1.26.0,<1.27.0)", "mypy-boto3-iotwireless (>=1.26.0,<1.27.0)", "mypy-boto3-ivs (>=1.26.0,<1.27.0)", "mypy-boto3-ivs-realtime (>=1.26.0,<1.27.0)", "mypy-boto3-ivschat (>=1.26.0,<1.27.0)", "mypy-boto3-kafka (>=1.26.0,<1.27.0)", "mypy-boto3-kafkaconnect (>=1.26.0,<1.27.0)", "mypy-boto3-kendra (>=1.26.0,<1.27.0)", "mypy-boto3-kendra-ranking (>=1.26.0,<1.27.0)", "mypy-boto3-keyspaces (>=1.26.0,<1.27.0)", "mypy-boto3-kinesis (>=1.26.0,<1.27.0)", "mypy-boto3-kinesis-video-archived-media (>=1.26.0,<1.27.0)", "mypy-boto3-kinesis-video-media (>=1.26.0,<1.27.0)", "mypy-boto3-kinesis-video-signaling (>=1.26.0,<1.27.0)", "mypy-boto3-kinesis-video-webrtc-storage (>=1.26.0,<1.27.0)", "mypy-boto3-kinesisanalytics (>=1.26.0,<1.27.0)", "mypy-boto3-kinesisanalyticsv2 (>=1.26.0,<1.27.0)", "mypy-boto3-kinesisvideo (>=1.26.0,<1.27.0)", "mypy-boto3-kms (>=1.26.0,<1.27.0)", "mypy-boto3-lakeformation (>=1.26.0,<1.27.0)", "mypy-boto3-lambda (>=1.26.0,<1.27.0)", "mypy-boto3-lex-models (>=1.26.0,<1.27.0)", "mypy-boto3-lex-runtime (>=1.26.0,<1.27.0)", "mypy-boto3-lexv2-models (>=1.26.0,<1.27.0)", "mypy-boto3-lexv2-runtime (>=1.26.0,<1.27.0)", "mypy-boto3-license-manager (>=1.26.0,<1.27.0)", "mypy-boto3-license-manager-linux-subscriptions (>=1.26.0,<1.27.0)", "mypy-boto3-license-manager-user-subscriptions (>=1.26.0,<1.27.0)", "mypy-boto3-lightsail (>=1.26.0,<1.27.0)", "mypy-boto3-location (>=1.26.0,<1.27.0)", "mypy-boto3-logs (>=1.26.0,<1.27.0)", "mypy-boto3-lookoutequipment (>=1.26.0,<1.27.0)", "mypy-boto3-lookoutmetrics (>=1.26.0,<1.27.0)", "mypy-boto3-lookoutvision (>=1.26.0,<1.27.0)", "mypy-boto3-m2 (>=1.26.0,<1.27.0)", "mypy-boto3-machinelearning (>=1.26.0,<1.27.0)", "mypy-boto3-macie (>=1.26.0,<1.27.0)", "mypy-boto3-macie2 (>=1.26.0,<1.27.0)", "mypy-boto3-managedblockchain (>=1.26.0,<1.27.0)", "mypy-boto3-marketplace-catalog (>=1.26.0,<1.27.0)", "mypy-boto3-marketplace-entitlement (>=1.26.0,<1.27.0)", "mypy-boto3-marketplacecommerceanalytics (>=1.26.0,<1.27.0)", "mypy-boto3-mediaconnect (>=1.26.0,<1.27.0)", "mypy-boto3-mediaconvert (>=1.26.0,<1.27.0)", "mypy-boto3-medialive (>=1.26.0,<1.27.0)", "mypy-boto3-mediapackage (>=1.26.0,<1.27.0)", "mypy-boto3-mediapackage-vod (>=1.26.0,<1.27.0)", "mypy-boto3-mediapackagev2 (>=1.26.0,<1.27.0)", "mypy-boto3-mediastore (>=1.26.0,<1.27.0)", "mypy-boto3-mediastore-data (>=1.26.0,<1.27.0)", "mypy-boto3-mediatailor (>=1.26.0,<1.27.0)", "mypy-boto3-memorydb (>=1.26.0,<1.27.0)", "mypy-boto3-meteringmarketplace (>=1.26.0,<1.27.0)", "mypy-boto3-mgh (>=1.26.0,<1.27.0)", "mypy-boto3-mgn (>=1.26.0,<1.27.0)", "mypy-boto3-migration-hub-refactor-spaces (>=1.26.0,<1.27.0)", "mypy-boto3-migrationhub-config (>=1.26.0,<1.27.0)", "mypy-boto3-migrationhuborchestrator (>=1.26.0,<1.27.0)", "mypy-boto3-migrationhubstrategy (>=1.26.0,<1.27.0)", "mypy-boto3-mobile (>=1.26.0,<1.27.0)", "mypy-boto3-mq (>=1.26.0,<1.27.0)", "mypy-boto3-mturk (>=1.26.0,<1.27.0)", "mypy-boto3-mwaa (>=1.26.0,<1.27.0)", "mypy-boto3-neptune (>=1.26.0,<1.27.0)", "mypy-boto3-network-firewall (>=1.26.0,<1.27.0)", "mypy-boto3-networkmanager (>=1.26.0,<1.27.0)", "mypy-boto3-nimble (>=1.26.0,<1.27.0)", "mypy-boto3-oam (>=1.26.0,<1.27.0)", "mypy-boto3-omics (>=1.26.0,<1.27.0)", "mypy-boto3-opensearch (>=1.26.0,<1.27.0)", "mypy-boto3-opensearchserverless (>=1.26.0,<1.27.0)", "mypy-boto3-opsworks (>=1.26.0,<1.27.0)", "mypy-boto3-opsworkscm (>=1.26.0,<1.27.0)", "mypy-boto3-organizations (>=1.26.0,<1.27.0)", "mypy-boto3-osis (>=1.26.0,<1.27.0)", "mypy-boto3-outposts (>=1.26.0,<1.27.0)", "mypy-boto3-panorama (>=1.26.0,<1.27.0)", "mypy-boto3-personalize (>=1.26.0,<1.27.0)", "mypy-boto3-personalize-events (>=1.26.0,<1.27.0)", "mypy-boto3-personalize-runtime (>=1.26.0,<1.27.0)", "mypy-boto3-pi (>=1.26.0,<1.27.0)", "mypy-boto3-pinpoint (>=1.26.0,<1.27.0)", "mypy-boto3-pinpoint-email (>=1.26.0,<1.27.0)", "mypy-boto3-pinpoint-sms-voice (>=1.26.0,<1.27.0)", "mypy-boto3-pinpoint-sms-voice-v2 (>=1.26.0,<1.27.0)", "mypy-boto3-pipes (>=1.26.0,<1.27.0)", "mypy-boto3-polly (>=1.26.0,<1.27.0)", "mypy-boto3-pricing (>=1.26.0,<1.27.0)", "mypy-boto3-privatenetworks (>=1.26.0,<1.27.0)", "mypy-boto3-proton (>=1.26.0,<1.27.0)", "mypy-boto3-qldb (>=1.26.0,<1.27.0)", "mypy-boto3-qldb-session (>=1.26.0,<1.27.0)", "mypy-boto3-quicksight (>=1.26.0,<1.27.0)", "mypy-boto3-ram (>=1.26.0,<1.27.0)", "mypy-boto3-rbin (>=1.26.0,<1.27.0)", "mypy-boto3-rds (>=1.26.0,<1.27.0)", "mypy-boto3-rds-data (>=1.26.0,<1.27.0)", "mypy-boto3-redshift (>=1.26.0,<1.27.0)", "mypy-boto3-redshift-data (>=1.26.0,<1.27.0)", "mypy-boto3-redshift-serverless (>=1.26.0,<1.27.0)", "mypy-boto3-rekognition (>=1.26.0,<1.27.0)", "mypy-boto3-resiliencehub (>=1.26.0,<1.27.0)", "mypy-boto3-resource-explorer-2 (>=1.26.0,<1.27.0)", "mypy-boto3-resource-groups (>=1.26.0,<1.27.0)", "mypy-boto3-resourcegroupstaggingapi (>=1.26.0,<1.27.0)", "mypy-boto3-robomaker (>=1.26.0,<1.27.0)", "mypy-boto3-rolesanywhere (>=1.26.0,<1.27.0)", "mypy-boto3-route53 (>=1.26.0,<1.27.0)", "mypy-boto3-route53-recovery-cluster (>=1.26.0,<1.27.0)", "mypy-boto3-route53-recovery-control-config (>=1.26.0,<1.27.0)", "mypy-boto3-route53-recovery-readiness (>=1.26.0,<1.27.0)", "mypy-boto3-route53domains (>=1.26.0,<1.27.0)", "mypy-boto3-route53resolver (>=1.26.0,<1.27.0)", "mypy-boto3-rum (>=1.26.0,<1.27.0)", "mypy-boto3-s3 (>=1.26.0,<1.27.0)", "mypy-boto3-s3control (>=1.26.0,<1.27.0)", "mypy-boto3-s3outposts (>=1.26.0,<1.27.0)", "mypy-boto3-sagemaker (>=1.26.0,<1.27.0)", "mypy-boto3-sagemaker-a2i-runtime (>=1.26.0,<1.27.0)", "mypy-boto3-sagemaker-edge (>=1.26.0,<1.27.0)", "mypy-boto3-sagemaker-featurestore-runtime (>=1.26.0,<1.27.0)", "mypy-boto3-sagemaker-geospatial (>=1.26.0,<1.27.0)", "mypy-boto3-sagemaker-metrics (>=1.26.0,<1.27.0)", "mypy-boto3-sagemaker-runtime (>=1.26.0,<1.27.0)", "mypy-boto3-savingsplans (>=1.26.0,<1.27.0)", "mypy-boto3-scheduler (>=1.26.0,<1.27.0)", "mypy-boto3-schemas (>=1.26.0,<1.27.0)", "mypy-boto3-sdb (>=1.26.0,<1.27.0)", "mypy-boto3-secretsmanager (>=1.26.0,<1.27.0)", "mypy-boto3-securityhub (>=1.26.0,<1.27.0)", "mypy-boto3-securitylake (>=1.26.0,<1.27.0)", "mypy-boto3-serverlessrepo (>=1.26.0,<1.27.0)", "mypy-boto3-service-quotas (>=1.26.0,<1.27.0)", "mypy-boto3-servicecatalog (>=1.26.0,<1.27.0)", "mypy-boto3-servicecatalog-appregistry (>=1.26.0,<1.27.0)", "mypy-boto3-servicediscovery (>=1.26.0,<1.27.0)", "mypy-boto3-ses (>=1.26.0,<1.27.0)", "mypy-boto3-sesv2 (>=1.26.0,<1.27.0)", "mypy-boto3-shield (>=1.26.0,<1.27.0)", "mypy-boto3-signer (>=1.26.0,<1.27.0)", "mypy-boto3-simspaceweaver (>=1.26.0,<1.27.0)", "mypy-boto3-sms (>=1.26.0,<1.27.0)", "mypy-boto3-sms-voice (>=1.26.0,<1.27.0)", "mypy-boto3-snow-device-management (>=1.26.0,<1.27.0)", "mypy-boto3-snowball (>=1.26.0,<1.27.0)", "mypy-boto3-sns (>=1.26.0,<1.27.0)", "mypy-boto3-sqs (>=1.26.0,<1.27.0)", "mypy-boto3-ssm (>=1.26.0,<1.27.0)", "mypy-boto3-ssm-contacts (>=1.26.0,<1.27.0)", "mypy-boto3-ssm-incidents (>=1.26.0,<1.27.0)", "mypy-boto3-ssm-sap (>=1.26.0,<1.27.0)", "mypy-boto3-sso (>=1.26.0,<1.27.0)", "mypy-boto3-sso-admin (>=1.26.0,<1.27.0)", "mypy-boto3-sso-oidc (>=1.26.0,<1.27.0)", "mypy-boto3-stepfunctions (>=1.26.0,<1.27.0)", "mypy-boto3-storagegateway (>=1.26.0,<1.27.0)", "mypy-boto3-sts (>=1.26.0,<1.27.0)", "mypy-boto3-support (>=1.26.0,<1.27.0)", "mypy-boto3-support-app (>=1.26.0,<1.27.0)", "mypy-boto3-swf (>=1.26.0,<1.27.0)", "mypy-boto3-synthetics (>=1.26.0,<1.27.0)", "mypy-boto3-textract (>=1.26.0,<1.27.0)", "mypy-boto3-timestream-query (>=1.26.0,<1.27.0)", "mypy-boto3-timestream-write (>=1.26.0,<1.27.0)", "mypy-boto3-tnb (>=1.26.0,<1.27.0)", "mypy-boto3-transcribe (>=1.26.0,<1.27.0)", "mypy-boto3-transfer (>=1.26.0,<1.27.0)", "mypy-boto3-translate (>=1.26.0,<1.27.0)", "mypy-boto3-voice-id (>=1.26.0,<1.27.0)", "mypy-boto3-vpc-lattice (>=1.26.0,<1.27.0)", "mypy-boto3-waf (>=1.26.0,<1.27.0)", "mypy-boto3-waf-regional (>=1.26.0,<1.27.0)", "mypy-boto3-wafv2 (>=1.26.0,<1.27.0)", "mypy-boto3-wellarchitected (>=1.26.0,<1.27.0)", "mypy-boto3-wisdom (>=1.26.0,<1.27.0)", "mypy-boto3-workdocs (>=1.26.0,<1.27.0)", "mypy-boto3-worklink (>=1.26.0,<1.27.0)", "mypy-boto3-workmail (>=1.26.0,<1.27.0)", "mypy-boto3-workmailmessageflow (>=1.26.0,<1.27.0)", "mypy-boto3-workspaces (>=1.26.0,<1.27.0)", "mypy-boto3-workspaces-web (>=1.26.0,<1.27.0)", "mypy-boto3-xray (>=1.26.0,<1.27.0)"]
amp = ["mypy-boto3-amp (>=1.26.0,<1.27.0)"]
amplify = ["mypy-boto3-amplify (>=1.26.0,<1.27.0)"]
amplifybackend = ["mypy-boto3-amplifybackend (>=1.26.0,<1.27.0)"]
amplifyuibuilder = ["mypy-boto3-amplifyuibuilder (>=1.26.0,<1.27.0)"]
apigateway = ["mypy-boto3-apigateway (>=1.26.0,<1.27.0)"]
apigatewaymanagementapi = ["mypy-boto3-apigatewaymanagementapi (>=1.26.0,<1.27.0)"]
apigatewayv2 = ["mypy-boto3-apigatewayv2 (>=1.26.0,<1.27.0)"]
appconfig = ["mypy-boto3-appconfig (>=1.26.0,<1.27.0)"]
appconfigdata = ["mypy-boto3-appconfigdata (>=1.26.0,<1.27.0)"]
appflow = ["mypy-boto3-appflow (>=1.26.0,<1.27.0)"]
appintegrations = ["mypy-boto3-appintegrations (>=1.26.0,<1.27.0)"]
application-autoscaling = ["mypy-boto3-application-autoscaling (>=1.26.0,<1.27.0)"]
application-insights = ["mypy-boto3-application-insights (>=1.26.0,<1.27.0)"]
applicationcostprofiler = ["mypy-boto3-applicationcostprofiler (>=1.26.0,<1.27.0)"]
appmesh = ["mypy-boto3-appmesh (>=1.26.0,<1.27.0)"]
apprunner = ["mypy-boto3-apprunner (>=1.26.0,<1.27.0)"]
appstream = ["mypy-boto3-appstream (>=1.26.0,<1.27.0)"]
appsync = ["mypy-boto3-appsync (>=1.26.0,<1.27.0)"]
arc-zonal-shift = ["mypy-boto3-arc-zonal-shift (>=1.26.0,<1.27.0)"]
athena = ["mypy-boto3-athena (>=1.26.0,<1.27.0)"]
auditmanager = ["mypy-boto3-auditmanager (>=1.26.0,<1.27.0)"]
autoscaling = ["mypy-boto3-autoscaling (>=1.26.0,<1.27.0)"]
autoscaling-plans = ["mypy-boto3-autoscaling-plans (>=1.26.0,<1.27.0)"]
backup = ["mypy-boto3-backup (>=1.26.0,<1.27.0)"]
backup-gateway = ["mypy-boto3-backup-gateway (>=1.26.0,<1.27.0)"]
backupstorage = ["mypy-boto3-backupstorage (>=1.26.0,<1.27.0)"]
batch = ["mypy-boto3-batch (>=1.26.0,<1.27.0)"]
billingconductor = ["mypy-boto3-billingconductor (>=1.26.0,<1.27.0)"]
boto3 = ["boto3 (==1.26.137)", "botocore (==1.29.137)"]
braket = ["mypy-boto3-braket (>=1.26.0,<1.27.0)"]
budgets = ["mypy-boto3-budgets (>=1.26.0,<1.27.0)"]
ce = ["mypy-boto3-ce (>=1.26.0,<1.27.0)"]
chime = ["mypy-boto3-chime (>=1.26.0,<1.27.0)"]
chime-sdk-identity = ["mypy-boto3-chime-sdk-identity (>=1.26.0,<1.27.0)"]
chime-sdk-media-pipelines = ["mypy-boto3-chime-sdk-media-pipelines (>=1.26.0,<1.27.0)"]
chime-sdk-meetings = ["mypy-boto3-chime-sdk-meetings (>=1.26.0,<1.27.0)"]
chime-sdk-messaging = ["mypy-boto3-chime-sdk-messaging (>=1.26.0,<1.27.0)"]
chime-sdk-voice = ["mypy-boto3-chime-sdk-voice (>=1.26.0,<1.27.0)"]
cleanrooms = ["mypy-boto3-cleanrooms (>=1.26.0,<1.27.0)"]
cloud9 = ["mypy-boto3-cloud9 (>=1.26.0,<1.27.0)"]
cloudcontrol = ["mypy-boto3-cloudcontrol (>=1.26.0,<1.27.0)"]
clouddirectory = ["mypy-boto3-clouddirectory (>=1.26.0,<1.27.0)"]
cloudformation = ["mypy-boto3-cloudformation (>=1.26.0,<1.27.0)"]
cloudfront = ["mypy-boto3-cloudfront (>=1.26.0,<1.27.0)"]
cloudhsm = ["mypy-boto3-cloudhsm (>=1.26.0,<1.27.0)"]
cloudhsmv2 = ["mypy-boto3-cloudhsmv2 (>=1.26.0,<1.27.0)"]
cloudsearch = ["mypy-boto3-cloudsearch (>=1.26.0,<1.27.0)"]
cloudsearchdomain = ["mypy-boto3-cloudsearchdomain (>=1.26.0,<1.27.0)"]
cloudtrail = ["mypy-boto3-cloudtrail (>=1.26.0,<1.27.0)"]
cloudtrail-data = ["mypy-boto3-cloudtrail-data (>=1.26.0,<1.27.0)"]
cloudwatch = ["mypy-boto3-cloudwatch (>=1.26.0,<1.27.0)"]
codeartifact = ["mypy-boto3-codeartifact (>=1.26.0,<1.27.0)"]
codebuild = ["mypy-boto3-codebuild (>=1.26.0,<1.27.0)"]
codecatalyst = ["mypy-boto3-codecatalyst (>=1.26.0,<1.27.0)"]
codecommit = ["mypy-boto3-codecommit (>=1.26.0,<1.27.0)"]
codedeploy = ["mypy-boto3-codedeploy (>=1.26.0,<1.27.0)"]
codeguru-reviewer = ["mypy-boto3-codeguru-reviewer (>=1.26.0,<1.27.0)"]
codeguruprofiler = ["mypy-boto3-codeguruprofiler (>=1.26.0,<1.27.0)"]
codepipeline = ["mypy-boto3-codepipeline (>=1.26.0,<1.27.0)"]
codestar = ["mypy-boto3-codestar (>=1.26.0,<1.27.0)"]
codestar-connections = ["mypy-boto3-codestar-connections (>=1.26.0,<1.27.0)"]
codestar-notifications = ["mypy-boto3-codestar-notifications (>=1.26.0,<1.27.0)"]
cognito-identity = ["mypy-boto3-cognito-identity (>=1.26.0,<1.27.0)"]
cognito-idp = ["mypy-boto3-cognito-idp (>=1.26.0,<1.27.0)"]
cognito-sync = ["mypy-boto3-cognito-sync (>=1.26.0,<1.27.0)"]
comprehend = ["mypy-boto3-comprehend (>=1.26.0,<1.27.0)"]
comprehendmedical = ["mypy-boto3-comprehendmedical (>=1.26.0,<1.27.0)"]
compute-optimizer = ["mypy-boto3-compute-optimizer (>=1.26.0,<1.27.0)"]
config = ["mypy-boto3-config (>=1.26.0,<1.27.0)"]
connect = ["mypy-boto3-connect (>=1.26.0,<1.27.0)"]
connect-contact-lens = ["mypy-boto3-connect-contact-lens (>=1.26.0,<1.27.0)"]
connectcampaigns = ["mypy-boto3-connectcampaigns (>=1.26.0,<1.27.0)"]
connectcases = ["mypy-boto3-connectcases (>=1.26.0,<1.27.0)"]
connectparticipant = ["mypy-boto3-connectparticipant (>=1.26.0,<1.27.0)"]
controltower = ["mypy-boto3-controltower (>=1.26.0,<1.27.0)"]
cur = ["mypy-boto3-cur (>=1.26.0,<1.27.0)"]
customer-profiles = ["mypy-boto3-customer-profiles (>=1.26.0,<1.27.0)"]
databrew = ["mypy-boto3-databrew (>=1.26.0,<1.27.0)"]
dataexchange = ["mypy-boto3-dataexchange (>=1.26.0,<1.27.0)"]
datapipeline = ["mypy-boto3-datapipeline (>=1.26.0,<1.27.0)"]
datasync = ["mypy-boto3-datasync (>=1.26.0,<1.27.0)"]
dax = ["mypy-boto3-dax (>=1.26.0,<1.27.0)"]
detective = ["mypy-boto3-detective (>=1.26.0,<1.27.0)"]
devicefarm = ["mypy-boto3-devicefarm (>=1.26.0,<1.27.0)"]
devops-guru = ["mypy-boto3-devops-guru (>=1.26.0,<1.27.0)"]
directconnect = ["mypy-boto3-directconnect (>=1.26.0,<1.27.0)"]
discovery = ["mypy-boto3-discovery (>=1.26.0,<1.27.0)"]
dlm = ["mypy-boto3-dlm (>=1.26.0,<1.27.0)"]
dms = ["mypy-boto3-dms (>=1.26.0,<1.27.0)"]
docdb = ["mypy-boto3-docdb (>=1.26.0,<1.27.0)"]
docdb-elastic = ["mypy-boto3-docdb-elastic (>=1.26.0,<1.27.0)"]
drs = ["mypy-boto3-drs (>=1.26.0,<1.27.0)"]
ds = ["mypy-boto3-ds (>=1.26.0,<1.27.0)"]
dynamodb = ["mypy-boto3-dynamodb (>=1.26.0,<1.27.0)"]
dynamodbstreams = ["mypy-boto3-dynamodbstreams (>=1.26.0,<1.27.0)"]
ebs = ["mypy-boto3-ebs (>=1.26.0,<1.27.0)"]
ec2 = ["mypy-boto3-ec2 (>=1.26.0,<1.27.0)"]
ec2-instance-connect = ["mypy-boto3-ec2-instance-connect (>=1.26.0,<1.27.0)"]
ecr = ["mypy-boto3-ecr (>=1.26.0,<1.27.0)"]
ecr-public = ["mypy-boto3-ecr-public (>=1.26.0,<1.27.0)"]
ecs = ["mypy-boto3-ecs (>=1.26.0,<1.27.0)"]
efs = ["mypy-boto3-efs (>=1.26.0,<1.27.0)"]
eks = ["mypy-boto3-eks (>=1.26.0,<1.27.0)"]
elastic-inference = ["mypy-boto3-elastic-inference (>=1.26.0,<1.27.0)"]
elasticache = ["mypy-boto3-elasticache (>=1.26.0,<1.27.0)"]
elasticbeanstalk = ["mypy-boto3-elasticbeanstalk (>=1.26.0,<1.27.0)"]
elastictranscoder = ["mypy-boto3-elastictranscoder (>=1.26.0,<1.27.0)"]
elb = ["mypy-boto3-elb (>=1.26.0,<1.27.0)"]
elbv2 = ["mypy-boto3-elbv2 (>=1.26.0,<1.27.0)"]
emr = ["mypy-boto3-emr (>=1.26.0,<1.27.0)"]
emr-containers = ["mypy-boto3-emr-containers (>=1.26.0,<1.27.0)"]
emr-serverless = ["mypy-boto3-emr-serverless (>=1.26.0,<1.27.0)"]
es = ["mypy-boto3-es (>=1.26.0,<1.27.0)"]
essential = ["mypy-boto3-cloudformation (>=1.26.0,<1.27.0)", "mypy-boto3-dynamodb (>=1.26.0,<1.27.0)", "mypy-boto3-ec2 (>=1.26.0,<1.27.0)", "mypy-boto3-lambda (>=1.26.0,<1.27.0)", "mypy-boto3-rds (>=1.26.0,<1.27.0)", "mypy-boto3-s3 (>=1.26.0,<1.27.0)", "mypy-boto3-sqs (>=1.26.0,<1.27.0)"]
events = ["mypy-boto3-events (>=1.26.0,<1.27.0)"]
evidently = ["mypy-boto3-evidently (>=1.26.0,<1.27.0)"]
finspace = ["mypy-boto3-finspace (>=1.26.0,<1.27.0)"]
finspace-data = ["mypy-boto3-finspace-data (>=1.26.0,<1.27.0)"]
firehose = ["mypy-boto3-firehose (>=1.26.0,<1.27.0)"]
fis = ["mypy-boto3-fis (>=1.26.0,<1.27.0)"]
fms = ["mypy-boto3-fms (>=1.26.0,<1.27.0)"]
forecast = ["mypy-boto3-forecast (>=1.26.0,<1.27.0)"]
forecastquery = ["mypy-boto3-forecastquery (>=1.26.0,<1.27.0)"]
frauddetector = ["mypy-boto3-frauddetector (>=1.26.0,<1.27.0)"]
fsx = ["mypy-boto3-fsx (>=1.26.0,<1.27.0)"]
gamelift = ["mypy-boto3-gamelift (>=1.26.0,<1.27.0)"]
gamesparks = ["mypy-boto3-gamesparks (>=1.26.0,<1.27.0)"]
glacier = ["mypy-boto3-glacier (>=1.26.0,<1.27.0)"]
globalaccelerator = ["mypy-boto3-globalaccelerator (>=1.26.0,<1.27.0)"]
glue = ["mypy-boto3-glue (>=1.26.0,<1.27.0)"]
grafana = ["mypy-boto3-grafana (>=1.26.0,<1.27.0)"]
greengrass = ["mypy-boto3-greengrass (>=1.26.0,<1.27.0)"]
greengrassv2 = ["mypy-boto3-greengrassv2 (>=1.26.0,<1.27.0)"]
groundstation = ["mypy-boto3-groundstation (>=1.26.0,<1.27.0)"]
guardduty = ["mypy-boto3-guardduty (>=1.26.0,<1.27.0)"]
health = ["mypy-boto3-health (>=1.26.0,<1.27.0)"]
healthlake = ["mypy-boto3-healthlake (>=1.26.0,<1.27.0)"]
honeycode = ["mypy-boto3-honeycode (>=1.26.0,<1.27.0)"]
iam = ["mypy-boto3-iam (>=1.26.0,<1.27.0)"]
identitystore = ["mypy-boto3-identitystore (>=1.26.0,<1.27.0)"]
imagebuilder = ["mypy-boto3-imagebuilder (>=1.26.0,<1.27.0)"]
importexport = ["mypy-boto3-importexport (>=1.26.0,<1.27.0)"]
inspector = ["mypy-boto3-inspector (>=1.26.0,<1.27.0)"]
inspector2 = ["mypy-boto3-inspector2 (>=1.26.0,<1.27.0)"]
internetmonitor = ["mypy-boto3-internetmonitor (>=1.26.0,<1.27.0)"]
iot = ["mypy-boto3-iot (>=1.26.0,<1.27.0)"]
iot-data = ["mypy-boto3-iot-data (>=1.26.0,<1.27.0)"]
iot-jobs-data = ["mypy-boto3-iot-jobs-data (>=1.26.0,<1.27.0)"]
iot-roborunner = ["mypy-boto3-iot-roborunner (>=1.26.0,<1.27.0)"]
iot1click-devices = ["mypy-boto3-iot1click-devices (>=1.26.0,<1.27.0)"]
iot1click-projects = ["mypy-boto3-iot1click-projects (>=1.26.0,<1.27.0)"]
iotanalytics = ["mypy-boto3-iotanalytics (>=1.26.0,<1.27.0)"]
iotdeviceadvisor = ["mypy-boto3-iotdeviceadvisor (>=1.26.0,<1.27.0)"]
iotevents = ["mypy-boto3-iotevents (>=1.26.0,<1.27.0)"]
iotevents-data = ["mypy-boto3-iotevents-data (>=1.26.0,<1.27.0)"]
iotfleethub = ["mypy-boto3-iotfleethub (>=1.26.0,<1.27.0)"]
iotfleetwise = ["mypy-boto3-iotfleetwise (>=1.26.0,<1.27.0)"]
iotsecuretunneling = ["mypy-boto3-iotsecuretunneling (>=1.26.0,<1.27.0)"]
iotsitewise = ["mypy-boto3-iotsitewise (>=1.26.0,<1.27.0)"]
iotthingsgraph = ["mypy-boto3-iotthingsgraph (>=1.26.0,<1.27.0)"]
iottwinmaker = ["mypy-boto3-iottwinmaker (>=1.26.0,<1.27.0)"]
iotwireless = ["mypy-boto3-iotwireless (>=1.26.0,<1.27.0)"]
ivs = ["mypy-boto3-ivs (>=1.26.0,<1.27.0)"]
ivs-realtime = ["mypy-boto3-ivs-realtime (>=1.26.0,<1.27.0)"]
ivschat = ["mypy-boto3-ivschat (>=1.26.0,<1.27.0)"]
kafka = ["mypy-boto3-kafka (>=1.26.0,<1.27.0)"]
kafkaconnect = ["mypy-boto3-kafkaconnect (>=1.26.0,<1.27.0)"]
kendra = ["mypy-boto3-kendra (>=1.26.0,<1.27.0)"]
kendra-ranking = ["mypy-boto3-kendra-ranking (>=1.26.0,<1.27.0)"]
keyspaces = ["mypy-boto3-keyspaces (>=1.26.0,<1.27.0)"]
kinesis = ["mypy-boto3-kinesis (>=1.26.0,<1.27.0)"]
kinesis-video-archived-media = ["mypy-boto3-kinesis-video-archived-media (>=1.26.0,<1.27.0)"]
kinesis-video-media = ["mypy-boto3-kinesis-video-media (>=1.26.0,<1.27.0)"]
kinesis-video-signaling = ["mypy-boto3-kinesis-video-signaling (>=1.26.0,<1.27.0)"]
kinesis-video-webrtc-storage = ["mypy-boto3-kinesis-video-webrtc-storage (>=1.26.0,<1.27.0)"]
kinesisanalytics = ["mypy-boto3-kinesisanalytics (>=1.26.0,<1.27.0)"]
kinesisanalyticsv2 = ["mypy-boto3-kinesisanalyticsv2 (>=1.26.0,<1.27.0)"]
kinesisvideo = ["mypy-boto3-kinesisvideo (>=1.26.0,<1.27.0)"]
kms = ["mypy-boto3-kms (>=1.26.0,<1.27.0)"]
lakeformation = ["mypy-boto3-lakeformation (>=1.26.0,<1.27.0)"]
lambda = ["mypy-boto3-lambda (>=1.26.0,<1.27.0)"]
lex-models = ["mypy-boto3-lex-models (>=1.26.0,<1.27.0)"]
lex-runtime = ["mypy-boto3-lex-runtime (>=1.26.0,<1.27.0)"]
lexv2-models = ["mypy-boto3-lexv2-models (>=1.26.0,<1.27.0)"]
lexv2-runtime = ["mypy-boto3-lexv2-runtime (>=1.26.0,<1.27.0)"]
license-manager = ["mypy-boto3-license-manager (>=1.26.0,<1.27.0)"]
license-manager-linux-subscriptions = ["mypy-boto3-license-manager-linux-subscriptions (>=1.26.0,<1.27.0)"]
license-manager-user-subscriptions = ["mypy-boto3-license-manager-user-subscriptions (>=1.26.0,<1.27.0)"]
lightsail = ["mypy-boto3-lightsail (>=1.26.0,<1.27.0)"]
location = ["mypy-boto3-location (>=1.26.0,<1.27.0)"]
logs = ["mypy-boto3-logs (>=1.26.0,<1.27.0)"]
lookoutequipment = ["mypy-boto3-lookoutequipment (>=1.26.0,<1.27.0)"]
lookoutmetrics = ["mypy-boto3-lookoutmetrics (>=1.26.0,<1.27.0)"]
lookoutvision = ["mypy-boto3-lookoutvision (>=1.26.0,<1.27.0)"]
m2 = ["mypy-boto3-m2 (>=1.26.0,<1.27.0)"]
machinelearning = ["mypy-boto3-machinelearning (>=1.26.0,<1.27.0)"]
macie = ["mypy-boto3-macie (>=1.26.0,<1.27.0)"]
macie2 = ["mypy-boto3-macie2 (>=1.26.0,<1.27.0)"]
managedblockchain = ["mypy-boto3-managedblockchain (>=1.26.0,<1.27.0)"]
marketplace-catalog = ["mypy-boto3-marketplace-catalog (>=1.26.0,<1.27.0)"]
marketplace-entitlement = ["mypy-boto3-marketplace-entitlement (>=1.26.0,<1.27.0)"]
marketplacecommerceanalytics = ["mypy-boto3-marketplacecommerceanalytics (>=1.26.0,<1.27.0)"]
mediaconnect = ["mypy-boto3-mediaconnect (>=1.26.0,<1.27.0)"]
mediaconvert = ["mypy-boto3-mediaconvert (>=1.26.0,<1.27.0)"]
medialive = ["mypy-boto3-medialive (>=1.26.0,<1.27.0)"]
mediapackage = ["mypy-boto3-mediapackage (>=1.26.0,<1.27.0)"]
mediapackage-vod = ["mypy-boto3-mediapackage-vod (>=1.26.0,<1.27.0)"]
mediapackagev2 = ["mypy-boto3-mediapackagev2 (>=1.26.0,<1.27.0)"]
mediastore = ["mypy-boto3-mediastore (>=1.26.0,<1.27.0)"]
mediastore-data = ["mypy-boto3-mediastore-data (>=1.26.0,<1.27.0)"]
mediatailor = ["mypy-boto3-mediatailor (>=1.26.0,<1.27.0)"]
memorydb = ["mypy-boto3-memorydb (>=1.26.0,<1.27.0)"]
meteringmarketplace = ["mypy-boto3-meteringmarketplace (>=1.26.0,<1.27.0)"]
mgh = ["mypy-boto3-mgh (>=1.26.0,<1.27.0)"]
mgn = ["mypy-boto3-mgn (>=1.26.0,<1.27.0)"]
migration-hub-refactor-spaces = ["mypy-boto3-migration-hub-refactor-spaces (>=1.26.0,<1.27.0)"]
migrationhub-config = ["mypy-boto3-migrationhub-config (>=1.26.0,<1.27.0)"]
migrationhuborchestrator = ["mypy-boto3-migrationhuborchestrator (>=1.26.0,<1.27.0)"]
migrationhubstrategy = ["mypy-boto3-migrationhubstrategy (>=1.26.0,<1.27.0)"]
mobile = ["mypy-boto3-mobile (>=1.26.0,<1.27.0)"]
mq = ["mypy-boto3-mq (>=1.26.0,<1.27.0)"]
mturk = ["mypy-boto3-mturk (>=1.26.0,<1.27.0)"]
mwaa = ["mypy-boto3-mwaa (>=1.26.0,<1.27.0)"]
neptune = ["mypy-boto3-neptune (>=1.26.0,<1.27.0)"]
network-firewall = ["mypy-boto3-network-firewall (>=1.26.0,<1.27.0)"]
networkmanager = ["mypy-boto3-networkmanager (>=1.26.0,<1.27.0)"]
nimble = ["mypy-boto3-nimble (>=1.26.0,<1.27.0)"]
oam = ["mypy-boto3-oam (>=1.26.0,<1.27.0)"]
omics = ["mypy-boto3-omics (>=1.26.0,<1.27.0)"]
opensearch = ["mypy-boto3-opensearch (>=1.26.0,<1.27.0)"]
opensearchserverless = ["mypy-boto3-opensearchserverless (>=1.26.0,<1.27.0)"]
opsworks = ["mypy-boto3-opsworks (>=1.26.0,<1.27.0)"]
opsworkscm = ["mypy-boto3-opsworkscm (>=1.26.0,<1.27.0)"]
organizations = ["mypy-boto3-organizations (>=1.26.0,<1.27.0)"]
osis = ["mypy-boto3-osis (>=1.26.0,<1.27.0)"]
outposts = ["mypy-boto3-outposts (>=1.26.0,<1.27.0)"]
panorama = ["mypy-boto3-panorama (>=1.26.0,<1.27.0)"]
personalize = ["mypy-boto3-personalize (>=1.26.0,<1.27.0)"]
personalize-events = ["mypy-boto3-personalize-events (>=1.26.0,<1.27.0)"]
personalize-runtime = ["mypy-boto3-personalize-runtime (>=1.26.0,<1.27.0)"]
pi = ["mypy-boto3-pi (>=1.26.0,<1.27.0)"]
pinpoint = ["mypy-boto3-pinpoint (>=1.26.0,<1.27.0)"]
pinpoint-email = ["mypy-boto3-pinpoint-email (>=1.26.0,<1.27.0)"]
pinpoint-sms-voice = ["mypy-boto3-pinpoint-sms-voice (>=1.26.0,<1.27.0)"]
pinpoint-sms-voice-v2 = ["mypy-boto3-pinpoint-sms-voice-v2 (>=1.26.0,<1.27.0)"]
pipes = ["mypy-boto3-pipes (>=1.26.0,<1.27.0)"]
polly = ["mypy-boto3-polly (>=1.26.0,<1.27.0)"]
pricing = ["mypy-boto3-pricing (>=1.26.0,<1.27.0)"]
privatenetworks = ["mypy-boto3-privatenetworks (>=1.26.0,<1.27.0)"]
proton = ["mypy-boto3-proton (>=1.26.0,<1.27.0)"]
qldb = ["mypy-boto3-qldb (>=1.26.0,<1.27.0)"]
qldb-session = ["mypy-boto3-qldb-session (>=1.26.0,<1.27.0)"]
quicksight = ["mypy-boto3-quicksight (>=1.26.0,<1.27.0)"]
ram = ["mypy-boto3-ram (>=1.26.0,<1.27.0)"]
rbin = ["mypy-boto3-rbin (>=1.26.0,<1.27.0)"]
rds = ["mypy-boto3-rds (>=1.26.0,<1.27.0)"]
rds-data = ["mypy-boto3-rds-data (>=1.26.0,<1.27.0)"]
redshift = ["mypy-boto3-redshift (>=1.26.0,<1.27.0)"]
redshift-data = ["mypy-boto3-redshift-data (>=1.26.0,<1.27.0)"]
redshift-serverless = ["mypy-boto3-redshift-serverless (>=1.26.0,<1.27.0)"]
rekognition = ["mypy-boto3-rekognition (>=1.26.0,<1.27.0)"]
resiliencehub = ["mypy-boto3-resiliencehub (>=1.26.0,<1.27.0)"]
resource-explorer-2 = ["mypy-boto3-resource-explorer-2 (>=1.26.0,<1.27.0)"]
resource-groups = ["mypy-boto3-resource-groups (>=1.26.0,<1.27.0)"]
resourcegroupstaggingapi = ["mypy-boto3-resourcegroupstaggingapi (>=1.26.0,<1.27.0)"]
robomaker = ["mypy-boto3-robomaker (>=1.26.0,<1.27.0)"]
rolesanywhere = ["mypy-boto3-rolesanywhere (>=1.26.0,<1.27.0)"]
route53 = ["mypy-boto3-route53 (>=1.26.0,<1.27.0)"]
route53-recovery-cluster = ["mypy-boto3-route53-recovery-cluster (>=1.26.0,<1.27.0)"]
route53-recovery-control-config = ["mypy-boto3-route53-recovery-control-config (>=1.26.0,<1.27.0)"]
route53-recovery-readiness = ["mypy-boto3-route53-recovery-readiness (>=1.26.0,<1.27.0)"]
route53domains = ["mypy-boto3-route53domains (>=1.26.0,<1.27.0)"]
route53resolver = ["mypy-boto3-route53resolver (>=1.26.0,<1.27.0)"]
rum = ["mypy-boto3-rum (>=1.26.0,<1.27.0)"]
s3 = ["mypy-boto3-s3 (>=1.26.0,<1.27.0)"]
s3control = ["mypy-boto3-s3control (>=1.26.0,<1.27.0)"]
s3outposts = ["mypy-boto3-s3outposts (>=1.26.0,<1.27.0)"]
sagemaker = ["mypy-boto3-sagemaker (>=1.26.0,<1.27.0)"]
sagemaker-a2i-runtime = ["mypy-boto3-sagemaker-a2i-runtime (>=1.26.0,<1.27.0)"]
sagemaker-edge = ["mypy-boto3-sagemaker-edge (>=1.26.0,<1.27.0)"]
sagemaker-featurestore-runtime = ["mypy-boto3-sagemaker-featurestore-runtime (>=1.26.0,<1.27.0)"]
sagemaker-geospatial = ["mypy-boto3-sagemaker-geospatial (>=1.26.0,<1.27.0)"]
sagemaker-metrics = ["mypy-boto3-sagemaker-metrics (>=1.26.0,<1.27.0)"]
sagemaker-runtime = ["mypy-boto3-sagemaker-runtime (>=1.26.0,<1.27.0)"]
savingsplans = ["mypy-boto3-savingsplans (>=1.26.0,<1.27.0)"]
scheduler = ["mypy-boto3-scheduler (>=1.26.0,<1.27.0)"]
schemas = ["mypy-boto3-schemas (>=1.26.0,<1.27.0)"]
sdb = ["mypy-boto3-sdb (>=1.26.0,<1.27.0)"]
secretsmanager = ["mypy-boto3-secretsmanager (>=1.26.0,<1.27.0)"]
securityhub = ["mypy-boto3-securityhub (>=1.26.0,<1.27.0)"]
securitylake = ["mypy-boto3-securitylake (>=1.26.0,<1.27.0)"]
serverlessrepo = ["mypy-boto3-serverlessrepo (>=1.26.0,<1.27.0)"]
service-quotas = ["mypy-boto3-service-quotas (>=1.26.0,<1.27.0)"]
servicecatalog = ["mypy-boto3-servicecatalog (>=1.26.0,<1.27.0)"]
servicecatalog-appregistry = ["mypy-boto3-servicecatalog-appregistry (>=1.26.0,<1.27.0)"]
servicediscovery = ["mypy-boto3-servicediscovery (>=1.26.0,<1.27.0)"]
ses = ["mypy-boto3-ses (>=1.26.0,<1.27.0)"]
sesv2 = ["mypy-boto3-sesv2 (>=1.26.0,<1.27.0)"]
shield = ["mypy-boto3-shield (>=1.26.0,<1.27.0)"]
signer = ["mypy-boto3-signer (>=1.26.0,<1.27.0)"]
simspaceweaver = ["mypy-boto3-simspaceweaver (>=1.26.0,<1.27.0)"]
sms = ["mypy-boto3-sms (>=1.26.0,<1.27.0)"]
sms-voice = ["mypy-boto3-sms-voice (>=1.26.0,<1.27.0)"]
snow-device-management = ["mypy-boto3-snow-device-management (>=1.26.0,<1.27.0)"]
snowball = ["mypy-boto3-snowball (>=1.26.0,<1.27.0)"]
sns = ["mypy-boto3-sns (>=1.26.0,<1.27.0)"]
sqs = ["mypy-boto3-sqs (>=1.26.0,<1.27.0)"]
ssm = ["mypy-boto3-ssm (>=1.26.0,<1.27.0)"]
ssm-contacts = ["mypy-boto3-ssm-contacts (>=1.26.0,<1.27.0)"]
ssm-incidents = ["mypy-boto3-ssm-incidents (>=1.26.0,<1.27.0)"]
ssm-sap = ["mypy-boto3-ssm-sap (>=1.26.0,<1.27.0)"]
sso = ["mypy-boto3-sso (>=1.26.0,<1.27.0)"]
sso-admin = ["mypy-boto3-sso-admin (>=1.26.0,<1.27.0)"]
sso-oidc = ["mypy-boto3-sso-oidc (>=1.26.0,<1.27.0)"]
stepfunctions = ["mypy-boto3-stepfunctions (>=1.26.0,<1.27.0)"]
storagegateway = ["mypy-boto3-storagegateway (>=1.26.0,<1.27.0)"]
sts = ["mypy-boto3-sts (>=1.26.0,<1.27.0)"]
support = ["mypy-boto3-support (>=1.26.0,<1.27.0)"]
support-app = ["mypy-boto3-support-app (>=1.26.0,<1.27.0)"]
swf = ["mypy-boto3-swf (>=1.26.0,<1.27.0)"]
synthetics = ["mypy-boto3-synthetics (>=1.26.0,<1.27.0)"]
textract = ["mypy-boto3-textract (>=1.26.0,<1.27.0)"]
timestream-query = ["mypy-boto3-timestream-query (>=1.26.0,<1.27.0)"]
timestream-write = ["mypy-boto3-timestream-write (>=1.26.0,<1.27.0)"]
tnb = ["mypy-boto3-tnb (>=1.26.0,<1.27.0)"]
transcribe = ["mypy-boto3-transcribe (>=1.26.0,<1.27.0)"]
transfer = ["mypy-boto3-transfer (>=1.26.0,<1.27.0)"]
translate = ["mypy-boto3-translate (>=1.26.0,<1.27.0)"]
voice-id = ["mypy-boto3-voice-id (>=1.26.0,<1.27.0)"]
vpc-lattice = ["mypy-boto3-vpc-lattice (>=1.26.0,<1.27.0)"]
waf = ["mypy-boto3-waf (>=1.26.0,<1.27.0)"]
waf-regional = ["mypy-boto3-waf-regional (>=1.26.0,<1.27.0)"]
wafv2 = ["mypy-boto3-wafv2 (>=1.26.0,<1.27.0)"]
wellarchitected = ["mypy-boto3-wellarchitected (>=1.26.0,<1.27.0)"]
wisdom = ["mypy-boto3-wisdom (>=1.26.0,<1.27.0)"]
workdocs = ["mypy-boto3-workdocs (>=1.26.0,<1.27.0)"]
worklink = ["mypy-boto3-worklink (>=1.26.0,<1.27.0)"]
workmail = ["mypy-boto3-workmail (>=1.26.0,<1.27.0)"]
workmailmessageflow = ["mypy-boto3-workmailmessageflow (>=1.26.0,<1.27.0)"]
workspaces = ["mypy-boto3-workspaces (>=1.26.0,<1.27.0)"]
workspaces-web = ["mypy-boto3-workspaces-web (>=1.26.0,<1.27.0)"]
xray = ["mypy-boto3-xray (>=1.26.0,<1.27.0)"]
[[package]]
name = "botocore"
version = "1.29.137"
description = "Low-level, data-driven core of boto 3."
category = "main"
optional = false
python-versions = ">= 3.7"
files = [
{file = "botocore-1.29.137-py3-none-any.whl", hash = "sha256:5921a15c0a2a438f5ba9de4189d846f31d3770c690b0ffb237da5069444f2ba5"},
{file = "botocore-1.29.137.tar.gz", hash = "sha256:1909fe368c08b4879d52ac1e3963f8bfcbebe3a84366c3f2000a45bd4510b027"},
]
[package.dependencies]
jmespath = ">=0.7.1,<2.0.0"
python-dateutil = ">=2.1,<3.0.0"
urllib3 = ">=1.25.4,<1.27"
[package.extras]
crt = ["awscrt (==0.16.9)"]
[[package]]
name = "botocore-stubs"
version = "1.29.130"
description = "Type annotations and code completion for botocore"
category = "main"
optional = false
python-versions = ">=3.7,<4.0"
files = [
{file = "botocore_stubs-1.29.130-py3-none-any.whl", hash = "sha256:622c4a5cd740498439008d81c5ded612146f4f0d575341c12591f978edbbe733"},
{file = "botocore_stubs-1.29.130.tar.gz", hash = "sha256:5f6f1967d23c45834858a055cbf65b66863f9f28d05f32f57bf52864a13512d9"},
]
[package.dependencies]
types-awscrt = "*"
[[package]]
name = "cached-property"
version = "1.5.2"
description = "A decorator for caching properties in classes."
category = "main"
optional = false
python-versions = "*"
files = [
{file = "cached-property-1.5.2.tar.gz", hash = "sha256:9fa5755838eecbb2d234c3aa390bd80fbd3ac6b6869109bfc1b499f7bd89a130"},
{file = "cached_property-1.5.2-py2.py3-none-any.whl", hash = "sha256:df4f613cf7ad9a588cc381aaf4a512d26265ecebd5eb9e1ba12f1319eb85a6a0"},
]
[[package]]
name = "certifi"
version = "2023.5.7"
description = "Python package for providing Mozilla's CA Bundle."
category = "dev"
optional = false
python-versions = ">=3.6"
files = [
{file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"},
{file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"},
]
[[package]]
name = "cffi"
version = "1.15.1"
description = "Foreign Function Interface for Python calling C code."
category = "dev"
optional = false
python-versions = "*"
files = [
{file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"},
{file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"},
{file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"},
{file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"},
{file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"},
{file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"},
{file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"},
{file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"},
{file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"},
{file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"},
{file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"},
{file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"},
{file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"},
{file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"},
{file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"},
{file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"},
{file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"},
{file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"},
{file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"},
{file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"},
{file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"},
{file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"},
{file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"},
{file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"},
{file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"},
{file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"},
{file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"},
{file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"},
{file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"},
{file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"},
{file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"},
{file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"},
{file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"},
{file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"},