poetry.lock 142 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550
  1. [[package]]
  2. name = "amqp"
  3. version = "5.0.2"
  4. description = "Low-level AMQP client for Python (fork of amqplib)."
  5. category = "main"
  6. optional = false
  7. python-versions = ">=3.6"
  8. [package.dependencies]
  9. vine = "5.0.0"
  10. [[package]]
  11. name = "anonymizeip"
  12. version = "1.0.0"
  13. description = "Python library for anonymizing IP addresses"
  14. category = "main"
  15. optional = false
  16. python-versions = ">=3.3.0"
  17. [[package]]
  18. name = "appdirs"
  19. version = "1.4.4"
  20. description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
  21. category = "dev"
  22. optional = false
  23. python-versions = "*"
  24. [[package]]
  25. name = "appnope"
  26. version = "0.1.2"
  27. description = "Disable App Nap on macOS >= 10.9"
  28. category = "dev"
  29. optional = false
  30. python-versions = "*"
  31. [[package]]
  32. name = "asgiref"
  33. version = "3.3.1"
  34. description = "ASGI specs, helper code, and adapters"
  35. category = "main"
  36. optional = false
  37. python-versions = ">=3.5"
  38. [package.extras]
  39. tests = ["pytest", "pytest-asyncio"]
  40. [[package]]
  41. name = "astroid"
  42. version = "2.4.2"
  43. description = "An abstract syntax tree for Python with inference support."
  44. category = "dev"
  45. optional = false
  46. python-versions = ">=3.5"
  47. [package.dependencies]
  48. lazy-object-proxy = ">=1.4.0,<1.5.0"
  49. six = ">=1.12,<2.0"
  50. typed-ast = {version = ">=1.4.0,<1.5", markers = "implementation_name == \"cpython\" and python_version < \"3.8\""}
  51. wrapt = ">=1.11,<2.0"
  52. [[package]]
  53. name = "attrs"
  54. version = "20.3.0"
  55. description = "Classes Without Boilerplate"
  56. category = "main"
  57. optional = false
  58. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  59. [package.extras]
  60. dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "zope.interface", "furo", "sphinx", "pre-commit"]
  61. docs = ["furo", "sphinx", "zope.interface"]
  62. tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "zope.interface"]
  63. tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six"]
  64. [[package]]
  65. name = "backcall"
  66. version = "0.2.0"
  67. description = "Specifications for callback functions passed in to an API"
  68. category = "dev"
  69. optional = false
  70. python-versions = "*"
  71. [[package]]
  72. name = "billiard"
  73. version = "3.6.3.0"
  74. description = "Python multiprocessing fork with improvements and bugfixes"
  75. category = "main"
  76. optional = false
  77. python-versions = "*"
  78. [[package]]
  79. name = "black"
  80. version = "19.10b0"
  81. description = "The uncompromising code formatter."
  82. category = "dev"
  83. optional = false
  84. python-versions = ">=3.6"
  85. [package.dependencies]
  86. appdirs = "*"
  87. attrs = ">=18.1.0"
  88. click = ">=6.5"
  89. pathspec = ">=0.6,<1"
  90. regex = "*"
  91. toml = ">=0.9.4"
  92. typed-ast = ">=1.4.0"
  93. [package.extras]
  94. d = ["aiohttp (>=3.3.2)", "aiohttp-cors"]
  95. [[package]]
  96. name = "boto3"
  97. version = "1.16.56"
  98. description = "The AWS SDK for Python"
  99. category = "main"
  100. optional = false
  101. python-versions = "*"
  102. [package.dependencies]
  103. botocore = ">=1.19.56,<1.20.0"
  104. jmespath = ">=0.7.1,<1.0.0"
  105. s3transfer = ">=0.3.0,<0.4.0"
  106. [[package]]
  107. name = "botocore"
  108. version = "1.19.56"
  109. description = "Low-level, data-driven core of boto 3."
  110. category = "main"
  111. optional = false
  112. python-versions = "*"
  113. [package.dependencies]
  114. jmespath = ">=0.7.1,<1.0.0"
  115. python-dateutil = ">=2.1,<3.0.0"
  116. urllib3 = {version = ">=1.25.4,<1.27", markers = "python_version != \"3.4\""}
  117. [[package]]
  118. name = "celery"
  119. version = "5.0.5"
  120. description = "Distributed Task Queue."
  121. category = "main"
  122. optional = false
  123. python-versions = ">=3.6,"
  124. [package.dependencies]
  125. billiard = ">=3.6.3.0,<4.0"
  126. click = ">=7.0,<8.0"
  127. click-didyoumean = ">=0.0.3"
  128. click-plugins = ">=1.1.1"
  129. click-repl = ">=0.1.6"
  130. kombu = ">=5.0.0,<6.0"
  131. pytz = ">0.0-dev"
  132. redis = {version = ">=3.2.0", optional = true, markers = "extra == \"redis\""}
  133. vine = ">=5.0.0,<6.0"
  134. [package.extras]
  135. arangodb = ["pyArango (>=1.3.2)"]
  136. auth = ["cryptography"]
  137. azureblockblob = ["azure-storage (0.36.0)", "azure-common (1.1.5)", "azure-storage-common (1.1.0)"]
  138. brotli = ["brotli (>=1.0.0)", "brotlipy (>=0.7.0)"]
  139. cassandra = ["cassandra-driver (<3.21.0)"]
  140. consul = ["python-consul"]
  141. cosmosdbsql = ["pydocumentdb (2.3.2)"]
  142. couchbase = ["couchbase (>=3.0.0)"]
  143. couchdb = ["pycouchdb"]
  144. django = ["Django (>=1.11)"]
  145. dynamodb = ["boto3 (>=1.9.178)"]
  146. elasticsearch = ["elasticsearch"]
  147. eventlet = ["eventlet (>=0.26.1)"]
  148. gevent = ["gevent (>=1.0.0)"]
  149. librabbitmq = ["librabbitmq (>=1.5.0)"]
  150. lzma = ["backports.lzma"]
  151. memcache = ["pylibmc"]
  152. mongodb = ["pymongo[srv] (>=3.3.0)"]
  153. msgpack = ["msgpack"]
  154. pymemcache = ["python-memcached"]
  155. pyro = ["pyro4"]
  156. pytest = ["pytest-celery"]
  157. redis = ["redis (>=3.2.0)"]
  158. s3 = ["boto3 (>=1.9.125)"]
  159. slmq = ["softlayer-messaging (>=1.0.3)"]
  160. solar = ["ephem"]
  161. sqlalchemy = ["sqlalchemy"]
  162. sqs = ["boto3 (>=1.9.125)", "pycurl (7.43.0.5)"]
  163. tblib = ["tblib (>=1.3.0)", "tblib (>=1.5.0)"]
  164. yaml = ["PyYAML (>=3.10)"]
  165. zookeeper = ["kazoo (>=1.3.1)"]
  166. zstd = ["zstandard"]
  167. [[package]]
  168. name = "certifi"
  169. version = "2020.12.5"
  170. description = "Python package for providing Mozilla's CA Bundle."
  171. category = "main"
  172. optional = false
  173. python-versions = "*"
  174. [[package]]
  175. name = "cffi"
  176. version = "1.14.4"
  177. description = "Foreign Function Interface for Python calling C code."
  178. category = "main"
  179. optional = false
  180. python-versions = "*"
  181. [package.dependencies]
  182. pycparser = "*"
  183. [[package]]
  184. name = "chardet"
  185. version = "4.0.0"
  186. description = "Universal encoding detector for Python 2 and 3"
  187. category = "main"
  188. optional = false
  189. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  190. [[package]]
  191. name = "click"
  192. version = "7.1.2"
  193. description = "Composable command line interface toolkit"
  194. category = "main"
  195. optional = false
  196. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  197. [[package]]
  198. name = "click-didyoumean"
  199. version = "0.0.3"
  200. description = "Enable git-like did-you-mean feature in click."
  201. category = "main"
  202. optional = false
  203. python-versions = "*"
  204. [package.dependencies]
  205. click = "*"
  206. [[package]]
  207. name = "click-plugins"
  208. version = "1.1.1"
  209. description = "An extension module for click to enable registering CLI commands via setuptools entry-points."
  210. category = "main"
  211. optional = false
  212. python-versions = "*"
  213. [package.dependencies]
  214. click = ">=4.0"
  215. [package.extras]
  216. dev = ["pytest (>=3.6)", "pytest-cov", "wheel", "coveralls"]
  217. [[package]]
  218. name = "click-repl"
  219. version = "0.1.6"
  220. description = "REPL plugin for Click"
  221. category = "main"
  222. optional = false
  223. python-versions = "*"
  224. [package.dependencies]
  225. click = "*"
  226. prompt-toolkit = "*"
  227. six = "*"
  228. [[package]]
  229. name = "colorama"
  230. version = "0.4.4"
  231. description = "Cross-platform colored terminal text."
  232. category = "dev"
  233. optional = false
  234. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  235. [[package]]
  236. name = "configargparse"
  237. version = "1.2.3"
  238. description = "A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables."
  239. category = "dev"
  240. optional = false
  241. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  242. [package.extras]
  243. yaml = ["pyyaml"]
  244. [[package]]
  245. name = "coreapi"
  246. version = "2.3.3"
  247. description = "Python client library for Core API."
  248. category = "main"
  249. optional = false
  250. python-versions = "*"
  251. [package.dependencies]
  252. coreschema = "*"
  253. itypes = "*"
  254. requests = "*"
  255. uritemplate = "*"
  256. [[package]]
  257. name = "coreschema"
  258. version = "0.0.4"
  259. description = "Core Schema."
  260. category = "main"
  261. optional = false
  262. python-versions = "*"
  263. [package.dependencies]
  264. jinja2 = "*"
  265. [[package]]
  266. name = "cryptography"
  267. version = "3.3.1"
  268. description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
  269. category = "main"
  270. optional = false
  271. python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*"
  272. [package.dependencies]
  273. cffi = ">=1.12"
  274. six = ">=1.4.1"
  275. [package.extras]
  276. docs = ["sphinx (>=1.6.5,<1.8.0 || >1.8.0,<3.1.0 || >3.1.0,<3.1.1 || >3.1.1)", "sphinx-rtd-theme"]
  277. docstest = ["doc8", "pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"]
  278. pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"]
  279. ssh = ["bcrypt (>=3.1.5)"]
  280. test = ["pytest (>=3.6.0,<3.9.0 || >3.9.0,<3.9.1 || >3.9.1,<3.9.2 || >3.9.2)", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,<3.79.2 || >3.79.2)"]
  281. [[package]]
  282. name = "decorator"
  283. version = "4.4.2"
  284. description = "Decorators for Humans"
  285. category = "dev"
  286. optional = false
  287. python-versions = ">=2.6, !=3.0.*, !=3.1.*"
  288. [[package]]
  289. name = "defusedxml"
  290. version = "0.6.0"
  291. description = "XML bomb protection for Python stdlib modules"
  292. category = "main"
  293. optional = false
  294. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  295. [[package]]
  296. name = "dj-rest-auth"
  297. version = "2.1.3"
  298. description = "Authentication and Registration in Django Rest Framework"
  299. category = "main"
  300. optional = false
  301. python-versions = ">=3.5"
  302. [package.dependencies]
  303. Django = ">=2.0"
  304. djangorestframework = ">=3.7.0"
  305. [package.extras]
  306. with_social = ["django-allauth (>=0.40.0,<0.45.0)"]
  307. [[package]]
  308. name = "dj-stripe"
  309. version = "2.4.1"
  310. description = "Django + Stripe made easy"
  311. category = "main"
  312. optional = false
  313. python-versions = ">=3.6,<4.0"
  314. [package.dependencies]
  315. Django = ">=2.2"
  316. jsonfield = ">=3.0"
  317. stripe = ">=2.48.0"
  318. [package.extras]
  319. docs = ["mkdocs (>=1.1.2,<2.0.0)", "mkautodoc (>=0.1.0,<0.2.0)"]
  320. [[package]]
  321. name = "django"
  322. version = "3.1.5"
  323. description = "A high-level Python Web framework that encourages rapid development and clean, pragmatic design."
  324. category = "main"
  325. optional = false
  326. python-versions = ">=3.6"
  327. [package.dependencies]
  328. asgiref = ">=3.2.10,<4"
  329. pytz = "*"
  330. sqlparse = ">=0.2.2"
  331. [package.extras]
  332. argon2 = ["argon2-cffi (>=16.1.0)"]
  333. bcrypt = ["bcrypt"]
  334. [[package]]
  335. name = "django-allauth"
  336. version = "0.44.0"
  337. description = "Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication."
  338. category = "main"
  339. optional = false
  340. python-versions = "*"
  341. [package.dependencies]
  342. Django = ">=2.0"
  343. pyjwt = {version = ">=1.7", extras = ["crypto"]}
  344. python3-openid = ">=3.0.8"
  345. requests = "*"
  346. requests-oauthlib = ">=0.3.0"
  347. [[package]]
  348. name = "django-anymail"
  349. version = "8.1"
  350. description = "Django email integration for Amazon SES, Mailgun, Mailjet, Postmark, SendGrid, SendinBlue, SparkPost and other transactional ESPs"
  351. category = "main"
  352. optional = false
  353. python-versions = ">=3.5"
  354. [package.dependencies]
  355. django = ">=2.0"
  356. requests = ">=2.4.3"
  357. [package.extras]
  358. amazon_ses = ["boto3"]
  359. [[package]]
  360. name = "django-bitfield"
  361. version = "2.0.1"
  362. description = "BitField in Django"
  363. category = "main"
  364. optional = false
  365. python-versions = "*"
  366. [package.dependencies]
  367. Django = ">=1.10.8"
  368. six = "*"
  369. [package.extras]
  370. tests = ["flake8", "mysqlclient", "psycopg2 (>=2.3)", "pytest-django"]
  371. [[package]]
  372. name = "django-celery-results"
  373. version = "2.0.0"
  374. description = "Celery result backends for Django."
  375. category = "main"
  376. optional = false
  377. python-versions = "*"
  378. [package.dependencies]
  379. celery = ">=4.4,<6.0"
  380. [[package]]
  381. name = "django-cors-headers"
  382. version = "3.6.0"
  383. description = "django-cors-headers is a Django application for handling the server headers required for Cross-Origin Resource Sharing (CORS)."
  384. category = "main"
  385. optional = false
  386. python-versions = ">=3.6"
  387. [package.dependencies]
  388. Django = ">=2.2"
  389. [[package]]
  390. name = "django-csp"
  391. version = "3.7"
  392. description = "Django Content Security Policy support."
  393. category = "main"
  394. optional = false
  395. python-versions = "*"
  396. [package.dependencies]
  397. Django = ">=1.8"
  398. [package.extras]
  399. jinja2 = ["jinja2 (>=2.9.6)"]
  400. tests = ["pytest (<4.0)", "pytest-django", "pytest-flakes (1.0.1)", "pytest-pep8 (1.0.6)", "pep8 (1.4.6)", "mock (1.0.1)", "six (1.12.0)", "jinja2 (>=2.9.6)"]
  401. [[package]]
  402. name = "django-debug-toolbar"
  403. version = "3.2"
  404. description = "A configurable set of panels that display various debug information about the current request/response."
  405. category = "main"
  406. optional = false
  407. python-versions = ">=3.6"
  408. [package.dependencies]
  409. Django = ">=2.2"
  410. sqlparse = ">=0.2.0"
  411. [[package]]
  412. name = "django-environ"
  413. version = "0.4.5"
  414. description = "Django-environ allows you to utilize 12factor inspired environment variables to configure your Django application."
  415. category = "main"
  416. optional = false
  417. python-versions = "*"
  418. [[package]]
  419. name = "django-extensions"
  420. version = "3.1.0"
  421. description = "Extensions for Django"
  422. category = "main"
  423. optional = false
  424. python-versions = ">=3.5"
  425. [[package]]
  426. name = "django-filter"
  427. version = "2.4.0"
  428. description = "Django-filter is a reusable Django application for allowing users to filter querysets dynamically."
  429. category = "main"
  430. optional = false
  431. python-versions = ">=3.5"
  432. [package.dependencies]
  433. Django = ">=2.2"
  434. [[package]]
  435. name = "django-ipware"
  436. version = "3.0.2"
  437. description = "A Django utility application that returns client's real IP address"
  438. category = "main"
  439. optional = false
  440. python-versions = "*"
  441. [[package]]
  442. name = "django-organizations"
  443. version = "1.1.2"
  444. description = "Group accounts for Django"
  445. category = "main"
  446. optional = false
  447. python-versions = "*"
  448. [package.dependencies]
  449. Django = ">=1.8.0"
  450. [[package]]
  451. name = "django-redis-cache"
  452. version = "3.0.0"
  453. description = "Redis Cache Backend for Django"
  454. category = "main"
  455. optional = false
  456. python-versions = "*"
  457. [package.dependencies]
  458. redis = "<4.0"
  459. [[package]]
  460. name = "django-storages"
  461. version = "1.11.1"
  462. description = "Support for many storage backends in Django"
  463. category = "main"
  464. optional = false
  465. python-versions = ">=3.5"
  466. [package.dependencies]
  467. Django = ">=2.2"
  468. [package.extras]
  469. azure = ["azure-storage-blob (>=1.3.1,<12.0.0)"]
  470. boto3 = ["boto3 (>=1.4.4)"]
  471. dropbox = ["dropbox (>=7.2.1)"]
  472. google = ["google-cloud-storage (>=1.15.0)"]
  473. libcloud = ["apache-libcloud"]
  474. sftp = ["paramiko"]
  475. [[package]]
  476. name = "djangorestframework"
  477. version = "3.12.2"
  478. description = "Web APIs for Django, made easy."
  479. category = "main"
  480. optional = false
  481. python-versions = ">=3.5"
  482. [package.dependencies]
  483. django = ">=2.2"
  484. [[package]]
  485. name = "drf-nested-routers"
  486. version = "0.92.5"
  487. description = "Nested resources for the Django Rest Framework"
  488. category = "main"
  489. optional = false
  490. python-versions = ">=3.5"
  491. [package.dependencies]
  492. Django = ">=1.11"
  493. djangorestframework = ">=3.6.0"
  494. [[package]]
  495. name = "drf-yasg"
  496. version = "1.20.0"
  497. description = "Automated generation of real Swagger/OpenAPI 2.0 schemas from Django Rest Framework code."
  498. category = "main"
  499. optional = false
  500. python-versions = ">=3.6"
  501. [package.dependencies]
  502. coreapi = ">=2.3.3"
  503. coreschema = ">=0.0.4"
  504. Django = ">=2.2.16"
  505. djangorestframework = ">=3.10.3"
  506. inflection = ">=0.3.1"
  507. packaging = "*"
  508. "ruamel.yaml" = ">=0.15.34"
  509. uritemplate = ">=3.0.0"
  510. [package.extras]
  511. validation = ["swagger-spec-validator (>=2.1.0)"]
  512. [[package]]
  513. name = "flask"
  514. version = "1.1.2"
  515. description = "A simple framework for building complex web applications."
  516. category = "dev"
  517. optional = false
  518. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  519. [package.dependencies]
  520. click = ">=5.1"
  521. itsdangerous = ">=0.24"
  522. Jinja2 = ">=2.10.1"
  523. Werkzeug = ">=0.15"
  524. [package.extras]
  525. dev = ["pytest", "coverage", "tox", "sphinx", "pallets-sphinx-themes", "sphinxcontrib-log-cabinet", "sphinx-issues"]
  526. docs = ["sphinx", "pallets-sphinx-themes", "sphinxcontrib-log-cabinet", "sphinx-issues"]
  527. dotenv = ["python-dotenv"]
  528. [[package]]
  529. name = "flask-basicauth"
  530. version = "0.2.0"
  531. description = "HTTP basic access authentication for Flask."
  532. category = "dev"
  533. optional = false
  534. python-versions = "*"
  535. [package.dependencies]
  536. Flask = "*"
  537. [[package]]
  538. name = "freezegun"
  539. version = "1.0.0"
  540. description = "Let your Python tests travel through time"
  541. category = "dev"
  542. optional = false
  543. python-versions = ">=3.5"
  544. [package.dependencies]
  545. python-dateutil = ">=2.7"
  546. [[package]]
  547. name = "gevent"
  548. version = "21.1.0"
  549. description = "Coroutine-based network library"
  550. category = "dev"
  551. optional = false
  552. python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*"
  553. [package.dependencies]
  554. cffi = {version = ">=1.12.2", markers = "platform_python_implementation == \"CPython\" and sys_platform == \"win32\""}
  555. greenlet = {version = ">=0.4.17,<2.0", markers = "platform_python_implementation == \"CPython\""}
  556. "zope.event" = "*"
  557. "zope.interface" = "*"
  558. [package.extras]
  559. dnspython = ["dnspython (>=1.16.0,<2.0)", "idna"]
  560. docs = ["repoze.sphinx.autointerface", "sphinxcontrib-programoutput", "zope.schema"]
  561. monitor = ["psutil (>=5.7.0)"]
  562. recommended = ["dnspython (>=1.16.0,<2.0)", "idna", "cffi (>=1.12.2)", "selectors2", "backports.socketpair", "psutil (>=5.7.0)"]
  563. test = ["dnspython (>=1.16.0,<2.0)", "idna", "requests", "objgraph", "cffi (>=1.12.2)", "selectors2", "futures", "mock", "backports.socketpair", "contextvars (2.4)", "coverage (>=5.0)", "coveralls (>=1.7.0)", "psutil (>=5.7.0)"]
  564. [[package]]
  565. name = "geventhttpclient"
  566. version = "1.4.5"
  567. description = "http client library for gevent"
  568. category = "dev"
  569. optional = false
  570. python-versions = "*"
  571. [package.dependencies]
  572. certifi = "*"
  573. gevent = ">=0.13"
  574. six = "*"
  575. [[package]]
  576. name = "greenlet"
  577. version = "1.0.0"
  578. description = "Lightweight in-process concurrent programming"
  579. category = "dev"
  580. optional = false
  581. python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*"
  582. [package.extras]
  583. docs = ["sphinx"]
  584. [[package]]
  585. name = "idna"
  586. version = "2.10"
  587. description = "Internationalized Domain Names in Applications (IDNA)"
  588. category = "main"
  589. optional = false
  590. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  591. [[package]]
  592. name = "importlib-metadata"
  593. version = "3.4.0"
  594. description = "Read metadata from Python packages"
  595. category = "main"
  596. optional = false
  597. python-versions = ">=3.6"
  598. [package.dependencies]
  599. typing-extensions = {version = ">=3.6.4", markers = "python_version < \"3.8\""}
  600. zipp = ">=0.5"
  601. [package.extras]
  602. docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"]
  603. testing = ["pytest (>=3.5,<3.7.3 || >3.7.3)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-cov", "pytest-enabler", "packaging", "pep517", "pyfakefs", "flufl.flake8", "pytest-black (>=0.3.7)", "pytest-mypy", "importlib-resources (>=1.3)"]
  604. [[package]]
  605. name = "inflection"
  606. version = "0.5.1"
  607. description = "A port of Ruby on Rails inflector to Python"
  608. category = "main"
  609. optional = false
  610. python-versions = ">=3.5"
  611. [[package]]
  612. name = "ipdb"
  613. version = "0.13.4"
  614. description = "IPython-enabled pdb"
  615. category = "dev"
  616. optional = false
  617. python-versions = ">=2.7"
  618. [package.dependencies]
  619. ipython = {version = ">=5.1.0", markers = "python_version >= \"3.4\""}
  620. [[package]]
  621. name = "ipython"
  622. version = "7.19.0"
  623. description = "IPython: Productive Interactive Computing"
  624. category = "dev"
  625. optional = false
  626. python-versions = ">=3.7"
  627. [package.dependencies]
  628. appnope = {version = "*", markers = "sys_platform == \"darwin\""}
  629. backcall = "*"
  630. colorama = {version = "*", markers = "sys_platform == \"win32\""}
  631. decorator = "*"
  632. jedi = ">=0.10"
  633. pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""}
  634. pickleshare = "*"
  635. prompt-toolkit = ">=2.0.0,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.1.0"
  636. pygments = "*"
  637. traitlets = ">=4.2"
  638. [package.extras]
  639. all = ["Sphinx (>=1.3)", "ipykernel", "ipyparallel", "ipywidgets", "nbconvert", "nbformat", "nose (>=0.10.1)", "notebook", "numpy (>=1.14)", "pygments", "qtconsole", "requests", "testpath"]
  640. doc = ["Sphinx (>=1.3)"]
  641. kernel = ["ipykernel"]
  642. nbconvert = ["nbconvert"]
  643. nbformat = ["nbformat"]
  644. notebook = ["notebook", "ipywidgets"]
  645. parallel = ["ipyparallel"]
  646. qtconsole = ["qtconsole"]
  647. test = ["nose (>=0.10.1)", "requests", "testpath", "pygments", "nbformat", "ipykernel", "numpy (>=1.14)"]
  648. [[package]]
  649. name = "ipython-genutils"
  650. version = "0.2.0"
  651. description = "Vestigial utilities from IPython"
  652. category = "dev"
  653. optional = false
  654. python-versions = "*"
  655. [[package]]
  656. name = "isort"
  657. version = "5.7.0"
  658. description = "A Python utility / library to sort Python imports."
  659. category = "dev"
  660. optional = false
  661. python-versions = ">=3.6,<4.0"
  662. [package.extras]
  663. pipfile_deprecated_finder = ["pipreqs", "requirementslib"]
  664. requirements_deprecated_finder = ["pipreqs", "pip-api"]
  665. colors = ["colorama (>=0.4.3,<0.5.0)"]
  666. [[package]]
  667. name = "itsdangerous"
  668. version = "1.1.0"
  669. description = "Various helpers to pass data to untrusted environments and back."
  670. category = "dev"
  671. optional = false
  672. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  673. [[package]]
  674. name = "itypes"
  675. version = "1.2.0"
  676. description = "Simple immutable types for python."
  677. category = "main"
  678. optional = false
  679. python-versions = "*"
  680. [[package]]
  681. name = "jedi"
  682. version = "0.18.0"
  683. description = "An autocompletion tool for Python that can be used for text editors."
  684. category = "dev"
  685. optional = false
  686. python-versions = ">=3.6"
  687. [package.dependencies]
  688. parso = ">=0.8.0,<0.9.0"
  689. [package.extras]
  690. qa = ["flake8 (3.8.3)", "mypy (0.782)"]
  691. testing = ["Django (<3.1)", "colorama", "docopt", "pytest (<6.0.0)"]
  692. [[package]]
  693. name = "jinja2"
  694. version = "2.11.2"
  695. description = "A very fast and expressive template engine."
  696. category = "main"
  697. optional = false
  698. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  699. [package.dependencies]
  700. MarkupSafe = ">=0.23"
  701. [package.extras]
  702. i18n = ["Babel (>=0.8)"]
  703. [[package]]
  704. name = "jmespath"
  705. version = "0.10.0"
  706. description = "JSON Matching Expressions"
  707. category = "main"
  708. optional = false
  709. python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
  710. [[package]]
  711. name = "jsonfield"
  712. version = "3.1.0"
  713. description = "A reusable Django field that allows you to store validated JSON in your model."
  714. category = "main"
  715. optional = false
  716. python-versions = ">=3.6"
  717. [package.dependencies]
  718. Django = ">=2.2"
  719. [[package]]
  720. name = "jsonschema"
  721. version = "3.2.0"
  722. description = "An implementation of JSON Schema validation for Python"
  723. category = "main"
  724. optional = false
  725. python-versions = "*"
  726. [package.dependencies]
  727. attrs = ">=17.4.0"
  728. importlib-metadata = {version = "*", markers = "python_version < \"3.8\""}
  729. pyrsistent = ">=0.14.0"
  730. six = ">=1.11.0"
  731. [package.extras]
  732. format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"]
  733. format_nongpl = ["idna", "jsonpointer (>1.13)", "webcolors", "rfc3986-validator (>0.1.0)", "rfc3339-validator"]
  734. [[package]]
  735. name = "kombu"
  736. version = "5.0.2"
  737. description = "Messaging library for Python."
  738. category = "main"
  739. optional = false
  740. python-versions = ">=3.6"
  741. [package.dependencies]
  742. amqp = ">=5.0.0,<6.0.0"
  743. importlib-metadata = {version = ">=0.18", markers = "python_version < \"3.8\""}
  744. [package.extras]
  745. azureservicebus = ["azure-servicebus (>=0.21.1)"]
  746. azurestoragequeues = ["azure-storage-queue"]
  747. consul = ["python-consul (>=0.6.0)"]
  748. librabbitmq = ["librabbitmq (>=1.5.2)"]
  749. mongodb = ["pymongo (>=3.3.0)"]
  750. msgpack = ["msgpack"]
  751. pyro = ["pyro4"]
  752. qpid = ["qpid-python (>=0.26)", "qpid-tools (>=0.26)"]
  753. redis = ["redis (>=3.3.11)"]
  754. slmq = ["softlayer-messaging (>=1.0.3)"]
  755. sqlalchemy = ["sqlalchemy"]
  756. sqs = ["boto3 (>=1.4.4)", "pycurl (7.43.0.2)"]
  757. yaml = ["PyYAML (>=3.10)"]
  758. zookeeper = ["kazoo (>=1.3.1)"]
  759. [[package]]
  760. name = "lazy-object-proxy"
  761. version = "1.4.3"
  762. description = "A fast and thorough lazy object proxy."
  763. category = "dev"
  764. optional = false
  765. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  766. [[package]]
  767. name = "locust"
  768. version = "1.4.1"
  769. description = "Developer friendly load testing framework"
  770. category = "dev"
  771. optional = false
  772. python-versions = ">=3.6"
  773. [package.dependencies]
  774. ConfigArgParse = ">=1.0"
  775. flask = ">=1.1.2"
  776. Flask-BasicAuth = ">=0.2.0"
  777. gevent = ">=20.9.0"
  778. geventhttpclient = ">=1.4.4"
  779. msgpack = ">=0.6.2"
  780. psutil = ">=5.6.7"
  781. pywin32 = {version = "*", markers = "sys_platform == \"win32\""}
  782. pyzmq = ">=16.0.2"
  783. requests = ">=2.9.1"
  784. Werkzeug = ">=1.0.1"
  785. [[package]]
  786. name = "markupsafe"
  787. version = "1.1.1"
  788. description = "Safely add untrusted strings to HTML/XML markup."
  789. category = "main"
  790. optional = false
  791. python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*"
  792. [[package]]
  793. name = "mccabe"
  794. version = "0.6.1"
  795. description = "McCabe checker, plugin for flake8"
  796. category = "dev"
  797. optional = false
  798. python-versions = "*"
  799. [[package]]
  800. name = "model-bakery"
  801. version = "1.2.1"
  802. description = "Smart object creation facility for Django."
  803. category = "dev"
  804. optional = false
  805. python-versions = "*"
  806. [package.dependencies]
  807. django = ">=1.11.0"
  808. [[package]]
  809. name = "msgpack"
  810. version = "1.0.2"
  811. description = "MessagePack (de)serializer."
  812. category = "dev"
  813. optional = false
  814. python-versions = "*"
  815. [[package]]
  816. name = "oauthlib"
  817. version = "3.1.0"
  818. description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic"
  819. category = "main"
  820. optional = false
  821. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  822. [package.extras]
  823. rsa = ["cryptography"]
  824. signals = ["blinker"]
  825. signedtoken = ["cryptography", "pyjwt (>=1.0.0)"]
  826. [[package]]
  827. name = "packaging"
  828. version = "20.8"
  829. description = "Core utilities for Python packages"
  830. category = "main"
  831. optional = false
  832. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  833. [package.dependencies]
  834. pyparsing = ">=2.0.2"
  835. [[package]]
  836. name = "parso"
  837. version = "0.8.1"
  838. description = "A Python Parser"
  839. category = "dev"
  840. optional = false
  841. python-versions = ">=3.6"
  842. [package.extras]
  843. qa = ["flake8 (3.8.3)", "mypy (0.782)"]
  844. testing = ["docopt", "pytest (<6.0.0)"]
  845. [[package]]
  846. name = "pathspec"
  847. version = "0.8.1"
  848. description = "Utility library for gitignore style pattern matching of file paths."
  849. category = "dev"
  850. optional = false
  851. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  852. [[package]]
  853. name = "pexpect"
  854. version = "4.8.0"
  855. description = "Pexpect allows easy control of interactive console applications."
  856. category = "dev"
  857. optional = false
  858. python-versions = "*"
  859. [package.dependencies]
  860. ptyprocess = ">=0.5"
  861. [[package]]
  862. name = "pickleshare"
  863. version = "0.7.5"
  864. description = "Tiny 'shelve'-like database with concurrency support"
  865. category = "dev"
  866. optional = false
  867. python-versions = "*"
  868. [[package]]
  869. name = "prompt-toolkit"
  870. version = "3.0.10"
  871. description = "Library for building powerful interactive command lines in Python"
  872. category = "main"
  873. optional = false
  874. python-versions = ">=3.6.1"
  875. [package.dependencies]
  876. wcwidth = "*"
  877. [[package]]
  878. name = "psutil"
  879. version = "5.8.0"
  880. description = "Cross-platform lib for process and system monitoring in Python."
  881. category = "dev"
  882. optional = false
  883. python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  884. [package.extras]
  885. test = ["ipaddress", "mock", "unittest2", "enum34", "pywin32", "wmi"]
  886. [[package]]
  887. name = "psycopg2-binary"
  888. version = "2.8.6"
  889. description = "psycopg2 - Python-PostgreSQL Database Adapter"
  890. category = "main"
  891. optional = false
  892. python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*"
  893. [[package]]
  894. name = "ptyprocess"
  895. version = "0.7.0"
  896. description = "Run a subprocess in a pseudo terminal"
  897. category = "dev"
  898. optional = false
  899. python-versions = "*"
  900. [[package]]
  901. name = "py"
  902. version = "1.10.0"
  903. description = "library with cross-python path, ini-parsing, io, code, log facilities"
  904. category = "dev"
  905. optional = false
  906. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  907. [[package]]
  908. name = "pycparser"
  909. version = "2.20"
  910. description = "C parser in Python"
  911. category = "main"
  912. optional = false
  913. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  914. [[package]]
  915. name = "pygments"
  916. version = "2.7.4"
  917. description = "Pygments is a syntax highlighting package written in Python."
  918. category = "dev"
  919. optional = false
  920. python-versions = ">=3.5"
  921. [[package]]
  922. name = "pyjwt"
  923. version = "2.0.0"
  924. description = "JSON Web Token implementation in Python"
  925. category = "main"
  926. optional = false
  927. python-versions = ">=3.6"
  928. [package.dependencies]
  929. cryptography = {version = ">=3.3.1,<4.0.0", optional = true, markers = "extra == \"crypto\""}
  930. [package.extras]
  931. crypto = ["cryptography (>=3.3.1,<4.0.0)"]
  932. dev = ["sphinx", "sphinx-rtd-theme", "zope.interface", "cryptography (>=3.3.1,<4.0.0)", "pytest (>=6.0.0,<7.0.0)", "coverage[toml] (5.0.4)", "mypy", "pre-commit"]
  933. docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"]
  934. tests = ["pytest (>=6.0.0,<7.0.0)", "coverage[toml] (5.0.4)"]
  935. [[package]]
  936. name = "pylint"
  937. version = "2.6.0"
  938. description = "python code static checker"
  939. category = "dev"
  940. optional = false
  941. python-versions = ">=3.5.*"
  942. [package.dependencies]
  943. astroid = ">=2.4.0,<=2.5"
  944. colorama = {version = "*", markers = "sys_platform == \"win32\""}
  945. isort = ">=4.2.5,<6"
  946. mccabe = ">=0.6,<0.7"
  947. toml = ">=0.7.1"
  948. [[package]]
  949. name = "pylint-django"
  950. version = "2.4.2"
  951. description = "A Pylint plugin to help Pylint understand the Django web framework"
  952. category = "dev"
  953. optional = false
  954. python-versions = "*"
  955. [package.dependencies]
  956. pylint = ">=2.0"
  957. pylint-plugin-utils = ">=0.5"
  958. [package.extras]
  959. for_tests = ["Faker (<=5.0.1)", "coverage", "django-tables2", "factory-boy", "pytest"]
  960. with_django = ["django"]
  961. [[package]]
  962. name = "pylint-plugin-utils"
  963. version = "0.6"
  964. description = "Utilities and helpers for writing Pylint plugins"
  965. category = "dev"
  966. optional = false
  967. python-versions = "*"
  968. [package.dependencies]
  969. pylint = ">=1.7"
  970. [[package]]
  971. name = "pyparsing"
  972. version = "2.4.7"
  973. description = "Python parsing module"
  974. category = "main"
  975. optional = false
  976. python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
  977. [[package]]
  978. name = "pyrsistent"
  979. version = "0.17.3"
  980. description = "Persistent/Functional/Immutable data structures"
  981. category = "main"
  982. optional = false
  983. python-versions = ">=3.5"
  984. [[package]]
  985. name = "python-dateutil"
  986. version = "2.8.1"
  987. description = "Extensions to the standard Python datetime module"
  988. category = "main"
  989. optional = false
  990. python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
  991. [package.dependencies]
  992. six = ">=1.5"
  993. [[package]]
  994. name = "python3-openid"
  995. version = "3.2.0"
  996. description = "OpenID support for modern servers and consumers."
  997. category = "main"
  998. optional = false
  999. python-versions = "*"
  1000. [package.dependencies]
  1001. defusedxml = "*"
  1002. [package.extras]
  1003. mysql = ["mysql-connector-python"]
  1004. postgresql = ["psycopg2"]
  1005. [[package]]
  1006. name = "pytz"
  1007. version = "2020.5"
  1008. description = "World timezone definitions, modern and historical"
  1009. category = "main"
  1010. optional = false
  1011. python-versions = "*"
  1012. [[package]]
  1013. name = "pywin32"
  1014. version = "300"
  1015. description = "Python for Window Extensions"
  1016. category = "dev"
  1017. optional = false
  1018. python-versions = "*"
  1019. [[package]]
  1020. name = "pyzmq"
  1021. version = "21.0.1"
  1022. description = "Python bindings for 0MQ"
  1023. category = "dev"
  1024. optional = false
  1025. python-versions = ">=3.6"
  1026. [package.dependencies]
  1027. cffi = {version = "*", markers = "implementation_name == \"pypy\""}
  1028. py = {version = "*", markers = "implementation_name == \"pypy\""}
  1029. [[package]]
  1030. name = "redis"
  1031. version = "3.5.3"
  1032. description = "Python client for Redis key-value store"
  1033. category = "main"
  1034. optional = false
  1035. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  1036. [package.extras]
  1037. hiredis = ["hiredis (>=0.1.3)"]
  1038. [[package]]
  1039. name = "regex"
  1040. version = "2020.11.13"
  1041. description = "Alternative regular expression module, to replace re."
  1042. category = "dev"
  1043. optional = false
  1044. python-versions = "*"
  1045. [[package]]
  1046. name = "requests"
  1047. version = "2.25.1"
  1048. description = "Python HTTP for Humans."
  1049. category = "main"
  1050. optional = false
  1051. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  1052. [package.dependencies]
  1053. certifi = ">=2017.4.17"
  1054. chardet = ">=3.0.2,<5"
  1055. idna = ">=2.5,<3"
  1056. urllib3 = ">=1.21.1,<1.27"
  1057. [package.extras]
  1058. security = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)"]
  1059. socks = ["PySocks (>=1.5.6,<1.5.7 || >1.5.7)", "win-inet-pton"]
  1060. [[package]]
  1061. name = "requests-oauthlib"
  1062. version = "1.3.0"
  1063. description = "OAuthlib authentication support for Requests."
  1064. category = "main"
  1065. optional = false
  1066. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  1067. [package.dependencies]
  1068. oauthlib = ">=3.0.0"
  1069. requests = ">=2.0.0"
  1070. [package.extras]
  1071. rsa = ["oauthlib[signedtoken] (>=3.0.0)"]
  1072. [[package]]
  1073. name = "rope"
  1074. version = "0.17.0"
  1075. description = "a python refactoring library..."
  1076. category = "dev"
  1077. optional = false
  1078. python-versions = "*"
  1079. [package.extras]
  1080. dev = ["pytest"]
  1081. [[package]]
  1082. name = "ruamel.yaml"
  1083. version = "0.16.12"
  1084. description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order"
  1085. category = "main"
  1086. optional = false
  1087. python-versions = "*"
  1088. [package.dependencies]
  1089. "ruamel.yaml.clib" = {version = ">=0.1.2", markers = "platform_python_implementation == \"CPython\" and python_version < \"3.9\""}
  1090. [package.extras]
  1091. docs = ["ryd"]
  1092. jinja2 = ["ruamel.yaml.jinja2 (>=0.2)"]
  1093. [[package]]
  1094. name = "ruamel.yaml.clib"
  1095. version = "0.2.2"
  1096. description = "C version of reader, parser and emitter for ruamel.yaml derived from libyaml"
  1097. category = "main"
  1098. optional = false
  1099. python-versions = "*"
  1100. [[package]]
  1101. name = "s3transfer"
  1102. version = "0.3.4"
  1103. description = "An Amazon S3 Transfer Manager"
  1104. category = "main"
  1105. optional = false
  1106. python-versions = "*"
  1107. [package.dependencies]
  1108. botocore = ">=1.12.36,<2.0a.0"
  1109. [[package]]
  1110. name = "sentry-sdk"
  1111. version = "0.19.5"
  1112. description = "Python client for Sentry (https://sentry.io)"
  1113. category = "main"
  1114. optional = false
  1115. python-versions = "*"
  1116. [package.dependencies]
  1117. certifi = "*"
  1118. urllib3 = ">=1.10.0"
  1119. [package.extras]
  1120. aiohttp = ["aiohttp (>=3.5)"]
  1121. beam = ["apache-beam (>=2.12)"]
  1122. bottle = ["bottle (>=0.12.13)"]
  1123. celery = ["celery (>=3)"]
  1124. chalice = ["chalice (>=1.16.0)"]
  1125. django = ["django (>=1.8)"]
  1126. falcon = ["falcon (>=1.4)"]
  1127. flask = ["flask (>=0.11)", "blinker (>=1.1)"]
  1128. pure_eval = ["pure-eval", "executing", "asttokens"]
  1129. pyspark = ["pyspark (>=2.4.4)"]
  1130. rq = ["rq (>=0.6)"]
  1131. sanic = ["sanic (>=0.8)"]
  1132. sqlalchemy = ["sqlalchemy (>=1.2)"]
  1133. tornado = ["tornado (>=5)"]
  1134. [[package]]
  1135. name = "simplejson"
  1136. version = "3.17.2"
  1137. description = "Simple, fast, extensible JSON encoder/decoder for Python"
  1138. category = "main"
  1139. optional = false
  1140. python-versions = ">=2.5, !=3.0.*, !=3.1.*, !=3.2.*"
  1141. [[package]]
  1142. name = "six"
  1143. version = "1.15.0"
  1144. description = "Python 2 and 3 compatibility utilities"
  1145. category = "main"
  1146. optional = false
  1147. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
  1148. [[package]]
  1149. name = "sqlparse"
  1150. version = "0.4.1"
  1151. description = "A non-validating SQL parser."
  1152. category = "main"
  1153. optional = false
  1154. python-versions = ">=3.5"
  1155. [[package]]
  1156. name = "stripe"
  1157. version = "2.55.1"
  1158. description = "Python bindings for the Stripe API"
  1159. category = "main"
  1160. optional = false
  1161. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  1162. [package.dependencies]
  1163. requests = {version = ">=2.20", markers = "python_version >= \"3.0\""}
  1164. [[package]]
  1165. name = "toml"
  1166. version = "0.10.2"
  1167. description = "Python Library for Tom's Obvious, Minimal Language"
  1168. category = "dev"
  1169. optional = false
  1170. python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
  1171. [[package]]
  1172. name = "traitlets"
  1173. version = "5.0.5"
  1174. description = "Traitlets Python configuration system"
  1175. category = "dev"
  1176. optional = false
  1177. python-versions = ">=3.7"
  1178. [package.dependencies]
  1179. ipython-genutils = "*"
  1180. [package.extras]
  1181. test = ["pytest"]
  1182. [[package]]
  1183. name = "typed-ast"
  1184. version = "1.4.2"
  1185. description = "a fork of Python 2 and 3 ast modules with type comment support"
  1186. category = "dev"
  1187. optional = false
  1188. python-versions = "*"
  1189. [[package]]
  1190. name = "typing-extensions"
  1191. version = "3.7.4.3"
  1192. description = "Backported and Experimental Type Hints for Python 3.5+"
  1193. category = "main"
  1194. optional = false
  1195. python-versions = "*"
  1196. [[package]]
  1197. name = "ua-parser"
  1198. version = "0.10.0"
  1199. description = "Python port of Browserscope's user agent parser"
  1200. category = "main"
  1201. optional = false
  1202. python-versions = "*"
  1203. [[package]]
  1204. name = "uritemplate"
  1205. version = "3.0.1"
  1206. description = "URI templates"
  1207. category = "main"
  1208. optional = false
  1209. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  1210. [[package]]
  1211. name = "urllib3"
  1212. version = "1.26.2"
  1213. description = "HTTP library with thread-safe connection pooling, file post, and more."
  1214. category = "main"
  1215. optional = false
  1216. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
  1217. [package.extras]
  1218. brotli = ["brotlipy (>=0.6.0)"]
  1219. secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"]
  1220. socks = ["PySocks (>=1.5.6,<1.5.7 || >1.5.7,<2.0)"]
  1221. [[package]]
  1222. name = "user-agents"
  1223. version = "2.2.0"
  1224. description = "A library to identify devices (phones, tablets) and their capabilities by parsing browser user agent strings."
  1225. category = "main"
  1226. optional = false
  1227. python-versions = "*"
  1228. [package.dependencies]
  1229. ua-parser = ">=0.10.0"
  1230. [[package]]
  1231. name = "uwsgi"
  1232. version = "2.0.19.1"
  1233. description = "The uWSGI server"
  1234. category = "main"
  1235. optional = false
  1236. python-versions = "*"
  1237. [[package]]
  1238. name = "vine"
  1239. version = "5.0.0"
  1240. description = "Promises, promises, promises."
  1241. category = "main"
  1242. optional = false
  1243. python-versions = ">=3.6"
  1244. [[package]]
  1245. name = "wcwidth"
  1246. version = "0.2.5"
  1247. description = "Measures the displayed width of unicode strings in a terminal"
  1248. category = "main"
  1249. optional = false
  1250. python-versions = "*"
  1251. [[package]]
  1252. name = "werkzeug"
  1253. version = "1.0.1"
  1254. description = "The comprehensive WSGI web application library."
  1255. category = "dev"
  1256. optional = false
  1257. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  1258. [package.extras]
  1259. dev = ["pytest", "pytest-timeout", "coverage", "tox", "sphinx", "pallets-sphinx-themes", "sphinx-issues"]
  1260. watchdog = ["watchdog"]
  1261. [[package]]
  1262. name = "whitenoise"
  1263. version = "5.2.0"
  1264. description = "Radically simplified static file serving for WSGI applications"
  1265. category = "main"
  1266. optional = false
  1267. python-versions = ">=3.5, <4"
  1268. [package.extras]
  1269. brotli = ["brotli"]
  1270. [[package]]
  1271. name = "wrapt"
  1272. version = "1.12.1"
  1273. description = "Module for decorators, wrappers and monkey patching."
  1274. category = "dev"
  1275. optional = false
  1276. python-versions = "*"
  1277. [[package]]
  1278. name = "zipp"
  1279. version = "3.4.0"
  1280. description = "Backport of pathlib-compatible object wrapper for zip files"
  1281. category = "main"
  1282. optional = false
  1283. python-versions = ">=3.6"
  1284. [package.extras]
  1285. docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"]
  1286. testing = ["pytest (>=3.5,<3.7.3 || >3.7.3)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-cov", "jaraco.test (>=3.2.0)", "jaraco.itertools", "func-timeout", "pytest-black (>=0.3.7)", "pytest-mypy"]
  1287. [[package]]
  1288. name = "zope.event"
  1289. version = "4.5.0"
  1290. description = "Very basic event publishing system"
  1291. category = "dev"
  1292. optional = false
  1293. python-versions = "*"
  1294. [package.extras]
  1295. docs = ["sphinx"]
  1296. test = ["zope.testrunner"]
  1297. [[package]]
  1298. name = "zope.interface"
  1299. version = "5.2.0"
  1300. description = "Interfaces for Python"
  1301. category = "dev"
  1302. optional = false
  1303. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  1304. [package.extras]
  1305. docs = ["sphinx", "repoze.sphinx.autointerface"]
  1306. test = ["coverage (>=5.0.3)", "zope.event", "zope.testing"]
  1307. testing = ["coverage (>=5.0.3)", "zope.event", "zope.testing"]
  1308. [metadata]
  1309. lock-version = "1.1"
  1310. python-versions = "^3.7"
  1311. content-hash = "a876fa69e880821d0ad7a06c1ae3d750e3250a68202d6b384598318b8104ad25"
  1312. [metadata.files]
  1313. amqp = [
  1314. {file = "amqp-5.0.2-py3-none-any.whl", hash = "sha256:5b9062d5c0812335c75434bf17ce33d7a20ecfedaa0733faec7379868eb4068a"},
  1315. {file = "amqp-5.0.2.tar.gz", hash = "sha256:fcd5b3baeeb7fc19b3486ff6d10543099d40ae1f5c9196eae695d1cde1b2f784"},
  1316. ]
  1317. anonymizeip = [
  1318. {file = "anonymizeip-1.0.0-py2.py3-none-any.whl", hash = "sha256:e0d446b06b2bbf236394a90b971de403f90f805d14db3a405f8731716acad1fe"},
  1319. {file = "anonymizeip-1.0.0.tar.gz", hash = "sha256:491cb94a31bae23294c5b93a13dd5c9ed55be98003c622e76e2fe64d6a4f3e91"},
  1320. ]
  1321. appdirs = [
  1322. {file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"},
  1323. {file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"},
  1324. ]
  1325. appnope = [
  1326. {file = "appnope-0.1.2-py2.py3-none-any.whl", hash = "sha256:93aa393e9d6c54c5cd570ccadd8edad61ea0c4b9ea7a01409020c9aa019eb442"},
  1327. {file = "appnope-0.1.2.tar.gz", hash = "sha256:dd83cd4b5b460958838f6eb3000c660b1f9caf2a5b1de4264e941512f603258a"},
  1328. ]
  1329. asgiref = [
  1330. {file = "asgiref-3.3.1-py3-none-any.whl", hash = "sha256:5ee950735509d04eb673bd7f7120f8fa1c9e2df495394992c73234d526907e17"},
  1331. {file = "asgiref-3.3.1.tar.gz", hash = "sha256:7162a3cb30ab0609f1a4c95938fd73e8604f63bdba516a7f7d64b83ff09478f0"},
  1332. ]
  1333. astroid = [
  1334. {file = "astroid-2.4.2-py3-none-any.whl", hash = "sha256:bc58d83eb610252fd8de6363e39d4f1d0619c894b0ed24603b881c02e64c7386"},
  1335. {file = "astroid-2.4.2.tar.gz", hash = "sha256:2f4078c2a41bf377eea06d71c9d2ba4eb8f6b1af2135bec27bbbb7d8f12bb703"},
  1336. ]
  1337. attrs = [
  1338. {file = "attrs-20.3.0-py2.py3-none-any.whl", hash = "sha256:31b2eced602aa8423c2aea9c76a724617ed67cf9513173fd3a4f03e3a929c7e6"},
  1339. {file = "attrs-20.3.0.tar.gz", hash = "sha256:832aa3cde19744e49938b91fea06d69ecb9e649c93ba974535d08ad92164f700"},
  1340. ]
  1341. backcall = [
  1342. {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"},
  1343. {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"},
  1344. ]
  1345. billiard = [
  1346. {file = "billiard-3.6.3.0-py3-none-any.whl", hash = "sha256:bff575450859a6e0fbc2f9877d9b715b0bbc07c3565bb7ed2280526a0cdf5ede"},
  1347. {file = "billiard-3.6.3.0.tar.gz", hash = "sha256:d91725ce6425f33a97dfa72fb6bfef0e47d4652acd98a032bd1a7fbf06d5fa6a"},
  1348. ]
  1349. black = [
  1350. {file = "black-19.10b0-py36-none-any.whl", hash = "sha256:1b30e59be925fafc1ee4565e5e08abef6b03fe455102883820fe5ee2e4734e0b"},
  1351. {file = "black-19.10b0.tar.gz", hash = "sha256:c2edb73a08e9e0e6f65a0e6af18b059b8b1cdd5bef997d7a0b181df93dc81539"},
  1352. ]
  1353. boto3 = [
  1354. {file = "boto3-1.16.56-py2.py3-none-any.whl", hash = "sha256:3f26aad4c6b238055d17fd662620284ffb4ced542ed9a2f7f9df65d97a3f1190"},
  1355. {file = "boto3-1.16.56.tar.gz", hash = "sha256:47151ed571c316458f4931cd2422995ba0c9f6818c5df7d75f49fc845208e42e"},
  1356. ]
  1357. botocore = [
  1358. {file = "botocore-1.19.56-py2.py3-none-any.whl", hash = "sha256:a37d073c2f166753cc3799e77d87d4096e24433fcca5e7c8cc8e77e5dbfe60e9"},
  1359. {file = "botocore-1.19.56.tar.gz", hash = "sha256:01496e4c2c06aab79689f2c345a0e2cceb5fe1da7858a7e7df189bcf97703223"},
  1360. ]
  1361. celery = [
  1362. {file = "celery-5.0.5-py3-none-any.whl", hash = "sha256:5e8d364e058554e83bbb116e8377d90c79be254785f357cb2cec026e79febe13"},
  1363. {file = "celery-5.0.5.tar.gz", hash = "sha256:f4efebe6f8629b0da2b8e529424de376494f5b7a743c321c8a2ddc2b1414921c"},
  1364. ]
  1365. certifi = [
  1366. {file = "certifi-2020.12.5-py2.py3-none-any.whl", hash = "sha256:719a74fb9e33b9bd44cc7f3a8d94bc35e4049deebe19ba7d8e108280cfd59830"},
  1367. {file = "certifi-2020.12.5.tar.gz", hash = "sha256:1a4995114262bffbc2413b159f2a1a480c969de6e6eb13ee966d470af86af59c"},
  1368. ]
  1369. cffi = [
  1370. {file = "cffi-1.14.4-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ebb253464a5d0482b191274f1c8bf00e33f7e0b9c66405fbffc61ed2c839c775"},
  1371. {file = "cffi-1.14.4-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:2c24d61263f511551f740d1a065eb0212db1dbbbbd241db758f5244281590c06"},
  1372. {file = "cffi-1.14.4-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9f7a31251289b2ab6d4012f6e83e58bc3b96bd151f5b5262467f4bb6b34a7c26"},
  1373. {file = "cffi-1.14.4-cp27-cp27m-win32.whl", hash = "sha256:5cf4be6c304ad0b6602f5c4e90e2f59b47653ac1ed9c662ed379fe48a8f26b0c"},
  1374. {file = "cffi-1.14.4-cp27-cp27m-win_amd64.whl", hash = "sha256:f60567825f791c6f8a592f3c6e3bd93dd2934e3f9dac189308426bd76b00ef3b"},
  1375. {file = "cffi-1.14.4-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:c6332685306b6417a91b1ff9fae889b3ba65c2292d64bd9245c093b1b284809d"},
  1376. {file = "cffi-1.14.4-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:d9efd8b7a3ef378dd61a1e77367f1924375befc2eba06168b6ebfa903a5e59ca"},
  1377. {file = "cffi-1.14.4-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:51a8b381b16ddd370178a65360ebe15fbc1c71cf6f584613a7ea08bfad946698"},
  1378. {file = "cffi-1.14.4-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:1d2c4994f515e5b485fd6d3a73d05526aa0fcf248eb135996b088d25dfa1865b"},
  1379. {file = "cffi-1.14.4-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:af5c59122a011049aad5dd87424b8e65a80e4a6477419c0c1015f73fb5ea0293"},
  1380. {file = "cffi-1.14.4-cp35-cp35m-win32.whl", hash = "sha256:594234691ac0e9b770aee9fcdb8fa02c22e43e5c619456efd0d6c2bf276f3eb2"},
  1381. {file = "cffi-1.14.4-cp35-cp35m-win_amd64.whl", hash = "sha256:64081b3f8f6f3c3de6191ec89d7dc6c86a8a43911f7ecb422c60e90c70be41c7"},
  1382. {file = "cffi-1.14.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f803eaa94c2fcda012c047e62bc7a51b0bdabda1cad7a92a522694ea2d76e49f"},
  1383. {file = "cffi-1.14.4-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:105abaf8a6075dc96c1fe5ae7aae073f4696f2905fde6aeada4c9d2926752362"},
  1384. {file = "cffi-1.14.4-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:0638c3ae1a0edfb77c6765d487fee624d2b1ee1bdfeffc1f0b58c64d149e7eec"},
  1385. {file = "cffi-1.14.4-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:7c6b1dece89874d9541fc974917b631406233ea0440d0bdfbb8e03bf39a49b3b"},
  1386. {file = "cffi-1.14.4-cp36-cp36m-win32.whl", hash = "sha256:155136b51fd733fa94e1c2ea5211dcd4c8879869008fc811648f16541bf99668"},
  1387. {file = "cffi-1.14.4-cp36-cp36m-win_amd64.whl", hash = "sha256:6bc25fc545a6b3d57b5f8618e59fc13d3a3a68431e8ca5fd4c13241cd70d0009"},
  1388. {file = "cffi-1.14.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a7711edca4dcef1a75257b50a2fbfe92a65187c47dab5a0f1b9b332c5919a3fb"},
  1389. {file = "cffi-1.14.4-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:00e28066507bfc3fe865a31f325c8391a1ac2916219340f87dfad602c3e48e5d"},
  1390. {file = "cffi-1.14.4-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:798caa2a2384b1cbe8a2a139d80734c9db54f9cc155c99d7cc92441a23871c03"},
  1391. {file = "cffi-1.14.4-cp37-cp37m-win32.whl", hash = "sha256:00a1ba5e2e95684448de9b89888ccd02c98d512064b4cb987d48f4b40aa0421e"},
  1392. {file = "cffi-1.14.4-cp37-cp37m-win_amd64.whl", hash = "sha256:9cc46bc107224ff5b6d04369e7c595acb700c3613ad7bcf2e2012f62ece80c35"},
  1393. {file = "cffi-1.14.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:df5169c4396adc04f9b0a05f13c074df878b6052430e03f50e68adf3a57aa28d"},
  1394. {file = "cffi-1.14.4-cp38-cp38-manylinux1_i686.whl", hash = "sha256:9ffb888f19d54a4d4dfd4b3f29bc2c16aa4972f1c2ab9c4ab09b8ab8685b9c2b"},
  1395. {file = "cffi-1.14.4-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:8d6603078baf4e11edc4168a514c5ce5b3ba6e3e9c374298cb88437957960a53"},
  1396. {file = "cffi-1.14.4-cp38-cp38-win32.whl", hash = "sha256:b4e248d1087abf9f4c10f3c398896c87ce82a9856494a7155823eb45a892395d"},
  1397. {file = "cffi-1.14.4-cp38-cp38-win_amd64.whl", hash = "sha256:ec80dc47f54e6e9a78181ce05feb71a0353854cc26999db963695f950b5fb375"},
  1398. {file = "cffi-1.14.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:840793c68105fe031f34d6a086eaea153a0cd5c491cde82a74b420edd0a2b909"},
  1399. {file = "cffi-1.14.4-cp39-cp39-manylinux1_i686.whl", hash = "sha256:b18e0a9ef57d2b41f5c68beefa32317d286c3d6ac0484efd10d6e07491bb95dd"},
  1400. {file = "cffi-1.14.4-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:045d792900a75e8b1e1b0ab6787dd733a8190ffcf80e8c8ceb2fb10a29ff238a"},
  1401. {file = "cffi-1.14.4-cp39-cp39-win32.whl", hash = "sha256:ba4e9e0ae13fc41c6b23299545e5ef73055213e466bd107953e4a013a5ddd7e3"},
  1402. {file = "cffi-1.14.4-cp39-cp39-win_amd64.whl", hash = "sha256:f032b34669220030f905152045dfa27741ce1a6db3324a5bc0b96b6c7420c87b"},
  1403. {file = "cffi-1.14.4.tar.gz", hash = "sha256:1a465cbe98a7fd391d47dce4b8f7e5b921e6cd805ef421d04f5f66ba8f06086c"},
  1404. ]
  1405. chardet = [
  1406. {file = "chardet-4.0.0-py2.py3-none-any.whl", hash = "sha256:f864054d66fd9118f2e67044ac8981a54775ec5b67aed0441892edb553d21da5"},
  1407. {file = "chardet-4.0.0.tar.gz", hash = "sha256:0d6f53a15db4120f2b08c94f11e7d93d2c911ee118b6b30a04ec3ee8310179fa"},
  1408. ]
  1409. click = [
  1410. {file = "click-7.1.2-py2.py3-none-any.whl", hash = "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc"},
  1411. {file = "click-7.1.2.tar.gz", hash = "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a"},
  1412. ]
  1413. click-didyoumean = [
  1414. {file = "click-didyoumean-0.0.3.tar.gz", hash = "sha256:112229485c9704ff51362fe34b2d4f0b12fc71cc20f6d2b3afabed4b8bfa6aeb"},
  1415. ]
  1416. click-plugins = [
  1417. {file = "click-plugins-1.1.1.tar.gz", hash = "sha256:46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b"},
  1418. {file = "click_plugins-1.1.1-py2.py3-none-any.whl", hash = "sha256:5d262006d3222f5057fd81e1623d4443e41dcda5dc815c06b442aa3c02889fc8"},
  1419. ]
  1420. click-repl = [
  1421. {file = "click-repl-0.1.6.tar.gz", hash = "sha256:b9f29d52abc4d6059f8e276132a111ab8d94980afe6a5432b9d996544afa95d5"},
  1422. {file = "click_repl-0.1.6-py3-none-any.whl", hash = "sha256:9c4c3d022789cae912aad8a3f5e1d7c2cdd016ee1225b5212ad3e8691563cda5"},
  1423. ]
  1424. colorama = [
  1425. {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"},
  1426. ]
  1427. configargparse = [
  1428. {file = "ConfigArgParse-1.2.3.tar.gz", hash = "sha256:edd17be986d5c1ba2e307150b8e5f5107aba125f3574dddd02c85d5cdcfd37dc"},
  1429. ]
  1430. coreapi = [
  1431. {file = "coreapi-2.3.3-py2.py3-none-any.whl", hash = "sha256:bf39d118d6d3e171f10df9ede5666f63ad80bba9a29a8ec17726a66cf52ee6f3"},
  1432. {file = "coreapi-2.3.3.tar.gz", hash = "sha256:46145fcc1f7017c076a2ef684969b641d18a2991051fddec9458ad3f78ffc1cb"},
  1433. ]
  1434. coreschema = [
  1435. {file = "coreschema-0.0.4-py2-none-any.whl", hash = "sha256:5e6ef7bf38c1525d5e55a895934ab4273548629f16aed5c0a6caa74ebf45551f"},
  1436. {file = "coreschema-0.0.4.tar.gz", hash = "sha256:9503506007d482ab0867ba14724b93c18a33b22b6d19fb419ef2d239dd4a1607"},
  1437. ]
  1438. cryptography = [
  1439. {file = "cryptography-3.3.1-cp27-cp27m-macosx_10_10_x86_64.whl", hash = "sha256:c366df0401d1ec4e548bebe8f91d55ebcc0ec3137900d214dd7aac8427ef3030"},
  1440. {file = "cryptography-3.3.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9f6b0492d111b43de5f70052e24c1f0951cb9e6022188ebcb1cc3a3d301469b0"},
  1441. {file = "cryptography-3.3.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:a69bd3c68b98298f490e84519b954335154917eaab52cf582fa2c5c7efc6e812"},
  1442. {file = "cryptography-3.3.1-cp27-cp27m-win32.whl", hash = "sha256:84ef7a0c10c24a7773163f917f1cb6b4444597efd505a8aed0a22e8c4780f27e"},
  1443. {file = "cryptography-3.3.1-cp27-cp27m-win_amd64.whl", hash = "sha256:594a1db4511bc4d960571536abe21b4e5c3003e8750ab8365fafce71c5d86901"},
  1444. {file = "cryptography-3.3.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:0003a52a123602e1acee177dc90dd201f9bb1e73f24a070db7d36c588e8f5c7d"},
  1445. {file = "cryptography-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:83d9d2dfec70364a74f4e7c70ad04d3ca2e6a08b703606993407bf46b97868c5"},
  1446. {file = "cryptography-3.3.1-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:dc42f645f8f3a489c3dd416730a514e7a91a59510ddaadc09d04224c098d3302"},
  1447. {file = "cryptography-3.3.1-cp36-abi3-manylinux1_x86_64.whl", hash = "sha256:788a3c9942df5e4371c199d10383f44a105d67d401fb4304178020142f020244"},
  1448. {file = "cryptography-3.3.1-cp36-abi3-manylinux2010_x86_64.whl", hash = "sha256:69e836c9e5ff4373ce6d3ab311c1a2eed274793083858d3cd4c7d12ce20d5f9c"},
  1449. {file = "cryptography-3.3.1-cp36-abi3-manylinux2014_aarch64.whl", hash = "sha256:9e21301f7a1e7c03dbea73e8602905a4ebba641547a462b26dd03451e5769e7c"},
  1450. {file = "cryptography-3.3.1-cp36-abi3-win32.whl", hash = "sha256:b4890d5fb9b7a23e3bf8abf5a8a7da8e228f1e97dc96b30b95685df840b6914a"},
  1451. {file = "cryptography-3.3.1-cp36-abi3-win_amd64.whl", hash = "sha256:0e85aaae861d0485eb5a79d33226dd6248d2a9f133b81532c8f5aae37de10ff7"},
  1452. {file = "cryptography-3.3.1.tar.gz", hash = "sha256:7e177e4bea2de937a584b13645cab32f25e3d96fc0bc4a4cf99c27dc77682be6"},
  1453. ]
  1454. decorator = [
  1455. {file = "decorator-4.4.2-py2.py3-none-any.whl", hash = "sha256:41fa54c2a0cc4ba648be4fd43cff00aedf5b9465c9bf18d64325bc225f08f760"},
  1456. {file = "decorator-4.4.2.tar.gz", hash = "sha256:e3a62f0520172440ca0dcc823749319382e377f37f140a0b99ef45fecb84bfe7"},
  1457. ]
  1458. defusedxml = [
  1459. {file = "defusedxml-0.6.0-py2.py3-none-any.whl", hash = "sha256:6687150770438374ab581bb7a1b327a847dd9c5749e396102de3fad4e8a3ef93"},
  1460. {file = "defusedxml-0.6.0.tar.gz", hash = "sha256:f684034d135af4c6cbb949b8a4d2ed61634515257a67299e5f940fbaa34377f5"},
  1461. ]
  1462. dj-rest-auth = [
  1463. {file = "dj-rest-auth-2.1.3.tar.gz", hash = "sha256:a5ae4e1180e29539839677b51fd6faf84ea410270c082d2479abf5490422ca21"},
  1464. ]
  1465. dj-stripe = [
  1466. {file = "dj-stripe-2.4.1.tar.gz", hash = "sha256:4da77d6a6e387941bc70377c9cbbab6f3739ae92602d93275ea5a2814f7901a4"},
  1467. {file = "dj_stripe-2.4.1-py3-none-any.whl", hash = "sha256:39381937a0c7ea8c6b78992e3ced80f4d94919c7c2d61c19c36eee9aca8887d9"},
  1468. ]
  1469. django = [
  1470. {file = "Django-3.1.5-py3-none-any.whl", hash = "sha256:efa2ab96b33b20c2182db93147a0c3cd7769d418926f9e9f140a60dca7c64ca9"},
  1471. {file = "Django-3.1.5.tar.gz", hash = "sha256:2d78425ba74c7a1a74b196058b261b9733a8570782f4e2828974777ccca7edf7"},
  1472. ]
  1473. django-allauth = [
  1474. {file = "django-allauth-0.44.0.tar.gz", hash = "sha256:e51af457466022f52154d74c8523ac69375120fad2acce6e239635d85e610b25"},
  1475. ]
  1476. django-anymail = [
  1477. {file = "django-anymail-8.1.tar.gz", hash = "sha256:0c3e56a339a37e654b7511572564fe0949f4fbb12c072761c9e35cfc49cb4dc1"},
  1478. {file = "django_anymail-8.1-py3-none-any.whl", hash = "sha256:0301f2ea1dde7840e5276a5e2d1ca2a56fd558e2b71800e89ca895c18aa3c615"},
  1479. ]
  1480. django-bitfield = [
  1481. {file = "django-bitfield-2.0.1.tar.gz", hash = "sha256:ab340eb50cdb1e8c005594b9f8170a95a698102d06cf3f5031763be2750a8862"},
  1482. {file = "django_bitfield-2.0.1-py2.py3-none-any.whl", hash = "sha256:83bfa27da718caff436f646369ce58e2d9f922e1f3d65a93f0b731a835cbfc58"},
  1483. ]
  1484. django-celery-results = [
  1485. {file = "django_celery_results-2.0.0-py2.py3-none-any.whl", hash = "sha256:f82280a9a25c44048b9e64ae4d47ade7d522c8221304b0e25388080021b95468"},
  1486. {file = "django_celery_results-2.0.0.tar.gz", hash = "sha256:754e01f22f70fddee5f2ca95c18f183fccee42ad98f9803577bffa717d45ac5d"},
  1487. ]
  1488. django-cors-headers = [
  1489. {file = "django-cors-headers-3.6.0.tar.gz", hash = "sha256:5665fc1b1aabf1b678885cf6f8f8bd7da36ef0a978375e767d491b48d3055d8f"},
  1490. {file = "django_cors_headers-3.6.0-py3-none-any.whl", hash = "sha256:ba898dd478cd4be3a38ebc3d8729fa4d044679f8c91b2684edee41129d7e968a"},
  1491. ]
  1492. django-csp = [
  1493. {file = "django_csp-3.7-py2.py3-none-any.whl", hash = "sha256:01443a07723f9a479d498bd7bb63571aaa771e690f64bde515db6cdb76e8041a"},
  1494. {file = "django_csp-3.7.tar.gz", hash = "sha256:01eda02ad3f10261c74131cdc0b5a6a62b7c7ad4fd017fbefb7a14776e0a9727"},
  1495. ]
  1496. django-debug-toolbar = [
  1497. {file = "django-debug-toolbar-3.2.tar.gz", hash = "sha256:84e2607d900dbd571df0a2acf380b47c088efb787dce9805aefeb407341961d2"},
  1498. {file = "django_debug_toolbar-3.2-py3-none-any.whl", hash = "sha256:9e5a25d0c965f7e686f6a8ba23613ca9ca30184daa26487706d4829f5cfb697a"},
  1499. ]
  1500. django-environ = [
  1501. {file = "django-environ-0.4.5.tar.gz", hash = "sha256:6c9d87660142608f63ec7d5ce5564c49b603ea8ff25da595fd6098f6dc82afde"},
  1502. {file = "django_environ-0.4.5-py2.py3-none-any.whl", hash = "sha256:c57b3c11ec1f319d9474e3e5a79134f40174b17c7cc024bbb2fad84646b120c4"},
  1503. ]
  1504. django-extensions = [
  1505. {file = "django-extensions-3.1.0.tar.gz", hash = "sha256:7cd002495ff0a0e5eb6cdd6be759600905b4e4079232ea27618fc46bdd853651"},
  1506. {file = "django_extensions-3.1.0-py3-none-any.whl", hash = "sha256:c7f88625a53f631745d4f2bef9ec4dcb999ed59476393bdbbe99db8596778846"},
  1507. ]
  1508. django-filter = [
  1509. {file = "django-filter-2.4.0.tar.gz", hash = "sha256:84e9d5bb93f237e451db814ed422a3a625751cbc9968b484ecc74964a8696b06"},
  1510. {file = "django_filter-2.4.0-py3-none-any.whl", hash = "sha256:e00d32cebdb3d54273c48f4f878f898dced8d5dfaad009438fe61ebdf535ace1"},
  1511. ]
  1512. django-ipware = [
  1513. {file = "django-ipware-3.0.2.tar.gz", hash = "sha256:c7df8e1410a8e5d6b1fbae58728402ea59950f043c3582e033e866f0f0cf5e94"},
  1514. ]
  1515. django-organizations = [
  1516. {file = "django-organizations-1.1.2.tar.gz", hash = "sha256:798af83f3072b476832fa6a0a476ef18d43674a7071644d7364b86f52f41c33f"},
  1517. {file = "django_organizations-1.1.2-py2.py3-none-any.whl", hash = "sha256:d3d84da2d0199780db076e253b5a738a9518684fce26a229fd298172f55b7ea1"},
  1518. ]
  1519. django-redis-cache = [
  1520. {file = "django-redis-cache-3.0.0.tar.gz", hash = "sha256:9a2eebef421d996a82098a19d17ff6b321265cd73178fa398913019764e8394a"},
  1521. ]
  1522. django-storages = [
  1523. {file = "django-storages-1.11.1.tar.gz", hash = "sha256:c823dbf56c9e35b0999a13d7e05062b837bae36c518a40255d522fbe3750fbb4"},
  1524. {file = "django_storages-1.11.1-py3-none-any.whl", hash = "sha256:f28765826d507a0309cfaa849bd084894bc71d81bf0d09479168d44785396f80"},
  1525. ]
  1526. djangorestframework = [
  1527. {file = "djangorestframework-3.12.2-py3-none-any.whl", hash = "sha256:0209bafcb7b5010fdfec784034f059d512256424de2a0f084cb82b096d6dd6a7"},
  1528. ]
  1529. drf-nested-routers = [
  1530. {file = "drf-nested-routers-0.92.5.tar.gz", hash = "sha256:9d6a326333e9b16549e63b893c27075d98bbc217cd05fb10bbfa770d728d3f66"},
  1531. {file = "drf_nested_routers-0.92.5-py2.py3-none-any.whl", hash = "sha256:995b831be036911e330a86b7129dc6589de62f2a53d72067e7ce2b4a90f28c35"},
  1532. ]
  1533. drf-yasg = [
  1534. {file = "drf-yasg-1.20.0.tar.gz", hash = "sha256:d50f197c7f02545d0b736df88c6d5cf874f8fea2507ad85ad7de6ae5bf2d9e5a"},
  1535. {file = "drf_yasg-1.20.0-py2.py3-none-any.whl", hash = "sha256:8b72e5b1875931a8d11af407be3a9a5ba8776541492947a0df5bafda6b7f8267"},
  1536. ]
  1537. flask = [
  1538. {file = "Flask-1.1.2-py2.py3-none-any.whl", hash = "sha256:8a4fdd8936eba2512e9c85df320a37e694c93945b33ef33c89946a340a238557"},
  1539. {file = "Flask-1.1.2.tar.gz", hash = "sha256:4efa1ae2d7c9865af48986de8aeb8504bf32c7f3d6fdc9353d34b21f4b127060"},
  1540. ]
  1541. flask-basicauth = [
  1542. {file = "Flask-BasicAuth-0.2.0.tar.gz", hash = "sha256:df5ebd489dc0914c224419da059d991eb72988a01cdd4b956d52932ce7d501ff"},
  1543. ]
  1544. freezegun = [
  1545. {file = "freezegun-1.0.0-py2.py3-none-any.whl", hash = "sha256:02b35de52f4699a78f6ac4518e4cd3390dddc43b0aeb978335a8f270a2d9668b"},
  1546. {file = "freezegun-1.0.0.tar.gz", hash = "sha256:1cf08e441f913ff5e59b19cc065a8faa9dd1ddc442eaf0375294f344581a0643"},
  1547. ]
  1548. gevent = [
  1549. {file = "gevent-21.1.0-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:30390b6d945e4c1ecc9629266bed65e798fc9f0e0102c2dcc38accf7fb14cbae"},
  1550. {file = "gevent-21.1.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:6e609020e27b06d5810bcd2fbf5310156e0d22239fc4c2fb13bb66cf4de25358"},
  1551. {file = "gevent-21.1.0-cp27-cp27m-win32.whl", hash = "sha256:d3a7dd23addba6c7158b46d24d3d2e8ed23f10aee69e3db39f5dd9de655d3f09"},
  1552. {file = "gevent-21.1.0-cp27-cp27m-win_amd64.whl", hash = "sha256:0246579c9d9e1391d79c64c4df79bc53776a4f42dd599b4df78b3640fa9d88b8"},
  1553. {file = "gevent-21.1.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:ee45f3999e7054375957b0ced67b5a25ad4ee6d2578b63be453179eddb0596e9"},
  1554. {file = "gevent-21.1.0-cp35-cp35m-win32.whl", hash = "sha256:9848ce2d823b91a9af0073b3a1f3e84ad3c12db839bb0acec41679812738be60"},
  1555. {file = "gevent-21.1.0-cp35-cp35m-win_amd64.whl", hash = "sha256:d7091dec70c4af7bc83fd06ffb3fa51a87fe13acb5493cff0c512f2a0f0fd8b5"},
  1556. {file = "gevent-21.1.0-cp36-cp36m-win32.whl", hash = "sha256:f7f6d4c32eaf2cfda8ec54c76f64b990e90808bf0ede1aecd7a19ac102c930c4"},
  1557. {file = "gevent-21.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:176cf877d70ab0de81aebd6213e059238788f2ca8419deebbf76b93ecc2b5be1"},
  1558. {file = "gevent-21.1.0-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:6fb8c0063c3835cf48b5ac35f24f862d6e7591847bdd9d5d4e59b2ea318f41f6"},
  1559. {file = "gevent-21.1.0-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:d4bd41112f0ecb3713584b701d8517181ba63b6a1c88e3f85484149bf37e1b19"},
  1560. {file = "gevent-21.1.0-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:1047b7e60c8c151af99db7fda5f3fee9805c8d6c6412b83ea51a9f9869147d90"},
  1561. {file = "gevent-21.1.0-cp37-cp37m-win32.whl", hash = "sha256:9a8e1f2d58252300251f111dbd1fb7d92cc575d60d7c3c529427702a410ea3b5"},
  1562. {file = "gevent-21.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:29221e55534a7010190c9aea4281d8a57a4c1fa1132c682b054f35013961e2d8"},
  1563. {file = "gevent-21.1.0-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:287b769c0243d90bbb51ee315251fda11421ed5e18c891771e0f7a83408f2a50"},
  1564. {file = "gevent-21.1.0-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:bf0b5b5ed199a9f93ceaa8973556e97186650b43b4cbe7c98b615b0cc9d180bc"},
  1565. {file = "gevent-21.1.0-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:c100f9021128fecf22161144388f73857a335661b5aef473dab13e969eba26f7"},
  1566. {file = "gevent-21.1.0-cp38-cp38-win32.whl", hash = "sha256:9f3d5c7eae845a822f058be201d96d047f116149057e9689edb2ac585c5d57b4"},
  1567. {file = "gevent-21.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:9d2c63d968bef408a95aad2b64832cb79a969d1fcfe040856c22a99278351fda"},
  1568. {file = "gevent-21.1.0-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:89a4cce5d82bbe13aff1c8fc377f14bee6bb5a52716e160b99fc6cb3bf6d5cd6"},
  1569. {file = "gevent-21.1.0-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:f1d45ae1963512cfdd2a6f64415e309f87599707132288cebc277230435579ce"},
  1570. {file = "gevent-21.1.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:3d4d3506e8f8eda11b4bc6c598be3dade6a22b3d8bf13a562bdc8bafa6d6a65c"},
  1571. {file = "gevent-21.1.0-pp27-pypy_73-win32.whl", hash = "sha256:7ac86bf4f9e2552c1d3d9635f157edbdaff7c22a573bd542d0bcdf245a0d2c6a"},
  1572. {file = "gevent-21.1.0.tar.gz", hash = "sha256:6a10e67912457c56245e5403b7a53855ec65321ad9ae29aa0be947b009cb8481"},
  1573. ]
  1574. geventhttpclient = [
  1575. {file = "geventhttpclient-1.4.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:d9d53176e45fd3856efc0413040645846cb6441d7d333187a2e615b28ae5e843"},
  1576. {file = "geventhttpclient-1.4.5-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e22ad10de297936136c23ddb4cd5300a9d1ce383f27b6111aaadb620ee24c87e"},
  1577. {file = "geventhttpclient-1.4.5-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:a336b10998bb06e88192a1ff5ef74079316bf1072492673554ff95f69c7ba3d8"},
  1578. {file = "geventhttpclient-1.4.5-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:b0fed14b5c7949b7c0a5e0984806810ff009ed12750c498e46d18b1e26c19cc2"},
  1579. {file = "geventhttpclient-1.4.5-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:3367f664e26848755e3c574c5ba3f5c690ef00d13bba808889c5a761bc4079ed"},
  1580. {file = "geventhttpclient-1.4.5-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:f4041964515a1a226803662c52b12282f0ae2a8783debb8ded9a8161369bff93"},
  1581. {file = "geventhttpclient-1.4.5-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:93847625cc7fed329a44d9d8d02afdd0651c4e0202b7c6fde9badea11fff2e90"},
  1582. {file = "geventhttpclient-1.4.5-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:c5edd4ccdbf3b45fbffc2c19e937f903914230e61b693c91c91d59cf5e1d926a"},
  1583. {file = "geventhttpclient-1.4.5-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:1f078b28613a55a23e0f12e4a5aab5a1d0daf5f4110c763448f1d408e6dc4de0"},
  1584. {file = "geventhttpclient-1.4.5-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:7ac1c4105092e0757caf0fb5aabde659e97204d0766ba0345e86286f2f3f2b28"},
  1585. {file = "geventhttpclient-1.4.5-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:1a86f397cebee8253e51835e419efa9486790fb9e2e7dcdade5eed5fedae4a8c"},
  1586. {file = "geventhttpclient-1.4.5-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:56868571c7262d477a7c200d9bb99089d969c10efcc488efdd737170d863c4f5"},
  1587. {file = "geventhttpclient-1.4.5-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:9059afd304c81ed3d7462bd7c43991ad499ca7395e7d2b562f5f61d3c6707056"},
  1588. {file = "geventhttpclient-1.4.5-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:af6fceb730d92e7f3b029ff5eb5e1ccc54530ac34d3b2aa50f2928948f478ac3"},
  1589. {file = "geventhttpclient-1.4.5-cp35-cp35m-win32.whl", hash = "sha256:50efbbe1a24019fef5f3ebe4e463c8b2aa965f6898469ab435b9c4f8e8b8b82f"},
  1590. {file = "geventhttpclient-1.4.5-cp35-cp35m-win_amd64.whl", hash = "sha256:0cf0f5ba00b3cc19b30ea5192bfc6673ebc2e160404385acae773aa699717f8e"},
  1591. {file = "geventhttpclient-1.4.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:92945e90da9a789fba24451bf31bc7c0d7606e2cd9ce4368542fb8e285ed6d96"},
  1592. {file = "geventhttpclient-1.4.5-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:951dc279b387f45201afcab2a7d0807a8e7e5331c16950ed73b5617c09f0fa64"},
  1593. {file = "geventhttpclient-1.4.5-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:caa624d13fa21bf1dd7925bc416c89b7c558d04200dcb8b36fb7b58f34d3e50d"},
  1594. {file = "geventhttpclient-1.4.5-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:4af9e90f19b192f14d863502d23eaf0e3e49719c249f0b459a46a40999754dc6"},
  1595. {file = "geventhttpclient-1.4.5-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:3e7f1ee77ec3e6449da319ca1f00710a9e53b78c0dea208ebd1999fb832a0910"},
  1596. {file = "geventhttpclient-1.4.5-cp36-cp36m-win32.whl", hash = "sha256:b1b6baaab4560679ec8bfe52c80b50f55c4c139677f3ee766cfece246cbc3321"},
  1597. {file = "geventhttpclient-1.4.5-cp36-cp36m-win_amd64.whl", hash = "sha256:9eb331f775c216515fd5352f6e6c7693062a77418c7e8ed9500ccf8ba7829ad2"},
  1598. {file = "geventhttpclient-1.4.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a484c9ff9c965b6addda0043b765930431b794cb897895857f54c90327a8df83"},
  1599. {file = "geventhttpclient-1.4.5-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:33c34848dc1e929b5be24ad8429f34704f2bbba5ab5b08aa9591e842e35ac7ea"},
  1600. {file = "geventhttpclient-1.4.5-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:48b04615ced3bc6a759405ec28d86eaf460d6d69ed98ac18c2a5dff8f3eb26d2"},
  1601. {file = "geventhttpclient-1.4.5-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:6ac614b0f89e89e239a0ce800574d86187bea5a07fe4cc0edb13c75442ee1c03"},
  1602. {file = "geventhttpclient-1.4.5-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:fa4bf245d5770e1a85295f0a9966f12869a13e9cdc5a6a7b6a05ae787b80329d"},
  1603. {file = "geventhttpclient-1.4.5-cp37-cp37m-win32.whl", hash = "sha256:bf87aad4687dc69a2af5eac371c56116659b8346abfa0ce329b6fa606dc9123b"},
  1604. {file = "geventhttpclient-1.4.5-cp37-cp37m-win_amd64.whl", hash = "sha256:24b60c12a582c6f9ec2b217b1489d687231cc9c8574b771a28c81d8285874b79"},
  1605. {file = "geventhttpclient-1.4.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:36760415a845a0d8ef2338ed90335c66765b8ff7b7944a016bb487d822d39aa5"},
  1606. {file = "geventhttpclient-1.4.5-cp38-cp38-manylinux1_i686.whl", hash = "sha256:e124b9b2e385894405fe31f5e1468b72f784d5b656d753d502ab5c6b65d9f135"},
  1607. {file = "geventhttpclient-1.4.5-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:f809483056aac9fcc1eecabf62656172091d5ee0bf87f7763cc7df49b0f8070b"},
  1608. {file = "geventhttpclient-1.4.5-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:88cce547d86efc296c8d53572cda0ff8793e55c0120399f68a26efb79330103b"},
  1609. {file = "geventhttpclient-1.4.5-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:00a38e63c0de06a46839a568951826fa7a30264a8e14337451e98b13d5809dda"},
  1610. {file = "geventhttpclient-1.4.5-cp38-cp38-win32.whl", hash = "sha256:e392c1a740d343ba4d5ae15fc1c45f1fcc6864a17fa8f171e96d86c83f3aefd1"},
  1611. {file = "geventhttpclient-1.4.5-cp38-cp38-win_amd64.whl", hash = "sha256:7a7a57d64ee9d4c6c5a6b9dca07209796a853ce81c184b55a3aca5ec09964d59"},
  1612. {file = "geventhttpclient-1.4.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5dacd90d821fc2b32491049e6231811ce4dea1314fc08d46b75372570e682422"},
  1613. {file = "geventhttpclient-1.4.5-cp39-cp39-win32.whl", hash = "sha256:05e19f3c7d0fbb9bf93bc88583aafe86b7bfe49e49b670ac3b49dc4b643c6ad9"},
  1614. {file = "geventhttpclient-1.4.5-cp39-cp39-win_amd64.whl", hash = "sha256:8b8294288382f9446a67d3399413f39bb1d281f9b9428e6a9bee24d96660ab38"},
  1615. {file = "geventhttpclient-1.4.5-pp27-pypy_73-macosx_10_9_x86_64.whl", hash = "sha256:b1178a45143901015160a15950e64a60fbf4459f9b8b4d85b43f070f65170078"},
  1616. {file = "geventhttpclient-1.4.5-pp27-pypy_73-manylinux1_x86_64.whl", hash = "sha256:df617afed129da1e69714b9ef148e35a0014cd34378fcde39228771fe8d16be3"},
  1617. {file = "geventhttpclient-1.4.5-pp27-pypy_73-manylinux2010_x86_64.whl", hash = "sha256:8ad49e85eb90e199aea04243333a858f22a6d2262f9545721c2c106e0b416aee"},
  1618. {file = "geventhttpclient-1.4.5-pp27-pypy_73-win32.whl", hash = "sha256:bd63f0e25ee1667d1327f63dfff78e973920769d26b2382a910a03f7605475c5"},
  1619. {file = "geventhttpclient-1.4.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2eef6e11cfab6fded8d0a60ac90e2abc2e3353bc5cd8d6932ce1c2a4c4f5cd09"},
  1620. {file = "geventhttpclient-1.4.5-pp36-pypy36_pp73-manylinux1_x86_64.whl", hash = "sha256:ead6fa808ccb311b50d66dcae7af45d2fcb1897ba75d9d0df8aa83b9dca6404c"},
  1621. {file = "geventhttpclient-1.4.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl", hash = "sha256:6ec839ab64c5c1a508a9d9ccb0c7df9ac09d5266c4d0614138636ff1bc836b62"},
  1622. {file = "geventhttpclient-1.4.5-pp36-pypy36_pp73-win32.whl", hash = "sha256:de19bd08fa22d6f5d93424edb0b4819c10bfe0e6b4e8b8830c8074727ff083dd"},
  1623. {file = "geventhttpclient-1.4.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:4246ce2649fb12ab6b9e9e4f3721856b30cbba29873b7c3a3d671f6d1cef54f5"},
  1624. {file = "geventhttpclient-1.4.5-pp37-pypy37_pp73-win32.whl", hash = "sha256:a8884dec1393b4a3febcd18088514560d926915924fee6c74676405e25d34604"},
  1625. {file = "geventhttpclient-1.4.5.tar.gz", hash = "sha256:3f0ab18d84ef26ba0c9df73ae2a41ba30a46072b447f2e36c740400de4a63d44"},
  1626. ]
  1627. greenlet = [
  1628. {file = "greenlet-1.0.0-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:1d1d4473ecb1c1d31ce8fd8d91e4da1b1f64d425c1dc965edc4ed2a63cfa67b2"},
  1629. {file = "greenlet-1.0.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:cfd06e0f0cc8db2a854137bd79154b61ecd940dce96fad0cba23fe31de0b793c"},
  1630. {file = "greenlet-1.0.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:eb333b90036358a0e2c57373f72e7648d7207b76ef0bd00a4f7daad1f79f5203"},
  1631. {file = "greenlet-1.0.0-cp27-cp27m-win32.whl", hash = "sha256:1a1ada42a1fd2607d232ae11a7b3195735edaa49ea787a6d9e6a53afaf6f3476"},
  1632. {file = "greenlet-1.0.0-cp27-cp27m-win_amd64.whl", hash = "sha256:f6f65bf54215e4ebf6b01e4bb94c49180a589573df643735107056f7a910275b"},
  1633. {file = "greenlet-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:f59eded163d9752fd49978e0bab7a1ff21b1b8d25c05f0995d140cc08ac83379"},
  1634. {file = "greenlet-1.0.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:875d4c60a6299f55df1c3bb870ebe6dcb7db28c165ab9ea6cdc5d5af36bb33ce"},
  1635. {file = "greenlet-1.0.0-cp35-cp35m-macosx_10_14_x86_64.whl", hash = "sha256:1bb80c71de788b36cefb0c3bb6bfab306ba75073dbde2829c858dc3ad70f867c"},
  1636. {file = "greenlet-1.0.0-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:b5f1b333015d53d4b381745f5de842f19fe59728b65f0fbb662dafbe2018c3a5"},
  1637. {file = "greenlet-1.0.0-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:5352c15c1d91d22902582e891f27728d8dac3bd5e0ee565b6a9f575355e6d92f"},
  1638. {file = "greenlet-1.0.0-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:2c65320774a8cd5fdb6e117c13afa91c4707548282464a18cf80243cf976b3e6"},
  1639. {file = "greenlet-1.0.0-cp35-cp35m-manylinux2014_ppc64le.whl", hash = "sha256:111cfd92d78f2af0bc7317452bd93a477128af6327332ebf3c2be7df99566683"},
  1640. {file = "greenlet-1.0.0-cp35-cp35m-win32.whl", hash = "sha256:cdb90267650c1edb54459cdb51dab865f6c6594c3a47ebd441bc493360c7af70"},
  1641. {file = "greenlet-1.0.0-cp35-cp35m-win_amd64.whl", hash = "sha256:eac8803c9ad1817ce3d8d15d1bb82c2da3feda6bee1153eec5c58fa6e5d3f770"},
  1642. {file = "greenlet-1.0.0-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:c93d1a71c3fe222308939b2e516c07f35a849c5047f0197442a4d6fbcb4128ee"},
  1643. {file = "greenlet-1.0.0-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:122c63ba795fdba4fc19c744df6277d9cfd913ed53d1a286f12189a0265316dd"},
  1644. {file = "greenlet-1.0.0-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:c5b22b31c947ad8b6964d4ed66776bcae986f73669ba50620162ba7c832a6b6a"},
  1645. {file = "greenlet-1.0.0-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:4365eccd68e72564c776418c53ce3c5af402bc526fe0653722bc89efd85bf12d"},
  1646. {file = "greenlet-1.0.0-cp36-cp36m-manylinux2014_ppc64le.whl", hash = "sha256:da7d09ad0f24270b20f77d56934e196e982af0d0a2446120cb772be4e060e1a2"},
  1647. {file = "greenlet-1.0.0-cp36-cp36m-win32.whl", hash = "sha256:647ba1df86d025f5a34043451d7c4a9f05f240bee06277a524daad11f997d1e7"},
  1648. {file = "greenlet-1.0.0-cp36-cp36m-win_amd64.whl", hash = "sha256:e6e9fdaf6c90d02b95e6b0709aeb1aba5affbbb9ccaea5502f8638e4323206be"},
  1649. {file = "greenlet-1.0.0-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:62afad6e5fd70f34d773ffcbb7c22657e1d46d7fd7c95a43361de979f0a45aef"},
  1650. {file = "greenlet-1.0.0-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:d3789c1c394944084b5e57c192889985a9f23bd985f6d15728c745d380318128"},
  1651. {file = "greenlet-1.0.0-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:f5e2d36c86c7b03c94b8459c3bd2c9fe2c7dab4b258b8885617d44a22e453fb7"},
  1652. {file = "greenlet-1.0.0-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:292e801fcb3a0b3a12d8c603c7cf340659ea27fd73c98683e75800d9fd8f704c"},
  1653. {file = "greenlet-1.0.0-cp37-cp37m-manylinux2014_ppc64le.whl", hash = "sha256:f3dc68272990849132d6698f7dc6df2ab62a88b0d36e54702a8fd16c0490e44f"},
  1654. {file = "greenlet-1.0.0-cp37-cp37m-win32.whl", hash = "sha256:7cd5a237f241f2764324396e06298b5dee0df580cf06ef4ada0ff9bff851286c"},
  1655. {file = "greenlet-1.0.0-cp37-cp37m-win_amd64.whl", hash = "sha256:0ddd77586553e3daf439aa88b6642c5f252f7ef79a39271c25b1d4bf1b7cbb85"},
  1656. {file = "greenlet-1.0.0-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:90b6a25841488cf2cb1c8623a53e6879573010a669455046df5f029d93db51b7"},
  1657. {file = "greenlet-1.0.0-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:ed1d1351f05e795a527abc04a0d82e9aecd3bdf9f46662c36ff47b0b00ecaf06"},
  1658. {file = "greenlet-1.0.0-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:94620ed996a7632723a424bccb84b07e7b861ab7bb06a5aeb041c111dd723d36"},
  1659. {file = "greenlet-1.0.0-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:f97d83049715fd9dec7911860ecf0e17b48d8725de01e45de07d8ac0bd5bc378"},
  1660. {file = "greenlet-1.0.0-cp38-cp38-manylinux2014_ppc64le.whl", hash = "sha256:0a77691f0080c9da8dfc81e23f4e3cffa5accf0f5b56478951016d7cfead9196"},
  1661. {file = "greenlet-1.0.0-cp38-cp38-win32.whl", hash = "sha256:e1128e022d8dce375362e063754e129750323b67454cac5600008aad9f54139e"},
  1662. {file = "greenlet-1.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:5d4030b04061fdf4cbc446008e238e44936d77a04b2b32f804688ad64197953c"},
  1663. {file = "greenlet-1.0.0-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:f8450d5ef759dbe59f84f2c9f77491bb3d3c44bc1a573746daf086e70b14c243"},
  1664. {file = "greenlet-1.0.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:df8053867c831b2643b2c489fe1d62049a98566b1646b194cc815f13e27b90df"},
  1665. {file = "greenlet-1.0.0-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:df3e83323268594fa9755480a442cabfe8d82b21aba815a71acf1bb6c1776218"},
  1666. {file = "greenlet-1.0.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:181300f826625b7fd1182205b830642926f52bd8cdb08b34574c9d5b2b1813f7"},
  1667. {file = "greenlet-1.0.0-cp39-cp39-manylinux2014_ppc64le.whl", hash = "sha256:58ca0f078d1c135ecf1879d50711f925ee238fe773dfe44e206d7d126f5bc664"},
  1668. {file = "greenlet-1.0.0-cp39-cp39-win32.whl", hash = "sha256:5f297cb343114b33a13755032ecf7109b07b9a0020e841d1c3cedff6602cc139"},
  1669. {file = "greenlet-1.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:5d69bbd9547d3bc49f8a545db7a0bd69f407badd2ff0f6e1a163680b5841d2b0"},
  1670. {file = "greenlet-1.0.0.tar.gz", hash = "sha256:719e169c79255816cdcf6dccd9ed2d089a72a9f6c42273aae12d55e8d35bdcf8"},
  1671. ]
  1672. idna = [
  1673. {file = "idna-2.10-py2.py3-none-any.whl", hash = "sha256:b97d804b1e9b523befed77c48dacec60e6dcb0b5391d57af6a65a312a90648c0"},
  1674. {file = "idna-2.10.tar.gz", hash = "sha256:b307872f855b18632ce0c21c5e45be78c0ea7ae4c15c828c20788b26921eb3f6"},
  1675. ]
  1676. importlib-metadata = [
  1677. {file = "importlib_metadata-3.4.0-py3-none-any.whl", hash = "sha256:ace61d5fc652dc280e7b6b4ff732a9c2d40db2c0f92bc6cb74e07b73d53a1771"},
  1678. {file = "importlib_metadata-3.4.0.tar.gz", hash = "sha256:fa5daa4477a7414ae34e95942e4dd07f62adf589143c875c133c1e53c4eff38d"},
  1679. ]
  1680. inflection = [
  1681. {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"},
  1682. {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"},
  1683. ]
  1684. ipdb = [
  1685. {file = "ipdb-0.13.4.tar.gz", hash = "sha256:c85398b5fb82f82399fc38c44fe3532c0dde1754abee727d8f5cfcc74547b334"},
  1686. ]
  1687. ipython = [
  1688. {file = "ipython-7.19.0-py3-none-any.whl", hash = "sha256:c987e8178ced651532b3b1ff9965925bfd445c279239697052561a9ab806d28f"},
  1689. {file = "ipython-7.19.0.tar.gz", hash = "sha256:cbb2ef3d5961d44e6a963b9817d4ea4e1fa2eb589c371a470fed14d8d40cbd6a"},
  1690. ]
  1691. ipython-genutils = [
  1692. {file = "ipython_genutils-0.2.0-py2.py3-none-any.whl", hash = "sha256:72dd37233799e619666c9f639a9da83c34013a73e8bbc79a7a6348d93c61fab8"},
  1693. {file = "ipython_genutils-0.2.0.tar.gz", hash = "sha256:eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8"},
  1694. ]
  1695. isort = [
  1696. {file = "isort-5.7.0-py3-none-any.whl", hash = "sha256:fff4f0c04e1825522ce6949973e83110a6e907750cd92d128b0d14aaaadbffdc"},
  1697. {file = "isort-5.7.0.tar.gz", hash = "sha256:c729845434366216d320e936b8ad6f9d681aab72dc7cbc2d51bedc3582f3ad1e"},
  1698. ]
  1699. itsdangerous = [
  1700. {file = "itsdangerous-1.1.0-py2.py3-none-any.whl", hash = "sha256:b12271b2047cb23eeb98c8b5622e2e5c5e9abd9784a153e9d8ef9cb4dd09d749"},
  1701. {file = "itsdangerous-1.1.0.tar.gz", hash = "sha256:321b033d07f2a4136d3ec762eac9f16a10ccd60f53c0c91af90217ace7ba1f19"},
  1702. ]
  1703. itypes = [
  1704. {file = "itypes-1.2.0-py2.py3-none-any.whl", hash = "sha256:03da6872ca89d29aef62773672b2d408f490f80db48b23079a4b194c86dd04c6"},
  1705. {file = "itypes-1.2.0.tar.gz", hash = "sha256:af886f129dea4a2a1e3d36595a2d139589e4dd287f5cab0b40e799ee81570ff1"},
  1706. ]
  1707. jedi = [
  1708. {file = "jedi-0.18.0-py2.py3-none-any.whl", hash = "sha256:18456d83f65f400ab0c2d3319e48520420ef43b23a086fdc05dff34132f0fb93"},
  1709. {file = "jedi-0.18.0.tar.gz", hash = "sha256:92550a404bad8afed881a137ec9a461fed49eca661414be45059329614ed0707"},
  1710. ]
  1711. jinja2 = [
  1712. {file = "Jinja2-2.11.2-py2.py3-none-any.whl", hash = "sha256:f0a4641d3cf955324a89c04f3d94663aa4d638abe8f733ecd3582848e1c37035"},
  1713. {file = "Jinja2-2.11.2.tar.gz", hash = "sha256:89aab215427ef59c34ad58735269eb58b1a5808103067f7bb9d5836c651b3bb0"},
  1714. ]
  1715. jmespath = [
  1716. {file = "jmespath-0.10.0-py2.py3-none-any.whl", hash = "sha256:cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f"},
  1717. {file = "jmespath-0.10.0.tar.gz", hash = "sha256:b85d0567b8666149a93172712e68920734333c0ce7e89b78b3e987f71e5ed4f9"},
  1718. ]
  1719. jsonfield = [
  1720. {file = "jsonfield-3.1.0-py3-none-any.whl", hash = "sha256:df857811587f252b97bafba42e02805e70a398a7a47870bc6358a0308dd689ed"},
  1721. {file = "jsonfield-3.1.0.tar.gz", hash = "sha256:7e4e84597de21eeaeeaaa7cc5da08c61c48a9b64d0c446b2d71255d01812887a"},
  1722. ]
  1723. jsonschema = [
  1724. {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"},
  1725. {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"},
  1726. ]
  1727. kombu = [
  1728. {file = "kombu-5.0.2-py2.py3-none-any.whl", hash = "sha256:6dc509178ac4269b0e66ab4881f70a2035c33d3a622e20585f965986a5182006"},
  1729. {file = "kombu-5.0.2.tar.gz", hash = "sha256:f4965fba0a4718d47d470beeb5d6446e3357a62402b16c510b6a2f251e05ac3c"},
  1730. ]
  1731. lazy-object-proxy = [
  1732. {file = "lazy-object-proxy-1.4.3.tar.gz", hash = "sha256:f3900e8a5de27447acbf900b4750b0ddfd7ec1ea7fbaf11dfa911141bc522af0"},
  1733. {file = "lazy_object_proxy-1.4.3-cp27-cp27m-macosx_10_13_x86_64.whl", hash = "sha256:a2238e9d1bb71a56cd710611a1614d1194dc10a175c1e08d75e1a7bcc250d442"},
  1734. {file = "lazy_object_proxy-1.4.3-cp27-cp27m-win32.whl", hash = "sha256:efa1909120ce98bbb3777e8b6f92237f5d5c8ea6758efea36a473e1d38f7d3e4"},
  1735. {file = "lazy_object_proxy-1.4.3-cp27-cp27m-win_amd64.whl", hash = "sha256:4677f594e474c91da97f489fea5b7daa17b5517190899cf213697e48d3902f5a"},
  1736. {file = "lazy_object_proxy-1.4.3-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:0c4b206227a8097f05c4dbdd323c50edf81f15db3b8dc064d08c62d37e1a504d"},
  1737. {file = "lazy_object_proxy-1.4.3-cp34-cp34m-manylinux1_x86_64.whl", hash = "sha256:d945239a5639b3ff35b70a88c5f2f491913eb94871780ebfabb2568bd58afc5a"},
  1738. {file = "lazy_object_proxy-1.4.3-cp34-cp34m-win32.whl", hash = "sha256:9651375199045a358eb6741df3e02a651e0330be090b3bc79f6d0de31a80ec3e"},
  1739. {file = "lazy_object_proxy-1.4.3-cp34-cp34m-win_amd64.whl", hash = "sha256:eba7011090323c1dadf18b3b689845fd96a61ba0a1dfbd7f24b921398affc357"},
  1740. {file = "lazy_object_proxy-1.4.3-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:48dab84ebd4831077b150572aec802f303117c8cc5c871e182447281ebf3ac50"},
  1741. {file = "lazy_object_proxy-1.4.3-cp35-cp35m-win32.whl", hash = "sha256:ca0a928a3ddbc5725be2dd1cf895ec0a254798915fb3a36af0964a0a4149e3db"},
  1742. {file = "lazy_object_proxy-1.4.3-cp35-cp35m-win_amd64.whl", hash = "sha256:194d092e6f246b906e8f70884e620e459fc54db3259e60cf69a4d66c3fda3449"},
  1743. {file = "lazy_object_proxy-1.4.3-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:97bb5884f6f1cdce0099f86b907aa41c970c3c672ac8b9c8352789e103cf3156"},
  1744. {file = "lazy_object_proxy-1.4.3-cp36-cp36m-win32.whl", hash = "sha256:cb2c7c57005a6804ab66f106ceb8482da55f5314b7fcb06551db1edae4ad1531"},
  1745. {file = "lazy_object_proxy-1.4.3-cp36-cp36m-win_amd64.whl", hash = "sha256:8d859b89baf8ef7f8bc6b00aa20316483d67f0b1cbf422f5b4dc56701c8f2ffb"},
  1746. {file = "lazy_object_proxy-1.4.3-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:1be7e4c9f96948003609aa6c974ae59830a6baecc5376c25c92d7d697e684c08"},
  1747. {file = "lazy_object_proxy-1.4.3-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:d74bb8693bf9cf75ac3b47a54d716bbb1a92648d5f781fc799347cfc95952383"},
  1748. {file = "lazy_object_proxy-1.4.3-cp37-cp37m-win32.whl", hash = "sha256:9b15f3f4c0f35727d3a0fba4b770b3c4ebbb1fa907dbcc046a1d2799f3edd142"},
  1749. {file = "lazy_object_proxy-1.4.3-cp37-cp37m-win_amd64.whl", hash = "sha256:9254f4358b9b541e3441b007a0ea0764b9d056afdeafc1a5569eee1cc6c1b9ea"},
  1750. {file = "lazy_object_proxy-1.4.3-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:a6ae12d08c0bf9909ce12385803a543bfe99b95fe01e752536a60af2b7797c62"},
  1751. {file = "lazy_object_proxy-1.4.3-cp38-cp38-win32.whl", hash = "sha256:5541cada25cd173702dbd99f8e22434105456314462326f06dba3e180f203dfd"},
  1752. {file = "lazy_object_proxy-1.4.3-cp38-cp38-win_amd64.whl", hash = "sha256:59f79fef100b09564bc2df42ea2d8d21a64fdcda64979c0fa3db7bdaabaf6239"},
  1753. ]
  1754. locust = [
  1755. {file = "locust-1.4.1-py3-none-any.whl", hash = "sha256:98b069081de124be9fc45ffb66c6820bef271035431d222cb38454c42c86d797"},
  1756. {file = "locust-1.4.1.tar.gz", hash = "sha256:b4fb0ca95ef3194759966a850835485a5f5997f94ec7da307258737786fa56e0"},
  1757. ]
  1758. markupsafe = [
  1759. {file = "MarkupSafe-1.1.1-cp27-cp27m-macosx_10_6_intel.whl", hash = "sha256:09027a7803a62ca78792ad89403b1b7a73a01c8cb65909cd876f7fcebd79b161"},
  1760. {file = "MarkupSafe-1.1.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e249096428b3ae81b08327a63a485ad0878de3fb939049038579ac0ef61e17e7"},
  1761. {file = "MarkupSafe-1.1.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:500d4957e52ddc3351cabf489e79c91c17f6e0899158447047588650b5e69183"},
  1762. {file = "MarkupSafe-1.1.1-cp27-cp27m-win32.whl", hash = "sha256:b2051432115498d3562c084a49bba65d97cf251f5a331c64a12ee7e04dacc51b"},
  1763. {file = "MarkupSafe-1.1.1-cp27-cp27m-win_amd64.whl", hash = "sha256:98c7086708b163d425c67c7a91bad6e466bb99d797aa64f965e9d25c12111a5e"},
  1764. {file = "MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:cd5df75523866410809ca100dc9681e301e3c27567cf498077e8551b6d20e42f"},
  1765. {file = "MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:43a55c2930bbc139570ac2452adf3d70cdbb3cfe5912c71cdce1c2c6bbd9c5d1"},
  1766. {file = "MarkupSafe-1.1.1-cp34-cp34m-macosx_10_6_intel.whl", hash = "sha256:1027c282dad077d0bae18be6794e6b6b8c91d58ed8a8d89a89d59693b9131db5"},
  1767. {file = "MarkupSafe-1.1.1-cp34-cp34m-manylinux1_i686.whl", hash = "sha256:62fe6c95e3ec8a7fad637b7f3d372c15ec1caa01ab47926cfdf7a75b40e0eac1"},
  1768. {file = "MarkupSafe-1.1.1-cp34-cp34m-manylinux1_x86_64.whl", hash = "sha256:88e5fcfb52ee7b911e8bb6d6aa2fd21fbecc674eadd44118a9cc3863f938e735"},
  1769. {file = "MarkupSafe-1.1.1-cp34-cp34m-win32.whl", hash = "sha256:ade5e387d2ad0d7ebf59146cc00c8044acbd863725f887353a10df825fc8ae21"},
  1770. {file = "MarkupSafe-1.1.1-cp34-cp34m-win_amd64.whl", hash = "sha256:09c4b7f37d6c648cb13f9230d847adf22f8171b1ccc4d5682398e77f40309235"},
  1771. {file = "MarkupSafe-1.1.1-cp35-cp35m-macosx_10_6_intel.whl", hash = "sha256:79855e1c5b8da654cf486b830bd42c06e8780cea587384cf6545b7d9ac013a0b"},
  1772. {file = "MarkupSafe-1.1.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:c8716a48d94b06bb3b2524c2b77e055fb313aeb4ea620c8dd03a105574ba704f"},
  1773. {file = "MarkupSafe-1.1.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:7c1699dfe0cf8ff607dbdcc1e9b9af1755371f92a68f706051cc8c37d447c905"},
  1774. {file = "MarkupSafe-1.1.1-cp35-cp35m-win32.whl", hash = "sha256:6dd73240d2af64df90aa7c4e7481e23825ea70af4b4922f8ede5b9e35f78a3b1"},
  1775. {file = "MarkupSafe-1.1.1-cp35-cp35m-win_amd64.whl", hash = "sha256:9add70b36c5666a2ed02b43b335fe19002ee5235efd4b8a89bfcf9005bebac0d"},
  1776. {file = "MarkupSafe-1.1.1-cp36-cp36m-macosx_10_6_intel.whl", hash = "sha256:24982cc2533820871eba85ba648cd53d8623687ff11cbb805be4ff7b4c971aff"},
  1777. {file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:00bc623926325b26bb9605ae9eae8a215691f33cae5df11ca5424f06f2d1f473"},
  1778. {file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:717ba8fe3ae9cc0006d7c451f0bb265ee07739daf76355d06366154ee68d221e"},
  1779. {file = "MarkupSafe-1.1.1-cp36-cp36m-win32.whl", hash = "sha256:535f6fc4d397c1563d08b88e485c3496cf5784e927af890fb3c3aac7f933ec66"},
  1780. {file = "MarkupSafe-1.1.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b1282f8c00509d99fef04d8ba936b156d419be841854fe901d8ae224c59f0be5"},
  1781. {file = "MarkupSafe-1.1.1-cp37-cp37m-macosx_10_6_intel.whl", hash = "sha256:8defac2f2ccd6805ebf65f5eeb132adcf2ab57aa11fdf4c0dd5169a004710e7d"},
  1782. {file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:46c99d2de99945ec5cb54f23c8cd5689f6d7177305ebff350a58ce5f8de1669e"},
  1783. {file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:ba59edeaa2fc6114428f1637ffff42da1e311e29382d81b339c1817d37ec93c6"},
  1784. {file = "MarkupSafe-1.1.1-cp37-cp37m-win32.whl", hash = "sha256:b00c1de48212e4cc9603895652c5c410df699856a2853135b3967591e4beebc2"},
  1785. {file = "MarkupSafe-1.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:9bf40443012702a1d2070043cb6291650a0841ece432556f784f004937f0f32c"},
  1786. {file = "MarkupSafe-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6788b695d50a51edb699cb55e35487e430fa21f1ed838122d722e0ff0ac5ba15"},
  1787. {file = "MarkupSafe-1.1.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:cdb132fc825c38e1aeec2c8aa9338310d29d337bebbd7baa06889d09a60a1fa2"},
  1788. {file = "MarkupSafe-1.1.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:13d3144e1e340870b25e7b10b98d779608c02016d5184cfb9927a9f10c689f42"},
  1789. {file = "MarkupSafe-1.1.1-cp38-cp38-win32.whl", hash = "sha256:596510de112c685489095da617b5bcbbac7dd6384aeebeda4df6025d0256a81b"},
  1790. {file = "MarkupSafe-1.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:e8313f01ba26fbbe36c7be1966a7b7424942f670f38e666995b88d012765b9be"},
  1791. {file = "MarkupSafe-1.1.1.tar.gz", hash = "sha256:29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b"},
  1792. ]
  1793. mccabe = [
  1794. {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"},
  1795. {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"},
  1796. ]
  1797. model-bakery = [
  1798. {file = "model_bakery-1.2.1-py2.py3-none-any.whl", hash = "sha256:d3260bd055c25998b54eda2082a507ba7fd113fe071156bdad065da426b14851"},
  1799. {file = "model_bakery-1.2.1.tar.gz", hash = "sha256:c2b3521a866b2b25ee0b5f953bfa385ef7d27ad75f30abf5e2de6dd61160c404"},
  1800. ]
  1801. msgpack = [
  1802. {file = "msgpack-1.0.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:b6d9e2dae081aa35c44af9c4298de4ee72991305503442a5c74656d82b581fe9"},
  1803. {file = "msgpack-1.0.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:a99b144475230982aee16b3d249170f1cccebf27fb0a08e9f603b69637a62192"},
  1804. {file = "msgpack-1.0.2-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:1026dcc10537d27dd2d26c327e552f05ce148977e9d7b9f1718748281b38c841"},
  1805. {file = "msgpack-1.0.2-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:fe07bc6735d08e492a327f496b7850e98cb4d112c56df69b0c844dbebcbb47f6"},
  1806. {file = "msgpack-1.0.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:9ea52fff0473f9f3000987f313310208c879493491ef3ccf66268eff8d5a0326"},
  1807. {file = "msgpack-1.0.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:26a1759f1a88df5f1d0b393eb582ec022326994e311ba9c5818adc5374736439"},
  1808. {file = "msgpack-1.0.2-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:497d2c12426adcd27ab83144057a705efb6acc7e85957a51d43cdcf7f258900f"},
  1809. {file = "msgpack-1.0.2-cp36-cp36m-win32.whl", hash = "sha256:e89ec55871ed5473a041c0495b7b4e6099f6263438e0bd04ccd8418f92d5d7f2"},
  1810. {file = "msgpack-1.0.2-cp36-cp36m-win_amd64.whl", hash = "sha256:a4355d2193106c7aa77c98fc955252a737d8550320ecdb2e9ac701e15e2943bc"},
  1811. {file = "msgpack-1.0.2-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:d6c64601af8f3893d17ec233237030e3110f11b8a962cb66720bf70c0141aa54"},
  1812. {file = "msgpack-1.0.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:f484cd2dca68502de3704f056fa9b318c94b1539ed17a4c784266df5d6978c87"},
  1813. {file = "msgpack-1.0.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:f3e6aaf217ac1c7ce1563cf52a2f4f5d5b1f64e8729d794165db71da57257f0c"},
  1814. {file = "msgpack-1.0.2-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:8521e5be9e3b93d4d5e07cb80b7e32353264d143c1f072309e1863174c6aadb1"},
  1815. {file = "msgpack-1.0.2-cp37-cp37m-win32.whl", hash = "sha256:31c17bbf2ae5e29e48d794c693b7ca7a0c73bd4280976d408c53df421e838d2a"},
  1816. {file = "msgpack-1.0.2-cp37-cp37m-win_amd64.whl", hash = "sha256:8ffb24a3b7518e843cd83538cf859e026d24ec41ac5721c18ed0c55101f9775b"},
  1817. {file = "msgpack-1.0.2-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:b28c0876cce1466d7c2195d7658cf50e4730667196e2f1355c4209444717ee06"},
  1818. {file = "msgpack-1.0.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:87869ba567fe371c4555d2e11e4948778ab6b59d6cc9d8460d543e4cfbbddd1c"},
  1819. {file = "msgpack-1.0.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:b55f7db883530b74c857e50e149126b91bb75d35c08b28db12dcb0346f15e46e"},
  1820. {file = "msgpack-1.0.2-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:ac25f3e0513f6673e8b405c3a80500eb7be1cf8f57584be524c4fa78fe8e0c83"},
  1821. {file = "msgpack-1.0.2-cp38-cp38-win32.whl", hash = "sha256:0cb94ee48675a45d3b86e61d13c1e6f1696f0183f0715544976356ff86f741d9"},
  1822. {file = "msgpack-1.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:e36a812ef4705a291cdb4a2fd352f013134f26c6ff63477f20235138d1d21009"},
  1823. {file = "msgpack-1.0.2-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:2a5866bdc88d77f6e1370f82f2371c9bc6fc92fe898fa2dec0c5d4f5435a2694"},
  1824. {file = "msgpack-1.0.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:92be4b12de4806d3c36810b0fe2aeedd8d493db39e2eb90742b9c09299eb5759"},
  1825. {file = "msgpack-1.0.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:de6bd7990a2c2dabe926b7e62a92886ccbf809425c347ae7de277067f97c2887"},
  1826. {file = "msgpack-1.0.2-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:5a9ee2540c78659a1dd0b110f73773533ee3108d4e1219b5a15a8d635b7aca0e"},
  1827. {file = "msgpack-1.0.2-cp39-cp39-win32.whl", hash = "sha256:c747c0cc08bd6d72a586310bda6ea72eeb28e7505990f342552315b229a19b33"},
  1828. {file = "msgpack-1.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:d8167b84af26654c1124857d71650404336f4eb5cc06900667a493fc619ddd9f"},
  1829. {file = "msgpack-1.0.2.tar.gz", hash = "sha256:fae04496f5bc150eefad4e9571d1a76c55d021325dcd484ce45065ebbdd00984"},
  1830. ]
  1831. oauthlib = [
  1832. {file = "oauthlib-3.1.0-py2.py3-none-any.whl", hash = "sha256:df884cd6cbe20e32633f1db1072e9356f53638e4361bef4e8b03c9127c9328ea"},
  1833. {file = "oauthlib-3.1.0.tar.gz", hash = "sha256:bee41cc35fcca6e988463cacc3bcb8a96224f470ca547e697b604cc697b2f889"},
  1834. ]
  1835. packaging = [
  1836. {file = "packaging-20.8-py2.py3-none-any.whl", hash = "sha256:24e0da08660a87484d1602c30bb4902d74816b6985b93de36926f5bc95741858"},
  1837. {file = "packaging-20.8.tar.gz", hash = "sha256:78598185a7008a470d64526a8059de9aaa449238f280fc9eb6b13ba6c4109093"},
  1838. ]
  1839. parso = [
  1840. {file = "parso-0.8.1-py2.py3-none-any.whl", hash = "sha256:15b00182f472319383252c18d5913b69269590616c947747bc50bf4ac768f410"},
  1841. {file = "parso-0.8.1.tar.gz", hash = "sha256:8519430ad07087d4c997fda3a7918f7cfa27cb58972a8c89c2a0295a1c940e9e"},
  1842. ]
  1843. pathspec = [
  1844. {file = "pathspec-0.8.1-py2.py3-none-any.whl", hash = "sha256:aa0cb481c4041bf52ffa7b0d8fa6cd3e88a2ca4879c533c9153882ee2556790d"},
  1845. {file = "pathspec-0.8.1.tar.gz", hash = "sha256:86379d6b86d75816baba717e64b1a3a3469deb93bb76d613c9ce79edc5cb68fd"},
  1846. ]
  1847. pexpect = [
  1848. {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"},
  1849. {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"},
  1850. ]
  1851. pickleshare = [
  1852. {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"},
  1853. {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"},
  1854. ]
  1855. prompt-toolkit = [
  1856. {file = "prompt_toolkit-3.0.10-py3-none-any.whl", hash = "sha256:ac329c69bd8564cb491940511957312c7b8959bb5b3cf3582b406068a51d5bb7"},
  1857. {file = "prompt_toolkit-3.0.10.tar.gz", hash = "sha256:b8b3d0bde65da350290c46a8f54f336b3cbf5464a4ac11239668d986852e79d5"},
  1858. ]
  1859. psutil = [
  1860. {file = "psutil-5.8.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:0066a82f7b1b37d334e68697faba68e5ad5e858279fd6351c8ca6024e8d6ba64"},
  1861. {file = "psutil-5.8.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:0ae6f386d8d297177fd288be6e8d1afc05966878704dad9847719650e44fc49c"},
  1862. {file = "psutil-5.8.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:12d844996d6c2b1d3881cfa6fa201fd635971869a9da945cf6756105af73d2df"},
  1863. {file = "psutil-5.8.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:02b8292609b1f7fcb34173b25e48d0da8667bc85f81d7476584d889c6e0f2131"},
  1864. {file = "psutil-5.8.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:6ffe81843131ee0ffa02c317186ed1e759a145267d54fdef1bc4ea5f5931ab60"},
  1865. {file = "psutil-5.8.0-cp27-none-win32.whl", hash = "sha256:ea313bb02e5e25224e518e4352af4bf5e062755160f77e4b1767dd5ccb65f876"},
  1866. {file = "psutil-5.8.0-cp27-none-win_amd64.whl", hash = "sha256:5da29e394bdedd9144c7331192e20c1f79283fb03b06e6abd3a8ae45ffecee65"},
  1867. {file = "psutil-5.8.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:74fb2557d1430fff18ff0d72613c5ca30c45cdbfcddd6a5773e9fc1fe9364be8"},
  1868. {file = "psutil-5.8.0-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:74f2d0be88db96ada78756cb3a3e1b107ce8ab79f65aa885f76d7664e56928f6"},
  1869. {file = "psutil-5.8.0-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:99de3e8739258b3c3e8669cb9757c9a861b2a25ad0955f8e53ac662d66de61ac"},
  1870. {file = "psutil-5.8.0-cp36-cp36m-win32.whl", hash = "sha256:36b3b6c9e2a34b7d7fbae330a85bf72c30b1c827a4366a07443fc4b6270449e2"},
  1871. {file = "psutil-5.8.0-cp36-cp36m-win_amd64.whl", hash = "sha256:52de075468cd394ac98c66f9ca33b2f54ae1d9bff1ef6b67a212ee8f639ec06d"},
  1872. {file = "psutil-5.8.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c6a5fd10ce6b6344e616cf01cc5b849fa8103fbb5ba507b6b2dee4c11e84c935"},
  1873. {file = "psutil-5.8.0-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:61f05864b42fedc0771d6d8e49c35f07efd209ade09a5afe6a5059e7bb7bf83d"},
  1874. {file = "psutil-5.8.0-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:0dd4465a039d343925cdc29023bb6960ccf4e74a65ad53e768403746a9207023"},
  1875. {file = "psutil-5.8.0-cp37-cp37m-win32.whl", hash = "sha256:1bff0d07e76114ec24ee32e7f7f8d0c4b0514b3fae93e3d2aaafd65d22502394"},
  1876. {file = "psutil-5.8.0-cp37-cp37m-win_amd64.whl", hash = "sha256:fcc01e900c1d7bee2a37e5d6e4f9194760a93597c97fee89c4ae51701de03563"},
  1877. {file = "psutil-5.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6223d07a1ae93f86451d0198a0c361032c4c93ebd4bf6d25e2fb3edfad9571ef"},
  1878. {file = "psutil-5.8.0-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:d225cd8319aa1d3c85bf195c4e07d17d3cd68636b8fc97e6cf198f782f99af28"},
  1879. {file = "psutil-5.8.0-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:28ff7c95293ae74bf1ca1a79e8805fcde005c18a122ca983abf676ea3466362b"},
  1880. {file = "psutil-5.8.0-cp38-cp38-win32.whl", hash = "sha256:ce8b867423291cb65cfc6d9c4955ee9bfc1e21fe03bb50e177f2b957f1c2469d"},
  1881. {file = "psutil-5.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:90f31c34d25b1b3ed6c40cdd34ff122b1887a825297c017e4cbd6796dd8b672d"},
  1882. {file = "psutil-5.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6323d5d845c2785efb20aded4726636546b26d3b577aded22492908f7c1bdda7"},
  1883. {file = "psutil-5.8.0-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:245b5509968ac0bd179287d91210cd3f37add77dad385ef238b275bad35fa1c4"},
  1884. {file = "psutil-5.8.0-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:90d4091c2d30ddd0a03e0b97e6a33a48628469b99585e2ad6bf21f17423b112b"},
  1885. {file = "psutil-5.8.0-cp39-cp39-win32.whl", hash = "sha256:ea372bcc129394485824ae3e3ddabe67dc0b118d262c568b4d2602a7070afdb0"},
  1886. {file = "psutil-5.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:f4634b033faf0d968bb9220dd1c793b897ab7f1189956e1aa9eae752527127d3"},
  1887. {file = "psutil-5.8.0.tar.gz", hash = "sha256:0c9ccb99ab76025f2f0bbecf341d4656e9c1351db8cc8a03ccd62e318ab4b5c6"},
  1888. ]
  1889. psycopg2-binary = [
  1890. {file = "psycopg2-binary-2.8.6.tar.gz", hash = "sha256:11b9c0ebce097180129e422379b824ae21c8f2a6596b159c7659e2e5a00e1aa0"},
  1891. {file = "psycopg2_binary-2.8.6-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:d14b140a4439d816e3b1229a4a525df917d6ea22a0771a2a78332273fd9528a4"},
  1892. {file = "psycopg2_binary-2.8.6-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:1fabed9ea2acc4efe4671b92c669a213db744d2af8a9fc5d69a8e9bc14b7a9db"},
  1893. {file = "psycopg2_binary-2.8.6-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:f5ab93a2cb2d8338b1674be43b442a7f544a0971da062a5da774ed40587f18f5"},
  1894. {file = "psycopg2_binary-2.8.6-cp27-cp27m-win32.whl", hash = "sha256:b4afc542c0ac0db720cf516dd20c0846f71c248d2b3d21013aa0d4ef9c71ca25"},
  1895. {file = "psycopg2_binary-2.8.6-cp27-cp27m-win_amd64.whl", hash = "sha256:e74a55f6bad0e7d3968399deb50f61f4db1926acf4a6d83beaaa7df986f48b1c"},
  1896. {file = "psycopg2_binary-2.8.6-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:0deac2af1a587ae12836aa07970f5cb91964f05a7c6cdb69d8425ff4c15d4e2c"},
  1897. {file = "psycopg2_binary-2.8.6-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ad20d2eb875aaa1ea6d0f2916949f5c08a19c74d05b16ce6ebf6d24f2c9f75d1"},
  1898. {file = "psycopg2_binary-2.8.6-cp34-cp34m-win32.whl", hash = "sha256:950bc22bb56ee6ff142a2cb9ee980b571dd0912b0334aa3fe0fe3788d860bea2"},
  1899. {file = "psycopg2_binary-2.8.6-cp34-cp34m-win_amd64.whl", hash = "sha256:b8a3715b3c4e604bcc94c90a825cd7f5635417453b253499664f784fc4da0152"},
  1900. {file = "psycopg2_binary-2.8.6-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:d1b4ab59e02d9008efe10ceabd0b31e79519da6fb67f7d8e8977118832d0f449"},
  1901. {file = "psycopg2_binary-2.8.6-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:ac0c682111fbf404525dfc0f18a8b5f11be52657d4f96e9fcb75daf4f3984859"},
  1902. {file = "psycopg2_binary-2.8.6-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:7d92a09b788cbb1aec325af5fcba9fed7203897bbd9269d5691bb1e3bce29550"},
  1903. {file = "psycopg2_binary-2.8.6-cp35-cp35m-win32.whl", hash = "sha256:aaa4213c862f0ef00022751161df35804127b78adf4a2755b9f991a507e425fd"},
  1904. {file = "psycopg2_binary-2.8.6-cp35-cp35m-win_amd64.whl", hash = "sha256:c2507d796fca339c8fb03216364cca68d87e037c1f774977c8fc377627d01c71"},
  1905. {file = "psycopg2_binary-2.8.6-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:ee69dad2c7155756ad114c02db06002f4cded41132cc51378e57aad79cc8e4f4"},
  1906. {file = "psycopg2_binary-2.8.6-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:e82aba2188b9ba309fd8e271702bd0d0fc9148ae3150532bbb474f4590039ffb"},
  1907. {file = "psycopg2_binary-2.8.6-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:d5227b229005a696cc67676e24c214740efd90b148de5733419ac9aaba3773da"},
  1908. {file = "psycopg2_binary-2.8.6-cp36-cp36m-win32.whl", hash = "sha256:a0eb43a07386c3f1f1ebb4dc7aafb13f67188eab896e7397aa1ee95a9c884eb2"},
  1909. {file = "psycopg2_binary-2.8.6-cp36-cp36m-win_amd64.whl", hash = "sha256:e1f57aa70d3f7cc6947fd88636a481638263ba04a742b4a37dd25c373e41491a"},
  1910. {file = "psycopg2_binary-2.8.6-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:833709a5c66ca52f1d21d41865a637223b368c0ee76ea54ca5bad6f2526c7679"},
  1911. {file = "psycopg2_binary-2.8.6-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:ba28584e6bca48c59eecbf7efb1576ca214b47f05194646b081717fa628dfddf"},
  1912. {file = "psycopg2_binary-2.8.6-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:6a32f3a4cb2f6e1a0b15215f448e8ce2da192fd4ff35084d80d5e39da683e79b"},
  1913. {file = "psycopg2_binary-2.8.6-cp37-cp37m-win32.whl", hash = "sha256:0e4dc3d5996760104746e6cfcdb519d9d2cd27c738296525d5867ea695774e67"},
  1914. {file = "psycopg2_binary-2.8.6-cp37-cp37m-win_amd64.whl", hash = "sha256:cec7e622ebc545dbb4564e483dd20e4e404da17ae07e06f3e780b2dacd5cee66"},
  1915. {file = "psycopg2_binary-2.8.6-cp38-cp38-macosx_10_9_x86_64.macosx_10_9_intel.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:ba381aec3a5dc29634f20692349d73f2d21f17653bda1decf0b52b11d694541f"},
  1916. {file = "psycopg2_binary-2.8.6-cp38-cp38-manylinux1_i686.whl", hash = "sha256:a0c50db33c32594305b0ef9abc0cb7db13de7621d2cadf8392a1d9b3c437ef77"},
  1917. {file = "psycopg2_binary-2.8.6-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:2dac98e85565d5688e8ab7bdea5446674a83a3945a8f416ad0110018d1501b94"},
  1918. {file = "psycopg2_binary-2.8.6-cp38-cp38-win32.whl", hash = "sha256:bd1be66dde2b82f80afb9459fc618216753f67109b859a361cf7def5c7968729"},
  1919. {file = "psycopg2_binary-2.8.6-cp38-cp38-win_amd64.whl", hash = "sha256:8cd0fb36c7412996859cb4606a35969dd01f4ea34d9812a141cd920c3b18be77"},
  1920. {file = "psycopg2_binary-2.8.6-cp39-cp39-manylinux1_i686.whl", hash = "sha256:42ec1035841b389e8cc3692277a0bd81cdfe0b65d575a2c8862cec7a80e62e52"},
  1921. {file = "psycopg2_binary-2.8.6-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:7312e931b90fe14f925729cde58022f5d034241918a5c4f9797cac62f6b3a9dd"},
  1922. ]
  1923. ptyprocess = [
  1924. {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"},
  1925. {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"},
  1926. ]
  1927. py = [
  1928. {file = "py-1.10.0-py2.py3-none-any.whl", hash = "sha256:3b80836aa6d1feeaa108e046da6423ab8f6ceda6468545ae8d02d9d58d18818a"},
  1929. {file = "py-1.10.0.tar.gz", hash = "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3"},
  1930. ]
  1931. pycparser = [
  1932. {file = "pycparser-2.20-py2.py3-none-any.whl", hash = "sha256:7582ad22678f0fcd81102833f60ef8d0e57288b6b5fb00323d101be910e35705"},
  1933. {file = "pycparser-2.20.tar.gz", hash = "sha256:2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0"},
  1934. ]
  1935. pygments = [
  1936. {file = "Pygments-2.7.4-py3-none-any.whl", hash = "sha256:bc9591213a8f0e0ca1a5e68a479b4887fdc3e75d0774e5c71c31920c427de435"},
  1937. {file = "Pygments-2.7.4.tar.gz", hash = "sha256:df49d09b498e83c1a73128295860250b0b7edd4c723a32e9bc0d295c7c2ec337"},
  1938. ]
  1939. pyjwt = [
  1940. {file = "PyJWT-2.0.0-py3-none-any.whl", hash = "sha256:5c2ff2eb27d7e342dfc3cafcc16412781f06db2690fbef81922b0172598f085b"},
  1941. {file = "PyJWT-2.0.0.tar.gz", hash = "sha256:7a2b271c6dac2fda9e0c33d176c4253faba2c6c6b3a99c7f28a32c3c97522779"},
  1942. ]
  1943. pylint = [
  1944. {file = "pylint-2.6.0-py3-none-any.whl", hash = "sha256:bfe68f020f8a0fece830a22dd4d5dddb4ecc6137db04face4c3420a46a52239f"},
  1945. {file = "pylint-2.6.0.tar.gz", hash = "sha256:bb4a908c9dadbc3aac18860550e870f58e1a02c9f2c204fdf5693d73be061210"},
  1946. ]
  1947. pylint-django = [
  1948. {file = "pylint-django-2.4.2.tar.gz", hash = "sha256:f8d77f7da47a7019cda5cb669c214f03033208f9e945094661299d2637c0da06"},
  1949. {file = "pylint_django-2.4.2-py3-none-any.whl", hash = "sha256:355dddb25ef07dbdb77a818b0860ada722aab654c24da34aab916ec26d6390ba"},
  1950. ]
  1951. pylint-plugin-utils = [
  1952. {file = "pylint-plugin-utils-0.6.tar.gz", hash = "sha256:57625dcca20140f43731311cd8fd879318bf45a8b0fd17020717a8781714a25a"},
  1953. {file = "pylint_plugin_utils-0.6-py3-none-any.whl", hash = "sha256:2f30510e1c46edf268d3a195b2849bd98a1b9433229bb2ba63b8d776e1fc4d0a"},
  1954. ]
  1955. pyparsing = [
  1956. {file = "pyparsing-2.4.7-py2.py3-none-any.whl", hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b"},
  1957. {file = "pyparsing-2.4.7.tar.gz", hash = "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1"},
  1958. ]
  1959. pyrsistent = [
  1960. {file = "pyrsistent-0.17.3.tar.gz", hash = "sha256:2e636185d9eb976a18a8a8e96efce62f2905fea90041958d8cc2a189756ebf3e"},
  1961. ]
  1962. python-dateutil = [
  1963. {file = "python-dateutil-2.8.1.tar.gz", hash = "sha256:73ebfe9dbf22e832286dafa60473e4cd239f8592f699aa5adaf10050e6e1823c"},
  1964. {file = "python_dateutil-2.8.1-py2.py3-none-any.whl", hash = "sha256:75bb3f31ea686f1197762692a9ee6a7550b59fc6ca3a1f4b5d7e32fb98e2da2a"},
  1965. ]
  1966. python3-openid = [
  1967. {file = "python3-openid-3.2.0.tar.gz", hash = "sha256:33fbf6928f401e0b790151ed2b5290b02545e8775f982485205a066f874aaeaf"},
  1968. {file = "python3_openid-3.2.0-py3-none-any.whl", hash = "sha256:6626f771e0417486701e0b4daff762e7212e820ca5b29fcc0d05f6f8736dfa6b"},
  1969. ]
  1970. pytz = [
  1971. {file = "pytz-2020.5-py2.py3-none-any.whl", hash = "sha256:16962c5fb8db4a8f63a26646d8886e9d769b6c511543557bc84e9569fb9a9cb4"},
  1972. {file = "pytz-2020.5.tar.gz", hash = "sha256:180befebb1927b16f6b57101720075a984c019ac16b1b7575673bea42c6c3da5"},
  1973. ]
  1974. pywin32 = [
  1975. {file = "pywin32-300-cp35-cp35m-win32.whl", hash = "sha256:1c204a81daed2089e55d11eefa4826c05e604d27fe2be40b6bf8db7b6a39da63"},
  1976. {file = "pywin32-300-cp35-cp35m-win_amd64.whl", hash = "sha256:350c5644775736351b77ba68da09a39c760d75d2467ecec37bd3c36a94fbed64"},
  1977. {file = "pywin32-300-cp36-cp36m-win32.whl", hash = "sha256:a3b4c48c852d4107e8a8ec980b76c94ce596ea66d60f7a697582ea9dce7e0db7"},
  1978. {file = "pywin32-300-cp36-cp36m-win_amd64.whl", hash = "sha256:27a30b887afbf05a9cbb05e3ffd43104a9b71ce292f64a635389dbad0ed1cd85"},
  1979. {file = "pywin32-300-cp37-cp37m-win32.whl", hash = "sha256:d7e8c7efc221f10d6400c19c32a031add1c4a58733298c09216f57b4fde110dc"},
  1980. {file = "pywin32-300-cp37-cp37m-win_amd64.whl", hash = "sha256:8151e4d7a19262d6694162d6da85d99a16f8b908949797fd99c83a0bfaf5807d"},
  1981. {file = "pywin32-300-cp38-cp38-win32.whl", hash = "sha256:fbb3b1b0fbd0b4fc2a3d1d81fe0783e30062c1abed1d17c32b7879d55858cfae"},
  1982. {file = "pywin32-300-cp38-cp38-win_amd64.whl", hash = "sha256:60a8fa361091b2eea27f15718f8eb7f9297e8d51b54dbc4f55f3d238093d5190"},
  1983. {file = "pywin32-300-cp39-cp39-win32.whl", hash = "sha256:638b68eea5cfc8def537e43e9554747f8dee786b090e47ead94bfdafdb0f2f50"},
  1984. {file = "pywin32-300-cp39-cp39-win_amd64.whl", hash = "sha256:b1609ce9bd5c411b81f941b246d683d6508992093203d4eb7f278f4ed1085c3f"},
  1985. ]
  1986. pyzmq = [
  1987. {file = "pyzmq-21.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b2a5d5fd2857e5006a5fd9067f5aa7aff0cd4f994180681b13a6bd724a5ce289"},
  1988. {file = "pyzmq-21.0.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:f321b1e2ea990e9e760c1894234ee426e150995691c05b840a0d9743f5f202e1"},
  1989. {file = "pyzmq-21.0.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:405e754799480d960df7d8249192c4e46288d41d08aaaa45f339269bc09f3c0a"},
  1990. {file = "pyzmq-21.0.1-cp36-cp36m-win32.whl", hash = "sha256:520a80148c26cfbfb76fd169c089e7a899071dd5cd7553269e4da149382b9b88"},
  1991. {file = "pyzmq-21.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:e98d9b9efb22ece82b06046ba0c00cce157cbfd852cbd9a385b338f295cf38e6"},
  1992. {file = "pyzmq-21.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:923ec92c7b82d63bab4193aee23fd4a2b1636369494d55883fbda10fef1075a3"},
  1993. {file = "pyzmq-21.0.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:8f17f71430c18666c0f6c81185ef494f59231d01b1f77f67debfe628d50479c6"},
  1994. {file = "pyzmq-21.0.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:69e5c1061a2e99ac2647db271a41cb5c95ff62dd5090a948b1fbca905c5cba81"},
  1995. {file = "pyzmq-21.0.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:a2b9e25ea0f81e920de3bff65a5bd9056acd81f8cb439546d00d77f386cba251"},
  1996. {file = "pyzmq-21.0.1-cp37-cp37m-win32.whl", hash = "sha256:9026acf8bf0852c8360c574d04d22d7a213dafaf04ab9c4d43c7430eda272cdd"},
  1997. {file = "pyzmq-21.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:083dd4c1e9bc058acabab5d95e25180cec224ca9d372b088bf204b0822b278a9"},
  1998. {file = "pyzmq-21.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:fe0186c70fd3205b31daaa024409b8887af9b0344f47bc4d5ed03f08f64b9552"},
  1999. {file = "pyzmq-21.0.1-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:c12fba29f0b956390aed37d463fbea215d7592c08241fb20a2c165ef64c95019"},
  2000. {file = "pyzmq-21.0.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:930e33d92e7d991a1c194790c7fc7f3099f7ec1447e853b4218cba914bee3b7b"},
  2001. {file = "pyzmq-21.0.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:7ea55c672840ee8fd5884134c0697845d28f5b053713fc682b5d5fc73d747853"},
  2002. {file = "pyzmq-21.0.1-cp38-cp38-win32.whl", hash = "sha256:f1e357e234b435441b9366f6958623abe74fbbb1bd8e3bc679f09b5126785785"},
  2003. {file = "pyzmq-21.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:77371c7a39d2f1b71444128b9377be8b0588c3fbf7f56db970c5d4b7af8ed9fd"},
  2004. {file = "pyzmq-21.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e51ea97103791597e4deca13992c3544224c7eed89dc575d9a85972b16f01b59"},
  2005. {file = "pyzmq-21.0.1-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:b1fb293a5562a4870f20bb859a50bd59c14fdb1fc13353e25267facaf68f6eb0"},
  2006. {file = "pyzmq-21.0.1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:01715453ce14d4b804f87969461d21fff47df9bebde3c283c1ad872207717abc"},
  2007. {file = "pyzmq-21.0.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:7ca684fdb433577c30243357813eef81973d5dbbc3c6c1568e6c21ec1dcedda3"},
  2008. {file = "pyzmq-21.0.1-cp39-cp39-win32.whl", hash = "sha256:2199156013875ff4f872daa86214fe34658e4017b5cd8c4a2c4d6d9b59d1a2eb"},
  2009. {file = "pyzmq-21.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:de00a0fe9735efa06b96af56c8e7baa67c0972ec510e18c98efbb593c73cd886"},
  2010. {file = "pyzmq-21.0.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a82f6f41523db5408925b82bb150ecbc625c2eeccf31d38fa1a0e395e11dd5e2"},
  2011. {file = "pyzmq-21.0.1-pp36-pypy36_pp73-win32.whl", hash = "sha256:20c53aff015001cb705db0928850fa74ea4280a935d4e726743e4cb13206b0f2"},
  2012. {file = "pyzmq-21.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:5adc4e3015c647e413bdcf3cac803ffdb8566b938f83e5234ab9c2c14fe3ea3a"},
  2013. {file = "pyzmq-21.0.1-pp37-pypy37_pp73-win32.whl", hash = "sha256:76e1b4dff2be48ed98ec34dd10ad97316e69cb5ff37754f84abc9fb4bbc949bc"},
  2014. {file = "pyzmq-21.0.1.tar.gz", hash = "sha256:c3a630dd7716e8e127d43b22598e256a2d11a847b8cc3310350528960037fa06"},
  2015. ]
  2016. redis = [
  2017. {file = "redis-3.5.3-py2.py3-none-any.whl", hash = "sha256:432b788c4530cfe16d8d943a09d40ca6c16149727e4afe8c2c9d5580c59d9f24"},
  2018. {file = "redis-3.5.3.tar.gz", hash = "sha256:0e7e0cfca8660dea8b7d5cd8c4f6c5e29e11f31158c0b0ae91a397f00e5a05a2"},
  2019. ]
  2020. regex = [
  2021. {file = "regex-2020.11.13-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:8b882a78c320478b12ff024e81dc7d43c1462aa4a3341c754ee65d857a521f85"},
  2022. {file = "regex-2020.11.13-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:a63f1a07932c9686d2d416fb295ec2c01ab246e89b4d58e5fa468089cab44b70"},
  2023. {file = "regex-2020.11.13-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:6e4b08c6f8daca7d8f07c8d24e4331ae7953333dbd09c648ed6ebd24db5a10ee"},
  2024. {file = "regex-2020.11.13-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:bba349276b126947b014e50ab3316c027cac1495992f10e5682dc677b3dfa0c5"},
  2025. {file = "regex-2020.11.13-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:56e01daca75eae420bce184edd8bb341c8eebb19dd3bce7266332258f9fb9dd7"},
  2026. {file = "regex-2020.11.13-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:6a8ce43923c518c24a2579fda49f093f1397dad5d18346211e46f134fc624e31"},
  2027. {file = "regex-2020.11.13-cp36-cp36m-manylinux2014_i686.whl", hash = "sha256:1ab79fcb02b930de09c76d024d279686ec5d532eb814fd0ed1e0051eb8bd2daa"},
  2028. {file = "regex-2020.11.13-cp36-cp36m-manylinux2014_x86_64.whl", hash = "sha256:9801c4c1d9ae6a70aeb2128e5b4b68c45d4f0af0d1535500884d644fa9b768c6"},
  2029. {file = "regex-2020.11.13-cp36-cp36m-win32.whl", hash = "sha256:49cae022fa13f09be91b2c880e58e14b6da5d10639ed45ca69b85faf039f7a4e"},
  2030. {file = "regex-2020.11.13-cp36-cp36m-win_amd64.whl", hash = "sha256:749078d1eb89484db5f34b4012092ad14b327944ee7f1c4f74d6279a6e4d1884"},
  2031. {file = "regex-2020.11.13-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b2f4007bff007c96a173e24dcda236e5e83bde4358a557f9ccf5e014439eae4b"},
  2032. {file = "regex-2020.11.13-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:38c8fd190db64f513fe4e1baa59fed086ae71fa45083b6936b52d34df8f86a88"},
  2033. {file = "regex-2020.11.13-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:5862975b45d451b6db51c2e654990c1820523a5b07100fc6903e9c86575202a0"},
  2034. {file = "regex-2020.11.13-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:262c6825b309e6485ec2493ffc7e62a13cf13fb2a8b6d212f72bd53ad34118f1"},
  2035. {file = "regex-2020.11.13-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:bafb01b4688833e099d79e7efd23f99172f501a15c44f21ea2118681473fdba0"},
  2036. {file = "regex-2020.11.13-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:e32f5f3d1b1c663af7f9c4c1e72e6ffe9a78c03a31e149259f531e0fed826512"},
  2037. {file = "regex-2020.11.13-cp37-cp37m-manylinux2014_i686.whl", hash = "sha256:3bddc701bdd1efa0d5264d2649588cbfda549b2899dc8d50417e47a82e1387ba"},
  2038. {file = "regex-2020.11.13-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:02951b7dacb123d8ea6da44fe45ddd084aa6777d4b2454fa0da61d569c6fa538"},
  2039. {file = "regex-2020.11.13-cp37-cp37m-win32.whl", hash = "sha256:0d08e71e70c0237883d0bef12cad5145b84c3705e9c6a588b2a9c7080e5af2a4"},
  2040. {file = "regex-2020.11.13-cp37-cp37m-win_amd64.whl", hash = "sha256:1fa7ee9c2a0e30405e21031d07d7ba8617bc590d391adfc2b7f1e8b99f46f444"},
  2041. {file = "regex-2020.11.13-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:baf378ba6151f6e272824b86a774326f692bc2ef4cc5ce8d5bc76e38c813a55f"},
  2042. {file = "regex-2020.11.13-cp38-cp38-manylinux1_i686.whl", hash = "sha256:e3faaf10a0d1e8e23a9b51d1900b72e1635c2d5b0e1bea1c18022486a8e2e52d"},
  2043. {file = "regex-2020.11.13-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:2a11a3e90bd9901d70a5b31d7dd85114755a581a5da3fc996abfefa48aee78af"},
  2044. {file = "regex-2020.11.13-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:d1ebb090a426db66dd80df8ca85adc4abfcbad8a7c2e9a5ec7513ede522e0a8f"},
  2045. {file = "regex-2020.11.13-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:b2b1a5ddae3677d89b686e5c625fc5547c6e492bd755b520de5332773a8af06b"},
  2046. {file = "regex-2020.11.13-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:2c99e97d388cd0a8d30f7c514d67887d8021541b875baf09791a3baad48bb4f8"},
  2047. {file = "regex-2020.11.13-cp38-cp38-manylinux2014_i686.whl", hash = "sha256:c084582d4215593f2f1d28b65d2a2f3aceff8342aa85afd7be23a9cad74a0de5"},
  2048. {file = "regex-2020.11.13-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:a3d748383762e56337c39ab35c6ed4deb88df5326f97a38946ddd19028ecce6b"},
  2049. {file = "regex-2020.11.13-cp38-cp38-win32.whl", hash = "sha256:7913bd25f4ab274ba37bc97ad0e21c31004224ccb02765ad984eef43e04acc6c"},
  2050. {file = "regex-2020.11.13-cp38-cp38-win_amd64.whl", hash = "sha256:6c54ce4b5d61a7129bad5c5dc279e222afd00e721bf92f9ef09e4fae28755683"},
  2051. {file = "regex-2020.11.13-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1862a9d9194fae76a7aaf0150d5f2a8ec1da89e8b55890b1786b8f88a0f619dc"},
  2052. {file = "regex-2020.11.13-cp39-cp39-manylinux1_i686.whl", hash = "sha256:4902e6aa086cbb224241adbc2f06235927d5cdacffb2425c73e6570e8d862364"},
  2053. {file = "regex-2020.11.13-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:7a25fcbeae08f96a754b45bdc050e1fb94b95cab046bf56b016c25e9ab127b3e"},
  2054. {file = "regex-2020.11.13-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:d2d8ce12b7c12c87e41123997ebaf1a5767a5be3ec545f64675388970f415e2e"},
  2055. {file = "regex-2020.11.13-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:f7d29a6fc4760300f86ae329e3b6ca28ea9c20823df123a2ea8693e967b29917"},
  2056. {file = "regex-2020.11.13-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:717881211f46de3ab130b58ec0908267961fadc06e44f974466d1887f865bd5b"},
  2057. {file = "regex-2020.11.13-cp39-cp39-manylinux2014_i686.whl", hash = "sha256:3128e30d83f2e70b0bed9b2a34e92707d0877e460b402faca908c6667092ada9"},
  2058. {file = "regex-2020.11.13-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:8f6a2229e8ad946e36815f2a03386bb8353d4bde368fdf8ca5f0cb97264d3b5c"},
  2059. {file = "regex-2020.11.13-cp39-cp39-win32.whl", hash = "sha256:f8f295db00ef5f8bae530fc39af0b40486ca6068733fb860b42115052206466f"},
  2060. {file = "regex-2020.11.13-cp39-cp39-win_amd64.whl", hash = "sha256:a15f64ae3a027b64496a71ab1f722355e570c3fac5ba2801cafce846bf5af01d"},
  2061. {file = "regex-2020.11.13.tar.gz", hash = "sha256:83d6b356e116ca119db8e7c6fc2983289d87b27b3fac238cfe5dca529d884562"},
  2062. ]
  2063. requests = [
  2064. {file = "requests-2.25.1-py2.py3-none-any.whl", hash = "sha256:c210084e36a42ae6b9219e00e48287def368a26d03a048ddad7bfee44f75871e"},
  2065. {file = "requests-2.25.1.tar.gz", hash = "sha256:27973dd4a904a4f13b263a19c866c13b92a39ed1c964655f025f3f8d3d75b804"},
  2066. ]
  2067. requests-oauthlib = [
  2068. {file = "requests-oauthlib-1.3.0.tar.gz", hash = "sha256:b4261601a71fd721a8bd6d7aa1cc1d6a8a93b4a9f5e96626f8e4d91e8beeaa6a"},
  2069. {file = "requests_oauthlib-1.3.0-py2.py3-none-any.whl", hash = "sha256:7f71572defaecd16372f9006f33c2ec8c077c3cfa6f5911a9a90202beb513f3d"},
  2070. {file = "requests_oauthlib-1.3.0-py3.7.egg", hash = "sha256:fa6c47b933f01060936d87ae9327fead68768b69c6c9ea2109c48be30f2d4dbc"},
  2071. ]
  2072. rope = [
  2073. {file = "rope-0.17.0.tar.gz", hash = "sha256:658ad6705f43dcf3d6df379da9486529cf30e02d9ea14c5682aa80eb33b649e1"},
  2074. ]
  2075. "ruamel.yaml" = [
  2076. {file = "ruamel.yaml-0.16.12-py2.py3-none-any.whl", hash = "sha256:012b9470a0ea06e4e44e99e7920277edf6b46eee0232a04487ea73a7386340a5"},
  2077. {file = "ruamel.yaml-0.16.12.tar.gz", hash = "sha256:076cc0bc34f1966d920a49f18b52b6ad559fbe656a0748e3535cf7b3f29ebf9e"},
  2078. ]
  2079. "ruamel.yaml.clib" = [
  2080. {file = "ruamel.yaml.clib-0.2.2-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:28116f204103cb3a108dfd37668f20abe6e3cafd0d3fd40dba126c732457b3cc"},
  2081. {file = "ruamel.yaml.clib-0.2.2-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:daf21aa33ee9b351f66deed30a3d450ab55c14242cfdfcd377798e2c0d25c9f1"},
  2082. {file = "ruamel.yaml.clib-0.2.2-cp27-cp27m-win32.whl", hash = "sha256:30dca9bbcbb1cc858717438218d11eafb78666759e5094dd767468c0d577a7e7"},
  2083. {file = "ruamel.yaml.clib-0.2.2-cp27-cp27m-win_amd64.whl", hash = "sha256:f6061a31880c1ed6b6ce341215336e2f3d0c1deccd84957b6fa8ca474b41e89f"},
  2084. {file = "ruamel.yaml.clib-0.2.2-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:73b3d43e04cc4b228fa6fa5d796409ece6fcb53a6c270eb2048109cbcbc3b9c2"},
  2085. {file = "ruamel.yaml.clib-0.2.2-cp35-cp35m-macosx_10_6_intel.whl", hash = "sha256:53b9dd1abd70e257a6e32f934ebc482dac5edb8c93e23deb663eac724c30b026"},
  2086. {file = "ruamel.yaml.clib-0.2.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:839dd72545ef7ba78fd2aa1a5dd07b33696adf3e68fae7f31327161c1093001b"},
  2087. {file = "ruamel.yaml.clib-0.2.2-cp35-cp35m-win32.whl", hash = "sha256:b1e981fe1aff1fd11627f531524826a4dcc1f26c726235a52fcb62ded27d150f"},
  2088. {file = "ruamel.yaml.clib-0.2.2-cp35-cp35m-win_amd64.whl", hash = "sha256:4e52c96ca66de04be42ea2278012a2342d89f5e82b4512fb6fb7134e377e2e62"},
  2089. {file = "ruamel.yaml.clib-0.2.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:a873e4d4954f865dcb60bdc4914af7eaae48fb56b60ed6daa1d6251c72f5337c"},
  2090. {file = "ruamel.yaml.clib-0.2.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:ab845f1f51f7eb750a78937be9f79baea4a42c7960f5a94dde34e69f3cce1988"},
  2091. {file = "ruamel.yaml.clib-0.2.2-cp36-cp36m-win32.whl", hash = "sha256:e9f7d1d8c26a6a12c23421061f9022bb62704e38211fe375c645485f38df34a2"},
  2092. {file = "ruamel.yaml.clib-0.2.2-cp36-cp36m-win_amd64.whl", hash = "sha256:2602e91bd5c1b874d6f93d3086f9830f3e907c543c7672cf293a97c3fabdcd91"},
  2093. {file = "ruamel.yaml.clib-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:44c7b0498c39f27795224438f1a6be6c5352f82cb887bc33d962c3a3acc00df6"},
  2094. {file = "ruamel.yaml.clib-0.2.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:8e8fd0a22c9d92af3a34f91e8a2594eeb35cba90ab643c5e0e643567dc8be43e"},
  2095. {file = "ruamel.yaml.clib-0.2.2-cp37-cp37m-win32.whl", hash = "sha256:464e66a04e740d754170be5e740657a3b3b6d2bcc567f0c3437879a6e6087ff6"},
  2096. {file = "ruamel.yaml.clib-0.2.2-cp37-cp37m-win_amd64.whl", hash = "sha256:52ae5739e4b5d6317b52f5b040b1b6639e8af68a5b8fd606a8b08658fbd0cab5"},
  2097. {file = "ruamel.yaml.clib-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4df5019e7783d14b79217ad9c56edf1ba7485d614ad5a385d1b3c768635c81c0"},
  2098. {file = "ruamel.yaml.clib-0.2.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:5254af7d8bdf4d5484c089f929cb7f5bafa59b4f01d4f48adda4be41e6d29f99"},
  2099. {file = "ruamel.yaml.clib-0.2.2-cp38-cp38-win32.whl", hash = "sha256:74161d827407f4db9072011adcfb825b5258a5ccb3d2cd518dd6c9edea9e30f1"},
  2100. {file = "ruamel.yaml.clib-0.2.2-cp38-cp38-win_amd64.whl", hash = "sha256:058a1cc3df2a8aecc12f983a48bda99315cebf55a3b3a5463e37bb599b05727b"},
  2101. {file = "ruamel.yaml.clib-0.2.2.tar.gz", hash = "sha256:2d24bd98af676f4990c4d715bcdc2a60b19c56a3fb3a763164d2d8ca0e806ba7"},
  2102. ]
  2103. s3transfer = [
  2104. {file = "s3transfer-0.3.4-py2.py3-none-any.whl", hash = "sha256:1e28620e5b444652ed752cf87c7e0cb15b0e578972568c6609f0f18212f259ed"},
  2105. {file = "s3transfer-0.3.4.tar.gz", hash = "sha256:7fdddb4f22275cf1d32129e21f056337fd2a80b6ccef1664528145b72c49e6d2"},
  2106. ]
  2107. sentry-sdk = [
  2108. {file = "sentry-sdk-0.19.5.tar.gz", hash = "sha256:737a094e49a529dd0fdcaafa9e97cf7c3d5eb964bd229821d640bc77f3502b3f"},
  2109. {file = "sentry_sdk-0.19.5-py2.py3-none-any.whl", hash = "sha256:0a711ec952441c2ec89b8f5d226c33bc697914f46e876b44a4edd3e7864cf4d0"},
  2110. ]
  2111. simplejson = [
  2112. {file = "simplejson-3.17.2-cp27-cp27m-macosx_10_13_x86_64.whl", hash = "sha256:2d3eab2c3fe52007d703a26f71cf649a8c771fcdd949a3ae73041ba6797cfcf8"},
  2113. {file = "simplejson-3.17.2-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:813846738277729d7db71b82176204abc7fdae2f566e2d9fcf874f9b6472e3e6"},
  2114. {file = "simplejson-3.17.2-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:292c2e3f53be314cc59853bd20a35bf1f965f3bc121e007ab6fd526ed412a85d"},
  2115. {file = "simplejson-3.17.2-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:0dd9d9c738cb008bfc0862c9b8fa6743495c03a0ed543884bf92fb7d30f8d043"},
  2116. {file = "simplejson-3.17.2-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:42b8b8dd0799f78e067e2aaae97e60d58a8f63582939af60abce4c48631a0aa4"},
  2117. {file = "simplejson-3.17.2-cp27-cp27m-win32.whl", hash = "sha256:8042040af86a494a23c189b5aa0ea9433769cc029707833f261a79c98e3375f9"},
  2118. {file = "simplejson-3.17.2-cp27-cp27m-win_amd64.whl", hash = "sha256:034550078a11664d77bc1a8364c90bb7eef0e44c2dbb1fd0a4d92e3997088667"},
  2119. {file = "simplejson-3.17.2-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:fed0f22bf1313ff79c7fc318f7199d6c2f96d4de3234b2f12a1eab350e597c06"},
  2120. {file = "simplejson-3.17.2-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:2e7b57c2c146f8e4dadf84977a83f7ee50da17c8861fd7faf694d55e3274784f"},
  2121. {file = "simplejson-3.17.2-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:da3c55cdc66cfc3fffb607db49a42448785ea2732f055ac1549b69dcb392663b"},
  2122. {file = "simplejson-3.17.2-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:c1cb29b1fced01f97e6d5631c3edc2dadb424d1f4421dad079cb13fc97acb42f"},
  2123. {file = "simplejson-3.17.2-cp33-cp33m-win32.whl", hash = "sha256:8f713ea65958ef40049b6c45c40c206ab363db9591ff5a49d89b448933fa5746"},
  2124. {file = "simplejson-3.17.2-cp33-cp33m-win_amd64.whl", hash = "sha256:344e2d920a7f27b4023c087ab539877a1e39ce8e3e90b867e0bfa97829824748"},
  2125. {file = "simplejson-3.17.2-cp34-cp34m-win32.whl", hash = "sha256:05b43d568300c1cd43f95ff4bfcff984bc658aa001be91efb3bb21df9d6288d3"},
  2126. {file = "simplejson-3.17.2-cp34-cp34m-win_amd64.whl", hash = "sha256:cff6453e25204d3369c47b97dd34783ca820611bd334779d22192da23784194b"},
  2127. {file = "simplejson-3.17.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:8acf76443cfb5c949b6e781c154278c059b09ac717d2757a830c869ba000cf8d"},
  2128. {file = "simplejson-3.17.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:869a183c8e44bc03be1b2bbcc9ec4338e37fa8557fc506bf6115887c1d3bb956"},
  2129. {file = "simplejson-3.17.2-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:5c659a0efc80aaaba57fcd878855c8534ecb655a28ac8508885c50648e6e659d"},
  2130. {file = "simplejson-3.17.2-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:72d8a3ffca19a901002d6b068cf746be85747571c6a7ba12cbcf427bfb4ed971"},
  2131. {file = "simplejson-3.17.2-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:4b3442249d5e3893b90cb9f72c7d6ce4d2ea144d2c0d9f75b9ae1e5460f3121a"},
  2132. {file = "simplejson-3.17.2-cp35-cp35m-win32.whl", hash = "sha256:e058c7656c44fb494a11443191e381355388443d543f6fc1a245d5d238544396"},
  2133. {file = "simplejson-3.17.2-cp35-cp35m-win_amd64.whl", hash = "sha256:934115642c8ba9659b402c8bdbdedb48651fb94b576e3b3efd1ccb079609b04a"},
  2134. {file = "simplejson-3.17.2-cp36-cp36m-macosx_10_13_x86_64.whl", hash = "sha256:ffd4e4877a78c84d693e491b223385e0271278f5f4e1476a4962dca6824ecfeb"},
  2135. {file = "simplejson-3.17.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:10fc250c3edea4abc15d930d77274ddb8df4803453dde7ad50c2f5565a18a4bb"},
  2136. {file = "simplejson-3.17.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:76ac9605bf2f6d9b56abf6f9da9047a8782574ad3531c82eae774947ae99cc3f"},
  2137. {file = "simplejson-3.17.2-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:7f10f8ba9c1b1430addc7dd385fc322e221559d3ae49b812aebf57470ce8de45"},
  2138. {file = "simplejson-3.17.2-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:bc00d1210567a4cdd215ac6e17dc00cb9893ee521cee701adfd0fa43f7c73139"},
  2139. {file = "simplejson-3.17.2-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:af4868da7dd53296cd7630687161d53a7ebe2e63814234631445697bd7c29f46"},
  2140. {file = "simplejson-3.17.2-cp36-cp36m-win32.whl", hash = "sha256:7d276f69bfc8c7ba6c717ba8deaf28f9d3c8450ff0aa8713f5a3280e232be16b"},
  2141. {file = "simplejson-3.17.2-cp36-cp36m-win_amd64.whl", hash = "sha256:a55c76254d7cf8d4494bc508e7abb993a82a192d0db4552421e5139235604625"},
  2142. {file = "simplejson-3.17.2-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:9a2b7543559f8a1c9ed72724b549d8cc3515da7daf3e79813a15bdc4a769de25"},
  2143. {file = "simplejson-3.17.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:311f5dc2af07361725033b13cc3d0351de3da8bede3397d45650784c3f21fbcf"},
  2144. {file = "simplejson-3.17.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:2862beabfb9097a745a961426fe7daf66e1714151da8bb9a0c430dde3d59c7c0"},
  2145. {file = "simplejson-3.17.2-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:afebfc3dd3520d37056f641969ce320b071bc7a0800639c71877b90d053e087f"},
  2146. {file = "simplejson-3.17.2-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:d4813b30cb62d3b63ccc60dd12f2121780c7a3068db692daeb90f989877aaf04"},
  2147. {file = "simplejson-3.17.2-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:3fabde09af43e0cbdee407555383063f8b45bfb52c361bc5da83fcffdb4fd278"},
  2148. {file = "simplejson-3.17.2-cp37-cp37m-win32.whl", hash = "sha256:ceaa28a5bce8a46a130cd223e895080e258a88d51bf6e8de2fc54a6ef7e38c34"},
  2149. {file = "simplejson-3.17.2-cp37-cp37m-win_amd64.whl", hash = "sha256:9551f23e09300a9a528f7af20e35c9f79686d46d646152a0c8fc41d2d074d9b0"},
  2150. {file = "simplejson-3.17.2-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:c94dc64b1a389a416fc4218cd4799aa3756f25940cae33530a4f7f2f54f166da"},
  2151. {file = "simplejson-3.17.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:b59aa298137ca74a744c1e6e22cfc0bf9dca3a2f41f51bc92eb05695155d905a"},
  2152. {file = "simplejson-3.17.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:ad8f41c2357b73bc9e8606d2fa226233bf4d55d85a8982ecdfd55823a6959995"},
  2153. {file = "simplejson-3.17.2-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:845a14f6deb124a3bcb98a62def067a67462a000e0508f256f9c18eff5847efc"},
  2154. {file = "simplejson-3.17.2-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:d0b64409df09edb4c365d95004775c988259efe9be39697d7315c42b7a5e7e94"},
  2155. {file = "simplejson-3.17.2-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:55d65f9cc1b733d85ef95ab11f559cce55c7649a2160da2ac7a078534da676c8"},
  2156. {file = "simplejson-3.17.2.tar.gz", hash = "sha256:75ecc79f26d99222a084fbdd1ce5aad3ac3a8bd535cd9059528452da38b68841"},
  2157. ]
  2158. six = [
  2159. {file = "six-1.15.0-py2.py3-none-any.whl", hash = "sha256:8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced"},
  2160. {file = "six-1.15.0.tar.gz", hash = "sha256:30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259"},
  2161. ]
  2162. sqlparse = [
  2163. {file = "sqlparse-0.4.1-py3-none-any.whl", hash = "sha256:017cde379adbd6a1f15a61873f43e8274179378e95ef3fede90b5aa64d304ed0"},
  2164. {file = "sqlparse-0.4.1.tar.gz", hash = "sha256:0f91fd2e829c44362cbcfab3e9ae12e22badaa8a29ad5ff599f9ec109f0454e8"},
  2165. ]
  2166. stripe = [
  2167. {file = "stripe-2.55.1-py2.py3-none-any.whl", hash = "sha256:fd98ae43b105e75cb4f1d23ba3d0c16b45e3957d432002398a2f75d083d606ce"},
  2168. {file = "stripe-2.55.1.tar.gz", hash = "sha256:6b70e2cf87cfbe0cb891b725b690495bc3d34ab0d82545a5989ecd3b5fa83e2a"},
  2169. ]
  2170. toml = [
  2171. {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"},
  2172. {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"},
  2173. ]
  2174. traitlets = [
  2175. {file = "traitlets-5.0.5-py3-none-any.whl", hash = "sha256:69ff3f9d5351f31a7ad80443c2674b7099df13cc41fc5fa6e2f6d3b0330b0426"},
  2176. {file = "traitlets-5.0.5.tar.gz", hash = "sha256:178f4ce988f69189f7e523337a3e11d91c786ded9360174a3d9ca83e79bc5396"},
  2177. ]
  2178. typed-ast = [
  2179. {file = "typed_ast-1.4.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:7703620125e4fb79b64aa52427ec192822e9f45d37d4b6625ab37ef403e1df70"},
  2180. {file = "typed_ast-1.4.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:c9aadc4924d4b5799112837b226160428524a9a45f830e0d0f184b19e4090487"},
  2181. {file = "typed_ast-1.4.2-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:9ec45db0c766f196ae629e509f059ff05fc3148f9ffd28f3cfe75d4afb485412"},
  2182. {file = "typed_ast-1.4.2-cp35-cp35m-win32.whl", hash = "sha256:85f95aa97a35bdb2f2f7d10ec5bbdac0aeb9dafdaf88e17492da0504de2e6400"},
  2183. {file = "typed_ast-1.4.2-cp35-cp35m-win_amd64.whl", hash = "sha256:9044ef2df88d7f33692ae3f18d3be63dec69c4fb1b5a4a9ac950f9b4ba571606"},
  2184. {file = "typed_ast-1.4.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:c1c876fd795b36126f773db9cbb393f19808edd2637e00fd6caba0e25f2c7b64"},
  2185. {file = "typed_ast-1.4.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:5dcfc2e264bd8a1db8b11a892bd1647154ce03eeba94b461effe68790d8b8e07"},
  2186. {file = "typed_ast-1.4.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:8db0e856712f79c45956da0c9a40ca4246abc3485ae0d7ecc86a20f5e4c09abc"},
  2187. {file = "typed_ast-1.4.2-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:d003156bb6a59cda9050e983441b7fa2487f7800d76bdc065566b7d728b4581a"},
  2188. {file = "typed_ast-1.4.2-cp36-cp36m-win32.whl", hash = "sha256:4c790331247081ea7c632a76d5b2a265e6d325ecd3179d06e9cf8d46d90dd151"},
  2189. {file = "typed_ast-1.4.2-cp36-cp36m-win_amd64.whl", hash = "sha256:d175297e9533d8d37437abc14e8a83cbc68af93cc9c1c59c2c292ec59a0697a3"},
  2190. {file = "typed_ast-1.4.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cf54cfa843f297991b7388c281cb3855d911137223c6b6d2dd82a47ae5125a41"},
  2191. {file = "typed_ast-1.4.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:b4fcdcfa302538f70929eb7b392f536a237cbe2ed9cba88e3bf5027b39f5f77f"},
  2192. {file = "typed_ast-1.4.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:987f15737aba2ab5f3928c617ccf1ce412e2e321c77ab16ca5a293e7bbffd581"},
  2193. {file = "typed_ast-1.4.2-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:37f48d46d733d57cc70fd5f30572d11ab8ed92da6e6b28e024e4a3edfb456e37"},
  2194. {file = "typed_ast-1.4.2-cp37-cp37m-win32.whl", hash = "sha256:36d829b31ab67d6fcb30e185ec996e1f72b892255a745d3a82138c97d21ed1cd"},
  2195. {file = "typed_ast-1.4.2-cp37-cp37m-win_amd64.whl", hash = "sha256:8368f83e93c7156ccd40e49a783a6a6850ca25b556c0fa0240ed0f659d2fe496"},
  2196. {file = "typed_ast-1.4.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:963c80b583b0661918718b095e02303d8078950b26cc00b5e5ea9ababe0de1fc"},
  2197. {file = "typed_ast-1.4.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:e683e409e5c45d5c9082dc1daf13f6374300806240719f95dc783d1fc942af10"},
  2198. {file = "typed_ast-1.4.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:84aa6223d71012c68d577c83f4e7db50d11d6b1399a9c779046d75e24bed74ea"},
  2199. {file = "typed_ast-1.4.2-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:a38878a223bdd37c9709d07cd357bb79f4c760b29210e14ad0fb395294583787"},
  2200. {file = "typed_ast-1.4.2-cp38-cp38-win32.whl", hash = "sha256:a2c927c49f2029291fbabd673d51a2180038f8cd5a5b2f290f78c4516be48be2"},
  2201. {file = "typed_ast-1.4.2-cp38-cp38-win_amd64.whl", hash = "sha256:c0c74e5579af4b977c8b932f40a5464764b2f86681327410aa028a22d2f54937"},
  2202. {file = "typed_ast-1.4.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:07d49388d5bf7e863f7fa2f124b1b1d89d8aa0e2f7812faff0a5658c01c59aa1"},
  2203. {file = "typed_ast-1.4.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:240296b27397e4e37874abb1df2a608a92df85cf3e2a04d0d4d61055c8305ba6"},
  2204. {file = "typed_ast-1.4.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:d746a437cdbca200622385305aedd9aef68e8a645e385cc483bdc5e488f07166"},
  2205. {file = "typed_ast-1.4.2-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:14bf1522cdee369e8f5581238edac09150c765ec1cb33615855889cf33dcb92d"},
  2206. {file = "typed_ast-1.4.2-cp39-cp39-win32.whl", hash = "sha256:cc7b98bf58167b7f2db91a4327da24fb93368838eb84a44c472283778fc2446b"},
  2207. {file = "typed_ast-1.4.2-cp39-cp39-win_amd64.whl", hash = "sha256:7147e2a76c75f0f64c4319886e7639e490fee87c9d25cb1d4faef1d8cf83a440"},
  2208. {file = "typed_ast-1.4.2.tar.gz", hash = "sha256:9fc0b3cb5d1720e7141d103cf4819aea239f7d136acf9ee4a69b047b7986175a"},
  2209. ]
  2210. typing-extensions = [
  2211. {file = "typing_extensions-3.7.4.3-py2-none-any.whl", hash = "sha256:dafc7639cde7f1b6e1acc0f457842a83e722ccca8eef5270af2d74792619a89f"},
  2212. {file = "typing_extensions-3.7.4.3-py3-none-any.whl", hash = "sha256:7cb407020f00f7bfc3cb3e7881628838e69d8f3fcab2f64742a5e76b2f841918"},
  2213. {file = "typing_extensions-3.7.4.3.tar.gz", hash = "sha256:99d4073b617d30288f569d3f13d2bd7548c3a7e4c8de87db09a9d29bb3a4a60c"},
  2214. ]
  2215. ua-parser = [
  2216. {file = "ua-parser-0.10.0.tar.gz", hash = "sha256:47b1782ed130d890018d983fac37c2a80799d9e0b9c532e734c67cf70f185033"},
  2217. {file = "ua_parser-0.10.0-py2.py3-none-any.whl", hash = "sha256:46ab2e383c01dbd2ab284991b87d624a26a08f72da4d7d413f5bfab8b9036f8a"},
  2218. ]
  2219. uritemplate = [
  2220. {file = "uritemplate-3.0.1-py2.py3-none-any.whl", hash = "sha256:07620c3f3f8eed1f12600845892b0e036a2420acf513c53f7de0abd911a5894f"},
  2221. {file = "uritemplate-3.0.1.tar.gz", hash = "sha256:5af8ad10cec94f215e3f48112de2022e1d5a37ed427fbd88652fa908f2ab7cae"},
  2222. ]
  2223. urllib3 = [
  2224. {file = "urllib3-1.26.2-py2.py3-none-any.whl", hash = "sha256:d8ff90d979214d7b4f8ce956e80f4028fc6860e4431f731ea4a8c08f23f99473"},
  2225. {file = "urllib3-1.26.2.tar.gz", hash = "sha256:19188f96923873c92ccb987120ec4acaa12f0461fa9ce5d3d0772bc965a39e08"},
  2226. ]
  2227. user-agents = [
  2228. {file = "user-agents-2.2.0.tar.gz", hash = "sha256:d36d25178db65308d1458c5fa4ab39c9b2619377010130329f3955e7626ead26"},
  2229. {file = "user_agents-2.2.0-py3-none-any.whl", hash = "sha256:a98c4dc72ecbc64812c4534108806fb0a0b3a11ec3fd1eafe807cee5b0a942e7"},
  2230. ]
  2231. uwsgi = [
  2232. {file = "uWSGI-2.0.19.1.tar.gz", hash = "sha256:faa85e053c0b1be4d5585b0858d3a511d2cd10201802e8676060fd0a109e5869"},
  2233. ]
  2234. vine = [
  2235. {file = "vine-5.0.0-py2.py3-none-any.whl", hash = "sha256:4c9dceab6f76ed92105027c49c823800dd33cacce13bdedc5b914e3514b7fb30"},
  2236. {file = "vine-5.0.0.tar.gz", hash = "sha256:7d3b1624a953da82ef63462013bbd271d3eb75751489f9807598e8f340bd637e"},
  2237. ]
  2238. wcwidth = [
  2239. {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"},
  2240. {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"},
  2241. ]
  2242. werkzeug = [
  2243. {file = "Werkzeug-1.0.1-py2.py3-none-any.whl", hash = "sha256:2de2a5db0baeae7b2d2664949077c2ac63fbd16d98da0ff71837f7d1dea3fd43"},
  2244. {file = "Werkzeug-1.0.1.tar.gz", hash = "sha256:6c80b1e5ad3665290ea39320b91e1be1e0d5f60652b964a3070216de83d2e47c"},
  2245. ]
  2246. whitenoise = [
  2247. {file = "whitenoise-5.2.0-py2.py3-none-any.whl", hash = "sha256:05d00198c777028d72d8b0bbd234db605ef6d60e9410125124002518a48e515d"},
  2248. {file = "whitenoise-5.2.0.tar.gz", hash = "sha256:05ce0be39ad85740a78750c86a93485c40f08ad8c62a6006de0233765996e5c7"},
  2249. ]
  2250. wrapt = [
  2251. {file = "wrapt-1.12.1.tar.gz", hash = "sha256:b62ffa81fb85f4332a4f609cab4ac40709470da05643a082ec1eb88e6d9b97d7"},
  2252. ]
  2253. zipp = [
  2254. {file = "zipp-3.4.0-py3-none-any.whl", hash = "sha256:102c24ef8f171fd729d46599845e95c7ab894a4cf45f5de11a44cc7444fb1108"},
  2255. {file = "zipp-3.4.0.tar.gz", hash = "sha256:ed5eee1974372595f9e416cc7bbeeb12335201d8081ca8a0743c954d4446e5cb"},
  2256. ]
  2257. "zope.event" = [
  2258. {file = "zope.event-4.5.0-py2.py3-none-any.whl", hash = "sha256:2666401939cdaa5f4e0c08cf7f20c9b21423b95e88f4675b1443973bdb080c42"},
  2259. {file = "zope.event-4.5.0.tar.gz", hash = "sha256:5e76517f5b9b119acf37ca8819781db6c16ea433f7e2062c4afc2b6fbedb1330"},
  2260. ]
  2261. "zope.interface" = [
  2262. {file = "zope.interface-5.2.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:518950fe6a5d56f94ba125107895f938a4f34f704c658986eae8255edb41163b"},
  2263. {file = "zope.interface-5.2.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:6278c080d4afffc9016e14325f8734456831124e8c12caa754fd544435c08386"},
  2264. {file = "zope.interface-5.2.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:538298e4e113ccb8b41658d5a4b605bebe75e46a30ceca22a5a289cf02c80bec"},
  2265. {file = "zope.interface-5.2.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:778d0ec38bbd288b150a3ae363c8ffd88d2207a756842495e9bffd8a8afbc89a"},
  2266. {file = "zope.interface-5.2.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:64ea6c221aeee4796860405e1aedec63424cda4202a7ad27a5066876db5b0fd2"},
  2267. {file = "zope.interface-5.2.0-cp27-cp27m-win32.whl", hash = "sha256:92dc0fb79675882d0b6138be4bf0cec7ea7c7eede60aaca78303d8e8dbdaa523"},
  2268. {file = "zope.interface-5.2.0-cp27-cp27m-win_amd64.whl", hash = "sha256:844fad925ac5c2ad4faaceb3b2520ad016b5280105c6e16e79838cf951903a7b"},
  2269. {file = "zope.interface-5.2.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:588384d70a0f19b47409cfdb10e0c27c20e4293b74fc891df3d8eb47782b8b3e"},
  2270. {file = "zope.interface-5.2.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:07d61722dd7d85547b7c6b0f5486b4338001fab349f2ac5cabc0b7182eb3425d"},
  2271. {file = "zope.interface-5.2.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:495b63fd0302f282ee6c1e6ea0f1c12cb3d1a49c8292d27287f01845ff252a96"},
  2272. {file = "zope.interface-5.2.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:299bde0ab9e5c4a92f01a152b7fbabb460f31343f1416f9b7b983167ab1e33bc"},
  2273. {file = "zope.interface-5.2.0-cp35-cp35m-macosx_10_6_intel.whl", hash = "sha256:32546af61a9a9b141ca38d971aa6eb9800450fa6620ce6323cc30eec447861f3"},
  2274. {file = "zope.interface-5.2.0-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:2ab88d8f228f803fcb8cb7d222c579d13dab2d3622c51e8cf321280da01102a7"},
  2275. {file = "zope.interface-5.2.0-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:cbd0f2cbd8689861209cd89141371d3a22a11613304d1f0736492590aa0ab332"},
  2276. {file = "zope.interface-5.2.0-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:21e49123f375703cf824214939d39df0af62c47d122d955b2a8d9153ea08cfd5"},
  2277. {file = "zope.interface-5.2.0-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:eccac3d9aadc68e994b6d228cb0c8919fc47a5350d85a1b4d3d81d1e98baf40c"},
  2278. {file = "zope.interface-5.2.0-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:42b278ac0989d6f5cf58d7e0828ea6b5951464e3cf2ff229dd09a96cb6ba0c86"},
  2279. {file = "zope.interface-5.2.0-cp35-cp35m-win32.whl", hash = "sha256:83b4aa5344cce005a9cff5d0321b2e318e871cc1dfc793b66c32dd4f59e9770d"},
  2280. {file = "zope.interface-5.2.0-cp35-cp35m-win_amd64.whl", hash = "sha256:4df9afd17bd5477e9f8c8b6bb8507e18dd0f8b4efe73bb99729ff203279e9e3b"},
  2281. {file = "zope.interface-5.2.0-cp36-cp36m-macosx_10_6_intel.whl", hash = "sha256:1743bcfe45af8846b775086471c28258f4c6e9ee8ef37484de4495f15a98b549"},
  2282. {file = "zope.interface-5.2.0-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:aedc6c672b351afe6dfe17ff83ee5e7eb6ed44718f879a9328a68bdb20b57e11"},
  2283. {file = "zope.interface-5.2.0-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:4af87cdc0d4b14e600e6d3d09793dce3b7171348a094ba818e2a68ae7ee67546"},
  2284. {file = "zope.interface-5.2.0-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:b7a00ecb1434f8183395fac5366a21ee73d14900082ca37cf74993cf46baa56c"},
  2285. {file = "zope.interface-5.2.0-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:8ceb3667dd13b8133f2e4d637b5b00f240f066448e2aa89a41f4c2d78a26ce50"},
  2286. {file = "zope.interface-5.2.0-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:efef581c8ba4d990770875e1a2218e856849d32ada2680e53aebc5d154a17e20"},
  2287. {file = "zope.interface-5.2.0-cp36-cp36m-win32.whl", hash = "sha256:e4bc372b953bf6cec65a8d48482ba574f6e051621d157cf224227dbb55486b1e"},
  2288. {file = "zope.interface-5.2.0-cp36-cp36m-win_amd64.whl", hash = "sha256:3cc94c69f6bd48ed86e8e24f358cb75095c8129827df1298518ab860115269a4"},
  2289. {file = "zope.interface-5.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:ba32f4a91c1cb7314c429b03afbf87b1fff4fb1c8db32260e7310104bd77f0c7"},
  2290. {file = "zope.interface-5.2.0-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:1b5f6c8fff4ed32aa2dd43e84061bc8346f32d3ba6ad6e58f088fe109608f102"},
  2291. {file = "zope.interface-5.2.0-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:efd550b3da28195746bb43bd1d815058181a7ca6d9d6aa89dd37f5eefe2cacb7"},
  2292. {file = "zope.interface-5.2.0-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:aab9f1e34d810feb00bf841993552b8fcc6ae71d473c505381627143d0018a6a"},
  2293. {file = "zope.interface-5.2.0-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:55465121e72e208a7b69b53de791402affe6165083b2ea71b892728bd19ba9ae"},
  2294. {file = "zope.interface-5.2.0-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:32b40a4c46d199827d79c86bb8cb88b1bbb764f127876f2cb6f3a47f63dbada3"},
  2295. {file = "zope.interface-5.2.0-cp37-cp37m-win32.whl", hash = "sha256:abb61afd84f23099ac6099d804cdba9bd3b902aaaded3ffff47e490b0a495520"},
  2296. {file = "zope.interface-5.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:21f579134a47083ffb5ddd1307f0405c91aa8b61ad4be6fd5af0171474fe0c45"},
  2297. {file = "zope.interface-5.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4c48ddb63e2b20fba4c6a2bf81b4d49e99b6d4587fb67a6cd33a2c1f003af3e3"},
  2298. {file = "zope.interface-5.2.0-cp38-cp38-manylinux1_i686.whl", hash = "sha256:2dcab01c660983ba5e5a612e0c935141ccbee67d2e2e14b833e01c2354bd8034"},
  2299. {file = "zope.interface-5.2.0-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:150e8bcb7253a34a4535aeea3de36c0bb3b1a6a47a183a95d65a194b3e07f232"},
  2300. {file = "zope.interface-5.2.0-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:681dbb33e2b40262b33fd383bae63c36d33fd79fa1a8e4092945430744ffd34a"},
  2301. {file = "zope.interface-5.2.0-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:2ced4c35061eea623bc84c7711eedce8ecc3c2c51cd9c6afa6290df3bae9e104"},
  2302. {file = "zope.interface-5.2.0-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:f37d45fab14ffef9d33a0dc3bc59ce0c5313e2253323312d47739192da94f5fd"},
  2303. {file = "zope.interface-5.2.0-cp38-cp38-win32.whl", hash = "sha256:9789bd945e9f5bd026ed3f5b453d640befb8b1fc33a779c1fe8d3eb21fe3fb4a"},
  2304. {file = "zope.interface-5.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:0a990dcc97806e5980bbb54b2e46b9cde9e48932d8e6984daf71ef1745516123"},
  2305. {file = "zope.interface-5.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4b94df9f2fdde7b9314321bab8448e6ad5a23b80542dcab53e329527d4099dcb"},
  2306. {file = "zope.interface-5.2.0-cp39-cp39-manylinux1_i686.whl", hash = "sha256:6936aa9da390402d646a32a6a38d5409c2d2afb2950f045a7d02ab25a4e7d08d"},
  2307. {file = "zope.interface-5.2.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:adf9ee115ae8ff8b6da4b854b4152f253b390ba64407a22d75456fe07dcbda65"},
  2308. {file = "zope.interface-5.2.0-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:f44906f70205d456d503105023041f1e63aece7623b31c390a0103db4de17537"},
  2309. {file = "zope.interface-5.2.0-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:f057897711a630a0b7a6a03f1acf379b6ba25d37dc5dc217a97191984ba7f2fc"},
  2310. {file = "zope.interface-5.2.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:05a97ba92c1c7c26f25c9f671aa1ef85ffead6cdad13770e5b689cf983adc7e1"},
  2311. {file = "zope.interface-5.2.0-cp39-cp39-win32.whl", hash = "sha256:27c267dc38a0f0079e96a2945ee65786d38ef111e413c702fbaaacbab6361d00"},
  2312. {file = "zope.interface-5.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:a2b6d6eb693bc2fc6c484f2e5d93bd0b0da803fa77bf974f160533e555e4d095"},
  2313. {file = "zope.interface-5.2.0.tar.gz", hash = "sha256:8251f06a77985a2729a8bdbefbae79ee78567dddc3acbd499b87e705ca59fe24"},
  2314. ]