-
Notifications
You must be signed in to change notification settings - Fork 2
/
poetry.lock
1042 lines (963 loc) · 78.4 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
[[package]]
name = "attrs"
version = "22.1.0"
description = "Classes Without Boilerplate"
category = "main"
optional = false
python-versions = ">=3.5"
[package.extras]
dev = ["cloudpickle", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "mypy (>=0.900,!=0.940)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "sphinx", "sphinx-notfound-page", "zope.interface"]
docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"]
tests = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "zope.interface"]
tests-no-zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins"]
[[package]]
name = "bcrypt"
version = "4.0.1"
description = "Modern password hashing for your software and your servers"
category = "main"
optional = false
python-versions = ">=3.6"
[package.extras]
tests = ["pytest (>=3.2.1,!=3.3.0)"]
typecheck = ["mypy"]
[[package]]
name = "cffi"
version = "1.15.1"
description = "Foreign Function Interface for Python calling C code."
category = "main"
optional = false
python-versions = "*"
[package.dependencies]
pycparser = "*"
[[package]]
name = "click"
version = "8.1.3"
description = "Composable command line interface toolkit"
category = "main"
optional = false
python-versions = ">=3.7"
[package.dependencies]
colorama = {version = "*", markers = "platform_system == \"Windows\""}
[[package]]
name = "colorama"
version = "0.4.5"
description = "Cross-platform colored terminal text."
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[[package]]
name = "cryptography"
version = "38.0.1"
description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
cffi = ">=1.12"
[package.extras]
docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"]
docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"]
pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"]
sdist = ["setuptools-rust (>=0.11.4)"]
ssh = ["bcrypt (>=3.1.5)"]
test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pytz"]
[[package]]
name = "future"
version = "0.18.2"
description = "Clean single-source support for Python 3 and 2"
category = "main"
optional = false
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
[[package]]
name = "iniconfig"
version = "1.1.1"
description = "iniconfig: brain-dead simple config-ini parsing"
category = "main"
optional = false
python-versions = "*"
[[package]]
name = "iso8601"
version = "1.1.0"
description = "Simple module to parse ISO 8601 dates"
category = "main"
optional = false
python-versions = ">=3.6.2,<4.0"
[[package]]
name = "numpy"
version = "1.23.4"
description = "NumPy is the fundamental package for array computing with Python."
category = "main"
optional = false
python-versions = ">=3.8"
[[package]]
name = "opencv-python"
version = "4.6.0.66"
description = "Wrapper package for OpenCV python bindings."
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
numpy = [
{version = ">=1.21.2", markers = "python_version >= \"3.10\" or python_version >= \"3.6\" and platform_system == \"Darwin\" and platform_machine == \"arm64\""},
{version = ">=1.19.3", markers = "python_version >= \"3.6\" and platform_system == \"Linux\" and platform_machine == \"aarch64\" or python_version >= \"3.9\""},
{version = ">=1.14.5", markers = "python_version >= \"3.7\""},
{version = ">=1.17.3", markers = "python_version >= \"3.8\""},
]
[[package]]
name = "packaging"
version = "21.3"
description = "Core utilities for Python packages"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
pyparsing = ">=2.0.2,<3.0.5 || >3.0.5"
[[package]]
name = "paramiko"
version = "2.11.0"
description = "SSH2 protocol library"
category = "main"
optional = false
python-versions = "*"
[package.dependencies]
bcrypt = ">=3.1.3"
cryptography = ">=2.5"
pynacl = ">=1.0.1"
six = "*"
[package.extras]
all = ["bcrypt (>=3.1.3)", "gssapi (>=1.4.1)", "invoke (>=1.3)", "pyasn1 (>=0.1.7)", "pynacl (>=1.0.1)", "pywin32 (>=2.1.8)"]
ed25519 = ["bcrypt (>=3.1.3)", "pynacl (>=1.0.1)"]
gssapi = ["gssapi (>=1.4.1)", "pyasn1 (>=0.1.7)", "pywin32 (>=2.1.8)"]
invoke = ["invoke (>=1.3)"]
[[package]]
name = "pint"
version = "0.19.2"
description = "Physical quantities module"
category = "main"
optional = false
python-versions = ">=3.8"
[package.extras]
numpy = ["numpy (>=1.19.5)"]
test = ["pytest", "pytest-cov", "pytest-mpl", "pytest-subtests"]
uncertainties = ["uncertainties (>=3.1.6)"]
[[package]]
name = "pluggy"
version = "1.0.0"
description = "plugin and hook calling mechanisms for python"
category = "main"
optional = false
python-versions = ">=3.6"
[package.extras]
dev = ["pre-commit", "tox"]
testing = ["pytest", "pytest-benchmark"]
[[package]]
name = "py"
version = "1.11.0"
description = "library with cross-python path, ini-parsing, io, code, log facilities"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[[package]]
name = "pycparser"
version = "2.21"
description = "C parser in Python"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[[package]]
name = "pydantic"
version = "1.10.2"
description = "Data validation and settings management using python type hints"
category = "main"
optional = false
python-versions = ">=3.7"
[package.dependencies]
typing-extensions = ">=4.1.0"
[package.extras]
dotenv = ["python-dotenv (>=0.10.4)"]
email = ["email-validator (>=1.0.3)"]
[[package]]
name = "pyfrc"
version = "2022.1.5"
description = "Development tools library for python interpreter used for the FIRST Robotics Competition"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
pint = ">=0.11.0"
pynetconsole = ">=2.0.2"
pyntcore = ">=2022,<2023"
pytest = ">=3.9"
pytest-reraise = "*"
robotpy-hal = ">=2022.4.1.1,<2023"
robotpy-installer = ">=2022,<2023"
robotpy-wpiutil = ">=2022.4.1.1,<2023"
wpilib = ">=2022.4.1.1,<2023"
[[package]]
name = "pynacl"
version = "1.5.0"
description = "Python binding to the Networking and Cryptography (NaCl) library"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
cffi = ">=1.4.1"
[package.extras]
docs = ["sphinx (>=1.6.5)", "sphinx_rtd_theme"]
tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"]
[[package]]
name = "pynetconsole"
version = "2.0.4"
description = "A pure python implementation of a NetConsole listener"
category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "pynetworktables"
version = "2021.0.0"
description = "A pure Python implementation of NetworkTables, used for robot communications in the FIRST Robotics Competition."
category = "main"
optional = false
python-versions = ">=3.5"
[[package]]
name = "pyntcore"
version = "2022.4.1.0"
description = "Binary wrappers for the FRC ntcore library"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
pynetworktables = ">=2021.0.0,<2022.0.0"
robotpy-wpiutil = ">=2022.4.1.1,<2023.0.0"
[[package]]
name = "pyparsing"
version = "3.0.9"
description = "pyparsing module - Classes and methods to define and execute parsing grammars"
category = "main"
optional = false
python-versions = ">=3.6.8"
[package.extras]
diagrams = ["jinja2", "railroad-diagrams"]
[[package]]
name = "pytest"
version = "7.1.3"
description = "pytest: simple powerful testing with Python"
category = "main"
optional = false
python-versions = ">=3.7"
[package.dependencies]
attrs = ">=19.2.0"
colorama = {version = "*", markers = "sys_platform == \"win32\""}
iniconfig = "*"
packaging = "*"
pluggy = ">=0.12,<2.0"
py = ">=1.8.2"
tomli = ">=1.0.0"
[package.extras]
testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"]
[[package]]
name = "pytest-reraise"
version = "2.1.2"
description = "Make multi-threaded pytest test cases fail when they should"
category = "main"
optional = false
python-versions = ">=3.6.1,<4.0.0"
[package.dependencies]
pytest = ">=4.6"
[[package]]
name = "pyyaml"
version = "6.0"
description = "YAML parser and emitter for Python"
category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "robotpy"
version = "2022.4.8"
description = "Meta package to make installing robotpy easier"
category = "main"
optional = false
python-versions = ">=3.7"
[package.dependencies]
pyfrc = {version = ">=2022.1.5,<2023.0.0", markers = "platform_machine != \"armv7l\""}
pynetworktables = ">=2021.0.0,<2023.0.0.0"
pyntcore = ">=2022.4.1.0,<2023.0.0"
robotpy-commands-v2 = {version = ">=2022.4.1.1,<2023.0.0", optional = true, markers = "extra == \"commands2\""}
robotpy-ctre = {version = ">=2022.1.1,<2023.0.0", optional = true, markers = "extra == \"ctre\""}
robotpy-hal = ">=2022.4.1.2,<2023.0.0"
robotpy-halsim-gui = {version = ">=2022.4.1.1,<2023.0.0", markers = "platform_machine != \"armv7l\""}
robotpy-installer = {version = ">=2022.1.1,<2023.0.0", markers = "platform_machine != \"armv7l\""}
robotpy-rev = {version = ">=2022.0.1,<2023.0.0", optional = true, markers = "extra == \"rev\""}
robotpy-wpilib-utilities = ">=2022.0.5,<2023.0.0"
robotpy-wpimath = ">=2022.4.1.3,<2023.0.0"
robotpy-wpiutil = ">=2022.4.1.2,<2023.0.0"
wpilib = ">=2022.4.1.6,<2023.0.0"
[package.extras]
all = ["pyfrc (>=2022.1.5,<2023.0.0)", "pynetworktables (>=2021.0.0,<2023.0.0.0)", "pyntcore (>=2022.4.1.0,<2023.0.0)", "robotpy-commands-v1 (>=2022.4.1.0,<2023.0.0)", "robotpy-commands-v2 (>=2022.4.1.1,<2023.0.0)", "robotpy-ctre (>=2022.1.1,<2023.0.0)", "robotpy-hal (>=2022.4.1.2,<2023.0.0)", "robotpy-halsim-ds-socket (>=2022.4.1.0,<2023.0.0)", "robotpy-halsim-gui (>=2022.4.1.1,<2023.0.0)", "robotpy-halsim-ws (>=2022.4.1.0,<2023.0.0)", "robotpy-installer (>=2022.1.1,<2023.0.0)", "robotpy-navx (>=2022.0.2,<2023.0.0)", "robotpy-pathplannerlib (>=2022.2.3,<2023.0.0)", "robotpy-photonvision (>=2022.1.1,<2023.0.0)", "robotpy-playingwithfusion (>=2022.0.4,<2023.0.0)", "robotpy-rev (>=2022.0.1,<2023.0.0)", "robotpy-romi (>=2022.2.1.0,<2023.0.0)", "robotpy-wpilib-utilities (>=2022.0.5,<2023.0.0)", "robotpy-wpimath (>=2022.4.1.3,<2023.0.0)", "robotpy-wpiutil (>=2022.4.1.2,<2023.0.0)", "wpilib (>=2022.4.1.6,<2023.0.0)"]
commands = ["robotpy-commands-v1 (>=2022.4.1.0,<2023.0.0)"]
commands2 = ["robotpy-commands-v2 (>=2022.4.1.1,<2023.0.0)"]
ctre = ["robotpy-ctre (>=2022.1.1,<2023.0.0)"]
navx = ["robotpy-navx (>=2022.0.2,<2023.0.0)"]
pathplannerlib = ["robotpy-pathplannerlib (>=2022.2.3,<2023.0.0)"]
photonvision = ["robotpy-photonvision (>=2022.1.1,<2023.0.0)"]
playingwithfusion = ["robotpy-playingwithfusion (>=2022.0.4,<2023.0.0)"]
rev = ["robotpy-rev (>=2022.0.1,<2023.0.0)"]
romi = ["robotpy-romi (>=2022.2.1.0,<2023.0.0)"]
sim = ["robotpy-halsim-ds-socket (>=2022.4.1.0,<2023.0.0)", "robotpy-halsim-ws (>=2022.4.1.0,<2023.0.0)"]
[[package]]
name = "robotpy-commands-v2"
version = "2022.4.1.1"
description = "WPILib command framework v2"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
wpilib = ">=2022.4.1.0,<2023.0.0"
[[package]]
name = "robotpy-ctre"
version = "2022.1.1"
description = "Binary wrappers for the CTRE Phoenix library"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
wpilib = ">=2022.2.1.3,<2023.0.0"
[[package]]
name = "robotpy-hal"
version = "2022.4.1.2"
description = "Binary wrapper for FRC HAL"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
robotpy-wpiutil = ">=2022.4.1.1,<2023.0.0"
[[package]]
name = "robotpy-halsim-gui"
version = "2022.4.1.1"
description = "WPILib command framework"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
pyntcore = ">=2022.4.1.0,<2023.0.0"
robotpy-hal = ">=2022.4.1.0,<2023.0.0"
robotpy-wpimath = ">=2022.4.1.0,<2023.0.0"
robotpy-wpiutil = ">=2022.4.1.1,<2023.0.0"
[[package]]
name = "robotpy-installer"
version = "2022.1.1"
description = "Installation utility program for RobotPy"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
click = "*"
paramiko = "*"
[[package]]
name = "robotpy-rev"
version = "2022.0.1"
description = "REVLib for RobotPy"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
robotpy-wpimath = ">=2022.2.1.2,<2023.0.0"
robotpy-wpiutil = ">=2022.2.1.1,<2023.0.0"
wpilib = ">=2022.2.1.3,<2023.0.0"
[[package]]
name = "robotpy-toolkit-7407"
version = "0.5.1"
description = ""
category = "main"
optional = false
python-versions = ">=3.10,<4.0"
[package.dependencies]
pydantic = ">=1.9.0,<2.0.0"
robotpy = {version = ">=2022.4.8,<2023.0.0", extras = ["commands2", "ctre", "rev"]}
[[package]]
name = "robotpy-wpilib-utilities"
version = "2022.0.5"
description = "Useful utility functions/objects for RobotPy"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
pynetworktables = ">=2020.0.0"
wpilib = ">=2022.2.1.0,<2023.0.0"
[[package]]
name = "robotpy-wpimath"
version = "2022.4.1.3"
description = "Binary wrapper for FRC WPIMath library"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
robotpy-wpiutil = ">=2022.4.1.1,<2023.0.0"
[[package]]
name = "robotpy-wpiutil"
version = "2022.4.1.2"
description = "Binary wrapper for FRC WPIUtil library"
category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "serial"
version = "0.0.97"
description = "A framework for serializing/deserializing JSON/YAML/XML into python class instances and vice versa"
category = "main"
optional = false
python-versions = "*"
[package.dependencies]
future = ">=0.17.1"
iso8601 = ">=0.1.12"
pyyaml = ">=3.13"
[[package]]
name = "six"
version = "1.16.0"
description = "Python 2 and 3 compatibility utilities"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
[[package]]
name = "tomli"
version = "2.0.1"
description = "A lil' TOML parser"
category = "main"
optional = false
python-versions = ">=3.7"
[[package]]
name = "typing-extensions"
version = "4.4.0"
description = "Backported and Experimental Type Hints for Python 3.7+"
category = "main"
optional = false
python-versions = ">=3.7"
[[package]]
name = "wpilib"
version = "2022.4.1.6"
description = "Binary wrapper for FRC WPILib"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
pyntcore = ">=2022.4.1.0,<2023.0.0"
robotpy-hal = ">=2022.4.1.0,<2023.0.0"
robotpy-wpimath = ">=2022.4.1.0,<2023.0.0"
robotpy-wpiutil = ">=2022.4.1.1,<2023.0.0"
[metadata]
lock-version = "1.1"
python-versions = "^3.10"
content-hash = "6ffdffd85ceb61792cb62753f81f89f7d63d5c05c92acf0678a4be083b5e6d96"
[metadata.files]
attrs = [
{file = "attrs-22.1.0-py2.py3-none-any.whl", hash = "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c"},
{file = "attrs-22.1.0.tar.gz", hash = "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6"},
]
bcrypt = [
{file = "bcrypt-4.0.1-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:b1023030aec778185a6c16cf70f359cbb6e0c289fd564a7cfa29e727a1c38f8f"},
{file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:08d2947c490093a11416df18043c27abe3921558d2c03e2076ccb28a116cb6d0"},
{file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0eaa47d4661c326bfc9d08d16debbc4edf78778e6aaba29c1bc7ce67214d4410"},
{file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae88eca3024bb34bb3430f964beab71226e761f51b912de5133470b649d82344"},
{file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:a522427293d77e1c29e303fc282e2d71864579527a04ddcfda6d4f8396c6c36a"},
{file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:fbdaec13c5105f0c4e5c52614d04f0bca5f5af007910daa8b6b12095edaa67b3"},
{file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:ca3204d00d3cb2dfed07f2d74a25f12fc12f73e606fcaa6975d1f7ae69cacbb2"},
{file = "bcrypt-4.0.1-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:089098effa1bc35dc055366740a067a2fc76987e8ec75349eb9484061c54f535"},
{file = "bcrypt-4.0.1-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:e9a51bbfe7e9802b5f3508687758b564069ba937748ad7b9e890086290d2f79e"},
{file = "bcrypt-4.0.1-cp36-abi3-win32.whl", hash = "sha256:2caffdae059e06ac23fce178d31b4a702f2a3264c20bfb5ff541b338194d8fab"},
{file = "bcrypt-4.0.1-cp36-abi3-win_amd64.whl", hash = "sha256:8a68f4341daf7522fe8d73874de8906f3a339048ba406be6ddc1b3ccb16fc0d9"},
{file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf4fa8b2ca74381bb5442c089350f09a3f17797829d958fad058d6e44d9eb83c"},
{file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:67a97e1c405b24f19d08890e7ae0c4f7ce1e56a712a016746c8b2d7732d65d4b"},
{file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b3b85202d95dd568efcb35b53936c5e3b3600c7cdcc6115ba461df3a8e89f38d"},
{file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbb03eec97496166b704ed663a53680ab57c5084b2fc98ef23291987b525cb7d"},
{file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:5ad4d32a28b80c5fa6671ccfb43676e8c1cc232887759d1cd7b6f56ea4355215"},
{file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b57adba8a1444faf784394de3436233728a1ecaeb6e07e8c22c8848f179b893c"},
{file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:705b2cea8a9ed3d55b4491887ceadb0106acf7c6387699fca771af56b1cdeeda"},
{file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:2b3ac11cf45161628f1f3733263e63194f22664bf4d0c0f3ab34099c02134665"},
{file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3100851841186c25f127731b9fa11909ab7b1df6fc4b9f8353f4f1fd952fbf71"},
{file = "bcrypt-4.0.1.tar.gz", hash = "sha256:27d375903ac8261cfe4047f6709d16f7d18d39b1ec92aaf72af989552a650ebd"},
]
cffi = [
{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"},
{file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"},
{file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"},
{file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"},
{file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"},
{file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"},
{file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"},
{file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"},
{file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"},
{file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"},
{file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"},
{file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"},
{file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"},
{file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"},
{file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"},
{file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"},
{file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"},
{file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"},
{file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"},
{file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"},
{file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"},
{file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"},
{file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"},
{file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"},
{file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"},
{file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"},
{file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"},
{file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"},
{file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"},
{file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"},
{file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"},
]
click = [
{file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"},
{file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
]
colorama = [
{file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"},
{file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"},
]
cryptography = [
{file = "cryptography-38.0.1-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:10d1f29d6292fc95acb597bacefd5b9e812099d75a6469004fd38ba5471a977f"},
{file = "cryptography-38.0.1-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:3fc26e22840b77326a764ceb5f02ca2d342305fba08f002a8c1f139540cdfaad"},
{file = "cryptography-38.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:3b72c360427889b40f36dc214630e688c2fe03e16c162ef0aa41da7ab1455153"},
{file = "cryptography-38.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:194044c6b89a2f9f169df475cc167f6157eb9151cc69af8a2a163481d45cc407"},
{file = "cryptography-38.0.1-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca9f6784ea96b55ff41708b92c3f6aeaebde4c560308e5fbbd3173fbc466e94e"},
{file = "cryptography-38.0.1-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:16fa61e7481f4b77ef53991075de29fc5bacb582a1244046d2e8b4bb72ef66d0"},
{file = "cryptography-38.0.1-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d4ef6cc305394ed669d4d9eebf10d3a101059bdcf2669c366ec1d14e4fb227bd"},
{file = "cryptography-38.0.1-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:3261725c0ef84e7592597606f6583385fed2a5ec3909f43bc475ade9729a41d6"},
{file = "cryptography-38.0.1-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:0297ffc478bdd237f5ca3a7dc96fc0d315670bfa099c04dc3a4a2172008a405a"},
{file = "cryptography-38.0.1-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:89ed49784ba88c221756ff4d4755dbc03b3c8d2c5103f6d6b4f83a0fb1e85294"},
{file = "cryptography-38.0.1-cp36-abi3-win32.whl", hash = "sha256:ac7e48f7e7261207d750fa7e55eac2d45f720027d5703cd9007e9b37bbb59ac0"},
{file = "cryptography-38.0.1-cp36-abi3-win_amd64.whl", hash = "sha256:ad7353f6ddf285aeadfaf79e5a6829110106ff8189391704c1d8801aa0bae45a"},
{file = "cryptography-38.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:896dd3a66959d3a5ddcfc140a53391f69ff1e8f25d93f0e2e7830c6de90ceb9d"},
{file = "cryptography-38.0.1-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:d3971e2749a723e9084dd507584e2a2761f78ad2c638aa31e80bc7a15c9db4f9"},
{file = "cryptography-38.0.1-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:79473cf8a5cbc471979bd9378c9f425384980fcf2ab6534b18ed7d0d9843987d"},
{file = "cryptography-38.0.1-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:d9e69ae01f99abe6ad646947bba8941e896cb3aa805be2597a0400e0764b5818"},
{file = "cryptography-38.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5067ee7f2bce36b11d0e334abcd1ccf8c541fc0bbdaf57cdd511fdee53e879b6"},
{file = "cryptography-38.0.1-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:3e3a2599e640927089f932295a9a247fc40a5bdf69b0484532f530471a382750"},
{file = "cryptography-38.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c2e5856248a416767322c8668ef1845ad46ee62629266f84a8f007a317141013"},
{file = "cryptography-38.0.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:64760ba5331e3f1794d0bcaabc0d0c39e8c60bf67d09c93dc0e54189dfd7cfe5"},
{file = "cryptography-38.0.1-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:b6c9b706316d7b5a137c35e14f4103e2115b088c412140fdbd5f87c73284df61"},
{file = "cryptography-38.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0163a849b6f315bf52815e238bc2b2346604413fa7c1601eea84bcddb5fb9ac"},
{file = "cryptography-38.0.1-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:d1a5bd52d684e49a36582193e0b89ff267704cd4025abefb9e26803adeb3e5fb"},
{file = "cryptography-38.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:765fa194a0f3372d83005ab83ab35d7c5526c4e22951e46059b8ac678b44fa5a"},
{file = "cryptography-38.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:52e7bee800ec869b4031093875279f1ff2ed12c1e2f74923e8f49c916afd1d3b"},
{file = "cryptography-38.0.1.tar.gz", hash = "sha256:1db3d807a14931fa317f96435695d9ec386be7b84b618cc61cfa5d08b0ae33d7"},
]
future = [
{file = "future-0.18.2.tar.gz", hash = "sha256:b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d"},
]
iniconfig = [
{file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"},
{file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"},
]
iso8601 = [
{file = "iso8601-1.1.0-py3-none-any.whl", hash = "sha256:8400e90141bf792bce2634df533dc57e3bee19ea120a87bebcd3da89a58ad73f"},
{file = "iso8601-1.1.0.tar.gz", hash = "sha256:32811e7b81deee2063ea6d2e94f8819a86d1f3811e49d23623a41fa832bef03f"},
]
numpy = [
{file = "numpy-1.23.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:95d79ada05005f6f4f337d3bb9de8a7774f259341c70bc88047a1f7b96a4bcb2"},
{file = "numpy-1.23.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:926db372bc4ac1edf81cfb6c59e2a881606b409ddc0d0920b988174b2e2a767f"},
{file = "numpy-1.23.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c237129f0e732885c9a6076a537e974160482eab8f10db6292e92154d4c67d71"},
{file = "numpy-1.23.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8365b942f9c1a7d0f0dc974747d99dd0a0cdfc5949a33119caf05cb314682d3"},
{file = "numpy-1.23.4-cp310-cp310-win32.whl", hash = "sha256:2341f4ab6dba0834b685cce16dad5f9b6606ea8a00e6da154f5dbded70fdc4dd"},
{file = "numpy-1.23.4-cp310-cp310-win_amd64.whl", hash = "sha256:d331afac87c92373826af83d2b2b435f57b17a5c74e6268b79355b970626e329"},
{file = "numpy-1.23.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:488a66cb667359534bc70028d653ba1cf307bae88eab5929cd707c761ff037db"},
{file = "numpy-1.23.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ce03305dd694c4873b9429274fd41fc7eb4e0e4dea07e0af97a933b079a5814f"},
{file = "numpy-1.23.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8981d9b5619569899666170c7c9748920f4a5005bf79c72c07d08c8a035757b0"},
{file = "numpy-1.23.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a70a7d3ce4c0e9284e92285cba91a4a3f5214d87ee0e95928f3614a256a1488"},
{file = "numpy-1.23.4-cp311-cp311-win32.whl", hash = "sha256:5e13030f8793e9ee42f9c7d5777465a560eb78fa7e11b1c053427f2ccab90c79"},
{file = "numpy-1.23.4-cp311-cp311-win_amd64.whl", hash = "sha256:7607b598217745cc40f751da38ffd03512d33ec06f3523fb0b5f82e09f6f676d"},
{file = "numpy-1.23.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7ab46e4e7ec63c8a5e6dbf5c1b9e1c92ba23a7ebecc86c336cb7bf3bd2fb10e5"},
{file = "numpy-1.23.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a8aae2fb3180940011b4862b2dd3756616841c53db9734b27bb93813cd79fce6"},
{file = "numpy-1.23.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c053d7557a8f022ec823196d242464b6955a7e7e5015b719e76003f63f82d0f"},
{file = "numpy-1.23.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0882323e0ca4245eb0a3d0a74f88ce581cc33aedcfa396e415e5bba7bf05f68"},
{file = "numpy-1.23.4-cp38-cp38-win32.whl", hash = "sha256:dada341ebb79619fe00a291185bba370c9803b1e1d7051610e01ed809ef3a4ba"},
{file = "numpy-1.23.4-cp38-cp38-win_amd64.whl", hash = "sha256:0fe563fc8ed9dc4474cbf70742673fc4391d70f4363f917599a7fa99f042d5a8"},
{file = "numpy-1.23.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c67b833dbccefe97cdd3f52798d430b9d3430396af7cdb2a0c32954c3ef73894"},
{file = "numpy-1.23.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f76025acc8e2114bb664294a07ede0727aa75d63a06d2fae96bf29a81747e4a7"},
{file = "numpy-1.23.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12ac457b63ec8ded85d85c1e17d85efd3c2b0967ca39560b307a35a6703a4735"},
{file = "numpy-1.23.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95de7dc7dc47a312f6feddd3da2500826defdccbc41608d0031276a24181a2c0"},
{file = "numpy-1.23.4-cp39-cp39-win32.whl", hash = "sha256:f2f390aa4da44454db40a1f0201401f9036e8d578a25f01a6e237cea238337ef"},
{file = "numpy-1.23.4-cp39-cp39-win_amd64.whl", hash = "sha256:f260da502d7441a45695199b4e7fd8ca87db659ba1c78f2bbf31f934fe76ae0e"},
{file = "numpy-1.23.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:61be02e3bf810b60ab74e81d6d0d36246dbfb644a462458bb53b595791251911"},
{file = "numpy-1.23.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:296d17aed51161dbad3c67ed6d164e51fcd18dbcd5dd4f9d0a9c6055dce30810"},
{file = "numpy-1.23.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:4d52914c88b4930dafb6c48ba5115a96cbab40f45740239d9f4159c4ba779962"},
{file = "numpy-1.23.4.tar.gz", hash = "sha256:ed2cc92af0efad20198638c69bb0fc2870a58dabfba6eb722c933b48556c686c"},
]
opencv-python = [
{file = "opencv-python-4.6.0.66.tar.gz", hash = "sha256:c5bfae41ad4031e66bb10ec4a0a2ffd3e514d092652781e8b1ac98d1b59f1158"},
{file = "opencv_python-4.6.0.66-cp36-abi3-macosx_10_15_x86_64.whl", hash = "sha256:e6e448b62afc95c5b58f97e87ef84699e6607fe5c58730a03301c52496005cae"},
{file = "opencv_python-4.6.0.66-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5af8ba35a4fcb8913ffb86e92403e9a656a4bff4a645d196987468f0f8947875"},
{file = "opencv_python-4.6.0.66-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbdc84a9b4ea2cbae33861652d25093944b9959279200b7ae0badd32439f74de"},
{file = "opencv_python-4.6.0.66-cp36-abi3-win32.whl", hash = "sha256:f482e78de6e7b0b060ff994ffd859bddc3f7f382bb2019ef157b0ea8ca8712f5"},
{file = "opencv_python-4.6.0.66-cp36-abi3-win_amd64.whl", hash = "sha256:0dc82a3d8630c099d2f3ac1b1aabee164e8188db54a786abb7a4e27eba309440"},
{file = "opencv_python-4.6.0.66-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:6e32af22e3202748bd233ed8f538741876191863882eba44e332d1a34993165b"},
]
packaging = [
{file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
{file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"},
]
paramiko = [
{file = "paramiko-2.11.0-py2.py3-none-any.whl", hash = "sha256:655f25dc8baf763277b933dfcea101d636581df8d6b9774d1fb653426b72c270"},
{file = "paramiko-2.11.0.tar.gz", hash = "sha256:003e6bee7c034c21fbb051bf83dc0a9ee4106204dd3c53054c71452cc4ec3938"},
]
pint = [
{file = "Pint-0.19.2.tar.gz", hash = "sha256:e1d4989ff510b378dad64f91711e7bdabe5ca78d75b06a18569ac454678c4baf"},
]
pluggy = [
{file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"},
{file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"},
]
py = [
{file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"},
{file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"},
]
pycparser = [
{file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
{file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
]
pydantic = [
{file = "pydantic-1.10.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bb6ad4489af1bac6955d38ebcb95079a836af31e4c4f74aba1ca05bb9f6027bd"},
{file = "pydantic-1.10.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a1f5a63a6dfe19d719b1b6e6106561869d2efaca6167f84f5ab9347887d78b98"},
{file = "pydantic-1.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:352aedb1d71b8b0736c6d56ad2bd34c6982720644b0624462059ab29bd6e5912"},
{file = "pydantic-1.10.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19b3b9ccf97af2b7519c42032441a891a5e05c68368f40865a90eb88833c2559"},
{file = "pydantic-1.10.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e9069e1b01525a96e6ff49e25876d90d5a563bc31c658289a8772ae186552236"},
{file = "pydantic-1.10.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:355639d9afc76bcb9b0c3000ddcd08472ae75318a6eb67a15866b87e2efa168c"},
{file = "pydantic-1.10.2-cp310-cp310-win_amd64.whl", hash = "sha256:ae544c47bec47a86bc7d350f965d8b15540e27e5aa4f55170ac6a75e5f73b644"},
{file = "pydantic-1.10.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a4c805731c33a8db4b6ace45ce440c4ef5336e712508b4d9e1aafa617dc9907f"},
{file = "pydantic-1.10.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d49f3db871575e0426b12e2f32fdb25e579dea16486a26e5a0474af87cb1ab0a"},
{file = "pydantic-1.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37c90345ec7dd2f1bcef82ce49b6235b40f282b94d3eec47e801baf864d15525"},
{file = "pydantic-1.10.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b5ba54d026c2bd2cb769d3468885f23f43710f651688e91f5fb1edcf0ee9283"},
{file = "pydantic-1.10.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:05e00dbebbe810b33c7a7362f231893183bcc4251f3f2ff991c31d5c08240c42"},
{file = "pydantic-1.10.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2d0567e60eb01bccda3a4df01df677adf6b437958d35c12a3ac3e0f078b0ee52"},
{file = "pydantic-1.10.2-cp311-cp311-win_amd64.whl", hash = "sha256:c6f981882aea41e021f72779ce2a4e87267458cc4d39ea990729e21ef18f0f8c"},
{file = "pydantic-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4aac8e7103bf598373208f6299fa9a5cfd1fc571f2d40bf1dd1955a63d6eeb5"},
{file = "pydantic-1.10.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81a7b66c3f499108b448f3f004801fcd7d7165fb4200acb03f1c2402da73ce4c"},
{file = "pydantic-1.10.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bedf309630209e78582ffacda64a21f96f3ed2e51fbf3962d4d488e503420254"},
{file = "pydantic-1.10.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:9300fcbebf85f6339a02c6994b2eb3ff1b9c8c14f502058b5bf349d42447dcf5"},
{file = "pydantic-1.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:216f3bcbf19c726b1cc22b099dd409aa371f55c08800bcea4c44c8f74b73478d"},
{file = "pydantic-1.10.2-cp37-cp37m-win_amd64.whl", hash = "sha256:dd3f9a40c16daf323cf913593083698caee97df2804aa36c4b3175d5ac1b92a2"},
{file = "pydantic-1.10.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b97890e56a694486f772d36efd2ba31612739bc6f3caeee50e9e7e3ebd2fdd13"},
{file = "pydantic-1.10.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9cabf4a7f05a776e7793e72793cd92cc865ea0e83a819f9ae4ecccb1b8aa6116"},
{file = "pydantic-1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06094d18dd5e6f2bbf93efa54991c3240964bb663b87729ac340eb5014310624"},
{file = "pydantic-1.10.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc78cc83110d2f275ec1970e7a831f4e371ee92405332ebfe9860a715f8336e1"},
{file = "pydantic-1.10.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ee433e274268a4b0c8fde7ad9d58ecba12b069a033ecc4645bb6303c062d2e9"},
{file = "pydantic-1.10.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:7c2abc4393dea97a4ccbb4ec7d8658d4e22c4765b7b9b9445588f16c71ad9965"},
{file = "pydantic-1.10.2-cp38-cp38-win_amd64.whl", hash = "sha256:0b959f4d8211fc964772b595ebb25f7652da3f22322c007b6fed26846a40685e"},
{file = "pydantic-1.10.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c33602f93bfb67779f9c507e4d69451664524389546bacfe1bee13cae6dc7488"},
{file = "pydantic-1.10.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5760e164b807a48a8f25f8aa1a6d857e6ce62e7ec83ea5d5c5a802eac81bad41"},
{file = "pydantic-1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6eb843dcc411b6a2237a694f5e1d649fc66c6064d02b204a7e9d194dff81eb4b"},
{file = "pydantic-1.10.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b8795290deaae348c4eba0cebb196e1c6b98bdbe7f50b2d0d9a4a99716342fe"},
{file = "pydantic-1.10.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:e0bedafe4bc165ad0a56ac0bd7695df25c50f76961da29c050712596cf092d6d"},
{file = "pydantic-1.10.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2e05aed07fa02231dbf03d0adb1be1d79cabb09025dd45aa094aa8b4e7b9dcda"},
{file = "pydantic-1.10.2-cp39-cp39-win_amd64.whl", hash = "sha256:c1ba1afb396148bbc70e9eaa8c06c1716fdddabaf86e7027c5988bae2a829ab6"},
{file = "pydantic-1.10.2-py3-none-any.whl", hash = "sha256:1b6ee725bd6e83ec78b1aa32c5b1fa67a3a65badddde3976bca5fe4568f27709"},
{file = "pydantic-1.10.2.tar.gz", hash = "sha256:91b8e218852ef6007c2b98cd861601c6a09f1aa32bbbb74fab5b1c33d4a1e410"},
]
pyfrc = [
{file = "pyfrc-2022.1.5-py3-none-any.whl", hash = "sha256:97956439fd53d3e4242e18c60b05ccb51fc1d916b7cff10aacaa4dceeb98dae7"},
{file = "pyfrc-2022.1.5.tar.gz", hash = "sha256:5cfcc8a06f0ab21c91c91724dd5156418bf3e31b7c3e02efe156e5257d96984a"},
]
pynacl = [
{file = "PyNaCl-1.5.0-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1"},
{file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92"},
{file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394"},
{file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d"},
{file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858"},
{file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b"},
{file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff"},
{file = "PyNaCl-1.5.0-cp36-abi3-win32.whl", hash = "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543"},
{file = "PyNaCl-1.5.0-cp36-abi3-win_amd64.whl", hash = "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93"},
{file = "PyNaCl-1.5.0.tar.gz", hash = "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba"},
]
pynetconsole = [
{file = "pynetconsole-2.0.4-py3-none-any.whl", hash = "sha256:3f6b51e3c943e900578ce92a85104d45784ea522863b025816cc7d580bd00069"},
{file = "pynetconsole-2.0.4.tar.gz", hash = "sha256:a02a9a6538b63ab63ffb480a0e5c1485aa5f393da6a20f780a6b082c971762d5"},
]
pynetworktables = [
{file = "pynetworktables-2021.0.0-py3-none-any.whl", hash = "sha256:54604b1993515c43890be058263f158c1d168c69bedd802f0de644964cf3840d"},
{file = "pynetworktables-2021.0.0.tar.gz", hash = "sha256:91167948e66c29d5c90f85f3e249403f4d2ebf11368b93f9b968ef315388c73c"},
]
pyntcore = [
{file = "pyntcore-2022.4.1.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:2b76091d82db90f644b345687ec5656dabcf9b74c29ab572b00e20f387c90e66"},
{file = "pyntcore-2022.4.1.0-cp310-cp310-manylinux_2_27_x86_64.whl", hash = "sha256:dd736d1a87232481b4d0effd95930793209d0b283048fae949075a42fc766f4b"},
{file = "pyntcore-2022.4.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:120af9b82e9bc414013562a911569de87fbbf346d867ef7e41b0f526e4f20fd3"},
{file = "pyntcore-2022.4.1.0-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:8f535c3346037cdf151131c8c34862ae3fb67c7de02c0fe220eb622f1fce35c0"},
{file = "pyntcore-2022.4.1.0-cp36-cp36m-manylinux_2_27_x86_64.whl", hash = "sha256:ce555d83e3a33b435ac437ef1d5bb26da5c2758ba7fe771dc2d406cabb7cb38b"},
{file = "pyntcore-2022.4.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:d665e0d4fe4ca7156288dbcbe2c181178b90bb6ce3542e244d9870c8344b7194"},
{file = "pyntcore-2022.4.1.0-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:0939b2b1386472daf74178d3713b1d6b9c7aaf10e52fb5a848f9bfdc1e591e5f"},
{file = "pyntcore-2022.4.1.0-cp37-cp37m-manylinux_2_27_x86_64.whl", hash = "sha256:73603cc3349b20bc64ad893e7a1463d393d690561728efe8ec1b2425fd62dd51"},
{file = "pyntcore-2022.4.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:21b99be3c22960a417219cd9907552aeca7a5e957a90bd85e00d435f52b070b2"},
{file = "pyntcore-2022.4.1.0-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:9e9bcdff1f2d78dea373f7250c63ba73519ffa82946356682fa395a743a33ed2"},
{file = "pyntcore-2022.4.1.0-cp38-cp38-manylinux_2_27_x86_64.whl", hash = "sha256:e6cf1c78c9dd0fec339cb1511e78b457a5f9706d99e0a962e5c9ad360a3deca4"},
{file = "pyntcore-2022.4.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:983d8e59b4f97b72a82760a44e28b4466e1af6e2a5e7be25b59218caa92f995c"},
{file = "pyntcore-2022.4.1.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:5ebf249aeb659e2c091f6959ed22d0aae54022b4923db524aa2adaa55b18ea61"},
{file = "pyntcore-2022.4.1.0-cp39-cp39-manylinux_2_27_x86_64.whl", hash = "sha256:48c56f312681bd77be696d130611b80322f9fc23a4a7d11f8237c7c4727d3e7a"},
{file = "pyntcore-2022.4.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:8990c3b3db210fd5177414b4af388eff26072378939deca100face873449e3c0"},
{file = "pyntcore-2022.4.1.0.tar.gz", hash = "sha256:e6738d1a76af901e5f44e81d30bfe3c310be06caa1a8651921e88546038f4625"},
]
pyparsing = [
{file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"},
{file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"},
]
pytest = [
{file = "pytest-7.1.3-py3-none-any.whl", hash = "sha256:1377bda3466d70b55e3f5cecfa55bb7cfcf219c7964629b967c37cf0bda818b7"},
{file = "pytest-7.1.3.tar.gz", hash = "sha256:4f365fec2dff9c1162f834d9f18af1ba13062db0c708bf7b946f8a5c76180c39"},
]
pytest-reraise = [
{file = "pytest-reraise-2.1.2.tar.gz", hash = "sha256:5ab59bd0e2028be095289e6dfc9e36cc0b56936465278f3223e81bea0f2d1c70"},
{file = "pytest_reraise-2.1.2-py3-none-any.whl", hash = "sha256:c22430d33b2cc18905959d7af28978e371113fcc6ef67b5fec95efcd80b88c16"},
]
pyyaml = [
{file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"},
{file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"},
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"},
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"},
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"},
{file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"},
{file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"},
{file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"},
{file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"},
{file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"},
{file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"},
{file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"},
{file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"},
{file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"},
{file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"},
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"},
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"},
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"},
{file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"},
{file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"},
{file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"},
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"},
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"},
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"},
{file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"},
{file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"},
{file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"},
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"},
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"},
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"},
{file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"},
{file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"},
{file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"},
{file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"},
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"},
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"},
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"},
{file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"},
{file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"},
{file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"},
]
robotpy = [
{file = "robotpy-2022.4.8-py3-none-any.whl", hash = "sha256:2afc74e041f7520b6dd214a35b79dd36b3765e12623f39e46f2341ba323154bf"},
{file = "robotpy-2022.4.8.tar.gz", hash = "sha256:71a58289a76013172bcd769bee5aa3c607fa2c7a8e1a80b5f59d7db336788cce"},
]
robotpy-commands-v2 = [
{file = "robotpy-commands-v2-2022.4.1.1.tar.gz", hash = "sha256:37e7a9ec77f3accc24c8ca59778c4ae2b4b07e3718cd7f5f10ba5a48d1871a8c"},
{file = "robotpy_commands_v2-2022.4.1.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:b8433033c6626a7eeb46e5912d3a8ad71b04255c46c3e53e24f67ca9311e3e08"},
{file = "robotpy_commands_v2-2022.4.1.1-cp310-cp310-manylinux_2_27_x86_64.whl", hash = "sha256:eda5ee6239a1345b586e16df4e06d2ad3e158c92013b5f563c56f470ee6696a6"},
{file = "robotpy_commands_v2-2022.4.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:6834863bc5659d2969ef1fa048d4d529eb5f15fb08b22a52a83c294f92d8b2fe"},
{file = "robotpy_commands_v2-2022.4.1.1-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:478fae0720481eaf5151b24ee30cdf531906cfc700421cef2e50f253c1f67b2e"},
{file = "robotpy_commands_v2-2022.4.1.1-cp36-cp36m-manylinux_2_27_x86_64.whl", hash = "sha256:1734b5b3b434660cc826bdd999f92c7a89ac14f1d47616db05b11951bd74cf40"},
{file = "robotpy_commands_v2-2022.4.1.1-cp36-cp36m-win_amd64.whl", hash = "sha256:290f5406ed8b4b89a4c196442adfd227ed2aac583f9d3bbb86031bc372731e16"},
{file = "robotpy_commands_v2-2022.4.1.1-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:0d2b7899b946cbbb0da653cd6806c7f46e5bdf2f8046822553ba68465a6b491a"},
{file = "robotpy_commands_v2-2022.4.1.1-cp37-cp37m-manylinux_2_27_x86_64.whl", hash = "sha256:06bc058a51ace4de0dea789b993c3eed60e9916d94ce2cadddc932577f80b8e1"},
{file = "robotpy_commands_v2-2022.4.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:947789556351924c523c56255c142428930a00096c376697ce3a2265f5ff0116"},
{file = "robotpy_commands_v2-2022.4.1.1-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:4db504b1ae108a3d8028f70353474a49502cc5d2d1e54a068ee0580f1dbd56ab"},
{file = "robotpy_commands_v2-2022.4.1.1-cp38-cp38-manylinux_2_27_x86_64.whl", hash = "sha256:6fdfee275a298cc3c81c200f7bf0cba020043f8beee783207119305f198d5194"},
{file = "robotpy_commands_v2-2022.4.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:1dfccd14eefd365646b34b094052e46d138a77ec585537d9fb3864f307994254"},
{file = "robotpy_commands_v2-2022.4.1.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:688e7a73347c7f6eed12757ea04620f5b31253bb1df3c5e05214b04f8f42c820"},
{file = "robotpy_commands_v2-2022.4.1.1-cp39-cp39-manylinux_2_27_x86_64.whl", hash = "sha256:c6908f75181e4b1f6f09de0318ec11b470e0b34897ccaf6a409275ce90360284"},
{file = "robotpy_commands_v2-2022.4.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:3a6d008fcfeb4a6928ee4bf7f109e801a33a5f48da73ed319f0b19b1a56536b5"},
]
robotpy-ctre = [
{file = "robotpy-ctre-2022.1.1.tar.gz", hash = "sha256:2acd29ece3a61a1542dec868937ba07b035c4aba40630859da3fcefb24322ce5"},
{file = "robotpy_ctre-2022.1.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:310f5ee248128fca9a43a5a4284a647aa3666a3347507a0f011ce240443518ec"},
{file = "robotpy_ctre-2022.1.1-cp310-cp310-manylinux_2_27_x86_64.whl", hash = "sha256:9fc0d178727c4f8316d3e7fc73c431d1e445a256f85c9bf1099704fea4ba1154"},
{file = "robotpy_ctre-2022.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:38f78fb06b8d48194f7698166408dada542bc50f88acc7c9a95111ecb7b5b7c9"},
{file = "robotpy_ctre-2022.1.1-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:5629c1d79a951b216469dbb925b557d11c2d1555f92339c12f28825e6d406b94"},
{file = "robotpy_ctre-2022.1.1-cp36-cp36m-manylinux_2_27_x86_64.whl", hash = "sha256:1e66a0412ab4bcffdf83f42ba67fd56c9675d84fc47799e20977d5c1599cd4c3"},
{file = "robotpy_ctre-2022.1.1-cp36-cp36m-win_amd64.whl", hash = "sha256:edad662b312bbb12a8ac1d1c81b4cc75a40f1813561d177674bffc165ec02228"},
{file = "robotpy_ctre-2022.1.1-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:40f01a98e6373a0632e10b4d91d05366982c24fa419cf8b1817302d9da5b8dc6"},
{file = "robotpy_ctre-2022.1.1-cp37-cp37m-manylinux_2_27_x86_64.whl", hash = "sha256:f0685e1218ad9f10721694d012a59c706e988612d4d5a437698f53855aee2b71"},
{file = "robotpy_ctre-2022.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:0af57df0e766d8972ae4c6282b1b0e44f9051115c6dc7e4c11fde94aa1b7b894"},
{file = "robotpy_ctre-2022.1.1-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:fb142a5200f67253c9ce153f93a6609214b5fbe81506da5812a636a5719f0970"},
{file = "robotpy_ctre-2022.1.1-cp38-cp38-manylinux_2_27_x86_64.whl", hash = "sha256:cb4f92b1e6fc9503a689f3a7da8ca6bae71710e1d1453187a401945d9690a8aa"},
{file = "robotpy_ctre-2022.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:88298698c83d26ca6dd6a75c4163b0311588be53e5882cc33b875792f4d5fa68"},
{file = "robotpy_ctre-2022.1.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:a81f642fd856aba881b902957dccbd247f5e5117575b4f51fb2c7b62cafcb1ed"},
{file = "robotpy_ctre-2022.1.1-cp39-cp39-manylinux_2_27_x86_64.whl", hash = "sha256:3d9a28d966544cbb3525b0a57a991779bceb654bc20447d5f4ceefb46855c417"},
{file = "robotpy_ctre-2022.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:041810661de9415ff1e8be82581ce975ac44a70dd7cec1079dd6b3b4931adb9d"},
]
robotpy-hal = [
{file = "robotpy-hal-2022.4.1.2.tar.gz", hash = "sha256:03a0e3a97f9d2608be073f7ee3135c127c8246b0220c465afedaf90e98882365"},
{file = "robotpy_hal-2022.4.1.2-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:ca5ec78540df4e373276b4af1824e0728426f0b01433411376393eecf81a9c88"},
{file = "robotpy_hal-2022.4.1.2-cp310-cp310-manylinux_2_27_x86_64.whl", hash = "sha256:9cd8b954611c4465e4b290e90ef2a7fc7d558c8408236e3d0d666aa3dbe8ea0a"},
{file = "robotpy_hal-2022.4.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:6d5b710915f4b83cff18cfb0102817fff6624ec179a9149ee02866a958a37aa1"},
{file = "robotpy_hal-2022.4.1.2-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:cf9b1c32a7cf8d8fd01a7e79e73c6a199964a7bcee71f50d2a692c3f1353a853"},
{file = "robotpy_hal-2022.4.1.2-cp36-cp36m-manylinux_2_27_x86_64.whl", hash = "sha256:5ade1a6700782b145c87cdb66527999b148c3d00e9ede3cd9278cbcba11caa2f"},
{file = "robotpy_hal-2022.4.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:3df066b9160896259129ed8b3fd9d9d4f749fdc21dbd613d38ca085aa6445e0c"},
{file = "robotpy_hal-2022.4.1.2-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:558967bc716382d1a85c8703f9779a468f801db24d9e7639869eb27619235188"},
{file = "robotpy_hal-2022.4.1.2-cp37-cp37m-manylinux_2_27_x86_64.whl", hash = "sha256:6f8e84b33ec8c077c3d85dbd64381e2f5571562e45dcd0255abbe429bfa2ec83"},
{file = "robotpy_hal-2022.4.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:b49c6cdfa2c8dcb251cbeb0abfc7e09c0c622126df5fd678961f37491dbeb649"},
{file = "robotpy_hal-2022.4.1.2-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:a74cafc25d2839952b9cb8b822f43f00a07f1df9418e07ba23920f8bb5687706"},
{file = "robotpy_hal-2022.4.1.2-cp38-cp38-manylinux_2_27_x86_64.whl", hash = "sha256:0e427bcbe6331a32fcc2b2543ac908947901dd6c357b86facbcf93490457dabc"},
{file = "robotpy_hal-2022.4.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:c7082520b776671077ca7e7c45e1683214afbbef2a6b4d7d6e07df7c61ba4876"},
{file = "robotpy_hal-2022.4.1.2-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:464c69b4847e8e0184994535bbeaae60afbae926c76c66d5dfc5c93da49e10fa"},
{file = "robotpy_hal-2022.4.1.2-cp39-cp39-manylinux_2_27_x86_64.whl", hash = "sha256:57556d4a8d00b027e517e098317ecaf8a47039947197960243d255bebdd54672"},
{file = "robotpy_hal-2022.4.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:d7a1210f939ba22c1eb2cb80e1da53bedf28000b52fd9e9498bb3c234c01543c"},
]
robotpy-halsim-gui = [
{file = "robotpy-halsim-gui-2022.4.1.1.tar.gz", hash = "sha256:d2fd7f39a6458ef3f9d71dd552de7be757dba41a765b233de38222b1d7126e45"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:19989e9af4667fd991240377bd236eae5943a92771cfe2bd09c0a08c947135eb"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp310-cp310-manylinux_2_27_x86_64.whl", hash = "sha256:078f5f403ff4d5ed1672a141aeb60f9d5e9d4b3012d43d30ffa3122a6513f6ff"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:590ea5154a3ea1dd901ca6b9313ee3523bba5c7b94f68156474c211a72844f8e"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:e3142067dc5f5a484a8618a49fd01011586aba24fde558da1c48b12bbbc497ee"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp36-cp36m-manylinux_2_27_x86_64.whl", hash = "sha256:3122ab3e29830c18f1aeb7ec6ac121b6e34dbdf4cf42dfb987613235a042fc64"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp36-cp36m-win_amd64.whl", hash = "sha256:602d4bc38e0e66b3ff5959180d12ab4d5c550464fa9371bd038231edb87b8f10"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:22efb6c301c3474dcede8373ce51c5a3532c77d843d106bdad08065fddd8d613"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp37-cp37m-manylinux_2_27_x86_64.whl", hash = "sha256:e133de91543e97c476acd1e727da07ec3c75b9a57f606d7b32bf236894cb8ee5"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:d4f3d26028ab93c435ee02e377c5342353adbab566d70541789e0a2067e87b1d"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:3a673c927843bb049141c8614e3d7e6a23d1d083a3c2284a011755a6c5d0e929"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp38-cp38-manylinux_2_27_x86_64.whl", hash = "sha256:fda4190785fd9c046b1e6241cee39a087643f128e0df8be4542c3444d9afcf8c"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:0fdcfcbde9b7fee833db88d783e5b07129bae84aeb2d017024a213c069cc0215"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:ffe085a7f9cf92597c2808a792a29999f385d5647afd26c755fc59e951c939d7"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp39-cp39-manylinux_2_27_x86_64.whl", hash = "sha256:f7ba0a3e4c634be74296c695ab13ff60e8b34ca2400169a072630bf36f7b0b0c"},
{file = "robotpy_halsim_gui-2022.4.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:4f6c794557589a429d183d48fb5c17c099f3170908308e7ba420ddfa8af1e24a"},
]
robotpy-installer = [
{file = "robotpy-installer-2022.1.1.tar.gz", hash = "sha256:0b8bcc47c29242afd972fa5312dedfe8c4a8a09d99c743a19ae85f0b986724a3"},
{file = "robotpy_installer-2022.1.1-py3-none-any.whl", hash = "sha256:dd64c7e1e6fb54c83be275a2913b4a411855e79a0dfd32bcdc8e05c7ece63857"},
]
robotpy-rev = [
{file = "robotpy-rev-2022.0.1.tar.gz", hash = "sha256:529a0895d6bbaa6dfc39c9004ccc993f6b2a6643d026a9c13e84e4d6195b6135"},
{file = "robotpy_rev-2022.0.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:8c7a2205c2ec74fdbbd3725176634e40d30d2505e325f2a0ff69f280a820600c"},
{file = "robotpy_rev-2022.0.1-cp310-cp310-manylinux_2_27_x86_64.whl", hash = "sha256:44b104f0bf2c0db9bfcb7c4e0c7dfd017236b9cd083bc83c880d6a7c5b5f3331"},
{file = "robotpy_rev-2022.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:77cab66727e331f436bc2fa38430c4a857a4eb32330ccbdf469576579ef66049"},
{file = "robotpy_rev-2022.0.1-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:b3fadf60832385c1f4afff97027b248c871774592802dea315a5cb836d3caae5"},
{file = "robotpy_rev-2022.0.1-cp36-cp36m-manylinux_2_27_x86_64.whl", hash = "sha256:a9c562c6940bc8ee18dc3159d90a9381002f926b3e363d5a88c9b28a602c3c6a"},
{file = "robotpy_rev-2022.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:8e0f0a506b76b49f5e66616b9897ed53d330eb8d73810fb8e11795e1b4608073"},
{file = "robotpy_rev-2022.0.1-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:4895665d7f6c8e5704286418f590a2f2c12f18dab5e7125be5fdd2d146b7c7be"},
{file = "robotpy_rev-2022.0.1-cp37-cp37m-manylinux_2_27_x86_64.whl", hash = "sha256:e8e182129b1f9eeb70da3206176d5dc93d6a899c200208a45c794e3c48f0fbc2"},
{file = "robotpy_rev-2022.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:f5bdfa220c926d506fc8bccb1723a274b4e0cb50fd01be4e22b60182e958d919"},
{file = "robotpy_rev-2022.0.1-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:e1fa0e319ad5838dc1a0146e122fe99a2f4b7392cc7c5413c62f24d8eace93cf"},
{file = "robotpy_rev-2022.0.1-cp38-cp38-manylinux_2_27_x86_64.whl", hash = "sha256:38f2f290cf77edac4084b784150c63acaa545c32460392565bc9cee2cedbd0c3"},
{file = "robotpy_rev-2022.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:33ee8b58522ec9cc2ef26bf658b6c4d8fd10c8b330a5510e255f2dca4380f748"},
{file = "robotpy_rev-2022.0.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:fabc77a75e51d71fdff19b0adbbcc52a6177ccace2b2acf1100ea25ef995918e"},
{file = "robotpy_rev-2022.0.1-cp39-cp39-manylinux_2_27_x86_64.whl", hash = "sha256:f3cd115ebce6d28f949f91789109c9b697f5eba77b668df38e87162bfe0adc0f"},
{file = "robotpy_rev-2022.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:fec101c8a66f278925010a046f75379d2a37d0e6ba681b1ceff493591efbf91b"},
]
robotpy-toolkit-7407 = [
{file = "robotpy-toolkit-7407-0.5.1.tar.gz", hash = "sha256:0666439256bc3364e6470c99dda41a8df57244583904bbc088fb3002902aaa45"},
{file = "robotpy_toolkit_7407-0.5.1-py3-none-any.whl", hash = "sha256:c2edd11d3c57d3fb2c3210fbc75872d97e473070b483410d2afbb0b587aee183"},
]
robotpy-wpilib-utilities = [
{file = "robotpy-wpilib-utilities-2022.0.5.tar.gz", hash = "sha256:29cf0a86ca13662ad85843b23ef0ab367ec9b730572e67202a87d81da1c5b920"},
{file = "robotpy_wpilib_utilities-2022.0.5-py3-none-any.whl", hash = "sha256:2f5067277fb42e75e581c2e797d1ccfcb4a53f1a2684a1d682e4e024363eb984"},
]
robotpy-wpimath = [
{file = "robotpy-wpimath-2022.4.1.3.tar.gz", hash = "sha256:564c6f67e6f6a21de4cd044c929f88e5c699306a38e75bb00222442366189877"},
{file = "robotpy_wpimath-2022.4.1.3-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:0044785ded88a3c6c917263b645974467ad3891c9d76cf401c714669f9bb1dff"},
{file = "robotpy_wpimath-2022.4.1.3-cp310-cp310-manylinux_2_27_x86_64.whl", hash = "sha256:e163190b47a5c7f0e558a9bd8048083d9e15139ab195eefedd49eb7e3d2540c8"},
{file = "robotpy_wpimath-2022.4.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:861c595e7cfa596d40d6d6653cb8a27d48553c6c34d097a4ac55c4d5a425d180"},
{file = "robotpy_wpimath-2022.4.1.3-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:61a421b9d6af62c80fb4834fedcf73c9b1998e6b0966c53370ffa92f5b109077"},
{file = "robotpy_wpimath-2022.4.1.3-cp36-cp36m-manylinux_2_27_x86_64.whl", hash = "sha256:55d495c732a0747cb461e2063cf9dae1510e06b607a7d7a407e0f11187bb4383"},
{file = "robotpy_wpimath-2022.4.1.3-cp36-cp36m-win_amd64.whl", hash = "sha256:e77d27d7a252c220d9cfa90af5412ff2c4644b87c36772e1b16ea160f4e1e3e7"},
{file = "robotpy_wpimath-2022.4.1.3-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:06365715c9165339cc2fb8c508c0eb842d9c5fb0345e43a1445beb02742b2f5c"},
{file = "robotpy_wpimath-2022.4.1.3-cp37-cp37m-manylinux_2_27_x86_64.whl", hash = "sha256:292ff793b4410dde1b5b56f0cf72bf693f29711038ebf0a3eb6fc973e9b09360"},
{file = "robotpy_wpimath-2022.4.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:ee2f1d9d890c8f95684e34c10e7d6a687748c1cc7d46fc32c23fc8878a4fff6a"},
{file = "robotpy_wpimath-2022.4.1.3-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:b3d796d2806fde6431e51c7fe261457fd9f812919f289ec0034d25e60f1f331f"},
{file = "robotpy_wpimath-2022.4.1.3-cp38-cp38-manylinux_2_27_x86_64.whl", hash = "sha256:bd780e44e543060fc1ed5f3784683c97c55849365ff9c1ebd0b249b0530027fe"},
{file = "robotpy_wpimath-2022.4.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:5a5d0101c920c1baccbb7ff028be37902e1ab14a93eb194fb2fe7a616da7710f"},
{file = "robotpy_wpimath-2022.4.1.3-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:1fdc37a2abd35a9e0191f2aadf6ee1054dec1939eba4a8895f8035c9481e783c"},
{file = "robotpy_wpimath-2022.4.1.3-cp39-cp39-manylinux_2_27_x86_64.whl", hash = "sha256:12385f8fcce9b5d7be74ee67191b5f6ea358c6712ba3a5005ff976bdb1240341"},
{file = "robotpy_wpimath-2022.4.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:94908f0292703ecf90eeb4a19233dc8ef6b23ecb1d9c3895fb482dbe7c44673e"},
]
robotpy-wpiutil = [
{file = "robotpy-wpiutil-2022.4.1.2.tar.gz", hash = "sha256:cac2bfdb5160926179d078cf72445b7ef857133bb759222c4c21e63384a07792"},
{file = "robotpy_wpiutil-2022.4.1.2-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:121fb8e339791e7a56cc0656a83ef24c0cb8b3b0e5f4e9aae899df78735477e0"},
{file = "robotpy_wpiutil-2022.4.1.2-cp310-cp310-manylinux_2_27_x86_64.whl", hash = "sha256:c46ee2f1a23e5a1f492f25b9199ba508f8ff014c5b73b74f95535c648f7b44f3"},
{file = "robotpy_wpiutil-2022.4.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:c529551f2ae9962297633018cdf1190289b2bd82569109fcc446491758a3c3c5"},
{file = "robotpy_wpiutil-2022.4.1.2-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:37ede1c2de93c762e7f1b64a2ed0d7270d8b83206e765aeff73e2e9cafac13af"},
{file = "robotpy_wpiutil-2022.4.1.2-cp36-cp36m-manylinux_2_27_x86_64.whl", hash = "sha256:b01115f224b562e7b23e09598620b950a9b80084894235cb9e238da706e1aa12"},
{file = "robotpy_wpiutil-2022.4.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:d72954a6b19cc223e852cca89537ff8daa6366301a0c712c4f0e49c1f89047f7"},
{file = "robotpy_wpiutil-2022.4.1.2-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:79b0b48688b0b660614d2d1c923332ff8f4ab6774cc5ad0014da3a4824072732"},
{file = "robotpy_wpiutil-2022.4.1.2-cp37-cp37m-manylinux_2_27_x86_64.whl", hash = "sha256:a4753e0bfc8d79bb5efc5cf1bf34d14eb33b63be3539468fc2c844f4afecf486"},