endoreg-db 0.8.9.32__py3-none-any.whl

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.

Potentially problematic release.


This version of endoreg-db might be problematic. Click here for more details.

Files changed (787) hide show
  1. endoreg_db/__init__.py +0 -0
  2. endoreg_db/_version.py +34 -0
  3. endoreg_db/admin.py +97 -0
  4. endoreg_db/api/serializers/finding_descriptions.py +0 -0
  5. endoreg_db/api/views/finding_descriptions.py +0 -0
  6. endoreg_db/api_urls.py +4 -0
  7. endoreg_db/apps.py +17 -0
  8. endoreg_db/assets/dummy_model.ckpt +1 -0
  9. endoreg_db/authz/auth.py +78 -0
  10. endoreg_db/authz/backends.py +168 -0
  11. endoreg_db/authz/management/commands/list_routes.py +20 -0
  12. endoreg_db/authz/middleware.py +84 -0
  13. endoreg_db/authz/permissions.py +138 -0
  14. endoreg_db/authz/policy.py +224 -0
  15. endoreg_db/authz/settings.py +64 -0
  16. endoreg_db/authz/views_auth.py +70 -0
  17. endoreg_db/codemods/readme.md +88 -0
  18. endoreg_db/codemods/rename_datetime_fields.py +99 -0
  19. endoreg_db/config/__init__.py +0 -0
  20. endoreg_db/config/env.py +106 -0
  21. endoreg_db/config/settings/__init__.py +6 -0
  22. endoreg_db/config/settings/base.py +148 -0
  23. endoreg_db/config/settings/case_gen.py +32 -0
  24. endoreg_db/config/settings/dev.py +108 -0
  25. endoreg_db/config/settings/keycloak.py +177 -0
  26. endoreg_db/config/settings/prod.py +66 -0
  27. endoreg_db/config/settings/test.py +72 -0
  28. endoreg_db/data/__init__.py +135 -0
  29. endoreg_db/data/ai_model/data.yaml +7 -0
  30. endoreg_db/data/ai_model_label/label/data.yaml +88 -0
  31. endoreg_db/data/ai_model_label/label/polyp_classification.yaml +52 -0
  32. endoreg_db/data/ai_model_label/label-set/data.yaml +40 -0
  33. endoreg_db/data/ai_model_label/label-set/polyp_classifications.yaml +25 -0
  34. endoreg_db/data/ai_model_label/label-type/data.yaml +7 -0
  35. endoreg_db/data/ai_model_meta/default_multilabel_classification.yaml +27 -0
  36. endoreg_db/data/ai_model_type/data.yaml +7 -0
  37. endoreg_db/data/ai_model_video_segmentation_label/base_segmentation.yaml +176 -0
  38. endoreg_db/data/ai_model_video_segmentation_labelset/data.yaml +20 -0
  39. endoreg_db/data/case_template/rule/00_patient_lab_sample_add_default_value.yaml +167 -0
  40. endoreg_db/data/case_template/rule/01_patient-set-age.yaml +8 -0
  41. endoreg_db/data/case_template/rule/01_patient-set-gender.yaml +9 -0
  42. endoreg_db/data/case_template/rule/11_create_patient_lab_sample.yaml +23 -0
  43. endoreg_db/data/case_template/rule/12_create-patient_medication-anticoagulation.yaml +19 -0
  44. endoreg_db/data/case_template/rule/13_create-patient_medication_schedule-anticoagulation.yaml +19 -0
  45. endoreg_db/data/case_template/rule/19_create_patient.yaml +17 -0
  46. endoreg_db/data/case_template/rule_type/base_types.yaml +35 -0
  47. endoreg_db/data/case_template/rule_value/.init +0 -0
  48. endoreg_db/data/case_template/rule_value_type/base_types.yaml +59 -0
  49. endoreg_db/data/case_template/template/base.yaml +8 -0
  50. endoreg_db/data/case_template/template_type/pre_endoscopy.yaml +3 -0
  51. endoreg_db/data/case_template/tmp/_rule_value +13 -0
  52. endoreg_db/data/case_template/tmp/rule/01_atrial_fibrillation.yaml +21 -0
  53. endoreg_db/data/case_template/tmp/rule/02_create_object.yaml +10 -0
  54. endoreg_db/data/case_template/tmp/template/atrial_fibrillation_low_risk.yaml +7 -0
  55. endoreg_db/data/center/data.yaml +99 -0
  56. endoreg_db/data/center_resource/green_endoscopy_dashboard_CenterResource.yaml +144 -0
  57. endoreg_db/data/center_shift/ukw.yaml +9 -0
  58. endoreg_db/data/center_waste/green_endoscopy_dashboard_CenterWaste.yaml +48 -0
  59. endoreg_db/data/contraindication/bleeding.yaml +11 -0
  60. endoreg_db/data/db_summary.csv +58 -0
  61. endoreg_db/data/db_summary.xlsx +0 -0
  62. endoreg_db/data/disease/cardiovascular.yaml +37 -0
  63. endoreg_db/data/disease/hepatology.yaml +5 -0
  64. endoreg_db/data/disease/misc.yaml +5 -0
  65. endoreg_db/data/disease/renal.yaml +5 -0
  66. endoreg_db/data/disease_classification/chronic_kidney_disease.yaml +6 -0
  67. endoreg_db/data/disease_classification/coronary_vessel_disease.yaml +6 -0
  68. endoreg_db/data/disease_classification_choice/chronic_kidney_disease.yaml +41 -0
  69. endoreg_db/data/disease_classification_choice/coronary_vessel_disease.yaml +20 -0
  70. endoreg_db/data/distribution/date/patient.yaml +7 -0
  71. endoreg_db/data/distribution/multiple_categorical/.init +0 -0
  72. endoreg_db/data/distribution/numeric/data.yaml +14 -0
  73. endoreg_db/data/distribution/single_categorical/patient.yaml +7 -0
  74. endoreg_db/data/emission_factor/green_endoscopy_dashboard_EmissionFactor.yaml +132 -0
  75. endoreg_db/data/endoscope/data.yaml +93 -0
  76. endoreg_db/data/endoscope_type/data.yaml +11 -0
  77. endoreg_db/data/endoscopy_processor/data.yaml +50 -0
  78. endoreg_db/data/event/cardiology.yaml +15 -0
  79. endoreg_db/data/event/neurology.yaml +14 -0
  80. endoreg_db/data/event/surgery.yaml +13 -0
  81. endoreg_db/data/event/thrombembolism.yaml +20 -0
  82. endoreg_db/data/event_classification/data.yaml +4 -0
  83. endoreg_db/data/event_classification_choice/data.yaml +9 -0
  84. endoreg_db/data/examination/examinations/data.yaml +172 -0
  85. endoreg_db/data/examination/time/data.yaml +48 -0
  86. endoreg_db/data/examination/time-type/data.yaml +5 -0
  87. endoreg_db/data/examination/type/data.yaml +17 -0
  88. endoreg_db/data/examination_indication/endoscopy.yaml +359 -0
  89. endoreg_db/data/examination_indication_classification/endoscopy.yaml +90 -0
  90. endoreg_db/data/examination_indication_classification_choice/endoscopy.yaml +97 -0
  91. endoreg_db/data/examination_requirement_set/colonoscopy.yaml +15 -0
  92. endoreg_db/data/finding/00_generic.yaml +35 -0
  93. endoreg_db/data/finding/00_generic_complication.yaml +9 -0
  94. endoreg_db/data/finding/01_gastroscopy_baseline.yaml +88 -0
  95. endoreg_db/data/finding/01_gastroscopy_observation.yaml +113 -0
  96. endoreg_db/data/finding/02_colonoscopy_baseline.yaml +53 -0
  97. endoreg_db/data/finding/02_colonoscopy_hidden.yaml +119 -0
  98. endoreg_db/data/finding/02_colonoscopy_observation.yaml +152 -0
  99. endoreg_db/data/finding_classification/00_generic.yaml +44 -0
  100. endoreg_db/data/finding_classification/00_generic_histology.yaml +28 -0
  101. endoreg_db/data/finding_classification/00_generic_lesion.yaml +52 -0
  102. endoreg_db/data/finding_classification/02_colonoscopy_baseline.yaml +83 -0
  103. endoreg_db/data/finding_classification/02_colonoscopy_histology.yaml +13 -0
  104. endoreg_db/data/finding_classification/02_colonoscopy_other.yaml +12 -0
  105. endoreg_db/data/finding_classification/02_colonoscopy_polyp.yaml +101 -0
  106. endoreg_db/data/finding_classification_choice/00_generic.yaml +15 -0
  107. endoreg_db/data/finding_classification_choice/00_generic_baseline.yaml +23 -0
  108. endoreg_db/data/finding_classification_choice/00_generic_complication.yaml +15 -0
  109. endoreg_db/data/finding_classification_choice/00_generic_histology.yaml +21 -0
  110. endoreg_db/data/finding_classification_choice/00_generic_lesion.yaml +158 -0
  111. endoreg_db/data/finding_classification_choice/02_colonoscopy_bowel_preparation.yaml +49 -0
  112. endoreg_db/data/finding_classification_choice/02_colonoscopy_generic.yaml +19 -0
  113. endoreg_db/data/finding_classification_choice/02_colonoscopy_histology.yaml +20 -0
  114. endoreg_db/data/finding_classification_choice/02_colonoscopy_location.yaml +248 -0
  115. endoreg_db/data/finding_classification_choice/02_colonoscopy_other.yaml +34 -0
  116. endoreg_db/data/finding_classification_choice/02_colonoscopy_polyp_advanced_imaging.yaml +76 -0
  117. endoreg_db/data/finding_classification_choice/02_colonoscopy_polyp_morphology.yaml +75 -0
  118. endoreg_db/data/finding_classification_choice/02_colonoscopy_size.yaml +27 -0
  119. endoreg_db/data/finding_classification_type/00_generic.yaml +53 -0
  120. endoreg_db/data/finding_classification_type/02_colonoscopy.yaml +9 -0
  121. endoreg_db/data/finding_intervention/00_generic_endoscopy.yaml +59 -0
  122. endoreg_db/data/finding_intervention/00_generic_endoscopy_ablation.yaml +44 -0
  123. endoreg_db/data/finding_intervention/00_generic_endoscopy_bleeding.yaml +55 -0
  124. endoreg_db/data/finding_intervention/00_generic_endoscopy_resection.yaml +85 -0
  125. endoreg_db/data/finding_intervention/00_generic_endoscopy_stenosis.yaml +17 -0
  126. endoreg_db/data/finding_intervention/00_generic_endoscopy_stent.yaml +9 -0
  127. endoreg_db/data/finding_intervention/01_gastroscopy.yaml +19 -0
  128. endoreg_db/data/finding_intervention/04_eus.yaml +39 -0
  129. endoreg_db/data/finding_intervention/05_ercp.yaml +3 -0
  130. endoreg_db/data/finding_intervention_type/endoscopy.yaml +15 -0
  131. endoreg_db/data/finding_type/data.yaml +39 -0
  132. endoreg_db/data/gender/data.yaml +42 -0
  133. endoreg_db/data/information_source/annotation.yaml +6 -0
  134. endoreg_db/data/information_source/data.yaml +30 -0
  135. endoreg_db/data/information_source/endoscopy_guidelines.yaml +7 -0
  136. endoreg_db/data/information_source/medication.yaml +6 -0
  137. endoreg_db/data/information_source/prediction.yaml +7 -0
  138. endoreg_db/data/information_source_type/data.yaml +8 -0
  139. endoreg_db/data/lab_value/cardiac_enzymes.yaml +37 -0
  140. endoreg_db/data/lab_value/coagulation.yaml +54 -0
  141. endoreg_db/data/lab_value/electrolytes.yaml +228 -0
  142. endoreg_db/data/lab_value/gastrointestinal_function.yaml +133 -0
  143. endoreg_db/data/lab_value/hematology.yaml +184 -0
  144. endoreg_db/data/lab_value/hormones.yaml +59 -0
  145. endoreg_db/data/lab_value/lipids.yaml +53 -0
  146. endoreg_db/data/lab_value/misc.yaml +76 -0
  147. endoreg_db/data/lab_value/renal_function.yaml +12 -0
  148. endoreg_db/data/log_type/data.yaml +57 -0
  149. endoreg_db/data/lx_client_tag/base.yaml +54 -0
  150. endoreg_db/data/lx_client_type/base.yaml +30 -0
  151. endoreg_db/data/lx_permission/base.yaml +24 -0
  152. endoreg_db/data/lx_permission/endoreg.yaml +52 -0
  153. endoreg_db/data/material/material.yaml +91 -0
  154. endoreg_db/data/medication/anticoagulation.yaml +65 -0
  155. endoreg_db/data/medication/tah.yaml +70 -0
  156. endoreg_db/data/medication_indication/anticoagulation.yaml +115 -0
  157. endoreg_db/data/medication_indication_type/data.yaml +11 -0
  158. endoreg_db/data/medication_indication_type/thrombembolism.yaml +41 -0
  159. endoreg_db/data/medication_intake_time/base.yaml +31 -0
  160. endoreg_db/data/medication_schedule/apixaban.yaml +95 -0
  161. endoreg_db/data/medication_schedule/ass.yaml +12 -0
  162. endoreg_db/data/medication_schedule/enoxaparin.yaml +26 -0
  163. endoreg_db/data/names_first/first_names.yaml +54 -0
  164. endoreg_db/data/names_last/last_names.yaml +51 -0
  165. endoreg_db/data/network_device/data.yaml +59 -0
  166. endoreg_db/data/network_device_type/data.yaml +12 -0
  167. endoreg_db/data/organ/data.yaml +29 -0
  168. endoreg_db/data/patient_lab_sample_type/generic.yaml +6 -0
  169. endoreg_db/data/pdf_type/data.yaml +46 -0
  170. endoreg_db/data/product/green_endoscopy_dashboard_Product.yaml +66 -0
  171. endoreg_db/data/product_group/green_endoscopy_dashboard_ProductGroup.yaml +33 -0
  172. endoreg_db/data/product_material/green_endoscopy_dashboard_ProductMaterial.yaml +308 -0
  173. endoreg_db/data/product_weight/green_endoscopy_dashboard_ProductWeight.yaml +88 -0
  174. endoreg_db/data/profession/data.yaml +70 -0
  175. endoreg_db/data/qualification/endoscopy.yaml +36 -0
  176. endoreg_db/data/qualification/m2.yaml +39 -0
  177. endoreg_db/data/qualification/outpatient_clinic.yaml +35 -0
  178. endoreg_db/data/qualification/sonography.yaml +36 -0
  179. endoreg_db/data/qualification_type/base.yaml +29 -0
  180. endoreg_db/data/reference_product/green_endoscopy_dashboard_ReferenceProduct.yaml +55 -0
  181. endoreg_db/data/report_reader_flag/rkh-histology-generic.yaml +10 -0
  182. endoreg_db/data/report_reader_flag/ukw-examination-generic.yaml +30 -0
  183. endoreg_db/data/report_reader_flag/ukw-histology-generic.yaml +24 -0
  184. endoreg_db/data/requirement/01_patient_data.yaml +93 -0
  185. endoreg_db/data/requirement/old/colon_polyp_intervention.yaml +49 -0
  186. endoreg_db/data/requirement/old/colonoscopy_baseline_austria.yaml +45 -0
  187. endoreg_db/data/requirement/old/coloreg_colon_polyp.yaml +49 -0
  188. endoreg_db/data/requirement/old/disease_cardiovascular.yaml +79 -0
  189. endoreg_db/data/requirement/old/disease_classification_choice_cardiovascular.yaml +41 -0
  190. endoreg_db/data/requirement/old/disease_hepatology.yaml +12 -0
  191. endoreg_db/data/requirement/old/disease_misc.yaml +12 -0
  192. endoreg_db/data/requirement/old/disease_renal.yaml +96 -0
  193. endoreg_db/data/requirement/old/endoscopy_bleeding_risk.yaml +59 -0
  194. endoreg_db/data/requirement/old/event_cardiology.yaml +251 -0
  195. endoreg_db/data/requirement/old/event_requirements.yaml +145 -0
  196. endoreg_db/data/requirement/old/finding_colon_polyp.yaml +50 -0
  197. endoreg_db/data/requirement/old/gender.yaml +0 -0
  198. endoreg_db/data/requirement/old/lab_value.yaml +441 -0
  199. endoreg_db/data/requirement/old/medication.yaml +93 -0
  200. endoreg_db/data/requirement_operator/_old/age.yaml +13 -0
  201. endoreg_db/data/requirement_operator/_old/lab_operators.yaml +129 -0
  202. endoreg_db/data/requirement_operator/_old/model_operators.yaml +96 -0
  203. endoreg_db/data/requirement_operator/new_operators.yaml +36 -0
  204. endoreg_db/data/requirement_set/01_endoscopy_generic.yaml +65 -0
  205. endoreg_db/data/requirement_set/01_laboratory.yaml +13 -0
  206. endoreg_db/data/requirement_set/02_endoscopy_bleeding_risk.yaml +46 -0
  207. endoreg_db/data/requirement_set/90_coloreg.yaml +190 -0
  208. endoreg_db/data/requirement_set/_old_ +109 -0
  209. endoreg_db/data/requirement_set/colonoscopy_austria_screening.yaml +57 -0
  210. endoreg_db/data/requirement_set_type/data.yaml +41 -0
  211. endoreg_db/data/requirement_type/requirement_types.yaml +165 -0
  212. endoreg_db/data/resource/green_endoscopy_dashboard_Resource.yaml +15 -0
  213. endoreg_db/data/risk/bleeding.yaml +26 -0
  214. endoreg_db/data/risk/thrombosis.yaml +37 -0
  215. endoreg_db/data/risk_type/data.yaml +27 -0
  216. endoreg_db/data/setup_config.yaml +38 -0
  217. endoreg_db/data/shift/endoscopy.yaml +21 -0
  218. endoreg_db/data/shift/m2.yaml +0 -0
  219. endoreg_db/data/shift_type/base.yaml +35 -0
  220. endoreg_db/data/tag/requirement_set_tags.yaml +32 -0
  221. endoreg_db/data/tmp/chronic_kidney_disease.yaml +0 -0
  222. endoreg_db/data/tmp/congestive_heart_failure.yaml +0 -0
  223. endoreg_db/data/transport_route/green_endoscopy_dashboard_TransportRoute.yaml +12 -0
  224. endoreg_db/data/unit/concentration.yaml +115 -0
  225. endoreg_db/data/unit/data.yaml +17 -0
  226. endoreg_db/data/unit/length.yaml +31 -0
  227. endoreg_db/data/unit/misc.yaml +20 -0
  228. endoreg_db/data/unit/rate.yaml +6 -0
  229. endoreg_db/data/unit/time.yaml +48 -0
  230. endoreg_db/data/unit/volume.yaml +35 -0
  231. endoreg_db/data/unit/weight.yaml +38 -0
  232. endoreg_db/data/waste/data.yaml +12 -0
  233. endoreg_db/exceptions.py +24 -0
  234. endoreg_db/export/frames/export.py +6 -0
  235. endoreg_db/export/frames/export_frames_with_labels.py +616 -0
  236. endoreg_db/factories/__init__.py +0 -0
  237. endoreg_db/forms/__init__.py +4 -0
  238. endoreg_db/forms/examination_form.py +12 -0
  239. endoreg_db/forms/patient_finding_intervention_form.py +40 -0
  240. endoreg_db/forms/patient_form.py +23 -0
  241. endoreg_db/forms/questionnaires/__init__.py +1 -0
  242. endoreg_db/forms/questionnaires/tto_questionnaire.py +23 -0
  243. endoreg_db/forms/settings/__init__.py +11 -0
  244. endoreg_db/forms/unit.py +7 -0
  245. endoreg_db/helpers/__init__.py +0 -0
  246. endoreg_db/helpers/count_db.py +48 -0
  247. endoreg_db/helpers/data_loader.py +280 -0
  248. endoreg_db/helpers/default_objects.py +414 -0
  249. endoreg_db/helpers/download_segmentation_model.py +32 -0
  250. endoreg_db/helpers/interact.py +1 -0
  251. endoreg_db/helpers/test_video_helper.py +127 -0
  252. endoreg_db/import_files/__init__.py +27 -0
  253. endoreg_db/import_files/context/__init__.py +7 -0
  254. endoreg_db/import_files/context/default_sensitive_meta.py +83 -0
  255. endoreg_db/import_files/context/ensure_center.py +17 -0
  256. endoreg_db/import_files/context/file_lock.py +66 -0
  257. endoreg_db/import_files/context/import_context.py +42 -0
  258. endoreg_db/import_files/context/validate_directories.py +57 -0
  259. endoreg_db/import_files/file_storage/__init__.py +15 -0
  260. endoreg_db/import_files/file_storage/create_report_file.py +99 -0
  261. endoreg_db/import_files/file_storage/create_video_file.py +104 -0
  262. endoreg_db/import_files/file_storage/sensitive_meta_storage.py +42 -0
  263. endoreg_db/import_files/file_storage/state_management.py +463 -0
  264. endoreg_db/import_files/file_storage/storage.py +42 -0
  265. endoreg_db/import_files/import_service.md +26 -0
  266. endoreg_db/import_files/processing/__init__.py +11 -0
  267. endoreg_db/import_files/processing/report_processing/report_anonymization.py +99 -0
  268. endoreg_db/import_files/processing/sensitive_meta_adapter.py +51 -0
  269. endoreg_db/import_files/processing/video_processing/video_anonymization.py +107 -0
  270. endoreg_db/import_files/pseudonymization/__init__.py +0 -0
  271. endoreg_db/import_files/pseudonymization/fake.py +52 -0
  272. endoreg_db/import_files/pseudonymization/k_anonymity.py +181 -0
  273. endoreg_db/import_files/pseudonymization/k_pseudonymity.py +139 -0
  274. endoreg_db/import_files/pseudonymization/pseudonymize.py +0 -0
  275. endoreg_db/import_files/report_import_service.py +147 -0
  276. endoreg_db/import_files/video_import_service.py +154 -0
  277. endoreg_db/logger_conf.py +156 -0
  278. endoreg_db/management/__init__.py +1 -0
  279. endoreg_db/management/commands/__init__.py +1 -0
  280. endoreg_db/management/commands/anonymize_video.py +0 -0
  281. endoreg_db/management/commands/check_auth.py +132 -0
  282. endoreg_db/management/commands/create_model_meta_from_huggingface.py +177 -0
  283. endoreg_db/management/commands/create_multilabel_model_meta.py +419 -0
  284. endoreg_db/management/commands/export_frame_annot.py +196 -0
  285. endoreg_db/management/commands/fix_missing_patient_data.py +206 -0
  286. endoreg_db/management/commands/fix_video_paths.py +186 -0
  287. endoreg_db/management/commands/import_report.py +361 -0
  288. endoreg_db/management/commands/list_routes.py +20 -0
  289. endoreg_db/management/commands/load_ai_model_data.py +83 -0
  290. endoreg_db/management/commands/load_ai_model_label_data.py +60 -0
  291. endoreg_db/management/commands/load_base_db_data.py +63 -0
  292. endoreg_db/management/commands/load_center_data.py +68 -0
  293. endoreg_db/management/commands/load_contraindication_data.py +39 -0
  294. endoreg_db/management/commands/load_disease_classification_choices_data.py +38 -0
  295. endoreg_db/management/commands/load_disease_classification_data.py +38 -0
  296. endoreg_db/management/commands/load_disease_data.py +59 -0
  297. endoreg_db/management/commands/load_distribution_data.py +63 -0
  298. endoreg_db/management/commands/load_endoscope_data.py +58 -0
  299. endoreg_db/management/commands/load_event_data.py +39 -0
  300. endoreg_db/management/commands/load_examination_data.py +78 -0
  301. endoreg_db/management/commands/load_examination_indication_data.py +85 -0
  302. endoreg_db/management/commands/load_finding_data.py +115 -0
  303. endoreg_db/management/commands/load_gender_data.py +37 -0
  304. endoreg_db/management/commands/load_green_endoscopy_wuerzburg_data.py +142 -0
  305. endoreg_db/management/commands/load_information_source.py +46 -0
  306. endoreg_db/management/commands/load_lab_value_data.py +52 -0
  307. endoreg_db/management/commands/load_legacy_data.py +303 -0
  308. endoreg_db/management/commands/load_medication_data.py +104 -0
  309. endoreg_db/management/commands/load_name_data.py +36 -0
  310. endoreg_db/management/commands/load_organ_data.py +39 -0
  311. endoreg_db/management/commands/load_pdf_type_data.py +58 -0
  312. endoreg_db/management/commands/load_profession_data.py +40 -0
  313. endoreg_db/management/commands/load_qualification_data.py +56 -0
  314. endoreg_db/management/commands/load_report_reader_flag_data.py +40 -0
  315. endoreg_db/management/commands/load_requirement_data.py +207 -0
  316. endoreg_db/management/commands/load_requirement_set_tags.py +95 -0
  317. endoreg_db/management/commands/load_risk_data.py +57 -0
  318. endoreg_db/management/commands/load_shift_data.py +57 -0
  319. endoreg_db/management/commands/load_tag_data.py +54 -0
  320. endoreg_db/management/commands/load_unit_data.py +40 -0
  321. endoreg_db/management/commands/load_user_groups.py +26 -0
  322. endoreg_db/management/commands/model_input.py +169 -0
  323. endoreg_db/management/commands/register_ai_model.py +70 -0
  324. endoreg_db/management/commands/setup_endoreg_db.py +459 -0
  325. endoreg_db/management/commands/start_filewatcher.py +115 -0
  326. endoreg_db/management/commands/storage_management.py +622 -0
  327. endoreg_db/management/commands/summarize_db_content.py +280 -0
  328. endoreg_db/management/commands/train_image_multilabel_model.py +144 -0
  329. endoreg_db/management/commands/validate_video_files.py +189 -0
  330. endoreg_db/management/commands/video_validation.py +20 -0
  331. endoreg_db/mermaid/Overall_flow_patient_finding_intervention.md +10 -0
  332. endoreg_db/mermaid/anonymized_image_annotation.md +20 -0
  333. endoreg_db/mermaid/binary_classification_annotation.md +50 -0
  334. endoreg_db/mermaid/classification.md +8 -0
  335. endoreg_db/mermaid/examination.md +8 -0
  336. endoreg_db/mermaid/findings.md +7 -0
  337. endoreg_db/mermaid/image_classification.md +28 -0
  338. endoreg_db/mermaid/interventions.md +8 -0
  339. endoreg_db/mermaid/morphology.md +8 -0
  340. endoreg_db/mermaid/patient_creation.md +14 -0
  341. endoreg_db/mermaid/video_segmentation_annotation.md +17 -0
  342. endoreg_db/migrations/0001_initial.py +1953 -0
  343. endoreg_db/migrations/__init__.py +0 -0
  344. endoreg_db/models/__init__.py +322 -0
  345. endoreg_db/models/administration/__init__.py +95 -0
  346. endoreg_db/models/administration/ai/__init__.py +9 -0
  347. endoreg_db/models/administration/ai/active_model.py +35 -0
  348. endoreg_db/models/administration/ai/ai_model.py +180 -0
  349. endoreg_db/models/administration/ai/model_type.py +42 -0
  350. endoreg_db/models/administration/case/__init__.py +5 -0
  351. endoreg_db/models/administration/case/case.py +114 -0
  352. endoreg_db/models/administration/case/case_template/__init__.py +3 -0
  353. endoreg_db/models/administration/case/case_template/case_template.py +3 -0
  354. endoreg_db/models/administration/case/case_template/case_template_rule.py +3 -0
  355. endoreg_db/models/administration/case/case_template/case_template_rule_value.py +3 -0
  356. endoreg_db/models/administration/case/case_template/case_template_type.py +3 -0
  357. endoreg_db/models/administration/center/__init__.py +13 -0
  358. endoreg_db/models/administration/center/center.py +85 -0
  359. endoreg_db/models/administration/center/center_product.py +67 -0
  360. endoreg_db/models/administration/center/center_resource.py +69 -0
  361. endoreg_db/models/administration/center/center_shift.py +94 -0
  362. endoreg_db/models/administration/center/center_waste.py +42 -0
  363. endoreg_db/models/administration/person/__init__.py +26 -0
  364. endoreg_db/models/administration/person/employee/__init__.py +3 -0
  365. endoreg_db/models/administration/person/employee/employee.py +40 -0
  366. endoreg_db/models/administration/person/employee/employee_qualification.py +44 -0
  367. endoreg_db/models/administration/person/employee/employee_type.py +50 -0
  368. endoreg_db/models/administration/person/examiner/__init__.py +4 -0
  369. endoreg_db/models/administration/person/examiner/examiner.py +64 -0
  370. endoreg_db/models/administration/person/names/__init__.py +0 -0
  371. endoreg_db/models/administration/person/names/first_name.py +20 -0
  372. endoreg_db/models/administration/person/names/last_name.py +20 -0
  373. endoreg_db/models/administration/person/patient/__init__.py +7 -0
  374. endoreg_db/models/administration/person/patient/patient.py +488 -0
  375. endoreg_db/models/administration/person/patient/patient_external_id.py +36 -0
  376. endoreg_db/models/administration/person/person.py +35 -0
  377. endoreg_db/models/administration/person/profession/__init__.py +28 -0
  378. endoreg_db/models/administration/person/user/__init__.py +5 -0
  379. endoreg_db/models/administration/person/user/portal_user_information.py +41 -0
  380. endoreg_db/models/administration/product/__init__.py +15 -0
  381. endoreg_db/models/administration/product/product.py +106 -0
  382. endoreg_db/models/administration/product/product_group.py +41 -0
  383. endoreg_db/models/administration/product/product_material.py +60 -0
  384. endoreg_db/models/administration/product/product_weight.py +51 -0
  385. endoreg_db/models/administration/product/reference_product.py +147 -0
  386. endoreg_db/models/administration/qualification/__init__.py +7 -0
  387. endoreg_db/models/administration/qualification/qualification.py +43 -0
  388. endoreg_db/models/administration/qualification/qualification_type.py +39 -0
  389. endoreg_db/models/administration/shift/__init__.py +9 -0
  390. endoreg_db/models/administration/shift/scheduled_days.py +72 -0
  391. endoreg_db/models/administration/shift/shift.py +57 -0
  392. endoreg_db/models/administration/shift/shift_type.py +108 -0
  393. endoreg_db/models/aidataset/__init__.py +5 -0
  394. endoreg_db/models/aidataset/aidataset.py +193 -0
  395. endoreg_db/models/label/__init__.py +23 -0
  396. endoreg_db/models/label/annotation/__init__.py +12 -0
  397. endoreg_db/models/label/annotation/image_classification.py +85 -0
  398. endoreg_db/models/label/annotation/video_segmentation_annotation.py +61 -0
  399. endoreg_db/models/label/label.py +91 -0
  400. endoreg_db/models/label/label_set.py +68 -0
  401. endoreg_db/models/label/label_type.py +29 -0
  402. endoreg_db/models/label/label_video_segment/__init__.py +3 -0
  403. endoreg_db/models/label/label_video_segment/_create_from_video.py +42 -0
  404. endoreg_db/models/label/label_video_segment/label_video_segment.py +611 -0
  405. endoreg_db/models/label/video_segmentation_label.py +35 -0
  406. endoreg_db/models/label/video_segmentation_labelset.py +28 -0
  407. endoreg_db/models/media/__init__.py +23 -0
  408. endoreg_db/models/media/frame/__init__.py +3 -0
  409. endoreg_db/models/media/frame/frame.py +137 -0
  410. endoreg_db/models/media/pdf/__init__.py +12 -0
  411. endoreg_db/models/media/pdf/raw_pdf.py +764 -0
  412. endoreg_db/models/media/pdf/report_file.py +162 -0
  413. endoreg_db/models/media/pdf/report_reader/__init__.py +7 -0
  414. endoreg_db/models/media/pdf/report_reader/report_reader_config.py +85 -0
  415. endoreg_db/models/media/pdf/report_reader/report_reader_flag.py +46 -0
  416. endoreg_db/models/media/video/__init__.py +9 -0
  417. endoreg_db/models/media/video/create_from_file.py +402 -0
  418. endoreg_db/models/media/video/pipe_1.py +258 -0
  419. endoreg_db/models/media/video/pipe_2.py +129 -0
  420. endoreg_db/models/media/video/video_file.py +907 -0
  421. endoreg_db/models/media/video/video_file_ai.py +828 -0
  422. endoreg_db/models/media/video/video_file_anonymize.py +524 -0
  423. endoreg_db/models/media/video/video_file_frames/__init__.py +49 -0
  424. endoreg_db/models/media/video/video_file_frames/_bulk_create_frames.py +25 -0
  425. endoreg_db/models/media/video/video_file_frames/_create_frame_object.py +23 -0
  426. endoreg_db/models/media/video/video_file_frames/_delete_frames.py +126 -0
  427. endoreg_db/models/media/video/video_file_frames/_extract_frames.py +233 -0
  428. endoreg_db/models/media/video/video_file_frames/_get_frame.py +36 -0
  429. endoreg_db/models/media/video/video_file_frames/_get_frame_number.py +13 -0
  430. endoreg_db/models/media/video/video_file_frames/_get_frame_path.py +24 -0
  431. endoreg_db/models/media/video/video_file_frames/_get_frame_paths.py +40 -0
  432. endoreg_db/models/media/video/video_file_frames/_get_frame_range.py +44 -0
  433. endoreg_db/models/media/video/video_file_frames/_get_frames.py +30 -0
  434. endoreg_db/models/media/video/video_file_frames/_initialize_frames.py +205 -0
  435. endoreg_db/models/media/video/video_file_frames/_manage_frame_range.py +228 -0
  436. endoreg_db/models/media/video/video_file_frames/_mark_frames_extracted_status.py +107 -0
  437. endoreg_db/models/media/video/video_file_io.py +272 -0
  438. endoreg_db/models/media/video/video_file_meta/__init__.py +22 -0
  439. endoreg_db/models/media/video/video_file_meta/get_crop_template.py +58 -0
  440. endoreg_db/models/media/video/video_file_meta/get_endo_roi.py +62 -0
  441. endoreg_db/models/media/video/video_file_meta/get_fps.py +183 -0
  442. endoreg_db/models/media/video/video_file_meta/initialize_video_specs.py +198 -0
  443. endoreg_db/models/media/video/video_file_meta/text_meta.py +178 -0
  444. endoreg_db/models/media/video/video_file_meta/video_meta.py +105 -0
  445. endoreg_db/models/media/video/video_file_segments.py +317 -0
  446. endoreg_db/models/media/video/video_metadata.py +67 -0
  447. endoreg_db/models/media/video/video_processing.py +192 -0
  448. endoreg_db/models/medical/__init__.py +136 -0
  449. endoreg_db/models/medical/contraindication/README.md +1 -0
  450. endoreg_db/models/medical/contraindication/__init__.py +29 -0
  451. endoreg_db/models/medical/disease.py +174 -0
  452. endoreg_db/models/medical/event.py +154 -0
  453. endoreg_db/models/medical/examination/__init__.py +20 -0
  454. endoreg_db/models/medical/examination/examination.py +183 -0
  455. endoreg_db/models/medical/examination/examination_indication.py +229 -0
  456. endoreg_db/models/medical/examination/examination_time.py +68 -0
  457. endoreg_db/models/medical/examination/examination_time_type.py +44 -0
  458. endoreg_db/models/medical/examination/examination_type.py +47 -0
  459. endoreg_db/models/medical/finding/__init__.py +20 -0
  460. endoreg_db/models/medical/finding/finding.py +113 -0
  461. endoreg_db/models/medical/finding/finding_classification.py +131 -0
  462. endoreg_db/models/medical/finding/finding_intervention.py +68 -0
  463. endoreg_db/models/medical/finding/finding_type.py +38 -0
  464. endoreg_db/models/medical/hardware/__init__.py +8 -0
  465. endoreg_db/models/medical/hardware/endoscope.py +77 -0
  466. endoreg_db/models/medical/hardware/endoscopy_processor.py +182 -0
  467. endoreg_db/models/medical/laboratory/__init__.py +5 -0
  468. endoreg_db/models/medical/laboratory/lab_value.py +490 -0
  469. endoreg_db/models/medical/medication/__init__.py +23 -0
  470. endoreg_db/models/medical/medication/medication.py +45 -0
  471. endoreg_db/models/medical/medication/medication_indication.py +78 -0
  472. endoreg_db/models/medical/medication/medication_indication_type.py +58 -0
  473. endoreg_db/models/medical/medication/medication_intake_time.py +58 -0
  474. endoreg_db/models/medical/medication/medication_schedule.py +58 -0
  475. endoreg_db/models/medical/organ/__init__.py +38 -0
  476. endoreg_db/models/medical/patient/__init__.py +48 -0
  477. endoreg_db/models/medical/patient/medication_examples.py +56 -0
  478. endoreg_db/models/medical/patient/patient_disease.py +72 -0
  479. endoreg_db/models/medical/patient/patient_event.py +80 -0
  480. endoreg_db/models/medical/patient/patient_examination.py +280 -0
  481. endoreg_db/models/medical/patient/patient_examination_indication.py +57 -0
  482. endoreg_db/models/medical/patient/patient_finding.py +416 -0
  483. endoreg_db/models/medical/patient/patient_finding_classification.py +231 -0
  484. endoreg_db/models/medical/patient/patient_finding_intervention.py +37 -0
  485. endoreg_db/models/medical/patient/patient_lab_sample.py +157 -0
  486. endoreg_db/models/medical/patient/patient_lab_value.py +247 -0
  487. endoreg_db/models/medical/patient/patient_medication.py +111 -0
  488. endoreg_db/models/medical/patient/patient_medication_schedule.py +152 -0
  489. endoreg_db/models/medical/risk/__init__.py +7 -0
  490. endoreg_db/models/medical/risk/risk.py +73 -0
  491. endoreg_db/models/medical/risk/risk_type.py +54 -0
  492. endoreg_db/models/metadata/__init__.py +19 -0
  493. endoreg_db/models/metadata/model_meta.py +266 -0
  494. endoreg_db/models/metadata/model_meta_logic.py +485 -0
  495. endoreg_db/models/metadata/pdf_meta.py +96 -0
  496. endoreg_db/models/metadata/sensitive_meta.py +345 -0
  497. endoreg_db/models/metadata/sensitive_meta_logic.py +1161 -0
  498. endoreg_db/models/metadata/video_meta.py +459 -0
  499. endoreg_db/models/metadata/video_prediction_logic.py +232 -0
  500. endoreg_db/models/metadata/video_prediction_meta.py +319 -0
  501. endoreg_db/models/operation_log.py +63 -0
  502. endoreg_db/models/other/__init__.py +40 -0
  503. endoreg_db/models/other/distribution/__init__.py +46 -0
  504. endoreg_db/models/other/distribution/base_value_distribution.py +22 -0
  505. endoreg_db/models/other/distribution/date_value_distribution.py +163 -0
  506. endoreg_db/models/other/distribution/multiple_categorical_value_distribution.py +50 -0
  507. endoreg_db/models/other/distribution/numeric_value_distribution.py +211 -0
  508. endoreg_db/models/other/distribution/single_categorical_value_distribution.py +23 -0
  509. endoreg_db/models/other/emission/__init__.py +5 -0
  510. endoreg_db/models/other/emission/emission_factor.py +110 -0
  511. endoreg_db/models/other/gender.py +32 -0
  512. endoreg_db/models/other/information_source.py +190 -0
  513. endoreg_db/models/other/material.py +34 -0
  514. endoreg_db/models/other/resource.py +24 -0
  515. endoreg_db/models/other/tag.py +32 -0
  516. endoreg_db/models/other/transport_route.py +40 -0
  517. endoreg_db/models/other/unit.py +40 -0
  518. endoreg_db/models/other/waste.py +28 -0
  519. endoreg_db/models/report/__init__.py +0 -0
  520. endoreg_db/models/report/images.py +0 -0
  521. endoreg_db/models/report/report.py +5 -0
  522. endoreg_db/models/requirement/__init__.py +11 -0
  523. endoreg_db/models/requirement/requirement.py +792 -0
  524. endoreg_db/models/requirement/requirement_error.py +84 -0
  525. endoreg_db/models/requirement/requirement_evaluation/__init__.py +6 -0
  526. endoreg_db/models/requirement/requirement_evaluation/evaluate_with_dependencies.py +268 -0
  527. endoreg_db/models/requirement/requirement_evaluation/get_values.py +40 -0
  528. endoreg_db/models/requirement/requirement_evaluation/operator_evaluation_models.py +6 -0
  529. endoreg_db/models/requirement/requirement_evaluation/requirement_type_parser.py +137 -0
  530. endoreg_db/models/requirement/requirement_operator.py +187 -0
  531. endoreg_db/models/requirement/requirement_set.py +327 -0
  532. endoreg_db/models/state/__init__.py +13 -0
  533. endoreg_db/models/state/abstract.py +11 -0
  534. endoreg_db/models/state/anonymization.py +30 -0
  535. endoreg_db/models/state/audit_ledger.py +155 -0
  536. endoreg_db/models/state/label_video_segment.py +31 -0
  537. endoreg_db/models/state/processing_history/__init__.py +3 -0
  538. endoreg_db/models/state/processing_history/processing_history.py +136 -0
  539. endoreg_db/models/state/raw_pdf.py +219 -0
  540. endoreg_db/models/state/sensitive_meta.py +50 -0
  541. endoreg_db/models/state/video.py +251 -0
  542. endoreg_db/models/upload_job.py +100 -0
  543. endoreg_db/models/utils.py +138 -0
  544. endoreg_db/queries/__init__.py +3 -0
  545. endoreg_db/queries/annotations/__init__.py +1 -0
  546. endoreg_db/queries/annotations/legacy.py +169 -0
  547. endoreg_db/queries/sanity/__init_.py +0 -0
  548. endoreg_db/root_urls.py +27 -0
  549. endoreg_db/schemas/__init__.py +0 -0
  550. endoreg_db/schemas/examination_evaluation.py +30 -0
  551. endoreg_db/serializers/Frames_NICE_and_PARIS_classifications.py +861 -0
  552. endoreg_db/serializers/__init__.py +104 -0
  553. endoreg_db/serializers/administration/__init__.py +13 -0
  554. endoreg_db/serializers/administration/ai/__init__.py +9 -0
  555. endoreg_db/serializers/administration/ai/active_model.py +12 -0
  556. endoreg_db/serializers/administration/ai/ai_model.py +20 -0
  557. endoreg_db/serializers/administration/ai/model_type.py +12 -0
  558. endoreg_db/serializers/administration/center.py +14 -0
  559. endoreg_db/serializers/administration/gender.py +11 -0
  560. endoreg_db/serializers/anonymization.py +77 -0
  561. endoreg_db/serializers/evaluation/examination_evaluation.py +0 -0
  562. endoreg_db/serializers/examination/__init__.py +10 -0
  563. endoreg_db/serializers/examination/base.py +45 -0
  564. endoreg_db/serializers/examination/dropdown.py +20 -0
  565. endoreg_db/serializers/examination_serializer.py +9 -0
  566. endoreg_db/serializers/finding/__init__.py +5 -0
  567. endoreg_db/serializers/finding/finding.py +61 -0
  568. endoreg_db/serializers/finding_classification/__init__.py +7 -0
  569. endoreg_db/serializers/finding_classification/choice.py +19 -0
  570. endoreg_db/serializers/finding_classification/classification.py +11 -0
  571. endoreg_db/serializers/label_video_segment/__init__.py +9 -0
  572. endoreg_db/serializers/label_video_segment/image_classification_annotation.py +62 -0
  573. endoreg_db/serializers/label_video_segment/label/__init__.py +6 -0
  574. endoreg_db/serializers/label_video_segment/label/label.py +15 -0
  575. endoreg_db/serializers/label_video_segment/label_video_segment.py +427 -0
  576. endoreg_db/serializers/meta/__init__.py +13 -0
  577. endoreg_db/serializers/meta/sensitive_meta_detail.py +122 -0
  578. endoreg_db/serializers/meta/sensitive_meta_update.py +153 -0
  579. endoreg_db/serializers/meta/sensitive_meta_verification.py +62 -0
  580. endoreg_db/serializers/meta/video_meta.py +39 -0
  581. endoreg_db/serializers/misc/__init__.py +14 -0
  582. endoreg_db/serializers/misc/file_overview.py +72 -0
  583. endoreg_db/serializers/misc/sensitive_patient_data.py +144 -0
  584. endoreg_db/serializers/misc/stats.py +35 -0
  585. endoreg_db/serializers/misc/translatable_field_mix_in.py +44 -0
  586. endoreg_db/serializers/misc/upload_job.py +74 -0
  587. endoreg_db/serializers/patient/__init__.py +12 -0
  588. endoreg_db/serializers/patient/patient.py +103 -0
  589. endoreg_db/serializers/patient/patient_dropdown.py +35 -0
  590. endoreg_db/serializers/patient_examination/__init__.py +7 -0
  591. endoreg_db/serializers/patient_examination/patient_examination.py +168 -0
  592. endoreg_db/serializers/patient_finding/__init__.py +15 -0
  593. endoreg_db/serializers/patient_finding/patient_finding.py +32 -0
  594. endoreg_db/serializers/patient_finding/patient_finding_classification.py +47 -0
  595. endoreg_db/serializers/patient_finding/patient_finding_detail.py +62 -0
  596. endoreg_db/serializers/patient_finding/patient_finding_intervention.py +28 -0
  597. endoreg_db/serializers/patient_finding/patient_finding_list.py +40 -0
  598. endoreg_db/serializers/patient_finding/patient_finding_write.py +135 -0
  599. endoreg_db/serializers/pdf/__init__.py +3 -0
  600. endoreg_db/serializers/pdf/anony_text_validation.py +101 -0
  601. endoreg_db/serializers/requirements/requirement_schema.py +20 -0
  602. endoreg_db/serializers/requirements/requirement_sets.py +99 -0
  603. endoreg_db/serializers/sensitive_meta_serializer.py +301 -0
  604. endoreg_db/serializers/video/__init__.py +7 -0
  605. endoreg_db/serializers/video/video_file.py +283 -0
  606. endoreg_db/serializers/video/video_file_brief.py +14 -0
  607. endoreg_db/serializers/video/video_file_detail.py +96 -0
  608. endoreg_db/serializers/video/video_file_list.py +100 -0
  609. endoreg_db/serializers/video/video_processing_history.py +172 -0
  610. endoreg_db/serializers/video_examination.py +198 -0
  611. endoreg_db/services/__init__.py +5 -0
  612. endoreg_db/services/anonymization.py +274 -0
  613. endoreg_db/services/examination_evaluation.py +172 -0
  614. endoreg_db/services/finding_description_service.py +0 -0
  615. endoreg_db/services/lookup_service.py +424 -0
  616. endoreg_db/services/lookup_store.py +266 -0
  617. endoreg_db/services/model_meta_from_hf.py +76 -0
  618. endoreg_db/services/pdf_import.py +0 -0
  619. endoreg_db/services/polling_coordinator.py +319 -0
  620. endoreg_db/services/pseudonym_service.py +94 -0
  621. endoreg_db/services/report_import.py +13 -0
  622. endoreg_db/services/segment_sync.py +171 -0
  623. endoreg_db/services/video_import.py +9 -0
  624. endoreg_db/templates/admin/patient_finding_intervention.html +253 -0
  625. endoreg_db/templates/admin/start_examination.html +12 -0
  626. endoreg_db/templates/timeline.html +176 -0
  627. endoreg_db/urls/__init__.py +56 -0
  628. endoreg_db/urls/ai.py +14 -0
  629. endoreg_db/urls/anonymization.py +78 -0
  630. endoreg_db/urls/auth.py +16 -0
  631. endoreg_db/urls/classification.py +34 -0
  632. endoreg_db/urls/examination.py +63 -0
  633. endoreg_db/urls/media.py +251 -0
  634. endoreg_db/urls/patient.py +23 -0
  635. endoreg_db/urls/requirements.py +15 -0
  636. endoreg_db/urls/root_urls.py +28 -0
  637. endoreg_db/urls/stats.py +54 -0
  638. endoreg_db/urls/upload.py +12 -0
  639. endoreg_db/urls.py +9 -0
  640. endoreg_db/utils/__init__.py +97 -0
  641. endoreg_db/utils/ai/__init__.py +9 -0
  642. endoreg_db/utils/ai/data_loader_for_model_input.py +262 -0
  643. endoreg_db/utils/ai/data_loader_for_model_training.py +262 -0
  644. endoreg_db/utils/ai/get.py +6 -0
  645. endoreg_db/utils/ai/inference_dataset.py +51 -0
  646. endoreg_db/utils/ai/model_training/config.py +117 -0
  647. endoreg_db/utils/ai/model_training/dataset.py +74 -0
  648. endoreg_db/utils/ai/model_training/losses.py +68 -0
  649. endoreg_db/utils/ai/model_training/metrics.py +78 -0
  650. endoreg_db/utils/ai/model_training/model_backbones.py +155 -0
  651. endoreg_db/utils/ai/model_training/model_gastronet_resnet.py +118 -0
  652. endoreg_db/utils/ai/model_training/trainer_gastronet_multilabel.py +771 -0
  653. endoreg_db/utils/ai/multilabel_classification_net.py +270 -0
  654. endoreg_db/utils/ai/postprocess.py +63 -0
  655. endoreg_db/utils/ai/predict.py +293 -0
  656. endoreg_db/utils/ai/preprocess.py +76 -0
  657. endoreg_db/utils/calc_duration_seconds.py +24 -0
  658. endoreg_db/utils/case_generator/__init__.py +3 -0
  659. endoreg_db/utils/case_generator/lab_sample_factory.py +32 -0
  660. endoreg_db/utils/check_video_files.py +175 -0
  661. endoreg_db/utils/cropping.py +30 -0
  662. endoreg_db/utils/dataloader.py +285 -0
  663. endoreg_db/utils/dates.py +59 -0
  664. endoreg_db/utils/defaults/set_default_center.py +33 -0
  665. endoreg_db/utils/env.py +37 -0
  666. endoreg_db/utils/extract_specific_frames.py +87 -0
  667. endoreg_db/utils/file_operations.py +70 -0
  668. endoreg_db/utils/fix_video_path_direct.py +157 -0
  669. endoreg_db/utils/frame_anonymization_utils.py +463 -0
  670. endoreg_db/utils/hashs.py +138 -0
  671. endoreg_db/utils/links/__init__.py +0 -0
  672. endoreg_db/utils/links/requirement_link.py +237 -0
  673. endoreg_db/utils/mime_types.py +0 -0
  674. endoreg_db/utils/names.py +82 -0
  675. endoreg_db/utils/ocr.py +195 -0
  676. endoreg_db/utils/operation_log.py +87 -0
  677. endoreg_db/utils/parse_and_generate_yaml.py +45 -0
  678. endoreg_db/utils/paths.py +159 -0
  679. endoreg_db/utils/permissions.py +160 -0
  680. endoreg_db/utils/pipelines/Readme.md +235 -0
  681. endoreg_db/utils/pipelines/__init__.py +0 -0
  682. endoreg_db/utils/pipelines/process_video_dir.py +144 -0
  683. endoreg_db/utils/product/__init__.py +0 -0
  684. endoreg_db/utils/product/sum_emissions.py +22 -0
  685. endoreg_db/utils/product/sum_weights.py +20 -0
  686. endoreg_db/utils/pydantic_models/__init__.py +5 -0
  687. endoreg_db/utils/pydantic_models/db_config.py +57 -0
  688. endoreg_db/utils/requirement_helpers.py +0 -0
  689. endoreg_db/utils/requirement_operator_logic/__init__.py +0 -0
  690. endoreg_db/utils/requirement_operator_logic/_old/lab_value_operators.py +678 -0
  691. endoreg_db/utils/requirement_operator_logic/_old/model_evaluators.py +842 -0
  692. endoreg_db/utils/requirement_operator_logic/new_operator_logic.py +114 -0
  693. endoreg_db/utils/setup_config.py +196 -0
  694. endoreg_db/utils/storage.py +117 -0
  695. endoreg_db/utils/translation.py +31 -0
  696. endoreg_db/utils/uuid.py +5 -0
  697. endoreg_db/utils/validate_endo_roi.py +33 -0
  698. endoreg_db/utils/validate_subcategory_dict.py +93 -0
  699. endoreg_db/utils/validate_video_detailed.py +415 -0
  700. endoreg_db/utils/video/__init__.py +30 -0
  701. endoreg_db/utils/video/extract_frames.py +100 -0
  702. endoreg_db/utils/video/ffmpeg_wrapper.py +996 -0
  703. endoreg_db/utils/video/names.py +47 -0
  704. endoreg_db/utils/video/streaming_processor.py +386 -0
  705. endoreg_db/utils/video/video_splitter.py +105 -0
  706. endoreg_db/versioning.md +79 -0
  707. endoreg_db/views/Frames_NICE_and_PARIS_classifications_views.py +247 -0
  708. endoreg_db/views/__init__.py +157 -0
  709. endoreg_db/views/anonymization/__init__.py +31 -0
  710. endoreg_db/views/anonymization/media_management.py +486 -0
  711. endoreg_db/views/anonymization/overview.py +307 -0
  712. endoreg_db/views/anonymization/validate.py +310 -0
  713. endoreg_db/views/auth/__init__.py +13 -0
  714. endoreg_db/views/auth/keycloak.py +146 -0
  715. endoreg_db/views/examination/__init__.py +30 -0
  716. endoreg_db/views/examination/examination.py +37 -0
  717. endoreg_db/views/examination/examination_manifest_cache.py +26 -0
  718. endoreg_db/views/examination/get_finding_classification_choices.py +62 -0
  719. endoreg_db/views/examination/get_finding_classifications.py +38 -0
  720. endoreg_db/views/examination/get_findings.py +39 -0
  721. endoreg_db/views/examination/get_instruments.py +19 -0
  722. endoreg_db/views/examination/get_interventions.py +14 -0
  723. endoreg_db/views/finding/__init__.py +9 -0
  724. endoreg_db/views/finding/finding.py +116 -0
  725. endoreg_db/views/finding/get_classifications.py +14 -0
  726. endoreg_db/views/finding/get_interventions.py +17 -0
  727. endoreg_db/views/finding_classification/__init__.py +13 -0
  728. endoreg_db/views/finding_classification/base.py +0 -0
  729. endoreg_db/views/finding_classification/finding_classification.py +41 -0
  730. endoreg_db/views/finding_classification/get_classification_choices.py +54 -0
  731. endoreg_db/views/media/__init__.py +32 -0
  732. endoreg_db/views/media/pdf_media.py +411 -0
  733. endoreg_db/views/media/sensitive_metadata.py +372 -0
  734. endoreg_db/views/media/video_media.py +275 -0
  735. endoreg_db/views/meta/__init__.py +7 -0
  736. endoreg_db/views/meta/sensitive_meta_list.py +102 -0
  737. endoreg_db/views/meta/sensitive_meta_verification.py +74 -0
  738. endoreg_db/views/misc/__init__.py +29 -0
  739. endoreg_db/views/misc/center.py +14 -0
  740. endoreg_db/views/misc/csrf.py +8 -0
  741. endoreg_db/views/misc/gender.py +15 -0
  742. endoreg_db/views/misc/stats.py +255 -0
  743. endoreg_db/views/misc/upload_views.py +241 -0
  744. endoreg_db/views/patient/__init__.py +3 -0
  745. endoreg_db/views/patient/patient.py +253 -0
  746. endoreg_db/views/patient_examination/__init__.py +11 -0
  747. endoreg_db/views/patient_examination/patient_examination.py +141 -0
  748. endoreg_db/views/patient_examination/patient_examination_create.py +58 -0
  749. endoreg_db/views/patient_examination/patient_examination_detail.py +63 -0
  750. endoreg_db/views/patient_examination/patient_examination_list.py +72 -0
  751. endoreg_db/views/patient_examination/video.py +228 -0
  752. endoreg_db/views/patient_finding/__init__.py +7 -0
  753. endoreg_db/views/patient_finding/base.py +0 -0
  754. endoreg_db/views/patient_finding/patient_finding.py +71 -0
  755. endoreg_db/views/patient_finding/patient_finding_optimized.py +291 -0
  756. endoreg_db/views/patient_finding_classification/__init__.py +5 -0
  757. endoreg_db/views/patient_finding_classification/pfc_create.py +75 -0
  758. endoreg_db/views/report/__init__.py +7 -0
  759. endoreg_db/views/report/reimport.py +177 -0
  760. endoreg_db/views/report/report_stream.py +191 -0
  761. endoreg_db/views/requirement/__init__.py +11 -0
  762. endoreg_db/views/requirement/evaluate.py +278 -0
  763. endoreg_db/views/requirement/lookup.py +380 -0
  764. endoreg_db/views/requirement/lookup_store.py +183 -0
  765. endoreg_db/views/requirement/requirement_utils.py +87 -0
  766. endoreg_db/views/requirement_lookup/lookup.py +0 -0
  767. endoreg_db/views/requirement_lookup/lookup_store.py +0 -0
  768. endoreg_db/views/stats/__init__.py +13 -0
  769. endoreg_db/views/stats/stats_views.py +266 -0
  770. endoreg_db/views/video/__init__.py +49 -0
  771. endoreg_db/views/video/ai/__init__.py +8 -0
  772. endoreg_db/views/video/ai/label.py +159 -0
  773. endoreg_db/views/video/correction.py +529 -0
  774. endoreg_db/views/video/reimport.py +230 -0
  775. endoreg_db/views/video/segments_crud.py +709 -0
  776. endoreg_db/views/video/video_apply_mask.py +49 -0
  777. endoreg_db/views/video/video_correction.py +22 -0
  778. endoreg_db/views/video/video_download_processed.py +58 -0
  779. endoreg_db/views/video/video_examination_viewset.py +242 -0
  780. endoreg_db/views/video/video_metadata.py +101 -0
  781. endoreg_db/views/video/video_processing_history.py +25 -0
  782. endoreg_db/views/video/video_remove_frames.py +49 -0
  783. endoreg_db/views/video/video_stream.py +334 -0
  784. endoreg_db-0.8.9.32.dist-info/METADATA +404 -0
  785. endoreg_db-0.8.9.32.dist-info/RECORD +787 -0
  786. endoreg_db-0.8.9.32.dist-info/WHEEL +4 -0
  787. endoreg_db-0.8.9.32.dist-info/licenses/LICENSE +674 -0
