django-auth-recovery-codes 1.0.1__tar.gz → 1.0.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5850) hide show
  1. django_auth_recovery_codes-1.0.3/PKG-INFO +2807 -0
  2. django_auth_recovery_codes-1.0.3/README.md +2770 -0
  3. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/base_models.py +334 -0
  4. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/models.py +2309 -0
  5. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/static/django_recovery_codes/js/batchCardsHistory/batchCardUtils.js +25 -0
  6. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/static/django_recovery_codes/js/batchCardsHistory/updateBatchHistorySection.js +306 -0
  7. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/static/django_recovery_codes/js/dashboard.js +348 -0
  8. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleCodeGeneration.js +704 -0
  9. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/fixtures/fixtures.py +19 -0
  10. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_integration/test_verify_and_create_codes_integration.py +210 -0
  11. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_recovery_code_batch/test_model/__init__.py +0 -0
  12. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_recovery_code_batch/test_model/test_recovery_model.py +107 -0
  13. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_recovery_code_batch/test_model_method/__init__.py +0 -0
  14. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_recovery_code_batch/test_model_method/test_recovery_code_batch.py +676 -0
  15. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_recovery_code_batch/test_views/__init__.py +0 -0
  16. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_recovery_code_batch/test_views/test_post_view.py +218 -0
  17. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_recovery_code_batch/utils.py +272 -0
  18. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_setup/__init__.py +0 -0
  19. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_setup/test_edge_cases/__init__.py +0 -0
  20. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_setup/test_edge_cases/test_edge_cases.py +66 -0
  21. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_setup/test_model/__init__.py +0 -0
  22. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_setup/test_model/test_recovery_code_setup.py +89 -0
  23. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_setup/test_model_method/__init__.py +0 -0
  24. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_setup/test_model_method/test_method.py +85 -0
  25. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_setup/test_views/__init__.py +0 -0
  26. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_setup/test_views/test_setup_post_view.py +74 -0
  27. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_setup/test_views/test_setup_view.py +27 -0
  28. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/utils/__init__.py +0 -0
  29. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/utils/attempt_guard.py +196 -0
  30. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/utils/cache/__init__.py +0 -0
  31. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/utils/errors/__init__.py +0 -0
  32. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/utils/errors/enforcer.py +83 -0
  33. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/utils/security/__init__.py +0 -0
  34. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/views.py +735 -0
  35. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/views_code_handler_helper.py +557 -0
  36. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes.egg-info/PKG-INFO +2807 -0
  37. django_auth_recovery_codes-1.0.3/django_auth_recovery_codes.egg-info/SOURCES.txt +5832 -0
  38. django_auth_recovery_codes-1.0.3/pyproject.toml +53 -0
  39. django_auth_recovery_codes-1.0.3/setup.py +55 -0
  40. django_auth_recovery_codes-1.0.1/PKG-INFO +0 -2798
  41. django_auth_recovery_codes-1.0.1/README.md +0 -2761
  42. django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/base_models.py +0 -334
  43. django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/models.py +0 -2312
  44. django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/static/django_recovery_codes/js/batchCardsHistory/batchCardUtils.js +0 -22
  45. django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/static/django_recovery_codes/js/batchCardsHistory/updateBatchHistorySection.js +0 -304
  46. django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/static/django_recovery_codes/js/dashboard.js +0 -347
  47. django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleCodeGeneration.js +0 -703
  48. django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/utils/attempt_guard.py +0 -197
  49. django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/utils/errors/enforcer.py +0 -82
  50. django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/views.py +0 -737
  51. django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/views_code_handler_helper.py +0 -554
  52. django_auth_recovery_codes-1.0.1/django_auth_recovery_codes.egg-info/PKG-INFO +0 -2798
  53. django_auth_recovery_codes-1.0.1/django_auth_recovery_codes.egg-info/SOURCES.txt +0 -5809
  54. django_auth_recovery_codes-1.0.1/pyproject.toml +0 -53
  55. django_auth_recovery_codes-1.0.1/setup.py +0 -55
  56. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/LICENSE +0 -0
  57. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/__init__.py +0 -0
  58. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/admin.py +0 -0
  59. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/app_settings.py +0 -0
  60. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/apps.py +0 -0
  61. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/checks.py +0 -0
  62. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/conf.py +0 -0
  63. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/context_processors.py +0 -0
  64. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/enums.py +0 -0
  65. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/forms/__init__.py +0 -0
  66. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/forms/login_form.py +0 -0
  67. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/forms/schedule_form.py +0 -0
  68. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/helpers.py +0 -0
  69. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/loggers/__init__.py +0 -0
  70. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/loggers/logger_config.py +0 -0
  71. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/loggers/loggers.py +0 -0
  72. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/loggers/logging_utils.py +0 -0
  73. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/management/commands/__init__.py +0 -0
  74. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/management/commands/flush_tasks.py +0 -0
  75. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/migrations/0001_initial.py +0 -0
  76. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/migrations/__init__.py +0 -0
  77. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/models_choices.py +0 -0
  78. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/signals.py +0 -0
  79. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/css/css.css +0 -0
  80. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/alerts.js +0 -0
  81. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/batchCardsHistory/batchCardElements.js +0 -0
  82. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/batchCardsHistory/markCardAsDeleted.js +0 -0
  83. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/codesSetupVerifcation/generateSetupElement.js +0 -0
  84. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/codesSetupVerifcation/handleTestSetup.js +0 -0
  85. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/fetch.js +0 -0
  86. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/form.js +0 -0
  87. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/generateBatchHistoryCard.js +0 -0
  88. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/generateButtons/generateButton.js +0 -0
  89. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/generateCodeActionButtons.js +0 -0
  90. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/generateTable.js +0 -0
  91. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/helpers/appMessages.js +0 -0
  92. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/helpers/formUtils.js +0 -0
  93. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleButtonAlertClicker.js +0 -0
  94. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleCodeDelete.js +0 -0
  95. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleDownload.js +0 -0
  96. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleEmail.js +0 -0
  97. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleInvalidation.js +0 -0
  98. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleTestCodeVerificationTest.js +0 -0
  99. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handlers.js +0 -0
  100. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/helpers/tableUtils.js +0 -0
  101. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/logger.js +0 -0
  102. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/login/login.js +0 -0
  103. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/messages/enqueueMessages.js +0 -0
  104. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/messages/message.js +0 -0
  105. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/security/csrf.js +0 -0
  106. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/sideMenu/toggleSideBar.js +0 -0
  107. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/specialChars.js +0 -0
  108. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/state/appStateManager.js +0 -0
  109. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/state/config.js +0 -0
  110. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/django_recovery_codes/js/utils.js +0 -0
  111. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/all.css +0 -0
  112. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/all.min.css +0 -0
  113. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/brands.css +0 -0
  114. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/brands.min.css +0 -0
  115. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/fontawesome.css +0 -0
  116. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/fontawesome.min.css +0 -0
  117. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/regular.css +0 -0
  118. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/regular.min.css +0 -0
  119. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/solid.css +0 -0
  120. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/solid.min.css +0 -0
  121. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/svg-with-js.css +0 -0
  122. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/svg-with-js.min.css +0 -0
  123. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/svg.css +0 -0
  124. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/svg.min.css +0 -0
  125. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/v4-font-face.css +0 -0
  126. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/v4-font-face.min.css +0 -0
  127. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/v4-shims.css +0 -0
  128. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/v4-shims.min.css +0 -0
  129. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/v5-font-face.css +0 -0
  130. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/css/v5-font-face.min.css +0 -0
  131. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/all.js +0 -0
  132. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/all.min.js +0 -0
  133. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/brands.js +0 -0
  134. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/brands.min.js +0 -0
  135. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/conflict-detection.js +0 -0
  136. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/conflict-detection.min.js +0 -0
  137. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/fontawesome.js +0 -0
  138. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/fontawesome.min.js +0 -0
  139. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/regular.js +0 -0
  140. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/regular.min.js +0 -0
  141. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/solid.js +0 -0
  142. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/solid.min.js +0 -0
  143. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/v4-shims.js +0 -0
  144. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/js/v4-shims.min.js +0 -0
  145. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/metadata/categories.yml +0 -0
  146. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/metadata/icon-families.json +0 -0
  147. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/metadata/icon-families.yml +0 -0
  148. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/metadata/icons.json +0 -0
  149. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/metadata/icons.yml +0 -0
  150. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/metadata/shims.json +0 -0
  151. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/metadata/shims.yml +0 -0
  152. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/metadata/sponsors.yml +0 -0
  153. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_animated.scss +0 -0
  154. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_bordered.scss +0 -0
  155. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_core.scss +0 -0
  156. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_fa.scss +0 -0
  157. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_functions.scss +0 -0
  158. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_icons.scss +0 -0
  159. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_list.scss +0 -0
  160. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_mixins.scss +0 -0
  161. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_pulled.scss +0 -0
  162. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_rotated-flipped.scss +0 -0
  163. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_shims.scss +0 -0
  164. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_sizing.scss +0 -0
  165. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_stacked.scss +0 -0
  166. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_variables.scss +0 -0
  167. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/_widths.scss +0 -0
  168. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/brands.scss +0 -0
  169. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/fontawesome.scss +0 -0
  170. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/regular.scss +0 -0
  171. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/solid.scss +0 -0
  172. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/scss/v4-shims.scss +0 -0
  173. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/sprites/brands.svg +0 -0
  174. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/sprites/regular.svg +0 -0
  175. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/sprites/solid.svg +0 -0
  176. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/sprites-full/brands.svg +0 -0
  177. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/sprites-full/regular.svg +0 -0
  178. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/sprites-full/solid.svg +0 -0
  179. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/11ty.svg +0 -0
  180. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/42-group.svg +0 -0
  181. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/500px.svg +0 -0
  182. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/accessible-icon.svg +0 -0
  183. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/accusoft.svg +0 -0
  184. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/adn.svg +0 -0
  185. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/adversal.svg +0 -0
  186. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/affiliatetheme.svg +0 -0
  187. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/airbnb.svg +0 -0
  188. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/algolia.svg +0 -0
  189. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/alipay.svg +0 -0
  190. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/amazon-pay.svg +0 -0
  191. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/amazon.svg +0 -0
  192. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/amilia.svg +0 -0
  193. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/android.svg +0 -0
  194. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/angellist.svg +0 -0
  195. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/angrycreative.svg +0 -0
  196. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/angular.svg +0 -0
  197. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/app-store-ios.svg +0 -0
  198. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/app-store.svg +0 -0
  199. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/apper.svg +0 -0
  200. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/apple-pay.svg +0 -0
  201. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/apple.svg +0 -0
  202. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/artstation.svg +0 -0
  203. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/asymmetrik.svg +0 -0
  204. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/atlassian.svg +0 -0
  205. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/audible.svg +0 -0
  206. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/autoprefixer.svg +0 -0
  207. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/avianex.svg +0 -0
  208. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/aviato.svg +0 -0
  209. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/aws.svg +0 -0
  210. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bandcamp.svg +0 -0
  211. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/battle-net.svg +0 -0
  212. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/behance-square.svg +0 -0
  213. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/behance.svg +0 -0
  214. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bilibili.svg +0 -0
  215. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bimobject.svg +0 -0
  216. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bitbucket.svg +0 -0
  217. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bitcoin.svg +0 -0
  218. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bity.svg +0 -0
  219. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/black-tie.svg +0 -0
  220. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/blackberry.svg +0 -0
  221. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/blogger-b.svg +0 -0
  222. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/blogger.svg +0 -0
  223. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bluesky.svg +0 -0
  224. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bluetooth-b.svg +0 -0
  225. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bluetooth.svg +0 -0
  226. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bootstrap.svg +0 -0
  227. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bots.svg +0 -0
  228. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/brave-reverse.svg +0 -0
  229. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/brave.svg +0 -0
  230. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/btc.svg +0 -0
  231. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/buffer.svg +0 -0
  232. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/buromobelexperte.svg +0 -0
  233. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/buy-n-large.svg +0 -0
  234. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/buysellads.svg +0 -0
  235. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/canadian-maple-leaf.svg +0 -0
  236. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cash-app.svg +0 -0
  237. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-amazon-pay.svg +0 -0
  238. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-amex.svg +0 -0
  239. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-apple-pay.svg +0 -0
  240. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-diners-club.svg +0 -0
  241. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-discover.svg +0 -0
  242. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-jcb.svg +0 -0
  243. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-mastercard.svg +0 -0
  244. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-paypal.svg +0 -0
  245. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-stripe.svg +0 -0
  246. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-visa.svg +0 -0
  247. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/centercode.svg +0 -0
  248. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/centos.svg +0 -0
  249. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/chrome.svg +0 -0
  250. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/chromecast.svg +0 -0
  251. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cloudflare.svg +0 -0
  252. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cloudscale.svg +0 -0
  253. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cloudsmith.svg +0 -0
  254. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cloudversify.svg +0 -0
  255. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cmplid.svg +0 -0
  256. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/codepen.svg +0 -0
  257. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/codiepie.svg +0 -0
  258. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/confluence.svg +0 -0
  259. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/connectdevelop.svg +0 -0
  260. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/contao.svg +0 -0
  261. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cotton-bureau.svg +0 -0
  262. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cpanel.svg +0 -0
  263. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-by.svg +0 -0
  264. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-nc-eu.svg +0 -0
  265. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-nc-jp.svg +0 -0
  266. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-nc.svg +0 -0
  267. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-nd.svg +0 -0
  268. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-pd-alt.svg +0 -0
  269. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-pd.svg +0 -0
  270. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-remix.svg +0 -0
  271. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-sa.svg +0 -0
  272. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-sampling-plus.svg +0 -0
  273. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-sampling.svg +0 -0
  274. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-share.svg +0 -0
  275. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-zero.svg +0 -0
  276. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons.svg +0 -0
  277. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/critical-role.svg +0 -0
  278. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/css.svg +0 -0
  279. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/css3-alt.svg +0 -0
  280. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/css3.svg +0 -0
  281. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cuttlefish.svg +0 -0
  282. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/d-and-d-beyond.svg +0 -0
  283. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/d-and-d.svg +0 -0
  284. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dailymotion.svg +0 -0
  285. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dart-lang.svg +0 -0
  286. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dashcube.svg +0 -0
  287. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/debian.svg +0 -0
  288. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/deezer.svg +0 -0
  289. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/delicious.svg +0 -0
  290. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/deploydog.svg +0 -0
  291. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/deskpro.svg +0 -0
  292. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dev.svg +0 -0
  293. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/deviantart.svg +0 -0
  294. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dhl.svg +0 -0
  295. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/diaspora.svg +0 -0
  296. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/digg.svg +0 -0
  297. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/digital-ocean.svg +0 -0
  298. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/discord.svg +0 -0
  299. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/discourse.svg +0 -0
  300. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/disqus.svg +0 -0
  301. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dochub.svg +0 -0
  302. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/docker.svg +0 -0
  303. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/draft2digital.svg +0 -0
  304. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dribbble-square.svg +0 -0
  305. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dribbble.svg +0 -0
  306. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dropbox.svg +0 -0
  307. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/drupal.svg +0 -0
  308. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/duolingo.svg +0 -0
  309. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dyalog.svg +0 -0
  310. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/earlybirds.svg +0 -0
  311. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ebay.svg +0 -0
  312. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/edge-legacy.svg +0 -0
  313. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/edge.svg +0 -0
  314. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/elementor.svg +0 -0
  315. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/eleventy.svg +0 -0
  316. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ello.svg +0 -0
  317. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ember.svg +0 -0
  318. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/empire.svg +0 -0
  319. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/envira.svg +0 -0
  320. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/erlang.svg +0 -0
  321. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ethereum.svg +0 -0
  322. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/etsy.svg +0 -0
  323. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/evernote.svg +0 -0
  324. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/expeditedssl.svg +0 -0
  325. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/facebook-f.svg +0 -0
  326. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/facebook-messenger.svg +0 -0
  327. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/facebook-square.svg +0 -0
  328. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/facebook.svg +0 -0
  329. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fantasy-flight-games.svg +0 -0
  330. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fedex.svg +0 -0
  331. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fedora.svg +0 -0
  332. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/figma.svg +0 -0
  333. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/files-pinwheel.svg +0 -0
  334. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/firefox-browser.svg +0 -0
  335. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/firefox.svg +0 -0
  336. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/first-order-alt.svg +0 -0
  337. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/first-order.svg +0 -0
  338. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/firstdraft.svg +0 -0
  339. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/flickr.svg +0 -0
  340. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/flipboard.svg +0 -0
  341. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/flutter.svg +0 -0
  342. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fly.svg +0 -0
  343. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/font-awesome-alt.svg +0 -0
  344. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/font-awesome-flag.svg +0 -0
  345. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/font-awesome-logo-full.svg +0 -0
  346. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/font-awesome.svg +0 -0
  347. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fonticons-fi.svg +0 -0
  348. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fonticons.svg +0 -0
  349. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fort-awesome-alt.svg +0 -0
  350. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fort-awesome.svg +0 -0
  351. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/forumbee.svg +0 -0
  352. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/foursquare.svg +0 -0
  353. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/free-code-camp.svg +0 -0
  354. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/freebsd.svg +0 -0
  355. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fulcrum.svg +0 -0
  356. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/galactic-republic.svg +0 -0
  357. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/galactic-senate.svg +0 -0
  358. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/get-pocket.svg +0 -0
  359. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gg-circle.svg +0 -0
  360. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gg.svg +0 -0
  361. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/git-alt.svg +0 -0
  362. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/git-square.svg +0 -0
  363. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/git.svg +0 -0
  364. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/github-alt.svg +0 -0
  365. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/github-square.svg +0 -0
  366. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/github.svg +0 -0
  367. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gitkraken.svg +0 -0
  368. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gitlab-square.svg +0 -0
  369. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gitlab.svg +0 -0
  370. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gitter.svg +0 -0
  371. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/glide-g.svg +0 -0
  372. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/glide.svg +0 -0
  373. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gofore.svg +0 -0
  374. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/golang.svg +0 -0
  375. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/goodreads-g.svg +0 -0
  376. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/goodreads.svg +0 -0
  377. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-drive.svg +0 -0
  378. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-pay.svg +0 -0
  379. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-play.svg +0 -0
  380. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-plus-g.svg +0 -0
  381. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-plus-square.svg +0 -0
  382. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-plus.svg +0 -0
  383. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-scholar.svg +0 -0
  384. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-wallet.svg +0 -0
  385. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google.svg +0 -0
  386. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gratipay.svg +0 -0
  387. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/grav.svg +0 -0
  388. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gripfire.svg +0 -0
  389. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/grunt.svg +0 -0
  390. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/guilded.svg +0 -0
  391. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gulp.svg +0 -0
  392. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hacker-news-square.svg +0 -0
  393. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hacker-news.svg +0 -0
  394. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hackerrank.svg +0 -0
  395. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hashnode.svg +0 -0
  396. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hips.svg +0 -0
  397. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hire-a-helper.svg +0 -0
  398. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hive.svg +0 -0
  399. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hooli.svg +0 -0
  400. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hornbill.svg +0 -0
  401. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hotjar.svg +0 -0
  402. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/houzz.svg +0 -0
  403. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/html5.svg +0 -0
  404. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hubspot.svg +0 -0
  405. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ideal.svg +0 -0
  406. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/imdb.svg +0 -0
  407. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/innosoft.svg +0 -0
  408. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/instagram-square.svg +0 -0
  409. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/instagram.svg +0 -0
  410. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/instalod.svg +0 -0
  411. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/intercom.svg +0 -0
  412. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/internet-explorer.svg +0 -0
  413. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/invision.svg +0 -0
  414. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ioxhost.svg +0 -0
  415. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/itch-io.svg +0 -0
  416. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/itunes-note.svg +0 -0
  417. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/itunes.svg +0 -0
  418. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/java.svg +0 -0
  419. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/jedi-order.svg +0 -0
  420. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/jenkins.svg +0 -0
  421. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/jira.svg +0 -0
  422. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/joget.svg +0 -0
  423. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/joomla.svg +0 -0
  424. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/js-square.svg +0 -0
  425. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/js.svg +0 -0
  426. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/jsfiddle.svg +0 -0
  427. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/jxl.svg +0 -0
  428. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/kaggle.svg +0 -0
  429. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/kakao-talk.svg +0 -0
  430. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/keybase.svg +0 -0
  431. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/keycdn.svg +0 -0
  432. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/kickstarter-k.svg +0 -0
  433. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/kickstarter.svg +0 -0
  434. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/korvue.svg +0 -0
  435. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/laravel.svg +0 -0
  436. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/lastfm-square.svg +0 -0
  437. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/lastfm.svg +0 -0
  438. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/leanpub.svg +0 -0
  439. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/less.svg +0 -0
  440. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/letterboxd.svg +0 -0
  441. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/line.svg +0 -0
  442. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/linkedin-in.svg +0 -0
  443. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/linkedin.svg +0 -0
  444. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/linktree.svg +0 -0
  445. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/linode.svg +0 -0
  446. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/linux.svg +0 -0
  447. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/lumon-drop.svg +0 -0
  448. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/lumon.svg +0 -0
  449. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/lyft.svg +0 -0
  450. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/magento.svg +0 -0
  451. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mailchimp.svg +0 -0
  452. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mandalorian.svg +0 -0
  453. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/markdown.svg +0 -0
  454. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mastodon.svg +0 -0
  455. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/maxcdn.svg +0 -0
  456. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mdb.svg +0 -0
  457. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/medapps.svg +0 -0
  458. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/medium-m.svg +0 -0
  459. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/medium.svg +0 -0
  460. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/medrt.svg +0 -0
  461. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/meetup.svg +0 -0
  462. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/megaport.svg +0 -0
  463. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mendeley.svg +0 -0
  464. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/meta.svg +0 -0
  465. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/microblog.svg +0 -0
  466. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/microsoft.svg +0 -0
  467. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mintbit.svg +0 -0
  468. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mix.svg +0 -0
  469. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mixcloud.svg +0 -0
  470. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mixer.svg +0 -0
  471. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mizuni.svg +0 -0
  472. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/modx.svg +0 -0
  473. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/monero.svg +0 -0
  474. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/napster.svg +0 -0
  475. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/neos.svg +0 -0
  476. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/nfc-directional.svg +0 -0
  477. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/nfc-symbol.svg +0 -0
  478. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/nimblr.svg +0 -0
  479. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/node-js.svg +0 -0
  480. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/node.svg +0 -0
  481. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/notion.svg +0 -0
  482. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/npm.svg +0 -0
  483. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ns8.svg +0 -0
  484. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/nutritionix.svg +0 -0
  485. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/octopus-deploy.svg +0 -0
  486. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/odnoklassniki-square.svg +0 -0
  487. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/odnoklassniki.svg +0 -0
  488. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/odysee.svg +0 -0
  489. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/old-republic.svg +0 -0
  490. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/openai.svg +0 -0
  491. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/opencart.svg +0 -0
  492. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/openid.svg +0 -0
  493. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/opensuse.svg +0 -0
  494. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/opera.svg +0 -0
  495. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/optin-monster.svg +0 -0
  496. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/orcid.svg +0 -0
  497. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/osi.svg +0 -0
  498. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/padlet.svg +0 -0
  499. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/page4.svg +0 -0
  500. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pagelines.svg +0 -0
  501. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/palfed.svg +0 -0
  502. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pandora.svg +0 -0
  503. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/patreon.svg +0 -0
  504. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/paypal.svg +0 -0
  505. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/perbyte.svg +0 -0
  506. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/periscope.svg +0 -0
  507. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/phabricator.svg +0 -0
  508. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/phoenix-framework.svg +0 -0
  509. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/phoenix-squadron.svg +0 -0
  510. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/php.svg +0 -0
  511. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pied-piper-alt.svg +0 -0
  512. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pied-piper-hat.svg +0 -0
  513. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pied-piper-pp.svg +0 -0
  514. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pied-piper-square.svg +0 -0
  515. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pied-piper.svg +0 -0
  516. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pinterest-p.svg +0 -0
  517. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pinterest-square.svg +0 -0
  518. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pinterest.svg +0 -0
  519. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pix.svg +0 -0
  520. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pixelfed.svg +0 -0
  521. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pixiv.svg +0 -0
  522. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/playstation.svg +0 -0
  523. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/product-hunt.svg +0 -0
  524. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pushed.svg +0 -0
  525. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/python.svg +0 -0
  526. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/qq.svg +0 -0
  527. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/quinscape.svg +0 -0
  528. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/quora.svg +0 -0
  529. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/r-project.svg +0 -0
  530. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/raspberry-pi.svg +0 -0
  531. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ravelry.svg +0 -0
  532. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/react.svg +0 -0
  533. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/reacteurope.svg +0 -0
  534. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/readme.svg +0 -0
  535. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/rebel.svg +0 -0
  536. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/red-river.svg +0 -0
  537. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/reddit-alien.svg +0 -0
  538. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/reddit-square.svg +0 -0
  539. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/reddit.svg +0 -0
  540. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/redhat.svg +0 -0
  541. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/rendact.svg +0 -0
  542. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/renren.svg +0 -0
  543. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/replyd.svg +0 -0
  544. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/researchgate.svg +0 -0
  545. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/resolving.svg +0 -0
  546. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/rev.svg +0 -0
  547. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/rocketchat.svg +0 -0
  548. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/rockrms.svg +0 -0
  549. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/rust.svg +0 -0
  550. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/safari.svg +0 -0
  551. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/salesforce.svg +0 -0
  552. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sass.svg +0 -0
  553. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/schlix.svg +0 -0
  554. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/screenpal.svg +0 -0
  555. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/scribd.svg +0 -0
  556. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/searchengin.svg +0 -0
  557. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sellcast.svg +0 -0
  558. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sellsy.svg +0 -0
  559. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/servicestack.svg +0 -0
  560. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/shirtsinbulk.svg +0 -0
  561. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/shoelace.svg +0 -0
  562. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/shopify.svg +0 -0
  563. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/shopware.svg +0 -0
  564. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/signal-messenger.svg +0 -0
  565. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/simplybuilt.svg +0 -0
  566. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sistrix.svg +0 -0
  567. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sith.svg +0 -0
  568. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sitrox.svg +0 -0
  569. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sketch.svg +0 -0
  570. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/skyatlas.svg +0 -0
  571. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/skype.svg +0 -0
  572. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/slack-hash.svg +0 -0
  573. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/slack.svg +0 -0
  574. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/slideshare.svg +0 -0
  575. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/snapchat-ghost.svg +0 -0
  576. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/snapchat-square.svg +0 -0
  577. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/snapchat.svg +0 -0
  578. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/soundcloud.svg +0 -0
  579. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sourcetree.svg +0 -0
  580. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/space-awesome.svg +0 -0
  581. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/speakap.svg +0 -0
  582. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/speaker-deck.svg +0 -0
  583. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/spotify.svg +0 -0
  584. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-behance.svg +0 -0
  585. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-bluesky.svg +0 -0
  586. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-dribbble.svg +0 -0
  587. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-facebook.svg +0 -0
  588. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-figma.svg +0 -0
  589. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-font-awesome-stroke.svg +0 -0
  590. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-font-awesome.svg +0 -0
  591. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-git.svg +0 -0
  592. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-github.svg +0 -0
  593. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-gitlab.svg +0 -0
  594. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-google-plus.svg +0 -0
  595. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-hacker-news.svg +0 -0
  596. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-instagram.svg +0 -0
  597. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-js.svg +0 -0
  598. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-kickstarter.svg +0 -0
  599. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-lastfm.svg +0 -0
  600. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-letterboxd.svg +0 -0
  601. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-linkedin.svg +0 -0
  602. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-odnoklassniki.svg +0 -0
  603. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-pied-piper.svg +0 -0
  604. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-pinterest.svg +0 -0
  605. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-reddit.svg +0 -0
  606. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-snapchat.svg +0 -0
  607. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-steam.svg +0 -0
  608. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-threads.svg +0 -0
  609. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-tumblr.svg +0 -0
  610. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-twitter.svg +0 -0
  611. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-upwork.svg +0 -0
  612. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-viadeo.svg +0 -0
  613. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-vimeo.svg +0 -0
  614. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-web-awesome-stroke.svg +0 -0
  615. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-web-awesome.svg +0 -0
  616. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-whatsapp.svg +0 -0
  617. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-x-twitter.svg +0 -0
  618. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-xing.svg +0 -0
  619. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-youtube.svg +0 -0
  620. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/squarespace.svg +0 -0
  621. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stack-exchange.svg +0 -0
  622. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stack-overflow.svg +0 -0
  623. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stackpath.svg +0 -0
  624. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/staylinked.svg +0 -0
  625. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/steam-square.svg +0 -0
  626. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/steam-symbol.svg +0 -0
  627. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/steam.svg +0 -0
  628. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sticker-mule.svg +0 -0
  629. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/strava.svg +0 -0
  630. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stripe-s.svg +0 -0
  631. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stripe.svg +0 -0
  632. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stubber.svg +0 -0
  633. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/studiovinari.svg +0 -0
  634. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stumbleupon-circle.svg +0 -0
  635. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stumbleupon.svg +0 -0
  636. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/superpowers.svg +0 -0
  637. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/supple.svg +0 -0
  638. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/suse.svg +0 -0
  639. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/swift.svg +0 -0
  640. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/symfony.svg +0 -0
  641. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/teamspeak.svg +0 -0
  642. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/telegram-plane.svg +0 -0
  643. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/telegram.svg +0 -0
  644. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/tencent-weibo.svg +0 -0
  645. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/tex.svg +0 -0
  646. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/the-red-yeti.svg +0 -0
  647. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/themeco.svg +0 -0
  648. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/themeisle.svg +0 -0
  649. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/think-peaks.svg +0 -0
  650. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/threads.svg +0 -0
  651. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/tidal.svg +0 -0
  652. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/tiktok.svg +0 -0
  653. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/trade-federation.svg +0 -0
  654. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/trello.svg +0 -0
  655. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/tumblr-square.svg +0 -0
  656. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/tumblr.svg +0 -0
  657. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/twitch.svg +0 -0
  658. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/twitter-square.svg +0 -0
  659. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/twitter.svg +0 -0
  660. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/typo3.svg +0 -0
  661. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/uber.svg +0 -0
  662. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ubuntu.svg +0 -0
  663. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/uikit.svg +0 -0
  664. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/umbraco.svg +0 -0
  665. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/uncharted.svg +0 -0
  666. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/uniregistry.svg +0 -0
  667. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/unity.svg +0 -0
  668. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/unsplash.svg +0 -0
  669. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/untappd.svg +0 -0
  670. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ups.svg +0 -0
  671. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/upwork.svg +0 -0
  672. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/usb.svg +0 -0
  673. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/usps.svg +0 -0
  674. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ussunnah.svg +0 -0
  675. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vaadin.svg +0 -0
  676. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/viacoin.svg +0 -0
  677. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/viadeo-square.svg +0 -0
  678. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/viadeo.svg +0 -0
  679. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/viber.svg +0 -0
  680. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vimeo-square.svg +0 -0
  681. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vimeo-v.svg +0 -0
  682. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vimeo.svg +0 -0
  683. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vine.svg +0 -0
  684. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vk.svg +0 -0
  685. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vnv.svg +0 -0
  686. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vsco.svg +0 -0
  687. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vuejs.svg +0 -0
  688. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/w3c.svg +0 -0
  689. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/watchman-monitoring.svg +0 -0
  690. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/waze.svg +0 -0
  691. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/web-awesome.svg +0 -0
  692. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/webflow.svg +0 -0
  693. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/weebly.svg +0 -0
  694. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/weibo.svg +0 -0
  695. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/weixin.svg +0 -0
  696. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/whatsapp-square.svg +0 -0
  697. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/whatsapp.svg +0 -0
  698. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/whmcs.svg +0 -0
  699. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wikipedia-w.svg +0 -0
  700. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/windows.svg +0 -0
  701. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wirsindhandwerk.svg +0 -0
  702. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wix.svg +0 -0
  703. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wizards-of-the-coast.svg +0 -0
  704. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wodu.svg +0 -0
  705. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wolf-pack-battalion.svg +0 -0
  706. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wordpress-simple.svg +0 -0
  707. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wordpress.svg +0 -0
  708. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wpbeginner.svg +0 -0
  709. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wpexplorer.svg +0 -0
  710. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wpforms.svg +0 -0
  711. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wpressr.svg +0 -0
  712. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wsh.svg +0 -0
  713. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/x-twitter.svg +0 -0
  714. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/xbox.svg +0 -0
  715. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/xing-square.svg +0 -0
  716. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/xing.svg +0 -0
  717. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/y-combinator.svg +0 -0
  718. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yahoo.svg +0 -0
  719. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yammer.svg +0 -0
  720. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yandex-international.svg +0 -0
  721. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yandex.svg +0 -0
  722. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yarn.svg +0 -0
  723. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yelp.svg +0 -0
  724. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yoast.svg +0 -0
  725. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/youtube-square.svg +0 -0
  726. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/youtube.svg +0 -0
  727. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/zhihu.svg +0 -0
  728. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/address-book.svg +0 -0
  729. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/address-card.svg +0 -0
  730. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/alarm-clock.svg +0 -0
  731. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/angry.svg +0 -0
  732. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/arrow-alt-circle-down.svg +0 -0
  733. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/arrow-alt-circle-left.svg +0 -0
  734. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/arrow-alt-circle-right.svg +0 -0
  735. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/arrow-alt-circle-up.svg +0 -0
  736. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/bar-chart.svg +0 -0
  737. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/bell-slash.svg +0 -0
  738. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/bell.svg +0 -0
  739. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/bookmark.svg +0 -0
  740. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/building.svg +0 -0
  741. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-alt.svg +0 -0
  742. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-check.svg +0 -0
  743. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-days.svg +0 -0
  744. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-minus.svg +0 -0
  745. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-plus.svg +0 -0
  746. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-times.svg +0 -0
  747. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-xmark.svg +0 -0
  748. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar.svg +0 -0
  749. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/camera-alt.svg +0 -0
  750. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/camera.svg +0 -0
  751. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/caret-square-down.svg +0 -0
  752. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/caret-square-left.svg +0 -0
  753. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/caret-square-right.svg +0 -0
  754. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/caret-square-up.svg +0 -0
  755. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chart-bar.svg +0 -0
  756. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/check-circle.svg +0 -0
  757. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/check-square.svg +0 -0
  758. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chess-bishop.svg +0 -0
  759. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chess-king.svg +0 -0
  760. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chess-knight.svg +0 -0
  761. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chess-pawn.svg +0 -0
  762. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chess-queen.svg +0 -0
  763. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chess-rook.svg +0 -0
  764. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-check.svg +0 -0
  765. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-dot.svg +0 -0
  766. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-down.svg +0 -0
  767. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-left.svg +0 -0
  768. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-pause.svg +0 -0
  769. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-play.svg +0 -0
  770. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-question.svg +0 -0
  771. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-right.svg +0 -0
  772. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-stop.svg +0 -0
  773. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-up.svg +0 -0
  774. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-user.svg +0 -0
  775. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-xmark.svg +0 -0
  776. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle.svg +0 -0
  777. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/clipboard.svg +0 -0
  778. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/clock-four.svg +0 -0
  779. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/clock.svg +0 -0
  780. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/clone.svg +0 -0
  781. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/closed-captioning.svg +0 -0
  782. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/cloud.svg +0 -0
  783. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/comment-alt.svg +0 -0
  784. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/comment-dots.svg +0 -0
  785. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/comment.svg +0 -0
  786. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/commenting.svg +0 -0
  787. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/comments.svg +0 -0
  788. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/compass.svg +0 -0
  789. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/contact-book.svg +0 -0
  790. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/contact-card.svg +0 -0
  791. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/copy.svg +0 -0
  792. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/copyright.svg +0 -0
  793. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/credit-card-alt.svg +0 -0
  794. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/credit-card.svg +0 -0
  795. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/dizzy.svg +0 -0
  796. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/dot-circle.svg +0 -0
  797. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/drivers-license.svg +0 -0
  798. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/edit.svg +0 -0
  799. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/envelope-open.svg +0 -0
  800. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/envelope.svg +0 -0
  801. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/eye-slash.svg +0 -0
  802. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/eye.svg +0 -0
  803. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-angry.svg +0 -0
  804. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-dizzy.svg +0 -0
  805. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-flushed.svg +0 -0
  806. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-frown-open.svg +0 -0
  807. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-frown.svg +0 -0
  808. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grimace.svg +0 -0
  809. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-beam-sweat.svg +0 -0
  810. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-beam.svg +0 -0
  811. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-hearts.svg +0 -0
  812. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-squint-tears.svg +0 -0
  813. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-squint.svg +0 -0
  814. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-stars.svg +0 -0
  815. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-tears.svg +0 -0
  816. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-tongue-squint.svg +0 -0
  817. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-tongue-wink.svg +0 -0
  818. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-tongue.svg +0 -0
  819. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-wide.svg +0 -0
  820. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-wink.svg +0 -0
  821. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin.svg +0 -0
  822. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-kiss-beam.svg +0 -0
  823. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-kiss-wink-heart.svg +0 -0
  824. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-kiss.svg +0 -0
  825. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-laugh-beam.svg +0 -0
  826. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-laugh-squint.svg +0 -0
  827. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-laugh-wink.svg +0 -0
  828. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-laugh.svg +0 -0
  829. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-meh-blank.svg +0 -0
  830. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-meh.svg +0 -0
  831. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-rolling-eyes.svg +0 -0
  832. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-sad-cry.svg +0 -0
  833. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-sad-tear.svg +0 -0
  834. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-smile-beam.svg +0 -0
  835. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-smile-wink.svg +0 -0
  836. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-smile.svg +0 -0
  837. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-surprise.svg +0 -0
  838. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-tired.svg +0 -0
  839. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-alt.svg +0 -0
  840. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-archive.svg +0 -0
  841. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-audio.svg +0 -0
  842. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-clipboard.svg +0 -0
  843. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-code.svg +0 -0
  844. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-excel.svg +0 -0
  845. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-image.svg +0 -0
  846. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-lines.svg +0 -0
  847. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-pdf.svg +0 -0
  848. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-powerpoint.svg +0 -0
  849. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-text.svg +0 -0
  850. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-video.svg +0 -0
  851. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-word.svg +0 -0
  852. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-zipper.svg +0 -0
  853. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file.svg +0 -0
  854. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/flag.svg +0 -0
  855. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/floppy-disk.svg +0 -0
  856. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/flushed.svg +0 -0
  857. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/folder-blank.svg +0 -0
  858. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/folder-closed.svg +0 -0
  859. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/folder-open.svg +0 -0
  860. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/folder.svg +0 -0
  861. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/font-awesome-flag.svg +0 -0
  862. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/font-awesome-logo-full.svg +0 -0
  863. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/font-awesome.svg +0 -0
  864. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/frown-open.svg +0 -0
  865. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/frown.svg +0 -0
  866. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/futbol-ball.svg +0 -0
  867. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/futbol.svg +0 -0
  868. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/gem.svg +0 -0
  869. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grimace.svg +0 -0
  870. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-alt.svg +0 -0
  871. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-beam-sweat.svg +0 -0
  872. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-beam.svg +0 -0
  873. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-hearts.svg +0 -0
  874. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-squint-tears.svg +0 -0
  875. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-squint.svg +0 -0
  876. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-stars.svg +0 -0
  877. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-tears.svg +0 -0
  878. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-tongue-squint.svg +0 -0
  879. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-tongue-wink.svg +0 -0
  880. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-tongue.svg +0 -0
  881. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-wink.svg +0 -0
  882. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin.svg +0 -0
  883. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-back-fist.svg +0 -0
  884. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-lizard.svg +0 -0
  885. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-paper.svg +0 -0
  886. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-peace.svg +0 -0
  887. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-point-down.svg +0 -0
  888. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-point-left.svg +0 -0
  889. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-point-right.svg +0 -0
  890. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-point-up.svg +0 -0
  891. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-pointer.svg +0 -0
  892. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-rock.svg +0 -0
  893. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-scissors.svg +0 -0
  894. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-spock.svg +0 -0
  895. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand.svg +0 -0
  896. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/handshake-alt.svg +0 -0
  897. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/handshake-simple.svg +0 -0
  898. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/handshake.svg +0 -0
  899. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hard-drive.svg +0 -0
  900. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hdd.svg +0 -0
  901. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/headphones-alt.svg +0 -0
  902. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/headphones-simple.svg +0 -0
  903. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/headphones.svg +0 -0
  904. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/heart.svg +0 -0
  905. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/home-alt.svg +0 -0
  906. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/home-lg-alt.svg +0 -0
  907. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/home.svg +0 -0
  908. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hospital-alt.svg +0 -0
  909. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hospital-wide.svg +0 -0
  910. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hospital.svg +0 -0
  911. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hourglass-2.svg +0 -0
  912. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hourglass-empty.svg +0 -0
  913. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hourglass-half.svg +0 -0
  914. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hourglass.svg +0 -0
  915. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/house.svg +0 -0
  916. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/id-badge.svg +0 -0
  917. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/id-card.svg +0 -0
  918. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/image.svg +0 -0
  919. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/images.svg +0 -0
  920. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/keyboard.svg +0 -0
  921. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/kiss-beam.svg +0 -0
  922. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/kiss-wink-heart.svg +0 -0
  923. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/kiss.svg +0 -0
  924. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/laugh-beam.svg +0 -0
  925. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/laugh-squint.svg +0 -0
  926. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/laugh-wink.svg +0 -0
  927. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/laugh.svg +0 -0
  928. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/lemon.svg +0 -0
  929. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/life-ring.svg +0 -0
  930. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/lightbulb.svg +0 -0
  931. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/list-alt.svg +0 -0
  932. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/map.svg +0 -0
  933. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/meh-blank.svg +0 -0
  934. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/meh-rolling-eyes.svg +0 -0
  935. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/meh.svg +0 -0
  936. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/message.svg +0 -0
  937. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/minus-square.svg +0 -0
  938. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/money-bill-1.svg +0 -0
  939. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/money-bill-alt.svg +0 -0
  940. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/moon.svg +0 -0
  941. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/newspaper.svg +0 -0
  942. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/note-sticky.svg +0 -0
  943. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/object-group.svg +0 -0
  944. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/object-ungroup.svg +0 -0
  945. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/paper-plane.svg +0 -0
  946. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/paste.svg +0 -0
  947. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/pause-circle.svg +0 -0
  948. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/pen-to-square.svg +0 -0
  949. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/play-circle.svg +0 -0
  950. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/plus-square.svg +0 -0
  951. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/question-circle.svg +0 -0
  952. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/rectangle-list.svg +0 -0
  953. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/rectangle-times.svg +0 -0
  954. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/rectangle-xmark.svg +0 -0
  955. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/registered.svg +0 -0
  956. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/sad-cry.svg +0 -0
  957. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/sad-tear.svg +0 -0
  958. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/save.svg +0 -0
  959. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/share-from-square.svg +0 -0
  960. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/share-square.svg +0 -0
  961. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/smile-beam.svg +0 -0
  962. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/smile-wink.svg +0 -0
  963. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/smile.svg +0 -0
  964. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/snowflake.svg +0 -0
  965. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/soccer-ball.svg +0 -0
  966. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-caret-down.svg +0 -0
  967. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-caret-left.svg +0 -0
  968. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-caret-right.svg +0 -0
  969. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-caret-up.svg +0 -0
  970. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-check.svg +0 -0
  971. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-full.svg +0 -0
  972. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-minus.svg +0 -0
  973. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-plus.svg +0 -0
  974. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square.svg +0 -0
  975. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/star-half-alt.svg +0 -0
  976. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/star-half-stroke.svg +0 -0
  977. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/star-half.svg +0 -0
  978. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/star.svg +0 -0
  979. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/sticky-note.svg +0 -0
  980. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/stop-circle.svg +0 -0
  981. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/sun.svg +0 -0
  982. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/surprise.svg +0 -0
  983. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/thumbs-down.svg +0 -0
  984. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/thumbs-up.svg +0 -0
  985. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/times-circle.svg +0 -0
  986. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/times-rectangle.svg +0 -0
  987. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/tired.svg +0 -0
  988. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/trash-alt.svg +0 -0
  989. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/trash-can.svg +0 -0
  990. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/truck.svg +0 -0
  991. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/user-alt.svg +0 -0
  992. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/user-circle.svg +0 -0
  993. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/user-large.svg +0 -0
  994. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/user.svg +0 -0
  995. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/vcard.svg +0 -0
  996. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/window-close.svg +0 -0
  997. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/window-maximize.svg +0 -0
  998. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/window-minimize.svg +0 -0
  999. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/window-restore.svg +0 -0
  1000. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/xmark-circle.svg +0 -0
  1001. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/0.svg +0 -0
  1002. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/1.svg +0 -0
  1003. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/2.svg +0 -0
  1004. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/3.svg +0 -0
  1005. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/4.svg +0 -0
  1006. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/5.svg +0 -0
  1007. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/6.svg +0 -0
  1008. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/7.svg +0 -0
  1009. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/8.svg +0 -0
  1010. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/9.svg +0 -0
  1011. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/a.svg +0 -0
  1012. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ad.svg +0 -0
  1013. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/add.svg +0 -0
  1014. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/address-book.svg +0 -0
  1015. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/address-card.svg +0 -0
  1016. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/adjust.svg +0 -0
  1017. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/air-freshener.svg +0 -0
  1018. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/alarm-clock.svg +0 -0
  1019. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/align-center.svg +0 -0
  1020. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/align-justify.svg +0 -0
  1021. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/align-left.svg +0 -0
  1022. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/align-right.svg +0 -0
  1023. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/allergies.svg +0 -0
  1024. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ambulance.svg +0 -0
  1025. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/american-sign-language-interpreting.svg +0 -0
  1026. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/anchor-circle-check.svg +0 -0
  1027. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/anchor-circle-exclamation.svg +0 -0
  1028. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/anchor-circle-xmark.svg +0 -0
  1029. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/anchor-lock.svg +0 -0
  1030. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/anchor.svg +0 -0
  1031. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-double-down.svg +0 -0
  1032. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-double-left.svg +0 -0
  1033. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-double-right.svg +0 -0
  1034. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-double-up.svg +0 -0
  1035. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-down.svg +0 -0
  1036. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-left.svg +0 -0
  1037. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-right.svg +0 -0
  1038. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-up.svg +0 -0
  1039. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angles-down.svg +0 -0
  1040. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angles-left.svg +0 -0
  1041. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angles-right.svg +0 -0
  1042. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angles-up.svg +0 -0
  1043. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angry.svg +0 -0
  1044. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ankh.svg +0 -0
  1045. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/apple-alt.svg +0 -0
  1046. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/apple-whole.svg +0 -0
  1047. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/archive.svg +0 -0
  1048. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/archway.svg +0 -0
  1049. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/area-chart.svg +0 -0
  1050. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-alt-circle-down.svg +0 -0
  1051. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-alt-circle-left.svg +0 -0
  1052. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-alt-circle-right.svg +0 -0
  1053. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-alt-circle-up.svg +0 -0
  1054. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-circle-down.svg +0 -0
  1055. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-circle-left.svg +0 -0
  1056. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-circle-right.svg +0 -0
  1057. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-circle-up.svg +0 -0
  1058. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-1-9.svg +0 -0
  1059. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-9-1.svg +0 -0
  1060. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-a-z.svg +0 -0
  1061. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-long.svg +0 -0
  1062. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-short-wide.svg +0 -0
  1063. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-up-across-line.svg +0 -0
  1064. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-up-lock.svg +0 -0
  1065. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-wide-short.svg +0 -0
  1066. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-z-a.svg +0 -0
  1067. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down.svg +0 -0
  1068. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-left-long.svg +0 -0
  1069. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-left-rotate.svg +0 -0
  1070. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-left.svg +0 -0
  1071. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-pointer.svg +0 -0
  1072. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-arrow-left.svg +0 -0
  1073. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-from-bracket.svg +0 -0
  1074. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-from-file.svg +0 -0
  1075. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-long.svg +0 -0
  1076. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-rotate.svg +0 -0
  1077. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-to-bracket.svg +0 -0
  1078. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-to-city.svg +0 -0
  1079. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-to-file.svg +0 -0
  1080. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right.svg +0 -0
  1081. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-rotate-back.svg +0 -0
  1082. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-rotate-backward.svg +0 -0
  1083. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-rotate-forward.svg +0 -0
  1084. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-rotate-left.svg +0 -0
  1085. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-rotate-right.svg +0 -0
  1086. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-trend-down.svg +0 -0
  1087. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-trend-up.svg +0 -0
  1088. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-turn-down.svg +0 -0
  1089. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-turn-up.svg +0 -0
  1090. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-1-9.svg +0 -0
  1091. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-9-1.svg +0 -0
  1092. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-a-z.svg +0 -0
  1093. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-from-bracket.svg +0 -0
  1094. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-from-ground-water.svg +0 -0
  1095. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-from-water-pump.svg +0 -0
  1096. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-long.svg +0 -0
  1097. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-right-dots.svg +0 -0
  1098. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-right-from-square.svg +0 -0
  1099. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-short-wide.svg +0 -0
  1100. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-wide-short.svg +0 -0
  1101. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-z-a.svg +0 -0
  1102. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up.svg +0 -0
  1103. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-alt-h.svg +0 -0
  1104. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-alt-v.svg +0 -0
  1105. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-alt.svg +0 -0
  1106. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-down-to-line.svg +0 -0
  1107. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-down-to-people.svg +0 -0
  1108. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-h.svg +0 -0
  1109. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-left-right-to-line.svg +0 -0
  1110. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-left-right.svg +0 -0
  1111. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-rotate.svg +0 -0
  1112. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-spin.svg +0 -0
  1113. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-split-up-and-left.svg +0 -0
  1114. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-to-circle.svg +0 -0
  1115. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-to-dot.svg +0 -0
  1116. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-to-eye.svg +0 -0
  1117. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-turn-right.svg +0 -0
  1118. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-turn-to-dots.svg +0 -0
  1119. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-up-down-left-right.svg +0 -0
  1120. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-up-down.svg +0 -0
  1121. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-up-to-line.svg +0 -0
  1122. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-v.svg +0 -0
  1123. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows.svg +0 -0
  1124. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/asl-interpreting.svg +0 -0
  1125. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/assistive-listening-systems.svg +0 -0
  1126. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/asterisk.svg +0 -0
  1127. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/at.svg +0 -0
  1128. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/atlas.svg +0 -0
  1129. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/atom.svg +0 -0
  1130. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/audio-description.svg +0 -0
  1131. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/austral-sign.svg +0 -0
  1132. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/automobile.svg +0 -0
  1133. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/award.svg +0 -0
  1134. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/b.svg +0 -0
  1135. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/baby-carriage.svg +0 -0
  1136. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/baby.svg +0 -0
  1137. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/backspace.svg +0 -0
  1138. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/backward-fast.svg +0 -0
  1139. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/backward-step.svg +0 -0
  1140. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/backward.svg +0 -0
  1141. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bacon.svg +0 -0
  1142. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bacteria.svg +0 -0
  1143. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bacterium.svg +0 -0
  1144. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bag-shopping.svg +0 -0
  1145. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bahai.svg +0 -0
  1146. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/baht-sign.svg +0 -0
  1147. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/balance-scale-left.svg +0 -0
  1148. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/balance-scale-right.svg +0 -0
  1149. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/balance-scale.svg +0 -0
  1150. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ban-smoking.svg +0 -0
  1151. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ban.svg +0 -0
  1152. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/band-aid.svg +0 -0
  1153. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bandage.svg +0 -0
  1154. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bangladeshi-taka-sign.svg +0 -0
  1155. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bank.svg +0 -0
  1156. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bar-chart.svg +0 -0
  1157. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/barcode.svg +0 -0
  1158. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bars-progress.svg +0 -0
  1159. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bars-staggered.svg +0 -0
  1160. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bars.svg +0 -0
  1161. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/baseball-ball.svg +0 -0
  1162. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/baseball-bat-ball.svg +0 -0
  1163. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/baseball.svg +0 -0
  1164. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/basket-shopping.svg +0 -0
  1165. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/basketball-ball.svg +0 -0
  1166. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/basketball.svg +0 -0
  1167. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bath.svg +0 -0
  1168. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bathtub.svg +0 -0
  1169. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-0.svg +0 -0
  1170. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-2.svg +0 -0
  1171. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-3.svg +0 -0
  1172. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-4.svg +0 -0
  1173. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-5.svg +0 -0
  1174. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-car.svg +0 -0
  1175. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-empty.svg +0 -0
  1176. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-full.svg +0 -0
  1177. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-half.svg +0 -0
  1178. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-quarter.svg +0 -0
  1179. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-three-quarters.svg +0 -0
  1180. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery.svg +0 -0
  1181. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bed-pulse.svg +0 -0
  1182. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bed.svg +0 -0
  1183. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/beer-mug-empty.svg +0 -0
  1184. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/beer.svg +0 -0
  1185. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bell-concierge.svg +0 -0
  1186. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bell-slash.svg +0 -0
  1187. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bell.svg +0 -0
  1188. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bezier-curve.svg +0 -0
  1189. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bible.svg +0 -0
  1190. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bicycle.svg +0 -0
  1191. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/biking.svg +0 -0
  1192. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/binoculars.svg +0 -0
  1193. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/biohazard.svg +0 -0
  1194. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/birthday-cake.svg +0 -0
  1195. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bitcoin-sign.svg +0 -0
  1196. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/blackboard.svg +0 -0
  1197. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/blender-phone.svg +0 -0
  1198. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/blender.svg +0 -0
  1199. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/blind.svg +0 -0
  1200. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/blog.svg +0 -0
  1201. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bold.svg +0 -0
  1202. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bolt-lightning.svg +0 -0
  1203. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bolt.svg +0 -0
  1204. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bomb.svg +0 -0
  1205. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bone.svg +0 -0
  1206. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bong.svg +0 -0
  1207. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-atlas.svg +0 -0
  1208. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-bible.svg +0 -0
  1209. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-bookmark.svg +0 -0
  1210. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-dead.svg +0 -0
  1211. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-journal-whills.svg +0 -0
  1212. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-medical.svg +0 -0
  1213. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-open-reader.svg +0 -0
  1214. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-open.svg +0 -0
  1215. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-quran.svg +0 -0
  1216. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-reader.svg +0 -0
  1217. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-skull.svg +0 -0
  1218. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-tanakh.svg +0 -0
  1219. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book.svg +0 -0
  1220. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bookmark.svg +0 -0
  1221. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/border-all.svg +0 -0
  1222. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/border-none.svg +0 -0
  1223. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/border-style.svg +0 -0
  1224. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/border-top-left.svg +0 -0
  1225. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bore-hole.svg +0 -0
  1226. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bottle-droplet.svg +0 -0
  1227. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bottle-water.svg +0 -0
  1228. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bowl-food.svg +0 -0
  1229. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bowl-rice.svg +0 -0
  1230. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bowling-ball.svg +0 -0
  1231. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/box-archive.svg +0 -0
  1232. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/box-open.svg +0 -0
  1233. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/box-tissue.svg +0 -0
  1234. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/box.svg +0 -0
  1235. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/boxes-alt.svg +0 -0
  1236. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/boxes-packing.svg +0 -0
  1237. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/boxes-stacked.svg +0 -0
  1238. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/boxes.svg +0 -0
  1239. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/braille.svg +0 -0
  1240. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/brain.svg +0 -0
  1241. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/brazilian-real-sign.svg +0 -0
  1242. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bread-slice.svg +0 -0
  1243. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bridge-circle-check.svg +0 -0
  1244. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bridge-circle-exclamation.svg +0 -0
  1245. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bridge-circle-xmark.svg +0 -0
  1246. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bridge-lock.svg +0 -0
  1247. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bridge-water.svg +0 -0
  1248. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bridge.svg +0 -0
  1249. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/briefcase-clock.svg +0 -0
  1250. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/briefcase-medical.svg +0 -0
  1251. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/briefcase.svg +0 -0
  1252. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/broadcast-tower.svg +0 -0
  1253. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/broom-ball.svg +0 -0
  1254. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/broom.svg +0 -0
  1255. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/brush.svg +0 -0
  1256. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bucket.svg +0 -0
  1257. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bug-slash.svg +0 -0
  1258. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bug.svg +0 -0
  1259. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bugs.svg +0 -0
  1260. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-circle-arrow-right.svg +0 -0
  1261. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-circle-check.svg +0 -0
  1262. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-circle-exclamation.svg +0 -0
  1263. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-circle-xmark.svg +0 -0
  1264. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-columns.svg +0 -0
  1265. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-flag.svg +0 -0
  1266. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-lock.svg +0 -0
  1267. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-ngo.svg +0 -0
  1268. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-shield.svg +0 -0
  1269. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-un.svg +0 -0
  1270. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-user.svg +0 -0
  1271. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-wheat.svg +0 -0
  1272. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building.svg +0 -0
  1273. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bullhorn.svg +0 -0
  1274. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bullseye.svg +0 -0
  1275. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/burger.svg +0 -0
  1276. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/burn.svg +0 -0
  1277. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/burst.svg +0 -0
  1278. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bus-alt.svg +0 -0
  1279. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bus-side.svg +0 -0
  1280. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bus-simple.svg +0 -0
  1281. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bus.svg +0 -0
  1282. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/business-time.svg +0 -0
  1283. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/c.svg +0 -0
  1284. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cab.svg +0 -0
  1285. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cable-car.svg +0 -0
  1286. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cake-candles.svg +0 -0
  1287. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cake.svg +0 -0
  1288. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calculator.svg +0 -0
  1289. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-alt.svg +0 -0
  1290. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-check.svg +0 -0
  1291. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-day.svg +0 -0
  1292. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-days.svg +0 -0
  1293. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-minus.svg +0 -0
  1294. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-plus.svg +0 -0
  1295. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-times.svg +0 -0
  1296. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-week.svg +0 -0
  1297. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-xmark.svg +0 -0
  1298. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar.svg +0 -0
  1299. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/camera-alt.svg +0 -0
  1300. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/camera-retro.svg +0 -0
  1301. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/camera-rotate.svg +0 -0
  1302. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/camera.svg +0 -0
  1303. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/campground.svg +0 -0
  1304. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cancel.svg +0 -0
  1305. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/candy-cane.svg +0 -0
  1306. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cannabis.svg +0 -0
  1307. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/capsules.svg +0 -0
  1308. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-alt.svg +0 -0
  1309. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-battery.svg +0 -0
  1310. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-burst.svg +0 -0
  1311. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-crash.svg +0 -0
  1312. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-on.svg +0 -0
  1313. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-rear.svg +0 -0
  1314. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-side.svg +0 -0
  1315. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-tunnel.svg +0 -0
  1316. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car.svg +0 -0
  1317. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caravan.svg +0 -0
  1318. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-down.svg +0 -0
  1319. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-left.svg +0 -0
  1320. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-right.svg +0 -0
  1321. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-square-down.svg +0 -0
  1322. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-square-left.svg +0 -0
  1323. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-square-right.svg +0 -0
  1324. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-square-up.svg +0 -0
  1325. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-up.svg +0 -0
  1326. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/carriage-baby.svg +0 -0
  1327. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/carrot.svg +0 -0
  1328. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cart-arrow-down.svg +0 -0
  1329. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cart-flatbed-suitcase.svg +0 -0
  1330. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cart-flatbed.svg +0 -0
  1331. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cart-plus.svg +0 -0
  1332. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cart-shopping.svg +0 -0
  1333. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cash-register.svg +0 -0
  1334. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cat.svg +0 -0
  1335. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cedi-sign.svg +0 -0
  1336. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cent-sign.svg +0 -0
  1337. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/certificate.svg +0 -0
  1338. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chain-broken.svg +0 -0
  1339. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chain-slash.svg +0 -0
  1340. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chain.svg +0 -0
  1341. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chair.svg +0 -0
  1342. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chalkboard-teacher.svg +0 -0
  1343. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chalkboard-user.svg +0 -0
  1344. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chalkboard.svg +0 -0
  1345. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/champagne-glasses.svg +0 -0
  1346. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/charging-station.svg +0 -0
  1347. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-area.svg +0 -0
  1348. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-bar.svg +0 -0
  1349. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-column.svg +0 -0
  1350. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-diagram.svg +0 -0
  1351. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-gantt.svg +0 -0
  1352. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-line.svg +0 -0
  1353. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-pie.svg +0 -0
  1354. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-simple.svg +0 -0
  1355. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/check-circle.svg +0 -0
  1356. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/check-double.svg +0 -0
  1357. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/check-square.svg +0 -0
  1358. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/check-to-slot.svg +0 -0
  1359. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/check.svg +0 -0
  1360. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cheese.svg +0 -0
  1361. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-bishop.svg +0 -0
  1362. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-board.svg +0 -0
  1363. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-king.svg +0 -0
  1364. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-knight.svg +0 -0
  1365. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-pawn.svg +0 -0
  1366. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-queen.svg +0 -0
  1367. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-rook.svg +0 -0
  1368. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess.svg +0 -0
  1369. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-circle-down.svg +0 -0
  1370. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-circle-left.svg +0 -0
  1371. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-circle-right.svg +0 -0
  1372. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-circle-up.svg +0 -0
  1373. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-down.svg +0 -0
  1374. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-left.svg +0 -0
  1375. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-right.svg +0 -0
  1376. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-up.svg +0 -0
  1377. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/child-combatant.svg +0 -0
  1378. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/child-dress.svg +0 -0
  1379. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/child-reaching.svg +0 -0
  1380. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/child-rifle.svg +0 -0
  1381. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/child.svg +0 -0
  1382. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/children.svg +0 -0
  1383. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/church.svg +0 -0
  1384. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-arrow-down.svg +0 -0
  1385. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-arrow-left.svg +0 -0
  1386. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-arrow-right.svg +0 -0
  1387. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-arrow-up.svg +0 -0
  1388. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-check.svg +0 -0
  1389. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-chevron-down.svg +0 -0
  1390. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-chevron-left.svg +0 -0
  1391. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-chevron-right.svg +0 -0
  1392. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-chevron-up.svg +0 -0
  1393. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-dollar-to-slot.svg +0 -0
  1394. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-dot.svg +0 -0
  1395. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-down.svg +0 -0
  1396. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-exclamation.svg +0 -0
  1397. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-h.svg +0 -0
  1398. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-half-stroke.svg +0 -0
  1399. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-info.svg +0 -0
  1400. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-left.svg +0 -0
  1401. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-minus.svg +0 -0
  1402. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-nodes.svg +0 -0
  1403. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-notch.svg +0 -0
  1404. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-pause.svg +0 -0
  1405. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-play.svg +0 -0
  1406. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-plus.svg +0 -0
  1407. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-question.svg +0 -0
  1408. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-radiation.svg +0 -0
  1409. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-right.svg +0 -0
  1410. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-stop.svg +0 -0
  1411. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-up.svg +0 -0
  1412. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-user.svg +0 -0
  1413. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-xmark.svg +0 -0
  1414. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle.svg +0 -0
  1415. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/city.svg +0 -0
  1416. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clapperboard.svg +0 -0
  1417. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clinic-medical.svg +0 -0
  1418. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clipboard-check.svg +0 -0
  1419. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clipboard-list.svg +0 -0
  1420. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clipboard-question.svg +0 -0
  1421. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clipboard-user.svg +0 -0
  1422. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clipboard.svg +0 -0
  1423. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clock-four.svg +0 -0
  1424. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clock-rotate-left.svg +0 -0
  1425. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clock.svg +0 -0
  1426. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clone.svg +0 -0
  1427. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/close.svg +0 -0
  1428. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/closed-captioning.svg +0 -0
  1429. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-arrow-down.svg +0 -0
  1430. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-arrow-up.svg +0 -0
  1431. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-bolt.svg +0 -0
  1432. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-download-alt.svg +0 -0
  1433. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-download.svg +0 -0
  1434. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-meatball.svg +0 -0
  1435. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-moon-rain.svg +0 -0
  1436. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-moon.svg +0 -0
  1437. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-rain.svg +0 -0
  1438. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-showers-heavy.svg +0 -0
  1439. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-showers-water.svg +0 -0
  1440. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-sun-rain.svg +0 -0
  1441. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-sun.svg +0 -0
  1442. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-upload-alt.svg +0 -0
  1443. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-upload.svg +0 -0
  1444. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud.svg +0 -0
  1445. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clover.svg +0 -0
  1446. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cny.svg +0 -0
  1447. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cocktail.svg +0 -0
  1448. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code-branch.svg +0 -0
  1449. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code-commit.svg +0 -0
  1450. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code-compare.svg +0 -0
  1451. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code-fork.svg +0 -0
  1452. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code-merge.svg +0 -0
  1453. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code-pull-request.svg +0 -0
  1454. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code.svg +0 -0
  1455. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/coffee.svg +0 -0
  1456. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cog.svg +0 -0
  1457. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cogs.svg +0 -0
  1458. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/coins.svg +0 -0
  1459. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/colon-sign.svg +0 -0
  1460. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/columns.svg +0 -0
  1461. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-alt.svg +0 -0
  1462. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-dollar.svg +0 -0
  1463. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-dots.svg +0 -0
  1464. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-medical.svg +0 -0
  1465. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-nodes.svg +0 -0
  1466. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-slash.svg +0 -0
  1467. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-sms.svg +0 -0
  1468. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment.svg +0 -0
  1469. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/commenting.svg +0 -0
  1470. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comments-dollar.svg +0 -0
  1471. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comments.svg +0 -0
  1472. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/compact-disc.svg +0 -0
  1473. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/compass-drafting.svg +0 -0
  1474. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/compass.svg +0 -0
  1475. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/compress-alt.svg +0 -0
  1476. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/compress-arrows-alt.svg +0 -0
  1477. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/compress.svg +0 -0
  1478. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/computer-mouse.svg +0 -0
  1479. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/computer.svg +0 -0
  1480. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/concierge-bell.svg +0 -0
  1481. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/contact-book.svg +0 -0
  1482. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/contact-card.svg +0 -0
  1483. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cookie-bite.svg +0 -0
  1484. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cookie.svg +0 -0
  1485. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/copy.svg +0 -0
  1486. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/copyright.svg +0 -0
  1487. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/couch.svg +0 -0
  1488. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cow.svg +0 -0
  1489. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/credit-card-alt.svg +0 -0
  1490. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/credit-card.svg +0 -0
  1491. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crop-alt.svg +0 -0
  1492. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crop-simple.svg +0 -0
  1493. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crop.svg +0 -0
  1494. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cross.svg +0 -0
  1495. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crosshairs.svg +0 -0
  1496. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crow.svg +0 -0
  1497. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crown.svg +0 -0
  1498. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crutch.svg +0 -0
  1499. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cruzeiro-sign.svg +0 -0
  1500. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cube.svg +0 -0
  1501. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cubes-stacked.svg +0 -0
  1502. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cubes.svg +0 -0
  1503. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cut.svg +0 -0
  1504. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cutlery.svg +0 -0
  1505. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/d.svg +0 -0
  1506. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dashboard.svg +0 -0
  1507. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/database.svg +0 -0
  1508. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/deaf.svg +0 -0
  1509. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/deafness.svg +0 -0
  1510. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dedent.svg +0 -0
  1511. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/delete-left.svg +0 -0
  1512. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/democrat.svg +0 -0
  1513. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/desktop-alt.svg +0 -0
  1514. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/desktop.svg +0 -0
  1515. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dharmachakra.svg +0 -0
  1516. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diagnoses.svg +0 -0
  1517. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diagram-next.svg +0 -0
  1518. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diagram-predecessor.svg +0 -0
  1519. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diagram-project.svg +0 -0
  1520. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diagram-successor.svg +0 -0
  1521. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diamond-turn-right.svg +0 -0
  1522. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diamond.svg +0 -0
  1523. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-d20.svg +0 -0
  1524. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-d6.svg +0 -0
  1525. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-five.svg +0 -0
  1526. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-four.svg +0 -0
  1527. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-one.svg +0 -0
  1528. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-six.svg +0 -0
  1529. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-three.svg +0 -0
  1530. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-two.svg +0 -0
  1531. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice.svg +0 -0
  1532. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/digging.svg +0 -0
  1533. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/digital-tachograph.svg +0 -0
  1534. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/directions.svg +0 -0
  1535. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/disease.svg +0 -0
  1536. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/display.svg +0 -0
  1537. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/divide.svg +0 -0
  1538. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dizzy.svg +0 -0
  1539. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dna.svg +0 -0
  1540. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dog.svg +0 -0
  1541. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dollar-sign.svg +0 -0
  1542. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dollar.svg +0 -0
  1543. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dolly-box.svg +0 -0
  1544. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dolly-flatbed.svg +0 -0
  1545. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dolly.svg +0 -0
  1546. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/donate.svg +0 -0
  1547. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dong-sign.svg +0 -0
  1548. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/door-closed.svg +0 -0
  1549. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/door-open.svg +0 -0
  1550. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dot-circle.svg +0 -0
  1551. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dove.svg +0 -0
  1552. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/down-left-and-up-right-to-center.svg +0 -0
  1553. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/down-long.svg +0 -0
  1554. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/download.svg +0 -0
  1555. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/drafting-compass.svg +0 -0
  1556. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dragon.svg +0 -0
  1557. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/draw-polygon.svg +0 -0
  1558. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/drivers-license.svg +0 -0
  1559. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/droplet-slash.svg +0 -0
  1560. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/droplet.svg +0 -0
  1561. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/drum-steelpan.svg +0 -0
  1562. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/drum.svg +0 -0
  1563. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/drumstick-bite.svg +0 -0
  1564. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dumbbell.svg +0 -0
  1565. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dumpster-fire.svg +0 -0
  1566. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dumpster.svg +0 -0
  1567. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dungeon.svg +0 -0
  1568. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/e.svg +0 -0
  1569. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ear-deaf.svg +0 -0
  1570. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ear-listen.svg +0 -0
  1571. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth-africa.svg +0 -0
  1572. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth-america.svg +0 -0
  1573. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth-americas.svg +0 -0
  1574. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth-asia.svg +0 -0
  1575. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth-europe.svg +0 -0
  1576. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth-oceania.svg +0 -0
  1577. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth.svg +0 -0
  1578. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/edit.svg +0 -0
  1579. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/egg.svg +0 -0
  1580. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eject.svg +0 -0
  1581. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/elevator.svg +0 -0
  1582. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ellipsis-h.svg +0 -0
  1583. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ellipsis-v.svg +0 -0
  1584. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ellipsis-vertical.svg +0 -0
  1585. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ellipsis.svg +0 -0
  1586. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/envelope-circle-check.svg +0 -0
  1587. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/envelope-open-text.svg +0 -0
  1588. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/envelope-open.svg +0 -0
  1589. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/envelope-square.svg +0 -0
  1590. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/envelope.svg +0 -0
  1591. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/envelopes-bulk.svg +0 -0
  1592. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/equals.svg +0 -0
  1593. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eraser.svg +0 -0
  1594. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ethernet.svg +0 -0
  1595. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eur.svg +0 -0
  1596. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/euro-sign.svg +0 -0
  1597. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/euro.svg +0 -0
  1598. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/exchange-alt.svg +0 -0
  1599. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/exchange.svg +0 -0
  1600. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/exclamation-circle.svg +0 -0
  1601. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/exclamation-triangle.svg +0 -0
  1602. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/exclamation.svg +0 -0
  1603. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/expand-alt.svg +0 -0
  1604. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/expand-arrows-alt.svg +0 -0
  1605. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/expand.svg +0 -0
  1606. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/explosion.svg +0 -0
  1607. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/external-link-alt.svg +0 -0
  1608. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/external-link-square-alt.svg +0 -0
  1609. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/external-link-square.svg +0 -0
  1610. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/external-link.svg +0 -0
  1611. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eye-dropper-empty.svg +0 -0
  1612. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eye-dropper.svg +0 -0
  1613. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eye-low-vision.svg +0 -0
  1614. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eye-slash.svg +0 -0
  1615. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eye.svg +0 -0
  1616. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eyedropper.svg +0 -0
  1617. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/f.svg +0 -0
  1618. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-angry.svg +0 -0
  1619. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-dizzy.svg +0 -0
  1620. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-flushed.svg +0 -0
  1621. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-frown-open.svg +0 -0
  1622. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-frown.svg +0 -0
  1623. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grimace.svg +0 -0
  1624. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-beam-sweat.svg +0 -0
  1625. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-beam.svg +0 -0
  1626. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-hearts.svg +0 -0
  1627. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-squint-tears.svg +0 -0
  1628. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-squint.svg +0 -0
  1629. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-stars.svg +0 -0
  1630. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-tears.svg +0 -0
  1631. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-tongue-squint.svg +0 -0
  1632. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-tongue-wink.svg +0 -0
  1633. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-tongue.svg +0 -0
  1634. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-wide.svg +0 -0
  1635. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-wink.svg +0 -0
  1636. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin.svg +0 -0
  1637. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-kiss-beam.svg +0 -0
  1638. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-kiss-wink-heart.svg +0 -0
  1639. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-kiss.svg +0 -0
  1640. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-laugh-beam.svg +0 -0
  1641. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-laugh-squint.svg +0 -0
  1642. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-laugh-wink.svg +0 -0
  1643. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-laugh.svg +0 -0
  1644. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-meh-blank.svg +0 -0
  1645. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-meh.svg +0 -0
  1646. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-rolling-eyes.svg +0 -0
  1647. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-sad-cry.svg +0 -0
  1648. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-sad-tear.svg +0 -0
  1649. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-smile-beam.svg +0 -0
  1650. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-smile-wink.svg +0 -0
  1651. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-smile.svg +0 -0
  1652. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-surprise.svg +0 -0
  1653. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-tired.svg +0 -0
  1654. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fan.svg +0 -0
  1655. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fast-backward.svg +0 -0
  1656. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fast-forward.svg +0 -0
  1657. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/faucet-drip.svg +0 -0
  1658. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/faucet.svg +0 -0
  1659. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fax.svg +0 -0
  1660. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/feather-alt.svg +0 -0
  1661. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/feather-pointed.svg +0 -0
  1662. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/feather.svg +0 -0
  1663. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/feed.svg +0 -0
  1664. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/female.svg +0 -0
  1665. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ferry.svg +0 -0
  1666. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fighter-jet.svg +0 -0
  1667. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-alt.svg +0 -0
  1668. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-archive.svg +0 -0
  1669. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-arrow-down.svg +0 -0
  1670. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-arrow-up.svg +0 -0
  1671. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-audio.svg +0 -0
  1672. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-circle-check.svg +0 -0
  1673. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-circle-exclamation.svg +0 -0
  1674. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-circle-minus.svg +0 -0
  1675. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-circle-plus.svg +0 -0
  1676. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-circle-question.svg +0 -0
  1677. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-circle-xmark.svg +0 -0
  1678. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-clipboard.svg +0 -0
  1679. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-code.svg +0 -0
  1680. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-contract.svg +0 -0
  1681. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-csv.svg +0 -0
  1682. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-download.svg +0 -0
  1683. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-edit.svg +0 -0
  1684. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-excel.svg +0 -0
  1685. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-export.svg +0 -0
  1686. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-fragment.svg +0 -0
  1687. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-half-dashed.svg +0 -0
  1688. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-image.svg +0 -0
  1689. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-import.svg +0 -0
  1690. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-invoice-dollar.svg +0 -0
  1691. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-invoice.svg +0 -0
  1692. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-lines.svg +0 -0
  1693. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-medical-alt.svg +0 -0
  1694. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-medical.svg +0 -0
  1695. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-pdf.svg +0 -0
  1696. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-pen.svg +0 -0
  1697. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-powerpoint.svg +0 -0
  1698. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-prescription.svg +0 -0
  1699. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-shield.svg +0 -0
  1700. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-signature.svg +0 -0
  1701. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-text.svg +0 -0
  1702. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-upload.svg +0 -0
  1703. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-video.svg +0 -0
  1704. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-waveform.svg +0 -0
  1705. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-word.svg +0 -0
  1706. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-zipper.svg +0 -0
  1707. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file.svg +0 -0
  1708. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fill-drip.svg +0 -0
  1709. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fill.svg +0 -0
  1710. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/film-alt.svg +0 -0
  1711. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/film-simple.svg +0 -0
  1712. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/film.svg +0 -0
  1713. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/filter-circle-dollar.svg +0 -0
  1714. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/filter-circle-xmark.svg +0 -0
  1715. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/filter.svg +0 -0
  1716. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fingerprint.svg +0 -0
  1717. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fire-alt.svg +0 -0
  1718. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fire-burner.svg +0 -0
  1719. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fire-extinguisher.svg +0 -0
  1720. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fire-flame-curved.svg +0 -0
  1721. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fire-flame-simple.svg +0 -0
  1722. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fire.svg +0 -0
  1723. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/first-aid.svg +0 -0
  1724. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fish-fins.svg +0 -0
  1725. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fish.svg +0 -0
  1726. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fist-raised.svg +0 -0
  1727. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/flag-checkered.svg +0 -0
  1728. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/flag-usa.svg +0 -0
  1729. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/flag.svg +0 -0
  1730. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/flask-vial.svg +0 -0
  1731. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/flask.svg +0 -0
  1732. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/floppy-disk.svg +0 -0
  1733. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/florin-sign.svg +0 -0
  1734. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/flushed.svg +0 -0
  1735. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder-blank.svg +0 -0
  1736. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder-closed.svg +0 -0
  1737. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder-minus.svg +0 -0
  1738. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder-open.svg +0 -0
  1739. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder-plus.svg +0 -0
  1740. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder-tree.svg +0 -0
  1741. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder.svg +0 -0
  1742. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/font-awesome-flag.svg +0 -0
  1743. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/font-awesome-logo-full.svg +0 -0
  1744. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/font-awesome.svg +0 -0
  1745. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/font.svg +0 -0
  1746. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/football-ball.svg +0 -0
  1747. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/football.svg +0 -0
  1748. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/forward-fast.svg +0 -0
  1749. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/forward-step.svg +0 -0
  1750. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/forward.svg +0 -0
  1751. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/franc-sign.svg +0 -0
  1752. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/frog.svg +0 -0
  1753. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/frown-open.svg +0 -0
  1754. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/frown.svg +0 -0
  1755. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/funnel-dollar.svg +0 -0
  1756. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/futbol-ball.svg +0 -0
  1757. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/futbol.svg +0 -0
  1758. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/g.svg +0 -0
  1759. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gamepad.svg +0 -0
  1760. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gas-pump.svg +0 -0
  1761. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gauge-high.svg +0 -0
  1762. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gauge-med.svg +0 -0
  1763. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gauge-simple-high.svg +0 -0
  1764. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gauge-simple-med.svg +0 -0
  1765. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gauge-simple.svg +0 -0
  1766. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gauge.svg +0 -0
  1767. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gavel.svg +0 -0
  1768. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gbp.svg +0 -0
  1769. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gear.svg +0 -0
  1770. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gears.svg +0 -0
  1771. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gem.svg +0 -0
  1772. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/genderless.svg +0 -0
  1773. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ghost.svg +0 -0
  1774. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gift.svg +0 -0
  1775. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gifts.svg +0 -0
  1776. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glass-cheers.svg +0 -0
  1777. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glass-martini-alt.svg +0 -0
  1778. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glass-martini.svg +0 -0
  1779. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glass-water-droplet.svg +0 -0
  1780. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glass-water.svg +0 -0
  1781. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glass-whiskey.svg +0 -0
  1782. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glasses.svg +0 -0
  1783. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/globe-africa.svg +0 -0
  1784. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/globe-americas.svg +0 -0
  1785. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/globe-asia.svg +0 -0
  1786. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/globe-europe.svg +0 -0
  1787. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/globe-oceania.svg +0 -0
  1788. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/globe.svg +0 -0
  1789. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/golf-ball-tee.svg +0 -0
  1790. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/golf-ball.svg +0 -0
  1791. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gopuram.svg +0 -0
  1792. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/graduation-cap.svg +0 -0
  1793. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/greater-than-equal.svg +0 -0
  1794. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/greater-than.svg +0 -0
  1795. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grid-horizontal.svg +0 -0
  1796. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grid-vertical.svg +0 -0
  1797. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grimace.svg +0 -0
  1798. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-alt.svg +0 -0
  1799. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-beam-sweat.svg +0 -0
  1800. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-beam.svg +0 -0
  1801. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-hearts.svg +0 -0
  1802. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-squint-tears.svg +0 -0
  1803. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-squint.svg +0 -0
  1804. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-stars.svg +0 -0
  1805. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-tears.svg +0 -0
  1806. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-tongue-squint.svg +0 -0
  1807. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-tongue-wink.svg +0 -0
  1808. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-tongue.svg +0 -0
  1809. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-wink.svg +0 -0
  1810. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin.svg +0 -0
  1811. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grip-horizontal.svg +0 -0
  1812. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grip-lines-vertical.svg +0 -0
  1813. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grip-lines.svg +0 -0
  1814. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grip-vertical.svg +0 -0
  1815. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grip.svg +0 -0
  1816. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/group-arrows-rotate.svg +0 -0
  1817. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/guarani-sign.svg +0 -0
  1818. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/guitar.svg +0 -0
  1819. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gun.svg +0 -0
  1820. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/h-square.svg +0 -0
  1821. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/h.svg +0 -0
  1822. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hamburger.svg +0 -0
  1823. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hammer.svg +0 -0
  1824. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hamsa.svg +0 -0
  1825. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-back-fist.svg +0 -0
  1826. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-dots.svg +0 -0
  1827. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-fist.svg +0 -0
  1828. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-dollar.svg +0 -0
  1829. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-droplet.svg +0 -0
  1830. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-hand.svg +0 -0
  1831. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-heart.svg +0 -0
  1832. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-medical.svg +0 -0
  1833. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-usd.svg +0 -0
  1834. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-water.svg +0 -0
  1835. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding.svg +0 -0
  1836. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-lizard.svg +0 -0
  1837. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-middle-finger.svg +0 -0
  1838. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-paper.svg +0 -0
  1839. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-peace.svg +0 -0
  1840. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-point-down.svg +0 -0
  1841. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-point-left.svg +0 -0
  1842. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-point-right.svg +0 -0
  1843. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-point-up.svg +0 -0
  1844. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-pointer.svg +0 -0
  1845. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-rock.svg +0 -0
  1846. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-scissors.svg +0 -0
  1847. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-sparkles.svg +0 -0
  1848. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-spock.svg +0 -0
  1849. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand.svg +0 -0
  1850. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handcuffs.svg +0 -0
  1851. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-american-sign-language-interpreting.svg +0 -0
  1852. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-asl-interpreting.svg +0 -0
  1853. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-bound.svg +0 -0
  1854. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-bubbles.svg +0 -0
  1855. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-clapping.svg +0 -0
  1856. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-helping.svg +0 -0
  1857. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-holding-child.svg +0 -0
  1858. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-holding-circle.svg +0 -0
  1859. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-holding.svg +0 -0
  1860. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-praying.svg +0 -0
  1861. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-wash.svg +0 -0
  1862. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands.svg +0 -0
  1863. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake-alt-slash.svg +0 -0
  1864. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake-alt.svg +0 -0
  1865. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake-angle.svg +0 -0
  1866. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake-simple-slash.svg +0 -0
  1867. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake-simple.svg +0 -0
  1868. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake-slash.svg +0 -0
  1869. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake.svg +0 -0
  1870. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hanukiah.svg +0 -0
  1871. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hard-drive.svg +0 -0
  1872. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hard-hat.svg +0 -0
  1873. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hard-of-hearing.svg +0 -0
  1874. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hashtag.svg +0 -0
  1875. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hat-cowboy-side.svg +0 -0
  1876. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hat-cowboy.svg +0 -0
  1877. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hat-hard.svg +0 -0
  1878. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hat-wizard.svg +0 -0
  1879. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/haykal.svg +0 -0
  1880. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hdd.svg +0 -0
  1881. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/head-side-cough-slash.svg +0 -0
  1882. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/head-side-cough.svg +0 -0
  1883. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/head-side-mask.svg +0 -0
  1884. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/head-side-virus.svg +0 -0
  1885. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/header.svg +0 -0
  1886. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heading.svg +0 -0
  1887. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/headphones-alt.svg +0 -0
  1888. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/headphones-simple.svg +0 -0
  1889. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/headphones.svg +0 -0
  1890. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/headset.svg +0 -0
  1891. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-broken.svg +0 -0
  1892. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-circle-bolt.svg +0 -0
  1893. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-circle-check.svg +0 -0
  1894. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-circle-exclamation.svg +0 -0
  1895. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-circle-minus.svg +0 -0
  1896. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-circle-plus.svg +0 -0
  1897. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-circle-xmark.svg +0 -0
  1898. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-crack.svg +0 -0
  1899. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-music-camera-bolt.svg +0 -0
  1900. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-pulse.svg +0 -0
  1901. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart.svg +0 -0
  1902. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heartbeat.svg +0 -0
  1903. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/helicopter-symbol.svg +0 -0
  1904. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/helicopter.svg +0 -0
  1905. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/helmet-safety.svg +0 -0
  1906. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/helmet-un.svg +0 -0
  1907. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heptagon.svg +0 -0
  1908. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hexagon-nodes-bolt.svg +0 -0
  1909. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hexagon-nodes.svg +0 -0
  1910. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hexagon.svg +0 -0
  1911. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/highlighter.svg +0 -0
  1912. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hiking.svg +0 -0
  1913. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hill-avalanche.svg +0 -0
  1914. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hill-rockslide.svg +0 -0
  1915. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hippo.svg +0 -0
  1916. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/history.svg +0 -0
  1917. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hockey-puck.svg +0 -0
  1918. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/holly-berry.svg +0 -0
  1919. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/home-alt.svg +0 -0
  1920. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/home-lg-alt.svg +0 -0
  1921. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/home-lg.svg +0 -0
  1922. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/home-user.svg +0 -0
  1923. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/home.svg +0 -0
  1924. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/horse-head.svg +0 -0
  1925. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/horse.svg +0 -0
  1926. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hospital-alt.svg +0 -0
  1927. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hospital-symbol.svg +0 -0
  1928. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hospital-user.svg +0 -0
  1929. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hospital-wide.svg +0 -0
  1930. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hospital.svg +0 -0
  1931. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hot-tub-person.svg +0 -0
  1932. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hot-tub.svg +0 -0
  1933. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hotdog.svg +0 -0
  1934. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hotel.svg +0 -0
  1935. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-1.svg +0 -0
  1936. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-2.svg +0 -0
  1937. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-3.svg +0 -0
  1938. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-empty.svg +0 -0
  1939. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-end.svg +0 -0
  1940. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-half.svg +0 -0
  1941. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-start.svg +0 -0
  1942. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass.svg +0 -0
  1943. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-chimney-crack.svg +0 -0
  1944. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-chimney-medical.svg +0 -0
  1945. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-chimney-user.svg +0 -0
  1946. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-chimney-window.svg +0 -0
  1947. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-chimney.svg +0 -0
  1948. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-circle-check.svg +0 -0
  1949. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-circle-exclamation.svg +0 -0
  1950. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-circle-xmark.svg +0 -0
  1951. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-crack.svg +0 -0
  1952. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-damage.svg +0 -0
  1953. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-fire.svg +0 -0
  1954. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-flag.svg +0 -0
  1955. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-flood-water-circle-arrow-right.svg +0 -0
  1956. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-flood-water.svg +0 -0
  1957. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-laptop.svg +0 -0
  1958. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-lock.svg +0 -0
  1959. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-medical-circle-check.svg +0 -0
  1960. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-medical-circle-exclamation.svg +0 -0
  1961. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-medical-circle-xmark.svg +0 -0
  1962. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-medical-flag.svg +0 -0
  1963. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-medical.svg +0 -0
  1964. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-signal.svg +0 -0
  1965. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-tsunami.svg +0 -0
  1966. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-user.svg +0 -0
  1967. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house.svg +0 -0
  1968. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hryvnia-sign.svg +0 -0
  1969. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hryvnia.svg +0 -0
  1970. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hurricane.svg +0 -0
  1971. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/i-cursor.svg +0 -0
  1972. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/i.svg +0 -0
  1973. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ice-cream.svg +0 -0
  1974. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/icicles.svg +0 -0
  1975. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/icons.svg +0 -0
  1976. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/id-badge.svg +0 -0
  1977. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/id-card-alt.svg +0 -0
  1978. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/id-card-clip.svg +0 -0
  1979. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/id-card.svg +0 -0
  1980. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/igloo.svg +0 -0
  1981. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ils.svg +0 -0
  1982. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/image-portrait.svg +0 -0
  1983. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/image.svg +0 -0
  1984. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/images.svg +0 -0
  1985. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/inbox.svg +0 -0
  1986. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/indent.svg +0 -0
  1987. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/indian-rupee-sign.svg +0 -0
  1988. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/indian-rupee.svg +0 -0
  1989. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/industry.svg +0 -0
  1990. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/infinity.svg +0 -0
  1991. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/info-circle.svg +0 -0
  1992. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/info.svg +0 -0
  1993. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/inr.svg +0 -0
  1994. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/institution.svg +0 -0
  1995. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/italic.svg +0 -0
  1996. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/j.svg +0 -0
  1997. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jar-wheat.svg +0 -0
  1998. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jar.svg +0 -0
  1999. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jedi.svg +0 -0
  2000. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jet-fighter-up.svg +0 -0
  2001. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jet-fighter.svg +0 -0
  2002. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/joint.svg +0 -0
  2003. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/journal-whills.svg +0 -0
  2004. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jpy.svg +0 -0
  2005. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jug-detergent.svg +0 -0
  2006. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/k.svg +0 -0
  2007. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kaaba.svg +0 -0
  2008. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/key.svg +0 -0
  2009. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/keyboard.svg +0 -0
  2010. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/khanda.svg +0 -0
  2011. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kip-sign.svg +0 -0
  2012. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kiss-beam.svg +0 -0
  2013. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kiss-wink-heart.svg +0 -0
  2014. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kiss.svg +0 -0
  2015. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kit-medical.svg +0 -0
  2016. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kitchen-set.svg +0 -0
  2017. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kiwi-bird.svg +0 -0
  2018. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/krw.svg +0 -0
  2019. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/l.svg +0 -0
  2020. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ladder-water.svg +0 -0
  2021. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/land-mine-on.svg +0 -0
  2022. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/landmark-alt.svg +0 -0
  2023. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/landmark-dome.svg +0 -0
  2024. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/landmark-flag.svg +0 -0
  2025. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/landmark.svg +0 -0
  2026. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/language.svg +0 -0
  2027. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laptop-code.svg +0 -0
  2028. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laptop-file.svg +0 -0
  2029. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laptop-house.svg +0 -0
  2030. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laptop-medical.svg +0 -0
  2031. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laptop.svg +0 -0
  2032. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lari-sign.svg +0 -0
  2033. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laugh-beam.svg +0 -0
  2034. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laugh-squint.svg +0 -0
  2035. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laugh-wink.svg +0 -0
  2036. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laugh.svg +0 -0
  2037. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/layer-group.svg +0 -0
  2038. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/leaf.svg +0 -0
  2039. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/left-long.svg +0 -0
  2040. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/left-right.svg +0 -0
  2041. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/legal.svg +0 -0
  2042. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lemon.svg +0 -0
  2043. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/less-than-equal.svg +0 -0
  2044. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/less-than.svg +0 -0
  2045. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/level-down-alt.svg +0 -0
  2046. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/level-down.svg +0 -0
  2047. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/level-up-alt.svg +0 -0
  2048. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/level-up.svg +0 -0
  2049. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/life-ring.svg +0 -0
  2050. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lightbulb.svg +0 -0
  2051. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/line-chart.svg +0 -0
  2052. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lines-leaning.svg +0 -0
  2053. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/link-slash.svg +0 -0
  2054. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/link.svg +0 -0
  2055. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lira-sign.svg +0 -0
  2056. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-1-2.svg +0 -0
  2057. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-alt.svg +0 -0
  2058. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-check.svg +0 -0
  2059. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-dots.svg +0 -0
  2060. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-numeric.svg +0 -0
  2061. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-ol.svg +0 -0
  2062. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-squares.svg +0 -0
  2063. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-ul.svg +0 -0
  2064. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list.svg +0 -0
  2065. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/litecoin-sign.svg +0 -0
  2066. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/location-arrow.svg +0 -0
  2067. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/location-crosshairs.svg +0 -0
  2068. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/location-dot.svg +0 -0
  2069. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/location-pin-lock.svg +0 -0
  2070. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/location-pin.svg +0 -0
  2071. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/location.svg +0 -0
  2072. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lock-open.svg +0 -0
  2073. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lock.svg +0 -0
  2074. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/locust.svg +0 -0
  2075. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-alt-down.svg +0 -0
  2076. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-alt-left.svg +0 -0
  2077. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-alt-right.svg +0 -0
  2078. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-alt-up.svg +0 -0
  2079. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-down.svg +0 -0
  2080. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-left.svg +0 -0
  2081. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-right.svg +0 -0
  2082. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-up.svg +0 -0
  2083. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/low-vision.svg +0 -0
  2084. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/luggage-cart.svg +0 -0
  2085. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lungs-virus.svg +0 -0
  2086. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lungs.svg +0 -0
  2087. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/m.svg +0 -0
  2088. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magic-wand-sparkles.svg +0 -0
  2089. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magic.svg +0 -0
  2090. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnet.svg +0 -0
  2091. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass-arrow-right.svg +0 -0
  2092. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass-chart.svg +0 -0
  2093. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass-dollar.svg +0 -0
  2094. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass-location.svg +0 -0
  2095. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass-minus.svg +0 -0
  2096. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass-plus.svg +0 -0
  2097. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass.svg +0 -0
  2098. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mail-bulk.svg +0 -0
  2099. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mail-forward.svg +0 -0
  2100. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mail-reply-all.svg +0 -0
  2101. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mail-reply.svg +0 -0
  2102. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/male.svg +0 -0
  2103. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/manat-sign.svg +0 -0
  2104. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-location-dot.svg +0 -0
  2105. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-location.svg +0 -0
  2106. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-marked-alt.svg +0 -0
  2107. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-marked.svg +0 -0
  2108. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-marker-alt.svg +0 -0
  2109. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-marker.svg +0 -0
  2110. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-pin.svg +0 -0
  2111. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-signs.svg +0 -0
  2112. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map.svg +0 -0
  2113. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/marker.svg +0 -0
  2114. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-and-venus-burst.svg +0 -0
  2115. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-and-venus.svg +0 -0
  2116. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-double.svg +0 -0
  2117. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-stroke-h.svg +0 -0
  2118. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-stroke-right.svg +0 -0
  2119. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-stroke-up.svg +0 -0
  2120. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-stroke-v.svg +0 -0
  2121. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-stroke.svg +0 -0
  2122. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars.svg +0 -0
  2123. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/martini-glass-citrus.svg +0 -0
  2124. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/martini-glass-empty.svg +0 -0
  2125. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/martini-glass.svg +0 -0
  2126. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mask-face.svg +0 -0
  2127. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mask-ventilator.svg +0 -0
  2128. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mask.svg +0 -0
  2129. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/masks-theater.svg +0 -0
  2130. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mattress-pillow.svg +0 -0
  2131. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/maximize.svg +0 -0
  2132. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/medal.svg +0 -0
  2133. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/medkit.svg +0 -0
  2134. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/meh-blank.svg +0 -0
  2135. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/meh-rolling-eyes.svg +0 -0
  2136. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/meh.svg +0 -0
  2137. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/memory.svg +0 -0
  2138. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/menorah.svg +0 -0
  2139. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mercury.svg +0 -0
  2140. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/message.svg +0 -0
  2141. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/meteor.svg +0 -0
  2142. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microchip.svg +0 -0
  2143. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microphone-alt-slash.svg +0 -0
  2144. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microphone-alt.svg +0 -0
  2145. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microphone-lines-slash.svg +0 -0
  2146. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microphone-lines.svg +0 -0
  2147. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microphone-slash.svg +0 -0
  2148. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microphone.svg +0 -0
  2149. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microscope.svg +0 -0
  2150. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mill-sign.svg +0 -0
  2151. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/minimize.svg +0 -0
  2152. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/minus-circle.svg +0 -0
  2153. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/minus-square.svg +0 -0
  2154. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/minus.svg +0 -0
  2155. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mitten.svg +0 -0
  2156. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-alt.svg +0 -0
  2157. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-android-alt.svg +0 -0
  2158. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-android.svg +0 -0
  2159. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-button.svg +0 -0
  2160. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-phone.svg +0 -0
  2161. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-retro.svg +0 -0
  2162. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-screen-button.svg +0 -0
  2163. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-screen.svg +0 -0
  2164. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-vibrate.svg +0 -0
  2165. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile.svg +0 -0
  2166. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-1-wave.svg +0 -0
  2167. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-1.svg +0 -0
  2168. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-alt.svg +0 -0
  2169. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-transfer.svg +0 -0
  2170. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-trend-up.svg +0 -0
  2171. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-wave-alt.svg +0 -0
  2172. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-wave.svg +0 -0
  2173. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-wheat.svg +0 -0
  2174. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill.svg +0 -0
  2175. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bills.svg +0 -0
  2176. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-check-alt.svg +0 -0
  2177. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-check-dollar.svg +0 -0
  2178. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-check.svg +0 -0
  2179. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/monument.svg +0 -0
  2180. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/moon.svg +0 -0
  2181. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mortar-board.svg +0 -0
  2182. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mortar-pestle.svg +0 -0
  2183. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mosque.svg +0 -0
  2184. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mosquito-net.svg +0 -0
  2185. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mosquito.svg +0 -0
  2186. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/motorcycle.svg +0 -0
  2187. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mound.svg +0 -0
  2188. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mountain-city.svg +0 -0
  2189. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mountain-sun.svg +0 -0
  2190. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mountain.svg +0 -0
  2191. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mouse-pointer.svg +0 -0
  2192. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mouse.svg +0 -0
  2193. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mug-hot.svg +0 -0
  2194. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mug-saucer.svg +0 -0
  2195. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/multiply.svg +0 -0
  2196. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/museum.svg +0 -0
  2197. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/music.svg +0 -0
  2198. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/n.svg +0 -0
  2199. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/naira-sign.svg +0 -0
  2200. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/navicon.svg +0 -0
  2201. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/network-wired.svg +0 -0
  2202. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/neuter.svg +0 -0
  2203. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/newspaper.svg +0 -0
  2204. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/non-binary.svg +0 -0
  2205. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/not-equal.svg +0 -0
  2206. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/notdef.svg +0 -0
  2207. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/note-sticky.svg +0 -0
  2208. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/notes-medical.svg +0 -0
  2209. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/o.svg +0 -0
  2210. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/object-group.svg +0 -0
  2211. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/object-ungroup.svg +0 -0
  2212. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/octagon.svg +0 -0
  2213. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/oil-can.svg +0 -0
  2214. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/oil-well.svg +0 -0
  2215. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/om.svg +0 -0
  2216. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/otter.svg +0 -0
  2217. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/outdent.svg +0 -0
  2218. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/p.svg +0 -0
  2219. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pager.svg +0 -0
  2220. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paint-brush.svg +0 -0
  2221. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paint-roller.svg +0 -0
  2222. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paintbrush.svg +0 -0
  2223. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/palette.svg +0 -0
  2224. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pallet.svg +0 -0
  2225. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/panorama.svg +0 -0
  2226. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paper-plane.svg +0 -0
  2227. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paperclip.svg +0 -0
  2228. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/parachute-box.svg +0 -0
  2229. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paragraph.svg +0 -0
  2230. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/parking.svg +0 -0
  2231. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/passport.svg +0 -0
  2232. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pastafarianism.svg +0 -0
  2233. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paste.svg +0 -0
  2234. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pause-circle.svg +0 -0
  2235. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pause.svg +0 -0
  2236. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paw.svg +0 -0
  2237. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/peace.svg +0 -0
  2238. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-alt.svg +0 -0
  2239. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-clip.svg +0 -0
  2240. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-fancy.svg +0 -0
  2241. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-nib.svg +0 -0
  2242. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-ruler.svg +0 -0
  2243. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-square.svg +0 -0
  2244. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-to-square.svg +0 -0
  2245. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen.svg +0 -0
  2246. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pencil-alt.svg +0 -0
  2247. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pencil-ruler.svg +0 -0
  2248. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pencil-square.svg +0 -0
  2249. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pencil.svg +0 -0
  2250. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pentagon.svg +0 -0
  2251. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-arrows-left-right.svg +0 -0
  2252. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-arrows.svg +0 -0
  2253. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-carry-box.svg +0 -0
  2254. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-carry.svg +0 -0
  2255. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-group.svg +0 -0
  2256. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-line.svg +0 -0
  2257. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-pulling.svg +0 -0
  2258. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-robbery.svg +0 -0
  2259. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-roof.svg +0 -0
  2260. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pepper-hot.svg +0 -0
  2261. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/percent.svg +0 -0
  2262. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/percentage.svg +0 -0
  2263. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-arrow-down-to-line.svg +0 -0
  2264. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-arrow-up-from-line.svg +0 -0
  2265. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-biking.svg +0 -0
  2266. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-booth.svg +0 -0
  2267. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-breastfeeding.svg +0 -0
  2268. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-burst.svg +0 -0
  2269. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-cane.svg +0 -0
  2270. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-chalkboard.svg +0 -0
  2271. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-circle-check.svg +0 -0
  2272. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-circle-exclamation.svg +0 -0
  2273. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-circle-minus.svg +0 -0
  2274. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-circle-plus.svg +0 -0
  2275. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-circle-question.svg +0 -0
  2276. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-circle-xmark.svg +0 -0
  2277. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-digging.svg +0 -0
  2278. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-dots-from-line.svg +0 -0
  2279. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-dress-burst.svg +0 -0
  2280. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-dress.svg +0 -0
  2281. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-drowning.svg +0 -0
  2282. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-falling-burst.svg +0 -0
  2283. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-falling.svg +0 -0
  2284. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-half-dress.svg +0 -0
  2285. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-harassing.svg +0 -0
  2286. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-hiking.svg +0 -0
  2287. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-military-pointing.svg +0 -0
  2288. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-military-rifle.svg +0 -0
  2289. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-military-to-person.svg +0 -0
  2290. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-praying.svg +0 -0
  2291. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-pregnant.svg +0 -0
  2292. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-rays.svg +0 -0
  2293. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-rifle.svg +0 -0
  2294. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-running.svg +0 -0
  2295. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-shelter.svg +0 -0
  2296. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-skating.svg +0 -0
  2297. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-skiing-nordic.svg +0 -0
  2298. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-skiing.svg +0 -0
  2299. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-snowboarding.svg +0 -0
  2300. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-swimming.svg +0 -0
  2301. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-through-window.svg +0 -0
  2302. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-walking-arrow-loop-left.svg +0 -0
  2303. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-walking-arrow-right.svg +0 -0
  2304. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-walking-dashed-line-arrow-right.svg +0 -0
  2305. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-walking-luggage.svg +0 -0
  2306. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-walking-with-cane.svg +0 -0
  2307. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-walking.svg +0 -0
  2308. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person.svg +0 -0
  2309. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/peseta-sign.svg +0 -0
  2310. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/peso-sign.svg +0 -0
  2311. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone-alt.svg +0 -0
  2312. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone-flip.svg +0 -0
  2313. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone-slash.svg +0 -0
  2314. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone-square-alt.svg +0 -0
  2315. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone-square.svg +0 -0
  2316. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone-volume.svg +0 -0
  2317. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone.svg +0 -0
  2318. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/photo-film.svg +0 -0
  2319. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/photo-video.svg +0 -0
  2320. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pie-chart.svg +0 -0
  2321. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/piggy-bank.svg +0 -0
  2322. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pills.svg +0 -0
  2323. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ping-pong-paddle-ball.svg +0 -0
  2324. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pizza-slice.svg +0 -0
  2325. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/place-of-worship.svg +0 -0
  2326. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-arrival.svg +0 -0
  2327. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-circle-check.svg +0 -0
  2328. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-circle-exclamation.svg +0 -0
  2329. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-circle-xmark.svg +0 -0
  2330. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-departure.svg +0 -0
  2331. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-lock.svg +0 -0
  2332. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-slash.svg +0 -0
  2333. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-up.svg +0 -0
  2334. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane.svg +0 -0
  2335. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plant-wilt.svg +0 -0
  2336. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plate-wheat.svg +0 -0
  2337. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/play-circle.svg +0 -0
  2338. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/play.svg +0 -0
  2339. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug-circle-bolt.svg +0 -0
  2340. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug-circle-check.svg +0 -0
  2341. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug-circle-exclamation.svg +0 -0
  2342. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug-circle-minus.svg +0 -0
  2343. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug-circle-plus.svg +0 -0
  2344. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug-circle-xmark.svg +0 -0
  2345. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug.svg +0 -0
  2346. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plus-circle.svg +0 -0
  2347. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plus-minus.svg +0 -0
  2348. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plus-square.svg +0 -0
  2349. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plus.svg +0 -0
  2350. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/podcast.svg +0 -0
  2351. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/poll-h.svg +0 -0
  2352. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/poll.svg +0 -0
  2353. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/poo-bolt.svg +0 -0
  2354. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/poo-storm.svg +0 -0
  2355. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/poo.svg +0 -0
  2356. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/poop.svg +0 -0
  2357. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/portrait.svg +0 -0
  2358. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pound-sign.svg +0 -0
  2359. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/power-off.svg +0 -0
  2360. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pray.svg +0 -0
  2361. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/praying-hands.svg +0 -0
  2362. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/prescription-bottle-alt.svg +0 -0
  2363. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/prescription-bottle-medical.svg +0 -0
  2364. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/prescription-bottle.svg +0 -0
  2365. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/prescription.svg +0 -0
  2366. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/print.svg +0 -0
  2367. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/procedures.svg +0 -0
  2368. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/project-diagram.svg +0 -0
  2369. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pump-medical.svg +0 -0
  2370. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pump-soap.svg +0 -0
  2371. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/puzzle-piece.svg +0 -0
  2372. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/q.svg +0 -0
  2373. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/qrcode.svg +0 -0
  2374. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/question-circle.svg +0 -0
  2375. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/question.svg +0 -0
  2376. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quidditch-broom-ball.svg +0 -0
  2377. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quidditch.svg +0 -0
  2378. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quote-left-alt.svg +0 -0
  2379. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quote-left.svg +0 -0
  2380. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quote-right-alt.svg +0 -0
  2381. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quote-right.svg +0 -0
  2382. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quran.svg +0 -0
  2383. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/r.svg +0 -0
  2384. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/radiation-alt.svg +0 -0
  2385. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/radiation.svg +0 -0
  2386. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/radio.svg +0 -0
  2387. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rainbow.svg +0 -0
  2388. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/random.svg +0 -0
  2389. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ranking-star.svg +0 -0
  2390. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/receipt.svg +0 -0
  2391. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/record-vinyl.svg +0 -0
  2392. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rectangle-ad.svg +0 -0
  2393. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rectangle-list.svg +0 -0
  2394. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rectangle-times.svg +0 -0
  2395. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rectangle-xmark.svg +0 -0
  2396. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/recycle.svg +0 -0
  2397. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/redo-alt.svg +0 -0
  2398. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/redo.svg +0 -0
  2399. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/refresh.svg +0 -0
  2400. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/registered.svg +0 -0
  2401. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/remove-format.svg +0 -0
  2402. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/remove.svg +0 -0
  2403. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/reorder.svg +0 -0
  2404. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/repeat.svg +0 -0
  2405. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/reply-all.svg +0 -0
  2406. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/reply.svg +0 -0
  2407. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/republican.svg +0 -0
  2408. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/restroom.svg +0 -0
  2409. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/retweet.svg +0 -0
  2410. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ribbon.svg +0 -0
  2411. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/right-from-bracket.svg +0 -0
  2412. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/right-left.svg +0 -0
  2413. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/right-long.svg +0 -0
  2414. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/right-to-bracket.svg +0 -0
  2415. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ring.svg +0 -0
  2416. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rmb.svg +0 -0
  2417. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-barrier.svg +0 -0
  2418. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-bridge.svg +0 -0
  2419. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-circle-check.svg +0 -0
  2420. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-circle-exclamation.svg +0 -0
  2421. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-circle-xmark.svg +0 -0
  2422. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-lock.svg +0 -0
  2423. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-spikes.svg +0 -0
  2424. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road.svg +0 -0
  2425. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/robot.svg +0 -0
  2426. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rocket.svg +0 -0
  2427. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rod-asclepius.svg +0 -0
  2428. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rod-snake.svg +0 -0
  2429. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rotate-back.svg +0 -0
  2430. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rotate-backward.svg +0 -0
  2431. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rotate-forward.svg +0 -0
  2432. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rotate-left.svg +0 -0
  2433. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rotate-right.svg +0 -0
  2434. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rotate.svg +0 -0
  2435. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rouble.svg +0 -0
  2436. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/route.svg +0 -0
  2437. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rss-square.svg +0 -0
  2438. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rss.svg +0 -0
  2439. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rub.svg +0 -0
  2440. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ruble-sign.svg +0 -0
  2441. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ruble.svg +0 -0
  2442. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rug.svg +0 -0
  2443. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ruler-combined.svg +0 -0
  2444. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ruler-horizontal.svg +0 -0
  2445. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ruler-vertical.svg +0 -0
  2446. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ruler.svg +0 -0
  2447. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/running.svg +0 -0
  2448. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rupee-sign.svg +0 -0
  2449. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rupee.svg +0 -0
  2450. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rupiah-sign.svg +0 -0
  2451. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/s.svg +0 -0
  2452. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sack-dollar.svg +0 -0
  2453. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sack-xmark.svg +0 -0
  2454. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sad-cry.svg +0 -0
  2455. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sad-tear.svg +0 -0
  2456. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sailboat.svg +0 -0
  2457. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/satellite-dish.svg +0 -0
  2458. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/satellite.svg +0 -0
  2459. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/save.svg +0 -0
  2460. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/scale-balanced.svg +0 -0
  2461. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/scale-unbalanced-flip.svg +0 -0
  2462. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/scale-unbalanced.svg +0 -0
  2463. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/school-circle-check.svg +0 -0
  2464. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/school-circle-exclamation.svg +0 -0
  2465. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/school-circle-xmark.svg +0 -0
  2466. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/school-flag.svg +0 -0
  2467. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/school-lock.svg +0 -0
  2468. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/school.svg +0 -0
  2469. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/scissors.svg +0 -0
  2470. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/screwdriver-wrench.svg +0 -0
  2471. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/screwdriver.svg +0 -0
  2472. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/scroll-torah.svg +0 -0
  2473. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/scroll.svg +0 -0
  2474. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sd-card.svg +0 -0
  2475. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/search-dollar.svg +0 -0
  2476. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/search-location.svg +0 -0
  2477. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/search-minus.svg +0 -0
  2478. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/search-plus.svg +0 -0
  2479. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/search.svg +0 -0
  2480. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/section.svg +0 -0
  2481. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/seedling.svg +0 -0
  2482. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/septagon.svg +0 -0
  2483. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/server.svg +0 -0
  2484. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shapes.svg +0 -0
  2485. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/share-alt-square.svg +0 -0
  2486. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/share-alt.svg +0 -0
  2487. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/share-from-square.svg +0 -0
  2488. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/share-nodes.svg +0 -0
  2489. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/share-square.svg +0 -0
  2490. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/share.svg +0 -0
  2491. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sheet-plastic.svg +0 -0
  2492. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shekel-sign.svg +0 -0
  2493. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shekel.svg +0 -0
  2494. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sheqel-sign.svg +0 -0
  2495. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sheqel.svg +0 -0
  2496. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-alt.svg +0 -0
  2497. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-blank.svg +0 -0
  2498. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-cat.svg +0 -0
  2499. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-dog.svg +0 -0
  2500. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-halved.svg +0 -0
  2501. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-heart.svg +0 -0
  2502. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-virus.svg +0 -0
  2503. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield.svg +0 -0
  2504. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ship.svg +0 -0
  2505. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shipping-fast.svg +0 -0
  2506. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shirt.svg +0 -0
  2507. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shoe-prints.svg +0 -0
  2508. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shop-lock.svg +0 -0
  2509. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shop-slash.svg +0 -0
  2510. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shop.svg +0 -0
  2511. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shopping-bag.svg +0 -0
  2512. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shopping-basket.svg +0 -0
  2513. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shopping-cart.svg +0 -0
  2514. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shower.svg +0 -0
  2515. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shrimp.svg +0 -0
  2516. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shuffle.svg +0 -0
  2517. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shuttle-space.svg +0 -0
  2518. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shuttle-van.svg +0 -0
  2519. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign-hanging.svg +0 -0
  2520. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign-in-alt.svg +0 -0
  2521. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign-in.svg +0 -0
  2522. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign-language.svg +0 -0
  2523. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign-out-alt.svg +0 -0
  2524. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign-out.svg +0 -0
  2525. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign.svg +0 -0
  2526. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/signal-5.svg +0 -0
  2527. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/signal-perfect.svg +0 -0
  2528. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/signal.svg +0 -0
  2529. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/signature.svg +0 -0
  2530. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/signing.svg +0 -0
  2531. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/signs-post.svg +0 -0
  2532. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sim-card.svg +0 -0
  2533. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/single-quote-left.svg +0 -0
  2534. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/single-quote-right.svg +0 -0
  2535. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sink.svg +0 -0
  2536. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sitemap.svg +0 -0
  2537. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/skating.svg +0 -0
  2538. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/skiing-nordic.svg +0 -0
  2539. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/skiing.svg +0 -0
  2540. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/skull-crossbones.svg +0 -0
  2541. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/skull.svg +0 -0
  2542. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/slash.svg +0 -0
  2543. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sleigh.svg +0 -0
  2544. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sliders-h.svg +0 -0
  2545. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sliders.svg +0 -0
  2546. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/smile-beam.svg +0 -0
  2547. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/smile-wink.svg +0 -0
  2548. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/smile.svg +0 -0
  2549. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/smog.svg +0 -0
  2550. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/smoking-ban.svg +0 -0
  2551. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/smoking.svg +0 -0
  2552. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sms.svg +0 -0
  2553. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/snowboarding.svg +0 -0
  2554. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/snowflake.svg +0 -0
  2555. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/snowman.svg +0 -0
  2556. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/snowplow.svg +0 -0
  2557. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/soap.svg +0 -0
  2558. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/soccer-ball.svg +0 -0
  2559. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/socks.svg +0 -0
  2560. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/solar-panel.svg +0 -0
  2561. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-alpha-asc.svg +0 -0
  2562. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-alpha-desc.svg +0 -0
  2563. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-alpha-down-alt.svg +0 -0
  2564. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-alpha-down.svg +0 -0
  2565. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-alpha-up-alt.svg +0 -0
  2566. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-alpha-up.svg +0 -0
  2567. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-amount-asc.svg +0 -0
  2568. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-amount-desc.svg +0 -0
  2569. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-amount-down-alt.svg +0 -0
  2570. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-amount-down.svg +0 -0
  2571. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-amount-up-alt.svg +0 -0
  2572. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-amount-up.svg +0 -0
  2573. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-asc.svg +0 -0
  2574. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-desc.svg +0 -0
  2575. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-down.svg +0 -0
  2576. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-numeric-asc.svg +0 -0
  2577. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-numeric-desc.svg +0 -0
  2578. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-numeric-down-alt.svg +0 -0
  2579. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-numeric-down.svg +0 -0
  2580. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-numeric-up-alt.svg +0 -0
  2581. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-numeric-up.svg +0 -0
  2582. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-up.svg +0 -0
  2583. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort.svg +0 -0
  2584. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spa.svg +0 -0
  2585. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/space-shuttle.svg +0 -0
  2586. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spaghetti-monster-flying.svg +0 -0
  2587. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spell-check.svg +0 -0
  2588. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spider.svg +0 -0
  2589. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spinner.svg +0 -0
  2590. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spiral.svg +0 -0
  2591. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/splotch.svg +0 -0
  2592. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spoon.svg +0 -0
  2593. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spray-can-sparkles.svg +0 -0
  2594. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spray-can.svg +0 -0
  2595. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sprout.svg +0 -0
  2596. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-arrow-up-right.svg +0 -0
  2597. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-binary.svg +0 -0
  2598. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-caret-down.svg +0 -0
  2599. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-caret-left.svg +0 -0
  2600. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-caret-right.svg +0 -0
  2601. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-caret-up.svg +0 -0
  2602. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-check.svg +0 -0
  2603. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-envelope.svg +0 -0
  2604. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-full.svg +0 -0
  2605. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-h.svg +0 -0
  2606. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-minus.svg +0 -0
  2607. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-nfi.svg +0 -0
  2608. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-parking.svg +0 -0
  2609. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-pen.svg +0 -0
  2610. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-person-confined.svg +0 -0
  2611. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-phone-flip.svg +0 -0
  2612. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-phone.svg +0 -0
  2613. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-plus.svg +0 -0
  2614. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-poll-horizontal.svg +0 -0
  2615. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-poll-vertical.svg +0 -0
  2616. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-root-alt.svg +0 -0
  2617. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-root-variable.svg +0 -0
  2618. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-rss.svg +0 -0
  2619. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-share-nodes.svg +0 -0
  2620. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-up-right.svg +0 -0
  2621. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-virus.svg +0 -0
  2622. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-xmark.svg +0 -0
  2623. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square.svg +0 -0
  2624. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/staff-aesculapius.svg +0 -0
  2625. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/staff-snake.svg +0 -0
  2626. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stairs.svg +0 -0
  2627. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stamp.svg +0 -0
  2628. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stapler.svg +0 -0
  2629. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star-and-crescent.svg +0 -0
  2630. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star-half-alt.svg +0 -0
  2631. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star-half-stroke.svg +0 -0
  2632. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star-half.svg +0 -0
  2633. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star-of-david.svg +0 -0
  2634. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star-of-life.svg +0 -0
  2635. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star.svg +0 -0
  2636. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/step-backward.svg +0 -0
  2637. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/step-forward.svg +0 -0
  2638. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sterling-sign.svg +0 -0
  2639. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stethoscope.svg +0 -0
  2640. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sticky-note.svg +0 -0
  2641. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stop-circle.svg +0 -0
  2642. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stop.svg +0 -0
  2643. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stopwatch-20.svg +0 -0
  2644. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stopwatch.svg +0 -0
  2645. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/store-alt-slash.svg +0 -0
  2646. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/store-alt.svg +0 -0
  2647. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/store-slash.svg +0 -0
  2648. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/store.svg +0 -0
  2649. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stream.svg +0 -0
  2650. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/street-view.svg +0 -0
  2651. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/strikethrough.svg +0 -0
  2652. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stroopwafel.svg +0 -0
  2653. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/subscript.svg +0 -0
  2654. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/subtract.svg +0 -0
  2655. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/subway.svg +0 -0
  2656. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/suitcase-medical.svg +0 -0
  2657. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/suitcase-rolling.svg +0 -0
  2658. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/suitcase.svg +0 -0
  2659. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sun-plant-wilt.svg +0 -0
  2660. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sun.svg +0 -0
  2661. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/superscript.svg +0 -0
  2662. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/surprise.svg +0 -0
  2663. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/swatchbook.svg +0 -0
  2664. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/swimmer.svg +0 -0
  2665. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/swimming-pool.svg +0 -0
  2666. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/synagogue.svg +0 -0
  2667. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sync-alt.svg +0 -0
  2668. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sync.svg +0 -0
  2669. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/syringe.svg +0 -0
  2670. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/t-shirt.svg +0 -0
  2671. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/t.svg +0 -0
  2672. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-cells-column-lock.svg +0 -0
  2673. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-cells-large.svg +0 -0
  2674. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-cells-row-lock.svg +0 -0
  2675. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-cells-row-unlock.svg +0 -0
  2676. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-cells.svg +0 -0
  2677. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-columns.svg +0 -0
  2678. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-list.svg +0 -0
  2679. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-tennis-paddle-ball.svg +0 -0
  2680. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-tennis.svg +0 -0
  2681. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table.svg +0 -0
  2682. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tablet-alt.svg +0 -0
  2683. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tablet-android.svg +0 -0
  2684. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tablet-button.svg +0 -0
  2685. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tablet-screen-button.svg +0 -0
  2686. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tablet.svg +0 -0
  2687. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tablets.svg +0 -0
  2688. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachograph-digital.svg +0 -0
  2689. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachometer-alt-average.svg +0 -0
  2690. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachometer-alt-fast.svg +0 -0
  2691. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachometer-alt.svg +0 -0
  2692. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachometer-average.svg +0 -0
  2693. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachometer-fast.svg +0 -0
  2694. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachometer.svg +0 -0
  2695. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tag.svg +0 -0
  2696. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tags.svg +0 -0
  2697. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tanakh.svg +0 -0
  2698. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tape.svg +0 -0
  2699. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tarp-droplet.svg +0 -0
  2700. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tarp.svg +0 -0
  2701. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tasks-alt.svg +0 -0
  2702. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tasks.svg +0 -0
  2703. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/taxi.svg +0 -0
  2704. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/teeth-open.svg +0 -0
  2705. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/teeth.svg +0 -0
  2706. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/teletype.svg +0 -0
  2707. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/television.svg +0 -0
  2708. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-0.svg +0 -0
  2709. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-1.svg +0 -0
  2710. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-2.svg +0 -0
  2711. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-3.svg +0 -0
  2712. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-4.svg +0 -0
  2713. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-arrow-down.svg +0 -0
  2714. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-arrow-up.svg +0 -0
  2715. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-down.svg +0 -0
  2716. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-empty.svg +0 -0
  2717. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-full.svg +0 -0
  2718. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-half.svg +0 -0
  2719. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-high.svg +0 -0
  2720. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-low.svg +0 -0
  2721. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-quarter.svg +0 -0
  2722. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-three-quarters.svg +0 -0
  2723. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-up.svg +0 -0
  2724. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tenge-sign.svg +0 -0
  2725. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tenge.svg +0 -0
  2726. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tent-arrow-down-to-line.svg +0 -0
  2727. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tent-arrow-left-right.svg +0 -0
  2728. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tent-arrow-turn-left.svg +0 -0
  2729. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tent-arrows-down.svg +0 -0
  2730. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tent.svg +0 -0
  2731. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tents.svg +0 -0
  2732. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/terminal.svg +0 -0
  2733. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/text-height.svg +0 -0
  2734. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/text-slash.svg +0 -0
  2735. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/text-width.svg +0 -0
  2736. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/th-large.svg +0 -0
  2737. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/th-list.svg +0 -0
  2738. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/th.svg +0 -0
  2739. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/theater-masks.svg +0 -0
  2740. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-0.svg +0 -0
  2741. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-1.svg +0 -0
  2742. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-2.svg +0 -0
  2743. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-3.svg +0 -0
  2744. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-4.svg +0 -0
  2745. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-empty.svg +0 -0
  2746. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-full.svg +0 -0
  2747. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-half.svg +0 -0
  2748. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-quarter.svg +0 -0
  2749. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-three-quarters.svg +0 -0
  2750. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer.svg +0 -0
  2751. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thumb-tack-slash.svg +0 -0
  2752. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thumb-tack.svg +0 -0
  2753. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thumbs-down.svg +0 -0
  2754. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thumbs-up.svg +0 -0
  2755. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thumbtack-slash.svg +0 -0
  2756. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thumbtack.svg +0 -0
  2757. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thunderstorm.svg +0 -0
  2758. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ticket-alt.svg +0 -0
  2759. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ticket-simple.svg +0 -0
  2760. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ticket.svg +0 -0
  2761. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/timeline.svg +0 -0
  2762. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/times-circle.svg +0 -0
  2763. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/times-rectangle.svg +0 -0
  2764. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/times-square.svg +0 -0
  2765. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/times.svg +0 -0
  2766. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tint-slash.svg +0 -0
  2767. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tint.svg +0 -0
  2768. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tired.svg +0 -0
  2769. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toggle-off.svg +0 -0
  2770. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toggle-on.svg +0 -0
  2771. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilet-paper-alt.svg +0 -0
  2772. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilet-paper-blank.svg +0 -0
  2773. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilet-paper-slash.svg +0 -0
  2774. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilet-paper.svg +0 -0
  2775. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilet-portable.svg +0 -0
  2776. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilet.svg +0 -0
  2777. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilets-portable.svg +0 -0
  2778. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toolbox.svg +0 -0
  2779. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tools.svg +0 -0
  2780. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tooth.svg +0 -0
  2781. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/torah.svg +0 -0
  2782. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/torii-gate.svg +0 -0
  2783. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tornado.svg +0 -0
  2784. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tower-broadcast.svg +0 -0
  2785. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tower-cell.svg +0 -0
  2786. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tower-observation.svg +0 -0
  2787. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tractor.svg +0 -0
  2788. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trademark.svg +0 -0
  2789. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/traffic-light.svg +0 -0
  2790. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trailer.svg +0 -0
  2791. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/train-subway.svg +0 -0
  2792. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/train-tram.svg +0 -0
  2793. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/train.svg +0 -0
  2794. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tram.svg +0 -0
  2795. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/transgender-alt.svg +0 -0
  2796. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/transgender.svg +0 -0
  2797. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash-alt.svg +0 -0
  2798. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash-arrow-up.svg +0 -0
  2799. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash-can-arrow-up.svg +0 -0
  2800. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash-can.svg +0 -0
  2801. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash-restore-alt.svg +0 -0
  2802. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash-restore.svg +0 -0
  2803. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash.svg +0 -0
  2804. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tree-city.svg +0 -0
  2805. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tree.svg +0 -0
  2806. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/triangle-circle-square.svg +0 -0
  2807. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/triangle-exclamation.svg +0 -0
  2808. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trophy.svg +0 -0
  2809. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trowel-bricks.svg +0 -0
  2810. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trowel.svg +0 -0
  2811. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-arrow-right.svg +0 -0
  2812. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-droplet.svg +0 -0
  2813. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-fast.svg +0 -0
  2814. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-field-un.svg +0 -0
  2815. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-field.svg +0 -0
  2816. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-front.svg +0 -0
  2817. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-loading.svg +0 -0
  2818. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-medical.svg +0 -0
  2819. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-monster.svg +0 -0
  2820. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-moving.svg +0 -0
  2821. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-pickup.svg +0 -0
  2822. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-plane.svg +0 -0
  2823. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-ramp-box.svg +0 -0
  2824. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck.svg +0 -0
  2825. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/try.svg +0 -0
  2826. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tshirt.svg +0 -0
  2827. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tty.svg +0 -0
  2828. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/turkish-lira-sign.svg +0 -0
  2829. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/turkish-lira.svg +0 -0
  2830. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/turn-down.svg +0 -0
  2831. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/turn-up.svg +0 -0
  2832. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tv-alt.svg +0 -0
  2833. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tv.svg +0 -0
  2834. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/u.svg +0 -0
  2835. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/umbrella-beach.svg +0 -0
  2836. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/umbrella.svg +0 -0
  2837. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/underline.svg +0 -0
  2838. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/undo-alt.svg +0 -0
  2839. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/undo.svg +0 -0
  2840. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/universal-access.svg +0 -0
  2841. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/university.svg +0 -0
  2842. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/unlink.svg +0 -0
  2843. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/unlock-alt.svg +0 -0
  2844. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/unlock-keyhole.svg +0 -0
  2845. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/unlock.svg +0 -0
  2846. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/unsorted.svg +0 -0
  2847. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/up-down-left-right.svg +0 -0
  2848. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/up-down.svg +0 -0
  2849. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/up-long.svg +0 -0
  2850. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/up-right-and-down-left-from-center.svg +0 -0
  2851. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/up-right-from-square.svg +0 -0
  2852. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/upload.svg +0 -0
  2853. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/usd.svg +0 -0
  2854. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-alt-slash.svg +0 -0
  2855. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-alt.svg +0 -0
  2856. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-astronaut.svg +0 -0
  2857. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-check.svg +0 -0
  2858. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-circle.svg +0 -0
  2859. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-clock.svg +0 -0
  2860. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-cog.svg +0 -0
  2861. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-doctor.svg +0 -0
  2862. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-edit.svg +0 -0
  2863. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-friends.svg +0 -0
  2864. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-gear.svg +0 -0
  2865. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-graduate.svg +0 -0
  2866. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-group.svg +0 -0
  2867. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-injured.svg +0 -0
  2868. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-large-slash.svg +0 -0
  2869. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-large.svg +0 -0
  2870. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-lock.svg +0 -0
  2871. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-md.svg +0 -0
  2872. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-minus.svg +0 -0
  2873. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-ninja.svg +0 -0
  2874. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-nurse.svg +0 -0
  2875. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-pen.svg +0 -0
  2876. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-plus.svg +0 -0
  2877. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-secret.svg +0 -0
  2878. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-shield.svg +0 -0
  2879. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-slash.svg +0 -0
  2880. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-tag.svg +0 -0
  2881. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-tie.svg +0 -0
  2882. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-times.svg +0 -0
  2883. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-xmark.svg +0 -0
  2884. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user.svg +0 -0
  2885. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-between-lines.svg +0 -0
  2886. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-cog.svg +0 -0
  2887. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-gear.svg +0 -0
  2888. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-line.svg +0 -0
  2889. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-rays.svg +0 -0
  2890. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-rectangle.svg +0 -0
  2891. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-slash.svg +0 -0
  2892. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-viewfinder.svg +0 -0
  2893. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users.svg +0 -0
  2894. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/utensil-spoon.svg +0 -0
  2895. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/utensils.svg +0 -0
  2896. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/v.svg +0 -0
  2897. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/van-shuttle.svg +0 -0
  2898. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vault.svg +0 -0
  2899. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vcard.svg +0 -0
  2900. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vector-polygon.svg +0 -0
  2901. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/venus-double.svg +0 -0
  2902. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/venus-mars.svg +0 -0
  2903. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/venus.svg +0 -0
  2904. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vest-patches.svg +0 -0
  2905. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vest.svg +0 -0
  2906. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vial-circle-check.svg +0 -0
  2907. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vial-virus.svg +0 -0
  2908. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vial.svg +0 -0
  2909. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vials.svg +0 -0
  2910. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/video-camera.svg +0 -0
  2911. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/video-slash.svg +0 -0
  2912. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/video.svg +0 -0
  2913. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vihara.svg +0 -0
  2914. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/virus-covid-slash.svg +0 -0
  2915. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/virus-covid.svg +0 -0
  2916. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/virus-slash.svg +0 -0
  2917. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/virus.svg +0 -0
  2918. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/viruses.svg +0 -0
  2919. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/voicemail.svg +0 -0
  2920. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volcano.svg +0 -0
  2921. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volleyball-ball.svg +0 -0
  2922. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volleyball.svg +0 -0
  2923. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-control-phone.svg +0 -0
  2924. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-down.svg +0 -0
  2925. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-high.svg +0 -0
  2926. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-low.svg +0 -0
  2927. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-mute.svg +0 -0
  2928. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-off.svg +0 -0
  2929. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-times.svg +0 -0
  2930. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-up.svg +0 -0
  2931. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-xmark.svg +0 -0
  2932. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vote-yea.svg +0 -0
  2933. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vr-cardboard.svg +0 -0
  2934. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/w.svg +0 -0
  2935. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/walkie-talkie.svg +0 -0
  2936. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/walking.svg +0 -0
  2937. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wallet.svg +0 -0
  2938. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wand-magic-sparkles.svg +0 -0
  2939. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wand-magic.svg +0 -0
  2940. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wand-sparkles.svg +0 -0
  2941. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/warehouse.svg +0 -0
  2942. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/warning.svg +0 -0
  2943. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/water-ladder.svg +0 -0
  2944. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/water.svg +0 -0
  2945. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wave-square.svg +0 -0
  2946. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/web-awesome.svg +0 -0
  2947. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/weight-hanging.svg +0 -0
  2948. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/weight-scale.svg +0 -0
  2949. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/weight.svg +0 -0
  2950. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wheat-alt.svg +0 -0
  2951. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wheat-awn-circle-exclamation.svg +0 -0
  2952. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wheat-awn.svg +0 -0
  2953. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wheelchair-alt.svg +0 -0
  2954. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wheelchair-move.svg +0 -0
  2955. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wheelchair.svg +0 -0
  2956. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/whiskey-glass.svg +0 -0
  2957. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wifi-3.svg +0 -0
  2958. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wifi-strong.svg +0 -0
  2959. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wifi.svg +0 -0
  2960. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wind.svg +0 -0
  2961. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/window-close.svg +0 -0
  2962. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/window-maximize.svg +0 -0
  2963. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/window-minimize.svg +0 -0
  2964. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/window-restore.svg +0 -0
  2965. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wine-bottle.svg +0 -0
  2966. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wine-glass-alt.svg +0 -0
  2967. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wine-glass-empty.svg +0 -0
  2968. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wine-glass.svg +0 -0
  2969. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/won-sign.svg +0 -0
  2970. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/won.svg +0 -0
  2971. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/worm.svg +0 -0
  2972. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wrench.svg +0 -0
  2973. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/x-ray.svg +0 -0
  2974. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/x.svg +0 -0
  2975. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/xmark-circle.svg +0 -0
  2976. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/xmark-square.svg +0 -0
  2977. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/xmark.svg +0 -0
  2978. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/xmarks-lines.svg +0 -0
  2979. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/y.svg +0 -0
  2980. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/yen-sign.svg +0 -0
  2981. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/yen.svg +0 -0
  2982. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/yin-yang.svg +0 -0
  2983. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/z.svg +0 -0
  2984. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/zap.svg +0 -0
  2985. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/11ty.svg +0 -0
  2986. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/42-group.svg +0 -0
  2987. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/500px.svg +0 -0
  2988. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/accessible-icon.svg +0 -0
  2989. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/accusoft.svg +0 -0
  2990. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/adn.svg +0 -0
  2991. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/adversal.svg +0 -0
  2992. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/affiliatetheme.svg +0 -0
  2993. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/airbnb.svg +0 -0
  2994. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/algolia.svg +0 -0
  2995. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/alipay.svg +0 -0
  2996. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/amazon-pay.svg +0 -0
  2997. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/amazon.svg +0 -0
  2998. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/amilia.svg +0 -0
  2999. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/android.svg +0 -0
  3000. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/angellist.svg +0 -0
  3001. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/angrycreative.svg +0 -0
  3002. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/angular.svg +0 -0
  3003. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/app-store-ios.svg +0 -0
  3004. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/app-store.svg +0 -0
  3005. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/apper.svg +0 -0
  3006. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/apple-pay.svg +0 -0
  3007. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/apple.svg +0 -0
  3008. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/artstation.svg +0 -0
  3009. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/asymmetrik.svg +0 -0
  3010. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/atlassian.svg +0 -0
  3011. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/audible.svg +0 -0
  3012. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/autoprefixer.svg +0 -0
  3013. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/avianex.svg +0 -0
  3014. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/aviato.svg +0 -0
  3015. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/aws.svg +0 -0
  3016. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bandcamp.svg +0 -0
  3017. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/battle-net.svg +0 -0
  3018. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/behance-square.svg +0 -0
  3019. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/behance.svg +0 -0
  3020. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bilibili.svg +0 -0
  3021. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bimobject.svg +0 -0
  3022. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bitbucket.svg +0 -0
  3023. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bitcoin.svg +0 -0
  3024. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bity.svg +0 -0
  3025. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/black-tie.svg +0 -0
  3026. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/blackberry.svg +0 -0
  3027. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/blogger-b.svg +0 -0
  3028. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/blogger.svg +0 -0
  3029. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bluesky.svg +0 -0
  3030. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bluetooth-b.svg +0 -0
  3031. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bluetooth.svg +0 -0
  3032. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bootstrap.svg +0 -0
  3033. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bots.svg +0 -0
  3034. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/brave-reverse.svg +0 -0
  3035. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/brave.svg +0 -0
  3036. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/btc.svg +0 -0
  3037. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/buffer.svg +0 -0
  3038. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/buromobelexperte.svg +0 -0
  3039. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/buy-n-large.svg +0 -0
  3040. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/buysellads.svg +0 -0
  3041. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/canadian-maple-leaf.svg +0 -0
  3042. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cash-app.svg +0 -0
  3043. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-amazon-pay.svg +0 -0
  3044. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-amex.svg +0 -0
  3045. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-apple-pay.svg +0 -0
  3046. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-diners-club.svg +0 -0
  3047. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-discover.svg +0 -0
  3048. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-jcb.svg +0 -0
  3049. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-mastercard.svg +0 -0
  3050. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-paypal.svg +0 -0
  3051. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-stripe.svg +0 -0
  3052. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-visa.svg +0 -0
  3053. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/centercode.svg +0 -0
  3054. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/centos.svg +0 -0
  3055. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/chrome.svg +0 -0
  3056. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/chromecast.svg +0 -0
  3057. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cloudflare.svg +0 -0
  3058. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cloudscale.svg +0 -0
  3059. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cloudsmith.svg +0 -0
  3060. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cloudversify.svg +0 -0
  3061. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cmplid.svg +0 -0
  3062. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/codepen.svg +0 -0
  3063. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/codiepie.svg +0 -0
  3064. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/confluence.svg +0 -0
  3065. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/connectdevelop.svg +0 -0
  3066. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/contao.svg +0 -0
  3067. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cotton-bureau.svg +0 -0
  3068. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cpanel.svg +0 -0
  3069. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-by.svg +0 -0
  3070. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-nc-eu.svg +0 -0
  3071. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-nc-jp.svg +0 -0
  3072. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-nc.svg +0 -0
  3073. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-nd.svg +0 -0
  3074. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-pd-alt.svg +0 -0
  3075. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-pd.svg +0 -0
  3076. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-remix.svg +0 -0
  3077. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-sa.svg +0 -0
  3078. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-sampling-plus.svg +0 -0
  3079. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-sampling.svg +0 -0
  3080. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-share.svg +0 -0
  3081. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-zero.svg +0 -0
  3082. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons.svg +0 -0
  3083. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/critical-role.svg +0 -0
  3084. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/css.svg +0 -0
  3085. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/css3-alt.svg +0 -0
  3086. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/css3.svg +0 -0
  3087. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cuttlefish.svg +0 -0
  3088. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/d-and-d-beyond.svg +0 -0
  3089. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/d-and-d.svg +0 -0
  3090. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dailymotion.svg +0 -0
  3091. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dart-lang.svg +0 -0
  3092. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dashcube.svg +0 -0
  3093. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/debian.svg +0 -0
  3094. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/deezer.svg +0 -0
  3095. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/delicious.svg +0 -0
  3096. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/deploydog.svg +0 -0
  3097. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/deskpro.svg +0 -0
  3098. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dev.svg +0 -0
  3099. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/deviantart.svg +0 -0
  3100. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dhl.svg +0 -0
  3101. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/diaspora.svg +0 -0
  3102. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/digg.svg +0 -0
  3103. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/digital-ocean.svg +0 -0
  3104. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/discord.svg +0 -0
  3105. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/discourse.svg +0 -0
  3106. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/disqus.svg +0 -0
  3107. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dochub.svg +0 -0
  3108. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/docker.svg +0 -0
  3109. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/draft2digital.svg +0 -0
  3110. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dribbble-square.svg +0 -0
  3111. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dribbble.svg +0 -0
  3112. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dropbox.svg +0 -0
  3113. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/drupal.svg +0 -0
  3114. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/duolingo.svg +0 -0
  3115. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dyalog.svg +0 -0
  3116. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/earlybirds.svg +0 -0
  3117. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ebay.svg +0 -0
  3118. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/edge-legacy.svg +0 -0
  3119. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/edge.svg +0 -0
  3120. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/elementor.svg +0 -0
  3121. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/eleventy.svg +0 -0
  3122. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ello.svg +0 -0
  3123. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ember.svg +0 -0
  3124. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/empire.svg +0 -0
  3125. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/envira.svg +0 -0
  3126. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/erlang.svg +0 -0
  3127. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ethereum.svg +0 -0
  3128. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/etsy.svg +0 -0
  3129. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/evernote.svg +0 -0
  3130. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/expeditedssl.svg +0 -0
  3131. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/facebook-f.svg +0 -0
  3132. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/facebook-messenger.svg +0 -0
  3133. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/facebook-square.svg +0 -0
  3134. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/facebook.svg +0 -0
  3135. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fantasy-flight-games.svg +0 -0
  3136. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fedex.svg +0 -0
  3137. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fedora.svg +0 -0
  3138. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/figma.svg +0 -0
  3139. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/files-pinwheel.svg +0 -0
  3140. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/firefox-browser.svg +0 -0
  3141. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/firefox.svg +0 -0
  3142. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/first-order-alt.svg +0 -0
  3143. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/first-order.svg +0 -0
  3144. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/firstdraft.svg +0 -0
  3145. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/flickr.svg +0 -0
  3146. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/flipboard.svg +0 -0
  3147. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/flutter.svg +0 -0
  3148. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fly.svg +0 -0
  3149. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/font-awesome-alt.svg +0 -0
  3150. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/font-awesome-flag.svg +0 -0
  3151. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/font-awesome-logo-full.svg +0 -0
  3152. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/font-awesome.svg +0 -0
  3153. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fonticons-fi.svg +0 -0
  3154. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fonticons.svg +0 -0
  3155. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fort-awesome-alt.svg +0 -0
  3156. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fort-awesome.svg +0 -0
  3157. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/forumbee.svg +0 -0
  3158. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/foursquare.svg +0 -0
  3159. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/free-code-camp.svg +0 -0
  3160. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/freebsd.svg +0 -0
  3161. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fulcrum.svg +0 -0
  3162. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/galactic-republic.svg +0 -0
  3163. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/galactic-senate.svg +0 -0
  3164. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/get-pocket.svg +0 -0
  3165. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gg-circle.svg +0 -0
  3166. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gg.svg +0 -0
  3167. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/git-alt.svg +0 -0
  3168. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/git-square.svg +0 -0
  3169. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/git.svg +0 -0
  3170. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/github-alt.svg +0 -0
  3171. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/github-square.svg +0 -0
  3172. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/github.svg +0 -0
  3173. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gitkraken.svg +0 -0
  3174. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gitlab-square.svg +0 -0
  3175. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gitlab.svg +0 -0
  3176. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gitter.svg +0 -0
  3177. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/glide-g.svg +0 -0
  3178. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/glide.svg +0 -0
  3179. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gofore.svg +0 -0
  3180. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/golang.svg +0 -0
  3181. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/goodreads-g.svg +0 -0
  3182. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/goodreads.svg +0 -0
  3183. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-drive.svg +0 -0
  3184. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-pay.svg +0 -0
  3185. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-play.svg +0 -0
  3186. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-plus-g.svg +0 -0
  3187. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-plus-square.svg +0 -0
  3188. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-plus.svg +0 -0
  3189. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-scholar.svg +0 -0
  3190. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-wallet.svg +0 -0
  3191. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google.svg +0 -0
  3192. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gratipay.svg +0 -0
  3193. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/grav.svg +0 -0
  3194. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gripfire.svg +0 -0
  3195. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/grunt.svg +0 -0
  3196. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/guilded.svg +0 -0
  3197. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gulp.svg +0 -0
  3198. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hacker-news-square.svg +0 -0
  3199. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hacker-news.svg +0 -0
  3200. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hackerrank.svg +0 -0
  3201. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hashnode.svg +0 -0
  3202. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hips.svg +0 -0
  3203. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hire-a-helper.svg +0 -0
  3204. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hive.svg +0 -0
  3205. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hooli.svg +0 -0
  3206. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hornbill.svg +0 -0
  3207. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hotjar.svg +0 -0
  3208. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/houzz.svg +0 -0
  3209. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/html5.svg +0 -0
  3210. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hubspot.svg +0 -0
  3211. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ideal.svg +0 -0
  3212. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/imdb.svg +0 -0
  3213. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/innosoft.svg +0 -0
  3214. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/instagram-square.svg +0 -0
  3215. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/instagram.svg +0 -0
  3216. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/instalod.svg +0 -0
  3217. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/intercom.svg +0 -0
  3218. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/internet-explorer.svg +0 -0
  3219. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/invision.svg +0 -0
  3220. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ioxhost.svg +0 -0
  3221. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/itch-io.svg +0 -0
  3222. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/itunes-note.svg +0 -0
  3223. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/itunes.svg +0 -0
  3224. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/java.svg +0 -0
  3225. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/jedi-order.svg +0 -0
  3226. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/jenkins.svg +0 -0
  3227. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/jira.svg +0 -0
  3228. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/joget.svg +0 -0
  3229. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/joomla.svg +0 -0
  3230. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/js-square.svg +0 -0
  3231. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/js.svg +0 -0
  3232. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/jsfiddle.svg +0 -0
  3233. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/jxl.svg +0 -0
  3234. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/kaggle.svg +0 -0
  3235. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/kakao-talk.svg +0 -0
  3236. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/keybase.svg +0 -0
  3237. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/keycdn.svg +0 -0
  3238. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/kickstarter-k.svg +0 -0
  3239. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/kickstarter.svg +0 -0
  3240. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/korvue.svg +0 -0
  3241. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/laravel.svg +0 -0
  3242. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/lastfm-square.svg +0 -0
  3243. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/lastfm.svg +0 -0
  3244. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/leanpub.svg +0 -0
  3245. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/less.svg +0 -0
  3246. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/letterboxd.svg +0 -0
  3247. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/line.svg +0 -0
  3248. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/linkedin-in.svg +0 -0
  3249. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/linkedin.svg +0 -0
  3250. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/linktree.svg +0 -0
  3251. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/linode.svg +0 -0
  3252. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/linux.svg +0 -0
  3253. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/lumon-drop.svg +0 -0
  3254. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/lumon.svg +0 -0
  3255. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/lyft.svg +0 -0
  3256. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/magento.svg +0 -0
  3257. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mailchimp.svg +0 -0
  3258. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mandalorian.svg +0 -0
  3259. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/markdown.svg +0 -0
  3260. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mastodon.svg +0 -0
  3261. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/maxcdn.svg +0 -0
  3262. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mdb.svg +0 -0
  3263. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/medapps.svg +0 -0
  3264. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/medium-m.svg +0 -0
  3265. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/medium.svg +0 -0
  3266. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/medrt.svg +0 -0
  3267. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/meetup.svg +0 -0
  3268. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/megaport.svg +0 -0
  3269. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mendeley.svg +0 -0
  3270. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/meta.svg +0 -0
  3271. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/microblog.svg +0 -0
  3272. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/microsoft.svg +0 -0
  3273. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mintbit.svg +0 -0
  3274. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mix.svg +0 -0
  3275. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mixcloud.svg +0 -0
  3276. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mixer.svg +0 -0
  3277. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mizuni.svg +0 -0
  3278. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/modx.svg +0 -0
  3279. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/monero.svg +0 -0
  3280. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/napster.svg +0 -0
  3281. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/neos.svg +0 -0
  3282. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/nfc-directional.svg +0 -0
  3283. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/nfc-symbol.svg +0 -0
  3284. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/nimblr.svg +0 -0
  3285. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/node-js.svg +0 -0
  3286. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/node.svg +0 -0
  3287. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/notion.svg +0 -0
  3288. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/npm.svg +0 -0
  3289. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ns8.svg +0 -0
  3290. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/nutritionix.svg +0 -0
  3291. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/octopus-deploy.svg +0 -0
  3292. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/odnoklassniki-square.svg +0 -0
  3293. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/odnoklassniki.svg +0 -0
  3294. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/odysee.svg +0 -0
  3295. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/old-republic.svg +0 -0
  3296. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/openai.svg +0 -0
  3297. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/opencart.svg +0 -0
  3298. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/openid.svg +0 -0
  3299. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/opensuse.svg +0 -0
  3300. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/opera.svg +0 -0
  3301. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/optin-monster.svg +0 -0
  3302. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/orcid.svg +0 -0
  3303. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/osi.svg +0 -0
  3304. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/padlet.svg +0 -0
  3305. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/page4.svg +0 -0
  3306. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pagelines.svg +0 -0
  3307. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/palfed.svg +0 -0
  3308. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pandora.svg +0 -0
  3309. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/patreon.svg +0 -0
  3310. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/paypal.svg +0 -0
  3311. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/perbyte.svg +0 -0
  3312. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/periscope.svg +0 -0
  3313. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/phabricator.svg +0 -0
  3314. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/phoenix-framework.svg +0 -0
  3315. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/phoenix-squadron.svg +0 -0
  3316. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/php.svg +0 -0
  3317. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pied-piper-alt.svg +0 -0
  3318. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pied-piper-hat.svg +0 -0
  3319. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pied-piper-pp.svg +0 -0
  3320. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pied-piper-square.svg +0 -0
  3321. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pied-piper.svg +0 -0
  3322. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pinterest-p.svg +0 -0
  3323. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pinterest-square.svg +0 -0
  3324. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pinterest.svg +0 -0
  3325. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pix.svg +0 -0
  3326. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pixelfed.svg +0 -0
  3327. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pixiv.svg +0 -0
  3328. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/playstation.svg +0 -0
  3329. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/product-hunt.svg +0 -0
  3330. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pushed.svg +0 -0
  3331. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/python.svg +0 -0
  3332. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/qq.svg +0 -0
  3333. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/quinscape.svg +0 -0
  3334. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/quora.svg +0 -0
  3335. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/r-project.svg +0 -0
  3336. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/raspberry-pi.svg +0 -0
  3337. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ravelry.svg +0 -0
  3338. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/react.svg +0 -0
  3339. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/reacteurope.svg +0 -0
  3340. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/readme.svg +0 -0
  3341. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/rebel.svg +0 -0
  3342. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/red-river.svg +0 -0
  3343. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/reddit-alien.svg +0 -0
  3344. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/reddit-square.svg +0 -0
  3345. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/reddit.svg +0 -0
  3346. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/redhat.svg +0 -0
  3347. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/rendact.svg +0 -0
  3348. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/renren.svg +0 -0
  3349. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/replyd.svg +0 -0
  3350. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/researchgate.svg +0 -0
  3351. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/resolving.svg +0 -0
  3352. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/rev.svg +0 -0
  3353. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/rocketchat.svg +0 -0
  3354. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/rockrms.svg +0 -0
  3355. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/rust.svg +0 -0
  3356. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/safari.svg +0 -0
  3357. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/salesforce.svg +0 -0
  3358. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sass.svg +0 -0
  3359. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/schlix.svg +0 -0
  3360. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/screenpal.svg +0 -0
  3361. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/scribd.svg +0 -0
  3362. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/searchengin.svg +0 -0
  3363. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sellcast.svg +0 -0
  3364. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sellsy.svg +0 -0
  3365. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/servicestack.svg +0 -0
  3366. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/shirtsinbulk.svg +0 -0
  3367. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/shoelace.svg +0 -0
  3368. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/shopify.svg +0 -0
  3369. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/shopware.svg +0 -0
  3370. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/signal-messenger.svg +0 -0
  3371. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/simplybuilt.svg +0 -0
  3372. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sistrix.svg +0 -0
  3373. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sith.svg +0 -0
  3374. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sitrox.svg +0 -0
  3375. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sketch.svg +0 -0
  3376. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/skyatlas.svg +0 -0
  3377. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/skype.svg +0 -0
  3378. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/slack-hash.svg +0 -0
  3379. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/slack.svg +0 -0
  3380. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/slideshare.svg +0 -0
  3381. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/snapchat-ghost.svg +0 -0
  3382. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/snapchat-square.svg +0 -0
  3383. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/snapchat.svg +0 -0
  3384. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/soundcloud.svg +0 -0
  3385. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sourcetree.svg +0 -0
  3386. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/space-awesome.svg +0 -0
  3387. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/speakap.svg +0 -0
  3388. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/speaker-deck.svg +0 -0
  3389. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/spotify.svg +0 -0
  3390. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-behance.svg +0 -0
  3391. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-bluesky.svg +0 -0
  3392. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-dribbble.svg +0 -0
  3393. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-facebook.svg +0 -0
  3394. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-figma.svg +0 -0
  3395. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-font-awesome-stroke.svg +0 -0
  3396. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-font-awesome.svg +0 -0
  3397. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-git.svg +0 -0
  3398. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-github.svg +0 -0
  3399. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-gitlab.svg +0 -0
  3400. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-google-plus.svg +0 -0
  3401. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-hacker-news.svg +0 -0
  3402. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-instagram.svg +0 -0
  3403. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-js.svg +0 -0
  3404. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-kickstarter.svg +0 -0
  3405. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-lastfm.svg +0 -0
  3406. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-letterboxd.svg +0 -0
  3407. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-linkedin.svg +0 -0
  3408. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-odnoklassniki.svg +0 -0
  3409. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-pied-piper.svg +0 -0
  3410. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-pinterest.svg +0 -0
  3411. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-reddit.svg +0 -0
  3412. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-snapchat.svg +0 -0
  3413. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-steam.svg +0 -0
  3414. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-threads.svg +0 -0
  3415. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-tumblr.svg +0 -0
  3416. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-twitter.svg +0 -0
  3417. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-upwork.svg +0 -0
  3418. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-viadeo.svg +0 -0
  3419. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-vimeo.svg +0 -0
  3420. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-web-awesome-stroke.svg +0 -0
  3421. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-web-awesome.svg +0 -0
  3422. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-whatsapp.svg +0 -0
  3423. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-x-twitter.svg +0 -0
  3424. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-xing.svg +0 -0
  3425. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-youtube.svg +0 -0
  3426. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/squarespace.svg +0 -0
  3427. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stack-exchange.svg +0 -0
  3428. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stack-overflow.svg +0 -0
  3429. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stackpath.svg +0 -0
  3430. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/staylinked.svg +0 -0
  3431. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/steam-square.svg +0 -0
  3432. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/steam-symbol.svg +0 -0
  3433. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/steam.svg +0 -0
  3434. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sticker-mule.svg +0 -0
  3435. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/strava.svg +0 -0
  3436. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stripe-s.svg +0 -0
  3437. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stripe.svg +0 -0
  3438. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stubber.svg +0 -0
  3439. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/studiovinari.svg +0 -0
  3440. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stumbleupon-circle.svg +0 -0
  3441. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stumbleupon.svg +0 -0
  3442. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/superpowers.svg +0 -0
  3443. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/supple.svg +0 -0
  3444. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/suse.svg +0 -0
  3445. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/swift.svg +0 -0
  3446. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/symfony.svg +0 -0
  3447. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/teamspeak.svg +0 -0
  3448. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/telegram-plane.svg +0 -0
  3449. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/telegram.svg +0 -0
  3450. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/tencent-weibo.svg +0 -0
  3451. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/tex.svg +0 -0
  3452. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/the-red-yeti.svg +0 -0
  3453. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/themeco.svg +0 -0
  3454. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/themeisle.svg +0 -0
  3455. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/think-peaks.svg +0 -0
  3456. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/threads.svg +0 -0
  3457. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/tidal.svg +0 -0
  3458. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/tiktok.svg +0 -0
  3459. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/trade-federation.svg +0 -0
  3460. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/trello.svg +0 -0
  3461. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/tumblr-square.svg +0 -0
  3462. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/tumblr.svg +0 -0
  3463. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/twitch.svg +0 -0
  3464. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/twitter-square.svg +0 -0
  3465. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/twitter.svg +0 -0
  3466. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/typo3.svg +0 -0
  3467. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/uber.svg +0 -0
  3468. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ubuntu.svg +0 -0
  3469. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/uikit.svg +0 -0
  3470. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/umbraco.svg +0 -0
  3471. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/uncharted.svg +0 -0
  3472. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/uniregistry.svg +0 -0
  3473. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/unity.svg +0 -0
  3474. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/unsplash.svg +0 -0
  3475. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/untappd.svg +0 -0
  3476. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ups.svg +0 -0
  3477. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/upwork.svg +0 -0
  3478. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/usb.svg +0 -0
  3479. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/usps.svg +0 -0
  3480. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ussunnah.svg +0 -0
  3481. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vaadin.svg +0 -0
  3482. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/viacoin.svg +0 -0
  3483. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/viadeo-square.svg +0 -0
  3484. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/viadeo.svg +0 -0
  3485. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/viber.svg +0 -0
  3486. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vimeo-square.svg +0 -0
  3487. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vimeo-v.svg +0 -0
  3488. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vimeo.svg +0 -0
  3489. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vine.svg +0 -0
  3490. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vk.svg +0 -0
  3491. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vnv.svg +0 -0
  3492. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vsco.svg +0 -0
  3493. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vuejs.svg +0 -0
  3494. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/w3c.svg +0 -0
  3495. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/watchman-monitoring.svg +0 -0
  3496. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/waze.svg +0 -0
  3497. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/web-awesome.svg +0 -0
  3498. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/webflow.svg +0 -0
  3499. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/weebly.svg +0 -0
  3500. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/weibo.svg +0 -0
  3501. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/weixin.svg +0 -0
  3502. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/whatsapp-square.svg +0 -0
  3503. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/whatsapp.svg +0 -0
  3504. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/whmcs.svg +0 -0
  3505. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wikipedia-w.svg +0 -0
  3506. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/windows.svg +0 -0
  3507. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wirsindhandwerk.svg +0 -0
  3508. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wix.svg +0 -0
  3509. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wizards-of-the-coast.svg +0 -0
  3510. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wodu.svg +0 -0
  3511. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wolf-pack-battalion.svg +0 -0
  3512. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wordpress-simple.svg +0 -0
  3513. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wordpress.svg +0 -0
  3514. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wpbeginner.svg +0 -0
  3515. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wpexplorer.svg +0 -0
  3516. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wpforms.svg +0 -0
  3517. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wpressr.svg +0 -0
  3518. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wsh.svg +0 -0
  3519. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/x-twitter.svg +0 -0
  3520. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/xbox.svg +0 -0
  3521. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/xing-square.svg +0 -0
  3522. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/xing.svg +0 -0
  3523. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/y-combinator.svg +0 -0
  3524. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yahoo.svg +0 -0
  3525. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yammer.svg +0 -0
  3526. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yandex-international.svg +0 -0
  3527. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yandex.svg +0 -0
  3528. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yarn.svg +0 -0
  3529. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yelp.svg +0 -0
  3530. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yoast.svg +0 -0
  3531. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/youtube-square.svg +0 -0
  3532. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/youtube.svg +0 -0
  3533. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/zhihu.svg +0 -0
  3534. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/address-book.svg +0 -0
  3535. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/address-card.svg +0 -0
  3536. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/alarm-clock.svg +0 -0
  3537. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/angry.svg +0 -0
  3538. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/arrow-alt-circle-down.svg +0 -0
  3539. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/arrow-alt-circle-left.svg +0 -0
  3540. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/arrow-alt-circle-right.svg +0 -0
  3541. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/arrow-alt-circle-up.svg +0 -0
  3542. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/bar-chart.svg +0 -0
  3543. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/bell-slash.svg +0 -0
  3544. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/bell.svg +0 -0
  3545. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/bookmark.svg +0 -0
  3546. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/building.svg +0 -0
  3547. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-alt.svg +0 -0
  3548. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-check.svg +0 -0
  3549. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-days.svg +0 -0
  3550. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-minus.svg +0 -0
  3551. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-plus.svg +0 -0
  3552. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-times.svg +0 -0
  3553. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-xmark.svg +0 -0
  3554. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar.svg +0 -0
  3555. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/camera-alt.svg +0 -0
  3556. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/camera.svg +0 -0
  3557. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/caret-square-down.svg +0 -0
  3558. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/caret-square-left.svg +0 -0
  3559. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/caret-square-right.svg +0 -0
  3560. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/caret-square-up.svg +0 -0
  3561. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chart-bar.svg +0 -0
  3562. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/check-circle.svg +0 -0
  3563. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/check-square.svg +0 -0
  3564. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chess-bishop.svg +0 -0
  3565. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chess-king.svg +0 -0
  3566. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chess-knight.svg +0 -0
  3567. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chess-pawn.svg +0 -0
  3568. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chess-queen.svg +0 -0
  3569. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chess-rook.svg +0 -0
  3570. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-check.svg +0 -0
  3571. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-dot.svg +0 -0
  3572. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-down.svg +0 -0
  3573. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-left.svg +0 -0
  3574. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-pause.svg +0 -0
  3575. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-play.svg +0 -0
  3576. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-question.svg +0 -0
  3577. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-right.svg +0 -0
  3578. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-stop.svg +0 -0
  3579. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-up.svg +0 -0
  3580. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-user.svg +0 -0
  3581. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-xmark.svg +0 -0
  3582. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle.svg +0 -0
  3583. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/clipboard.svg +0 -0
  3584. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/clock-four.svg +0 -0
  3585. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/clock.svg +0 -0
  3586. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/clone.svg +0 -0
  3587. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/closed-captioning.svg +0 -0
  3588. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/cloud.svg +0 -0
  3589. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/comment-alt.svg +0 -0
  3590. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/comment-dots.svg +0 -0
  3591. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/comment.svg +0 -0
  3592. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/commenting.svg +0 -0
  3593. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/comments.svg +0 -0
  3594. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/compass.svg +0 -0
  3595. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/contact-book.svg +0 -0
  3596. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/contact-card.svg +0 -0
  3597. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/copy.svg +0 -0
  3598. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/copyright.svg +0 -0
  3599. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/credit-card-alt.svg +0 -0
  3600. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/credit-card.svg +0 -0
  3601. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/dizzy.svg +0 -0
  3602. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/dot-circle.svg +0 -0
  3603. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/drivers-license.svg +0 -0
  3604. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/edit.svg +0 -0
  3605. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/envelope-open.svg +0 -0
  3606. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/envelope.svg +0 -0
  3607. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/eye-slash.svg +0 -0
  3608. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/eye.svg +0 -0
  3609. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-angry.svg +0 -0
  3610. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-dizzy.svg +0 -0
  3611. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-flushed.svg +0 -0
  3612. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-frown-open.svg +0 -0
  3613. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-frown.svg +0 -0
  3614. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grimace.svg +0 -0
  3615. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-beam-sweat.svg +0 -0
  3616. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-beam.svg +0 -0
  3617. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-hearts.svg +0 -0
  3618. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-squint-tears.svg +0 -0
  3619. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-squint.svg +0 -0
  3620. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-stars.svg +0 -0
  3621. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-tears.svg +0 -0
  3622. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-tongue-squint.svg +0 -0
  3623. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-tongue-wink.svg +0 -0
  3624. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-tongue.svg +0 -0
  3625. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-wide.svg +0 -0
  3626. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-wink.svg +0 -0
  3627. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin.svg +0 -0
  3628. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-kiss-beam.svg +0 -0
  3629. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-kiss-wink-heart.svg +0 -0
  3630. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-kiss.svg +0 -0
  3631. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-laugh-beam.svg +0 -0
  3632. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-laugh-squint.svg +0 -0
  3633. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-laugh-wink.svg +0 -0
  3634. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-laugh.svg +0 -0
  3635. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-meh-blank.svg +0 -0
  3636. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-meh.svg +0 -0
  3637. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-rolling-eyes.svg +0 -0
  3638. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-sad-cry.svg +0 -0
  3639. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-sad-tear.svg +0 -0
  3640. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-smile-beam.svg +0 -0
  3641. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-smile-wink.svg +0 -0
  3642. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-smile.svg +0 -0
  3643. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-surprise.svg +0 -0
  3644. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-tired.svg +0 -0
  3645. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-alt.svg +0 -0
  3646. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-archive.svg +0 -0
  3647. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-audio.svg +0 -0
  3648. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-clipboard.svg +0 -0
  3649. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-code.svg +0 -0
  3650. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-excel.svg +0 -0
  3651. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-image.svg +0 -0
  3652. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-lines.svg +0 -0
  3653. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-pdf.svg +0 -0
  3654. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-powerpoint.svg +0 -0
  3655. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-text.svg +0 -0
  3656. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-video.svg +0 -0
  3657. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-word.svg +0 -0
  3658. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-zipper.svg +0 -0
  3659. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file.svg +0 -0
  3660. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/flag.svg +0 -0
  3661. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/floppy-disk.svg +0 -0
  3662. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/flushed.svg +0 -0
  3663. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/folder-blank.svg +0 -0
  3664. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/folder-closed.svg +0 -0
  3665. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/folder-open.svg +0 -0
  3666. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/folder.svg +0 -0
  3667. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/font-awesome-flag.svg +0 -0
  3668. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/font-awesome-logo-full.svg +0 -0
  3669. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/font-awesome.svg +0 -0
  3670. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/frown-open.svg +0 -0
  3671. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/frown.svg +0 -0
  3672. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/futbol-ball.svg +0 -0
  3673. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/futbol.svg +0 -0
  3674. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/gem.svg +0 -0
  3675. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grimace.svg +0 -0
  3676. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-alt.svg +0 -0
  3677. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-beam-sweat.svg +0 -0
  3678. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-beam.svg +0 -0
  3679. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-hearts.svg +0 -0
  3680. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-squint-tears.svg +0 -0
  3681. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-squint.svg +0 -0
  3682. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-stars.svg +0 -0
  3683. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-tears.svg +0 -0
  3684. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-tongue-squint.svg +0 -0
  3685. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-tongue-wink.svg +0 -0
  3686. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-tongue.svg +0 -0
  3687. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-wink.svg +0 -0
  3688. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin.svg +0 -0
  3689. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-back-fist.svg +0 -0
  3690. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-lizard.svg +0 -0
  3691. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-paper.svg +0 -0
  3692. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-peace.svg +0 -0
  3693. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-point-down.svg +0 -0
  3694. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-point-left.svg +0 -0
  3695. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-point-right.svg +0 -0
  3696. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-point-up.svg +0 -0
  3697. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-pointer.svg +0 -0
  3698. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-rock.svg +0 -0
  3699. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-scissors.svg +0 -0
  3700. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-spock.svg +0 -0
  3701. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand.svg +0 -0
  3702. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/handshake-alt.svg +0 -0
  3703. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/handshake-simple.svg +0 -0
  3704. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/handshake.svg +0 -0
  3705. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hard-drive.svg +0 -0
  3706. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hdd.svg +0 -0
  3707. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/headphones-alt.svg +0 -0
  3708. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/headphones-simple.svg +0 -0
  3709. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/headphones.svg +0 -0
  3710. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/heart.svg +0 -0
  3711. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/home-alt.svg +0 -0
  3712. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/home-lg-alt.svg +0 -0
  3713. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/home.svg +0 -0
  3714. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hospital-alt.svg +0 -0
  3715. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hospital-wide.svg +0 -0
  3716. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hospital.svg +0 -0
  3717. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hourglass-2.svg +0 -0
  3718. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hourglass-empty.svg +0 -0
  3719. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hourglass-half.svg +0 -0
  3720. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hourglass.svg +0 -0
  3721. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/house.svg +0 -0
  3722. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/id-badge.svg +0 -0
  3723. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/id-card.svg +0 -0
  3724. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/image.svg +0 -0
  3725. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/images.svg +0 -0
  3726. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/keyboard.svg +0 -0
  3727. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/kiss-beam.svg +0 -0
  3728. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/kiss-wink-heart.svg +0 -0
  3729. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/kiss.svg +0 -0
  3730. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/laugh-beam.svg +0 -0
  3731. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/laugh-squint.svg +0 -0
  3732. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/laugh-wink.svg +0 -0
  3733. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/laugh.svg +0 -0
  3734. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/lemon.svg +0 -0
  3735. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/life-ring.svg +0 -0
  3736. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/lightbulb.svg +0 -0
  3737. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/list-alt.svg +0 -0
  3738. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/map.svg +0 -0
  3739. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/meh-blank.svg +0 -0
  3740. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/meh-rolling-eyes.svg +0 -0
  3741. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/meh.svg +0 -0
  3742. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/message.svg +0 -0
  3743. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/minus-square.svg +0 -0
  3744. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/money-bill-1.svg +0 -0
  3745. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/money-bill-alt.svg +0 -0
  3746. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/moon.svg +0 -0
  3747. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/newspaper.svg +0 -0
  3748. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/note-sticky.svg +0 -0
  3749. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/object-group.svg +0 -0
  3750. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/object-ungroup.svg +0 -0
  3751. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/paper-plane.svg +0 -0
  3752. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/paste.svg +0 -0
  3753. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/pause-circle.svg +0 -0
  3754. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/pen-to-square.svg +0 -0
  3755. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/play-circle.svg +0 -0
  3756. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/plus-square.svg +0 -0
  3757. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/question-circle.svg +0 -0
  3758. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/rectangle-list.svg +0 -0
  3759. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/rectangle-times.svg +0 -0
  3760. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/rectangle-xmark.svg +0 -0
  3761. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/registered.svg +0 -0
  3762. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/sad-cry.svg +0 -0
  3763. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/sad-tear.svg +0 -0
  3764. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/save.svg +0 -0
  3765. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/share-from-square.svg +0 -0
  3766. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/share-square.svg +0 -0
  3767. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/smile-beam.svg +0 -0
  3768. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/smile-wink.svg +0 -0
  3769. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/smile.svg +0 -0
  3770. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/snowflake.svg +0 -0
  3771. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/soccer-ball.svg +0 -0
  3772. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-caret-down.svg +0 -0
  3773. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-caret-left.svg +0 -0
  3774. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-caret-right.svg +0 -0
  3775. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-caret-up.svg +0 -0
  3776. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-check.svg +0 -0
  3777. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-full.svg +0 -0
  3778. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-minus.svg +0 -0
  3779. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-plus.svg +0 -0
  3780. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square.svg +0 -0
  3781. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/star-half-alt.svg +0 -0
  3782. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/star-half-stroke.svg +0 -0
  3783. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/star-half.svg +0 -0
  3784. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/star.svg +0 -0
  3785. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/sticky-note.svg +0 -0
  3786. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/stop-circle.svg +0 -0
  3787. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/sun.svg +0 -0
  3788. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/surprise.svg +0 -0
  3789. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/thumbs-down.svg +0 -0
  3790. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/thumbs-up.svg +0 -0
  3791. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/times-circle.svg +0 -0
  3792. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/times-rectangle.svg +0 -0
  3793. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/tired.svg +0 -0
  3794. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/trash-alt.svg +0 -0
  3795. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/trash-can.svg +0 -0
  3796. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/truck.svg +0 -0
  3797. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/user-alt.svg +0 -0
  3798. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/user-circle.svg +0 -0
  3799. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/user-large.svg +0 -0
  3800. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/user.svg +0 -0
  3801. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/vcard.svg +0 -0
  3802. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/window-close.svg +0 -0
  3803. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/window-maximize.svg +0 -0
  3804. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/window-minimize.svg +0 -0
  3805. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/window-restore.svg +0 -0
  3806. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/xmark-circle.svg +0 -0
  3807. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/0.svg +0 -0
  3808. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/1.svg +0 -0
  3809. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/2.svg +0 -0
  3810. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/3.svg +0 -0
  3811. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/4.svg +0 -0
  3812. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/5.svg +0 -0
  3813. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/6.svg +0 -0
  3814. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/7.svg +0 -0
  3815. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/8.svg +0 -0
  3816. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/9.svg +0 -0
  3817. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/a.svg +0 -0
  3818. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ad.svg +0 -0
  3819. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/add.svg +0 -0
  3820. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/address-book.svg +0 -0
  3821. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/address-card.svg +0 -0
  3822. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/adjust.svg +0 -0
  3823. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/air-freshener.svg +0 -0
  3824. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/alarm-clock.svg +0 -0
  3825. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/align-center.svg +0 -0
  3826. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/align-justify.svg +0 -0
  3827. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/align-left.svg +0 -0
  3828. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/align-right.svg +0 -0
  3829. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/allergies.svg +0 -0
  3830. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ambulance.svg +0 -0
  3831. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/american-sign-language-interpreting.svg +0 -0
  3832. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/anchor-circle-check.svg +0 -0
  3833. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/anchor-circle-exclamation.svg +0 -0
  3834. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/anchor-circle-xmark.svg +0 -0
  3835. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/anchor-lock.svg +0 -0
  3836. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/anchor.svg +0 -0
  3837. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-double-down.svg +0 -0
  3838. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-double-left.svg +0 -0
  3839. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-double-right.svg +0 -0
  3840. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-double-up.svg +0 -0
  3841. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-down.svg +0 -0
  3842. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-left.svg +0 -0
  3843. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-right.svg +0 -0
  3844. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-up.svg +0 -0
  3845. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angles-down.svg +0 -0
  3846. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angles-left.svg +0 -0
  3847. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angles-right.svg +0 -0
  3848. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angles-up.svg +0 -0
  3849. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angry.svg +0 -0
  3850. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ankh.svg +0 -0
  3851. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/apple-alt.svg +0 -0
  3852. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/apple-whole.svg +0 -0
  3853. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/archive.svg +0 -0
  3854. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/archway.svg +0 -0
  3855. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/area-chart.svg +0 -0
  3856. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-alt-circle-down.svg +0 -0
  3857. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-alt-circle-left.svg +0 -0
  3858. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-alt-circle-right.svg +0 -0
  3859. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-alt-circle-up.svg +0 -0
  3860. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-circle-down.svg +0 -0
  3861. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-circle-left.svg +0 -0
  3862. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-circle-right.svg +0 -0
  3863. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-circle-up.svg +0 -0
  3864. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-1-9.svg +0 -0
  3865. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-9-1.svg +0 -0
  3866. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-a-z.svg +0 -0
  3867. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-long.svg +0 -0
  3868. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-short-wide.svg +0 -0
  3869. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-up-across-line.svg +0 -0
  3870. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-up-lock.svg +0 -0
  3871. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-wide-short.svg +0 -0
  3872. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-z-a.svg +0 -0
  3873. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down.svg +0 -0
  3874. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-left-long.svg +0 -0
  3875. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-left-rotate.svg +0 -0
  3876. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-left.svg +0 -0
  3877. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-pointer.svg +0 -0
  3878. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-arrow-left.svg +0 -0
  3879. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-from-bracket.svg +0 -0
  3880. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-from-file.svg +0 -0
  3881. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-long.svg +0 -0
  3882. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-rotate.svg +0 -0
  3883. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-to-bracket.svg +0 -0
  3884. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-to-city.svg +0 -0
  3885. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-to-file.svg +0 -0
  3886. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right.svg +0 -0
  3887. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-rotate-back.svg +0 -0
  3888. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-rotate-backward.svg +0 -0
  3889. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-rotate-forward.svg +0 -0
  3890. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-rotate-left.svg +0 -0
  3891. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-rotate-right.svg +0 -0
  3892. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-trend-down.svg +0 -0
  3893. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-trend-up.svg +0 -0
  3894. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-turn-down.svg +0 -0
  3895. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-turn-up.svg +0 -0
  3896. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-1-9.svg +0 -0
  3897. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-9-1.svg +0 -0
  3898. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-a-z.svg +0 -0
  3899. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-from-bracket.svg +0 -0
  3900. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-from-ground-water.svg +0 -0
  3901. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-from-water-pump.svg +0 -0
  3902. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-long.svg +0 -0
  3903. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-right-dots.svg +0 -0
  3904. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-right-from-square.svg +0 -0
  3905. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-short-wide.svg +0 -0
  3906. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-wide-short.svg +0 -0
  3907. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-z-a.svg +0 -0
  3908. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up.svg +0 -0
  3909. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-alt-h.svg +0 -0
  3910. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-alt-v.svg +0 -0
  3911. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-alt.svg +0 -0
  3912. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-down-to-line.svg +0 -0
  3913. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-down-to-people.svg +0 -0
  3914. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-h.svg +0 -0
  3915. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-left-right-to-line.svg +0 -0
  3916. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-left-right.svg +0 -0
  3917. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-rotate.svg +0 -0
  3918. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-spin.svg +0 -0
  3919. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-split-up-and-left.svg +0 -0
  3920. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-to-circle.svg +0 -0
  3921. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-to-dot.svg +0 -0
  3922. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-to-eye.svg +0 -0
  3923. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-turn-right.svg +0 -0
  3924. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-turn-to-dots.svg +0 -0
  3925. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-up-down-left-right.svg +0 -0
  3926. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-up-down.svg +0 -0
  3927. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-up-to-line.svg +0 -0
  3928. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-v.svg +0 -0
  3929. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows.svg +0 -0
  3930. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/asl-interpreting.svg +0 -0
  3931. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/assistive-listening-systems.svg +0 -0
  3932. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/asterisk.svg +0 -0
  3933. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/at.svg +0 -0
  3934. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/atlas.svg +0 -0
  3935. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/atom.svg +0 -0
  3936. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/audio-description.svg +0 -0
  3937. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/austral-sign.svg +0 -0
  3938. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/automobile.svg +0 -0
  3939. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/award.svg +0 -0
  3940. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/b.svg +0 -0
  3941. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/baby-carriage.svg +0 -0
  3942. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/baby.svg +0 -0
  3943. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/backspace.svg +0 -0
  3944. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/backward-fast.svg +0 -0
  3945. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/backward-step.svg +0 -0
  3946. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/backward.svg +0 -0
  3947. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bacon.svg +0 -0
  3948. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bacteria.svg +0 -0
  3949. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bacterium.svg +0 -0
  3950. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bag-shopping.svg +0 -0
  3951. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bahai.svg +0 -0
  3952. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/baht-sign.svg +0 -0
  3953. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/balance-scale-left.svg +0 -0
  3954. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/balance-scale-right.svg +0 -0
  3955. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/balance-scale.svg +0 -0
  3956. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ban-smoking.svg +0 -0
  3957. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ban.svg +0 -0
  3958. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/band-aid.svg +0 -0
  3959. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bandage.svg +0 -0
  3960. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bangladeshi-taka-sign.svg +0 -0
  3961. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bank.svg +0 -0
  3962. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bar-chart.svg +0 -0
  3963. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/barcode.svg +0 -0
  3964. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bars-progress.svg +0 -0
  3965. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bars-staggered.svg +0 -0
  3966. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bars.svg +0 -0
  3967. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/baseball-ball.svg +0 -0
  3968. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/baseball-bat-ball.svg +0 -0
  3969. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/baseball.svg +0 -0
  3970. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/basket-shopping.svg +0 -0
  3971. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/basketball-ball.svg +0 -0
  3972. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/basketball.svg +0 -0
  3973. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bath.svg +0 -0
  3974. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bathtub.svg +0 -0
  3975. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-0.svg +0 -0
  3976. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-2.svg +0 -0
  3977. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-3.svg +0 -0
  3978. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-4.svg +0 -0
  3979. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-5.svg +0 -0
  3980. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-car.svg +0 -0
  3981. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-empty.svg +0 -0
  3982. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-full.svg +0 -0
  3983. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-half.svg +0 -0
  3984. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-quarter.svg +0 -0
  3985. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-three-quarters.svg +0 -0
  3986. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery.svg +0 -0
  3987. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bed-pulse.svg +0 -0
  3988. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bed.svg +0 -0
  3989. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/beer-mug-empty.svg +0 -0
  3990. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/beer.svg +0 -0
  3991. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bell-concierge.svg +0 -0
  3992. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bell-slash.svg +0 -0
  3993. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bell.svg +0 -0
  3994. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bezier-curve.svg +0 -0
  3995. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bible.svg +0 -0
  3996. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bicycle.svg +0 -0
  3997. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/biking.svg +0 -0
  3998. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/binoculars.svg +0 -0
  3999. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/biohazard.svg +0 -0
  4000. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/birthday-cake.svg +0 -0
  4001. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bitcoin-sign.svg +0 -0
  4002. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/blackboard.svg +0 -0
  4003. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/blender-phone.svg +0 -0
  4004. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/blender.svg +0 -0
  4005. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/blind.svg +0 -0
  4006. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/blog.svg +0 -0
  4007. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bold.svg +0 -0
  4008. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bolt-lightning.svg +0 -0
  4009. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bolt.svg +0 -0
  4010. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bomb.svg +0 -0
  4011. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bone.svg +0 -0
  4012. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bong.svg +0 -0
  4013. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-atlas.svg +0 -0
  4014. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-bible.svg +0 -0
  4015. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-bookmark.svg +0 -0
  4016. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-dead.svg +0 -0
  4017. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-journal-whills.svg +0 -0
  4018. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-medical.svg +0 -0
  4019. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-open-reader.svg +0 -0
  4020. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-open.svg +0 -0
  4021. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-quran.svg +0 -0
  4022. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-reader.svg +0 -0
  4023. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-skull.svg +0 -0
  4024. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-tanakh.svg +0 -0
  4025. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book.svg +0 -0
  4026. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bookmark.svg +0 -0
  4027. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/border-all.svg +0 -0
  4028. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/border-none.svg +0 -0
  4029. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/border-style.svg +0 -0
  4030. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/border-top-left.svg +0 -0
  4031. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bore-hole.svg +0 -0
  4032. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bottle-droplet.svg +0 -0
  4033. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bottle-water.svg +0 -0
  4034. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bowl-food.svg +0 -0
  4035. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bowl-rice.svg +0 -0
  4036. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bowling-ball.svg +0 -0
  4037. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/box-archive.svg +0 -0
  4038. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/box-open.svg +0 -0
  4039. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/box-tissue.svg +0 -0
  4040. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/box.svg +0 -0
  4041. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/boxes-alt.svg +0 -0
  4042. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/boxes-packing.svg +0 -0
  4043. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/boxes-stacked.svg +0 -0
  4044. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/boxes.svg +0 -0
  4045. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/braille.svg +0 -0
  4046. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/brain.svg +0 -0
  4047. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/brazilian-real-sign.svg +0 -0
  4048. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bread-slice.svg +0 -0
  4049. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bridge-circle-check.svg +0 -0
  4050. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bridge-circle-exclamation.svg +0 -0
  4051. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bridge-circle-xmark.svg +0 -0
  4052. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bridge-lock.svg +0 -0
  4053. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bridge-water.svg +0 -0
  4054. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bridge.svg +0 -0
  4055. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/briefcase-clock.svg +0 -0
  4056. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/briefcase-medical.svg +0 -0
  4057. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/briefcase.svg +0 -0
  4058. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/broadcast-tower.svg +0 -0
  4059. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/broom-ball.svg +0 -0
  4060. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/broom.svg +0 -0
  4061. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/brush.svg +0 -0
  4062. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bucket.svg +0 -0
  4063. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bug-slash.svg +0 -0
  4064. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bug.svg +0 -0
  4065. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bugs.svg +0 -0
  4066. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-circle-arrow-right.svg +0 -0
  4067. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-circle-check.svg +0 -0
  4068. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-circle-exclamation.svg +0 -0
  4069. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-circle-xmark.svg +0 -0
  4070. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-columns.svg +0 -0
  4071. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-flag.svg +0 -0
  4072. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-lock.svg +0 -0
  4073. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-ngo.svg +0 -0
  4074. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-shield.svg +0 -0
  4075. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-un.svg +0 -0
  4076. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-user.svg +0 -0
  4077. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-wheat.svg +0 -0
  4078. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building.svg +0 -0
  4079. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bullhorn.svg +0 -0
  4080. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bullseye.svg +0 -0
  4081. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/burger.svg +0 -0
  4082. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/burn.svg +0 -0
  4083. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/burst.svg +0 -0
  4084. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bus-alt.svg +0 -0
  4085. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bus-side.svg +0 -0
  4086. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bus-simple.svg +0 -0
  4087. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bus.svg +0 -0
  4088. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/business-time.svg +0 -0
  4089. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/c.svg +0 -0
  4090. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cab.svg +0 -0
  4091. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cable-car.svg +0 -0
  4092. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cake-candles.svg +0 -0
  4093. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cake.svg +0 -0
  4094. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calculator.svg +0 -0
  4095. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-alt.svg +0 -0
  4096. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-check.svg +0 -0
  4097. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-day.svg +0 -0
  4098. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-days.svg +0 -0
  4099. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-minus.svg +0 -0
  4100. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-plus.svg +0 -0
  4101. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-times.svg +0 -0
  4102. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-week.svg +0 -0
  4103. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-xmark.svg +0 -0
  4104. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar.svg +0 -0
  4105. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/camera-alt.svg +0 -0
  4106. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/camera-retro.svg +0 -0
  4107. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/camera-rotate.svg +0 -0
  4108. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/camera.svg +0 -0
  4109. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/campground.svg +0 -0
  4110. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cancel.svg +0 -0
  4111. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/candy-cane.svg +0 -0
  4112. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cannabis.svg +0 -0
  4113. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/capsules.svg +0 -0
  4114. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-alt.svg +0 -0
  4115. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-battery.svg +0 -0
  4116. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-burst.svg +0 -0
  4117. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-crash.svg +0 -0
  4118. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-on.svg +0 -0
  4119. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-rear.svg +0 -0
  4120. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-side.svg +0 -0
  4121. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-tunnel.svg +0 -0
  4122. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car.svg +0 -0
  4123. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caravan.svg +0 -0
  4124. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-down.svg +0 -0
  4125. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-left.svg +0 -0
  4126. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-right.svg +0 -0
  4127. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-square-down.svg +0 -0
  4128. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-square-left.svg +0 -0
  4129. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-square-right.svg +0 -0
  4130. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-square-up.svg +0 -0
  4131. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-up.svg +0 -0
  4132. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/carriage-baby.svg +0 -0
  4133. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/carrot.svg +0 -0
  4134. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cart-arrow-down.svg +0 -0
  4135. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cart-flatbed-suitcase.svg +0 -0
  4136. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cart-flatbed.svg +0 -0
  4137. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cart-plus.svg +0 -0
  4138. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cart-shopping.svg +0 -0
  4139. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cash-register.svg +0 -0
  4140. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cat.svg +0 -0
  4141. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cedi-sign.svg +0 -0
  4142. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cent-sign.svg +0 -0
  4143. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/certificate.svg +0 -0
  4144. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chain-broken.svg +0 -0
  4145. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chain-slash.svg +0 -0
  4146. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chain.svg +0 -0
  4147. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chair.svg +0 -0
  4148. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chalkboard-teacher.svg +0 -0
  4149. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chalkboard-user.svg +0 -0
  4150. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chalkboard.svg +0 -0
  4151. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/champagne-glasses.svg +0 -0
  4152. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/charging-station.svg +0 -0
  4153. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-area.svg +0 -0
  4154. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-bar.svg +0 -0
  4155. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-column.svg +0 -0
  4156. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-diagram.svg +0 -0
  4157. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-gantt.svg +0 -0
  4158. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-line.svg +0 -0
  4159. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-pie.svg +0 -0
  4160. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-simple.svg +0 -0
  4161. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/check-circle.svg +0 -0
  4162. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/check-double.svg +0 -0
  4163. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/check-square.svg +0 -0
  4164. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/check-to-slot.svg +0 -0
  4165. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/check.svg +0 -0
  4166. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cheese.svg +0 -0
  4167. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-bishop.svg +0 -0
  4168. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-board.svg +0 -0
  4169. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-king.svg +0 -0
  4170. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-knight.svg +0 -0
  4171. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-pawn.svg +0 -0
  4172. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-queen.svg +0 -0
  4173. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-rook.svg +0 -0
  4174. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess.svg +0 -0
  4175. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-circle-down.svg +0 -0
  4176. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-circle-left.svg +0 -0
  4177. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-circle-right.svg +0 -0
  4178. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-circle-up.svg +0 -0
  4179. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-down.svg +0 -0
  4180. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-left.svg +0 -0
  4181. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-right.svg +0 -0
  4182. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-up.svg +0 -0
  4183. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/child-combatant.svg +0 -0
  4184. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/child-dress.svg +0 -0
  4185. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/child-reaching.svg +0 -0
  4186. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/child-rifle.svg +0 -0
  4187. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/child.svg +0 -0
  4188. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/children.svg +0 -0
  4189. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/church.svg +0 -0
  4190. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-arrow-down.svg +0 -0
  4191. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-arrow-left.svg +0 -0
  4192. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-arrow-right.svg +0 -0
  4193. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-arrow-up.svg +0 -0
  4194. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-check.svg +0 -0
  4195. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-chevron-down.svg +0 -0
  4196. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-chevron-left.svg +0 -0
  4197. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-chevron-right.svg +0 -0
  4198. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-chevron-up.svg +0 -0
  4199. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-dollar-to-slot.svg +0 -0
  4200. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-dot.svg +0 -0
  4201. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-down.svg +0 -0
  4202. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-exclamation.svg +0 -0
  4203. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-h.svg +0 -0
  4204. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-half-stroke.svg +0 -0
  4205. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-info.svg +0 -0
  4206. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-left.svg +0 -0
  4207. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-minus.svg +0 -0
  4208. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-nodes.svg +0 -0
  4209. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-notch.svg +0 -0
  4210. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-pause.svg +0 -0
  4211. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-play.svg +0 -0
  4212. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-plus.svg +0 -0
  4213. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-question.svg +0 -0
  4214. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-radiation.svg +0 -0
  4215. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-right.svg +0 -0
  4216. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-stop.svg +0 -0
  4217. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-up.svg +0 -0
  4218. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-user.svg +0 -0
  4219. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-xmark.svg +0 -0
  4220. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle.svg +0 -0
  4221. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/city.svg +0 -0
  4222. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clapperboard.svg +0 -0
  4223. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clinic-medical.svg +0 -0
  4224. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clipboard-check.svg +0 -0
  4225. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clipboard-list.svg +0 -0
  4226. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clipboard-question.svg +0 -0
  4227. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clipboard-user.svg +0 -0
  4228. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clipboard.svg +0 -0
  4229. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clock-four.svg +0 -0
  4230. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clock-rotate-left.svg +0 -0
  4231. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clock.svg +0 -0
  4232. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clone.svg +0 -0
  4233. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/close.svg +0 -0
  4234. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/closed-captioning.svg +0 -0
  4235. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-arrow-down.svg +0 -0
  4236. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-arrow-up.svg +0 -0
  4237. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-bolt.svg +0 -0
  4238. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-download-alt.svg +0 -0
  4239. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-download.svg +0 -0
  4240. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-meatball.svg +0 -0
  4241. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-moon-rain.svg +0 -0
  4242. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-moon.svg +0 -0
  4243. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-rain.svg +0 -0
  4244. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-showers-heavy.svg +0 -0
  4245. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-showers-water.svg +0 -0
  4246. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-sun-rain.svg +0 -0
  4247. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-sun.svg +0 -0
  4248. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-upload-alt.svg +0 -0
  4249. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-upload.svg +0 -0
  4250. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud.svg +0 -0
  4251. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clover.svg +0 -0
  4252. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cny.svg +0 -0
  4253. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cocktail.svg +0 -0
  4254. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code-branch.svg +0 -0
  4255. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code-commit.svg +0 -0
  4256. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code-compare.svg +0 -0
  4257. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code-fork.svg +0 -0
  4258. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code-merge.svg +0 -0
  4259. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code-pull-request.svg +0 -0
  4260. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code.svg +0 -0
  4261. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/coffee.svg +0 -0
  4262. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cog.svg +0 -0
  4263. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cogs.svg +0 -0
  4264. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/coins.svg +0 -0
  4265. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/colon-sign.svg +0 -0
  4266. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/columns.svg +0 -0
  4267. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-alt.svg +0 -0
  4268. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-dollar.svg +0 -0
  4269. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-dots.svg +0 -0
  4270. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-medical.svg +0 -0
  4271. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-nodes.svg +0 -0
  4272. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-slash.svg +0 -0
  4273. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-sms.svg +0 -0
  4274. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment.svg +0 -0
  4275. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/commenting.svg +0 -0
  4276. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comments-dollar.svg +0 -0
  4277. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comments.svg +0 -0
  4278. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/compact-disc.svg +0 -0
  4279. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/compass-drafting.svg +0 -0
  4280. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/compass.svg +0 -0
  4281. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/compress-alt.svg +0 -0
  4282. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/compress-arrows-alt.svg +0 -0
  4283. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/compress.svg +0 -0
  4284. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/computer-mouse.svg +0 -0
  4285. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/computer.svg +0 -0
  4286. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/concierge-bell.svg +0 -0
  4287. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/contact-book.svg +0 -0
  4288. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/contact-card.svg +0 -0
  4289. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cookie-bite.svg +0 -0
  4290. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cookie.svg +0 -0
  4291. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/copy.svg +0 -0
  4292. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/copyright.svg +0 -0
  4293. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/couch.svg +0 -0
  4294. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cow.svg +0 -0
  4295. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/credit-card-alt.svg +0 -0
  4296. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/credit-card.svg +0 -0
  4297. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crop-alt.svg +0 -0
  4298. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crop-simple.svg +0 -0
  4299. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crop.svg +0 -0
  4300. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cross.svg +0 -0
  4301. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crosshairs.svg +0 -0
  4302. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crow.svg +0 -0
  4303. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crown.svg +0 -0
  4304. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crutch.svg +0 -0
  4305. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cruzeiro-sign.svg +0 -0
  4306. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cube.svg +0 -0
  4307. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cubes-stacked.svg +0 -0
  4308. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cubes.svg +0 -0
  4309. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cut.svg +0 -0
  4310. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cutlery.svg +0 -0
  4311. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/d.svg +0 -0
  4312. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dashboard.svg +0 -0
  4313. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/database.svg +0 -0
  4314. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/deaf.svg +0 -0
  4315. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/deafness.svg +0 -0
  4316. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dedent.svg +0 -0
  4317. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/delete-left.svg +0 -0
  4318. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/democrat.svg +0 -0
  4319. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/desktop-alt.svg +0 -0
  4320. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/desktop.svg +0 -0
  4321. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dharmachakra.svg +0 -0
  4322. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diagnoses.svg +0 -0
  4323. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diagram-next.svg +0 -0
  4324. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diagram-predecessor.svg +0 -0
  4325. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diagram-project.svg +0 -0
  4326. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diagram-successor.svg +0 -0
  4327. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diamond-turn-right.svg +0 -0
  4328. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diamond.svg +0 -0
  4329. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-d20.svg +0 -0
  4330. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-d6.svg +0 -0
  4331. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-five.svg +0 -0
  4332. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-four.svg +0 -0
  4333. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-one.svg +0 -0
  4334. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-six.svg +0 -0
  4335. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-three.svg +0 -0
  4336. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-two.svg +0 -0
  4337. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice.svg +0 -0
  4338. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/digging.svg +0 -0
  4339. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/digital-tachograph.svg +0 -0
  4340. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/directions.svg +0 -0
  4341. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/disease.svg +0 -0
  4342. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/display.svg +0 -0
  4343. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/divide.svg +0 -0
  4344. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dizzy.svg +0 -0
  4345. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dna.svg +0 -0
  4346. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dog.svg +0 -0
  4347. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dollar-sign.svg +0 -0
  4348. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dollar.svg +0 -0
  4349. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dolly-box.svg +0 -0
  4350. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dolly-flatbed.svg +0 -0
  4351. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dolly.svg +0 -0
  4352. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/donate.svg +0 -0
  4353. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dong-sign.svg +0 -0
  4354. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/door-closed.svg +0 -0
  4355. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/door-open.svg +0 -0
  4356. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dot-circle.svg +0 -0
  4357. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dove.svg +0 -0
  4358. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/down-left-and-up-right-to-center.svg +0 -0
  4359. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/down-long.svg +0 -0
  4360. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/download.svg +0 -0
  4361. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/drafting-compass.svg +0 -0
  4362. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dragon.svg +0 -0
  4363. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/draw-polygon.svg +0 -0
  4364. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/drivers-license.svg +0 -0
  4365. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/droplet-slash.svg +0 -0
  4366. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/droplet.svg +0 -0
  4367. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/drum-steelpan.svg +0 -0
  4368. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/drum.svg +0 -0
  4369. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/drumstick-bite.svg +0 -0
  4370. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dumbbell.svg +0 -0
  4371. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dumpster-fire.svg +0 -0
  4372. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dumpster.svg +0 -0
  4373. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dungeon.svg +0 -0
  4374. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/e.svg +0 -0
  4375. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ear-deaf.svg +0 -0
  4376. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ear-listen.svg +0 -0
  4377. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth-africa.svg +0 -0
  4378. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth-america.svg +0 -0
  4379. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth-americas.svg +0 -0
  4380. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth-asia.svg +0 -0
  4381. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth-europe.svg +0 -0
  4382. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth-oceania.svg +0 -0
  4383. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth.svg +0 -0
  4384. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/edit.svg +0 -0
  4385. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/egg.svg +0 -0
  4386. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eject.svg +0 -0
  4387. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/elevator.svg +0 -0
  4388. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ellipsis-h.svg +0 -0
  4389. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ellipsis-v.svg +0 -0
  4390. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ellipsis-vertical.svg +0 -0
  4391. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ellipsis.svg +0 -0
  4392. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/envelope-circle-check.svg +0 -0
  4393. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/envelope-open-text.svg +0 -0
  4394. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/envelope-open.svg +0 -0
  4395. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/envelope-square.svg +0 -0
  4396. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/envelope.svg +0 -0
  4397. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/envelopes-bulk.svg +0 -0
  4398. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/equals.svg +0 -0
  4399. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eraser.svg +0 -0
  4400. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ethernet.svg +0 -0
  4401. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eur.svg +0 -0
  4402. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/euro-sign.svg +0 -0
  4403. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/euro.svg +0 -0
  4404. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/exchange-alt.svg +0 -0
  4405. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/exchange.svg +0 -0
  4406. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/exclamation-circle.svg +0 -0
  4407. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/exclamation-triangle.svg +0 -0
  4408. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/exclamation.svg +0 -0
  4409. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/expand-alt.svg +0 -0
  4410. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/expand-arrows-alt.svg +0 -0
  4411. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/expand.svg +0 -0
  4412. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/explosion.svg +0 -0
  4413. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/external-link-alt.svg +0 -0
  4414. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/external-link-square-alt.svg +0 -0
  4415. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/external-link-square.svg +0 -0
  4416. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/external-link.svg +0 -0
  4417. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eye-dropper-empty.svg +0 -0
  4418. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eye-dropper.svg +0 -0
  4419. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eye-low-vision.svg +0 -0
  4420. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eye-slash.svg +0 -0
  4421. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eye.svg +0 -0
  4422. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eyedropper.svg +0 -0
  4423. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/f.svg +0 -0
  4424. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-angry.svg +0 -0
  4425. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-dizzy.svg +0 -0
  4426. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-flushed.svg +0 -0
  4427. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-frown-open.svg +0 -0
  4428. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-frown.svg +0 -0
  4429. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grimace.svg +0 -0
  4430. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-beam-sweat.svg +0 -0
  4431. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-beam.svg +0 -0
  4432. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-hearts.svg +0 -0
  4433. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-squint-tears.svg +0 -0
  4434. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-squint.svg +0 -0
  4435. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-stars.svg +0 -0
  4436. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-tears.svg +0 -0
  4437. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-tongue-squint.svg +0 -0
  4438. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-tongue-wink.svg +0 -0
  4439. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-tongue.svg +0 -0
  4440. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-wide.svg +0 -0
  4441. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-wink.svg +0 -0
  4442. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin.svg +0 -0
  4443. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-kiss-beam.svg +0 -0
  4444. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-kiss-wink-heart.svg +0 -0
  4445. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-kiss.svg +0 -0
  4446. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-laugh-beam.svg +0 -0
  4447. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-laugh-squint.svg +0 -0
  4448. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-laugh-wink.svg +0 -0
  4449. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-laugh.svg +0 -0
  4450. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-meh-blank.svg +0 -0
  4451. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-meh.svg +0 -0
  4452. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-rolling-eyes.svg +0 -0
  4453. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-sad-cry.svg +0 -0
  4454. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-sad-tear.svg +0 -0
  4455. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-smile-beam.svg +0 -0
  4456. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-smile-wink.svg +0 -0
  4457. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-smile.svg +0 -0
  4458. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-surprise.svg +0 -0
  4459. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-tired.svg +0 -0
  4460. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fan.svg +0 -0
  4461. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fast-backward.svg +0 -0
  4462. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fast-forward.svg +0 -0
  4463. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/faucet-drip.svg +0 -0
  4464. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/faucet.svg +0 -0
  4465. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fax.svg +0 -0
  4466. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/feather-alt.svg +0 -0
  4467. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/feather-pointed.svg +0 -0
  4468. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/feather.svg +0 -0
  4469. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/feed.svg +0 -0
  4470. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/female.svg +0 -0
  4471. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ferry.svg +0 -0
  4472. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fighter-jet.svg +0 -0
  4473. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-alt.svg +0 -0
  4474. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-archive.svg +0 -0
  4475. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-arrow-down.svg +0 -0
  4476. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-arrow-up.svg +0 -0
  4477. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-audio.svg +0 -0
  4478. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-circle-check.svg +0 -0
  4479. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-circle-exclamation.svg +0 -0
  4480. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-circle-minus.svg +0 -0
  4481. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-circle-plus.svg +0 -0
  4482. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-circle-question.svg +0 -0
  4483. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-circle-xmark.svg +0 -0
  4484. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-clipboard.svg +0 -0
  4485. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-code.svg +0 -0
  4486. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-contract.svg +0 -0
  4487. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-csv.svg +0 -0
  4488. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-download.svg +0 -0
  4489. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-edit.svg +0 -0
  4490. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-excel.svg +0 -0
  4491. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-export.svg +0 -0
  4492. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-fragment.svg +0 -0
  4493. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-half-dashed.svg +0 -0
  4494. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-image.svg +0 -0
  4495. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-import.svg +0 -0
  4496. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-invoice-dollar.svg +0 -0
  4497. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-invoice.svg +0 -0
  4498. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-lines.svg +0 -0
  4499. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-medical-alt.svg +0 -0
  4500. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-medical.svg +0 -0
  4501. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-pdf.svg +0 -0
  4502. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-pen.svg +0 -0
  4503. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-powerpoint.svg +0 -0
  4504. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-prescription.svg +0 -0
  4505. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-shield.svg +0 -0
  4506. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-signature.svg +0 -0
  4507. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-text.svg +0 -0
  4508. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-upload.svg +0 -0
  4509. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-video.svg +0 -0
  4510. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-waveform.svg +0 -0
  4511. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-word.svg +0 -0
  4512. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-zipper.svg +0 -0
  4513. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file.svg +0 -0
  4514. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fill-drip.svg +0 -0
  4515. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fill.svg +0 -0
  4516. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/film-alt.svg +0 -0
  4517. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/film-simple.svg +0 -0
  4518. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/film.svg +0 -0
  4519. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/filter-circle-dollar.svg +0 -0
  4520. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/filter-circle-xmark.svg +0 -0
  4521. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/filter.svg +0 -0
  4522. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fingerprint.svg +0 -0
  4523. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fire-alt.svg +0 -0
  4524. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fire-burner.svg +0 -0
  4525. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fire-extinguisher.svg +0 -0
  4526. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fire-flame-curved.svg +0 -0
  4527. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fire-flame-simple.svg +0 -0
  4528. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fire.svg +0 -0
  4529. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/first-aid.svg +0 -0
  4530. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fish-fins.svg +0 -0
  4531. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fish.svg +0 -0
  4532. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fist-raised.svg +0 -0
  4533. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/flag-checkered.svg +0 -0
  4534. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/flag-usa.svg +0 -0
  4535. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/flag.svg +0 -0
  4536. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/flask-vial.svg +0 -0
  4537. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/flask.svg +0 -0
  4538. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/floppy-disk.svg +0 -0
  4539. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/florin-sign.svg +0 -0
  4540. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/flushed.svg +0 -0
  4541. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder-blank.svg +0 -0
  4542. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder-closed.svg +0 -0
  4543. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder-minus.svg +0 -0
  4544. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder-open.svg +0 -0
  4545. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder-plus.svg +0 -0
  4546. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder-tree.svg +0 -0
  4547. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder.svg +0 -0
  4548. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/font-awesome-flag.svg +0 -0
  4549. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/font-awesome-logo-full.svg +0 -0
  4550. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/font-awesome.svg +0 -0
  4551. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/font.svg +0 -0
  4552. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/football-ball.svg +0 -0
  4553. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/football.svg +0 -0
  4554. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/forward-fast.svg +0 -0
  4555. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/forward-step.svg +0 -0
  4556. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/forward.svg +0 -0
  4557. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/franc-sign.svg +0 -0
  4558. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/frog.svg +0 -0
  4559. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/frown-open.svg +0 -0
  4560. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/frown.svg +0 -0
  4561. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/funnel-dollar.svg +0 -0
  4562. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/futbol-ball.svg +0 -0
  4563. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/futbol.svg +0 -0
  4564. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/g.svg +0 -0
  4565. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gamepad.svg +0 -0
  4566. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gas-pump.svg +0 -0
  4567. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gauge-high.svg +0 -0
  4568. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gauge-med.svg +0 -0
  4569. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gauge-simple-high.svg +0 -0
  4570. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gauge-simple-med.svg +0 -0
  4571. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gauge-simple.svg +0 -0
  4572. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gauge.svg +0 -0
  4573. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gavel.svg +0 -0
  4574. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gbp.svg +0 -0
  4575. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gear.svg +0 -0
  4576. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gears.svg +0 -0
  4577. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gem.svg +0 -0
  4578. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/genderless.svg +0 -0
  4579. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ghost.svg +0 -0
  4580. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gift.svg +0 -0
  4581. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gifts.svg +0 -0
  4582. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glass-cheers.svg +0 -0
  4583. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glass-martini-alt.svg +0 -0
  4584. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glass-martini.svg +0 -0
  4585. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glass-water-droplet.svg +0 -0
  4586. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glass-water.svg +0 -0
  4587. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glass-whiskey.svg +0 -0
  4588. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glasses.svg +0 -0
  4589. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/globe-africa.svg +0 -0
  4590. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/globe-americas.svg +0 -0
  4591. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/globe-asia.svg +0 -0
  4592. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/globe-europe.svg +0 -0
  4593. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/globe-oceania.svg +0 -0
  4594. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/globe.svg +0 -0
  4595. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/golf-ball-tee.svg +0 -0
  4596. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/golf-ball.svg +0 -0
  4597. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gopuram.svg +0 -0
  4598. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/graduation-cap.svg +0 -0
  4599. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/greater-than-equal.svg +0 -0
  4600. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/greater-than.svg +0 -0
  4601. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grid-horizontal.svg +0 -0
  4602. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grid-vertical.svg +0 -0
  4603. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grimace.svg +0 -0
  4604. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-alt.svg +0 -0
  4605. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-beam-sweat.svg +0 -0
  4606. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-beam.svg +0 -0
  4607. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-hearts.svg +0 -0
  4608. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-squint-tears.svg +0 -0
  4609. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-squint.svg +0 -0
  4610. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-stars.svg +0 -0
  4611. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-tears.svg +0 -0
  4612. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-tongue-squint.svg +0 -0
  4613. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-tongue-wink.svg +0 -0
  4614. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-tongue.svg +0 -0
  4615. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-wink.svg +0 -0
  4616. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin.svg +0 -0
  4617. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grip-horizontal.svg +0 -0
  4618. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grip-lines-vertical.svg +0 -0
  4619. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grip-lines.svg +0 -0
  4620. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grip-vertical.svg +0 -0
  4621. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grip.svg +0 -0
  4622. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/group-arrows-rotate.svg +0 -0
  4623. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/guarani-sign.svg +0 -0
  4624. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/guitar.svg +0 -0
  4625. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gun.svg +0 -0
  4626. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/h-square.svg +0 -0
  4627. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/h.svg +0 -0
  4628. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hamburger.svg +0 -0
  4629. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hammer.svg +0 -0
  4630. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hamsa.svg +0 -0
  4631. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-back-fist.svg +0 -0
  4632. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-dots.svg +0 -0
  4633. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-fist.svg +0 -0
  4634. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-dollar.svg +0 -0
  4635. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-droplet.svg +0 -0
  4636. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-hand.svg +0 -0
  4637. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-heart.svg +0 -0
  4638. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-medical.svg +0 -0
  4639. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-usd.svg +0 -0
  4640. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-water.svg +0 -0
  4641. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding.svg +0 -0
  4642. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-lizard.svg +0 -0
  4643. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-middle-finger.svg +0 -0
  4644. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-paper.svg +0 -0
  4645. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-peace.svg +0 -0
  4646. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-point-down.svg +0 -0
  4647. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-point-left.svg +0 -0
  4648. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-point-right.svg +0 -0
  4649. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-point-up.svg +0 -0
  4650. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-pointer.svg +0 -0
  4651. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-rock.svg +0 -0
  4652. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-scissors.svg +0 -0
  4653. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-sparkles.svg +0 -0
  4654. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-spock.svg +0 -0
  4655. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand.svg +0 -0
  4656. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handcuffs.svg +0 -0
  4657. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-american-sign-language-interpreting.svg +0 -0
  4658. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-asl-interpreting.svg +0 -0
  4659. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-bound.svg +0 -0
  4660. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-bubbles.svg +0 -0
  4661. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-clapping.svg +0 -0
  4662. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-helping.svg +0 -0
  4663. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-holding-child.svg +0 -0
  4664. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-holding-circle.svg +0 -0
  4665. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-holding.svg +0 -0
  4666. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-praying.svg +0 -0
  4667. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-wash.svg +0 -0
  4668. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands.svg +0 -0
  4669. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake-alt-slash.svg +0 -0
  4670. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake-alt.svg +0 -0
  4671. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake-angle.svg +0 -0
  4672. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake-simple-slash.svg +0 -0
  4673. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake-simple.svg +0 -0
  4674. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake-slash.svg +0 -0
  4675. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake.svg +0 -0
  4676. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hanukiah.svg +0 -0
  4677. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hard-drive.svg +0 -0
  4678. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hard-hat.svg +0 -0
  4679. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hard-of-hearing.svg +0 -0
  4680. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hashtag.svg +0 -0
  4681. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hat-cowboy-side.svg +0 -0
  4682. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hat-cowboy.svg +0 -0
  4683. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hat-hard.svg +0 -0
  4684. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hat-wizard.svg +0 -0
  4685. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/haykal.svg +0 -0
  4686. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hdd.svg +0 -0
  4687. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/head-side-cough-slash.svg +0 -0
  4688. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/head-side-cough.svg +0 -0
  4689. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/head-side-mask.svg +0 -0
  4690. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/head-side-virus.svg +0 -0
  4691. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/header.svg +0 -0
  4692. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heading.svg +0 -0
  4693. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/headphones-alt.svg +0 -0
  4694. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/headphones-simple.svg +0 -0
  4695. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/headphones.svg +0 -0
  4696. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/headset.svg +0 -0
  4697. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-broken.svg +0 -0
  4698. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-circle-bolt.svg +0 -0
  4699. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-circle-check.svg +0 -0
  4700. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-circle-exclamation.svg +0 -0
  4701. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-circle-minus.svg +0 -0
  4702. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-circle-plus.svg +0 -0
  4703. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-circle-xmark.svg +0 -0
  4704. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-crack.svg +0 -0
  4705. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-music-camera-bolt.svg +0 -0
  4706. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-pulse.svg +0 -0
  4707. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart.svg +0 -0
  4708. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heartbeat.svg +0 -0
  4709. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/helicopter-symbol.svg +0 -0
  4710. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/helicopter.svg +0 -0
  4711. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/helmet-safety.svg +0 -0
  4712. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/helmet-un.svg +0 -0
  4713. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heptagon.svg +0 -0
  4714. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hexagon-nodes-bolt.svg +0 -0
  4715. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hexagon-nodes.svg +0 -0
  4716. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hexagon.svg +0 -0
  4717. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/highlighter.svg +0 -0
  4718. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hiking.svg +0 -0
  4719. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hill-avalanche.svg +0 -0
  4720. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hill-rockslide.svg +0 -0
  4721. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hippo.svg +0 -0
  4722. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/history.svg +0 -0
  4723. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hockey-puck.svg +0 -0
  4724. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/holly-berry.svg +0 -0
  4725. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/home-alt.svg +0 -0
  4726. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/home-lg-alt.svg +0 -0
  4727. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/home-lg.svg +0 -0
  4728. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/home-user.svg +0 -0
  4729. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/home.svg +0 -0
  4730. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/horse-head.svg +0 -0
  4731. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/horse.svg +0 -0
  4732. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hospital-alt.svg +0 -0
  4733. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hospital-symbol.svg +0 -0
  4734. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hospital-user.svg +0 -0
  4735. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hospital-wide.svg +0 -0
  4736. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hospital.svg +0 -0
  4737. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hot-tub-person.svg +0 -0
  4738. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hot-tub.svg +0 -0
  4739. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hotdog.svg +0 -0
  4740. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hotel.svg +0 -0
  4741. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-1.svg +0 -0
  4742. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-2.svg +0 -0
  4743. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-3.svg +0 -0
  4744. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-empty.svg +0 -0
  4745. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-end.svg +0 -0
  4746. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-half.svg +0 -0
  4747. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-start.svg +0 -0
  4748. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass.svg +0 -0
  4749. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-chimney-crack.svg +0 -0
  4750. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-chimney-medical.svg +0 -0
  4751. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-chimney-user.svg +0 -0
  4752. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-chimney-window.svg +0 -0
  4753. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-chimney.svg +0 -0
  4754. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-circle-check.svg +0 -0
  4755. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-circle-exclamation.svg +0 -0
  4756. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-circle-xmark.svg +0 -0
  4757. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-crack.svg +0 -0
  4758. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-damage.svg +0 -0
  4759. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-fire.svg +0 -0
  4760. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-flag.svg +0 -0
  4761. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-flood-water-circle-arrow-right.svg +0 -0
  4762. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-flood-water.svg +0 -0
  4763. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-laptop.svg +0 -0
  4764. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-lock.svg +0 -0
  4765. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-medical-circle-check.svg +0 -0
  4766. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-medical-circle-exclamation.svg +0 -0
  4767. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-medical-circle-xmark.svg +0 -0
  4768. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-medical-flag.svg +0 -0
  4769. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-medical.svg +0 -0
  4770. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-signal.svg +0 -0
  4771. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-tsunami.svg +0 -0
  4772. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-user.svg +0 -0
  4773. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house.svg +0 -0
  4774. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hryvnia-sign.svg +0 -0
  4775. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hryvnia.svg +0 -0
  4776. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hurricane.svg +0 -0
  4777. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/i-cursor.svg +0 -0
  4778. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/i.svg +0 -0
  4779. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ice-cream.svg +0 -0
  4780. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/icicles.svg +0 -0
  4781. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/icons.svg +0 -0
  4782. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/id-badge.svg +0 -0
  4783. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/id-card-alt.svg +0 -0
  4784. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/id-card-clip.svg +0 -0
  4785. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/id-card.svg +0 -0
  4786. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/igloo.svg +0 -0
  4787. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ils.svg +0 -0
  4788. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/image-portrait.svg +0 -0
  4789. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/image.svg +0 -0
  4790. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/images.svg +0 -0
  4791. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/inbox.svg +0 -0
  4792. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/indent.svg +0 -0
  4793. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/indian-rupee-sign.svg +0 -0
  4794. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/indian-rupee.svg +0 -0
  4795. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/industry.svg +0 -0
  4796. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/infinity.svg +0 -0
  4797. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/info-circle.svg +0 -0
  4798. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/info.svg +0 -0
  4799. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/inr.svg +0 -0
  4800. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/institution.svg +0 -0
  4801. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/italic.svg +0 -0
  4802. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/j.svg +0 -0
  4803. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jar-wheat.svg +0 -0
  4804. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jar.svg +0 -0
  4805. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jedi.svg +0 -0
  4806. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jet-fighter-up.svg +0 -0
  4807. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jet-fighter.svg +0 -0
  4808. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/joint.svg +0 -0
  4809. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/journal-whills.svg +0 -0
  4810. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jpy.svg +0 -0
  4811. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jug-detergent.svg +0 -0
  4812. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/k.svg +0 -0
  4813. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kaaba.svg +0 -0
  4814. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/key.svg +0 -0
  4815. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/keyboard.svg +0 -0
  4816. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/khanda.svg +0 -0
  4817. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kip-sign.svg +0 -0
  4818. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kiss-beam.svg +0 -0
  4819. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kiss-wink-heart.svg +0 -0
  4820. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kiss.svg +0 -0
  4821. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kit-medical.svg +0 -0
  4822. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kitchen-set.svg +0 -0
  4823. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kiwi-bird.svg +0 -0
  4824. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/krw.svg +0 -0
  4825. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/l.svg +0 -0
  4826. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ladder-water.svg +0 -0
  4827. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/land-mine-on.svg +0 -0
  4828. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/landmark-alt.svg +0 -0
  4829. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/landmark-dome.svg +0 -0
  4830. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/landmark-flag.svg +0 -0
  4831. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/landmark.svg +0 -0
  4832. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/language.svg +0 -0
  4833. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laptop-code.svg +0 -0
  4834. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laptop-file.svg +0 -0
  4835. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laptop-house.svg +0 -0
  4836. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laptop-medical.svg +0 -0
  4837. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laptop.svg +0 -0
  4838. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lari-sign.svg +0 -0
  4839. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laugh-beam.svg +0 -0
  4840. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laugh-squint.svg +0 -0
  4841. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laugh-wink.svg +0 -0
  4842. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laugh.svg +0 -0
  4843. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/layer-group.svg +0 -0
  4844. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/leaf.svg +0 -0
  4845. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/left-long.svg +0 -0
  4846. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/left-right.svg +0 -0
  4847. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/legal.svg +0 -0
  4848. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lemon.svg +0 -0
  4849. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/less-than-equal.svg +0 -0
  4850. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/less-than.svg +0 -0
  4851. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/level-down-alt.svg +0 -0
  4852. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/level-down.svg +0 -0
  4853. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/level-up-alt.svg +0 -0
  4854. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/level-up.svg +0 -0
  4855. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/life-ring.svg +0 -0
  4856. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lightbulb.svg +0 -0
  4857. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/line-chart.svg +0 -0
  4858. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lines-leaning.svg +0 -0
  4859. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/link-slash.svg +0 -0
  4860. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/link.svg +0 -0
  4861. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lira-sign.svg +0 -0
  4862. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-1-2.svg +0 -0
  4863. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-alt.svg +0 -0
  4864. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-check.svg +0 -0
  4865. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-dots.svg +0 -0
  4866. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-numeric.svg +0 -0
  4867. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-ol.svg +0 -0
  4868. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-squares.svg +0 -0
  4869. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-ul.svg +0 -0
  4870. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list.svg +0 -0
  4871. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/litecoin-sign.svg +0 -0
  4872. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/location-arrow.svg +0 -0
  4873. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/location-crosshairs.svg +0 -0
  4874. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/location-dot.svg +0 -0
  4875. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/location-pin-lock.svg +0 -0
  4876. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/location-pin.svg +0 -0
  4877. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/location.svg +0 -0
  4878. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lock-open.svg +0 -0
  4879. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lock.svg +0 -0
  4880. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/locust.svg +0 -0
  4881. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-alt-down.svg +0 -0
  4882. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-alt-left.svg +0 -0
  4883. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-alt-right.svg +0 -0
  4884. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-alt-up.svg +0 -0
  4885. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-down.svg +0 -0
  4886. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-left.svg +0 -0
  4887. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-right.svg +0 -0
  4888. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-up.svg +0 -0
  4889. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/low-vision.svg +0 -0
  4890. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/luggage-cart.svg +0 -0
  4891. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lungs-virus.svg +0 -0
  4892. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lungs.svg +0 -0
  4893. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/m.svg +0 -0
  4894. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magic-wand-sparkles.svg +0 -0
  4895. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magic.svg +0 -0
  4896. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnet.svg +0 -0
  4897. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass-arrow-right.svg +0 -0
  4898. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass-chart.svg +0 -0
  4899. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass-dollar.svg +0 -0
  4900. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass-location.svg +0 -0
  4901. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass-minus.svg +0 -0
  4902. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass-plus.svg +0 -0
  4903. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass.svg +0 -0
  4904. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mail-bulk.svg +0 -0
  4905. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mail-forward.svg +0 -0
  4906. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mail-reply-all.svg +0 -0
  4907. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mail-reply.svg +0 -0
  4908. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/male.svg +0 -0
  4909. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/manat-sign.svg +0 -0
  4910. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-location-dot.svg +0 -0
  4911. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-location.svg +0 -0
  4912. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-marked-alt.svg +0 -0
  4913. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-marked.svg +0 -0
  4914. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-marker-alt.svg +0 -0
  4915. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-marker.svg +0 -0
  4916. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-pin.svg +0 -0
  4917. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-signs.svg +0 -0
  4918. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map.svg +0 -0
  4919. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/marker.svg +0 -0
  4920. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-and-venus-burst.svg +0 -0
  4921. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-and-venus.svg +0 -0
  4922. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-double.svg +0 -0
  4923. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-stroke-h.svg +0 -0
  4924. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-stroke-right.svg +0 -0
  4925. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-stroke-up.svg +0 -0
  4926. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-stroke-v.svg +0 -0
  4927. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-stroke.svg +0 -0
  4928. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars.svg +0 -0
  4929. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/martini-glass-citrus.svg +0 -0
  4930. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/martini-glass-empty.svg +0 -0
  4931. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/martini-glass.svg +0 -0
  4932. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mask-face.svg +0 -0
  4933. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mask-ventilator.svg +0 -0
  4934. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mask.svg +0 -0
  4935. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/masks-theater.svg +0 -0
  4936. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mattress-pillow.svg +0 -0
  4937. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/maximize.svg +0 -0
  4938. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/medal.svg +0 -0
  4939. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/medkit.svg +0 -0
  4940. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/meh-blank.svg +0 -0
  4941. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/meh-rolling-eyes.svg +0 -0
  4942. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/meh.svg +0 -0
  4943. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/memory.svg +0 -0
  4944. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/menorah.svg +0 -0
  4945. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mercury.svg +0 -0
  4946. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/message.svg +0 -0
  4947. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/meteor.svg +0 -0
  4948. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microchip.svg +0 -0
  4949. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microphone-alt-slash.svg +0 -0
  4950. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microphone-alt.svg +0 -0
  4951. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microphone-lines-slash.svg +0 -0
  4952. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microphone-lines.svg +0 -0
  4953. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microphone-slash.svg +0 -0
  4954. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microphone.svg +0 -0
  4955. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microscope.svg +0 -0
  4956. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mill-sign.svg +0 -0
  4957. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/minimize.svg +0 -0
  4958. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/minus-circle.svg +0 -0
  4959. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/minus-square.svg +0 -0
  4960. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/minus.svg +0 -0
  4961. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mitten.svg +0 -0
  4962. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-alt.svg +0 -0
  4963. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-android-alt.svg +0 -0
  4964. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-android.svg +0 -0
  4965. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-button.svg +0 -0
  4966. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-phone.svg +0 -0
  4967. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-retro.svg +0 -0
  4968. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-screen-button.svg +0 -0
  4969. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-screen.svg +0 -0
  4970. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-vibrate.svg +0 -0
  4971. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile.svg +0 -0
  4972. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-1-wave.svg +0 -0
  4973. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-1.svg +0 -0
  4974. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-alt.svg +0 -0
  4975. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-transfer.svg +0 -0
  4976. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-trend-up.svg +0 -0
  4977. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-wave-alt.svg +0 -0
  4978. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-wave.svg +0 -0
  4979. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-wheat.svg +0 -0
  4980. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill.svg +0 -0
  4981. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bills.svg +0 -0
  4982. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-check-alt.svg +0 -0
  4983. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-check-dollar.svg +0 -0
  4984. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-check.svg +0 -0
  4985. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/monument.svg +0 -0
  4986. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/moon.svg +0 -0
  4987. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mortar-board.svg +0 -0
  4988. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mortar-pestle.svg +0 -0
  4989. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mosque.svg +0 -0
  4990. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mosquito-net.svg +0 -0
  4991. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mosquito.svg +0 -0
  4992. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/motorcycle.svg +0 -0
  4993. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mound.svg +0 -0
  4994. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mountain-city.svg +0 -0
  4995. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mountain-sun.svg +0 -0
  4996. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mountain.svg +0 -0
  4997. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mouse-pointer.svg +0 -0
  4998. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mouse.svg +0 -0
  4999. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mug-hot.svg +0 -0
  5000. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mug-saucer.svg +0 -0
  5001. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/multiply.svg +0 -0
  5002. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/museum.svg +0 -0
  5003. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/music.svg +0 -0
  5004. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/n.svg +0 -0
  5005. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/naira-sign.svg +0 -0
  5006. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/navicon.svg +0 -0
  5007. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/network-wired.svg +0 -0
  5008. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/neuter.svg +0 -0
  5009. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/newspaper.svg +0 -0
  5010. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/non-binary.svg +0 -0
  5011. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/not-equal.svg +0 -0
  5012. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/notdef.svg +0 -0
  5013. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/note-sticky.svg +0 -0
  5014. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/notes-medical.svg +0 -0
  5015. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/o.svg +0 -0
  5016. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/object-group.svg +0 -0
  5017. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/object-ungroup.svg +0 -0
  5018. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/octagon.svg +0 -0
  5019. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/oil-can.svg +0 -0
  5020. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/oil-well.svg +0 -0
  5021. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/om.svg +0 -0
  5022. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/otter.svg +0 -0
  5023. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/outdent.svg +0 -0
  5024. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/p.svg +0 -0
  5025. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pager.svg +0 -0
  5026. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paint-brush.svg +0 -0
  5027. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paint-roller.svg +0 -0
  5028. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paintbrush.svg +0 -0
  5029. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/palette.svg +0 -0
  5030. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pallet.svg +0 -0
  5031. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/panorama.svg +0 -0
  5032. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paper-plane.svg +0 -0
  5033. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paperclip.svg +0 -0
  5034. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/parachute-box.svg +0 -0
  5035. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paragraph.svg +0 -0
  5036. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/parking.svg +0 -0
  5037. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/passport.svg +0 -0
  5038. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pastafarianism.svg +0 -0
  5039. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paste.svg +0 -0
  5040. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pause-circle.svg +0 -0
  5041. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pause.svg +0 -0
  5042. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paw.svg +0 -0
  5043. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/peace.svg +0 -0
  5044. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-alt.svg +0 -0
  5045. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-clip.svg +0 -0
  5046. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-fancy.svg +0 -0
  5047. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-nib.svg +0 -0
  5048. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-ruler.svg +0 -0
  5049. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-square.svg +0 -0
  5050. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-to-square.svg +0 -0
  5051. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen.svg +0 -0
  5052. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pencil-alt.svg +0 -0
  5053. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pencil-ruler.svg +0 -0
  5054. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pencil-square.svg +0 -0
  5055. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pencil.svg +0 -0
  5056. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pentagon.svg +0 -0
  5057. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-arrows-left-right.svg +0 -0
  5058. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-arrows.svg +0 -0
  5059. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-carry-box.svg +0 -0
  5060. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-carry.svg +0 -0
  5061. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-group.svg +0 -0
  5062. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-line.svg +0 -0
  5063. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-pulling.svg +0 -0
  5064. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-robbery.svg +0 -0
  5065. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-roof.svg +0 -0
  5066. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pepper-hot.svg +0 -0
  5067. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/percent.svg +0 -0
  5068. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/percentage.svg +0 -0
  5069. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-arrow-down-to-line.svg +0 -0
  5070. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-arrow-up-from-line.svg +0 -0
  5071. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-biking.svg +0 -0
  5072. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-booth.svg +0 -0
  5073. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-breastfeeding.svg +0 -0
  5074. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-burst.svg +0 -0
  5075. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-cane.svg +0 -0
  5076. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-chalkboard.svg +0 -0
  5077. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-circle-check.svg +0 -0
  5078. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-circle-exclamation.svg +0 -0
  5079. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-circle-minus.svg +0 -0
  5080. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-circle-plus.svg +0 -0
  5081. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-circle-question.svg +0 -0
  5082. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-circle-xmark.svg +0 -0
  5083. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-digging.svg +0 -0
  5084. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-dots-from-line.svg +0 -0
  5085. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-dress-burst.svg +0 -0
  5086. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-dress.svg +0 -0
  5087. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-drowning.svg +0 -0
  5088. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-falling-burst.svg +0 -0
  5089. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-falling.svg +0 -0
  5090. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-half-dress.svg +0 -0
  5091. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-harassing.svg +0 -0
  5092. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-hiking.svg +0 -0
  5093. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-military-pointing.svg +0 -0
  5094. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-military-rifle.svg +0 -0
  5095. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-military-to-person.svg +0 -0
  5096. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-praying.svg +0 -0
  5097. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-pregnant.svg +0 -0
  5098. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-rays.svg +0 -0
  5099. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-rifle.svg +0 -0
  5100. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-running.svg +0 -0
  5101. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-shelter.svg +0 -0
  5102. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-skating.svg +0 -0
  5103. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-skiing-nordic.svg +0 -0
  5104. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-skiing.svg +0 -0
  5105. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-snowboarding.svg +0 -0
  5106. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-swimming.svg +0 -0
  5107. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-through-window.svg +0 -0
  5108. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-walking-arrow-loop-left.svg +0 -0
  5109. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-walking-arrow-right.svg +0 -0
  5110. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-walking-dashed-line-arrow-right.svg +0 -0
  5111. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-walking-luggage.svg +0 -0
  5112. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-walking-with-cane.svg +0 -0
  5113. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-walking.svg +0 -0
  5114. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person.svg +0 -0
  5115. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/peseta-sign.svg +0 -0
  5116. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/peso-sign.svg +0 -0
  5117. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone-alt.svg +0 -0
  5118. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone-flip.svg +0 -0
  5119. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone-slash.svg +0 -0
  5120. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone-square-alt.svg +0 -0
  5121. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone-square.svg +0 -0
  5122. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone-volume.svg +0 -0
  5123. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone.svg +0 -0
  5124. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/photo-film.svg +0 -0
  5125. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/photo-video.svg +0 -0
  5126. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pie-chart.svg +0 -0
  5127. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/piggy-bank.svg +0 -0
  5128. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pills.svg +0 -0
  5129. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ping-pong-paddle-ball.svg +0 -0
  5130. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pizza-slice.svg +0 -0
  5131. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/place-of-worship.svg +0 -0
  5132. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-arrival.svg +0 -0
  5133. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-circle-check.svg +0 -0
  5134. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-circle-exclamation.svg +0 -0
  5135. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-circle-xmark.svg +0 -0
  5136. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-departure.svg +0 -0
  5137. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-lock.svg +0 -0
  5138. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-slash.svg +0 -0
  5139. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-up.svg +0 -0
  5140. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane.svg +0 -0
  5141. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plant-wilt.svg +0 -0
  5142. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plate-wheat.svg +0 -0
  5143. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/play-circle.svg +0 -0
  5144. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/play.svg +0 -0
  5145. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug-circle-bolt.svg +0 -0
  5146. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug-circle-check.svg +0 -0
  5147. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug-circle-exclamation.svg +0 -0
  5148. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug-circle-minus.svg +0 -0
  5149. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug-circle-plus.svg +0 -0
  5150. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug-circle-xmark.svg +0 -0
  5151. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug.svg +0 -0
  5152. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plus-circle.svg +0 -0
  5153. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plus-minus.svg +0 -0
  5154. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plus-square.svg +0 -0
  5155. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plus.svg +0 -0
  5156. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/podcast.svg +0 -0
  5157. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/poll-h.svg +0 -0
  5158. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/poll.svg +0 -0
  5159. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/poo-bolt.svg +0 -0
  5160. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/poo-storm.svg +0 -0
  5161. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/poo.svg +0 -0
  5162. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/poop.svg +0 -0
  5163. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/portrait.svg +0 -0
  5164. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pound-sign.svg +0 -0
  5165. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/power-off.svg +0 -0
  5166. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pray.svg +0 -0
  5167. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/praying-hands.svg +0 -0
  5168. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/prescription-bottle-alt.svg +0 -0
  5169. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/prescription-bottle-medical.svg +0 -0
  5170. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/prescription-bottle.svg +0 -0
  5171. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/prescription.svg +0 -0
  5172. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/print.svg +0 -0
  5173. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/procedures.svg +0 -0
  5174. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/project-diagram.svg +0 -0
  5175. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pump-medical.svg +0 -0
  5176. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pump-soap.svg +0 -0
  5177. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/puzzle-piece.svg +0 -0
  5178. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/q.svg +0 -0
  5179. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/qrcode.svg +0 -0
  5180. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/question-circle.svg +0 -0
  5181. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/question.svg +0 -0
  5182. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quidditch-broom-ball.svg +0 -0
  5183. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quidditch.svg +0 -0
  5184. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quote-left-alt.svg +0 -0
  5185. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quote-left.svg +0 -0
  5186. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quote-right-alt.svg +0 -0
  5187. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quote-right.svg +0 -0
  5188. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quran.svg +0 -0
  5189. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/r.svg +0 -0
  5190. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/radiation-alt.svg +0 -0
  5191. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/radiation.svg +0 -0
  5192. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/radio.svg +0 -0
  5193. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rainbow.svg +0 -0
  5194. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/random.svg +0 -0
  5195. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ranking-star.svg +0 -0
  5196. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/receipt.svg +0 -0
  5197. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/record-vinyl.svg +0 -0
  5198. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rectangle-ad.svg +0 -0
  5199. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rectangle-list.svg +0 -0
  5200. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rectangle-times.svg +0 -0
  5201. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rectangle-xmark.svg +0 -0
  5202. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/recycle.svg +0 -0
  5203. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/redo-alt.svg +0 -0
  5204. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/redo.svg +0 -0
  5205. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/refresh.svg +0 -0
  5206. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/registered.svg +0 -0
  5207. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/remove-format.svg +0 -0
  5208. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/remove.svg +0 -0
  5209. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/reorder.svg +0 -0
  5210. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/repeat.svg +0 -0
  5211. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/reply-all.svg +0 -0
  5212. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/reply.svg +0 -0
  5213. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/republican.svg +0 -0
  5214. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/restroom.svg +0 -0
  5215. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/retweet.svg +0 -0
  5216. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ribbon.svg +0 -0
  5217. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/right-from-bracket.svg +0 -0
  5218. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/right-left.svg +0 -0
  5219. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/right-long.svg +0 -0
  5220. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/right-to-bracket.svg +0 -0
  5221. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ring.svg +0 -0
  5222. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rmb.svg +0 -0
  5223. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-barrier.svg +0 -0
  5224. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-bridge.svg +0 -0
  5225. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-circle-check.svg +0 -0
  5226. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-circle-exclamation.svg +0 -0
  5227. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-circle-xmark.svg +0 -0
  5228. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-lock.svg +0 -0
  5229. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-spikes.svg +0 -0
  5230. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road.svg +0 -0
  5231. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/robot.svg +0 -0
  5232. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rocket.svg +0 -0
  5233. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rod-asclepius.svg +0 -0
  5234. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rod-snake.svg +0 -0
  5235. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rotate-back.svg +0 -0
  5236. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rotate-backward.svg +0 -0
  5237. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rotate-forward.svg +0 -0
  5238. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rotate-left.svg +0 -0
  5239. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rotate-right.svg +0 -0
  5240. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rotate.svg +0 -0
  5241. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rouble.svg +0 -0
  5242. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/route.svg +0 -0
  5243. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rss-square.svg +0 -0
  5244. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rss.svg +0 -0
  5245. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rub.svg +0 -0
  5246. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ruble-sign.svg +0 -0
  5247. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ruble.svg +0 -0
  5248. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rug.svg +0 -0
  5249. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ruler-combined.svg +0 -0
  5250. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ruler-horizontal.svg +0 -0
  5251. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ruler-vertical.svg +0 -0
  5252. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ruler.svg +0 -0
  5253. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/running.svg +0 -0
  5254. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rupee-sign.svg +0 -0
  5255. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rupee.svg +0 -0
  5256. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rupiah-sign.svg +0 -0
  5257. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/s.svg +0 -0
  5258. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sack-dollar.svg +0 -0
  5259. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sack-xmark.svg +0 -0
  5260. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sad-cry.svg +0 -0
  5261. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sad-tear.svg +0 -0
  5262. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sailboat.svg +0 -0
  5263. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/satellite-dish.svg +0 -0
  5264. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/satellite.svg +0 -0
  5265. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/save.svg +0 -0
  5266. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/scale-balanced.svg +0 -0
  5267. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/scale-unbalanced-flip.svg +0 -0
  5268. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/scale-unbalanced.svg +0 -0
  5269. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/school-circle-check.svg +0 -0
  5270. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/school-circle-exclamation.svg +0 -0
  5271. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/school-circle-xmark.svg +0 -0
  5272. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/school-flag.svg +0 -0
  5273. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/school-lock.svg +0 -0
  5274. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/school.svg +0 -0
  5275. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/scissors.svg +0 -0
  5276. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/screwdriver-wrench.svg +0 -0
  5277. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/screwdriver.svg +0 -0
  5278. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/scroll-torah.svg +0 -0
  5279. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/scroll.svg +0 -0
  5280. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sd-card.svg +0 -0
  5281. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/search-dollar.svg +0 -0
  5282. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/search-location.svg +0 -0
  5283. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/search-minus.svg +0 -0
  5284. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/search-plus.svg +0 -0
  5285. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/search.svg +0 -0
  5286. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/section.svg +0 -0
  5287. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/seedling.svg +0 -0
  5288. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/septagon.svg +0 -0
  5289. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/server.svg +0 -0
  5290. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shapes.svg +0 -0
  5291. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/share-alt-square.svg +0 -0
  5292. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/share-alt.svg +0 -0
  5293. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/share-from-square.svg +0 -0
  5294. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/share-nodes.svg +0 -0
  5295. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/share-square.svg +0 -0
  5296. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/share.svg +0 -0
  5297. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sheet-plastic.svg +0 -0
  5298. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shekel-sign.svg +0 -0
  5299. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shekel.svg +0 -0
  5300. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sheqel-sign.svg +0 -0
  5301. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sheqel.svg +0 -0
  5302. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-alt.svg +0 -0
  5303. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-blank.svg +0 -0
  5304. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-cat.svg +0 -0
  5305. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-dog.svg +0 -0
  5306. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-halved.svg +0 -0
  5307. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-heart.svg +0 -0
  5308. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-virus.svg +0 -0
  5309. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield.svg +0 -0
  5310. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ship.svg +0 -0
  5311. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shipping-fast.svg +0 -0
  5312. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shirt.svg +0 -0
  5313. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shoe-prints.svg +0 -0
  5314. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shop-lock.svg +0 -0
  5315. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shop-slash.svg +0 -0
  5316. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shop.svg +0 -0
  5317. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shopping-bag.svg +0 -0
  5318. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shopping-basket.svg +0 -0
  5319. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shopping-cart.svg +0 -0
  5320. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shower.svg +0 -0
  5321. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shrimp.svg +0 -0
  5322. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shuffle.svg +0 -0
  5323. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shuttle-space.svg +0 -0
  5324. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shuttle-van.svg +0 -0
  5325. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign-hanging.svg +0 -0
  5326. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign-in-alt.svg +0 -0
  5327. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign-in.svg +0 -0
  5328. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign-language.svg +0 -0
  5329. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign-out-alt.svg +0 -0
  5330. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign-out.svg +0 -0
  5331. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign.svg +0 -0
  5332. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/signal-5.svg +0 -0
  5333. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/signal-perfect.svg +0 -0
  5334. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/signal.svg +0 -0
  5335. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/signature.svg +0 -0
  5336. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/signing.svg +0 -0
  5337. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/signs-post.svg +0 -0
  5338. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sim-card.svg +0 -0
  5339. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/single-quote-left.svg +0 -0
  5340. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/single-quote-right.svg +0 -0
  5341. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sink.svg +0 -0
  5342. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sitemap.svg +0 -0
  5343. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/skating.svg +0 -0
  5344. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/skiing-nordic.svg +0 -0
  5345. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/skiing.svg +0 -0
  5346. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/skull-crossbones.svg +0 -0
  5347. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/skull.svg +0 -0
  5348. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/slash.svg +0 -0
  5349. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sleigh.svg +0 -0
  5350. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sliders-h.svg +0 -0
  5351. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sliders.svg +0 -0
  5352. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/smile-beam.svg +0 -0
  5353. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/smile-wink.svg +0 -0
  5354. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/smile.svg +0 -0
  5355. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/smog.svg +0 -0
  5356. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/smoking-ban.svg +0 -0
  5357. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/smoking.svg +0 -0
  5358. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sms.svg +0 -0
  5359. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/snowboarding.svg +0 -0
  5360. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/snowflake.svg +0 -0
  5361. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/snowman.svg +0 -0
  5362. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/snowplow.svg +0 -0
  5363. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/soap.svg +0 -0
  5364. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/soccer-ball.svg +0 -0
  5365. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/socks.svg +0 -0
  5366. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/solar-panel.svg +0 -0
  5367. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-alpha-asc.svg +0 -0
  5368. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-alpha-desc.svg +0 -0
  5369. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-alpha-down-alt.svg +0 -0
  5370. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-alpha-down.svg +0 -0
  5371. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-alpha-up-alt.svg +0 -0
  5372. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-alpha-up.svg +0 -0
  5373. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-amount-asc.svg +0 -0
  5374. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-amount-desc.svg +0 -0
  5375. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-amount-down-alt.svg +0 -0
  5376. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-amount-down.svg +0 -0
  5377. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-amount-up-alt.svg +0 -0
  5378. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-amount-up.svg +0 -0
  5379. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-asc.svg +0 -0
  5380. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-desc.svg +0 -0
  5381. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-down.svg +0 -0
  5382. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-numeric-asc.svg +0 -0
  5383. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-numeric-desc.svg +0 -0
  5384. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-numeric-down-alt.svg +0 -0
  5385. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-numeric-down.svg +0 -0
  5386. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-numeric-up-alt.svg +0 -0
  5387. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-numeric-up.svg +0 -0
  5388. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-up.svg +0 -0
  5389. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort.svg +0 -0
  5390. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spa.svg +0 -0
  5391. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/space-shuttle.svg +0 -0
  5392. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spaghetti-monster-flying.svg +0 -0
  5393. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spell-check.svg +0 -0
  5394. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spider.svg +0 -0
  5395. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spinner.svg +0 -0
  5396. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spiral.svg +0 -0
  5397. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/splotch.svg +0 -0
  5398. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spoon.svg +0 -0
  5399. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spray-can-sparkles.svg +0 -0
  5400. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spray-can.svg +0 -0
  5401. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sprout.svg +0 -0
  5402. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-arrow-up-right.svg +0 -0
  5403. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-binary.svg +0 -0
  5404. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-caret-down.svg +0 -0
  5405. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-caret-left.svg +0 -0
  5406. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-caret-right.svg +0 -0
  5407. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-caret-up.svg +0 -0
  5408. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-check.svg +0 -0
  5409. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-envelope.svg +0 -0
  5410. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-full.svg +0 -0
  5411. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-h.svg +0 -0
  5412. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-minus.svg +0 -0
  5413. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-nfi.svg +0 -0
  5414. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-parking.svg +0 -0
  5415. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-pen.svg +0 -0
  5416. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-person-confined.svg +0 -0
  5417. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-phone-flip.svg +0 -0
  5418. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-phone.svg +0 -0
  5419. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-plus.svg +0 -0
  5420. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-poll-horizontal.svg +0 -0
  5421. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-poll-vertical.svg +0 -0
  5422. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-root-alt.svg +0 -0
  5423. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-root-variable.svg +0 -0
  5424. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-rss.svg +0 -0
  5425. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-share-nodes.svg +0 -0
  5426. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-up-right.svg +0 -0
  5427. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-virus.svg +0 -0
  5428. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-xmark.svg +0 -0
  5429. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square.svg +0 -0
  5430. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/staff-aesculapius.svg +0 -0
  5431. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/staff-snake.svg +0 -0
  5432. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stairs.svg +0 -0
  5433. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stamp.svg +0 -0
  5434. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stapler.svg +0 -0
  5435. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star-and-crescent.svg +0 -0
  5436. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star-half-alt.svg +0 -0
  5437. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star-half-stroke.svg +0 -0
  5438. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star-half.svg +0 -0
  5439. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star-of-david.svg +0 -0
  5440. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star-of-life.svg +0 -0
  5441. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star.svg +0 -0
  5442. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/step-backward.svg +0 -0
  5443. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/step-forward.svg +0 -0
  5444. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sterling-sign.svg +0 -0
  5445. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stethoscope.svg +0 -0
  5446. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sticky-note.svg +0 -0
  5447. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stop-circle.svg +0 -0
  5448. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stop.svg +0 -0
  5449. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stopwatch-20.svg +0 -0
  5450. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stopwatch.svg +0 -0
  5451. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/store-alt-slash.svg +0 -0
  5452. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/store-alt.svg +0 -0
  5453. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/store-slash.svg +0 -0
  5454. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/store.svg +0 -0
  5455. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stream.svg +0 -0
  5456. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/street-view.svg +0 -0
  5457. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/strikethrough.svg +0 -0
  5458. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stroopwafel.svg +0 -0
  5459. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/subscript.svg +0 -0
  5460. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/subtract.svg +0 -0
  5461. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/subway.svg +0 -0
  5462. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/suitcase-medical.svg +0 -0
  5463. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/suitcase-rolling.svg +0 -0
  5464. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/suitcase.svg +0 -0
  5465. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sun-plant-wilt.svg +0 -0
  5466. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sun.svg +0 -0
  5467. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/superscript.svg +0 -0
  5468. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/surprise.svg +0 -0
  5469. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/swatchbook.svg +0 -0
  5470. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/swimmer.svg +0 -0
  5471. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/swimming-pool.svg +0 -0
  5472. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/synagogue.svg +0 -0
  5473. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sync-alt.svg +0 -0
  5474. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sync.svg +0 -0
  5475. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/syringe.svg +0 -0
  5476. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/t-shirt.svg +0 -0
  5477. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/t.svg +0 -0
  5478. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-cells-column-lock.svg +0 -0
  5479. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-cells-large.svg +0 -0
  5480. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-cells-row-lock.svg +0 -0
  5481. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-cells-row-unlock.svg +0 -0
  5482. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-cells.svg +0 -0
  5483. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-columns.svg +0 -0
  5484. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-list.svg +0 -0
  5485. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-tennis-paddle-ball.svg +0 -0
  5486. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-tennis.svg +0 -0
  5487. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table.svg +0 -0
  5488. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tablet-alt.svg +0 -0
  5489. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tablet-android.svg +0 -0
  5490. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tablet-button.svg +0 -0
  5491. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tablet-screen-button.svg +0 -0
  5492. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tablet.svg +0 -0
  5493. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tablets.svg +0 -0
  5494. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachograph-digital.svg +0 -0
  5495. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachometer-alt-average.svg +0 -0
  5496. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachometer-alt-fast.svg +0 -0
  5497. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachometer-alt.svg +0 -0
  5498. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachometer-average.svg +0 -0
  5499. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachometer-fast.svg +0 -0
  5500. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachometer.svg +0 -0
  5501. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tag.svg +0 -0
  5502. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tags.svg +0 -0
  5503. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tanakh.svg +0 -0
  5504. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tape.svg +0 -0
  5505. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tarp-droplet.svg +0 -0
  5506. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tarp.svg +0 -0
  5507. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tasks-alt.svg +0 -0
  5508. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tasks.svg +0 -0
  5509. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/taxi.svg +0 -0
  5510. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/teeth-open.svg +0 -0
  5511. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/teeth.svg +0 -0
  5512. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/teletype.svg +0 -0
  5513. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/television.svg +0 -0
  5514. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-0.svg +0 -0
  5515. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-1.svg +0 -0
  5516. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-2.svg +0 -0
  5517. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-3.svg +0 -0
  5518. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-4.svg +0 -0
  5519. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-arrow-down.svg +0 -0
  5520. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-arrow-up.svg +0 -0
  5521. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-down.svg +0 -0
  5522. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-empty.svg +0 -0
  5523. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-full.svg +0 -0
  5524. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-half.svg +0 -0
  5525. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-high.svg +0 -0
  5526. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-low.svg +0 -0
  5527. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-quarter.svg +0 -0
  5528. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-three-quarters.svg +0 -0
  5529. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-up.svg +0 -0
  5530. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tenge-sign.svg +0 -0
  5531. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tenge.svg +0 -0
  5532. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tent-arrow-down-to-line.svg +0 -0
  5533. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tent-arrow-left-right.svg +0 -0
  5534. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tent-arrow-turn-left.svg +0 -0
  5535. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tent-arrows-down.svg +0 -0
  5536. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tent.svg +0 -0
  5537. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tents.svg +0 -0
  5538. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/terminal.svg +0 -0
  5539. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/text-height.svg +0 -0
  5540. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/text-slash.svg +0 -0
  5541. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/text-width.svg +0 -0
  5542. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/th-large.svg +0 -0
  5543. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/th-list.svg +0 -0
  5544. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/th.svg +0 -0
  5545. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/theater-masks.svg +0 -0
  5546. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-0.svg +0 -0
  5547. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-1.svg +0 -0
  5548. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-2.svg +0 -0
  5549. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-3.svg +0 -0
  5550. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-4.svg +0 -0
  5551. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-empty.svg +0 -0
  5552. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-full.svg +0 -0
  5553. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-half.svg +0 -0
  5554. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-quarter.svg +0 -0
  5555. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-three-quarters.svg +0 -0
  5556. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer.svg +0 -0
  5557. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thumb-tack-slash.svg +0 -0
  5558. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thumb-tack.svg +0 -0
  5559. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thumbs-down.svg +0 -0
  5560. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thumbs-up.svg +0 -0
  5561. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thumbtack-slash.svg +0 -0
  5562. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thumbtack.svg +0 -0
  5563. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thunderstorm.svg +0 -0
  5564. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ticket-alt.svg +0 -0
  5565. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ticket-simple.svg +0 -0
  5566. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ticket.svg +0 -0
  5567. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/timeline.svg +0 -0
  5568. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/times-circle.svg +0 -0
  5569. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/times-rectangle.svg +0 -0
  5570. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/times-square.svg +0 -0
  5571. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/times.svg +0 -0
  5572. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tint-slash.svg +0 -0
  5573. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tint.svg +0 -0
  5574. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tired.svg +0 -0
  5575. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toggle-off.svg +0 -0
  5576. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toggle-on.svg +0 -0
  5577. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilet-paper-alt.svg +0 -0
  5578. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilet-paper-blank.svg +0 -0
  5579. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilet-paper-slash.svg +0 -0
  5580. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilet-paper.svg +0 -0
  5581. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilet-portable.svg +0 -0
  5582. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilet.svg +0 -0
  5583. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilets-portable.svg +0 -0
  5584. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toolbox.svg +0 -0
  5585. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tools.svg +0 -0
  5586. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tooth.svg +0 -0
  5587. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/torah.svg +0 -0
  5588. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/torii-gate.svg +0 -0
  5589. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tornado.svg +0 -0
  5590. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tower-broadcast.svg +0 -0
  5591. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tower-cell.svg +0 -0
  5592. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tower-observation.svg +0 -0
  5593. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tractor.svg +0 -0
  5594. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trademark.svg +0 -0
  5595. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/traffic-light.svg +0 -0
  5596. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trailer.svg +0 -0
  5597. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/train-subway.svg +0 -0
  5598. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/train-tram.svg +0 -0
  5599. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/train.svg +0 -0
  5600. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tram.svg +0 -0
  5601. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/transgender-alt.svg +0 -0
  5602. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/transgender.svg +0 -0
  5603. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash-alt.svg +0 -0
  5604. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash-arrow-up.svg +0 -0
  5605. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash-can-arrow-up.svg +0 -0
  5606. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash-can.svg +0 -0
  5607. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash-restore-alt.svg +0 -0
  5608. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash-restore.svg +0 -0
  5609. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash.svg +0 -0
  5610. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tree-city.svg +0 -0
  5611. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tree.svg +0 -0
  5612. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/triangle-circle-square.svg +0 -0
  5613. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/triangle-exclamation.svg +0 -0
  5614. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trophy.svg +0 -0
  5615. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trowel-bricks.svg +0 -0
  5616. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trowel.svg +0 -0
  5617. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-arrow-right.svg +0 -0
  5618. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-droplet.svg +0 -0
  5619. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-fast.svg +0 -0
  5620. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-field-un.svg +0 -0
  5621. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-field.svg +0 -0
  5622. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-front.svg +0 -0
  5623. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-loading.svg +0 -0
  5624. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-medical.svg +0 -0
  5625. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-monster.svg +0 -0
  5626. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-moving.svg +0 -0
  5627. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-pickup.svg +0 -0
  5628. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-plane.svg +0 -0
  5629. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-ramp-box.svg +0 -0
  5630. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck.svg +0 -0
  5631. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/try.svg +0 -0
  5632. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tshirt.svg +0 -0
  5633. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tty.svg +0 -0
  5634. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/turkish-lira-sign.svg +0 -0
  5635. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/turkish-lira.svg +0 -0
  5636. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/turn-down.svg +0 -0
  5637. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/turn-up.svg +0 -0
  5638. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tv-alt.svg +0 -0
  5639. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tv.svg +0 -0
  5640. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/u.svg +0 -0
  5641. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/umbrella-beach.svg +0 -0
  5642. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/umbrella.svg +0 -0
  5643. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/underline.svg +0 -0
  5644. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/undo-alt.svg +0 -0
  5645. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/undo.svg +0 -0
  5646. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/universal-access.svg +0 -0
  5647. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/university.svg +0 -0
  5648. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/unlink.svg +0 -0
  5649. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/unlock-alt.svg +0 -0
  5650. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/unlock-keyhole.svg +0 -0
  5651. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/unlock.svg +0 -0
  5652. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/unsorted.svg +0 -0
  5653. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/up-down-left-right.svg +0 -0
  5654. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/up-down.svg +0 -0
  5655. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/up-long.svg +0 -0
  5656. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/up-right-and-down-left-from-center.svg +0 -0
  5657. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/up-right-from-square.svg +0 -0
  5658. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/upload.svg +0 -0
  5659. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/usd.svg +0 -0
  5660. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-alt-slash.svg +0 -0
  5661. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-alt.svg +0 -0
  5662. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-astronaut.svg +0 -0
  5663. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-check.svg +0 -0
  5664. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-circle.svg +0 -0
  5665. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-clock.svg +0 -0
  5666. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-cog.svg +0 -0
  5667. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-doctor.svg +0 -0
  5668. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-edit.svg +0 -0
  5669. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-friends.svg +0 -0
  5670. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-gear.svg +0 -0
  5671. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-graduate.svg +0 -0
  5672. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-group.svg +0 -0
  5673. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-injured.svg +0 -0
  5674. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-large-slash.svg +0 -0
  5675. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-large.svg +0 -0
  5676. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-lock.svg +0 -0
  5677. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-md.svg +0 -0
  5678. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-minus.svg +0 -0
  5679. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-ninja.svg +0 -0
  5680. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-nurse.svg +0 -0
  5681. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-pen.svg +0 -0
  5682. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-plus.svg +0 -0
  5683. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-secret.svg +0 -0
  5684. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-shield.svg +0 -0
  5685. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-slash.svg +0 -0
  5686. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-tag.svg +0 -0
  5687. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-tie.svg +0 -0
  5688. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-times.svg +0 -0
  5689. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-xmark.svg +0 -0
  5690. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user.svg +0 -0
  5691. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-between-lines.svg +0 -0
  5692. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-cog.svg +0 -0
  5693. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-gear.svg +0 -0
  5694. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-line.svg +0 -0
  5695. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-rays.svg +0 -0
  5696. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-rectangle.svg +0 -0
  5697. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-slash.svg +0 -0
  5698. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-viewfinder.svg +0 -0
  5699. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users.svg +0 -0
  5700. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/utensil-spoon.svg +0 -0
  5701. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/utensils.svg +0 -0
  5702. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/v.svg +0 -0
  5703. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/van-shuttle.svg +0 -0
  5704. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vault.svg +0 -0
  5705. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vcard.svg +0 -0
  5706. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vector-polygon.svg +0 -0
  5707. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/venus-double.svg +0 -0
  5708. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/venus-mars.svg +0 -0
  5709. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/venus.svg +0 -0
  5710. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vest-patches.svg +0 -0
  5711. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vest.svg +0 -0
  5712. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vial-circle-check.svg +0 -0
  5713. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vial-virus.svg +0 -0
  5714. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vial.svg +0 -0
  5715. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vials.svg +0 -0
  5716. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/video-camera.svg +0 -0
  5717. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/video-slash.svg +0 -0
  5718. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/video.svg +0 -0
  5719. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vihara.svg +0 -0
  5720. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/virus-covid-slash.svg +0 -0
  5721. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/virus-covid.svg +0 -0
  5722. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/virus-slash.svg +0 -0
  5723. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/virus.svg +0 -0
  5724. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/viruses.svg +0 -0
  5725. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/voicemail.svg +0 -0
  5726. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volcano.svg +0 -0
  5727. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volleyball-ball.svg +0 -0
  5728. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volleyball.svg +0 -0
  5729. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-control-phone.svg +0 -0
  5730. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-down.svg +0 -0
  5731. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-high.svg +0 -0
  5732. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-low.svg +0 -0
  5733. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-mute.svg +0 -0
  5734. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-off.svg +0 -0
  5735. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-times.svg +0 -0
  5736. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-up.svg +0 -0
  5737. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-xmark.svg +0 -0
  5738. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vote-yea.svg +0 -0
  5739. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vr-cardboard.svg +0 -0
  5740. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/w.svg +0 -0
  5741. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/walkie-talkie.svg +0 -0
  5742. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/walking.svg +0 -0
  5743. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wallet.svg +0 -0
  5744. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wand-magic-sparkles.svg +0 -0
  5745. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wand-magic.svg +0 -0
  5746. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wand-sparkles.svg +0 -0
  5747. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/warehouse.svg +0 -0
  5748. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/warning.svg +0 -0
  5749. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/water-ladder.svg +0 -0
  5750. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/water.svg +0 -0
  5751. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wave-square.svg +0 -0
  5752. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/web-awesome.svg +0 -0
  5753. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/weight-hanging.svg +0 -0
  5754. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/weight-scale.svg +0 -0
  5755. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/weight.svg +0 -0
  5756. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wheat-alt.svg +0 -0
  5757. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wheat-awn-circle-exclamation.svg +0 -0
  5758. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wheat-awn.svg +0 -0
  5759. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wheelchair-alt.svg +0 -0
  5760. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wheelchair-move.svg +0 -0
  5761. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wheelchair.svg +0 -0
  5762. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/whiskey-glass.svg +0 -0
  5763. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wifi-3.svg +0 -0
  5764. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wifi-strong.svg +0 -0
  5765. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wifi.svg +0 -0
  5766. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wind.svg +0 -0
  5767. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/window-close.svg +0 -0
  5768. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/window-maximize.svg +0 -0
  5769. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/window-minimize.svg +0 -0
  5770. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/window-restore.svg +0 -0
  5771. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wine-bottle.svg +0 -0
  5772. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wine-glass-alt.svg +0 -0
  5773. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wine-glass-empty.svg +0 -0
  5774. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wine-glass.svg +0 -0
  5775. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/won-sign.svg +0 -0
  5776. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/won.svg +0 -0
  5777. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/worm.svg +0 -0
  5778. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wrench.svg +0 -0
  5779. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/x-ray.svg +0 -0
  5780. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/x.svg +0 -0
  5781. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/xmark-circle.svg +0 -0
  5782. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/xmark-square.svg +0 -0
  5783. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/xmark.svg +0 -0
  5784. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/xmarks-lines.svg +0 -0
  5785. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/y.svg +0 -0
  5786. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/yen-sign.svg +0 -0
  5787. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/yen.svg +0 -0
  5788. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/yin-yang.svg +0 -0
  5789. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/z.svg +0 -0
  5790. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/zap.svg +0 -0
  5791. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
  5792. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
  5793. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
  5794. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
  5795. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/fonts/fonts.css +0 -0
  5796. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/static/vendor/sweetalert2/sweetalert2.all.min.js +0 -0
  5797. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/tasks.py +0 -0
  5798. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/base.html +0 -0
  5799. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/dashboard.html +0 -0
  5800. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/purge_report/purge_history_report.txt +0 -0
  5801. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/purge_report/purge_report.html +0 -0
  5802. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes/recovery_codes_email.html +0 -0
  5803. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes/recovery_codes_email.txt +0 -0
  5804. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes_audit/recovery_audit.html +0 -0
  5805. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes_audit/recovery_codes_audit.txt +0 -0
  5806. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes_deletion/deleted_codes.html +0 -0
  5807. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes_deletion/deleted_codes.txt +0 -0
  5808. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes_deletion/no_purge.html +0 -0
  5809. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes_deletion/no_purge.txt +0 -0
  5810. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/login.html +0 -0
  5811. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/django_messages.html +0 -0
  5812. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/generate_codes.html +0 -0
  5813. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/invalidate_or_remove_codes.html +0 -0
  5814. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/messages.html +0 -0
  5815. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/navbar.html +0 -0
  5816. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/notify.html +0 -0
  5817. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/pagination.html +0 -0
  5818. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/partial_forms/invalidate_code_form.html +0 -0
  5819. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/partial_forms/login_form.html +0 -0
  5820. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/partial_forms/remove_code_form.html +0 -0
  5821. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/partial_forms/test_setup_form.html +0 -0
  5822. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/security_tips.html +0 -0
  5823. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/sidebar.html +0 -0
  5824. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/test_setup.html +0 -0
  5825. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/view_batch_history.html +0 -0
  5826. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/view_codes.html +0 -0
  5827. {django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/utils → django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests}/__init__.py +0 -0
  5828. {django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/utils/cache → django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/fixtures}/__init__.py +0 -0
  5829. {django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/utils/errors → django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_integration}/__init__.py +0 -0
  5830. {django_auth_recovery_codes-1.0.1/django_auth_recovery_codes/utils/security → django_auth_recovery_codes-1.0.3/django_auth_recovery_codes/tests/test_recovery_code_batch}/__init__.py +0 -0
  5831. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/tests.py +0 -0
  5832. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/urls.py +0 -0
  5833. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/utils/cache/cache_utils.py +0 -0
  5834. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/utils/cache/safe_cache.py +0 -0
  5835. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/utils/converter.py +0 -0
  5836. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/utils/cooldown_period.py +0 -0
  5837. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/utils/errors/error_messages.py +0 -0
  5838. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/utils/exporters/file_converters.py +0 -0
  5839. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/utils/requests.py +0 -0
  5840. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/utils/schedulers.py +0 -0
  5841. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/utils/security/generator.py +0 -0
  5842. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/utils/security/hash.py +0 -0
  5843. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/utils/utils.py +0 -0
  5844. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/views_dashboard_helper.py +0 -0
  5845. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/views_download_helper.py +0 -0
  5846. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes/views_helper.py +0 -0
  5847. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes.egg-info/dependency_links.txt +0 -0
  5848. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes.egg-info/requires.txt +0 -0
  5849. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/django_auth_recovery_codes.egg-info/top_level.txt +0 -0
  5850. {django_auth_recovery_codes-1.0.1 → django_auth_recovery_codes-1.0.3}/setup.cfg +0 -0
@@ -0,0 +1,2807 @@
1
+ Metadata-Version: 2.4
2
+ Name: django-auth-recovery-codes
3
+ Version: 1.0.3
4
+ Summary: Django app for 2FA recovery codes
5
+ Home-page: https://github.com/EgbieAndersonUku1/django_2fa_recovery_codes
6
+ Author: Egbie Uku
7
+ Author-email: egbieuku@hotmail.com
8
+ License: MIT
9
+ Requires-Python: >=3.10,<3.14
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: Django>=5.0
13
+ Requires-Dist: django-picklefield>=3.3
14
+ Requires-Dist: django-q2>=1.8.0
15
+ Requires-Dist: django-email-sender>=2.0.6
16
+ Requires-Dist: requests>=2.32
17
+ Requires-Dist: reportlab>=4.4
18
+ Requires-Dist: redis>=3.5
19
+ Requires-Dist: pillow>=11.0
20
+ Requires-Dist: arrow>=1.3
21
+ Requires-Dist: beautifulsoup4>=4.13
22
+ Requires-Dist: asgiref>=3.9
23
+ Requires-Dist: soupsieve>=2.7
24
+ Requires-Dist: sqlparse>=0.5
25
+ Requires-Dist: typing_extensions>=4.14
26
+ Requires-Dist: tzdata>=2025.2
27
+ Provides-Extra: dev
28
+ Requires-Dist: black; extra == "dev"
29
+ Requires-Dist: flake8; extra == "dev"
30
+ Requires-Dist: pytest; extra == "dev"
31
+ Requires-Dist: types-python-dateutil; extra == "dev"
32
+ Dynamic: author
33
+ Dynamic: author-email
34
+ Dynamic: home-page
35
+ Dynamic: license-file
36
+ Dynamic: requires-python
37
+
38
+ ![Made with Python](https://img.shields.io/badge/Made%20with-Python-blue?logo=python)
39
+ ![Security](https://img.shields.io/badge/Security-213--bit-brightgreen)
40
+ ![Brute Force](https://img.shields.io/badge/Brute--force-Impractical-red)
41
+ ![License](https://img.shields.io/badge/License-MIT-yellow)
42
+ [![Downloads](https://static.pepy.tech/badge/django-auth-recovery-codes)](https://pepy.tech/project/django-auth-recovery-codes)
43
+
44
+
45
+
46
+ ## 🔐 Django 2FA Recovery Codes
47
+
48
+ The premises of this resuable application, is that it takes any Django application and extends that application so that it can now use the 2FA recovery codes as a backup login should you lose access.
49
+
50
+ `django_auth_recovery_codes` is a Django app that provides a robust system for generating, storing, and managing **2FA recovery codes**. Unlike a full two-factor authentication apps, this package focuses solely on **recovery codes**, although this is a lightweight application it is a very powerful tool, offering fine-grained control and asynchronous management for better UX and performance.
51
+
52
+ ## Table of Contents
53
+ * [Requirements & Key Technologies](#requirements--key-technologies)
54
+ * [Key Features](#key-features)
55
+ * [Quickstart video walkthrough](#quickstart-video-walkthrough)
56
+ * [How it Differs From A Full Two-Factor Authentication Apps](#how-it-differs-from-a-full-two-factor-authentication-apps)
57
+ * [User Interface](#user-ui-interface)
58
+ * [Asynchronous usage](#asynchronous-usage)
59
+ * [Admin interface](#admin-interface)
60
+ * [Flag configuration](#flag-configuration)
61
+ * [Caching](#caching)
62
+ * [Email and Logging capabilities](#email-and-logging-capabilities)
63
+ * [Rate limiter](#rate-limiter)
64
+ * [Code generation attribrutes](#code-generation-attribrutes)
65
+ * [Cleanup Configuration Examples](#cleanup-configuration-examples)
66
+ * [Large app (millions of codes)](#large-app-millions-of-codes)
67
+ * [Cleanup Process Visualised](#cleanup-process-visualised)
68
+ * [Recommended Settings by Scale](#recommended-settings-by-scale)
69
+ * [How Cleanup Works Internally](#how-cleanup-works-internally)
70
+ * [FAQ Frequently Asked Questions](#faq--frequently-asked-questions)
71
+ * [Configurable flags for developer](#configurable-flags-for-developer)
72
+ * [2FA Recovery Code Generator](#django-2fa-recovery-code-generator)
73
+ * [Security overview](#security-overview)
74
+ * [Entropy](#entropy)
75
+ * [Total Combinations](#total-combinations)
76
+ * [Brute-Force Resistance](#brute-force-resistance)
77
+ * [Perspective](#prespective)
78
+ * [Developer Appendix 🛠️](#developer-appendix)
79
+ * [Summary](#summary)
80
+ * [Use Cases](#use-cases)
81
+ * [Installation](#installation)
82
+ * [Quick Example](#quick-example)
83
+ * [How to Use 2FA Recovery Codes](#how-to-use-2fa-recovery-codes)
84
+ * [Setting up the Cache or using the default cache](#setting-up-the-cache-or-using-the-default-cache)
85
+ * [How does the cache work?](#how-does-the-cache-work)
86
+ * [Using Pagination and Caching](#using-pagination-and-caching)
87
+ * [What cache should I use?](#what-cache-should-i-use)
88
+ * [Using Django Cache Without Configuring a Backend](#using-django-cache-without-configuring-a-backend)
89
+ * [Django-Q vs Celery and why Django Auth Recovery codes use Django-q](#django-q-vs-celery-and-why-django-auth-recovery-codes-use-django-q)
90
+ * [Why this application uses Django-Q](#why-this-application-uses-django-q)
91
+ * [Using Django-Q with `django_auth_recovery_codes`](#using-django-q-with-django-2fa-recovery-codes)
92
+ * [Benefits of using Django-Q](#benefits-of-using-django-q)
93
+ * [Setting up Django-q](#setting-up-django-q)
94
+ * [Django Auth Recovery Settings](#django-auth-recovery-settings)
95
+ * [Using and setting up Django-q](#using-and-setting-up-django-q)
96
+ * [Django Auth Recovery flag settings](#django-auth-recovery-flag-settings)
97
+ * [Recovery Code Display Settings](#recovery-code-display-settings)
98
+ * [Cooldown Settings Flags](#cooldown-settings-flags)
99
+ * [Rate Limiting & Caching](#rate-limiting--caching)
100
+ * [Audit & Logging Setting Flags](#audit--logging-setting-flags)
101
+ * [Email & Admin Settings Flags](#email--admin-settings-flags)
102
+ * [Code Management & Limits](#code-management--limits)
103
+ * [Site Settings Flags](#site-settings-flags)
104
+ * [Example Flag Usage](#example-flag-usage)
105
+ * [Best Practices for Managing Environment Variables](#best-practices-for-managing-environment-variables)
106
+ * [Default Values & Required Variables](#default-values--required-variables)
107
+ * [Run checks to verify that flags are valid](#run-checks-to-verify-that-flags-are-valid)
108
+ * [Sending Emails and using Logging](#sending-emails-and-using-logging)
109
+ * [Using async vs synchronous](#using-async-vs-synchronous)
110
+ * [Configuration settings](#configuration-settings)
111
+ * [Hang on a minute, why can I email myself the code only once, and only if I haven’t logged out after generating it?](#hang-on-a-minute-why-can-i-email-myself-the-code-only-once-and-only-if-i-havent-logged-out-after-generating-it)
112
+ * [What does this mean for your codes?](#what-does-this-mean-for-your-codes)
113
+ * [What happens if I refresh the page, can I still email myself the code?](#what-happens-if-i-refresh-the-page-can-i-still-email-myself-the-code)
114
+ * [But if I’m still logged in, why can I only email myself a single copy?](#but-if-im-still-logged-in-why-can-i-only-email-myself-a-single-copy)
115
+ * [Can I email myself a copy if I generate a new batch?](#can-i-email-myself-a-copy-if-i-generate-a-new-batch)
116
+ * [Using Logging with the Application](#using-logging-with-the-application)
117
+ * [What if I don’t want to override my existing LOGGING configuration?](#what-if-i-dont-want-to-override-my-existing-logging-configuration)
118
+ * [Downloading Recovery Codes](#downloading-recovery-codes)
119
+ * [How downloads work](#how-downloads-work)
120
+ * [Important security notes](#important-security-notes)
121
+ * [Example usage](#example-usage)
122
+ * [Quickstart and Walkthrough read](#quickstart-and-walkthrough)
123
+ * [Setup](#setup)
124
+ * [Installation (with Virtual Environment)](#installation-with-virtual-environment)
125
+ * [3. Upgrade pip (optional but recommended)](#3-upgrade-pip-optional-but-recommended)
126
+ * [4. Install Django (latest version)](#4-install-django-latest-version)
127
+ * [5. Install the recovery codes package](#5-install-the-recovery-codes-package)
128
+ * [6. Verify installation](#6-verify-installation)
129
+ * [8. Run initial migrations](#8-run-initial-migrations)
130
+ * [9. Create a Django superuser](#9-create-a-django-superuser)
131
+ * [10. Start a new app called `home`](#10-start-a-new-app-called-home)
132
+ * [12. Run the development server](#12-run-the-development-server)
133
+ * [Configure URLs](#configure-urls)
134
+ * [Configure your Settings.py file](#configure-your-settingspy-file)
135
+ * [16. Set up the file-based email backend (for testing)](#16-set-up-the-file-based-email-backend-for-testing)
136
+ * [17. Run the system checks](#17-run-the-system-checks)
137
+ * [17a. Generate a recovery code](#17a-generate-a-recovery-code)
138
+ * [Run Services](#run-services)
139
+ * [Create a Home View](#create-a-home-view)
140
+ * [Access the Admin](#access-the-admin)
141
+ * [Access the Recovery Codes page dashboard](#access-the-recovery-codes-page-dashboard)
142
+ * [Code Generation](#code-generation)
143
+ * [Verifying Generated Codes](#verifying-generated-codes)
144
+ * [Downloaded and Emailed Code](#downloaded-and-emailed-code)
145
+ * [Invalidating or Deleting a Code](#invalidating-or-deleting-a-code)
146
+ * [Viewing the Code Batch History](#viewing-the-code-batch-history)
147
+ * [Logout of the application](#logout-of-the-application)
148
+ * [Failed Attempts and Rate Limiting](#failed-attempts-and-rate-limiting)
149
+ * [Successful Login](#successful-login)
150
+ * [Existing Project Setup](#2-existing-project-setup)
151
+ * [Scheduling a Code Removal Using Django-Q](#scheduling-a-code-removal-using-django-q)
152
+ * [Running Tests](#running-tests)
153
+ * [Warning ⚠](#warning)
154
+ * [Known Issues](#known-issues)
155
+ * [License](#license)
156
+ * [Support](#support)
157
+
158
+
159
+ ---
160
+
161
+ ## Requirements & Key Technologies
162
+
163
+ - **Python 3.10+**
164
+ This library uses [Structural Pattern Matching](https://docs.python.org/3/whatsnew/3.10.html#structural-pattern-matching), introduced in Python 3.10, via the `match`-`case` syntax.
165
+
166
+ - **Django 5.2+**
167
+ The project is built and tested using Django 5.2, which has Long-Term Support (LTS).
168
+ Using an earlier version, such as Django 4.1.x, may work in some cases but is **not guaranteed** and could potentially break the application, since it has only been tested with Django 5.2.
169
+
170
+ ### Why Python 3.10?
171
+
172
+ The project relies on the `match`-`case` syntax, which provides a more readable and expressive way to handle complex conditional logic.
173
+
174
+ ## Key Technologies and Libraries Used
175
+
176
+ - **EmailSender**: a lightweight but powerful library for sending chainable rich emails with templates. [Find out more](https://github.com/EgbieAndersonUku1/django-email-sender)
177
+ - **EmailSenderLogger**: a lightweight but powerful library for logging, emails sent by EmailSender. [Find out more](https://github.com/EgbieAndersonUku1/django-email-sender)
178
+ - **Django-q**: an asynchronous task manager used for processing background tasks, including using EmailSender to send emails.
179
+ - **JavaScript (JS)**: for interactivity and fetch requests.
180
+ - **HTML**: for structuring content.
181
+ - **CSS**: for styling the user interface.
182
+
183
+ ---
184
+
185
+ ---
186
+
187
+
188
+ ### Key Features
189
+
190
+ * Generate recovery codes in configurable batches.
191
+ * Track recovery codes individually:
192
+ * Mark codes as used, inactive, or scheduled for deletion.
193
+ * User the 2FA code to login which becomes invalid after a single use
194
+ * Batch management:
195
+ * Track issued and removed codes per batch.
196
+ * Statuses for active, invalidated, or deleted batches.
197
+ * Login
198
+ * Login in using your 2FA Recovery Backup code
199
+ * Asynchronous cleanup using Django-Q:
200
+ * Delete expired or invalid codes without locking the database.
201
+ * Scheduler allows admins to set cleanup intervals (e.g., every 2 days) without touching code.
202
+ * Optional options to email the report to the admin
203
+ * Optional option to store user emails (Whenever the user send themselves a code) in the database
204
+ * Optional scheduler to delete Recovery code Audit model (tracks the users, the number of code issued, time issued, etc)
205
+ * Secure storage:
206
+ * Codes are hashed before saving; no plaintext storage.
207
+ * Extensible utilities for generating and verifying codes.
208
+
209
+ ---
210
+
211
+ ### How It Differs From A Full Two-Factor Authentication Apps?
212
+
213
+ `django_auth_recovery_codes` is designed **solely for recovery codes**, offering fine-grained control, asynchronous management, and admin-friendly batch handling.
214
+
215
+ * ### User UI interface
216
+ * Dedicated login interface page to enter your email and 2FA recovery code
217
+ * Dashboard that allows the user to:
218
+ * Generate a batch of 2FA recovery codes (default=10 generated, configurable via settings flags) with expiry date or doesn't expiry
219
+ * Regenerate code (Uses brute force rate limiter with a penalty that increases the wait time if codes is regenerated within that time window)
220
+ * Email, Delete or Download entire codes via the buttons
221
+ * One-time verification code setup form
222
+ * A one-time setup that allows the user to enter a 2FA code after generation (for the first time) to verify that the backend has configured it correctly without marking the code as used. The tests indicate whether the code has been set up correctly.
223
+
224
+ * Invalidate or delete a code via interactive form
225
+ * view batch histories
226
+
227
+ #### Example a single recovery code batch View
228
+
229
+ | Field | Value |
230
+ | ------------------------- | ------------------------------------ |
231
+ | Batch ID | 8C2655A1-8F14-4B56-AEC8-7DDA72F887A4 |
232
+ | Expiry info | Active |
233
+ | User | Egbie |
234
+ | Date issued | 23 Sept. 2025, |
235
+ | Date modified | 23 Sept. 2025, |
236
+ | Number of codes issued | 10 |
237
+ | Number of codes used | 0 |
238
+ | Number of deactivated | 0 |
239
+ | Number of removed | 0 |
240
+ | Has generated code batch | True |
241
+ | Has viewed code batch | True |
242
+ | Has downloaded code batch | False |
243
+ | Has emailed code batch | False |
244
+
245
+ * Pagination to split the batch recovery codes history on different pages instead of one long page
246
+
247
+ * Focuses **exclusively on recovery codes**, rather than full 2FA flows.
248
+ * Built-in **logger configuration** which can be imported into settings or merged with an existing logger.
249
+
250
+ * ### Asynchronous Usage
251
+
252
+ * Built with **asynchronous usage** using Django-Q:
253
+ * Automatically deletes expired or invalid codes when uses with scheduler.
254
+ * On a successful delete scheduler generates an audit report of the number of deleted codes and sends it to admin via email.
255
+ * Email sending can be configured to run **asynchronous or synchronous** depending on your environment:
256
+ * `DEBUG = True` : uses synchronous sending (easy for development or testing).
257
+ * `DEBUG = False` : uses asynchronous sending (recommended for production; doesn’t block the application while sending in the background).
258
+
259
+ * ### Admin interface
260
+ * **Admin-friendly view interface code management**, including the ability to scheduler deletion for expired or invalid codes e.g (every 2 days, etc) or even the audit history.
261
+ * ### Code tracking
262
+ * **Individual code tracking** with granular control over each code.
263
+ * ### Flag configuration
264
+ * Optional configuration to turn **logger** on or off to track the actions of users generating recovery codes, email sent, various aspect of the models, etc.
265
+ * Optional **storage of user email** in the model for auditing purposes.
266
+ * ### Caching
267
+ * Utilises **caching** (Redis, Memcached, default cache, etc) for
268
+ * Pagination and page reads
269
+ * Brute-force rate limiting
270
+ * Other database-heavy operations
271
+ * Reduces database hits until cache expires or updates are made.
272
+
273
+ * ### Email and logging capabilities
274
+ * **Email sending capabilities** via `EmailSender` library.
275
+ * **Email logging** via `EmailSenderLogger` library.
276
+
277
+ * ### Rate limiter
278
+ * **Maximum login attempt control** with a brute-force rate limiter:
279
+ * Configurable penalty wait times that increase if a user retries during the wait window.
280
+ * **Brute-force rate limiter** for code generation:
281
+ * Prevents spam and imposes a penalty if the user attempts regeneration too soon.
282
+
283
+ * ### Code generation attribrutes
284
+ * Generate **codes that expire** or have no expiry.
285
+ * Allow users to **download or email codes** (one per batch).
286
+ * **Invalidate, delete a single code or an entire batch** easily.
287
+ * Users can **view batch details**, e.g., number of codes generated, emailed, or downloaded.
288
+
289
+ * ### Configurable flags for developer
290
+
291
+ #### Configuration flags settings for the Django Auth Recovery code app
292
+
293
+ ```python
294
+ DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL =
295
+ DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER =
296
+ DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME =
297
+ DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG =
298
+
299
+ DJANGO_AUTH_RECOVERY_KEY =
300
+
301
+ DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP =
302
+ DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS =
303
+ DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS =
304
+ DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER =
305
+
306
+ DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE =
307
+ DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN =
308
+ DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_CUTOFF_POINT =
309
+ DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_MULTIPLIER =
310
+ DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS =
311
+
312
+ DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX =
313
+ DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN =
314
+ DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL =
315
+
316
+ DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE =
317
+ DJANGO_AUTH_RECOVERY_CODE_PER_PAGE =
318
+ DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE =
319
+ DJANGO_AUTH_RECOVERY_CODES_MAX_DELETIONS_PER_RUN =
320
+
321
+ DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME =
322
+ DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT =
323
+
324
+ DJANGO_AUTH_RECOVERY_CODES_SITE_NAME =
325
+ DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT =
326
+
327
+ DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG =
328
+
329
+
330
+ ```
331
+ [⬆ Back to Top](#top)
332
+
333
+ ---
334
+
335
+ ## Django 2FA Recovery Code Generator
336
+
337
+ ### **Security Overview**
338
+
339
+ These 2FA recovery codes generated are designed to be **extremely secure** and practically impossible to guess. Protects against Brute force, Rainbow attacks and timed attacks
340
+
341
+ ### **Code Format**
342
+
343
+ ```
344
+ XXXXXX-XXXXXX-XXXXXX-XXXXXX-XXXXXX-XXXXXX
345
+ ```
346
+
347
+ * **6 groups** of **6 characters** each (36 characters)
348
+ * **Alphabet:** 60 characters (`A–Z`, `a–z`, `2–9`), the app avoiding confusing characters like `0` vs `O` and `1` vs `l`
349
+ * **Cryptographically secure randomness** ensures codes are unpredictable
350
+
351
+ ---
352
+
353
+ ### **Entropy**
354
+
355
+ Entropy measures how unpredictable a code is, the higher the entropy, the harder it is to guess.
356
+
357
+ * **Entropy per character:**
358
+
359
+ $$
360
+ \log_2(60) \approx 5.91 \text{ bits}
361
+ $$
362
+
363
+ * **Entropy per group (6 characters):**
364
+
365
+ $$
366
+ 6 \times 5.91 \approx 35.5 \text{ bits}
367
+ $$
368
+
369
+ * **Total entropy for the full 36-character code:**
370
+
371
+ $$
372
+ 36 \times 5.91 \approx 213 \text{ bits}
373
+ $$
374
+
375
+ > For comparison, AES-128 encryption has 128 bits of entropy. These recovery codes are **much stronger** in terms of guessing resistance.
376
+
377
+ ---
378
+
379
+ ### **Total Combinations**
380
+
381
+ With 36 characters chosen from 60 possibilities each:
382
+
383
+ $$
384
+ 60^{36} \approx 2 \times 10^{63} \text{ unique codes}
385
+ $$
386
+
387
+ This astronomical number of possibilities ensures that **guessing a valid code is virtually impossible**.
388
+
389
+ ---
390
+
391
+ ### **Brute-Force Resistance**
392
+
393
+ Even with a supercomputer that tests codes extremely quickly, brute-forcing a valid recovery code is **completely impractical**:
394
+
395
+ | Attack Speed | Seconds | Years |
396
+ | ------------------------- | --------- | --------- |
397
+ | 1 billion/sec (10^9) | 2 × 10^54 | 6 × 10^46 |
398
+ | 1 trillion/sec (10^12) | 2 × 10^51 | 6 × 10^43 |
399
+ | 1 quintillion/sec (10^18) | 2 × 10^45 | 6 × 10^37 |
400
+
401
+ > **For comparison:** the age of the universe is only \~1.4 × 10^10 years. Even a computer testing a **quintillion codes per second** would need far longer than the universe has existed to find a valid code.
402
+
403
+ ---
404
+
405
+ ### Prespective?
406
+
407
+ ### What this means?
408
+
409
+ * Each character is chosen randomly from 60 possibilities.
410
+ * With 36 characters, the number of possible codes is **more than 2 followed by 63 zeros**.
411
+ * Each recovery code has **≈213 bits of entropy**, making it **extremely resistant to guessing or brute-force attacks**.
412
+ * That’s **so many possibilities** that even the fastest computers would take **longer than the age of the universe** to try them all.
413
+ * The vast number of possible codes ensures that **every code is unique and unpredictable**.
414
+ * This makes guessing a valid code virtually impossible and this is without brute rate limiter, with a rate limiter (which this app uses it is virtually impossible).
415
+
416
+ > In short: it’s **far stronger than standard encryption like AES-128**.
417
+
418
+ <div align="center">
419
+ <img src="django_auth_recovery_codes/docs/images/security-strength.png" alt="2FA login form" width="400">
420
+ </div>
421
+
422
+ > You can trust these recovery codes to keep your account safe even against attackers with enormous computational power.
423
+
424
+ [⬆ Back to Top](#top)
425
+
426
+ ---
427
+
428
+ ### Developer Appendix
429
+
430
+ ```python
431
+ import math
432
+
433
+ def brute_force_time(alphabet_size=52, chars_per_group=6, groups=6, guesses_per_second=10**9):
434
+ total_combinations = alphabet_size ** (chars_per_group * groups)
435
+ seconds = total_combinations / guesses_per_second
436
+ years = seconds / (60 * 60 * 24 * 365)
437
+ return total_combinations, seconds, years
438
+
439
+ combos, seconds, years = brute_force_time()
440
+ print(f"Total combinations: {combos:e}")
441
+ print(f"Seconds to crack: {seconds:e}")
442
+ print(f"Years to crack: {years:e}")
443
+ ```
444
+
445
+ **Example output:**
446
+
447
+ ```
448
+ Total combinations: 3.292e+61
449
+ Seconds to crack: 3.292e+52
450
+ Years to crack: 1.043e+45
451
+ ```
452
+
453
+ ---
454
+
455
+ #### Summary
456
+
457
+ * **212.8 bits recovery codes** → astronomically secure
458
+ * **≈3.3 × 10^61 combinations** → impossible to brute-force
459
+ * Even with a supercomputer, cracking a single code would take **trillions of times longer than the age of the universe**
460
+ * With **rate limiting**, brute-force becomes completely infeasible
461
+
462
+ [⬆ Back to Top](#top)
463
+
464
+ ---
465
+
466
+ #### Use Cases
467
+
468
+ * Integrate with any existing 2FA system to provide a secure set of recovery codes.
469
+ * Large-scale systems where thousands of users might need recovery codes, ensuring database performance is not impacted.
470
+ * Admin-friendly management of recovery codes, including scheduling cleanups without developer intervention.
471
+ * Systems requiring secure, hashed storage of recovery codes while retaining full control over their lifecycle.
472
+
473
+ [⬆ Back to Top](#top)
474
+
475
+ ---
476
+
477
+ ## Installation
478
+
479
+ ```bash
480
+ pip install django_auth_recovery_codes
481
+ ```
482
+
483
+ ```python
484
+ # settings.py
485
+ INSTALLED_APPS = [
486
+ ...
487
+ 'django_2fa_recovery_codes',
488
+ 'django_q',
489
+ ]
490
+ ```
491
+
492
+ ---
493
+
494
+ ## Quick Example
495
+
496
+ ```python
497
+ from django_2fa_recovery_codes.models import RecoveryCodeBatch
498
+
499
+ # Create a batch of 10 recovery codes for a user
500
+ plain_codes, batch_instance = RecoveryCodeBatch.create_recovery_batch(user, days_to_expire=30)
501
+
502
+
503
+ ```
504
+
505
+ ---
506
+
507
+
508
+ ## How to Use 2FA Recovery Codes
509
+
510
+ ### Setting up the Cache or using the default cache
511
+
512
+ To use this application, you can either set up a permanent cache system in the backend or allow it to use the default cache.
513
+
514
+ ### Why is a cache necessary for this app?
515
+
516
+ This application is designed to be scalable, meaning it can support anything from a few users to thousands without compromising performance or putting unnecessary load on the database. It relies heavily on caching:
517
+
518
+ - Everything from page reads
519
+ - Pagination
520
+ - Brute-force rate limiting, waiting time for failed login attempts to the cooling period for regenerating new codes is computed and cached.
521
+ - Database-heavy operations
522
+
523
+ The database is only accessed when the cache expires or an update is made e.g the user uses, deletes or invalidates a code.
524
+
525
+
526
+ #### Cache Expiry and TTL Settings
527
+
528
+ Cache entries have a configurable **Time-To-Live (TTL)**, which determines how long the data is stored before being refreshed. The following settings are used by default:
529
+
530
+ ```python
531
+ DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL = 300 # Default 5 minutes
532
+ DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN = 60 # Minimum 1 minute
533
+ DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX = 3600 # Maximum 1 hour
534
+
535
+
536
+ ```
537
+
538
+ These settings **can be adjusted by the developer** in the Django settings to balance performance with data freshness. This ensures cache expiry times remain within safe and predictable bounds.
539
+
540
+ ### How does the cache work?
541
+
542
+ The cache helps prevent issues such as **race conditions** and **stale data**.
543
+
544
+ #### What is a race condition?
545
+
546
+ A race condition occurs when two or more processes try to modify the same data at the same time, leading to unpredictable results.
547
+
548
+ **Example:**
549
+
550
+ Imagine two requests to generate a new 2FA recovery code arrive simultaneously for the same user. If both try to write to the cache at the same time, one could overwrite the other, resulting in lost data. To prevent this, the application ensures that only one process can write to a specific cache key at a time.
551
+
552
+ This mechanism guarantees that cache data remains consistent, preventing conflicts and ensuring that recovery codes are always valid and reliable.
553
+
554
+ ---
555
+
556
+
557
+ ### Using Pagination and Caching
558
+
559
+ The application uses a **TTL cache** for paginated data. Without caching, every page refresh or navigation triggers a database query to fetch the relevant objects, which can be inefficient.
560
+
561
+ With the TTL cache (how long an data is cached is determined by the setting flags, default five minutes):
562
+
563
+ * Paginated query results (e.g., a history of recovery codes) are stored in memory for a set duration.
564
+ * While the cache is valid, page refreshes or navigation read from the cache instead of hitting the database.
565
+ * When underlying data changes, for example, a new batch of codes is generated, the database and the cache is updated, and the newly updated data from the cache is used. This ensures that subsequent requests are up-to-date.
566
+
567
+
568
+ ### What cache should I use?
569
+
570
+ That depends entirely on you. The application is designed to **use caching**, but it’s backend-agnostic. It will work with any cache supported by Django (e.g. Redis, Memcached, or in-memory cache). It assumes no cache over the other and leaves it to the developer to decide which one to use under the hood.
571
+
572
+ This flexibility is possible because the application only interacts with **Django’s cache framework abstraction**. Under the hood, all cache operations (`cache.set`, `cache.get`, etc.) are handled by Django. The actual backend Redis, Memcached, or in-memory is just a plug-in configured in `settings.py`.
573
+
574
+ * **Redis** : A common choice for production, especially in distributed systems. It supports persistence, clustering, and advanced features like pub/sub.
575
+ * **Memcached** : Lightweight and very fast, best for simple key/value caching when persistence is not required.
576
+ * **In-memory cache** : Used by default if no backend is configured. Easiest to set up, but limited to a single process and **wipes entirely when the application restarts**, so best for development or small-scale setups.
577
+
578
+ #### Example configurations (Django)
579
+
580
+ ```python
581
+ # settings.py
582
+
583
+ # Redis
584
+ CACHES = {
585
+ "default": {
586
+ "BACKEND": "django.core.cache.backends.redis.RedisCache",
587
+ "LOCATION": "redis://127.0.0.1:6379/1",
588
+ }
589
+ }
590
+
591
+ # Memcached
592
+ CACHES = {
593
+ "default": {
594
+ "BACKEND": "django.core.cache.backends.memcached.MemcachedCache",
595
+ "LOCATION": "127.0.0.1:11211",
596
+ }
597
+ }
598
+
599
+ # In-memory (local memory cache, default if none configured)
600
+ CACHES = {
601
+ "default": {
602
+ "BACKEND": "django.core.cache.backends.locmem.LocMemCache",
603
+ "LOCATION": "unique-snowflake",
604
+ }
605
+ }
606
+ ```
607
+
608
+ #### Example usage
609
+
610
+ ```python
611
+ from django.core.cache import cache
612
+
613
+ # Store a value for 5 minutes
614
+ cache.set("greeting", "Hello, world!", timeout=300)
615
+
616
+ # Retrieve the value
617
+ message = cache.get("greeting")
618
+ print(message) # "Hello, world!"
619
+ ```
620
+
621
+ ### Using Django Cache Without Configuring a Backend
622
+
623
+ Even if you don’t explicitly define a cache backend in `settings.py`, Django provides a **default in-memory cache (`LocMemCache`)** which the application uses by using the handlers `cache.get()` and `cache.set()` via a specifically designed cache functions:
624
+
625
+
626
+ Key points:
627
+
628
+ 1. Django uses `LocMemCache` internally if `CACHES` is not defined.
629
+ 2. If a in-memory cache is used (nothing added in the settings) when Django is restarted, the cache is automatically cleared by Django
630
+ 3. Each worker process has its own separate cache.
631
+
632
+ ---
633
+
634
+ In short: the app is **built to use caching by default**, but if no backend is configured it automatically falls back to an in-memory cache. However, because it is an in-memory when the Django sever restarts it **resets the cache**. For production, a persistent backend like Redis is recommended.
635
+
636
+ [⬆ Back to Top](#top)
637
+
638
+ ---
639
+
640
+ ## Using and setting up Django-q
641
+
642
+ ### What is Django-Q?
643
+
644
+ **Django-Q** is a task queue and asynchronous job manager for Django. It allows your application to run tasks **outside the normal request/response cycle**, this is useful for background processing, scheduling, or parallel execution.
645
+
646
+ ### Key features include:
647
+
648
+ * Asynchronous Task Execution
649
+
650
+ Allows tasks to run in the background so users don’t have to wait for them to complete, for example:
651
+
652
+ * Sending emails
653
+ * Generating reports
654
+ * Processing files
655
+ * Performing API requests
656
+ * Deleting tasks
657
+
658
+ ### Scheduled Tasks
659
+
660
+ Supports scheduling tasks similar to cron jobs:
661
+
662
+ * One-off tasks at a specific time
663
+ * Recurring tasks (daily, weekly, etc.)
664
+
665
+ ### Multiple Brokers
666
+
667
+ Tasks can be stored in different backends (brokers):
668
+
669
+ * **Django ORM (default)**: stored in the database
670
+ * **Redis**: faster and suitable for high-performance needs
671
+ * Other databases (PostgreSQL, MySQL)
672
+
673
+ ### Cluster Mode
674
+
675
+ Runs multiple worker processes in parallel for better performance and scalability.
676
+
677
+ ### Result Storage
678
+
679
+ Stores task results so you can check completion status and retrieve outputs.
680
+
681
+ ---
682
+
683
+ To run the worker cluster, use:
684
+
685
+ ```bash
686
+ python manage.py qcluster
687
+ ```
688
+
689
+ ---
690
+
691
+ ## Django-Q vs Celery and why Django Auth Recovery codes use Django-q
692
+
693
+
694
+ Both Django-Q and Celery are task queues, but they differ in complexity and use cases:
695
+
696
+ | Feature | Django-Q | Celery |
697
+ | ------------------------- | -------- | -------- |
698
+ | Async tasks | ✅ | ✅ |
699
+ | Scheduled tasks | ✅ | ✅ |
700
+ | Periodic/recurring tasks | ✅ | ✅ |
701
+ | Multiple brokers | ✅ | ✅ |
702
+ | Result backend | ✅ | ✅ |
703
+ | Retry/failure handling | Basic | Advanced |
704
+ | Task chaining & workflows | Limited | ✅ |
705
+
706
+
707
+ **Key differences**:
708
+
709
+ * **Django-Q** is simpler, uses Django’s ORM as a broker by default, and is ideal for small to medium projects.
710
+ * **Celery** is more complex, requires an external broker like Redis or RabbitMQ, and is better suited for large-scale, high-load projects with advanced workflows.
711
+
712
+ ---
713
+
714
+ ## Why does this application use Django-Q?
715
+
716
+ `django_auth_recovery_codes` uses Django-Q to handle background tasks such as:
717
+
718
+ 1. When the user email themselves a copy of their plaintext code
719
+ 2. When the admin runs or sets up scheduler (once, daily, weekly, etc) to delete invalid or expired codes, a report is also generated and sent to the admin via email
720
+
721
+
722
+ Without using Django-q whenever a user deletes their code or sends a copy of their plaintext code it will block normal request/response, and if multiple users are deleting their codes at the same time it can causes problems in the database by. With this it ensures that these tasks do not block normal request/response cycles and can run efficiently in the background without impacting the user experience.
723
+
724
+
725
+ ---
726
+
727
+ ### ⚠️ Note on Batch Deletion
728
+
729
+ Even though expired codes are deleted asynchronously, deleting **millions of codes at once** can still cause performance issues such as long transactions or database locks.
730
+
731
+ To avoid this, `django_auth_recovery_codes` supports **batch deletion** via the configurable setting:
732
+
733
+ ```python
734
+ # settings.py
735
+ Django Auth Recovery Codes_BATCH_DELETE_SIZE = 1000
736
+ ```
737
+
738
+ * If set, expired codes will be deleted in **chunks of this size** (e.g. 1000 at a time).
739
+ * If not set, all expired codes are deleted in a single query.
740
+
741
+
742
+ [⬆ Back to Top](#top)
743
+
744
+ ---
745
+
746
+
747
+ ### Using Django-Q with `django_auth_recovery_codes`
748
+
749
+ Django Auth Recovery Codes provides a utility task to clean up expired recovery codes, but since this is a reusable app, the scheduling of this task is **left up to you**, depending on your project’s needs and dataset size.
750
+
751
+ ---
752
+
753
+ ####. Scheduling the Task with Django-Q via the admin interface `Recovery code batch scheduler`
754
+
755
+ You can schedule this cleanup task to run at whatever time that that suits via the admin. For example every date at a given time.
756
+
757
+ See the [Django-Q scheduling docs](https://django-q.readthedocs.io/en/latest/schedules.html) for more options.
758
+
759
+ ---
760
+
761
+ ---
762
+
763
+ ### How does Django-Q delete codes if the user deletes them from the frontend?
764
+
765
+ `django_auth_recovery_codes` does **not** immediately delete a code when the user deletes it from the frontend. Instead, it performs a **soft delete**, the code is marked as invalid and can no longer be used. From the user’s perspective, the code is “gone,” but the actual row still exists in the database until the cleanup task runs.
766
+
767
+ When the Django-Q scheduler task runs (either automatically or triggered by the admin), any codes marked for deletion are permanently removed in the background (in batches).
768
+
769
+ ---
770
+
771
+ ### Why not delete the code immediately?
772
+
773
+ Since this is a **reusable app** that can be plugged into any Django projects of any size (small apps or large-scale environments), immediate deletion is avoided for two key reasons:
774
+
775
+ 1. **Database contention**
776
+ In environments with thousands of users, potential many codes could be deleted at the same time. Deleting them synchronously could lock rows or put heavy strain on the database.
777
+
778
+ 2. **User experience**
779
+ Immediate deletion happens in the request/response cycle. If many users delete codes at once, their requests would take longer, and the frontend might “freeze” while deletions are processed leading to a poor UX.
780
+
781
+ ---
782
+
783
+ ### Benefits of using Django-Q
784
+
785
+ By offloading deletion to Django-Q:
786
+
787
+ * Deletion is handled as a **background task**, so it doesn’t block the frontend.
788
+ * The database can process deletions more efficiently, especially when using **batch deletion**.
789
+ * Users get a smoother experience ,the code disappears instantly from their view, while the actual cleanup happens safely in the background.
790
+
791
+
792
+ ### Deletion flow
793
+
794
+ <div align="center">
795
+
796
+ <img src="django_auth_recovery_codes/docs/images/deletion_flowchart.png" alt="Code deletion flowchart" width="300">
797
+
798
+ </div>
799
+ ---
800
+
801
+ ### Batch deletion configuration
802
+
803
+ For projects with very large datasets, batch deletion can be enabled via the `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE` setting flag:
804
+
805
+ ```python
806
+ # settings.py
807
+ DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE = 1000
808
+ ```
809
+
810
+ * If set, expired or soft-deleted codes will be removed in chunks of this size.
811
+ * If not set, all deletions happen in a single query.
812
+
813
+ This approach provides flexibility, small apps can use one-shot deletes, while larger systems can safely handle deletions in manageable batches.
814
+
815
+ ---
816
+
817
+
818
+ ## Setting up Django-Q
819
+
820
+ The `django_auth_recovery_codes` library uses **Django-Q** internally. You don’t need to install it separately, but you must configure it in your Django project to ensure background tasks run properly.
821
+
822
+ ---
823
+
824
+ ### 1. Add Django-Q to Installed Apps
825
+
826
+ In your `settings.py`:
827
+
828
+ ```python
829
+ INSTALLED_APPS = [
830
+ ...
831
+ 'django_q',
832
+ ]
833
+ ```
834
+
835
+ ---
836
+
837
+ ### 2. Configure the Q\_CLUSTER
838
+
839
+ Example configuration:
840
+
841
+ ```python
842
+ Q_CLUSTER = {
843
+ 'name': 'recovery_codes',
844
+ 'workers': 2,
845
+ 'timeout': 300, # Maximum time (seconds) a task can run
846
+ 'retry': 600, # Retry after 10 minutes if a task fails (retry must be greater than timeout)
847
+ 'recycle': 500, # Recycle workers after this many tasks
848
+ 'compress': True, # Compress data for storage
849
+ 'cpu_affinity': 1, # Assign workers to CPU cores
850
+ 'save_limit': 250, # Maximum number of task results to store
851
+ 'queue_limit': 500,# Maximum number of tasks in the queue
852
+ 'orm': 'default', # Use the default database for task storage
853
+ }
854
+ ```
855
+
856
+ For more configuration options, see the [official Django-Q documentation](https://django-q.readthedocs.io/en/latest/configure.html)
857
+
858
+ ---
859
+
860
+ ### 3. Running the Cluster
861
+
862
+ Don’t forget to start the Django-Q worker cluster so scheduled tasks actually run:
863
+
864
+ ```bash
865
+ python manage.py qcluster
866
+ ```
867
+
868
+ [⬆ Back to Top](#top)
869
+
870
+ ---
871
+
872
+ ## Django Auth Recovery flag settings
873
+
874
+ These environment variables configure the **Django Auth Recovery** system, controlling email notifications, audit logs, recovery code display, rate limiting, cooldowns, and code management.
875
+
876
+ ---
877
+ ### **📌 Cheat Sheet: Variable Categories**
878
+
879
+ | Icon | Category | Jump to Section |
880
+ | ---- | ------------------------- | ------------------------------------------------------ |
881
+ | 📧 | Email & Admin Settings | [Email & Admin Settings Flags](#email--admin-settings-flags) |
882
+ | 📝 | Audit & Logging | [Audit & Logging Setting Flags](#audit--logging-setting-flags) |
883
+ | 📄 | Code Display & Pagination | [Recovery Code Display Settings](#recovery-code-display-settings) |
884
+ | ⚡ | Rate Limiting & Caching | [Rate Limiting & Caching](#rate-limiting--caching) |
885
+ | ⏱ | Cooldown Settings | [Cooldown Settings Flags](#cooldown-settings-flags) |
886
+ | 🗂 | Code Management & Limits | [Code Management & Limits](#code-management--limits) |
887
+
888
+ > Quick visual roadmap to jump to any section in the README.
889
+
890
+ ---
891
+
892
+
893
+
894
+ ## Email & Admin Settings Flags
895
+
896
+ These settings control which email and admin accounts are used for recovery code notifications and scheduled operations.
897
+
898
+ | Variable | Description |
899
+ | ------------------------------------------------- | --------------------------------------------------------------------------- |
900
+ | `DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL` | Admin email address used to receive generated reports after scheduled code deletions. |
901
+ | `DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER` | The email address used by the application to send emails, typically the same as `EMAIL_HOST_USER` in your Django settings. |
902
+ | `DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME` | Username associated with the admin account. |
903
+
904
+ ### Example Usage
905
+
906
+ Suppose the settings are:
907
+
908
+ - `DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL = admin@example.com`
909
+ - `DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER = noreply@example.com`
910
+ - `DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME = admin`
911
+
912
+ Then the system will:
913
+
914
+ 1. Send generated reports of scheduled recovery code deletions to `admin@example.com`.
915
+ 2. Use `noreply@example.com` as the sender for all automated recovery code emails.
916
+ 3. Associate actions with the admin username for auditing purposes.
917
+
918
+
919
+ ---
920
+
921
+ ## Audit & Logging Setting Flags
922
+
923
+ These settings control the auditing, logging, and retention of recovery code activity to ensure traceability and compliance.
924
+
925
+ | Variable | Description |
926
+ | ------------------------------------------------------------- | ------------------------------------------- |
927
+ | `DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP` | Enable automatic cleanup of audit logs. |
928
+ | `DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS` | Number of days to retain audit logs. |
929
+ | `DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER` | Log scheduler operations during code purge. |
930
+ | `DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG` | Record activity of sent recovery emails. |
931
+
932
+ ### Example Usage
933
+
934
+ Suppose the settings are:
935
+
936
+ - `DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP = True`
937
+ - `DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS = 90`
938
+ - `DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER = True`
939
+ - `DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG = True`
940
+
941
+ Then the system will:
942
+
943
+ 1. Automatically remove audit logs older than 90 days.
944
+ 2. Record all recovery email activity in the logs.
945
+ 3. Log any operations performed by the purge scheduler for transparency.
946
+
947
+ These flags help maintain a clean audit trail while ensuring important recovery-related actions are tracked.
948
+
949
+ ---
950
+
951
+
952
+
953
+ ## Recovery Code Display Settings
954
+
955
+ These settings control how recovery code batches are displayed in the user interface, including pagination and post-action redirection.
956
+
957
+ | Variable | Description |
958
+ | ----------------------------------------- | --------------------------------------------------------------------------- |
959
+ | `DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE` | Maximum number of expired batches, including the current active batch, that a user can view in their history section. |
960
+ | `DJANGO_AUTH_RECOVERY_CODE_PER_PAGE` | Number of recovery codes per page (pagination). |
961
+ | `DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT` | View users are redirected to after recovery actions. |
962
+
963
+ ### Additional Explanation for `DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE`
964
+
965
+ This setting controls how many recovery code batches are displayed to the user, regardless of the total number stored in the database. Each batch contains multiple recovery codes.
966
+
967
+ #### Example
968
+
969
+ Suppose the settings are:
970
+
971
+ - `DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE = 20`
972
+ - `DJANGO_AUTH_RECOVERY_CODE_PER_PAGE = 5`
973
+
974
+ Then:
975
+
976
+ 1. If a user has 100 recovery codes, only 20 batches will be shown in the interface.
977
+ 2. With 5 batches per page, there will be 4 pages of recovery codes.
978
+ 3. Users can navigate through these pages to see all visible batches.
979
+
980
+ For details on what a single batch includes, see [example: a single recovery code batch view](#example-a-single-recovery-code-batch-view).
981
+
982
+
983
+ ### Additional Explanation for `DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT`
984
+
985
+ This setting controls **where the user is redirected after logging out**.
986
+ By default, the redirect points to the 2FA login page, but it can be changed to any page.
987
+
988
+ To redirect to another page, use the `name` reference of the view defined in your `urls.py`. For example:
989
+
990
+ ```python
991
+ path("auth/recovery-codes/login/", views.login_user, name="login_user")
992
+ ```
993
+
994
+ ---
995
+
996
+
997
+ ## Rate Limiting & Caching
998
+
999
+ These settings control rate limiting for recovery code requests and how caching is used to improve performance and prevent abuse.
1000
+
1001
+ | Variable | Description |
1002
+ | -------------------------------------------------------- | --------------------------------------------------- |
1003
+ | `DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE` | Enable caching for rate limiting recovery attempts. |
1004
+ | `DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX` | Maximum cache value for rate limiter. |
1005
+ | `DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN` | Minimum cache value for rate limiter. |
1006
+ | `DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL` | Cache expiration time (seconds). |
1007
+
1008
+ ### Example
1009
+
1010
+ Suppose the settings are:
1011
+
1012
+ - `DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE = True`
1013
+ - `DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN = 1`
1014
+ - `DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX = 5`
1015
+ - `DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL = 60`
1016
+
1017
+ Then the system will:
1018
+
1019
+ 1. Start counting recovery attempts from `CACHE_MIN = 1`.
1020
+ 2. Increment the cached count with each recovery request, up to `CACHE_MAX = 5`.
1021
+ 3. Reset the count automatically after `CACHE_TTL = 60` seconds.
1022
+ 4. Use the cache to enforce rate limiting, preventing abuse and reducing database load.
1023
+
1024
+
1025
+ ## Cooldown Settings Flags
1026
+
1027
+ These settings control the cooldown period applied when users request recovery codes repeatedly. The cooldown helps prevent abuse by increasing the wait time between requests.
1028
+
1029
+ | Variable | Description |
1030
+ | -------------------------------------------------- | ---------------------------------------------------- |
1031
+ | `DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN` | Base interval for recovery code cooldown (seconds). |
1032
+ | `DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_CUTOFF_POINT`| Maximum cooldown threshold (seconds). |
1033
+ | `DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_MULTIPLIER` | Multiplier applied to cooldown on repeated attempts.|
1034
+
1035
+ ### Example
1036
+
1037
+ Suppose the settings are:
1038
+
1039
+ - `DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN = 30`
1040
+ - `DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_MULTIPLIER = 2`
1041
+ - `DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_CUTOFF_POINT = 300`
1042
+
1043
+ Then the cooldown progression for repeated recovery code requests would be:
1044
+
1045
+ 1. First attempt: 30 seconds
1046
+ 2. Second attempt: 30 × 2 = 60 seconds
1047
+ 3. Third attempt: 60 × 2 = 120 seconds
1048
+ 4. Fourth attempt: 120 × 2 = 240 seconds
1049
+ 5. Fifth attempt: 240 × 2 = 480 seconds → capped at 300 seconds (cutoff)
1050
+
1051
+ This ensures the cooldown grows exponentially but never exceeds the defined maximum threshold.
1052
+
1053
+
1054
+ ---
1055
+
1056
+ ## Code Management & Limits
1057
+
1058
+ These settings control how recovery codes are managed, including deletion, export, usage limits, and validation.
1059
+
1060
+ | Variable | Description |
1061
+ | -------------------------------------------------------------- | --------------------------------------------------------------------------- |
1062
+ | `DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS` | Number of days before expired recovery codes are deleted. |
1063
+ | `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE` | Number of codes to delete in a single batch operation. |
1064
+ | `DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME` | Default filename for exported recovery codes. |
1065
+ | `DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT` | Default export format for recovery codes. Options: `'txt'`, `'csv'`, `'pdf'`.|
1066
+ | `DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS` | Maximum allowed login attempts using recovery codes. |
1067
+ | `DJANGO_AUTH_RECOVERY_KEY` | Secret key used for recovery code validation. |
1068
+ | `DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN` | Maximum number of expired codes to delete in a single scheduler run. If unset (`-1`), deletion is unlimited. |
1069
+
1070
+
1071
+
1072
+
1073
+ ### Example Usage
1074
+
1075
+ Suppose the settings are:
1076
+
1077
+ - `DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS = 90`
1078
+ - `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE = 50`
1079
+ - `DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME = "recovery_codes"`
1080
+ - `DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT = "txt"`
1081
+ - `DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS = 5`
1082
+
1083
+ Then the system will:
1084
+
1085
+ 1. Delete expired recovery codes older than 90 days, in batches of 50.
1086
+ 2. Export recovery codes using the default file name `recovery_codes` and format `txt`.
1087
+ 3. Limit users to 5 login attempts using recovery codes before locking or enforcing cooldowns.
1088
+ 4. Use `DJANGO_AUTH_RECOVERY_KEY` to validate recovery codes during login or verification.
1089
+
1090
+
1091
+ ### Cleanup Configuration Examples
1092
+
1093
+ The cleanup behaviour for expired recovery codes can be tuned using:
1094
+
1095
+ - `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE` → controls how many codes are deleted per database operation.
1096
+ - `DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN` → caps the maximum number of deletions in one scheduler run.
1097
+
1098
+ <br>
1099
+
1100
+ > **Note:** This setting works together with `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE`.
1101
+ > The scheduler will delete codes in batches until either the max deletions per run is reached or all expired codes are removed.
1102
+ > `None` means “delete everything in one run,” while an integer enforces a cap per run.
1103
+
1104
+ ### Example setups
1105
+
1106
+ #### Small app / development
1107
+ ```env
1108
+ DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE=100
1109
+ DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN=
1110
+ ````
1111
+
1112
+ Deletes everything in one run, in small chunks of 100 to avoid heavy queries.
1113
+
1114
+ ---
1115
+
1116
+ #### Medium app
1117
+
1118
+ ```env
1119
+ DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE=500
1120
+ DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN=5000
1121
+ ```
1122
+
1123
+ Deletes up to 5,000 codes per scheduler run, in batches of 500.
1124
+
1125
+ ---
1126
+
1127
+ #### Large app (millions of codes)
1128
+
1129
+ ```env
1130
+ DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE=1000
1131
+ DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN=10000
1132
+ ```
1133
+
1134
+ Deletes up to 10,000 codes per run, in batches of 1,000. This spreads load across multiple scheduler runs while keeping each job predictable and efficient.
1135
+
1136
+
1137
+
1138
+ ### Cleanup Process Visualised
1139
+
1140
+ The diagrams below illustrate how expired recovery codes are deleted.
1141
+
1142
+ ### 1. Loop until finished
1143
+ All expired codes are deleted in a single scheduler run, in batches.
1144
+
1145
+ ```mermaid
1146
+ flowchart TD
1147
+ A[Scheduler Run Starts] --> B{Expired codes exist?}
1148
+ B -->|Yes| C[Delete batch (size=N)]
1149
+ C --> D{Expired codes remain?}
1150
+ D -->|Yes| C
1151
+ D -->|No| E[Scheduler Run Ends]
1152
+ B -->|No| E
1153
+ ````
1154
+
1155
+ ---
1156
+
1157
+ ### 2. Hybrid: capped deletions per run
1158
+
1159
+ Deletes in batches, but stops once the maximum deletions per run is reached.
1160
+ Remaining codes are cleaned in future runs.
1161
+
1162
+ ```mermaid
1163
+ flowchart TD
1164
+ A[Scheduler Run Starts] --> B{Expired codes exist?}
1165
+ B -->|Yes| C[Delete batch (size=N)]
1166
+ C --> D[Increase total deleted count]
1167
+ D --> E{Reached max deletions per run?}
1168
+ E -->|Yes| F[Stop, resume next run]
1169
+ E -->|No| G{Expired codes remain?}
1170
+ G -->|Yes| C
1171
+ G -->|No| H[Scheduler Run Ends]
1172
+ B -->|No| H
1173
+ ```
1174
+
1175
+
1176
+ ### Recommended Settings by Scale
1177
+
1178
+ | Scale | `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE` | `DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN` | Notes |
1179
+ |--------------|-----------------------------------------------|----------------------------------------------------------|-----------------------------------------------------------------------|
1180
+ | Small (dev / hobby) | 100 | *-1* | Deletes all expired codes in one run, safe for small datasets. |
1181
+ | Medium (tens of thousands) | 500 | 5000 | Balances DB load by capping deletions to 5k per scheduler run. |
1182
+ | Large (millions) | 1000 | 10000 | Spreads cleanup across runs, keeps queries efficient and predictable. |
1183
+
1184
+ **Tip:**
1185
+
1186
+ Always tune based on your database performance and scheduler frequency. For example, if your scheduler runs every 5 minutes, lower values keep load smoother. If it runs nightly, higher values may be better to catch up faster.
1187
+
1188
+ ### How Cleanup Works Internally
1189
+
1190
+ When the scheduler runs, the app looks for expired or invalidated recovery codes and removes them according to your configuration.
1191
+
1192
+ The process is:
1193
+
1194
+ 1. **Batch deletion**
1195
+
1196
+ - Codes are deleted in small chunks (`DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE`) instead of all at once.
1197
+ - This prevents long-running SQL queries and reduces database locks.
1198
+
1199
+ 2. **Optional cap per run**
1200
+
1201
+ - If you set `DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN`, the scheduler will stop once that many codes have been deleted.
1202
+ - Any remaining codes will be picked up in the next scheduler run.
1203
+ - This spreads the load across multiple runs and avoids “big bang” deletes.
1204
+ - If the flag is set to None, it becomes unlimited meaning it will carry on looping until all codes are cleared
1205
+
1206
+ 3. **Scheduler resumes automatically**
1207
+
1208
+ - On the next scheduled run, the same process repeats until all expired codes are gone.
1209
+ - You don’t need to trigger anything manually.
1210
+
1211
+
1212
+
1213
+ ✅ This design ensures a couple of things in regards to the cleanup is:
1214
+
1215
+ - **Safe** → avoids stressing the database.
1216
+ - **Scalable** → works for apps with thousands or millions of codes.
1217
+ - **Automatic** → no manual intervention needed.
1218
+
1219
+
1220
+ ### FAQ — Frequently Asked Questions
1221
+
1222
+ ### Q: What happens if the scheduler crashes during cleanup?
1223
+
1224
+ A: The process is idempotent. If a run is interrupted, any remaining expired codes will be picked up on the next scheduled run.
1225
+ No data loss occurs beyond the intended deletions.
1226
+
1227
+ ---
1228
+
1229
+ ### Q: Can I disable automatic cleanup?
1230
+
1231
+ A: Yes. Simply avoid scheduling the purge task in your task runner (e.g., Django-Q).
1232
+ You may then run `purge_expired_codes()` manually when required.
1233
+ This is useful for testing or environments with strict operational controls.
1234
+
1235
+ ---
1236
+
1237
+ ### Q: How do I know how many codes were deleted?
1238
+
1239
+ A: Every purge operation is logged through `RecoveryCodeAudit` or inspect the email sent to admin after a schedule deletion has occurred.
1240
+ You can inspect these logs to see the number of codes deleted, who initiated the deletion, and the associated batch metadata.
1241
+
1242
+ ---
1243
+
1244
+ ### Q: Will cleanup affect active codes?
1245
+
1246
+ A: No. Only codes that are expired or invalidated (based on retention days and status) are eligible for deletion.
1247
+ Valid codes remain untouched.
1248
+
1249
+ ---
1250
+
1251
+ ### Q: What if I have millions of expired codes?
1252
+
1253
+ A: Configure both `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE` and
1254
+ `DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN` appropriately.
1255
+ This ensures cleanup is spread across multiple runs, preventing excessive locking or transaction bloat.
1256
+
1257
+ ---
1258
+
1259
+ ### Q: Can I monitor cleanup performance?
1260
+
1261
+ A: Yes, you can monitor through the Django-q admin interface or use `python manage.py qmonitor`.
1262
+ Because deletions are chunked, monitoring helps you fine-tune batch size and per-run caps for optimal efficiency.
1263
+
1264
+
1265
+ ---
1266
+
1267
+ ## Site Settings Flags
1268
+
1269
+ | Variable | Description |
1270
+ | ------------------------------------- | ----------------------------------------------------- |
1271
+ | `DJANGO_AUTH_RECOVERY_CODES_SITE_NAME`| The name of the site to use with the application . |
1272
+
1273
+ ### Example Usage
1274
+
1275
+ Suppose the setting is:
1276
+
1277
+ - `DJANGO_AUTH_RECOVERY_CODES_SITE_NAME = "My Awesome Site"`
1278
+
1279
+ Then recovery emails and notifications will display the site name "My Awesome Site" to the user, helping them identify the source of the email and also display on the site dashboard and login page.
1280
+
1281
+
1282
+
1283
+ ## Custom Email Message Flags
1284
+
1285
+ | Variable | Description |
1286
+ | ----------------------------------------- | ------------------------------------------------------------------------------------------------- |
1287
+ | `DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG` | The message displayed to the user when recovery codes are successfully sent via email. Admins can customise this message. |
1288
+
1289
+ ### Example Usage
1290
+
1291
+ Suppose the setting is:
1292
+
1293
+ - `DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG = "Your recovery codes email has been successfully delivered."`
1294
+
1295
+ Then when a user requests recovery codes, they will see the message:
1296
+
1297
+ > "Your recovery codes email has been successfully delivered."
1298
+
1299
+ Admins can change this message to anything they want, for example:
1300
+
1301
+ ```python
1302
+ DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG = "Check your inbox! Your recovery codes are on their way."
1303
+
1304
+ ```
1305
+ [⬆ Back to Top](#top)
1306
+
1307
+ ---
1308
+
1309
+ ## Example Flag Usage
1310
+
1311
+
1312
+
1313
+ ```
1314
+ DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL=admin@example.com
1315
+ DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER=smtp@example.com
1316
+ DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME=admin
1317
+ DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP=True
1318
+ DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS=30
1319
+ DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE=20
1320
+ DJANGO_AUTH_RECOVERY_CODE_PER_PAGE=10
1321
+ DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS=90
1322
+ DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT=recovery_dashboard
1323
+ DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE=True
1324
+ DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL=3600
1325
+ DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN=60
1326
+ DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT=txt
1327
+ DJANGO_AUTH_RECOVERY_KEY=supersecretkey
1328
+ DJANGO_AUTH_RECOVERY_CODES_MAX_DELETIONS_PER_RUN=400
1329
+ ```
1330
+
1331
+ ---
1332
+
1333
+ ## Best Practices for Managing Environment Variables
1334
+
1335
+ 1. **Use a `.env` file to keep secret keys and credentials out of source control.
1336
+
1337
+ ---
1338
+
1339
+ ## Default Values & Required Variables
1340
+
1341
+ | Variable | Required | Default Value | Notes |
1342
+ | ------------------------------------------------------------- | -------- | -------------------- | -------------------------------------------------------------------------------- |
1343
+ | `DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL` | ✅ Yes | – | Email used to send recovery codes. Must be valid. |
1344
+ | `DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER` | ✅ Yes | – | SMTP or host email account. Required for sending emails. |
1345
+ | `DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME` | ✅ Yes | – | Admin username associated with the email. |
1346
+ | `DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP` | ❌ No | `False` | Automatically clean up audit logs if True. |
1347
+ | `DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS` | ❌ No | `30` | Number of days to retain audit logs. |
1348
+ | `DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE` | ❌ No | `20` | Maximum number of expired batches plus the current active batch the user can view under their history section |
1349
+ | `DJANGO_AUTH_RECOVERY_CODE_PER_PAGE` | ❌ No | `10` | Pagination setting for code lists. |
1350
+ | `DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS` | ❌ No | `90` | Days before expired codes are deleted. |
1351
+ | `DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER` | ❌ No | `False` | Enable scheduler logging for purge operations. |
1352
+ | `DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT` | ❌ No | `/` | URL to redirect users after code actions. |
1353
+ | `DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG` | ❌ No | `False` | Log sent recovery emails. |
1354
+ | `DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE` | ❌ No | `True` | Use cache for rate limiting. |
1355
+ | `DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN` | ❌ No | `60` | Base cooldown interval in seconds. |
1356
+ | `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE` | ❌ No | `50` | Number of codes deleted per batch. |
1357
+ | `DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX` | ❌ No | `1000` | Maximum value for cache-based limiter. |
1358
+ | `DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN` | ❌ No | `0` | Minimum value for cache-based limiter. |
1359
+ | `DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL` | ❌ No | `3600` | Cache expiration in seconds. |
1360
+ | `DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_CUTOFF_POINT` | ❌ No | `3600` | Maximum cooldown threshold in seconds. |
1361
+ | `DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_MULTIPLIER` | ❌ No | `2` | Multiplier for repeated attempts cooldown. |
1362
+ | `DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME` | ❌ No | `recovery_codes` | Default file name for exported codes. |
1363
+ | `DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT` | ❌ No | `txt` | Default format for exporting recovery codes. Options: `'txt'`, `'csv'`, `'pdf'`. |
1364
+ | `DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS` | ❌ No | `5` | Maximum login attempts using recovery codes. |
1365
+ | `DJANGO_AUTH_RECOVERY_KEY` | ✅ Yes | – | Secret key for recovery code validation. Must be kept safe. |
1366
+ | `DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN` | ❌ No | `1000` | Caps the maximum number of deletions in one scheduler run. |
1367
+ | `DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG` | ❌ No | `"Your recovery codes email has been successfully delivered."` | Custom message displayed to users after recovery codes are sent. Admins can change this message. |
1368
+
1369
+
1370
+
1371
+ ---
1372
+
1373
+ ## Run checks to verify that flags are valid
1374
+
1375
+ To ensure that all configurations and flags are correct after adding them to the settings.py file, run the following command before starting the application:
1376
+ ```
1377
+
1378
+ ```python
1379
+ python manage.py check
1380
+ ```
1381
+
1382
+ This command will raise an error if any configuration is incorrect.
1383
+
1384
+ If everything is fine, you can then run the server and the task queue:
1385
+
1386
+ ```python
1387
+ # Terminal 1
1388
+ python manage.py runserver
1389
+
1390
+ # Terminal 2
1391
+ python manage.py qcluster
1392
+ ```
1393
+
1394
+
1395
+ ## Sending Emails, logging emails to the model, and using Logging for purging codes via Django-q
1396
+
1397
+ Django Auth 2FA Recovery provides the ability to email yourself a copy of your raw recovery codes and can only be done once for a given batch, and only if you haven't logged out after generating the code. This is achieved using a lightweight yet powerful library called **`EmailSender`**, which is responsible for delivering the message.
1398
+
1399
+ In addition to sending, the process can be logged for developers through a companion model named **`EmailSenderLogger`**. Together, these ensure that not only are emails dispatched, but the details of each operation can also be recorded for auditing, debugging, or monitoring purposes. N
1400
+
1401
+ Note for security purpose, the logger doesn't log `context` or the `header` in the logging file because the context contains the `raw plain code` that is passed to the `EmailSender` and therefore `EmailSenderLogger`. Allowing the `context` to be logged would expose a security risk where the anyone with access to the log files could reconstruct the raw codes, and that paired with the email would give them unauthorised access to the person account.
1402
+
1403
+
1404
+ ### Using async vs synchronous
1405
+ ---
1406
+
1407
+ The application supports both **asynchronous** and **synchronous** email sending for development and production.
1408
+
1409
+ In production, emails are sent **asynchronously** via **Django-Q**, which places the email in a task queue. Depending on the queue load, this may take a few seconds or minutes to process.
1410
+
1411
+ In development, you might want to send emails **synchronously** to see the results immediately and verify that everything is working correctly.
1412
+
1413
+ This behaviour is controlled by the `DEBUG` setting:
1414
+
1415
+ * When `DEBUG = True`, emails are sent **synchronously**.
1416
+ * When `DEBUG = False`, emails are sent **asynchronously** via Django-Q.
1417
+
1418
+ This setup allows developers to test email functionality quickly in development but at the same time keep production efficient and non-blocking.
1419
+
1420
+
1421
+ ### Configuration settings
1422
+ ---
1423
+
1424
+ Whether emails are logged is determined by a configuration flag in your project’s `settings.py`.
1425
+
1426
+ ```python
1427
+ # settings.py
1428
+
1429
+ # Storing user emails in the model
1430
+ DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG = True # store in database
1431
+ DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG = False # Don't store in the database
1432
+ ```
1433
+
1434
+ ```python
1435
+
1436
+ # using logger while purging code
1437
+ DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER
1438
+ ```
1439
+ * **`True`**: The application records details of the email process via `EmailSenderLogger`.
1440
+ * **`False`**: No logging takes place.
1441
+
1442
+
1443
+ ### Hang on a minute, why can I email myself the code only once, and only if I haven’t logged out after generating it?
1444
+ ---
1445
+
1446
+ The way **Django Auth Recovery Code** works is that it never stores the plain text recovery codes in the database. Instead, it stores only their **hash values**.
1447
+
1448
+ A **hash** is a one-way function: it takes an input, applies a hashing algorithm, and produces an output that cannot be reversed to recover the original input. This is different from encryption/decryption, where data can be restored to its original form. Hashing is therefore safer for storing sensitive values such as recovery codes.
1449
+
1450
+ ### What does this mean for your codes?
1451
+ ---
1452
+
1453
+ Since the generated codes are stored as hashes, the system cannot send you the hash (as it is meaningless to you) and it cannot retrieve the original plain text version (because it was never stored in the database).
1454
+
1455
+ To work around this, the application temporarily stores a copy of the plain text codes in your **backend session** when they are first generated. This session is unique to your login and user account and cannot be accessed by anyone or any other account. Because it is session-based, the codes are removed once you log out.
1456
+
1457
+ ### What happens if I refresh the page, can I still email myself the code?
1458
+ ---
1459
+
1460
+ Yes. Refreshing the page does not clear the backend session. However, for security reasons, the plain text codes will no longer be displayed in the frontend after the initial page load. As long as you remain logged in, you can still email yourself a copy of the codes.
1461
+
1462
+ ### But if I’m still logged in, why can I only email myself a single copy?
1463
+ ---
1464
+
1465
+ This is a deliberate **security measure**. Allowing multiple emails of the same batch would unnecessarily increase the risk of exposure. Limiting it to a single email ensures you have one secure copy without duplicating it across your inbox.
1466
+
1467
+ ### Can I email myself a copy if I generate a new batch?
1468
+ ---
1469
+
1470
+ Yes. Generating a new batch creates a new set of plain text codes, which are again stored in your backend session. You may therefore email yourself one copy of each new batch.
1471
+
1472
+ ---
1473
+
1474
+ ### Using Logging with the Application
1475
+ ---
1476
+
1477
+ `django_auth_recovery_codes` includes a built-in logging configuration, so you do not need to create your own in `settings.py`. This reduces the risk of misconfiguration.
1478
+
1479
+ Because the application uses `django-q` (an asynchronous task manager), the logger is already set up to work with it. Conveniently, everything is preconfigured for you. All you need to do is import the logging configuration and assign it to Django’s `LOGGING` variable.
1480
+
1481
+ ```python
1482
+ # settings.py
1483
+
1484
+ from django_auth_recovery_codes.loggers.logger_config import DJANGO_AUTH_RECOVERY_CODES_LOGGING
1485
+
1486
+ LOGGING = DJANGO_AUTH_RECOVERY_CODES_LOGGING
1487
+ ```
1488
+
1489
+ The `LOGGING` variable is the standard Django setting for logging. Assigning the provided configuration ensures that log files are correctly created and stored in a dedicated folder.
1490
+
1491
+ ---
1492
+
1493
+ ### What if I don’t want to override my existing LOGGING configuration?
1494
+ ---
1495
+
1496
+ If you already have a logging configuration and prefer not to overwrite it, you can simply **merge** it with `DJANGO_AUTH_RECOVERY_CODES_LOGGING`. Since logging configurations are dictionaries, merging them is straightforward:
1497
+
1498
+ ```python
1499
+ # settings.py
1500
+
1501
+ LOGGING = {**LOGGING, **DJANGO_AUTH_RECOVERY_CODES_LOGGING}
1502
+ ```
1503
+
1504
+ This approach allows you to keep your existing logging settings intact but still allow you to add support for `django_auth_recovery_codes`.
1505
+
1506
+ [⬆ Back to Top](#top)
1507
+
1508
+ ---
1509
+
1510
+ ## Downloading Recovery Codes
1511
+ ---
1512
+
1513
+ In addition to emailing your recovery codes, `django_auth_recovery_codes` also allows you to **download them directly**. This gives you flexibility in how you choose to back up your codes.
1514
+
1515
+ ### How downloads work
1516
+ ---
1517
+
1518
+ When recovery codes are generated, a plain text copy is stored temporarily in the `request.session`. This enables you to either:
1519
+
1520
+ - **Email yourself a copy**, or
1521
+ - **Download a copy** in one of the following formats:
1522
+ - Plain text (`.txt`)
1523
+ - PDF (`.pdf`)
1524
+ - CSV (`.csv`)
1525
+
1526
+
1527
+ The format in which the recovery codes are returned (TXT, PDF, or CSV) is determined by a settings flag. By default, the codes are returned as **TXT**, but this can be customised using the following setting:
1528
+
1529
+ ```python
1530
+ # Default download format
1531
+ DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT = 'txt' # options: 'txt', 'csv', 'pdf'
1532
+ ```
1533
+
1534
+ By default, the downloaded file is named `recovery_codes` (plus the extension) used when using the default format. You can also change the file name using this setting:
1535
+
1536
+ ```python
1537
+ # Default download file name
1538
+ DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME = "recovery_codes"
1539
+
1540
+ ```
1541
+
1542
+
1543
+ Just like with emailing, once you log out, the session is cleared and the plain text codes are no longer available.
1544
+
1545
+ ### Important security notes
1546
+ ---
1547
+
1548
+ - You may **only download a copy once** per batch of recovery codes.
1549
+ - The downloaded file contains the **exact same content** as the emailed version (the plain text recovery codes).
1550
+ - If you lose the downloaded file after logging out, you will not be able to retrieve it. You will need to generate a new batch of recovery codes.
1551
+
1552
+ ### Example usage
1553
+
1554
+ When generating recovery codes in the application, you will be presented with options to:
1555
+
1556
+ - **Email yourself a copy** (retrieves codes from `request.session`)
1557
+ - **Download a copy** (also retrieves codes from `request.session`)
1558
+
1559
+ Both options use the same temporary storage mechanism, which ensures your plain text recovery codes are only ever available for the current session and cannot be recovered after logout.
1560
+
1561
+ [⬆ Back to Top](#top)
1562
+
1563
+ ---
1564
+
1565
+
1566
+ ## Quickstart and Walkthrough
1567
+
1568
+ ### Setup
1569
+ ---
1570
+
1571
+ This guide shows you how to set up a fresh Django project and integrate **2FA Recovery Codes** using the `django_auth_recovery_codes` package.
1572
+
1573
+ The walkthrough assumes you don’t already have a Django project, which is why we create a new one called `test_project`.
1574
+
1575
+ If you already have an existing Django project, skip to Existing project :
1576
+
1577
+ - then follow the steps in this guide that apply to integration (skipping project creation).
1578
+ - In this walkthrough we will not be using Redis, Memecache to create a cache in the settings.py, we do nothing an allow it to defualt the memory cache
1579
+
1580
+ ---
1581
+
1582
+ ### Installation (with Virtual Environment)
1583
+
1584
+ ### 1. Create a virtual environment
1585
+
1586
+ ```bash
1587
+ python -m venv env
1588
+ ````
1589
+
1590
+ * `env` is the folder name for your virtual environment. You can name it anything.
1591
+
1592
+ ### 2. Activate the virtual environment
1593
+
1594
+ * **Windows (PowerShell)**
1595
+
1596
+ ```powershell
1597
+ .\env\Scripts\Activate.ps1
1598
+ ```
1599
+ * **Windows (CMD)**
1600
+
1601
+ ```cmd
1602
+ .\env\Scripts\activate.bat
1603
+ ```
1604
+ * **macOS/Linux**
1605
+
1606
+ ```bash
1607
+ source env/bin/activate
1608
+ ```
1609
+
1610
+ ### 3. Upgrade pip (optional but recommended)
1611
+
1612
+ ```bash
1613
+ pip install --upgrade pip
1614
+ ```
1615
+
1616
+ ### 4. Install Django (latest version)
1617
+
1618
+ ```bash
1619
+ pip install django
1620
+ ```
1621
+
1622
+ ### 5. Install the recovery codes package
1623
+
1624
+ ```bash
1625
+ pip install django_auth_recovery_codes
1626
+ ```
1627
+
1628
+ You can install the package with:
1629
+
1630
+ [`pip install django-auth-recovery-codes`](https://pypi.org/project/django-auth-recovery-codes/1.0.0/)
1631
+
1632
+
1633
+
1634
+ ### 6. Verify installation
1635
+
1636
+ ```bash
1637
+ python -m django --version
1638
+ pip show django_auth_recovery_codes
1639
+ ```
1640
+
1641
+ ---
1642
+
1643
+ ## Project Setup
1644
+
1645
+ ### 7. Create a new Django project
1646
+
1647
+ ```bash
1648
+ django-admin startproject test_project
1649
+ cd test_project
1650
+ ```
1651
+
1652
+ ### 8. Run initial migrations
1653
+
1654
+ ```bash
1655
+ python manage.py migrate
1656
+ ```
1657
+
1658
+ ### 9. Create a Django superuser
1659
+
1660
+ ```bash
1661
+ python manage.py createsuperuser
1662
+ ```
1663
+
1664
+ * Follow the prompts to set username, email, and password.
1665
+
1666
+ ### 10. Start a new app called `home`
1667
+
1668
+ ```bash
1669
+ python manage.py startapp home
1670
+ ```
1671
+
1672
+ ### 11. Add `home`, `django_auth_recovery_codes`, and `django_q` to `INSTALLED_APPS`
1673
+
1674
+ Edit `test_project/settings.py`:
1675
+
1676
+ ```python
1677
+ INSTALLED_APPS = [
1678
+ ...,
1679
+
1680
+ # third-party apps
1681
+ "django_auth_recovery_codes",
1682
+ "django_q",
1683
+
1684
+ # your app
1685
+ "home",
1686
+ ]
1687
+ ```
1688
+
1689
+
1690
+ ### 12. Run the development server
1691
+
1692
+ ```bash
1693
+ python manage.py runserver
1694
+ ```
1695
+
1696
+ Open [http://127.0.0.1:8000/admin](http://127.0.0.1:8000/admin) and log in with your superuser credentials.
1697
+
1698
+ ---
1699
+
1700
+ ## Configure URLs
1701
+
1702
+ ### 13. In `home/urls.py`
1703
+
1704
+ Create the file if it doesn’t exist:
1705
+
1706
+ ```python
1707
+ from django.urls import path
1708
+ from . import views
1709
+
1710
+ urlpatterns = [
1711
+ path("", view=views.home, name="home"),
1712
+ ]
1713
+ ```
1714
+
1715
+ ### 14. In your **main** `urls.py` (same folder as `settings.py`)
1716
+
1717
+ ```python
1718
+ from django.contrib import admin
1719
+ from django.urls import path, include
1720
+
1721
+ urlpatterns = [
1722
+ path("admin/", admin.site.urls),
1723
+ path("", include("django_auth_recovery_codes.urls")), # recovery codes
1724
+ path("", include("home.urls")), # home app
1725
+ ]
1726
+ ```
1727
+
1728
+ ---
1729
+
1730
+ ### Configure your Settings.py file
1731
+
1732
+ ### 15. Add the recovery code settings flags in your `settings.py` file
1733
+
1734
+ ```python
1735
+
1736
+
1737
+ # setting up the flags
1738
+ # ===========================
1739
+ # 📧 Email / Admin
1740
+ # ===========================
1741
+ DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL = "your-email-address-here"
1742
+ DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER = "your-host-email-address-here"
1743
+ DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME = "username here"
1744
+ DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG = False
1745
+
1746
+ # ===========================
1747
+ # 🔑 Security / Keys
1748
+ # ===========================
1749
+ DJANGO_AUTH_RECOVERY_KEY = "add-recovery-key-here"
1750
+
1751
+ # ===========================
1752
+ # 📜 Audit / Retention
1753
+ # ===========================
1754
+ DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP = True
1755
+ DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS = 30
1756
+ DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS = 30
1757
+ DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER = True
1758
+
1759
+ # ===========================
1760
+ # ⏳ Rate Limiting / Cooldowns
1761
+ # ===========================
1762
+ DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE = True
1763
+ DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN = 100 # five minutes minutes lock down
1764
+ DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_CUTOFF_POINT = 3600
1765
+ DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_MULTIPLIER = 2
1766
+ DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS = 5
1767
+
1768
+ # ===========================
1769
+ # 📦 Caching
1770
+ # ===========================
1771
+ DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX = 3600
1772
+ DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN = 1
1773
+ DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL = 3600
1774
+
1775
+ # ===========================
1776
+ # 📊 Pagination / Limits
1777
+ # ===========================
1778
+ DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE = 20
1779
+ DJANGO_AUTH_RECOVERY_CODE_PER_PAGE = 5
1780
+ DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE = 400
1781
+ DJANGO_AUTH_RECOVERY_CODES_MAX_DELETIONS_PER_RUN = -1
1782
+
1783
+ # ===========================
1784
+ # 📂 Files / Naming
1785
+ # ===========================
1786
+ DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME = "recovery_codes"
1787
+ DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT = "txt"
1788
+
1789
+ # ===========================
1790
+ # 🌍 Site / Redirects
1791
+ # ===========================
1792
+ DJANGO_AUTH_RECOVERY_CODES_SITE_NAME = "This is a demo tutorial"
1793
+ DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT = "logout_user"
1794
+
1795
+
1796
+
1797
+ # ===========================
1798
+ # 🌍 REcovery code email sucess message
1799
+ # ===========================
1800
+ DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG = "Your recovery codes email has been successfully delivered."
1801
+
1802
+
1803
+ # add the email backend testing
1804
+ EMAIL_BACKEND = "django.core.mail.backends.filebased.EmailBackend"
1805
+ EMAIL_FILE_PATH = BASE_DIR / "sent_emails"
1806
+ Path(EMAIL_FILE_PATH).mkdir(parents=True, exist_ok=True)
1807
+
1808
+
1809
+ # Add the Q_CLUSTER for django-1
1810
+
1811
+ Q_CLUSTER = {
1812
+ 'name': 'recovery_codes',
1813
+ 'workers': 2,
1814
+ 'timeout': 300, # 5 minutes max per task
1815
+ 'retry': 600, # retry after 10 minutes if task fails (retry must be greater than timeout)
1816
+ 'recycle': 500,
1817
+ 'compress': True,
1818
+ 'cpu_affinity': 1,
1819
+ 'save_limit': 250,
1820
+ 'queue_limit': 500,
1821
+ 'orm': 'default',
1822
+ }
1823
+
1824
+
1825
+ # we need to tell EmailSender where to find the templates dir
1826
+
1827
+ import django_auth_recovery_codes
1828
+ from pathlib import Path
1829
+
1830
+ # Get the path to the installed package
1831
+ PACKAGE_DIR = Path(django_auth_recovery_codes.__file__).parent
1832
+
1833
+ # Define the templates directory within the package
1834
+ MYAPP_TEMPLATES_DIR = PACKAGE_DIR / "templates" / "django_auth_recovery_codes"
1835
+
1836
+
1837
+ # we need to add in the logging
1838
+
1839
+ from django_auth_recovery_codes.loggers.logger_config import DJANGO_AUTH_RECOVERY_CODES_LOGGING
1840
+
1841
+
1842
+ LOGGING = DJANGO_AUTH_RECOVERY_CODES_LOGGING
1843
+ ```
1844
+
1845
+ ### Add a Q_CLUSTER
1846
+ See ![documentation for more details](https://deepwiki.com/django-q2/django-q2/5-configuration-options)
1847
+
1848
+ For now we use the default
1849
+
1850
+ ```
1851
+
1852
+
1853
+ Q_CLUSTER = {
1854
+ 'name': 'recovery_codes',
1855
+ 'workers': 2,
1856
+ 'timeout': 300, # 5 minutes max per task
1857
+ 'retry': 600, # retry after 10 minutes if task fails (retry must be greater than timeout)
1858
+ 'recycle': 500,
1859
+ 'compress': True,
1860
+ 'cpu_affinity': 1,
1861
+ 'save_limit': 250,
1862
+ 'queue_limit': 500,
1863
+ 'orm': 'default',
1864
+ }
1865
+
1866
+ ```
1867
+
1868
+
1869
+ ### 16.Set up the file-based email backend (for testing)
1870
+
1871
+ This will create a `sent_emails` folder where Django saves emails instead of sending them.
1872
+
1873
+ ```python
1874
+ EMAIL_BACKEND = "django.core.mail.backends.filebased.EmailBackend"
1875
+ EMAIL_FILE_PATH = BASE_DIR / "sent_emails"
1876
+ ```
1877
+
1878
+ ### 17. Run the system checks
1879
+
1880
+ Stop the server (`Ctrl+C`) if it’s running, then run:
1881
+
1882
+ ```bash
1883
+ python manage.py check
1884
+ ```
1885
+
1886
+ This will raise errors if any settings are misconfigured (e.g., wrong data types).
1887
+
1888
+ ---
1889
+
1890
+ ### 17a. Generate a recovery code
1891
+
1892
+ Run the follwoing command, make sure your virtual environment is active.
1893
+ This will drop you into shell but load all app modules
1894
+
1895
+ ```python
1896
+
1897
+ python manage.py shell
1898
+
1899
+ ```
1900
+ Next run
1901
+
1902
+ ```python
1903
+
1904
+ from django_auth_recovery_codes.utils.security.generator import generate_secure_token
1905
+
1906
+ # This will generate a secure cryptographically key which can use for your recovery key in the settings flag
1907
+ # code_length = 10, default this will generate a secret key that is 100 characters, adjust length as you see fit
1908
+ generate_secure_token(code_length=10)
1909
+
1910
+ ```
1911
+
1912
+ Copy the key into your recovery key
1913
+
1914
+ ```
1915
+ DJANGO_AUTH_RECOVERY_KEY =
1916
+
1917
+ ```
1918
+
1919
+
1920
+
1921
+ ### Run Services
1922
+
1923
+ ### 18. Open two terminals
1924
+
1925
+ **Terminal 1** – run the server:
1926
+
1927
+ ```bash
1928
+ python manage.py runserver
1929
+ ```
1930
+
1931
+ **Terminal 2** – run django-q cluster:
1932
+
1933
+ ```bash
1934
+ python manage.py qcluster
1935
+ ```
1936
+
1937
+ ---
1938
+ ### Create a Home View
1939
+
1940
+ #### 19. In `home/views.py`
1941
+
1942
+ ```python
1943
+ from django.http import HttpResponse
1944
+
1945
+ def home(request):
1946
+ return HttpResponse("This is the home page")
1947
+ ```
1948
+
1949
+ ---
1950
+
1951
+ ### Verify the Home Page
1952
+
1953
+ Open your browser and go to:
1954
+
1955
+ ```
1956
+ http://127.0.0.1:8000/
1957
+ ```
1958
+
1959
+ You should see:
1960
+ *"This is the home page"*
1961
+
1962
+ ---
1963
+
1964
+ markdown
1965
+ ### Access the Admin
1966
+
1967
+ Since we don’t have a login portal yet, log in via the admin:
1968
+
1969
+ ```
1970
+
1971
+ http://127.0.0.1:8000/admin/
1972
+
1973
+ ```
1974
+
1975
+ * Enter the superuser credentials you created with `createsuperuser`.
1976
+
1977
+ ---
1978
+
1979
+ ### Access the Recovery Codes page dashboard
1980
+
1981
+ Once logged in, go to the dashboard via:
1982
+
1983
+ ```
1984
+
1985
+ http://127.0.0.1:8000/auth/recovery-codes/dashboard/
1986
+
1987
+ ```
1988
+
1989
+ ---
1990
+
1991
+ ### Code Generation
1992
+
1993
+ ##### Choose whether the code should have an expiry date
1994
+
1995
+ <div align="center">
1996
+ <img src="django_auth_recovery_codes/docs/images/generate_code_form.png" alt="Generate code form" width="1000">
1997
+ </div>
1998
+
1999
+ ---
2000
+
2001
+ ### Once the code is generated
2002
+
2003
+ * You should see something that looks like this:
2004
+
2005
+ <div align="center">
2006
+ <img src="django_auth_recovery_codes/docs/images/plaintext_generated_code.png" alt="Plaintext generated code" width="1000">
2007
+ </div>
2008
+
2009
+ * From here, you can regenerate, email, download, or delete the code.
2010
+
2011
+ ---
2012
+
2013
+
2014
+ ### Verifying Generated Codes
2015
+
2016
+ * Once the codes are generated, you have the option to verify if the setup is correct.
2017
+ * This is a one-time verification test, and the form will remain until it is verified.
2018
+ * Once verified, it will no longer appear, even on a new batch generation.
2019
+ * To use, simply select a code and enter it in the form.
2020
+
2021
+ <div align="center">
2022
+ <img src="django_auth_recovery_codes/docs/images/verify_code.png" alt="Verify code form" width="1000">
2023
+ </div>
2024
+
2025
+ #### Failed Test
2026
+
2027
+ * A failed test will look like this:
2028
+
2029
+ <div align="center">
2030
+ <img src="django_auth_recovery_codes/docs/images/failed_test.png" alt="Failed code verification" width="1000">
2031
+ </div>
2032
+
2033
+ #### Successful Test
2034
+
2035
+ * A successful test will look like this.
2036
+ * Once the test is successful, the form will no longer be visible.
2037
+
2038
+ <div align="center">
2039
+ <img src="django_auth_recovery_codes/docs/images/successful_test.png" alt="Successful code verification" width="1000">
2040
+ </div>
2041
+
2042
+ ---
2043
+
2044
+ ### Downloaded and Emailed Code
2045
+
2046
+ * Once a code is downloaded or emailed, it cannot be used again for the same batch.
2047
+
2048
+ <div align="center">
2049
+ <img src="django_auth_recovery_codes/docs/images/email_and_downloaded_code.png" alt="Downloaded or emailed code" width="1000">
2050
+ </div>
2051
+
2052
+ ---
2053
+
2054
+ ### Invalidating or Deleting a Code
2055
+
2056
+ * The application allows you to invalidate or delete a code.
2057
+ * Once a code has been invalidated or deleted, it cannot be used again.
2058
+
2059
+ <div align="center">
2060
+ <img src="django_auth_recovery_codes/docs/images/invalidate_or_delete_code.png" alt="Invalidate or delete code" width="1000">
2061
+ </div>
2062
+
2063
+ ---
2064
+
2065
+ ### Viewing the Code Batch History
2066
+
2067
+ * You can view your code history.
2068
+ * It contains information about the generated code batch, such as the number issued and whether the codes were downloaded or emailed.
2069
+
2070
+ <div align="center">
2071
+ <img src="django_auth_recovery_codes/docs/images/code_batch_history.png" alt="Code batch history" width="1000">
2072
+ </div>
2073
+
2074
+ ---
2075
+
2076
+
2077
+ ### Logout of the application
2078
+
2079
+ Now click the `logout` but before you do make sure to download a copy of the recovery codes, you will need this to login.
2080
+ Once you logout you be redirect to the default login page, see the flag settings to see how to redirect to another page .
2081
+
2082
+ * You will no longer be able to access the dashboard since it is login only
2083
+ * You can verify this by going to the home page
2084
+
2085
+ ```
2086
+ http://127.0.0.1:8000
2087
+
2088
+ ```
2089
+
2090
+ ---
2091
+
2092
+ ### Failed Attempts and Rate Limiting
2093
+
2094
+ **Login Form**
2095
+
2096
+ <div align="center">
2097
+ <img src="django_auth_recovery_codes/docs/images/login.png" alt="2FA login form" width="1000">
2098
+ </div>
2099
+
2100
+ **Failed Attempt Example**
2101
+
2102
+ * Failed login attempts are limited by the flag `DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS`.
2103
+ * In this example, it has been set to `5`.
2104
+ * This means that after 5 failed attempts, the rate limiter activates.
2105
+ * The cooldown starts at 1 minute and increases with each subsequent failed attempt.
2106
+ * It will not exceed the cooldown threshold period (e.g., if set to `3600`, that is 1 hour).
2107
+
2108
+
2109
+ <div align="center">
2110
+ <img src="django_auth_recovery_codes/docs/images/incorrect_login_attempts.png" alt="Incorrect login attempt" width="1000">
2111
+ </div>
2112
+
2113
+ ---
2114
+
2115
+ ### Successful Login
2116
+
2117
+ * Enter the email address you used when creating your superuser.
2118
+ * Use one of the valid 2FA recovery codes from your downloaded codes.
2119
+ * Upon success, you will be redirected to the dashboard.
2120
+ * The code you used will automatically be marked as invalid.
2121
+
2122
+
2123
+ ---
2124
+
2125
+
2126
+ ### 2. Existing Project Setup
2127
+
2128
+ If you already have a Django project running, integration is simple:
2129
+
2130
+ 1. **Install the package**
2131
+
2132
+ ```bash
2133
+ pip install django_auth_recovery_codes
2134
+ ```
2135
+
2136
+ 2. **Update `INSTALLED_APPS` in `settings.py`**
2137
+
2138
+ ```python
2139
+ INSTALLED_APPS = [
2140
+ ...,
2141
+ "django_auth_recovery_codes",
2142
+ "django_q", # required for background jobs
2143
+ ]
2144
+ ```
2145
+
2146
+ 3. **Add a recovery key and email backend (for testing)**
2147
+
2148
+ ```python
2149
+ EMAIL_BACKEND = "django.core.mail.backends.filebased.EmailBackend"
2150
+ EMAIL_FILE_PATH = BASE_DIR / "sent_emails"
2151
+
2152
+ DJANGO_AUTH_RECOVERY_KEY = "add-some-key"
2153
+ ```
2154
+
2155
+ 4. **Include URLs in your main `urls.py`**
2156
+
2157
+ ```python
2158
+ from django.urls import path, include
2159
+
2160
+ urlpatterns = [
2161
+ ...,
2162
+ path("", include("django_auth_recovery_codes.urls")),
2163
+ ]
2164
+ ```
2165
+
2166
+ 5. **Run migrations**
2167
+
2168
+ ```bash
2169
+ python manage.py migrate
2170
+ ```
2171
+
2172
+ > ⚠️ You don’t need to run `makemigrations` for this package because it already ships with its own migrations.
2173
+ > Just running `migrate` will apply them.
2174
+
2175
+ 6. **Start services**
2176
+
2177
+ ```bash
2178
+ # Terminal 1
2179
+ python manage.py runserver
2180
+
2181
+ # Terminal 2
2182
+ python manage.py qcluster
2183
+ ```
2184
+
2185
+ ---
2186
+ ## Scheduling a Code Removal Using Django-Q
2187
+
2188
+ In this section, we walk you through how to safely remove recovery codes using Django-Q. You will learn how to generate codes and schedule their deletion, ensuring they are managed automatically and securely. Make sure this running in a separate window
2189
+
2190
+ ```
2191
+ python manage.py qcluster
2192
+
2193
+ ```
2194
+
2195
+ ### Generate and Delete Codes
2196
+
2197
+ 1. Generate your recovery codes.
2198
+ 2. Click the **Delete Codes** button and confirm the action.
2199
+
2200
+ > Once confirmed, Django-Q will schedule the codes for deletion. This means the codes will be automatically removed according to the scheduled task, rather than immediately, providing a safe and managed cleanup process.
2201
+
2202
+ <div align="center">
2203
+ <img src="django_auth_recovery_codes/docs/images/delete_codes.png" alt="Delete codes form" width="1000">
2204
+ </div>
2205
+
2206
+ ---
2207
+
2208
+ ### Managing Scheduled Deletion via the Admin
2209
+
2210
+ Since we are logged in through the admin, we already have administrator access.
2211
+
2212
+ 1. Open a new tab and navigate to:
2213
+
2214
+ ```
2215
+ http://127.0.0.1:8000/admin/
2216
+ ```
2217
+
2218
+ 2. Once there, click on the **Recovery codes** link.
2219
+
2220
+ <div align="center">
2221
+ <img src="django_auth_recovery_codes/docs/images/admin.png" alt="Admin" width="1000">
2222
+ </div>
2223
+
2224
+ You will then see the following view:
2225
+
2226
+ <div align="center">
2227
+ <img src="django_auth_recovery_codes/docs/images/admin-delete-codes.png" alt="Admin delete codes" width="1000">
2228
+ </div>
2229
+
2230
+ Select **Recovery code cleanup schedulers**:
2231
+
2232
+ <div align="center">
2233
+ <img src="django_auth_recovery_codes/docs/images/admin-schedule-link.png" alt="Admin schedule link" width="300">
2234
+ </div>
2235
+
2236
+ ---
2237
+
2238
+ ### Scheduling a Delete
2239
+
2240
+ <div align="center">
2241
+ <img src="django_auth_recovery_codes/docs/images/admin-schedule-delete.png" alt="Admin schedule delete" width="700">
2242
+ </div>
2243
+
2244
+ #### Quick Explanation
2245
+
2246
+ * **Retention days**: The number of days an expired or invalid code remains in the database before being deleted. For example, if set to 30, a code will be deleted 30 days after it expires. The default is controlled via a settings flag but can be overridden in the admin interface.
2247
+
2248
+ * For testing, set this to `0` to remove codes immediately.
2249
+
2250
+ * **Run at**: The time the scheduler should run.
2251
+
2252
+ * **Schedule type**: How frequently the scheduler should run (`Once`, `Hourly`, `Daily`, `Weekly`, `Monthly`, `Quarterly`, `Yearly`).
2253
+
2254
+ * **Use with logger**: Records the scheduled deletion in a log file.
2255
+
2256
+ * **Delete empty batch**: When set to `True`, the parent batch (model) is removed if no active codes remain. When `False`, the batch will be kept.
2257
+
2258
+ * **Name**: A descriptive name for the scheduler.
2259
+
2260
+ * **Next run**: The next time the scheduler should run. This must not be earlier than the **Run at** value. It can also be left blank.
2261
+
2262
+ * Note: The scheduler is idempotent. Once configured, it will follow the set rules without needing to be triggered manually. The **Next run** option simply allows you to run an additional execution if required.
2263
+
2264
+
2265
+ Save the scheduler
2266
+
2267
+
2268
+ ### View tasks
2269
+
2270
+ Once Django-q is running you can view failed, queued, tasks via this section
2271
+
2272
+ <div align="center">
2273
+ <img src="django_auth_recovery_codes/docs/images/view_tasks.png" alt="view taske" width="300">
2274
+ </div>
2275
+
2276
+
2277
+ ### Summary
2278
+
2279
+ ## Scheduling a Code Removal Using Django-Q
2280
+
2281
+ In this section, we walk you through how to safely remove recovery codes using Django-Q. You will learn how to generate codes and schedule their deletion, ensuring they are managed automatically and securely.
2282
+
2283
+ ---
2284
+
2285
+ ### Generate and Delete Codes
2286
+
2287
+ 1. Generate your recovery codes.
2288
+ 2. Click the **Delete Codes** button and confirm the action.
2289
+
2290
+ > Once confirmed, Django-Q will schedule the codes for deletion. This means the codes will be automatically removed according to the scheduled task, rather than immediately, providing a safe and managed cleanup process.
2291
+
2292
+ <div align="center">
2293
+ <img src="django_auth_recovery_codes/docs/images/delete_codes.png" alt="Delete codes form" width="1000">
2294
+ </div>
2295
+
2296
+ ---
2297
+
2298
+ ### Managing Scheduled Deletion via the Admin
2299
+
2300
+ Since we are logged in through the admin, we already have administrator access.
2301
+
2302
+ 1. Open a new tab and navigate to:
2303
+
2304
+ ```
2305
+
2306
+ [http://127.0.0.1:8000/admin/](http://127.0.0.1:8000/admin/)
2307
+
2308
+ ```
2309
+
2310
+ 2. Once there, click on the **Recovery codes** link.
2311
+
2312
+ <div align="center">
2313
+ <img src="django_auth_recovery_codes/docs/images/admin.png" alt="Admin" width="1000">
2314
+ </div>
2315
+
2316
+ You will then see the following view:
2317
+
2318
+ <div align="center">
2319
+ <img src="django_auth_recovery_codes/docs/images/admin-delete-codes.png" alt="Admin delete codes" width="1000">
2320
+ </div>
2321
+
2322
+ Select **Recovery code cleanup schedulers**:
2323
+
2324
+ <div align="center">
2325
+ <img src="django_auth_recovery_codes/docs/images/admin-schedule-link.png" alt="Admin schedule link" width="300">
2326
+ </div>
2327
+
2328
+ ---
2329
+
2330
+ ### Scheduling a Delete
2331
+
2332
+ <div align="center">
2333
+ <img src="django_auth_recovery_codes/docs/images/admin-schedule-delete.png" alt="Admin schedule delete" width="700">
2334
+ </div>
2335
+
2336
+ #### Quick Explanation
2337
+
2338
+ - **Retention days**: The number of days an expired or invalid code remains in the database before being deleted.
2339
+ - Example: If set to 30, a code will be deleted 30 days after it expires.
2340
+ - Default is set in your Django settings but can be overridden in the admin interface.
2341
+ - For testing, set this to `0` to remove codes immediately.
2342
+
2343
+ - **Run at**: The time the scheduler should run.
2344
+
2345
+ - **Schedule type**: How frequently the scheduler should run (`Once`, `Hourly`, `Daily`, `Weekly`, `Monthly`, `Quarterly`, `Yearly`).
2346
+
2347
+ - **Use with logger**: Records the scheduled deletion in a log file.
2348
+
2349
+ - **Delete empty batch**:
2350
+ - `True`: Removes the parent batch if no active codes remain.
2351
+ - `False`: Keeps the batch even if it is empty.
2352
+
2353
+ - **Name**: A descriptive name for the scheduler.
2354
+
2355
+ - **Next run**: The next time the scheduler should run. This must not be earlier than **Run at**, but can be left blank.
2356
+ - Note: The scheduler is idempotent. Once configured, it will follow the set rules without needing to be triggered manually. The **Next run** option simply allows for an additional one-off execution.
2357
+
2358
+ ---
2359
+
2360
+ ## Summary
2361
+
2362
+
2363
+ 1. Generate your recovery codes.
2364
+ 2. Click **Delete Codes** → Django-Q schedules the deletion.
2365
+ 3. In the **Admin**, open **Recovery code cleanup schedulers**.
2366
+ 4. Configure:
2367
+ - **Retention days** → how long codes stay before deletion (set `0` for immediate removal).
2368
+ - **Schedule type** → how often deletion runs.
2369
+ - **Run at / Next run** → when to start.
2370
+ - **Delete empty batch** → remove batch if no codes remain.
2371
+
2372
+ ✅ That’s it. Django-Q will handle the cleanup automatically. Tasks are added to a queue and picked up by workers, so in most cases the cleanup will happen very quickly. Depending on your worker setup and workload, there may be a short delay, but it will always be processed.
2373
+
2374
+ ---
2375
+
2376
+ ### Visual Flow
2377
+
2378
+ ```
2379
+
2380
+ Generate recovery codes
2381
+
2382
+
2383
+ Click **Delete Codes**
2384
+
2385
+
2386
+ Django-Q schedules deletion
2387
+
2388
+
2389
+ Go to **Admin → Recovery code cleanup schedulers**
2390
+
2391
+
2392
+ Configure scheduler:
2393
+ • Retention days
2394
+ • Run at / Next run
2395
+ • Schedule type
2396
+ • Delete empty batch
2397
+
2398
+
2399
+ ✅ Codes are cleaned up automatically
2400
+
2401
+ ```
2402
+
2403
+ You can also run a scheduler to remove the audit reports for `Recovery Code` by using `Recovery code audit schedulers`. The audits are store in the `Recovery code Audit` model. The steps are same as the above steps.
2404
+
2405
+
2406
+ ### Running Tests
2407
+
2408
+ Ensure you have a `settings.py` file with the default configuration flags as shown in the walkthrough. You may use your own variable values, but all flags must exist, otherwise tests will fail.
2409
+ These configurations are required for the app to function correctly.
2410
+
2411
+
2412
+ ### Warning
2413
+
2414
+ In the `admin.py` interface under **Recovery Codes**, do not manually delete codes.
2415
+ The system is tied into the **RecoveryCodesBatch** model.
2416
+
2417
+ If you want to remove a code, **mark it as invalid** or **mark it for deletion** instead. This is important because the parent batch (`RecoveryCodesBatch`) tracks how many codes it has generated. This is good meaning it was generated and tied to its parent (RecoveryCodesBatch). Any action on the parent batch affects its children (the codes) which is the intended behaviour, but the reverse is not true which is also the intended behaviour. For example:
2418
+
2419
+ * If a batch is deleted, all its child codes are also deleted.
2420
+ * If a batch is marked as *pending deletion*, all its child codes are marked similarly.
2421
+ * If any of the children (codes) are marked as **invalid** or **for deletion**, the parent batch is not affected, and thus does not impact the other child codes.
2422
+
2423
+ #### Why this matters
2424
+
2425
+ When a user deletes all codes from the frontend:
2426
+
2427
+ 1. The application marks the batch for deletion, which in turn marks its child codes.
2428
+ 2. A scheduler later removes any codes marked for deletion.
2429
+ 3. Once all child codes are deleted, the empty parent batch is automatically deleted.
2430
+
2431
+ If you manually delete child codes in a batch:
2432
+
2433
+ * The scheduler cannot correctly clean up the batch.
2434
+ * You will end up with an empty batch in the database, tied to nothing and effectively “floating” and unused. When the scheduler next runs, it will generate email reports for that batch, indicating that nothing was cleaned which is true, since the batch has no children. This will bury reports about actual code cleanup under a flood of emails making it hard to find your emails.
2435
+
2436
+ If you want to delete all codes **without waiting for the scheduler**, delete the **parent batch**. This safely removes all associated codes because any action on the parent affects its children.
2437
+
2438
+ > Note: Deleting a single child code manually does not deactivate the parent batch. Marking a single code as invalid or for deletion will not affect the rest of the batch.
2439
+
2440
+ #### Summary
2441
+
2442
+ 1. Mark individual codes as **invalid** or **for deletion** in the admin interface, do **not manually delete** them.
2443
+ 2. To delete all codes immediately, delete the **parent batch**, this is safer and ensures proper cleanup.
2444
+
2445
+
2446
+ ---
2447
+
2448
+
2449
+ ## Django-Q Flush Tasks Command
2450
+
2451
+ A custom Django management command to safely clear Django-Q tasks and scheduler entries.
2452
+
2453
+ - This command allows you to remove **failed tasks**, **scheduler entries**, or **all tasks** from the Django-Q queue.
2454
+ - This management command allows you to safely flush Django-Q tasks and scheduler entries directly from the command line, with confirmation prompts to prevent accidental data loss.
2455
+
2456
+ Why is this needed?
2457
+
2458
+ Flushing tasks via the command line allows you to clear all tasks in the queue useful if an error occurs, or if you want to remove invalid or outdated schedulers and start fresh and quickly without going through the UI.
2459
+
2460
+
2461
+ ## Usage
2462
+
2463
+ Run the command using `manage.py`:
2464
+
2465
+ ```bash
2466
+ python manage.py flush_tasks
2467
+ ````
2468
+
2469
+ ### Options
2470
+
2471
+ * `--failed` : Clear only the failed tasks.
2472
+ * `--scheduler` : Clear only the scheduler entries.
2473
+ * `--all` : Clear all tasks (failed and scheduled).
2474
+ * `--yes` : Skip confirmation prompts (use with caution).
2475
+ * `--noinput` : Supress the confirmation prompt
2476
+
2477
+ ### Confirmation Prompt
2478
+
2479
+ By default, the command asks for confirmation before performing the flush. Example:
2480
+
2481
+ ```bash
2482
+ python manage.py flush_tasks --all
2483
+ Are you sure you want to clear all tasks? [y/N]: yes
2484
+ Cleared 5 task(s).
2485
+ ```
2486
+
2487
+ If you answer `N` or press Enter, the operation is cancelled.
2488
+
2489
+ ---
2490
+
2491
+ ## Quick Start Examples
2492
+
2493
+ * **Clear failed tasks only:**
2494
+
2495
+ ```bash
2496
+ python manage.py flush_tasks --failed
2497
+ Are you sure you want to clear failed tasks? [y/N]: yes
2498
+ Cleared 3 failed task(s).
2499
+ ```
2500
+
2501
+ * **Clear scheduler entries only:**
2502
+
2503
+ ```bash
2504
+ python manage.py flush_tasks --scheduler
2505
+ Are you sure you want to clear scheduler tasks? [y/N]: yes
2506
+ Cleared 2 scheduler task(s).
2507
+ ```
2508
+
2509
+ * **Clear all tasks:**
2510
+
2511
+ ```bash
2512
+ python manage.py flush_tasks --all
2513
+ Are you sure you want to clear all tasks? [y/N]: yes
2514
+ Cleared 5 task(s).
2515
+ ```
2516
+
2517
+ ---
2518
+
2519
+ ## Automated Use (No Confirmation)
2520
+
2521
+ If you need to flush tasks automatically (e.g., in scripts, cron jobs, or CI/CD pipelines), use the `--yes` flag to bypass the confirmation prompt:
2522
+
2523
+ ```bash
2524
+ python manage.py flush_tasks --all --noinput
2525
+ Cleared 5 task(s).
2526
+ ```
2527
+
2528
+ ## Using without
2529
+ * `--noinput` can be combined with any of the options (`--failed`, `--scheduler`, `--all`).
2530
+ * Use this with caution, as tasks will be removed without user confirmation.
2531
+
2532
+ ---
2533
+
2534
+ ## Notes
2535
+
2536
+ * Only the management command file is required for command-line usage.
2537
+ * Helper functions can be included in the same file or imported from a `utils/` folder if preferred.
2538
+ * Use the `--yes` flag carefully in production environments.
2539
+ * This tool is particularly useful to remove old, stuck, or failed tasks that could interfere with Django-Q operation.
2540
+
2541
+ ---
2542
+
2543
+
2544
+ 5. **Django-Q not installed**
2545
+
2546
+ * Install via pip:
2547
+
2548
+ ```bash
2549
+ pip install django-q
2550
+ ```
2551
+
2552
+ * Ensure `django_q` is included in `INSTALLED_APPS` and configured in `settings.py`.
2553
+
2554
+ ## Notes
2555
+
2556
+ * This command works for Django-Q tasks only. It does not affect other background jobs or Celery tasks.
2557
+ * Always use the confirmation prompt when clearing all tasks to avoid accidental data loss.
2558
+ * Keep the `flush_tasks.py` file in `management/commands` for command-line use.
2559
+
2560
+ -
2561
+
2562
+ [⬆ Back to Top](#top)
2563
+
2564
+ ---
2565
+
2566
+
2567
+ ## Quickstart Video Walkthrough
2568
+
2569
+ The following flags were used in the demo.
2570
+ You can **copy and paste** them into your `settings.py` file and modify them for your own use.
2571
+
2572
+ ```python
2573
+ # =======================================
2574
+ # Adding the flags needed for the app
2575
+ # =======================================
2576
+
2577
+ # ===========================
2578
+ # 📧 Email / Admin
2579
+ # ===========================
2580
+
2581
+ DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL = "your-email-here"
2582
+ DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER = "your host email here"
2583
+ DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME = "your name"
2584
+ DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG = False
2585
+
2586
+ # ===========================
2587
+ # 🔑 Security / Keys
2588
+ # ===========================
2589
+ DJANGO_AUTH_RECOVERY_KEY = 'Recovery-key-here'
2590
+
2591
+ # ===========================
2592
+ # 📜 Audit / Retention
2593
+ # ===========================
2594
+ DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP = True
2595
+ DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS = 30
2596
+ DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS = 30
2597
+ DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER = True
2598
+
2599
+ # ===========================
2600
+ # ⏳ Rate Limiting / Cooldowns
2601
+ # ===========================
2602
+
2603
+ DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE = True
2604
+ DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN = 300 # 5-minute lock down
2605
+ DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_CUTOFF_POINT = 3600
2606
+ DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_MULTIPLIER = 2
2607
+ DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS = 5
2608
+
2609
+ # ===========================
2610
+ # 📦 Caching
2611
+ # ===========================
2612
+
2613
+ DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX = 3600
2614
+ DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN = 1
2615
+ DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL = 3600
2616
+
2617
+ # ===========================
2618
+ # 📊 Pagination / Limits
2619
+ # ===========================
2620
+
2621
+ DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE = 20
2622
+ DJANGO_AUTH_RECOVERY_CODE_PER_PAGE = 1
2623
+ DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE = 400
2624
+ DJANGO_AUTH_RECOVERY_CODES_MAX_DELETIONS_PER_RUN = -1
2625
+
2626
+ # ===========================
2627
+ # 📂 Files / Naming
2628
+ # ===========================
2629
+
2630
+ DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME = "recovery_codes"
2631
+ DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT = "txt"
2632
+
2633
+ # ===========================
2634
+ # 🌍 Site / Redirects
2635
+ # ===========================
2636
+
2637
+ DJANGO_AUTH_RECOVERY_CODES_SITE_NAME = "This is a demo tutorial page"
2638
+ DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT = "logout_user" # redirect to a different page
2639
+
2640
+ # ===========================
2641
+ # 💬 Recovery Code Email Success Message
2642
+ # ===========================
2643
+
2644
+ DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG = "Hey, what's up? Your recovery codes have been sent to your email!"
2645
+
2646
+ # ===========================
2647
+ # 🧪 Email Backend (for testing)
2648
+ # ===========================
2649
+
2650
+ # Use Django's file-based email backend for testing purposes
2651
+
2652
+ EMAIL_BACKEND = "django.core.mail.backends.filebased.EmailBackend"
2653
+ EMAIL_FILE_PATH = BASE_DIR / "sent_emails"
2654
+ Path(EMAIL_FILE_PATH).mkdir(parents=True, exist_ok=True)
2655
+
2656
+ # ===========================
2657
+ # ⚙️ Django-Q Configuration
2658
+ # ===========================
2659
+
2660
+ # Add the Q Cluster needed for Django-Q task scheduling
2661
+
2662
+ Q_CLUSTER = {
2663
+ 'name': 'recovery_codes',
2664
+ 'workers': 2,
2665
+ 'timeout': 300, # 5 minutes max per task
2666
+ 'retry': 600, # retry after 10 minutes if a task fails (retry must be greater than timeout)
2667
+ 'recycle': 500,
2668
+ 'compress': True,
2669
+ 'cpu_affinity': 1,
2670
+ 'save_limit': 250,
2671
+ 'queue_limit': 500,
2672
+ 'orm': 'default',
2673
+ }
2674
+
2675
+ # ===========================
2676
+ # 🧭 Template Paths
2677
+ # ===========================
2678
+ # Add the path templates so that EmailSender knows where to look for the templates
2679
+
2680
+ import django_auth_recovery_codes
2681
+ from pathlib import Path
2682
+
2683
+ # Get the path to the installed package
2684
+ PACKAGE_DIR = Path(django_auth_recovery_codes.__file__).parent
2685
+
2686
+ # Define the templates directory within the package
2687
+ MYAPP_TEMPLATES_DIR = PACKAGE_DIR / "templates" / "django_auth_recovery_codes"
2688
+
2689
+
2690
+
2691
+ # ===========================
2692
+ # 🪵 Logging
2693
+ # ===========================
2694
+ # Add logging configuration to capture and log errors
2695
+ from django_auth_recovery_codes.loggers.logger_config import DJANGO_AUTH_RECOVERY_CODES_LOGGING
2696
+ LOGGING = DJANGO_AUTH_RECOVERY_CODES_LOGGING
2697
+ ```
2698
+
2699
+ ### Setup
2700
+
2701
+ Let’s get started! For this tutorial, we’ll install the package directly from GitHub since it hasn’t been published to PyPI yet:
2702
+
2703
+ ```bash
2704
+ pip install git+https://github.cUku1/django_2fa_recovery_codes.git
2705
+ ````
2706
+
2707
+ > 💡 **Note:** By the time this video goes live, the package will be available on PyPI. Then you can install it the usual way with:
2708
+ >
2709
+ > ```bash
2710
+ > pip install django_auth_recovery_codes
2711
+ > ```
2712
+
2713
+ After installation, you’re ready to follow along with the rest of the walkthrough.
2714
+
2715
+ [Watch the setup walkthrough here](https://www.loom.com/share/c85010766fc84f3481a9d720b5cbeb3e?sid=8c6263bb-cc7d-4b45-a9e9-da7eb92abbf5)
2716
+
2717
+
2718
+ ### App Demonstration Walkthrough
2719
+
2720
+ Check out the app in action in the video below:
2721
+
2722
+ [▶ Watch the app demonstration walkthrough](https://www.loom.com/share/fe73afdd93de413aad934de594446ace?sid=9de90a08-d920-4bd4-9443-cb61caf3c7e9)
2723
+
2724
+
2725
+
2726
+ ### View How Emails Are Displayed to the User (Backend)
2727
+
2728
+ > **Note:** For demonstration purposes, we are sending the emails to the backend. This means there is no styling applied here. In your own email inbox, they will appear fully styled.
2729
+
2730
+ [📧 View how the emails are sent to the user](https://www.loom.com/share/f762e0967f154f2b8dc0dc3bbcafeebd?sid=936405f8-c16f-4edf-9e2f-4b4039229724)
2731
+
2732
+
2733
+ ### Add Django-Q to Schedule Task Deletion
2734
+
2735
+ This section provides a walkthrough on how to set up **Django-Q** to automatically delete tasks after completion.
2736
+
2737
+ [⚙️ Watch how to use Django-Q to delete tasks](https://www.loom.com/share/afb9b7a4073844f6b5e03fbdfda19bec?sid=b1e08b43-99aa-40aa-aa9e-85e835294f44)
2738
+
2739
+
2740
+
2741
+ ### Some Flag Demonstrations
2742
+
2743
+ Here are a few examples of how you can configure different flags in the application demonstrated in video walkthrought.
2744
+
2745
+ - The first flag limits the UI to display **only 20 records** at a time, even if more exist.
2746
+ - The second flag specifies that **only one record is shown per page**, resulting in 20 pages each showing one record, in this example.
2747
+
2748
+ ```bash
2749
+ DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE = 20
2750
+ DJANGO_AUTH_RECOVERY_CODE_PER_PAGE = 5
2751
+ ````
2752
+
2753
+ * You can also customise the message displayed after a user emails themselves a copy of their recovery codes:
2754
+
2755
+ ```bash
2756
+ DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG = "Hey, what's up? Your recovery codes have been sent to your email!"
2757
+ ```
2758
+
2759
+ Plus a few other examples are demonstrated in the video below:
2760
+
2761
+ [🎛️ Watch flag demonstrations](https://www.loom.com/share/f9a809d42b4f413dbe8722638592ac44?sid=90d94191-ed56-4379-ab21-2510b0e70a24)
2762
+
2763
+
2764
+ ### Optional: Add Emails to the Model
2765
+
2766
+ You can optionally add emails to the database for enhanced tracking or custom email management.
2767
+
2768
+ [📨 Watch how to add emails to the database](https://www.loom.com/share/aa58598b3e7242e4942a43d5fafab2a8?sid=f572ecf4-35fa-4ff3-bcbf-e9dc0f2ff465)
2769
+
2770
+
2771
+
2772
+ ### Flushing the Tasks
2773
+
2774
+ Flushing tasks via the command line allows you to clear all tasks in the queue m useful if an error occurs,
2775
+ or if you want to remove invalid or outdated schedulers and start fresh.
2776
+
2777
+ [🧹 Watch how to flush the task scheduler](https://www.loom.com/share/aaf65308a451468dbb38accbeeb648c7?sid=b9bc295b-15dd-41ca-b75c-cd14776ae1bd)
2778
+
2779
+
2780
+
2781
+
2782
+ ## Known Issues
2783
+
2784
+ - The app is responsive across all screen sizes.
2785
+ - However, on medium, small, or extra-small screens the `logout` button is not visible because the `hamburger` menu is not yet active.
2786
+ - This will be addressed in a future update.
2787
+
2788
+
2789
+
2790
+ ## License
2791
+ - This package is licensed under the MIT License. See the LICENSE file for details.
2792
+
2793
+ ## Credits
2794
+ -This library was created and maintained by Egbie Uku a.k.a EgbieAndersonUku1.
2795
+
2796
+
2797
+ ---
2798
+
2799
+
2800
+ ## Support
2801
+ If you find this project helpful, you can support it:
2802
+
2803
+ [![Buy Me a Coffee](https://img.shields.io/badge/Buy%20Me%20a%20Coffee-☕-ff813f?style=for-the-badge)](https://buymeacoffee.com/egbieu)
2804
+
2805
+
2806
+ ---
2807
+