@@ -0,0 +1,787 @@
1
+ endoreg_db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ endoreg_db/_version.py,sha256=w-2FcoyWvlQLWhoPw1FcPISgBsmMxwzikjidy6hyr6Y,711
3
+ endoreg_db/admin.py,sha256=rz5P5hopYAm-AEtRV8VZcPnkshTX-hUoeJPDYSMW6zU,3772
4
+ endoreg_db/api_urls.py,sha256=k-JjENY5Rghz-xCXEp2fTcmVzoWUzuKRmdPK1B_LPLY,183
5
+ endoreg_db/apps.py,sha256=lyAJ8iJV9maljEOnOiZ3E1AVHjQUpBSR5Tc75j4XpYw,518
6
+ endoreg_db/exceptions.py,sha256=faiO4ca8UTNizF2DCp73NEM9BB2xLJEpmVPrmXIKg08,566
7
+ endoreg_db/logger_conf.py,sha256=Y5a_BZnkx7Ai_yDI6M7mavjNphJ0JJd_wF9FDv_8rKI,5708
8
+ endoreg_db/root_urls.py,sha256=ph6RjwA62TkbX_Loe-3wyBmppVzf2wt0sZIal_Vz2QE,1005
9
+ endoreg_db/urls.py,sha256=Bog2gEOtMKPiHruNKH7aOC7ggfg-E28dl94qhEDE7jg,300
10
+ endoreg_db/versioning.md,sha256=miS5rOv9D-8puSQOv557vyTQt60m9S25jLWvU4z1AMA,2202
11
+ endoreg_db/api/serializers/finding_descriptions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ endoreg_db/api/views/finding_descriptions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ endoreg_db/assets/dummy_model.ckpt,sha256=NAw5JDdrpV5bpZgdHXhmlQeo6TocKwQ_LQRzmqIm2Dw,21
14
+ endoreg_db/authz/auth.py,sha256=1NEKYs34Uy_-xLs9a4ea2yjau8tWL1EiRPETHzc872E,2600
15
+ endoreg_db/authz/backends.py,sha256=JJ5SH9xiA9_DgGmcCRGT9jMRfPWQmDactXIWcy9ymHI,6688
16
+ endoreg_db/authz/middleware.py,sha256=9ShOiUWwm5mlayJv-PuAaOq8ur7pcmfuiRWT7yc55zk,3701
17
+ endoreg_db/authz/permissions.py,sha256=jdrCRf_6GoGxqc_gurbF8h13VgSP_oX8pibghCHprZU,5015
18
+ endoreg_db/authz/policy.py,sha256=rFId-GIYdvW3FxoPQ9AKhgZCGCji1R1P6PKGZ-nQsJk,7276
19
+ endoreg_db/authz/settings.py,sha256=wmTR44YihukgHPXbU2tQE3XzzVjEOwiC7UY21KGyciM,2339
20
+ endoreg_db/authz/views_auth.py,sha256=DcfUFyO0TCicTXa52PD3qoYw79dC08qk_cGQWA-e0w0,2266
21
+ endoreg_db/authz/management/commands/list_routes.py,sha256=8RdW0CLimoSxV1Iy3x74PN2eRY1AH4XChhoR2gYPya0,624
22
+ endoreg_db/codemods/readme.md,sha256=mVOAevESOuN0WSTMI3tJPbuuGE3ROASp9s21bpf-LOs,3958
23
+ endoreg_db/codemods/rename_datetime_fields.py,sha256=aMjT2If3nJeCirh46WooKPu5bEwfTJeyufR-DaAPHLs,2917
24
+ endoreg_db/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ endoreg_db/config/env.py,sha256=9uMRrD9BWZnlKeUqqidVx0JRuD5SdxwGpRf0kv0uaA4,2690
26
+ endoreg_db/config/settings/__init__.py,sha256=f9COx6KcQ08mSSIUFQ7_r0bknxIrhpEYUvWDWrfRZqI,231
27
+ endoreg_db/config/settings/base.py,sha256=Ksg3OFY9gZf0GwH5E29HxtoqmnRtRt0fvQTz88WB73g,4150
28
+ endoreg_db/config/settings/case_gen.py,sha256=JcuPh5zZJ0hGMP02CYg1tn-kBe6niLRiM9niR9Z6814,1020
29
+ endoreg_db/config/settings/dev.py,sha256=5u397kWNAFeD0pvwXOAgssu9Dgtjkaywt4K8JJ2E38g,5547
30
+ endoreg_db/config/settings/keycloak.py,sha256=D_BqfvH4b2fZrdcPmDBJ1lvey0wqHDESAOgWPqmmlyE,7073
31
+ endoreg_db/config/settings/prod.py,sha256=71atibomHMRi2tHFUmyg15_M-ab37JWKAHLF9PLznhg,2300
32
+ endoreg_db/config/settings/test.py,sha256=T5Zz_U-vClDwWvFfIwcsYtpNid4JOfit9OkzoWnVsxc,2112
33
+ endoreg_db/data/__init__.py,sha256=wjJs6ISilF5AE6qWIhecREIJQrTWGQzVaq7m7cnJk2w,5443
34
+ endoreg_db/data/db_summary.csv,sha256=K4PcufVHQ64H1i2MbCShMxReEa96I8cL6IfwCVpqF2M,1225
35
+ endoreg_db/data/db_summary.xlsx,sha256=pwsc_IcxNETNrYjDXjpSW83b8f-WsSunRDiJLZXENZ0,5829
36
+ endoreg_db/data/setup_config.yaml,sha256=OavnU5KtaL2oIvysFTbi_sJvpPoVnDexw6MFH-lpg8o,1329
37
+ endoreg_db/data/ai_model/data.yaml,sha256=9XIRMS_meioGu-vYY6zUvz4RUXhRLdalaHhCTdaq4nA,306
38
+ endoreg_db/data/ai_model_label/label/data.yaml,sha256=qkt0FfrLvPrcW_N0GUzu3q9TpiXrvZU047xAIOk_33A,1737
39
+ endoreg_db/data/ai_model_label/label/polyp_classification.yaml,sha256=lHx2VwwVgKzOM_3PcuHuSIStgvMK6rHVi3WP67Qjv70,936
40
+ endoreg_db/data/ai_model_label/label-set/data.yaml,sha256=ocaxnkqiZgwi4sY561TbP_DEQWkPG1hBZ3olwPOqiXQ,789
41
+ endoreg_db/data/ai_model_label/label-set/polyp_classifications.yaml,sha256=GVmctJCgnr2lPUMttgPThNXoLcUl4XpliiuSjvE6h_Q,443
42
+ endoreg_db/data/ai_model_label/label-type/data.yaml,sha256=vffKYpTae_gu63_wza6LONs5ys4pna1EbrUUO6CafQs,136
43
+ endoreg_db/data/ai_model_meta/default_multilabel_classification.yaml,sha256=H2YzFLNl0vVAwFY0Oc0cEyqQwy1H0-inoS3WHoPOmeA,1162
44
+ endoreg_db/data/ai_model_type/data.yaml,sha256=vCMMo8wiI5uL2zrQROmgsHq1GrC8IdagGIgNdQunUeQ,149
45
+ endoreg_db/data/ai_model_video_segmentation_label/base_segmentation.yaml,sha256=EZ83vq02Cf2KfflWQ4HEe1NHmuzSCsmKtWW5Bv8jet0,4060
46
+ endoreg_db/data/ai_model_video_segmentation_labelset/data.yaml,sha256=07uB1ousJVNpp8B9enJ_YIdZf3y4sBPlME4bZwDv6ho,404
47
+ endoreg_db/data/case_template/rule/00_patient_lab_sample_add_default_value.yaml,sha256=H3kTALJ_6GJrY-4EYemeTCaa81NkyI-8LcNJFuEp5zs,4100
48
+ endoreg_db/data/case_template/rule/01_patient-set-age.yaml,sha256=lXfgKtirkQMHfAQtp9y9mojNnYx2KskGvdK-C1GEmtc,281
49
+ endoreg_db/data/case_template/rule/01_patient-set-gender.yaml,sha256=mZqygZ7lhjfSOO9M2m-ax1hmH2ztSXLsJwMEqJnj7e4,300
50
+ endoreg_db/data/case_template/rule/11_create_patient_lab_sample.yaml,sha256=AWSRRith2u-0zDKvf87OCK_KoG8pmlR8jNmFVsrK7S8,775
51
+ endoreg_db/data/case_template/rule/12_create-patient_medication-anticoagulation.yaml,sha256=Ep4BAa19E8MvXrEvmVoKpXZoaopmqxiJh7ijMMaTpd0,482
52
+ endoreg_db/data/case_template/rule/13_create-patient_medication_schedule-anticoagulation.yaml,sha256=QJ3fVapFhwf2N6InL7KFeANvZglf-NN3ozPOCZe2Oac,490
53
+ endoreg_db/data/case_template/rule/19_create_patient.yaml,sha256=xo563JMa-S59v3DrMuLW9EbVlTbu4dZdBGFMLAYzeaY,436
54
+ endoreg_db/data/case_template/rule_type/base_types.yaml,sha256=SOxV4SslNAx0DZoknWlKKLb3R1Ng2nlMDK2gfiVS_1M,1253
55
+ endoreg_db/data/case_template/rule_value/.init,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
+ endoreg_db/data/case_template/rule_value_type/base_types.yaml,sha256=0flEVxBKOegNxJnc2EOhaf950BNxC7WujrLV2aPncYM,1414
57
+ endoreg_db/data/case_template/template/base.yaml,sha256=lRrvLma0jW57qZEAuWWFQAtTWL8TaRpYiXFenlbTQJE,251
58
+ endoreg_db/data/case_template/template_type/pre_endoscopy.yaml,sha256=pJdvcaxpZsciK3Ok4Z3yCVPBG465v4bISmq1Gmgn2mI,74
59
+ endoreg_db/data/case_template/tmp/_rule_value,sha256=IJ3mdifZdfaWXI4sfYGYX0be_SvLdJSBKDnDx-gCLcI,464
60
+ endoreg_db/data/case_template/tmp/rule/01_atrial_fibrillation.yaml,sha256=zZsgZhfY4sgaA23q3EKDM9XTbtjUCG16H6waheIssRs,663
61
+ endoreg_db/data/case_template/tmp/rule/02_create_object.yaml,sha256=ZsKtkLTOp_9ThcITico-v2Ggw6Pwi_6mqCzqf-hf4Ro,263
62
+ endoreg_db/data/case_template/tmp/template/atrial_fibrillation_low_risk.yaml,sha256=zHa-SZLjJTcRgZuxuBiuAeb7OXk9VhWVgInUWBrXbLU,201
63
+ endoreg_db/data/center/data.yaml,sha256=GkvOpFu9DbWXiP4cA5--RPXyy3C0IbKv39eQYccFrww,2169
64
+ endoreg_db/data/center_resource/green_endoscopy_dashboard_CenterResource.yaml,sha256=VUv4hjOqA4ubWlga5h_e5Kp3oA_HfSuPBoh2HMP6zVQ,4513
65
+ endoreg_db/data/center_shift/ukw.yaml,sha256=8H0Tc6z9IPp8f1Amw0f7Dgqypf2csXmuEXYjJnUq3NA,303
66
+ endoreg_db/data/center_waste/green_endoscopy_dashboard_CenterWaste.yaml,sha256=OWusRQgfT1oGIPalbL-82GUKezESZYdr8aFl-bbVTUg,1242
67
+ endoreg_db/data/contraindication/bleeding.yaml,sha256=4dsXI8j5lVwU3_Io9KLZ2Jzhy5mysAuvmGtpGFX1m5s,270
68
+ endoreg_db/data/disease/cardiovascular.yaml,sha256=MVePTrd0ia2Aeo9kdIIYdz5MF6qtlub2Dw2JYHTwIrY,963
69
+ endoreg_db/data/disease/hepatology.yaml,sha256=oDYKRPZXQD_NKB7ruHFrpWDaoqnXqQblPyKwme1l97o,125
70
+ endoreg_db/data/disease/misc.yaml,sha256=SO-0Lba_vH3CXN9ql3hCnxWwN_LdnqS7YbSm4vN8HAQ,170
71
+ endoreg_db/data/disease/renal.yaml,sha256=hUFjn8KiEZ7oYW2uY-JfufR6N9Fk_0otKbwfZPWyFJQ,153
72
+ endoreg_db/data/disease_classification/chronic_kidney_disease.yaml,sha256=jKMh6PlFyJl_EpHzGscy6Rl_YYI2uk3YafQVDXRUDCc,229
73
+ endoreg_db/data/disease_classification/coronary_vessel_disease.yaml,sha256=olKtHAmSqDrBAvpuBcH5JwSD3scd_KliGLpT_cEFkTs,270
74
+ endoreg_db/data/disease_classification_choice/chronic_kidney_disease.yaml,sha256=Z2w51sQWk-wG5yDI-olfZTYskrKLxuUUIIVtdK4amPs,1583
75
+ endoreg_db/data/disease_classification_choice/coronary_vessel_disease.yaml,sha256=Z_MG6bbx_zI4C8qV-U_Yqvn1K3KYbvG-ElFaXbYAMNQ,835
76
+ endoreg_db/data/distribution/date/patient.yaml,sha256=I3fr98VNCja6a4qtf9YnjoFPlqH67LPbDlssQKY_cPE,210
77
+ endoreg_db/data/distribution/multiple_categorical/.init,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
+ endoreg_db/data/distribution/numeric/data.yaml,sha256=rivLhfDepy-LKdxMG-mXHIJiegD4cDo5DWZB7IkjBM8,362
79
+ endoreg_db/data/distribution/single_categorical/patient.yaml,sha256=R7beZDRqdOWNaFu-8Bd88E6j3eBc9mqhOW_265EA0e0,156
80
+ endoreg_db/data/emission_factor/green_endoscopy_dashboard_EmissionFactor.yaml,sha256=bBLmr3_uSLXdsbtRa9707WK1Z7Xy8TpBGKOfzWcfC_M,2968
81
+ endoreg_db/data/endoscope/data.yaml,sha256=ZaXTKP3C6oBh5mha03_ioE77XZKQB3aneOLWHpA8UnI,2341
82
+ endoreg_db/data/endoscope_type/data.yaml,sha256=k8uF94svJsU02O-ceaLnQBoozJ6cT3iY_s_aKrvJZqg,242
83
+ endoreg_db/data/endoscopy_processor/data.yaml,sha256=yfbQhmZ8I84IeI1FONwEqAagQunQHeDlSvrjJ8Lpn5w,1103
84
+ endoreg_db/data/event/cardiology.yaml,sha256=OGE7vyP6aJwNY5ZmRNqUK2EqrTE8CGtXCiiP_w0y99E,523
85
+ endoreg_db/data/event/neurology.yaml,sha256=AdpGHQxfBAOuUbKQ234T1MtE3bfHdgKA47HUoyFB5KE,282
86
+ endoreg_db/data/event/surgery.yaml,sha256=hyZWxg8LUNOwf3iybVj0Muta7pUdWhZXmLuuOh7hjek,428
87
+ endoreg_db/data/event/thrombembolism.yaml,sha256=TvpllrcpTV-kOxsttcPIxeRAZ1JKdoN_Nu0LSPatOZc,556
88
+ endoreg_db/data/event_classification/data.yaml,sha256=YejHg13_RWf1l18TxlVr0cdcQdCBv8Lls-_fuHMpXFY,112
89
+ endoreg_db/data/event_classification_choice/data.yaml,sha256=M2zPviPSW0R2KM-zC1tbUpVZ8dak_tPe52JqAAlvXGw,290
90
+ endoreg_db/data/examination/examinations/data.yaml,sha256=NmbHNhbtfF7fzFyBcEzdAqhbHSGIAatYjSVoXyZl9I4,5102
91
+ endoreg_db/data/examination/time/data.yaml,sha256=YQ2VFpmNoUwDf4cCSx35hj46YG2_JeRm_t86RTodVsI,1010
92
+ endoreg_db/data/examination/time-type/data.yaml,sha256=EPFHoEX_H1m-u0beRaPcjQYv071rxfD-1VCk1YKKBWI,111
93
+ endoreg_db/data/examination/type/data.yaml,sha256=z5mkiC1-xBoX9s28zI8-rt73DcX4r2gBm0LP5i4CiyI,339
94
+ endoreg_db/data/examination_indication/endoscopy.yaml,sha256=nHcGxjYu-n1wMR9_Vh6fWh_UXQuDup_hdkAfer3J_5g,13312
95
+ endoreg_db/data/examination_indication_classification/endoscopy.yaml,sha256=Ghtn6Yzq98cNGYU4mOmBH0_UhVcwD2OYlnFF_hVmY00,3078
96
+ endoreg_db/data/examination_indication_classification_choice/endoscopy.yaml,sha256=nWUbJkNUqaBQwdGiOxVMRae2IkSJde4dsjgh8nCe6IU,2908
97
+ endoreg_db/data/examination_requirement_set/colonoscopy.yaml,sha256=Mo_EnRSqsPfYfzDq_-pQFJeXvDiNgSzi_AmmrXdXnMQ,323
98
+ endoreg_db/data/finding/00_generic.yaml,sha256=3VJvfAidV_kr-QoI_Dh0F7TNlTDu0XLnZ8Nrw_int1M,1097
99
+ endoreg_db/data/finding/00_generic_complication.yaml,sha256=y_c1Ed5EIOpkajg10oIAbL9ZkLzL_iSK04_condAeeY,252
100
+ endoreg_db/data/finding/01_gastroscopy_baseline.yaml,sha256=Ar8GtgTVMHYioPzDdXEFL4QZTH24kRsA7848Xr-tuQ0,2217
101
+ endoreg_db/data/finding/01_gastroscopy_observation.yaml,sha256=s4fZneFZ4wkD7ino_wlRrdPr_TjKOb5TCR67i3En0Hk,2499
102
+ endoreg_db/data/finding/02_colonoscopy_baseline.yaml,sha256=pslQDHdtNtMGuAXVgW2sdA51gHCNWf0DLx-ZL1sEpNU,1646
103
+ endoreg_db/data/finding/02_colonoscopy_hidden.yaml,sha256=0O5LCvhp6zzgxy53eJiJtOZdra62K9zLYZsuDSF12yk,2617
104
+ endoreg_db/data/finding/02_colonoscopy_observation.yaml,sha256=mB-de5RPjS5UuBqpxlrnJE8in8EZpKnAaPbjbqvTEoY,3952
105
+ endoreg_db/data/finding_classification/00_generic.yaml,sha256=8HlxMBFykbVXWcckssLxGEWMeUZknfqBGlmSnk_QsNU,1151
106
+ endoreg_db/data/finding_classification/00_generic_histology.yaml,sha256=Qxa11CWG6jYHdQIAo-UyPvyQMWglSRIwBlFgKCsNSqU,678
107
+ endoreg_db/data/finding_classification/00_generic_lesion.yaml,sha256=LD-VTenycBNMUEarTcXssKtHQaGajuBMIvg2echYphQ,1516
108
+ endoreg_db/data/finding_classification/02_colonoscopy_baseline.yaml,sha256=tpxf2B-nZ3OrY_gMRzg1-hrnDEE4Gu6r_KNC9UboJLA,2260
109
+ endoreg_db/data/finding_classification/02_colonoscopy_histology.yaml,sha256=wiJAnMHEZ62e1NATKVB3U1e8qvdCSCmclBELa-PWi-0,405
110
+ endoreg_db/data/finding_classification/02_colonoscopy_other.yaml,sha256=EDsZZ56gaR3eHh2dZYLRDhdaFdpz_oTaWDKEu-qme-M,311
111
+ endoreg_db/data/finding_classification/02_colonoscopy_polyp.yaml,sha256=HTUpaioVX_pBAhtWOOrfEbHxG9ltF29SQevuDa-LY_Y,3292
112
+ endoreg_db/data/finding_classification_choice/00_generic.yaml,sha256=hAsRIvF3nH_9ngejamk7K75QwCZsE3wBJSyQ22OAMus,309
113
+ endoreg_db/data/finding_classification_choice/00_generic_baseline.yaml,sha256=_xxqLR16O9yfCoGd-PJA7o4yqD3Jo2lKEgF5-Fyhh7o,612
114
+ endoreg_db/data/finding_classification_choice/00_generic_complication.yaml,sha256=zd4-zH_4W_xHhgS4FAikEvaTZ4jnM7BLHotDWyWSd_8,440
115
+ endoreg_db/data/finding_classification_choice/00_generic_histology.yaml,sha256=gVtTJu2cr1rQ4qvNB2mx3OnaMhDSYpqo7lEGRJC3nWc,715
116
+ endoreg_db/data/finding_classification_choice/00_generic_lesion.yaml,sha256=rP85msm0JMI0QQGHHE2vmFflor04nW1keK1jWAOMxCk,4641
117
+ endoreg_db/data/finding_classification_choice/02_colonoscopy_bowel_preparation.yaml,sha256=-8Fj44SLKiabQXwhfhFNko1xeBSF2oeaetAbn7NHmHs,1172
118
+ endoreg_db/data/finding_classification_choice/02_colonoscopy_generic.yaml,sha256=vZKsQakhy7VrqDRGvu3yKT0id-Xwf9bDesFpXVAjAJA,537
119
+ endoreg_db/data/finding_classification_choice/02_colonoscopy_histology.yaml,sha256=6fRXcH0R7nEIsn6saYtQAr9zUW658wvGF5qDhTmdtLQ,778
120
+ endoreg_db/data/finding_classification_choice/02_colonoscopy_location.yaml,sha256=EbmHQrf1U2de9Jk1DF7KQ2wQaAAX64MrckbZuF1e5w8,6855
121
+ endoreg_db/data/finding_classification_choice/02_colonoscopy_other.yaml,sha256=RDTLmkMHJzExFs6tDhNAnX7JItJLBtd2ATj_JfqXOck,1044
122
+ endoreg_db/data/finding_classification_choice/02_colonoscopy_polyp_advanced_imaging.yaml,sha256=wqpQf4ga6AIK6kijGc5ymd4zyUzletnZwOfSyNQ_hGM,1968
123
+ endoreg_db/data/finding_classification_choice/02_colonoscopy_polyp_morphology.yaml,sha256=Pyyn5BAKEGY3mYxOtIjgr2czbgrULbyKwqSrj6ON2BE,2901
124
+ endoreg_db/data/finding_classification_choice/02_colonoscopy_size.yaml,sha256=GSfG0ZdU_QHzIqswR-wMr4Lya85s70zI1Zvxfsh1sbs,1098
125
+ endoreg_db/data/finding_classification_type/00_generic.yaml,sha256=WIMpDDFz3vZ2UQfeali9hmfngNBaDQ0NYNnP6TVnBkE,1158
126
+ endoreg_db/data/finding_classification_type/02_colonoscopy.yaml,sha256=LnHu7EF-VmaBKnhD0TJJqCikolrst6nSlTsnjOyBGUQ,258
127
+ endoreg_db/data/finding_intervention/00_generic_endoscopy.yaml,sha256=IyA7fNh2876EQ7KS9vqqfHNXLvZsC_VGIGctW0peNuI,2140
128
+ endoreg_db/data/finding_intervention/00_generic_endoscopy_ablation.yaml,sha256=HlQdFgnDg11m3VuD3czQa98k_eBvuIsDAoSBDlmFf0w,1549
129
+ endoreg_db/data/finding_intervention/00_generic_endoscopy_bleeding.yaml,sha256=zjR0lNiDfhBrhxAx6RzywTcsGF2E4kbfMFczO2h1MMg,1850
130
+ endoreg_db/data/finding_intervention/00_generic_endoscopy_resection.yaml,sha256=kb4RIq3PZMi0DxDygpsFiYSys6USeZBd-3SncW-Bh54,3496
131
+ endoreg_db/data/finding_intervention/00_generic_endoscopy_stenosis.yaml,sha256=7rw-E8_ZX2p7qaTW4-RjjRzVT4WTSV4IuPbaToebulI,495
132
+ endoreg_db/data/finding_intervention/00_generic_endoscopy_stent.yaml,sha256=1yYDdlXlDxdyjUzzNNVWvmVp5LfhfIqiWKrMoVjP0wo,269
133
+ endoreg_db/data/finding_intervention/01_gastroscopy.yaml,sha256=xWnqYvAvME1AKYjimrIrN6zNn7d7Gd-9Lzv5UbJmmJU,432
134
+ endoreg_db/data/finding_intervention/04_eus.yaml,sha256=Asxh4whTaJ8I2hrZGm1m32VH5m1LD9Eta2Z2V_qATKg,948
135
+ endoreg_db/data/finding_intervention/05_ercp.yaml,sha256=dYNB3a3RXwn3jWW9DmFTKthPECi8aD1May5KSSXuT-s,81
136
+ endoreg_db/data/finding_intervention_type/endoscopy.yaml,sha256=EnxIpRys8noMik2rUGQQG2zO0juZn75-k-4rVhD18ZY,319
137
+ endoreg_db/data/finding_type/data.yaml,sha256=fOSR88HU0aW0OaW39qV4GknycUA6Q9lJO3TLAiBFn70,694
138
+ endoreg_db/data/gender/data.yaml,sha256=H4Y4NaPWIie2uFzaQXe-gDQeDTx2z9iB2w1-8-9dHdQ,890
139
+ endoreg_db/data/information_source/annotation.yaml,sha256=oFRCVh0jwsRtk0_pxkj8XEX0yKJLhR2LaPAVu3BsSPE,135
140
+ endoreg_db/data/information_source/data.yaml,sha256=ZJULuYMz7FzkKaC76hor6sCW_P43KoZ_ncEN0grjegk,765
141
+ endoreg_db/data/information_source/endoscopy_guidelines.yaml,sha256=rDkSuKSX3_5dvJcencethzcBg73P6brIkRLuhTHctMo,310
142
+ endoreg_db/data/information_source/medication.yaml,sha256=S4MJ1w87IX0TSCCW5gpcXcMs-hIlhWss6wo4rvSMI5g,285
143
+ endoreg_db/data/information_source/prediction.yaml,sha256=pSjh6ru-IWpe8CLrJgj5s38EuMNbaw72Yon79I_YgIk,140
144
+ endoreg_db/data/information_source_type/data.yaml,sha256=ph6jhGdyxcyAX72pNpK96lAGEvdWZz3kKAPCF-LvO5U,155
145
+ endoreg_db/data/lab_value/cardiac_enzymes.yaml,sha256=uhXoXDknkdWW5hGFozllGVSW3pEO-m1i3GC2yL_pirw,910
146
+ endoreg_db/data/lab_value/coagulation.yaml,sha256=At6yBZGPVGvroVgO43yOrVAcAglYq0XUlumqOHacUlo,1792
147
+ endoreg_db/data/lab_value/electrolytes.yaml,sha256=8S6jvd5MkUz44QR3uW_YvR6uZgeCnR6zOzBe6xLAWYI,6591
148
+ endoreg_db/data/lab_value/gastrointestinal_function.yaml,sha256=9mkqs8lyE-yjb8GZvLZGJabedmnuVFw04s7LZHmdyc8,4049
149
+ endoreg_db/data/lab_value/hematology.yaml,sha256=dv3oNXVG1977iQz2nGKeCiMet4GL6KAxrKTx_hVC-Ok,5531
150
+ endoreg_db/data/lab_value/hormones.yaml,sha256=ZYN8dwm8QYnulWtS7mrxqRpF0mKln1pzcBoTDQw9DIM,1971
151
+ endoreg_db/data/lab_value/lipids.yaml,sha256=K3Nk80ug9FT0ZwnxcacFhmNiD8vbJS0TIPZtTnYZinI,1529
152
+ endoreg_db/data/lab_value/misc.yaml,sha256=BRSRUYl-KIIG7-wHuF6wnpArIe84jVnt3hsO4RKZ-U4,2088
153
+ endoreg_db/data/lab_value/renal_function.yaml,sha256=EecTOl-TiUcfs03tnOVqwNG1vm8840EJBWdYzYlayME,402
154
+ endoreg_db/data/log_type/data.yaml,sha256=nZeua8KwnrVGupl-B74PjsUenANSmUwCVkEzdtrTGAQ,1126
155
+ endoreg_db/data/lx_client_tag/base.yaml,sha256=-nQpO64m3oPGSEo93iRgE7BeSKtg_0xP9_ZrGQrkdvI,1128
156
+ endoreg_db/data/lx_client_type/base.yaml,sha256=GVLjTm4C2ZsZuhaN4lef9DAKkFNFthM0cwmfeE0hkis,568
157
+ endoreg_db/data/lx_permission/base.yaml,sha256=FikkGRvrEBwdXV4r5SFRwHdPjUJ-SVbnKAN-w7rWTJU,426
158
+ endoreg_db/data/lx_permission/endoreg.yaml,sha256=P9dbv14ibF5SqlNQ3TTJYUnPVFYVy6qBNFEoVS8pSis,1007
159
+ endoreg_db/data/material/material.yaml,sha256=GUY0l4DSm1OQtgExNbTMqAuUMPvUBlTvNWvrtJKhXiY,2035
160
+ endoreg_db/data/medication/anticoagulation.yaml,sha256=0pY2_DkW6_RWy0ZcnlSxVFLYQjoPWPyrqgVPjLdnBio,1600
161
+ endoreg_db/data/medication/tah.yaml,sha256=kSI_07Jt76BDIqaEVBdAwO02M4X_0aj-YG3gvZ4mOrY,1666
162
+ endoreg_db/data/medication_indication/anticoagulation.yaml,sha256=Iq5xxsRayu09D2G4xTyx-VyFIqnaoUj5GMxaF80haV0,4320
163
+ endoreg_db/data/medication_indication_type/data.yaml,sha256=5A3JuEO6INqv-eeLuqbRi30klC_qD13riApzLUHVlLo,245
164
+ endoreg_db/data/medication_indication_type/thrombembolism.yaml,sha256=9zPWk-1pnb4fFCHueVlXX90x6z7V_dJlN3pz2kMl6BE,1691
165
+ endoreg_db/data/medication_intake_time/base.yaml,sha256=fT7dEu67nt9q37XDAHyYtYhwT0Sx1OLhdcqjqT3fNlk,930
166
+ endoreg_db/data/medication_schedule/apixaban.yaml,sha256=TjmoBu4ian9ZwiSN5qBKtivzesJC0cdWkE1JP5DRmwE,2366
167
+ endoreg_db/data/medication_schedule/ass.yaml,sha256=ECiHbQcahbZP9B8IDOYRB6vHKj3yl7cBY9QasIHJ7sM,295
168
+ endoreg_db/data/medication_schedule/enoxaparin.yaml,sha256=lI8WfFBspEXhTxnTEfyq1a_VBKbdNAcj34PIF2_X3cQ,653
169
+ endoreg_db/data/names_first/first_names.yaml,sha256=KL6bD5xlasTdfcxkAWoTQWTUl1pcdKrEdikC9IXIUy4,1043
170
+ endoreg_db/data/names_last/last_names.yaml,sha256=MEvlTohYPEOf0jbI3k74lcpmM9P_vtCq2hOo-f2uPeg,976
171
+ endoreg_db/data/network_device/data.yaml,sha256=VM7rewtnEB_BdJZc6hegfIZNQFA2Xe2MTIDMmqFUoVI,1289
172
+ endoreg_db/data/network_device_type/data.yaml,sha256=xkbfoHjqM9uHv68W_LNsVDbZSy4FZrhKauzJJkzM-h4,230
173
+ endoreg_db/data/organ/data.yaml,sha256=xMrCPGyCB6QIhHwL1tnf61ZenmIGP7JBMsVoFeMlX1I,518
174
+ endoreg_db/data/patient_lab_sample_type/generic.yaml,sha256=nbtummOrGUeBkM7sVpqq48txkC-bmxn4_h40oS4VloY,162
175
+ endoreg_db/data/pdf_type/data.yaml,sha256=D-um-dLia6a0csgGcYAKIemCJDQTbLtEc4_p8naOG0c,1634
176
+ endoreg_db/data/product/green_endoscopy_dashboard_Product.yaml,sha256=PzQGTSXJ-UwtXkOGdI0nsGGDo0HO1KwZKpCfiEqmdt0,1898
177
+ endoreg_db/data/product_group/green_endoscopy_dashboard_ProductGroup.yaml,sha256=RMkNyM0eDJ9yqUIflirWT5V108p3o8Yp6MoDr6eQg-c,685
178
+ endoreg_db/data/product_material/green_endoscopy_dashboard_ProductMaterial.yaml,sha256=jFGcc9Z0fqPHc9rHbju9PpwPNuacUsZMDZB-j2cfmBE,7225
179
+ endoreg_db/data/product_weight/green_endoscopy_dashboard_ProductWeight.yaml,sha256=O1eQJ5iKAu29hewIXAp-gRKUzvILQviR10FDrfn5x7c,2200
180
+ endoreg_db/data/profession/data.yaml,sha256=3lRQ-SEiJHjmuQWXVLBoL7tpfO2t82NgGc3PpKIayQg,2151
181
+ endoreg_db/data/qualification/endoscopy.yaml,sha256=qkHqPANzfXTAg-rn2-Mm7jmJyZdmx5sSEK7k9EkyCKw,859
182
+ endoreg_db/data/qualification/m2.yaml,sha256=C4VohK9PBsNjj-OSnOvUYi3bWJlZIEROMnqoWBA0qnI,912
183
+ endoreg_db/data/qualification/outpatient_clinic.yaml,sha256=D4rH7xxB-9JoZzsK2B2VmS1aKchz0UD5UM7vESP9w-c,947
184
+ endoreg_db/data/qualification/sonography.yaml,sha256=N6aeEluhhVY4ReRzn4LGGCSlBoSUwS5dzcTWcHH1_Og,923
185
+ endoreg_db/data/qualification_type/base.yaml,sha256=2JxWG4eaRlGiS18GN6HE6ixwX1SREHyDiwGeKrgMeaI,660
186
+ endoreg_db/data/reference_product/green_endoscopy_dashboard_ReferenceProduct.yaml,sha256=sSvySBfb6RgEwp2Gcq-HuS8_34HFbcQt1rg34DZdNnA,1643
187
+ endoreg_db/data/report_reader_flag/rkh-histology-generic.yaml,sha256=Y9Zz02Qw-GZn3PY6p6smE_aNRNE8zENbUNUmGUenAVg,251
188
+ endoreg_db/data/report_reader_flag/ukw-examination-generic.yaml,sha256=1a_pvnDg-LztEyT5o13J6ukPCxx4wAQDaP0qowaRTJE,870
189
+ endoreg_db/data/report_reader_flag/ukw-histology-generic.yaml,sha256=q_sRCIjhFBmGMtbT_9Syl3OKXeICFrUyP0iTsFtzXAI,624
190
+ endoreg_db/data/requirement/01_patient_data.yaml,sha256=QFxMiTyUVAXz5qjKm9KbZ9OWPyFNtbDK7w3S4CQZjlQ,3658
191
+ endoreg_db/data/requirement/old/colon_polyp_intervention.yaml,sha256=ziOMOBi5mrT9xHez0YVoi15jcfFR4WePCTg3MJuHJEw,1413
192
+ endoreg_db/data/requirement/old/colonoscopy_baseline_austria.yaml,sha256=n_5hP9xoDr7jFWLE5M53r1ar5g5Rc6WI8mm4aK11_T8,1133
193
+ endoreg_db/data/requirement/old/coloreg_colon_polyp.yaml,sha256=qgl4w6fhbpygNQmCu5WGA-B-H06-MupCMRc65SL0oZQ,1310
194
+ endoreg_db/data/requirement/old/disease_cardiovascular.yaml,sha256=5DsBiGQjcnVyEhRRqyZkjnJBqRaCUfXVW3OfkLOMLsw,2059
195
+ endoreg_db/data/requirement/old/disease_classification_choice_cardiovascular.yaml,sha256=10ejrlmzr53eGmTGRD2wrikuEfK3yPwxKFOgx3VshLk,1403
196
+ endoreg_db/data/requirement/old/disease_hepatology.yaml,sha256=DS6azOT3H-bSwghmv8fyPylHKkxN0gJ1BbVlchT2hWU,324
197
+ endoreg_db/data/requirement/old/disease_misc.yaml,sha256=qMvKSE1J8CPNlzCae5liQWNxDYxpERzlzHBKB6YQSp0,354
198
+ endoreg_db/data/requirement/old/disease_renal.yaml,sha256=1eiIMZQVt5i0dAvOEP1_1i5jvITRfeavZr62zwTPvVI,3472
199
+ endoreg_db/data/requirement/old/endoscopy_bleeding_risk.yaml,sha256=dhc0zqrnR6xkqrfZlb_fe-lYne2MNXaCmmagiAZhpkY,2054
200
+ endoreg_db/data/requirement/old/event_cardiology.yaml,sha256=7ss8PILhYtxQztmM7U61fd41tzCE7INqCE5bdDxgGXI,8574
201
+ endoreg_db/data/requirement/old/event_requirements.yaml,sha256=xDnJFKlQifDP0fLb3N5kbcOPocMcYUHQ_UjfRyXNDwA,5083
202
+ endoreg_db/data/requirement/old/finding_colon_polyp.yaml,sha256=I2rKRUij7tui6O-0dj_l-P54vYLD81V1tOdDMBJqLBU,1387
203
+ endoreg_db/data/requirement/old/gender.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
204
+ endoreg_db/data/requirement/old/lab_value.yaml,sha256=sCLQ-VR6bYVFp_9q1_lH6vkIDIKMj6RapNvW-eWEEl4,15081
205
+ endoreg_db/data/requirement/old/medication.yaml,sha256=kJLiAkiRDgSWzU7AU1BFxtkQ5-gVEdinsGLqj07Eb3Y,3500
206
+ endoreg_db/data/requirement_operator/new_operators.yaml,sha256=-kpo2cL8sEl90p6Ioy53NlOb9nAYMtGi7LNFZNiMVK8,1462
207
+ endoreg_db/data/requirement_operator/_old/age.yaml,sha256=RHQ2o3RNnSrgDKKLL1wdbwhjV0iI03sD99B-5BEePks,535
208
+ endoreg_db/data/requirement_operator/_old/lab_operators.yaml,sha256=0-XFEn0y_D-46f-6p6i21I2jUQFVFhsUaKA-03ORLTU,8105
209
+ endoreg_db/data/requirement_operator/_old/model_operators.yaml,sha256=DjePXlQ8WV974-WqjTyX4B2lLSXdo0oNUX-_22G5yH4,5368
210
+ endoreg_db/data/requirement_set/01_endoscopy_generic.yaml,sha256=sPTaZ9oVx8ls73tjiYpKOdUEgJhqk4JxJqXathr9-ro,2084
211
+ endoreg_db/data/requirement_set/01_laboratory.yaml,sha256=IMO7L2aTMnpXNunnRwyJIlDrZ67M4heMIxRp-3OqMtw,438
212
+ endoreg_db/data/requirement_set/02_endoscopy_bleeding_risk.yaml,sha256=yjkL22wa8_bm08EMYIoMlQ4barfIOaxILz3R8RKdxZc,1864
213
+ endoreg_db/data/requirement_set/90_coloreg.yaml,sha256=XoYElKXD5f03Hc_RGnsUsU_2hq0LQp6CPzxWhjhy_ug,7415
214
+ endoreg_db/data/requirement_set/_old_,sha256=WsKGasdo3kUVH_gm3ao9pxRbqjgcjH3dGdfeF7mlsmY,4499
215
+ endoreg_db/data/requirement_set/colonoscopy_austria_screening.yaml,sha256=p2KcbSgWJUVh2ZxDt_VD1Z3Tlep2xxgmiTGYvAhT1c4,2057
216
+ endoreg_db/data/requirement_set_type/data.yaml,sha256=g3IuxMZGfvRhtzT5PJguuOEkD6U9uHrcVdUlg2oPS4k,1028
217
+ endoreg_db/data/requirement_type/requirement_types.yaml,sha256=nL2P1ciHqgWM2NnwpwxQgTt7hsMga2neupJDIoi6VCE,4920
218
+ endoreg_db/data/resource/green_endoscopy_dashboard_Resource.yaml,sha256=hjmrFJn_-SbVkX9Nsa3Vo9YItUmje5aVLraKGI8BiZM,288
219
+ endoreg_db/data/risk/bleeding.yaml,sha256=chZuhEGeve36Y6eb-lbikJg_ox-e9m2EPcS-VhOeei4,628
220
+ endoreg_db/data/risk/thrombosis.yaml,sha256=jqyEkVuDuCUr7dLZRhyuHSasYCQ3J3pnBUiTXgCeT0c,900
221
+ endoreg_db/data/risk_type/data.yaml,sha256=jqdXnBJk3NJErmi7B162uPG78qVHd8XJOIhseIeLIpo,593
222
+ endoreg_db/data/shift/endoscopy.yaml,sha256=rRkOgbdzh2DX4Xy22KF1zivcQL8TxKbKQw50WEEUSwM,626
223
+ endoreg_db/data/shift/m2.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
224
+ endoreg_db/data/shift_type/base.yaml,sha256=p_hucxdy7deSgB2MvG81H9kxPWUQziIUvmFcE6Y3LGk,716
225
+ endoreg_db/data/tag/requirement_set_tags.yaml,sha256=sTpDknB2Wr8nm3EgaCSu6AEnf6CGHv6voYCcNjp9HZs,574
226
+ endoreg_db/data/tmp/chronic_kidney_disease.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
227
+ endoreg_db/data/tmp/congestive_heart_failure.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
+ endoreg_db/data/transport_route/green_endoscopy_dashboard_TransportRoute.yaml,sha256=Q7JeSHHYEOtlYsIs44XQEjWd19eZIOdUHkaTLq115ik,349
229
+ endoreg_db/data/unit/concentration.yaml,sha256=h27qz42kh7puJZZigy1yj8QKER4blOwUMJ2Bnl8aSb4,3182
230
+ endoreg_db/data/unit/data.yaml,sha256=t9D7xepTm_7g6q6MUacCigoCLI3_6R6WS3BaowI6tok,393
231
+ endoreg_db/data/unit/length.yaml,sha256=sNbyr1bFd5JzQxSjuDU2HbcCvM4WepxZRxrquENpAAQ,629
232
+ endoreg_db/data/unit/misc.yaml,sha256=_zNA_5AmGaaYpTqFloRob3abPdjiT_GSC-apyhptw1Q,365
233
+ endoreg_db/data/unit/rate.yaml,sha256=PcJiFwPtZVBDwhcfNE_hYjG9cUh6LvHt0ObrX8F7tSM,174
234
+ endoreg_db/data/unit/time.yaml,sha256=vmw45iBKRV5R-PrsbTUgYfgUP_0QLjGlzBioiOFuz4A,845
235
+ endoreg_db/data/unit/volume.yaml,sha256=mkrWixjRJJ0Ob2s9jwU69wW6u4QqdOcw12BWqhf6X3g,685
236
+ endoreg_db/data/unit/weight.yaml,sha256=o1PvHk-4GhKxstCozhDYQNMMYcTXvwmqx4hlQXO2U8o,747
237
+ endoreg_db/data/waste/data.yaml,sha256=A8dUOdzsxhICHViXmbcLtOmtqkBX_CkZaRNo-ePAyEA,245
238
+ endoreg_db/export/frames/export.py,sha256=JlsyQxC4OgvzVaRImv2J4a56MuCA6eB7hEWwWkDEM9Q,92
239
+ endoreg_db/export/frames/export_frames_with_labels.py,sha256=CpIJLE6Ndzu05EP2LuPVbZxkzgDuavUUHQQ1yCpQUIU,20372
240
+ endoreg_db/factories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
241
+ endoreg_db/forms/__init__.py,sha256=6USnn-GBPGwW-dAs29SDY-oJ5dXfMNfgkJu9wvM-FyQ,129
242
+ endoreg_db/forms/examination_form.py,sha256=j58jYkeN0naQSWG1nVtYAS2rHF9vZ4GqiYhIUW0MOzY,390
243
+ endoreg_db/forms/patient_finding_intervention_form.py,sha256=e8s9IZz0BspucU8ZFWh1FFkyDHQnOAE5iFauE_lRaUU,1256
244
+ endoreg_db/forms/patient_form.py,sha256=FZLDNaA-7ZWl5_zgFsF1cL_z2KlF6eoHc6kxxUXDOfc,687
245
+ endoreg_db/forms/unit.py,sha256=7U3Hc897n2ED_tZNF5Y9Fk1B1g5f4P4m1rOwZnqeGew,118
246
+ endoreg_db/forms/questionnaires/__init__.py,sha256=85dCrCMQHfXMIxTaIb8j8XivYNVoVkhQpo8UjsyPNU8,78
247
+ endoreg_db/forms/questionnaires/tto_questionnaire.py,sha256=4QVcMONQIKDYRTbMw-9qSeM8KbiD8vIeBsol7NFyt1Y,928
248
+ endoreg_db/forms/settings/__init__.py,sha256=49K3LnOAekFHM2wHrl7NZ5VaOH5vRGRwJyO_KrF6_Zs,282
249
+ endoreg_db/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
250
+ endoreg_db/helpers/count_db.py,sha256=wKqwRFH4O-ZDZjAKbRO80obPBCcAEeTT1PKdh9H38ls,1913
251
+ endoreg_db/helpers/data_loader.py,sha256=gAnfAemBrJFWtGFbmB-2P9mhuPmLybIp76vyTZDH8W4,6586
252
+ endoreg_db/helpers/default_objects.py,sha256=atR6UHzq51_ja1N5E-5LobJkX1m22KKWPLc8wVYMPKM,14243
253
+ endoreg_db/helpers/download_segmentation_model.py,sha256=YVCRJjTnew0TmCFjc_-HnyAtdQ02TiCjowVVpE7HIT4,1048
254
+ endoreg_db/helpers/interact.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
255
+ endoreg_db/helpers/test_video_helper.py,sha256=m7iz6EE8QKtTuuFIsynd8vWcocm_ryBsh-s4Aqp23TI,4793
256
+ endoreg_db/import_files/__init__.py,sha256=gHhb1GZSax9jkn4VpoVzZz-me1q9t2_dGXuSWhGLIeE,850
257
+ endoreg_db/import_files/import_service.md,sha256=TjFL7XfhryOIJbrbCtQSk8-iMUgR5TqcftxDdimvVmU,1769
258
+ endoreg_db/import_files/report_import_service.py,sha256=8eeJIcDQzBYFHn7zE8g3YDoFp3ye34ToLiovarVo_OY,5621
259
+ endoreg_db/import_files/video_import_service.py,sha256=yNzAvxwslmML4znOS5x5hPa8B1S89ARSSqKDZTNTSvQ,5569
260
+ endoreg_db/import_files/context/__init__.py,sha256=c9zqqqIFqY_FXSAldNtax9Mx7aZ3coRHtpomSkvhWBA,128
261
+ endoreg_db/import_files/context/default_sensitive_meta.py,sha256=DEJkX9wrz4Dij9-wcROMGoI8sgFDO12DogvxSyVzOZw,2850
262
+ endoreg_db/import_files/context/ensure_center.py,sha256=RdhmFw24CGmmjtOcRP6S24t-MDd8HhBv2YpTyipTzJE,587
263
+ endoreg_db/import_files/context/file_lock.py,sha256=V5JDMjEfyV7r0Wv-5WgTSGWYXlchv3GplvISMkBa_Hw,1987
264
+ endoreg_db/import_files/context/import_context.py,sha256=evqh0r6FIcUcXOWFBEqo3hxmoT5mapeKRpbV8gKWVo0,1331
265
+ endoreg_db/import_files/context/validate_directories.py,sha256=Ml72x8boDhq9Qh-6zBwxWWg00vBLcycXekr9cwyOSkU,1345
266
+ endoreg_db/import_files/file_storage/__init__.py,sha256=3YkOalkE6R5Y84dPOzhjJuGqUkFDA9K0iGa_Pqzjp9I,313
267
+ endoreg_db/import_files/file_storage/create_report_file.py,sha256=tPdi2HgCBMCH8y2nG5kHWb2gjIxLXibXXqRcSmbAyVs,3465
268
+ endoreg_db/import_files/file_storage/create_video_file.py,sha256=bGX60Iimoi0wRolpBKGy3kOYv-gq8mnwoZC7Zj6SA4Q,3646
269
+ endoreg_db/import_files/file_storage/sensitive_meta_storage.py,sha256=OprTMSPIFn3IOMj48TnUtNsKktdW2VcEgZNQ88qSQG8,1451
270
+ endoreg_db/import_files/file_storage/state_management.py,sha256=DWWz3PdFhpvmVyYs86qJMJI38THyrbXcy9YfmnVjzvc,15791
271
+ endoreg_db/import_files/file_storage/storage.py,sha256=lM6SuqTu8YOyi0ej4gMKRV8Teg-zB0KIcbJln88w4Kc,1258
272
+ endoreg_db/import_files/processing/__init__.py,sha256=p4R0j6aC28TNFeboyum2R9pF9P98nvMk-CQsy_0yWtA,220
273
+ endoreg_db/import_files/processing/sensitive_meta_adapter.py,sha256=JM_joWh3g8f3Ar2KezSyMMfQZi0QtJK3bOc7QrtXBLc,1754
274
+ endoreg_db/import_files/processing/report_processing/report_anonymization.py,sha256=nFYRQqosKvWEkpMPC_cB4msMNvsQ4dhAyUA9nGqK71Q,3449
275
+ endoreg_db/import_files/processing/video_processing/video_anonymization.py,sha256=zkcW3zUV-0lp8IFRAzqips1k0sBJvPS9YjP8uNjdHa4,4026
276
+ endoreg_db/import_files/pseudonymization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
277
+ endoreg_db/import_files/pseudonymization/fake.py,sha256=UAObfuNT4YrUHZX8E53RLp7D3X3bpDs6f0UdoKh-8gE,1347
278
+ endoreg_db/import_files/pseudonymization/k_anonymity.py,sha256=NxHlvbwUYtmk_qs9d4vlcO6T5RKtC3FdJtvSs2FMKFQ,5533
279
+ endoreg_db/import_files/pseudonymization/k_pseudonymity.py,sha256=pKqWlti0tA6wUCyN1vLU4wq_snlv0O34ACaMvcWiO7Q,4584
280
+ endoreg_db/import_files/pseudonymization/pseudonymize.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
281
+ endoreg_db/management/__init__.py,sha256=1qi5wv2KVLIKoGVzItrB78D8xrbf3ruwO3_kGZ7bLh4,30
282
+ endoreg_db/management/commands/__init__.py,sha256=1pri3qN5PLFIRSwxLkZJ7Bc4W4UyiKBZCcJjqy1IUr0,22
283
+ endoreg_db/management/commands/anonymize_video.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
284
+ endoreg_db/management/commands/check_auth.py,sha256=Yd3Mrt2dERN0mcLNGctO1d-uUeBbu-A1th7zwiAIX7k,5353
285
+ endoreg_db/management/commands/create_model_meta_from_huggingface.py,sha256=LtzFdNuE2JINLGHlwTnGZEgesVtuDZezVVacUqZ7ynI,6309
286
+ endoreg_db/management/commands/create_multilabel_model_meta.py,sha256=PC0o-gJfVmYU3xKy5mSAOkNDynXlT6YA_dEfi-_u_Kc,15339
287
+ endoreg_db/management/commands/export_frame_annot.py,sha256=V1A14FpAFt_26v-MyJE7OfgDgFCW3MVNBmVfA5vRWMg,6273
288
+ endoreg_db/management/commands/fix_missing_patient_data.py,sha256=7Lt2u5eWj6Dld3afJzP2DCdgLwIsQpHhHwuW463D8mg,8171
289
+ endoreg_db/management/commands/fix_video_paths.py,sha256=hBGi4wUJQvMYGqIZbOCLJ1o4Z1rPRSM6aT9wnHkUNH8,7423
290
+ endoreg_db/management/commands/import_report.py,sha256=a6MapJRvFrhGhqIQEHWCsyNKZtrKIPVvmg0sX32APM8,14426
291
+ endoreg_db/management/commands/list_routes.py,sha256=8RdW0CLimoSxV1Iy3x74PN2eRY1AH4XChhoR2gYPya0,624
292
+ endoreg_db/management/commands/load_ai_model_data.py,sha256=608o_Nt-fCKBPOSB5gE0mH_bOxn4m0oZoFJZwzGRK-o,2876
293
+ endoreg_db/management/commands/load_ai_model_label_data.py,sha256=kDjD46wAy3zvva-mKeLIUf0EieSfs329wy_33XEa2rY,2029
294
+ endoreg_db/management/commands/load_base_db_data.py,sha256=PzVrHQpfm5Fs-nEd1sXNpe-UcOGFODQlXCz_-jVTows,2874
295
+ endoreg_db/management/commands/load_center_data.py,sha256=l4FmyduYmo23PXKDJ7GE2SY8IIpyrPjXlotNHzv0Kdg,2402
296
+ endoreg_db/management/commands/load_contraindication_data.py,sha256=TBmeT4hUTEwx3ArzRl3eik6JM6pvj4j_dGH4Y_BTTE0,1167
297
+ endoreg_db/management/commands/load_disease_classification_choices_data.py,sha256=ZsrLWKbb-M1rQggsGG3EeAwKlc7X7V54afrBx-b4hgY,1271
298
+ endoreg_db/management/commands/load_disease_classification_data.py,sha256=ap41QQsDzd7XON-8y33OAdzo4gZoPbuCsvMTD_YkcYk,1215
299
+ endoreg_db/management/commands/load_disease_data.py,sha256=ymCiRh3HWNcYkc5PcBDG2GFQcNMtAtNjpRHxKtwA7zk,1985
300
+ endoreg_db/management/commands/load_distribution_data.py,sha256=7c9atTcslDmqp3Vlx-IAJvj0xI1K8kW9A4iDzQB0f4A,2081
301
+ endoreg_db/management/commands/load_endoscope_data.py,sha256=m9YRdhYfObPiHhDWDlqkg3_QhAudIPfaajsz9w-w-Tg,1814
302
+ endoreg_db/management/commands/load_event_data.py,sha256=J4tzN7v2v0LU3qxjMIyNMYqYxKDFpP0TuOtsnw6oOWw,1134
303
+ endoreg_db/management/commands/load_examination_data.py,sha256=Gjn9sWsjpV38fpp2ITLTObUUn3kRZgc1SF-EVGXTGak,2137
304
+ endoreg_db/management/commands/load_examination_indication_data.py,sha256=7I25p1_UEeePTVuJYnU_6xgNbP3vXSKPp1uxB9yT7Lk,2904
305
+ endoreg_db/management/commands/load_finding_data.py,sha256=9nmWQAYNf8z-jajVpanXkfb0DSh2vla4kPexzPwo6Hg,3411
306
+ endoreg_db/management/commands/load_gender_data.py,sha256=Iav0M29psScD3VLs7rP41PbeJ-fj5FvLh6a5IOr4O1A,1027
307
+ endoreg_db/management/commands/load_green_endoscopy_wuerzburg_data.py,sha256=i3wjpKZMgPhdUPNJ9mUZoxhiaUB_kSqWEf3WqxXDUe0,4380
308
+ endoreg_db/management/commands/load_information_source.py,sha256=dgKeTAHhwx4g6MxHR5NV-yyNF2D7-t-VDRSCeNp3Yu8,1640
309
+ endoreg_db/management/commands/load_lab_value_data.py,sha256=ZxRUybLLexw6SBnwn1DZb2-WVKzGjifSsY3Hbd9eSNY,1655
310
+ endoreg_db/management/commands/load_legacy_data.py,sha256=xNAB7Kmll_eHv_PTg8kfbLngUlN70rThqnuq-Niuj-w,11643
311
+ endoreg_db/management/commands/load_medication_data.py,sha256=jAQxysM8sKhQmGCVEP7VGm4vrvaxkemeEGQgqGhJpiU,3308
312
+ endoreg_db/management/commands/load_name_data.py,sha256=nl6Uwtotr8JddWjw6KzMBnSzcyKEkff8dmnWIj-pTDE,1295
313
+ endoreg_db/management/commands/load_organ_data.py,sha256=Ybrbo3CBh_AMWdR9sooqdqaneH6SdNgBjtXsssNvZSQ,1127
314
+ endoreg_db/management/commands/load_pdf_type_data.py,sha256=vyZJ3X0YHpI00Sp--1AecR5q21jYNzVYFgZmIi3LAmM,1724
315
+ endoreg_db/management/commands/load_profession_data.py,sha256=qW2MLq6yfARrho_c6JgwwOFwpwQVcmjckf0XvripE1g,1199
316
+ endoreg_db/management/commands/load_qualification_data.py,sha256=3E7B2gkDlLWlqYvH37MqbVDQRtC2g7dT11WNQB5qmOU,1922
317
+ endoreg_db/management/commands/load_report_reader_flag_data.py,sha256=m4nPHz0kDk7I65a6TDnBW2Y3b6Dl7p-Cc4ENF9F4xrc,1227
318
+ endoreg_db/management/commands/load_requirement_data.py,sha256=FANpKwlDN8CVDH8MeNYu5hWpPuqvfpkSY6DwkKlczvI,6898
319
+ endoreg_db/management/commands/load_requirement_set_tags.py,sha256=zi8GN-zz8lzfzHv5u9u2D6a6HSprZbBZ_vcwAGPuNhI,3318
320
+ endoreg_db/management/commands/load_risk_data.py,sha256=Gy45jchE0DATm_EiQbUdCOR1FKKfs4DbTVwvJ2xKffQ,2045
321
+ endoreg_db/management/commands/load_shift_data.py,sha256=1lda_LKzDMmf7o6JnyYf3sOWSMWrgn5-Drfa9uUnzN4,1951
322
+ endoreg_db/management/commands/load_tag_data.py,sha256=StnPy1oxFXVumckGyUVogZ_eLzdM29_lUvqh2UxD7w0,1877
323
+ endoreg_db/management/commands/load_unit_data.py,sha256=QFSzD4Teegb9zHBAGMVtIPgfjIr3zS5dULz9cAwrtpM,1175
324
+ endoreg_db/management/commands/load_user_groups.py,sha256=1rxXk5oCL3XU9ljUZfA2oPBxIEYfIEzHv3qlN5xB9QE,931
325
+ endoreg_db/management/commands/model_input.py,sha256=RS4Yj5xeJjGYkfUi0AE1eGi-2ouRrm2dLe9NP7EPd7I,5646
326
+ endoreg_db/management/commands/register_ai_model.py,sha256=JtTZmSCbVwxy4jsUk0jls6J71cIj3i-wNetjLzxi2sY,2608
327
+ endoreg_db/management/commands/setup_endoreg_db.py,sha256=D3gxUz3z049oBcLF30hCljrMpyNjsv289BS3Zg5E0lc,19622
328
+ endoreg_db/management/commands/start_filewatcher.py,sha256=Qd2s1kRHvLSiO3CoDjYgD2yb16zCPjtDfQd8e63VXXQ,4090
329
+ endoreg_db/management/commands/storage_management.py,sha256=wP02CyKExqnQBFdk-oXAsKpmvgPQ2JtuR8elSekg2Lc,22496
330
+ endoreg_db/management/commands/summarize_db_content.py,sha256=vKu1ROxpsmiUgum2snZEhTLW1VRyAdaEvaQ3MbvUM_A,12833
331
+ endoreg_db/management/commands/train_image_multilabel_model.py,sha256=dzmkZLfqKfskyc2skSwNOqLviJVOf9wnCpiY4reQDuY,5788
332
+ endoreg_db/management/commands/validate_video_files.py,sha256=2Nse4TwLmcCgnSnRcUX3NcyYereZKA8R4msfjFRAT9k,6842
333
+ endoreg_db/management/commands/video_validation.py,sha256=4MBDhpY9ro6XN1sz4QsNnE8ppxzJ9gkiZZCgoAB7FJI,650
334
+ endoreg_db/mermaid/Overall_flow_patient_finding_intervention.md,sha256=qNOXAn04flFW1m3a4hN3Bb1Vd7121Wo-sZ6MeaR0Lqo,399
335
+ endoreg_db/mermaid/anonymized_image_annotation.md,sha256=F0MIJB2Jsj38M1bu8-0d8wWPpb53rrp28RCGTsH3VJ4,744
336
+ endoreg_db/mermaid/binary_classification_annotation.md,sha256=lpM_VwcUqD37qcwGJfWwkHPkF9lWAEhpOurlrsSM97Q,988
337
+ endoreg_db/mermaid/classification.md,sha256=4YknYSEuZV7Pbx7wGaOgn980jbY-YNq7NKCFW1vDZ_o,372
338
+ endoreg_db/mermaid/examination.md,sha256=EP5CVacQfPsItUuDhLL08nrgbf9oemKuQyjreBZv9hw,310
339
+ endoreg_db/mermaid/findings.md,sha256=ThqXTDBR3ehyiz73AaNNLscgq5p-vx5AwLelovMR68A,307
340
+ endoreg_db/mermaid/image_classification.md,sha256=quli9OUKwo9y_NbdPmPlID7qmS8R0ZeiAGTfhNMiahU,1096
341
+ endoreg_db/mermaid/interventions.md,sha256=jWFB5fHr-bbOplk91VdPrSrS24EUZQKl8gQi_-II6hw,329
342
+ endoreg_db/mermaid/morphology.md,sha256=9_--hWVwXW1UB1E9od9yddyUFJonm3eCGr986nwpQpY,360
343
+ endoreg_db/mermaid/patient_creation.md,sha256=P0U50Pejxn_AATzHTJ3U9iydoEVSnpRjGEUOTRNJrGs,384
344
+ endoreg_db/mermaid/video_segmentation_annotation.md,sha256=oouo5htDabP8m-W86C6aWXyIxi1A7zAoPqa3o5xr354,536
345
+ endoreg_db/migrations/0001_initial.py,sha256=KoYg3Bp2zVM01O3a902lswNsiU5DcnwYMExFZ2GJ6rg,126534
346
+ endoreg_db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
347
+ endoreg_db/models/__init__.py,sha256=gApMechLGnwOrL9uB727mjbnnW882GIzd-WQVyQYsCU,6675
348
+ endoreg_db/models/operation_log.py,sha256=eA67RmhoKK4dfKk33oJUxuTPQ33le3hztM0tXqkE7T8,1841
349
+ endoreg_db/models/upload_job.py,sha256=jWG-FuKp9yllUKrw86C-jPQyhaaLxib-V-i5TTWvKvw,3089
350
+ endoreg_db/models/utils.py,sha256=clFmveZ_zVxcOjViuMxG3IMMCv_irI7emCpAnhisfhQ,4310
351
+ endoreg_db/models/administration/__init__.py,sha256=BSWkeFPLgtNhUw428Qr5jesv_UlEuoZuPCma3GYmi8c,1443
352
+ endoreg_db/models/administration/ai/__init__.py,sha256=AYnrzvWkLYsySnlryfZ35_wgJ5egIdIpgmxW3DzO4OY,168
353
+ endoreg_db/models/administration/ai/active_model.py,sha256=nyrWiqnLsSiRb13KVLMlsBPlrgOQVF0VyklpfUeHI9E,1423
354
+ endoreg_db/models/administration/ai/ai_model.py,sha256=4nsZGMJ60mcXdJiirBtiG9fxKapSbxFMHV0t0DndJdI,6189
355
+ endoreg_db/models/administration/ai/model_type.py,sha256=zWwZB5u0ykNjL1oNGkWUlfImykfi4Lg4flQwNA5p454,1020
356
+ endoreg_db/models/administration/case/__init__.py,sha256=kW78tWrVItXRiT0R7O8Y5TtRGjyZHVDACPddPrh8rzQ,50
357
+ endoreg_db/models/administration/case/case.py,sha256=fDrgd3AFe1hcHBfRP4PvIO2BI5li4i00rIBr7Oa4zFw,3876
358
+ endoreg_db/models/administration/case/case_template/__init__.py,sha256=q2L2GY4ICLrMWxOf1D0-OzRcxSBce49ZhPmfJLhVwSU,102
359
+ endoreg_db/models/administration/case/case_template/case_template.py,sha256=-xxGHkYxxD85RNWiSv6uCC_LJ23oJ2MMFpxgfyyZbpk,82
360
+ endoreg_db/models/administration/case/case_template/case_template_rule.py,sha256=SuIGUeuk9FUFwm2-3Ks5hu7IwNZWuBEYv2VuCr-s_9o,87
361
+ endoreg_db/models/administration/case/case_template/case_template_rule_value.py,sha256=aHtbK_3X_8AbOxujERZPGAgRhWa3AwjjwAWMBb5Wqdk,93
362
+ endoreg_db/models/administration/case/case_template/case_template_type.py,sha256=myF4XwtS-eovCTOxlB8JOMJ5MwkEnPCYgoCiODc89iY,85
363
+ endoreg_db/models/administration/center/__init__.py,sha256=HxmYb7itij_UK_O9_p9OMQL41ddfA5e4np_9J8a994k,299
364
+ endoreg_db/models/administration/center/center.py,sha256=ZCaziNjCPmI9jYT2WFpVFnnrXAVsCNC6IGRADhY6xpI,2515
365
+ endoreg_db/models/administration/center/center_product.py,sha256=wlA_IQLaWMMp6pb3T3ZgzDlsrKSRZoVQ3cnEvshoUME,1923
366
+ endoreg_db/models/administration/center/center_resource.py,sha256=ZvP6rR2lS8mKkskVgJPetxzE_Eog1TTKgzWYCCHnyKA,2375
367
+ endoreg_db/models/administration/center/center_shift.py,sha256=PDeoGnk0xDmcrLyKaWugUnWgrESWKXE34JM7lXuStFU,2554
368
+ endoreg_db/models/administration/center/center_waste.py,sha256=90x4z5CjhmemUUd_XffcSPVT434Id_GswnrTSqWqcxk,1389
369
+ endoreg_db/models/administration/person/__init__.py,sha256=bQGDmOsisFzt2prX45GzpGd8he5AzKMYbdRITuIJ9L4,581
370
+ endoreg_db/models/administration/person/person.py,sha256=HED8SUxwSYeFI16i2IVWFNuejafOMUOMXTuarx8Cb9A,1223
371
+ endoreg_db/models/administration/person/employee/__init__.py,sha256=NumqBoyp2gt60pUB5_Ozj923HILCPS0Sul4jMSr1-e0,129
372
+ endoreg_db/models/administration/person/employee/employee.py,sha256=l5W43nDzNWHZq1wwTu9hcb1JW4nccc_ThnedmVSByEQ,1098
373
+ endoreg_db/models/administration/person/employee/employee_qualification.py,sha256=vTdhhosmfiULHbApfHHjHioJnmuMbQMW8kycZVkPOk0,1391
374
+ endoreg_db/models/administration/person/employee/employee_type.py,sha256=xcTFf_89S7O7re-f3F35_Jyz-j0UVl9QKy-w011MM64,1256
375
+ endoreg_db/models/administration/person/examiner/__init__.py,sha256=88DCGYpZTSQrmnrcxxLLy7vVtuL1ASdryZjeFPsmD_g,56
376
+ endoreg_db/models/administration/person/examiner/examiner.py,sha256=Mac7dxgWZ85lkIqM9WN9tuaB4q2VU-o6Yzg1LfanhIo,1776
377
+ endoreg_db/models/administration/person/names/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
378
+ endoreg_db/models/administration/person/names/first_name.py,sha256=lxGVA-cdda4sXBy9hxGhVINCKnXWUoXd0H4U_VViGLU,452
379
+ endoreg_db/models/administration/person/names/last_name.py,sha256=8QDU5mCO_kLxTUlgf_qgFOk6TWqc7H3653LFZOrCY5U,426
380
+ endoreg_db/models/administration/person/patient/__init__.py,sha256=5sRdXHpEFN2SEdANW_FZz0KWu2aEtSMJ9Ff9CB_Bmnk,135
381
+ endoreg_db/models/administration/person/patient/patient.py,sha256=33V-Frg25DTIJ2AhjQ_ACYKfyBvc0aU3918fxWwlRzo,17463
382
+ endoreg_db/models/administration/person/patient/patient_external_id.py,sha256=br24NoXPDWy5LF2FGOZ3gRm1MFxT78J9RuW-hDTH-bg,912
383
+ endoreg_db/models/administration/person/profession/__init__.py,sha256=wxqhS38cCLJq3U2JY3_gmseiMHoKeF9pbJAO18nyapM,684
384
+ endoreg_db/models/administration/person/user/__init__.py,sha256=vUgDOU5hTkszcLMBPWBGF_feLdoCHgVW6HW4y232kIs,89
385
+ endoreg_db/models/administration/person/user/portal_user_information.py,sha256=O4JTHVPE93UWGP2F7FihfLE3F3i7HDl5qGU5Nm1X-Xg,1071
386
+ endoreg_db/models/administration/product/__init__.py,sha256=Qzsv5nE5-p30KOu6MjY1LLWnhX8qSiqgMI4PlWU2HVY,356
387
+ endoreg_db/models/administration/product/product.py,sha256=6TefIgFYAOCTJGYdZJq94tOPuHp3oe_Swm8TzTErBl0,4102
388
+ endoreg_db/models/administration/product/product_group.py,sha256=JICmwxbmWgleV6F936HjT9YZGDgFWhzEffi-WtGPdL0,973
389
+ endoreg_db/models/administration/product/product_material.py,sha256=1jt4AaVcGEOpfzBuZge7RDzMIkmx1hSsjANxgGNPjRc,2020
390
+ endoreg_db/models/administration/product/product_weight.py,sha256=orAoQAKQgt8GXB2Ci3oF-Ozj8YIKthBASAU_-1qhHD4,1615
391
+ endoreg_db/models/administration/product/reference_product.py,sha256=NXGCv5WKPIpeGo4V4L5lSNADPS3myMBQoAnl2om_Azw,5204
392
+ endoreg_db/models/administration/qualification/__init__.py,sha256=HQq1CKpgFLT_6MhkpuD4SinIw-pAD39VGVmA3PxXaiw,152
393
+ endoreg_db/models/administration/qualification/qualification.py,sha256=MyhzdHjRFkgYA4wJsOKaqwm69Ui0OKvL-5DSJkTE34k,1125
394
+ endoreg_db/models/administration/qualification/qualification_type.py,sha256=daQ6qLJA0fflBsOXq-IxlXXQZTANd4cZmLxe8820iC4,986
395
+ endoreg_db/models/administration/shift/__init__.py,sha256=-YDYCWFwpEJllbvQ18i2rIkf4KNRkSXlUfNiZ3EAeNM,167
396
+ endoreg_db/models/administration/shift/scheduled_days.py,sha256=h5cUQY4g6Wn-R5KBFsC9ZKi4hPkYLeb6WtNYbMkTJV0,1579
397
+ endoreg_db/models/administration/shift/shift.py,sha256=Y_OPbbVscPXj6y30QNSHSFQ29EQZjlvj3YNv2Kl8dWg,1406
398
+ endoreg_db/models/administration/shift/shift_type.py,sha256=rRyW-Td1fkZsoDCtUPILYVAsL5FOE-eUdw0GS0tzS64,3289
399
+ endoreg_db/models/aidataset/__init__.py,sha256=spL5JwlqQVeYhetWGJqNU5ddhCta3dy8dC3LPuk-Ots,65
400
+ endoreg_db/models/aidataset/aidataset.py,sha256=5m0R0-Ad8Vs9PIJefAU_ApJLkcRc-PatDWkCOl-bgU0,6950
401
+ endoreg_db/models/label/__init__.py,sha256=L2BGUyM7QOzX3YIbeHQim_ldtgvrSgJpP11BI6qcNrM,615
402
+ endoreg_db/models/label/label.py,sha256=jNc7GaL2hMPLYsUPamUZi97K1HrgIGxyEljD0mkSHqI,2550
403
+ endoreg_db/models/label/label_set.py,sha256=_sJuUjGPGO3g4At1Gy98S8d_G4weopXvDJ7rTwJDKEU,1862
404
+ endoreg_db/models/label/label_type.py,sha256=80RlxsKeaUKuTaBXz0h-Wejf4g0L9ZzuwxzVmDeSJec,663
405
+ endoreg_db/models/label/video_segmentation_label.py,sha256=pykx8zcayyo-uWwOVyX10tMYX_pEuTZFzd4DhVAxPuQ,1034
406
+ endoreg_db/models/label/video_segmentation_labelset.py,sha256=D8s0uWc-wcdOrzE3X0ljVgauFj2sI9d617EM9jUwbCc,787
407
+ endoreg_db/models/label/annotation/__init__.py,sha256=6igZTy9Iqw-GRf8yB82zoFOsSHgqhbN0bFZ9se6Njgs,268
408
+ endoreg_db/models/label/annotation/image_classification.py,sha256=fBxXssr-8OL0oUhmwHV-c9DK2yUI7V_59Hs0ajtC6-k,3132
409
+ endoreg_db/models/label/annotation/video_segmentation_annotation.py,sha256=xwsUJC-cd6gfD4y4OVRh3WFh4p7HsVZnDBHXNVrYops,1800
410
+ endoreg_db/models/label/label_video_segment/__init__.py,sha256=MLFkJvmLm8IZccn2IOMg9C9kZyKUviZtAZpbGdev_nw,84
411
+ endoreg_db/models/label/label_video_segment/_create_from_video.py,sha256=ocZu15ZiN6dtFyrgP3N5RXuQEjFl5lsth2Gc98_kqm4,1223
412
+ endoreg_db/models/label/label_video_segment/label_video_segment.py,sha256=XlmbS1acQPpNUuJHNGQA9ZvIQRNst1-MLBVDCruR-UQ,23452
413
+ endoreg_db/models/media/__init__.py,sha256=iw6LTRNr0wvl4q-ko1uPQEYFAC5M1wN0UN7fHDAS2pc,494
414
+ endoreg_db/models/media/frame/__init__.py,sha256=_DkKKh-pdWBpxYIYdwHvxUkEj2YtgNIFaSN_TxLKalI,46
415
+ endoreg_db/models/media/frame/frame.py,sha256=RkXPVnOxSHQZCy4fms5t_r15tqzIMW1FLtbQWgLJTrc,4759
416
+ endoreg_db/models/media/pdf/__init__.py,sha256=LXrTkw8SG3Kk3P1P6te5Au0c_rbrE3N8X0M2jf2g-zc,345
417
+ endoreg_db/models/media/pdf/raw_pdf.py,sha256=Sc7V2Re3ef2BUOwIiJ3CEXlXphx24AdF0m1ON2PDvUI,29750
418
+ endoreg_db/models/media/pdf/report_file.py,sha256=T5xNDb5JGPDUbZGAS33G9JY9fzwPi7H2ipyGfzEwK68,4445
419
+ endoreg_db/models/media/pdf/report_reader/__init__.py,sha256=ruG41X9RcWNuG7ZRwK1fCBOnpiTMYBI9rWu_iAP7FTk,167
420
+ endoreg_db/models/media/pdf/report_reader/report_reader_config.py,sha256=CIvRYSSBhIltMqCgtGkhtORYX8VnR6hf2F1v2zISJx4,3403
421
+ endoreg_db/models/media/pdf/report_reader/report_reader_flag.py,sha256=QF5Ri2_nW1A_PFSvi2LUKWbSqOg15CZW1E2xZIvqOk0,1290
422
+ endoreg_db/models/media/video/__init__.py,sha256=GJ5wdcvmPdptbSCfYuJeD_UegIdm3kOxjcLLBhKht-s,212
423
+ endoreg_db/models/media/video/create_from_file.py,sha256=kdFEogVfj9AHef_GJQGUFZQsEM1hIuxOMhaXvD-mVn0,14909
424
+ endoreg_db/models/media/video/pipe_1.py,sha256=jkPH-liYObQmF5bdY_Un1xfcUZOIbuJaUY8iX0sr2Ew,10563
425
+ endoreg_db/models/media/video/pipe_2.py,sha256=tfN6CzD8qOVts49--gY5ARLlOD1-3uQCXWkakXGxK50,5418
426
+ endoreg_db/models/media/video/video_file.py,sha256=Fe3SdZG10xvLmxwuGjxwgkIMgJ1bE0jbm26DYv_6d5A,32820
427
+ endoreg_db/models/media/video/video_file_ai.py,sha256=v_0nomzBH8HSg8ShfQ7--gZKLEfsnZJJi19BJUCwV1Q,28527
428
+ endoreg_db/models/media/video/video_file_anonymize.py,sha256=B03tlDLfSWEQ1LJmZL0CasTUSepO8hvvc0jaWos5B4I,18650
429
+ endoreg_db/models/media/video/video_file_io.py,sha256=UY_ux9F6JyB2Mdc7LFScUY8aM5abrUIRImfxgLsWDRQ,9734
430
+ endoreg_db/models/media/video/video_file_segments.py,sha256=MPFIGhc8QGNQ34VamQkp2EOvTrKFOaU5ZnYawJV0lOg,10622
431
+ endoreg_db/models/media/video/video_metadata.py,sha256=z6wb6SE27whNEjCnemYSCBFwXYVcI5Hz9b_jDjb3iv4,1905
432
+ endoreg_db/models/media/video/video_processing.py,sha256=qvWayQBlkORTpOsgGCCGXxol4ZKSJtk86igbV44TZjw,5892
433
+ endoreg_db/models/media/video/video_file_frames/__init__.py,sha256=H262Lbkau6atEdM9kaabvhuu0ato63KNWMz1L5yFXpE,2062
434
+ endoreg_db/models/media/video/video_file_frames/_bulk_create_frames.py,sha256=MohAap2A2I7a4L4b3GmD6IHZQC_dR7-4V2QuaFATJr0,688
435
+ endoreg_db/models/media/video/video_file_frames/_create_frame_object.py,sha256=uinp6DvG3WUOykldRumzaBzSIVClg2wuOddX5vMK3FA,569
436
+ endoreg_db/models/media/video/video_file_frames/_delete_frames.py,sha256=mkim1naee6yaFO5PjHD5HDxXK8WkcQKxZMKz3KEskHs,4441
437
+ endoreg_db/models/media/video/video_file_frames/_extract_frames.py,sha256=fGUjqhKVABHWE7XigT6wltb5gYhviBILLbgzJpUTmPQ,9549
438
+ endoreg_db/models/media/video/video_file_frames/_get_frame.py,sha256=6DjrhF4HFEY28FCwfzdNgayw2hk7S5xJdi0YmWBKQxQ,1142
439
+ endoreg_db/models/media/video/video_file_frames/_get_frame_number.py,sha256=OvUp2yAQeHXgBIJFECc85IGV4LDaihW9cIIkchgkR6g,344
440
+ endoreg_db/models/media/video/video_file_frames/_get_frame_path.py,sha256=WT8NmsceRgZ-NA7KUdTtc2-5K_0elRUVM6zeGvLN2yw,716
441
+ endoreg_db/models/media/video/video_file_frames/_get_frame_paths.py,sha256=3klxI0thSVfBlRrQrKiVdyHQyZhge8XDK_X1RBLIh6o,1200
442
+ endoreg_db/models/media/video/video_file_frames/_get_frame_range.py,sha256=-uagwh7bkpVBirM6Z_2Ku388xGY4VaTiSW1f2feYa0A,1389
443
+ endoreg_db/models/media/video/video_file_frames/_get_frames.py,sha256=auuDzpBhlXWm-DxfGM3I9-euLKRNdX4kakqo228v9Rk,983
444
+ endoreg_db/models/media/video/video_file_frames/_initialize_frames.py,sha256=OEe8O33iVNZOc92MyLWxKp2LGspieokBFViQ5FHypFs,8161
445
+ endoreg_db/models/media/video/video_file_frames/_manage_frame_range.py,sha256=FN-K8ChKy3up17rZhqgXYtNXS6aeWgQw8hf0DXkRdto,7259
446
+ endoreg_db/models/media/video/video_file_frames/_mark_frames_extracted_status.py,sha256=GouMh9TdxDsnXtwamfFu8cmela2qYtwvDxIbRF7WKcg,4140
447
+ endoreg_db/models/media/video/video_file_meta/__init__.py,sha256=fx45NqCmxE17OS574i_9PDjcVMj5imfQbuZnRetRyvM,645
448
+ endoreg_db/models/media/video/video_file_meta/get_crop_template.py,sha256=TcGNUGaQbkRvvZudw3aWK6l17ONBeZ5JWrPWd_wPKGk,1804
449
+ endoreg_db/models/media/video/video_file_meta/get_endo_roi.py,sha256=tG4j5MhzCUzcsAqnbevsFe4VoOBoJK60Itb0_Qq9I_Q,1997
450
+ endoreg_db/models/media/video/video_file_meta/get_fps.py,sha256=PhIvM947S8E_PI-Ls5IrzCwL_8HlQiqhzj-u5mmkxjw,6798
451
+ endoreg_db/models/media/video/video_file_meta/initialize_video_specs.py,sha256=F1uiK5gR_yzA0tMRfcPNhdyhxLgMXb3-qbcee9FZlFc,7709
452
+ endoreg_db/models/media/video/video_file_meta/text_meta.py,sha256=tNO9er4FbFzHGw3YNOHB2xwp02ujiDfppzjUYo4e17w,7117
453
+ endoreg_db/models/media/video/video_file_meta/video_meta.py,sha256=byor_fImqb09PqW-ys2F87ITBe-gjJaoYiLwrudeYcY,4315
454
+ endoreg_db/models/medical/__init__.py,sha256=V-7gYl3QKWTYFb5VRKd18kILoaClqkPrTNBMYfUkQcM,2915
455
+ endoreg_db/models/medical/disease.py,sha256=oYbHmqRn4CvLIRIf6JU7RprXV6pqza7MY-JXrIoB89I,5187
456
+ endoreg_db/models/medical/event.py,sha256=2PgpsqPMMIVbAXZd17W3x0-GjP0ViF-cKzA808l9vF4,4465
457
+ endoreg_db/models/medical/contraindication/README.md,sha256=sOx2L1HlZz_S6QvEA-IskuaGsLUBmVWcTzRbdp8q7ZY,28
458
+ endoreg_db/models/medical/contraindication/__init__.py,sha256=dFacO67vdmbPCUNfVa22b9tO5-dvrkslCpYqzHmsbOI,734
459
+ endoreg_db/models/medical/examination/__init__.py,sha256=P5ykDSV29idGlAcGgPXtgVZjMeepbX5a8soYj3yvzy0,627
460
+ endoreg_db/models/medical/examination/examination.py,sha256=63TjUV6BvtM9i3kKD8XCMv0TaP72_PVwjNisan_ZHhs,5328
461
+ endoreg_db/models/medical/examination/examination_indication.py,sha256=TAst9RY62fvZo5AX3o1jEswWzQy9lWGL7brsUFP-kro,7109
462
+ endoreg_db/models/medical/examination/examination_time.py,sha256=VCqecEwN7USNWjDdhPpgIY9z8hN-YfUTAhoGeaKLb14,1959
463
+ endoreg_db/models/medical/examination/examination_time_type.py,sha256=Cqf4cUstXSyqqG8GBETjusad6ghl8k5il27XyZ9dLU4,1226
464
+ endoreg_db/models/medical/examination/examination_type.py,sha256=4SlqinG6QdaNpBcyH-aiizeqVGLzjTObHAWQth__U1Y,1221
465
+ endoreg_db/models/medical/finding/__init__.py,sha256=pg_Ebme_MxUsUOCHlN70qChlwbmX4QBlAASEw_sbyqs,483
466
+ endoreg_db/models/medical/finding/finding.py,sha256=5WXHX0tiKLAv0yOrtrwHQfDK45wI0R63xjTnJvwsxEY,3936
467
+ endoreg_db/models/medical/finding/finding_classification.py,sha256=bIhNQWrhI7pAeunhcXM0z2vKcrBXvWy9Ynj8xMgFpLk,3924
468
+ endoreg_db/models/medical/finding/finding_intervention.py,sha256=iOOajwwLDQBcSIF4QpDnJNUppZ-Ej3nKfc2KhiddlMg,1856
469
+ endoreg_db/models/medical/finding/finding_type.py,sha256=aNiAplRVMt9zXZ5KmLnEA99aeHDWN7tmAIVZRTSzwsY,1015
470
+ endoreg_db/models/medical/hardware/__init__.py,sha256=_SX5Hv5Zips9tNvmt-a4AuSh1tm9rOqvGE1iP3v2BMs,179
471
+ endoreg_db/models/medical/hardware/endoscope.py,sha256=NFJ4IXPfVaLHpoV426b2W3seIlDPlcPvY7KOgTQkqGo,1876
472
+ endoreg_db/models/medical/hardware/endoscopy_processor.py,sha256=mZgwJNbwmQ-aRvOxzIbSklHr_ANJEZLf_plQzS773r0,6624
473
+ endoreg_db/models/medical/laboratory/__init__.py,sha256=o-zMn1lH0oRABA-g03oAnJS0x65Q3j5EqslntEmaSIo,63
474
+ endoreg_db/models/medical/laboratory/lab_value.py,sha256=oR_fEZAfBonUnfZvsZeQfspAJsQUuIzWcr8J6rRYkpc,21644
475
+ endoreg_db/models/medical/medication/__init__.py,sha256=htPN4Tno-FFlWs7W61b9TNfyse7W9r0bTXBaL5Jy__w,777
476
+ endoreg_db/models/medical/medication/medication.py,sha256=o7IgtxKSFimu_H7XwbkFTMo2U5ywVHp_3JT0foiscUM,1358
477
+ endoreg_db/models/medical/medication/medication_indication.py,sha256=1T2oOMkCbbdx2hlDRfKsX6mPvrQokvHeL8LR_gFlF7g,2562
478
+ endoreg_db/models/medical/medication/medication_indication_type.py,sha256=WNIx5SnXDwAQYZu_iewTrUqMAPq8SGS8z41WH2jJU4c,1766
479
+ endoreg_db/models/medical/medication/medication_intake_time.py,sha256=nOqJ2g83hwcf4JL4NXigFgRe6l2vYTVw2pQTwIfXFtc,1699
480
+ endoreg_db/models/medical/medication/medication_schedule.py,sha256=8jlX9IvX3zDUcisNVNzL86uB-qiE8qp4IGJLKaNHQ3c,1834
481
+ endoreg_db/models/medical/organ/__init__.py,sha256=l0taAVfBO62XnEzl3kQCzeTJw9yq9Q65lQS4DL5bbak,992
482
+ endoreg_db/models/medical/patient/__init__.py,sha256=4yGPrMOX6tAtbh8Agf9x44KU2P3fdrXi71WBtqq79ho,1142
483
+ endoreg_db/models/medical/patient/medication_examples.py,sha256=e6_QYPhIxVC2k_vuMfBMq0qAq8FpCWCbBLHIcWcVJis,1585
484
+ endoreg_db/models/medical/patient/patient_disease.py,sha256=9oRR7RIaWu1xqzOKzWOOIFxSSdvA7jVxnzfO2jrQ8Vw,2510
485
+ endoreg_db/models/medical/patient/patient_event.py,sha256=CPEcyUZB6D0wLulSFV-0TM_SZvJFN8NGCHlpGtY4Eu8,2787
486
+ endoreg_db/models/medical/patient/patient_examination.py,sha256=to2X5PlYk6De1qclQXSiWU-eTRl4-TJPeT9VAg9Zrpg,10094
487
+ endoreg_db/models/medical/patient/patient_examination_indication.py,sha256=KFRLPo0bsbnHgjn0ex_c8Cw4fEGZa0rgQqJK8QpL_P8,1707
488
+ endoreg_db/models/medical/patient/patient_finding.py,sha256=MnOD2XSjWqGZwJ5Wh1jTgZWbEXk9Z1rYu1c6fq2NCik,15832
489
+ endoreg_db/models/medical/patient/patient_finding_classification.py,sha256=LjyfzbAjcu5f_Mvh4pdMFUWaT-IPhJ29Pn4n03IvzFM,8895
490
+ endoreg_db/models/medical/patient/patient_finding_intervention.py,sha256=ebfCs-EnE668ZJA7chduKnjZW1yWz65Uay0ApAv8yJA,1178
491
+ endoreg_db/models/medical/patient/patient_lab_sample.py,sha256=QCJzLfrV9tdFD9IrBRHUIChbHHAB-05ee6e3hArt9GE,5513
492
+ endoreg_db/models/medical/patient/patient_lab_value.py,sha256=E0fEnOa9q0w3l1ygRA0ClUta5YeRDwhHFUhWKSfVN0I,8191
493
+ endoreg_db/models/medical/patient/patient_medication.py,sha256=44Rn0SRqJBntYVshttbmi76vpcDjgk-nWafntKGX1wY,3730
494
+ endoreg_db/models/medical/patient/patient_medication_schedule.py,sha256=3iLTxuwwkKnj7dECW9ZiTolPLm9CVv4Ytbsc6t2_zL4,5634
495
+ endoreg_db/models/medical/risk/__init__.py,sha256=KFU25R1fT7POBj6MINYgigYAWYC8NIM-6jx3e_A-bqo,98
496
+ endoreg_db/models/medical/risk/risk.py,sha256=etH8SuB3uVtAJU8CbJSAHyyBKDcC8rNeWRcyqLqzn9c,1901
497
+ endoreg_db/models/medical/risk/risk_type.py,sha256=BAeD5cNVVKJoAX578p_l0ZqRFHagzwZDtBIgZ65bWTg,1332
498
+ endoreg_db/models/metadata/__init__.py,sha256=8I6oLj3YTmeaPGJpL0AWG5gLwp38QzrEggxSkTisv7c,474
499
+ endoreg_db/models/metadata/model_meta.py,sha256=FEvw1nnyEfThxrXR4XVLLHDnaIoC8LOlrGmFSZm9oeE,9271
500
+ endoreg_db/models/metadata/model_meta_logic.py,sha256=XezadmmX3lwTiGenAX0nlinNB4SdZzVvHaOiR6X3Jn8,17061
501
+ endoreg_db/models/metadata/pdf_meta.py,sha256=GRQE6ROQxILMl0uKjEQ2BUv8gIDWjD6z-OE5V_wR6Zk,3331
502
+ endoreg_db/models/metadata/sensitive_meta.py,sha256=heVQRdu0G8YImaM9xAtIe85F9S-A-ePzprHRDxv7fVY,14049
503
+ endoreg_db/models/metadata/sensitive_meta_logic.py,sha256=FNqOYbsXBTXAJ66PRf973aApaT3jcXIhIa1EYoEI4Ck,46825
504
+ endoreg_db/models/metadata/video_meta.py,sha256=b4JimYtUJ0K0e-vo8bnQw_MSn90xFO8SGBcpTs3aRLU,17409
505
+ endoreg_db/models/metadata/video_prediction_logic.py,sha256=4KgOmlVSRvGmhmliHnc7CvBavH-NhVYh_YKtGeB8tgc,8084
506
+ endoreg_db/models/metadata/video_prediction_meta.py,sha256=fMzj4sT1V8q93DP5U3eh1kmwgRP92kO5MnT2vYbneiw,11585
507
+ endoreg_db/models/other/__init__.py,sha256=XwhqFAYVzCVzkvAyGisuWU_JcZijeN1iE1TAAml6iDM,895
508
+ endoreg_db/models/other/gender.py,sha256=kXsR5yYFrxbWj5dnz8va_bpzx49OJpRjj7ymqBEUBfA,717
509
+ endoreg_db/models/other/information_source.py,sha256=gFo12pO2oAeSksmRvaq5x2YOd_PVwrrOHdTkYcokZCM,5799
510
+ endoreg_db/models/other/material.py,sha256=2eDvU8XopPNh6OGqyyOAARXTKV9ZLWdLtGCYSnRdl48,903
511
+ endoreg_db/models/other/resource.py,sha256=SRMItQa_NW_Gy1Gtk3aVAj_zOx-1TS_08IN-N36WHto,552
512
+ endoreg_db/models/other/tag.py,sha256=30UkkPUOhyQHGdOyWGyZbJu7qgu0yFN88egdCgXYAXY,661
513
+ endoreg_db/models/other/transport_route.py,sha256=dQdCwB-ZRi8WplwnYL-Llq6sKSBinQNgxgHXP4-Ixv4,1046
514
+ endoreg_db/models/other/unit.py,sha256=DKw0W0x6pilBZQQ5wBZHfTKaiNsleiDtT7APFIHdfqo,1096
515
+ endoreg_db/models/other/waste.py,sha256=uBpMcJvytiy3eR5UimTYFebOwPr9wFC9KVRgTf4T-LU,764
516
+ endoreg_db/models/other/distribution/__init__.py,sha256=GzM9XWiy8XVACJwcSI6YAxNTBZLZcJoPdlxG1-NwVB0,1428
517
+ endoreg_db/models/other/distribution/base_value_distribution.py,sha256=Jrjc30Tl1JgE6KP9spybDRS5rznT9UT2j766hGmcBaQ,512
518
+ endoreg_db/models/other/distribution/date_value_distribution.py,sha256=JDk9SGcx3ZXlTZHcIHNRj_M4GvPbMKN9qBMxhF_GaFs,5449
519
+ endoreg_db/models/other/distribution/multiple_categorical_value_distribution.py,sha256=Su_gDApWIU6zgcmbro96Ax7xJie1y_ETDvdIFTYlsfE,1876
520
+ endoreg_db/models/other/distribution/numeric_value_distribution.py,sha256=bvXt2BnGsp2fKB_tbF9bx1eUV6RgC3VmzGGvnUGQQm0,8064
521
+ endoreg_db/models/other/distribution/single_categorical_value_distribution.py,sha256=DdkakQA1M1jPRknr1Zkm0cAxvyulF-ZEJKiQ8t2aeeI,734
522
+ endoreg_db/models/other/emission/__init__.py,sha256=rEatk5do3rRRz982qZ_m_06f4oLBSUPeM7Jv2RoiHME,81
523
+ endoreg_db/models/other/emission/emission_factor.py,sha256=Y36kSc9WJukBXadZWBUBX_DvZB9P_ziVdUh-AhrKlCM,3172
524
+ endoreg_db/models/report/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
525
+ endoreg_db/models/report/images.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
526
+ endoreg_db/models/report/report.py,sha256=IK87-ie0CDnApp5xGufpkmUSok0fWcaTBX1iGGpn69o,116
527
+ endoreg_db/models/requirement/__init__.py,sha256=bGZ-G89vM7o7ofFsCsLiHqqEhtjTRnqZMgTyojXiKNU,304
528
+ endoreg_db/models/requirement/requirement.py,sha256=p87RDrjGSfxeae3q_4YrMQCF5xbqJDTUvztQC55jB30,30662
529
+ endoreg_db/models/requirement/requirement_error.py,sha256=CeWoIOsEXirc--JL9clEt4FYDYXWJsIaF-aGpfEtWyE,2414
530
+ endoreg_db/models/requirement/requirement_operator.py,sha256=OEGDEhJ_WpwUOSmPfdmKP_B1Julb5qh_0m0hyLOvCJc,6225
531
+ endoreg_db/models/requirement/requirement_set.py,sha256=NH6Gs-HG19FauZ__w27RUddow56iI2hYtKEFOFD2ZMs,11316
532
+ endoreg_db/models/requirement/requirement_evaluation/__init__.py,sha256=YW0FxwQhqsPqOVw5WUYPF0R0hkynK_K6c0t8nVnTiic,102
533
+ endoreg_db/models/requirement/requirement_evaluation/evaluate_with_dependencies.py,sha256=yKSnAPAVP5W72WE3moxKvsOntNkpu9zgdddzWwCZrDM,9312
534
+ endoreg_db/models/requirement/requirement_evaluation/get_values.py,sha256=TsCdCeEwFsSZdeABa6WkB80eon6Ft8a_8r7OoLbyu_U,1512
535
+ endoreg_db/models/requirement/requirement_evaluation/operator_evaluation_models.py,sha256=KraxocNZaDf7aXaKYFtcMGMDSEJPFp1RxTlOflkLwv8,135
536
+ endoreg_db/models/requirement/requirement_evaluation/requirement_type_parser.py,sha256=1O9YrZTQV23xgpIQn-T0ned3rpavViDlKLA7UCcIBqA,5028
537
+ endoreg_db/models/state/__init__.py,sha256=2dgHa2aSBhvTEab9xspX4EpQITGLV5Q8aXuQYS1UpFk,346
538
+ endoreg_db/models/state/abstract.py,sha256=_mxjpzCCDotOGgxtD2ADeopqQvTgdvA0IIPuQKiilL8,264
539
+ endoreg_db/models/state/anonymization.py,sha256=iaXwUw9BmJr6bliN3hBs9d2ByBuPPWl9bf1Sd2kOMmY,1134
540
+ endoreg_db/models/state/audit_ledger.py,sha256=kNoroV4G6HvHjCGuFSti4TJcddGGEoJSgdPWmWmBUj8,6275
541
+ endoreg_db/models/state/label_video_segment.py,sha256=Hv8cE27yn0GOm0t4PlcamzN47GCbE2LYLLDADr7Vm3A,854
542
+ endoreg_db/models/state/raw_pdf.py,sha256=fWSkCBXEv06SBhMreQ9G_TLXlpIjIheQ1o8qE6I_3jk,8261
543
+ endoreg_db/models/state/sensitive_meta.py,sha256=fzzBehjJ9mcBJHrRM7y1A868qX76UADeh1mc8tLkzL0,1406
544
+ endoreg_db/models/state/video.py,sha256=L0fepsyMvwZNF5gP1X3fN1TuwXXMVu5vwZwZpuFpOdk,9143
545
+ endoreg_db/models/state/processing_history/__init__.py,sha256=W6ShglrUXN_WFDAO1ImshPsRZgqawfuFnPpDr78vYMc,83
546
+ endoreg_db/models/state/processing_history/processing_history.py,sha256=kE8UlkanYDChm9IQWxW6WYjD5kLAWfXRYRxZO-0AY3I,3814
547
+ endoreg_db/queries/__init__.py,sha256=XJj2FWTs8bAt_S3zt0LfzbxzRhj_rimuNPYEGKBaHys,102
548
+ endoreg_db/queries/annotations/__init__.py,sha256=g36eHV7EhAxNbO-V-G6EsuM-6UOCEbBOH0rcm_5_9FE,88
549
+ endoreg_db/queries/annotations/legacy.py,sha256=Qx9ITXxWljyWDUigIzRxpEMkFrP7aZcxpkKb51Mx8ew,6485
550
+ endoreg_db/queries/sanity/__init_.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
551
+ endoreg_db/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
552
+ endoreg_db/schemas/examination_evaluation.py,sha256=9Hxqi7jaNZFvtoVcL6cVV6m0fgDLHVvF-cajUv6646E,861
553
+ endoreg_db/serializers/Frames_NICE_and_PARIS_classifications.py,sha256=ecEztmwQXOXVb-BchwZyo9RTxwCFAwYAkYpwiEqeE50,33005
554
+ endoreg_db/serializers/__init__.py,sha256=WGsp3D5Fy3X3euZEKm5u4SuaYEuuBhkiREtpxS1nJtY,3055
555
+ endoreg_db/serializers/anonymization.py,sha256=7KZ0R9xcZcAvgh78o2ckNGXo0zUYpMoxsDUz_UNl2gE,3043
556
+ endoreg_db/serializers/examination_serializer.py,sha256=7or1040HrPRjz7G75xA2UGOpnZ6VYOVJYh2BN1q3aJE,266
557
+ endoreg_db/serializers/sensitive_meta_serializer.py,sha256=1PY7J3u024DbGer5eM9Fbm_JuHX774Sws_4kHDooSUA,10858
558
+ endoreg_db/serializers/video_examination.py,sha256=jotR5PNTA_xEMpqsqdP3PFaie8TO7SGv2Vp18sj8TlY,6937
559
+ endoreg_db/serializers/administration/__init__.py,sha256=W8mbjjbSQ8PI6Pr-uzRnOBpWpR43YYnPEAQyD6GjNts,316
560
+ endoreg_db/serializers/administration/center.py,sha256=NVdKWCW_4SzyIaOpJNcXDvt_lRPZDnLmOT1hz-ducfw,312
561
+ endoreg_db/serializers/administration/gender.py,sha256=bwu9A9kiLFQhHkCmKSMlGR2g0eJdMFaXXmMBXrka2R4,308
562
+ endoreg_db/serializers/administration/ai/__init__.py,sha256=CHWuGweB8crlQnrS482ezqnVT0GVwClz8kusNyzLLhc,228
563
+ endoreg_db/serializers/administration/ai/active_model.py,sha256=FfVFEIePVEh8Y7DNZzcAxwMN_lHjQFsvAOhsnU80Lc0,271
564
+ endoreg_db/serializers/administration/ai/ai_model.py,sha256=KEZDM2MuH0nJOqqPMBqmMjXUh1TjoPY5Kkmpvx4LSjk,566
565
+ endoreg_db/serializers/administration/ai/model_type.py,sha256=OnMNycnbH93mXwgWmjyLy2GDAfXJl4PobnEPU4pW0XA,263
566
+ endoreg_db/serializers/evaluation/examination_evaluation.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
567
+ endoreg_db/serializers/examination/__init__.py,sha256=iB0ScByTtBGYOGVZaaVma3t6yFqaIK4NKkT4h7_OgSk,242
568
+ endoreg_db/serializers/examination/base.py,sha256=KcGD_pPKPkOySVdTziFqhFrVufC3WynINKW7uxTwdX0,1544
569
+ endoreg_db/serializers/examination/dropdown.py,sha256=DNM5uW0kyR9v3_TUEjDwPjJZubQMYBS3b604dPzs7rw,631
570
+ endoreg_db/serializers/finding/__init__.py,sha256=kRHXGR38NBGAVPyZhrNqtDrlAgFbNI2xRmCPfiG9J28,79
571
+ endoreg_db/serializers/finding/finding.py,sha256=XPAAWAxhTjHqh9-g8jLOQK6d2xSuk5UdTFYfjhBdDEE,2138
572
+ endoreg_db/serializers/finding_classification/__init__.py,sha256=Cekd9u5egzJsq7GwH-RXtZR1np9ixI9LANhWzYd9K2g,217
573
+ endoreg_db/serializers/finding_classification/choice.py,sha256=1sD8LCdbxag29Horp3SJVYk9f-l3rvmG-AnX0BUEiUE,785
574
+ endoreg_db/serializers/finding_classification/classification.py,sha256=hgSFEwDxkJ39232uBwrcv5fETnU0ZffJBc-YsoWoRyY,435
575
+ endoreg_db/serializers/label_video_segment/__init__.py,sha256=2I0JPetMLldTopBuRPtLxG5-V85i6s_ZZJPhQ8Pmllg,307
576
+ endoreg_db/serializers/label_video_segment/image_classification_annotation.py,sha256=xN5AMijbMfUyjWTUbRdduozeNBXKHEisA4bXYE5yOYM,2214
577
+ endoreg_db/serializers/label_video_segment/label_video_segment.py,sha256=qDirsatrnVBo2aXFooGkbyYMdAO_UIu-9ZvQ-GJOhHw,15938
578
+ endoreg_db/serializers/label_video_segment/label/__init__.py,sha256=ZIrcZC-AY2cK4RyXz7-KSfYkmf3XUDsZGGv-4r4jsUY,74
579
+ endoreg_db/serializers/label_video_segment/label/label.py,sha256=0-E-9MbBdLgwsis3CfBUtoM8St-c1lmpQ9BK8LiXtD4,376
580
+ endoreg_db/serializers/meta/__init__.py,sha256=5B5gznfyEvIXWauiqRIm7doUIZVcG2SjV4hF4wHLJX4,419
581
+ endoreg_db/serializers/meta/sensitive_meta_detail.py,sha256=f4kjupWcbC5NJhf9WXPbIY3HUO9ioI03ae3RSG_7FN8,4081
582
+ endoreg_db/serializers/meta/sensitive_meta_update.py,sha256=ttUmQFW67BJ6Us8eoGzrJCda_Mv69-7UFbcbv226Ekw,5620
583
+ endoreg_db/serializers/meta/sensitive_meta_verification.py,sha256=IhGAsim-e4uXkBvHXDfJ_mK_IRy_5IjNFtLFXVxkFUk,2248
584
+ endoreg_db/serializers/meta/video_meta.py,sha256=g96J4va5_oIg7rbbVqcyBsy8imgmbiHjysuEEtas0cA,1284
585
+ endoreg_db/serializers/misc/__init__.py,sha256=ms3zHOahBMudFHX1PHsTJCKL9XXPyxRHYOwwQ_XBybI,491
586
+ endoreg_db/serializers/misc/file_overview.py,sha256=vwYB4SLwLvmfEQZYvpCBq9cWNwyDldTG04GJxxvpkvU,2900
587
+ endoreg_db/serializers/misc/sensitive_patient_data.py,sha256=pAHgBV6FjQ9KlpvthlsMYPgrdnE4YjE9nIdlMXKuDVs,6197
588
+ endoreg_db/serializers/misc/stats.py,sha256=F60Z6mBslkhF5i2u6cnjNl5dbzZJ4oDpA8lY_8Zcy7Q,1235
589
+ endoreg_db/serializers/misc/translatable_field_mix_in.py,sha256=gywhZ5HnxSImDWMlLQemtAnKSiJrI-KJWFnPY7mrkxU,1701
590
+ endoreg_db/serializers/misc/upload_job.py,sha256=xSMgZsmAVqpYUiMrXYvdWRZbijfFb9NtOyOSjjR_fcU,2290
591
+ endoreg_db/serializers/patient/__init__.py,sha256=CFSv04ILbifVIBmeAO7KQQS-bEcetLcF9Q9S2Attst8,187
592
+ endoreg_db/serializers/patient/patient.py,sha256=aQlu9z8EAXBfzcVfOgUL4MQQyruzuj6c-umqixbqKVk,3265
593
+ endoreg_db/serializers/patient/patient_dropdown.py,sha256=wNHpLl3bBIN0f1uVBGA56vA47j2CXR76TF0w6xpZ3uk,1032
594
+ endoreg_db/serializers/patient_examination/__init__.py,sha256=HQpT7yBzC1OfAgZeEmRk02__IknHLxP4vQJbMz7K6mo,122
595
+ endoreg_db/serializers/patient_examination/patient_examination.py,sha256=mC5QL236dvDB1lH3Fo_S1v7wW6QSNY-qlIAa9hiRoEU,5828
596
+ endoreg_db/serializers/patient_finding/__init__.py,sha256=tVy9y2JVP1j_Lh5ZkkhX_PogeLmFsOqnMNGTddEKz2Y,659
597
+ endoreg_db/serializers/patient_finding/patient_finding.py,sha256=OIJNrwwQZodzS-DMx87Ld71crZRyP1hH83i2Dv05Xro,964
598
+ endoreg_db/serializers/patient_finding/patient_finding_classification.py,sha256=P4S2DkaMGH1uCKXdQ4eov8e94B_oQcbrANVLaqu6em8,1645
599
+ endoreg_db/serializers/patient_finding/patient_finding_detail.py,sha256=nLAbWf49Q_ygprNjXjiLeHhX_A8PAmgM8gZbavFtuQg,2118
600
+ endoreg_db/serializers/patient_finding/patient_finding_intervention.py,sha256=V7kKDbM6isMotA4KAEz1GVM4Yskve4lnCzMrKN-UJ-A,928
601
+ endoreg_db/serializers/patient_finding/patient_finding_list.py,sha256=Jvz9qR4CWo5n9IyZkOG3YeMmneeyIUXo7gv8xJviH_A,1275
602
+ endoreg_db/serializers/patient_finding/patient_finding_write.py,sha256=-yyOfQZU8VUOY-lzKEOE0p4PXRCrKH_yGu-u1j6hbNk,5658
603
+ endoreg_db/serializers/pdf/__init__.py,sha256=lyh0itUMfRqNs_fbf9aJsOBYYIqY1hetLypGaKdmfYg,102
604
+ endoreg_db/serializers/pdf/anony_text_validation.py,sha256=xxOHgExcbYOY6nYNpd5MEOzoQDy6xOeKtkwpZSfOdUc,3418
605
+ endoreg_db/serializers/requirements/requirement_schema.py,sha256=ZMX0vNIHj7xRr3RdMnxzGqpcQm1rR1-Xw7iMKqtYXVk,400
606
+ endoreg_db/serializers/requirements/requirement_sets.py,sha256=VX2ajfAqdW2G32LxEReFueEWBngTXY09LOZ6opEmwds,3525
607
+ endoreg_db/serializers/video/__init__.py,sha256=d_UZBkXTVxImBbzEvrDKK8d_YA3WXfqp6At5puKjOrQ,95
608
+ endoreg_db/serializers/video/video_file.py,sha256=hGAHRri9ED6cuSKY9WfDCxeSmYCZrql4BdgiB6M1YJ0,12162
609
+ endoreg_db/serializers/video/video_file_brief.py,sha256=uktUE6MnCfi_uCbHRXQhrd8Hb6FHX3Kcz9giRC9Vvj0,319
610
+ endoreg_db/serializers/video/video_file_detail.py,sha256=K-zzZjuY_H7_1WxqwmxcC57ChPkjUJ7Hm685627lkg8,3688
611
+ endoreg_db/serializers/video/video_file_list.py,sha256=ZTxiRD0GKRlfVBrRFYnhIOYEZqTbi_-A-hatHFdbCV4,3303
612
+ endoreg_db/serializers/video/video_processing_history.py,sha256=YbZglINz0F2adOvyKR2wMKln647T0aoxn0CIyajmFSc,5639
613
+ endoreg_db/services/__init__.py,sha256=XaerOUW62EgRhFySfzCwkaXi5Tuq02FNO2MymPxdQMc,137
614
+ endoreg_db/services/anonymization.py,sha256=8xtsTC6Jpfk59-v9-Kuy4uIRODrLkAUsrLkPhbXfZvQ,10524
615
+ endoreg_db/services/examination_evaluation.py,sha256=x0VE0ai84K-JItyVK3HAi31v_xoG_47zaT_IdboMaoo,6038
616
+ endoreg_db/services/finding_description_service.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
617
+ endoreg_db/services/lookup_service.py,sha256=e_groyWlWKpdtShvdtJe_7tv1GMGT60XHJ3dqXtyDdE,16480
618
+ endoreg_db/services/lookup_store.py,sha256=l3AekFLMqoCIVLuRrh7-LwvpJxxYmCJk5G22Os3f6Qo,8965
619
+ endoreg_db/services/model_meta_from_hf.py,sha256=qsS2pE8_p2aZCAVOxUovxoWdM4Y7KvkTdh_tQGbPmNA,2336
620
+ endoreg_db/services/pdf_import.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
621
+ endoreg_db/services/polling_coordinator.py,sha256=yXJBo56G3KV932fGOANzh0BovweEvuvhvkPWpx1M3ZQ,10710
622
+ endoreg_db/services/pseudonym_service.py,sha256=YX2gDUEsJ3mGToWyokJipVL6K_JVVUDWISLZVEzqarY,3070
623
+ endoreg_db/services/report_import.py,sha256=eZafZjwU4Jhzx6dh1gvS34n7Zw8qbgzcHPT7MV8HmxI,337
624
+ endoreg_db/services/segment_sync.py,sha256=-S7oAzhxz_J0aiUaAlXpSlUumtufcGrg_n-fS27yqlM,6438
625
+ endoreg_db/services/video_import.py,sha256=WlCwR3kw6SctBFarH9DTlFUx-pqCBiaOkoVdWh5xMoA,318
626
+ endoreg_db/templates/timeline.html,sha256=H9VXKOecCzqcWWkpNIZXFI29ztg-oxV5uvxMglgoClk,6167
627
+ endoreg_db/templates/admin/patient_finding_intervention.html,sha256=F3JUKm3HhWIf_xoZZ-SET5d5ZDlm2jMM8g909w1dnYc,10164
628
+ endoreg_db/templates/admin/start_examination.html,sha256=3K4wirul9KNyB5mN9cpfCSCAyAD6ro19GwxFOY5sZ3A,267
629
+ endoreg_db/urls/__init__.py,sha256=zbobDNSvtFFgfiF4OtlSspoP6Chgv72S1pdVzBFzeTE,2122
630
+ endoreg_db/urls/ai.py,sha256=FXZM-bwiJiK7NLcEeBVcSuRibPrf33ytzLzDuU7QmKE,567
631
+ endoreg_db/urls/anonymization.py,sha256=THBK7_OXgtei5urWBuRZBEoBJmgPp10dd3SsDCg9osI,2215
632
+ endoreg_db/urls/auth.py,sha256=Il4d7yPt3aL_iccE7GCed3Pvg4UaXJrPBAP7WWxQuXM,440
633
+ endoreg_db/urls/classification.py,sha256=UIgOBmN61mrMChMQTgoy8F9vJm32W-gXiA0PpuxXD9k,1756
634
+ endoreg_db/urls/examination.py,sha256=VvekVzucCEKXiE5SOCwKAhyWKACre_6DBKrtVx0EANQ,2434
635
+ endoreg_db/urls/media.py,sha256=1TNHEKy1S-g63drdXYj99doz5Xl3tOsJwVQbGaw5joU,10977
636
+ endoreg_db/urls/patient.py,sha256=Msnll5sBSte4KSkzNiLMoeXVUGE_XMp8YTDAWkRj8x8,620
637
+ endoreg_db/urls/requirements.py,sha256=NQfXAnt6R3sL23KyLwaBStjzVgb0lurCnFZ2FZbp7ik,469
638
+ endoreg_db/urls/root_urls.py,sha256=wfBK8f9im6Rle6-GQ_2CihbtR9eYrcAka3rVopwFnTs,1015
639
+ endoreg_db/urls/stats.py,sha256=nVktykqJm4kz-oaDQJcqokAN-Tk9s8EZCgXA9G1qZv4,1907
640
+ endoreg_db/urls/upload.py,sha256=kYTESzjo9gJXiLYrjJ_14pBZW6kgsZGY5WTA_udYIkM,302
641
+ endoreg_db/utils/__init__.py,sha256=neEMMjGBTYV_SGn1c8oHfLAsOB6jHTbzy0qqnAQkH1Q,2245
642
+ endoreg_db/utils/calc_duration_seconds.py,sha256=JQlAD4ClGXAxvl7res5bNtEx7yUI8Bxzwclz_yrRNtE,703
643
+ endoreg_db/utils/check_video_files.py,sha256=soiVssgq5SodrcuJBaGrTmkKM7KZEUuJ-k_x4w2PQ0Q,5987
644
+ endoreg_db/utils/cropping.py,sha256=3apNzKmXs_SnuZ_QXHlOmwHfrGQXTc6pn2gHPkMyv-8,1122
645
+ endoreg_db/utils/dataloader.py,sha256=nwU811WzSJC7_2CHD0UrvBp-EqPq8LDWKXLfyldkXUA,11182
646
+ endoreg_db/utils/dates.py,sha256=UdxHu-gHZ6jZl-jjU7QBv0W3KmFqjVSXAIcf4ykWZvg,1732
647
+ endoreg_db/utils/env.py,sha256=LYB-hQKWCaWqlec92dGDQpjo5XrqeFonPfGF0eBx9Tc,1288
648
+ endoreg_db/utils/extract_specific_frames.py,sha256=-qG5tW6JpVf2KMR8rceFHM5xMchn7eUPnKWjjGQwqjc,2366
649
+ endoreg_db/utils/file_operations.py,sha256=wVpxox3OrHsnLxE6OK_pY02PXt7qWzl8gkliCyC1s-c,1995
650
+ endoreg_db/utils/fix_video_path_direct.py,sha256=KeGSMHBwWHJ-YyDowtJTmQgX1MzyS7-2G7pLzTLmWFY,5700
651
+ endoreg_db/utils/frame_anonymization_utils.py,sha256=qsq9Duhqmq-J6ScNb-PvLsLUHOyRQ1uPxymj2kbhj3w,13008
652
+ endoreg_db/utils/hashs.py,sha256=-byv1hPz70mfcvQ-T9i-efw_T7Ut3iQXrXMuSvaz2Ps,4131
653
+ endoreg_db/utils/mime_types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
654
+ endoreg_db/utils/names.py,sha256=R-e8963IZRHhWPpa8gX2hbCq6o6agn5u3bd48wZ9FoM,2860
655
+ endoreg_db/utils/ocr.py,sha256=NN54yQnf9LeMpLQ2PDnPYhFaRIq9awrAmJxowHWWcgk,7067
656
+ endoreg_db/utils/operation_log.py,sha256=ucS3uZmB8EINr_vlf4YBn35MPjwormKZIqz-LPzZr2c,2389
657
+ endoreg_db/utils/parse_and_generate_yaml.py,sha256=Im7TMk5YAiN4rpYH16Nie0WWTVOGs62WS--iHaIUK4A,1609
658
+ endoreg_db/utils/paths.py,sha256=kHvspYvY1pARPuGTjV0GLhkb4oDsLmkZrNoNc6E98OQ,4963
659
+ endoreg_db/utils/permissions.py,sha256=9a6T-uOTn2k8O1oN8dRROIxt1UX9cyHKClxTAO7JO04,5234
660
+ endoreg_db/utils/requirement_helpers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
661
+ endoreg_db/utils/setup_config.py,sha256=qHH0mS02IpR6UCb-NHwExm3I0LF3EnyjO5rqME1Qz6U,7119
662
+ endoreg_db/utils/storage.py,sha256=ecaHT-NjAdI16FkBgmFOeV7eChPyuxh_Bsx4_kl-sZg,3345
663
+ endoreg_db/utils/translation.py,sha256=KUwlXHE0pvA30KiRPBZSe8oOdKjVZSlZtUH-bHeGeeA,1320
664
+ endoreg_db/utils/uuid.py,sha256=fBpCTvjGP6i0acsDM66p7qKcxSWhTMOsP52l_GabFFU,54
665
+ endoreg_db/utils/validate_endo_roi.py,sha256=rqf2hvNFfZ9TMAU8kpbrvWjV0h-fQwbJl4eb9MTyyjU,1159
666
+ endoreg_db/utils/validate_subcategory_dict.py,sha256=IRJLmna2Z3-2aIOlCX7awLe2yGKXOz0Set2onEiplt8,3384
667
+ endoreg_db/utils/validate_video_detailed.py,sha256=LmpYHPrqwdeQaBxqeLi6j5P6J3Thr0ig2v9Exx84ulI,14520
668
+ endoreg_db/utils/ai/__init__.py,sha256=N906B7R1LfuY79a1kWEnUTcUvYVVioFSgm5OhF6BhFw,243
669
+ endoreg_db/utils/ai/data_loader_for_model_input.py,sha256=NKt8ciJZaMZA3tE-ojL_ODgHANIpivAqvXOcNtryXPQ,9234
670
+ endoreg_db/utils/ai/data_loader_for_model_training.py,sha256=NKt8ciJZaMZA3tE-ojL_ODgHANIpivAqvXOcNtryXPQ,9234
671
+ endoreg_db/utils/ai/get.py,sha256=F_X1pdJsZcE_YmvvEPRFmWxFDgO4bsnmDggJDDABG1E,205
672
+ endoreg_db/utils/ai/inference_dataset.py,sha256=Zd77Zu0GM-dAUTk5HGBLBQ77hfPFB-80n9Hj_oraU2s,1776
673
+ endoreg_db/utils/ai/multilabel_classification_net.py,sha256=eBGoLy3hlpAW6Bdp6fsde_tLW5zXCOj9DA3QjXat3uI,9744
674
+ endoreg_db/utils/ai/postprocess.py,sha256=RhHyICu0Z6oAjqbrmAN_G8Jaon_UDBAHI-3U1DuHM88,2317
675
+ endoreg_db/utils/ai/predict.py,sha256=S-oyynEfW-q6z3Fc_7Slx7fybHFqm00dsuJouDeuvU8,10381
676
+ endoreg_db/utils/ai/preprocess.py,sha256=gwDd3O4RC6HXWMXPvKt3OFQd_39338PhpAMIgLWXp2Q,2329
677
+ endoreg_db/utils/ai/model_training/config.py,sha256=jTl07B44rBjI0MJb03HH4loa-GAnQO3LIIU9XlVapnE,4502
678
+ endoreg_db/utils/ai/model_training/dataset.py,sha256=BSHvveOuz2Qt6nrqUk7-imbSObUmC7pK1ZcAi83LaWk,2572
679
+ endoreg_db/utils/ai/model_training/losses.py,sha256=TknQvH41nmnePbkssPyLw8JyMrVbncv4hHD7QiF4VMo,1761
680
+ endoreg_db/utils/ai/model_training/metrics.py,sha256=8XHx9aaySn3ZCCfgZMgOCdy-MCc5-ges455C_DIPgMo,2136
681
+ endoreg_db/utils/ai/model_training/model_backbones.py,sha256=Nt3yW_53jd8wm437cqlgBWRcSnG-1T_0yeFmimnuL7w,5150
682
+ endoreg_db/utils/ai/model_training/model_gastronet_resnet.py,sha256=Y32SeS1L7qBPcymDTVcGqJmhye8-o6r25b5WMfErtcw,3990
683
+ endoreg_db/utils/ai/model_training/trainer_gastronet_multilabel.py,sha256=IPvEBW5s5Z01rKIelEAq7czlJfroJ4mw07iaL0GABCM,27070
684
+ endoreg_db/utils/case_generator/__init__.py,sha256=gFAm9wvVySBnEP3_AOY6WeVMOSb7vGukZbqZak3lHa4,99
685
+ endoreg_db/utils/case_generator/lab_sample_factory.py,sha256=aSh4LHEJ3HhjqYxgFav-zoLyWlQVUGr5amRqaIcSqoo,883
686
+ endoreg_db/utils/defaults/set_default_center.py,sha256=KWo63ZeV340nXciN4p-NhWVdXbnHLQBFe5EmdPcwaF8,1011
687
+ endoreg_db/utils/links/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
688
+ endoreg_db/utils/links/requirement_link.py,sha256=PxviPSBbPFHlfxUxeexfkxAPNzmsl4fnK8V1VYA7ptU,9989
689
+ endoreg_db/utils/pipelines/Readme.md,sha256=QhyH472oxANH4C6Z7BAzh-N2Jg2nYBnG5Df8PTnJoEs,8275
690
+ endoreg_db/utils/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
691
+ endoreg_db/utils/pipelines/process_video_dir.py,sha256=_eMnhK_W2_UZMugLqFUZIvnvIrPj44POa_rRYd9n9CY,6003
692
+ endoreg_db/utils/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
693
+ endoreg_db/utils/product/sum_emissions.py,sha256=acWVkGKjHQ8XM9BiIINvohRrpLBfZyMqD66_IVEAtkc,736
694
+ endoreg_db/utils/product/sum_weights.py,sha256=doy2TLMzmt1nCZfoGeL5cX8zC7Fk_o0dWSNA4GS1Do4,592
695
+ endoreg_db/utils/pydantic_models/__init__.py,sha256=DDzjt-ZssCJUaHUPxNDH07GTwkQ7krt3OzMhV23UlAk,91
696
+ endoreg_db/utils/pydantic_models/db_config.py,sha256=Hg0ZlSJt-a1lRawO_jV5viPqnA5B_4Stak0TEBD-L9s,1743
697
+ endoreg_db/utils/requirement_operator_logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
698
+ endoreg_db/utils/requirement_operator_logic/new_operator_logic.py,sha256=vqg7xhn3G1TFmwMmxjWcJAOYubWbUUavFzagZOoP5UA,3544
699
+ endoreg_db/utils/requirement_operator_logic/_old/lab_value_operators.py,sha256=Wz-PPC3Ik0-7fRsqKE2J3bw_ph5iIGKCt3ODwJu1ftY,25949
700
+ endoreg_db/utils/requirement_operator_logic/_old/model_evaluators.py,sha256=uriOPoGwEhS1lozPTvrwuzT-zt5uHwJRViv7axHbCR4,32036
701
+ endoreg_db/utils/video/__init__.py,sha256=OXLdLN5fyjYIgyqbZhGHxu43rCT8iwyp7I66g5-_8s4,843
702
+ endoreg_db/utils/video/extract_frames.py,sha256=0hLCe1B0F2S-WkiRbJCJnYwYZmfLb2Y2m8TVHABlp4o,3263
703
+ endoreg_db/utils/video/ffmpeg_wrapper.py,sha256=jwGMhw1C9u16w60N2df6lsYydx7-z0ZjyZUfVJkEjBM,35310
704
+ endoreg_db/utils/video/names.py,sha256=058sB-5t71QVFAifWf_3qEKtxmwcQYEe68IyEt_Izdk,1472
705
+ endoreg_db/utils/video/streaming_processor.py,sha256=Su09Xx8FOleIHxkP9Ub--d9KWT5u8o8eEBcKHrl3PzY,14205
706
+ endoreg_db/utils/video/video_splitter.py,sha256=-E8u-4WLhFGq8qJjB1KYBte25g9SiB1IbWbATGUU86c,3790
707
+ endoreg_db/views/Frames_NICE_and_PARIS_classifications_views.py,sha256=yhHC0m4YKlVy9OWYVPEyvD3P-g38fDV3BLSqKC6p7uU,8899
708
+ endoreg_db/views/__init__.py,sha256=uEozDpP3t9Q64c6PBv1e4InQRY4qpHvYWaX27k4rr7A,4882
709
+ endoreg_db/views/anonymization/__init__.py,sha256=TUfvKhVW9K2McHSzUfWju5xQBZFLtk2OHqtKJlpRkII,716
710
+ endoreg_db/views/anonymization/media_management.py,sha256=6xMLqMUO--LpsFoRk7N6B_Hkb090HRuIpNZdp78xKc8,17093
711
+ endoreg_db/views/anonymization/overview.py,sha256=8Ma0oegMR4alpBkmdxCUfzeslQCh4XJ0xL-P1-vGoRA,11201
712
+ endoreg_db/views/anonymization/validate.py,sha256=p9QPqnZjP5YuZn1BrjMIW1alo6JlgIm5kM6dypD8FKQ,13631
713
+ endoreg_db/views/auth/__init__.py,sha256=rk7E4moJ7Rldg1yHHM80CChQhsURRw-dxI5QllRtdY4,215
714
+ endoreg_db/views/auth/keycloak.py,sha256=u4N0GlEMlUdM_VgfzoMxpuxKxb5XB8SF9yv9-iXiR6I,5560
715
+ endoreg_db/views/examination/__init__.py,sha256=ato94W4tmuIZXv0bpXk9PlnvsgemzwD-UJCyieJAPSI,1203
716
+ endoreg_db/views/examination/examination.py,sha256=YLrjGE8dKRVmL3eJAd4npJWxBdytIOzvjCl-di1C184,1384
717
+ endoreg_db/views/examination/examination_manifest_cache.py,sha256=LFhXwN_A2gfpWxrV0kP2MfvM4rEHr9DZhGBzjXjsy3k,960
718
+ endoreg_db/views/examination/get_finding_classification_choices.py,sha256=yotUKpJoDv4uAeqoUEcakDX-EllFdoRKJysPMV6qSz8,2637
719
+ endoreg_db/views/examination/get_finding_classifications.py,sha256=DaAMmK02moMTEVLvCKVsvHtE0W_KkYc7zWG7i8wrvRA,1534
720
+ endoreg_db/views/examination/get_findings.py,sha256=iDKA1uN-8F5hvz9OqOmHJCu2g1F9Eulo936ULjsmUBM,1513
721
+ endoreg_db/views/examination/get_instruments.py,sha256=5ey3XXTptMgaFJQu-jGAYRI7J_AqpSGxycoNgMzcFoM,600
722
+ endoreg_db/views/examination/get_interventions.py,sha256=jqPDOxYjwDDVfCkIGkRXK821uxMyAQJcibjGXhcrLZ0,545
723
+ endoreg_db/views/finding/__init__.py,sha256=jYtrgBrn8jqZKKevRnDudwpKXWTzQ-xTOO4lEdbxu2Q,275
724
+ endoreg_db/views/finding/finding.py,sha256=5ZQpSC9nU2QRbyACAIMS12ntz7ZlncQscx44RqJqByM,5056
725
+ endoreg_db/views/finding/get_classifications.py,sha256=ZFUadImVTVsYgjtJysb6NGa7nxZwV6KCPpXwgeIqnNQ,444
726
+ endoreg_db/views/finding/get_interventions.py,sha256=LtfjLzI7FIcRWJh2uX3xFicgIcAomTNVPdQGKbAezyA,695
727
+ endoreg_db/views/finding_classification/__init__.py,sha256=cQkPmbMs-XoHyqdkKniMu-75Wxz7rJKlhJ4iyLF8GK0,394
728
+ endoreg_db/views/finding_classification/base.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
729
+ endoreg_db/views/finding_classification/finding_classification.py,sha256=l2umSXDWJOvVq7s3rf398EEQWT9hEfWDcZXkZv4wdt8,1544
730
+ endoreg_db/views/finding_classification/get_classification_choices.py,sha256=f6V8JnMdcupYFpnoV881aSaZ6dF6SRDGsfas3cd8DIE,1884
731
+ endoreg_db/views/media/__init__.py,sha256=Jvhi883YXra-fNT8zsTFd0cZAqyKjcS9J7YVetyWi7I,888
732
+ endoreg_db/views/media/pdf_media.py,sha256=ZerXzf1OGLaqn8f0Kvy09t3AyBRhrUSxjLq8XV1E1_M,14387
733
+ endoreg_db/views/media/sensitive_metadata.py,sha256=Cr8XtTOwn_YqnSf5B0bY1NtpQkSyM45152PsH4qlWI0,11871
734
+ endoreg_db/views/media/video_media.py,sha256=c5LHu5NMMQdi7xmqqkMFz7w7JyoP6gVZNg7ekwK6EEQ,9377
735
+ endoreg_db/views/meta/__init__.py,sha256=R1QiQ-t5J0pYEKlLN_OqhLyD-BQTXA6a_B7OroHouhw,207
736
+ endoreg_db/views/meta/sensitive_meta_list.py,sha256=tH4RPwl-F-eKAt5YaIoYSmDs2eyXuvvT7H7FGAOkfrc,3585
737
+ endoreg_db/views/meta/sensitive_meta_verification.py,sha256=tSbi8rg_jG4c3MRdk8kQG_VgqvkielOJixmGMKkXE1Y,2554
738
+ endoreg_db/views/misc/__init__.py,sha256=aeeM2Ge8CYauIaNUd_F33OBJ2f23k-BrPk2TXqCuMjw,593
739
+ endoreg_db/views/misc/center.py,sha256=S-SIlP8_JN_CS7Zq9tojv7R6VcA97i_tR5cy_RmyQ-g,432
740
+ endoreg_db/views/misc/csrf.py,sha256=IVYsEKbvSsF899CWiRa2nEdIEdRj-mNuNvy800Q0dH8,243
741
+ endoreg_db/views/misc/gender.py,sha256=6s_6xQNawFF7Jw1F6ENQtzeMQah8V7LFN6Alwe1zDC4,493
742
+ endoreg_db/views/misc/stats.py,sha256=okbH6kyBkI39sYLOujdQ6Nrm2RWFHBDHFseupVDzxtM,8923
743
+ endoreg_db/views/misc/upload_views.py,sha256=86o2JoU6tP0OZfd5YeQqAbCEYOzWQY4m3_0YbMldOaI,8456
744
+ endoreg_db/views/patient/__init__.py,sha256=OmNJJXtBrGOi8TxDyPlCfNUvCRvini4sUX0kwnbXuBc,66
745
+ endoreg_db/views/patient/patient.py,sha256=XKDW61W7MFg_nhsQRH5DFN8iWJqAM1lB4GC9LvIU3Dg,9489
746
+ endoreg_db/views/patient_examination/__init__.py,sha256=F9TH694b_l2YLxfj44i3J01738PnUw8v4pBy_21Gs04,402
747
+ endoreg_db/views/patient_examination/patient_examination.py,sha256=cHKILH-rD_-wqVk69Nd8olpkKE8iizeyk2mQ1pUpYSQ,5725
748
+ endoreg_db/views/patient_examination/patient_examination_create.py,sha256=cO2F361TTaK9YpR2IZQDJL_giZCOnAke0A_EAPS0LVY,2108
749
+ endoreg_db/views/patient_examination/patient_examination_detail.py,sha256=HyPH2oG5tmvAOQakp-5IZI6kxyCy2bpujpANT7z2XXM,2296
750
+ endoreg_db/views/patient_examination/patient_examination_list.py,sha256=Ve-8Bv_BvsSbtivR0AHhJHmwYshTjiNRnWb-uP7wJKQ,2374
751
+ endoreg_db/views/patient_examination/video.py,sha256=OSpS9v9cerjCDHdj6vEovgKPkrPXuwe7Fhq2_lGZTOc,9364
752
+ endoreg_db/views/patient_finding/__init__.py,sha256=iW5tvW72phbkDNZeuh49uegSZsM479X7Irv3PDmQcu0,203
753
+ endoreg_db/views/patient_finding/base.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
754
+ endoreg_db/views/patient_finding/patient_finding.py,sha256=q2eNX_kN6hxKru51phO_VKYFf6CKGow2-AWAT1aXMHk,2560
755
+ endoreg_db/views/patient_finding/patient_finding_optimized.py,sha256=bURUnWVWS1JN9rlHOLmlPd1yRRuZU-34xg7FPPR7QfY,10876
756
+ endoreg_db/views/patient_finding_classification/__init__.py,sha256=C_pp0zhobMINHwDoSX1HPfzPF2q4ahB5YxjMUB491AU,122
757
+ endoreg_db/views/patient_finding_classification/pfc_create.py,sha256=cPKEgEbx7K37C4hEVSkvo4ulSjmmCWrrJeLwboXn2Do,2623
758
+ endoreg_db/views/report/__init__.py,sha256=PPXKbiawphRvWSXaFYnCrDrTautyD-l8TlpjW82W41s,150
759
+ endoreg_db/views/report/reimport.py,sha256=C1kShUsXXqSBzzeosuXZbgJ8xNyMLWiBHPU_RWz_a0E,7003
760
+ endoreg_db/views/report/report_stream.py,sha256=dESm4KUJ2Rkpqsi0Xo5fqATAxPbwTxpj4Zdj8OtD1As,7503
761
+ endoreg_db/views/requirement/__init__.py,sha256=nPekc__cVwpAn_Jd0-neHKPuocDOD4boyLpYwAQNCRM,161
762
+ endoreg_db/views/requirement/evaluate.py,sha256=HoOBqdnOJgG3iG2RyneSW1exoT9PBywzD8OGUA4-4_I,10014
763
+ endoreg_db/views/requirement/lookup.py,sha256=ixsOjprha2IdNMSdC1295NKQiVzkb5BR2_Fg0Qlbzpk,13122
764
+ endoreg_db/views/requirement/lookup_store.py,sha256=zIMh7y9jIOzWSF0mfFT23eqqc4QY1w79G5S9_5b_i_8,4939
765
+ endoreg_db/views/requirement/requirement_utils.py,sha256=ajs8soqUqezdZzuR67a0w9f99lZG_kr0pAmYnJMuiGY,2776
766
+ endoreg_db/views/requirement_lookup/lookup.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
767
+ endoreg_db/views/requirement_lookup/lookup_store.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
768
+ endoreg_db/views/stats/__init__.py,sha256=PLlzXFrHUg4Yxt-NnkLtOxKB5pYTXxWdeRbNkOHBm7E,258
769
+ endoreg_db/views/stats/stats_views.py,sha256=2FTc3T5xu-OcvTjwBJ-q3izTPFp6XpLe1N9wQqOyhXQ,9079
770
+ endoreg_db/views/video/__init__.py,sha256=KBnRCVF7CAhTAeP-uC85ubShSbUKNeHDU3zqb6Bx5Uc,1292
771
+ endoreg_db/views/video/correction.py,sha256=-ZsPxh86HVZxHmuNxFzoGOFWQ_OwDrY5c83GW5ALNnQ,18458
772
+ endoreg_db/views/video/reimport.py,sha256=g_YahMdMGcfgD8KgxqCq5YZLxUup3Z-cRCpjxXVGIK4,9332
773
+ endoreg_db/views/video/segments_crud.py,sha256=qJWxwVUZNAfP_eUOtN5UakCxaEH-RcoK0_8tXhPYqHA,25360
774
+ endoreg_db/views/video/video_apply_mask.py,sha256=Argys6sZOFV0NUYP8iqnarjeSUpEzl4oQ58ip8Q47-8,1635
775
+ endoreg_db/views/video/video_correction.py,sha256=thUUUxbBC4Oq0bCGA4hAaOaYl5xMFTfgOmhGVySH8ps,769
776
+ endoreg_db/views/video/video_download_processed.py,sha256=I69ttckH1e1aazKqCfuCad7TXUnWTJgG1bS7UhPIVsw,1960
777
+ endoreg_db/views/video/video_examination_viewset.py,sha256=ej6CUK1JGFN7JmZOj25g1heaIIAwh6cf1HaYFmcR9EE,8331
778
+ endoreg_db/views/video/video_metadata.py,sha256=dRfy1vxoK5BSc3Qgjx3NpkXowLJQt6j8GA0nGr6YTjQ,3758
779
+ endoreg_db/views/video/video_processing_history.py,sha256=MXFokN3X9SYfiYCpvWO0kpyDhbfsn79VNyFRo3Zxzgk,773
780
+ endoreg_db/views/video/video_remove_frames.py,sha256=7ddjkh7AuYUB8S_RVwx7vcc1HFb4Oq2r7wxPduqYpjY,1701
781
+ endoreg_db/views/video/video_stream.py,sha256=5sKQE_tf53HFyrd5019GRe6DD27L2cRcRfUvbKJ0VPU,12116
782
+ endoreg_db/views/video/ai/__init__.py,sha256=83A-UDq_Nii-AB8tGzA653iM6fBBO14F8YLtvhiEp4U,159
783
+ endoreg_db/views/video/ai/label.py,sha256=Yd7DyjNMNOf7MMXbIlG9dUhWyvDmCOcJfOJO68jRtD0,4864
784
+ endoreg_db-0.8.9.32.dist-info/METADATA,sha256=sTahj6qOHDSy0ccTUxqUenGQ8ct3DRoSc5jyiZDazMs,15592
785
+ endoreg_db-0.8.9.32.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
786
+ endoreg_db-0.8.9.32.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
787
+ endoreg_db-0.8.9.32.dist-info/RECORD,,