HISPMD Database Schema Documentation
Introduction
This documentation provides a comprehensive overview of the hisp_md PostgreSQL database schema for the Health Information System Performance Monitoring Dashboard (HISPMD). The system is designed to monitor and evaluate health information systems performance across multiple dimensions.
System Overview
The HISPMD database supports:
- DHIS2 Integration: Tracking reporting rates, data quality, and system performance
- MOH Health Indicators: Monitoring key health indicators and facility data
- PRISM Assessments: Performance of Routine Information System Management
- Digital Health Tools: Monitoring digital health applications and systems
- EIDM Framework: Evidence-Informed Decision Making tracking
- User Management: Role-based access control and organizational hierarchy
Database Statistics
| Category | Tables | Description |
|---|---|---|
| DHIS2 Integration | 3 | DHIS2 reporting rates, periods, and data quality metrics |
| MOH Health Data | 18 | Health indicators, facilities, regions, and performance data |
| PRISM Assessments | 6 | RHIS performance diagnostics and assessments |
| System Management | 15 | Users, organizations, knowledge base, and reports |
| Digital Health | 2 | Digital health tools and applications monitoring |
| EIDM Framework | 2 | Evidence-informed decision making tracking |
| Total Tables | 72 | Complete HISPMD schema |
Getting Started
Database Connection
Connect to the HISPMD database using PostgreSQL connection parameters:
// PHP PDO Connection for PostgreSQL
$db_host = '192.168.128.4';
$db_port = '5432';
$db_name = 'hisp_md';
$db_user = 'hispmddb';
$db_pass = 'hispmddb';
try {
$pdo = new PDO("pgsql:host=$db_host;port=$db_port;dbname=$db_name", $db_user, $db_pass);
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
echo "Connected successfully to HISPMD database";
} catch(PDOException $e) {
echo "Connection failed: " . $e->getMessage();
}
Core Data Domains
The database is organized around these key data domains:
| Domain | Key Tables | Purpose |
|---|---|---|
| DHIS2 Monitoring | dhis2_reporting_rates, dhis2_periods, dhis2_organisation_units | Track DHIS2 reporting performance and data quality |
| Health Indicators | moh_indicators, moh_health_facilities, moh_regions | Monitor MOH health indicators and facility data |
| PRISM Framework | ethprism_facility_level_rhis_performance_diagnostic | RHIS performance assessment and diagnostics |
| Digital Health | digitalhealth, digitalhealthapps | Digital health tools implementation tracking |
| User Management | hispmd_users, hispmd_organisations | System access control and organizational hierarchy |
Key Relationships
The database maintains complex relationships between health facilities, indicators, and reporting systems:
Core Relationships
- DHIS2 Hierarchy: dhis2_organisation_units ↔ dhis2_reporting_rates (Organizational reporting structure)
- Health Facility Mapping: moh_health_facilities ↔ dhis2_organisation_units (Facility cross-referencing)
- Indicator Tracking: moh_indicators ↔ dhis2_reporting_rates (Indicator performance monitoring)
- PRISM Assessments: ethprism_facility_level_rhis_performance_diagnostic ↔ moh_health_facilities (Facility performance diagnostics)
- User Access: hispmd_users ↔ hispmd_organisations (Role-based access control)
- Digital Health Tools: digitalhealth ↔ digitalhealthapps (Tool implementation tracking)
Entity Relationship Diagram
The interactive Entity Relationship Diagram below visualizes the database structure. Navigate by dragging, zoom with scroll, and click tables for details.
Key Entities and Relationships
| Entity | Description | Key Relationships |
|---|---|---|
| dhis2_organisation_units | DHIS2 organizational hierarchy and facilities | Parent to dhis2_reporting_rates, linked to moh_health_facilities |
| moh_health_facilities | MOH health facilities master data | Linked to dhis2_organisation_units and PRISM assessments |
| dhis2_reporting_rates | DHIS2 reporting performance metrics | References dhis2_organisation_units and dhis2_periods |
| moh_indicators | Health indicators and targets | Base for performance monitoring across systems |
| ethprism_facility_level_rhis_performance_diagnostic | PRISM facility-level performance diagnostics | Linked to health facilities for assessment data |
| hispmd_users | System users and administrators | Role-based access to organizations and data |
Database Tables
Detailed documentation for each table organized by functional categories.
DHIS2 Integration
dhis2_reportingrate_settings
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| id | int4(32,0) | No | nextval('dhis2_reportingrate_settings_id_seq'::regclass) | PRIMARY | Primary key identifier |
| data_set | varchar(255) | No | NULL | ||
| report_period | varchar(255) | No | NULL | ||
| org_unit | varchar(255) | No | NULL | ||
| created_at | timestamp | Yes | CURRENT_TIMESTAMP | Record creation timestamp | |
| updated_at | timestamp | Yes | CURRENT_TIMESTAMP | Date/time field | |
| facility_types | varchar(255) | No | ''::character varying | ||
| ownership_types | varchar(255) | No | ''::character varying | ||
| name | varchar(255) | Yes | NULL | Name or title field |
This table has no foreign key relationships.
| id | data_set | report_period | org_unit | created_at | updated_at | facility_types | ownership_types | name |
|---|---|---|---|---|---|---|---|---|
| 1 | sukoxnm77Nx,EgjCODJgONu,Tly4adG7tLy,wUAjWKVXd5l | LAST_3_MONTHS,LAST_MONTH,LAST_SIX_MONTH,MONTHS_THIS_YEAR,THIS_MONTH | yY9BLUUegel,UFtGyqJMEZh,yb9NKGA8uqt,Fccw8uMlJHN,tDoLtk2ylu4,G9hDiPNoB7d,moBiwh9h5Ce,b9nYedsL8te,XU2w... | 2024-12-29 18:00:32.054589 | 2025-10-17 20:56:09.569896 | hospital,clinic,health_post,health_center | private,public,other_government,ngo | reporting-rates_default |
Showing 1 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| dhis2_reportingrate_settings_pkey | CREATE UNIQUE INDEX dhis2_reportingrate_settings_pkey ON public.dhis2_reportingrate_settings USING btree (id) |
dhis2_reporting_rates
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| organisationunit_id | varchar(255) | No | NULL | ||
| organisationunit | varchar(255) | No | NULL | ||
| organisationunit_code | varchar(100) | No | NULL | ||
| actual_reports | numeric(15,4) | Yes | 0 | ||
| expected_reports | numeric(15,4) | Yes | 0 | ||
| reporting_rate | numeric(15,2) | Yes | 0.00 | ||
| actual_reports_on_time | numeric(15,4) | Yes | 0 | Date/time field | |
| reporting_rate_on_time | numeric(15,2) | Yes | 0.00 | Date/time field | |
| dataset_id | varchar(255) | Yes | NULL | ||
| dataset_name | varchar(255) | Yes | NULL | Name or title field | |
| facility_type | varchar(100) | No | NULL | ||
| report_period | varchar(255) | No | NULL | ||
| ownership_type_id | varchar(255) | No | ''::character varying | ||
| ownership_type_label | varchar(255) | No | ''::character varying | ||
| indicator_id | varchar(255) | Yes | NULL | ||
| indicator_name | varchar(255) | Yes | NULL | Name or title field | |
| organisationunit_description | varchar(255) | Yes | NULL | Descriptive text field | |
| value | numeric(15,2) | Yes | NULL | ||
| relative_period | varchar(255) | Yes | NULL | ||
| fetched_at | timestamp | Yes | CURRENT_TIMESTAMP |
This table has no foreign key relationships.
| organisationunit_id | organisationunit | organisationunit_code | actual_reports | expected_reports | reporting_rate | actual_reports_on_time | reporting_rate_on_time | dataset_id | dataset_name | facility_type | report_period | ownership_type_id | ownership_type_label | indicator_id | indicator_name | organisationunit_description | value | relative_period | fetched_at |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| yY9BLUUegel | Addis Ababa City Administration | 1056254 | NULL | NULL | NULL | NULL | NULL | default_dataset_id | NULL | Hospital | Tahesas 2018, Tir 2018, Yekatit 2018 | nZ0QfIPU2Up | Private | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | 32.40 | LAST_3_MONTHS | 2026-04-06 20:18:44.790554 | |
| UFtGyqJMEZh | Afar Region | 1056255 | NULL | NULL | NULL | NULL | NULL | default_dataset_id | NULL | Hospital | Tahesas 2018, Tir 2018, Yekatit 2018 | nZ0QfIPU2Up | Private | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | 0.62 | LAST_3_MONTHS | 2026-04-06 20:18:44.79309 | |
| yb9NKGA8uqt | Amhara Region | 1069284 | NULL | NULL | NULL | NULL | NULL | default_dataset_id | NULL | Hospital | Tahesas 2018, Tir 2018, Yekatit 2018 | nZ0QfIPU2Up | Private | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | 5.20 | LAST_3_MONTHS | 2026-04-06 20:18:44.795198 | |
| Fccw8uMlJHN | Benishangul Gumuz Region | 6 | NULL | NULL | NULL | NULL | NULL | default_dataset_id | NULL | Hospital | Tahesas 2018, Tir 2018, Yekatit 2018 | nZ0QfIPU2Up | Private | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | 7.20 | LAST_3_MONTHS | 2026-04-06 20:18:44.797153 | |
| tDoLtk2ylu4 | Central Ethiopian Region | 1084709 | NULL | NULL | NULL | NULL | NULL | default_dataset_id | NULL | Hospital | Tahesas 2018, Tir 2018, Yekatit 2018 | nZ0QfIPU2Up | Private | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | 2.30 | LAST_3_MONTHS | 2026-04-06 20:18:44.799013 |
Showing 5 sample records. Hover over cells to see full content.
dhis2_periods
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| period_id | varchar(50) | No | NULL | PRIMARY | Primary key identifier |
| period_name | varchar(50) | No | NULL | Name or title field |
This table has no foreign key relationships.
| period_id | period_name |
|---|---|
| LAST_12_MONTHS | Last 12 Months |
| LAST_12_WEEKS | Last 12 Weeks |
| LAST_2_SIXMONTHS | Last 2 Sixmonths |
| LAST_3_MONTHS | Last 3 Months |
| LAST_4_QUARTERS | Last 4 Quarters |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| pk_dhis2_periods | CREATE UNIQUE INDEX pk_dhis2_periods ON public.dhis2_periods USING btree (period_id) |
MOH Health Data
moh_zones
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| zone_id | int4(32,0) | No | nextval('zone_id_seq'::regclass) | PRIMARY | Primary key identifier |
| region_id | varchar(255) | Yes | NULL | ||
| zone_name | varchar(255) | Yes | NULL | Name or title field | |
| zone_data | varchar(255) | Yes | NULL |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| moh_zones_pkey | CREATE UNIQUE INDEX moh_zones_pkey ON public.moh_zones USING btree (zone_id) |
moh_woredas
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| woreda_id | int4(32,0) | No | nextval('woreda_id_seq'::regclass) | PRIMARY | Primary key identifier |
| zone_id | varchar(255) | Yes | NULL | ||
| woreda_name | varchar(255) | Yes | NULL | Name or title field | |
| woreda_data | varchar(255) | Yes | NULL |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| moh_woredas_pkey | CREATE UNIQUE INDEX moh_woredas_pkey ON public.moh_woredas USING btree (woreda_id) |
moh_data_sources
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| data_source_id | int4(32,0) | No | nextval('moh_data_sources_data_source_id_seq'::regclass) | PRIMARY | Primary key identifier |
| data_source_name | text | No | NULL | Name or title field | |
| indicator_id | int4(32,0) | Yes | NULL |
This table has no foreign key relationships.
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicator_data | data_source_id | moh_data_sources (data_source_id) | One-to-Many |
| data_source_id | data_source_name | indicator_id |
|---|---|---|
| 1 | IR Assessment | NULL |
| 2 | PRISM Assessment | NULL |
| 3 | Rapid assessment | NULL |
| 34 | RDQA - comprehensive | NULL |
| 52 | SOCI Assessment | NULL |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_data_sources_pkey | CREATE UNIQUE INDEX moh_data_sources_pkey ON public.moh_data_sources USING btree (data_source_id) |
moh_data_scope
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| scope_id | int4(32,0) | No | nextval('moh_data_scope_scope_id_seq'::regclass) | PRIMARY | Primary key identifier |
| scope_name | text | No | NULL | Name or title field |
This table has no foreign key relationships.
| scope_id | scope_name |
|---|---|
| 1 | National |
| 2 | Regional |
| 3 | Zone |
| 4 | Woreda |
| 5 | Health Facility |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_data_scope_pkey | CREATE UNIQUE INDEX moh_data_scope_pkey ON public.moh_data_scope USING btree (scope_id) |
moh_administration_units
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| unit_id | int4(32,0) | No | nextval('moh_administration_units_unit_id_seq'::regclass) | PRIMARY | Primary key identifier |
| unit_name | text | No | NULL | Name or title field |
This table has no foreign key relationships.
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicator_data | unit_id | moh_administration_units (unit_id) | One-to-Many |
| unit_id | unit_name |
|---|---|
| 1 | ZHD |
| 2 | WorHO |
Showing 2 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_administration_units_pkey | CREATE UNIQUE INDEX moh_administration_units_pkey ON public.moh_administration_units USING btree (unit_id) |
moh_assessments
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| assessment_id | int4(32,0) | No | nextval('moh_assessments_assessment_id_seq'::regclass) | PRIMARY | Primary key identifier |
| assessment_name | text | No | NULL | Name or title field |
This table has no foreign key relationships.
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicator_data | assessment_id | moh_assessments (assessment_id) | One-to-Many |
| assessment_id | assessment_name |
|---|---|
| 1 | IR Assessment |
| 2 | PRISM Assessment |
| 3 | Rapid Assessment |
| 4 | Periodic Assessment |
| 5 | SOCI Assessment |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_assessments_pkey | CREATE UNIQUE INDEX moh_assessments_pkey ON public.moh_assessments USING btree (assessment_id) |
moh_indicator_data
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| data_id | int4(32,0) | No | nextval('moh_indicator_data_data_id_seq'::regclass) | PRIMARY | Primary key identifier |
| indicator_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| data_source_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| assessment_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| region_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| unit_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| facility_type_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| value | numeric | Yes | NULL | ||
| year | int4(32,0) | Yes | NULL | ||
| scope_id | int4(32,0) | No | NULL | ||
| gender_sex | varchar | No | NULL | ||
| data_representation | varchar | Yes | NULL | ||
| indicator_group_id | int4(32,0) | Yes | NULL | ||
| data_source_detail | varchar | Yes | NULL | ||
| period_id | int4(32,0) | Yes | NULL | ||
| month_id | int4(32,0) | Yes | NULL | ||
| quarter_id | int4(32,0) | Yes | NULL | ||
| year_id | int4(32,0) | Yes | NULL | ||
| period | varchar | Yes | NULL | ||
| created_at | timestamp | Yes | NULL | Record creation timestamp | |
| updated_at | timestamp | Yes | NULL | Date/time field | |
| created_by | varchar | Yes | NULL | Record creation timestamp | |
| updated_by | varchar | Yes | NULL | Date/time field | |
| has_sex_data | bool | Yes | NULL | Boolean flag field | |
| zone_id | varchar | Yes | NULL | ||
| woreda_id | varchar | Yes | NULL | ||
| facility_id | varchar | Yes | NULL |
Foreign Key Relationships
| Column | References | Relationship Type |
|---|---|---|
| assessment_id | moh_assessments (assessment_id) | Many-to-One |
| data_source_id | moh_data_sources (data_source_id) | Many-to-One |
| facility_type_id | moh_facility_types (facility_type_id) | Many-to-One |
| indicator_id | moh_indicators (indicator_id) | Many-to-One |
| region_id | moh_regions (region_id) | Many-to-One |
| unit_id | moh_administration_units (unit_id) | Many-to-One |
| data_id | indicator_id | data_source_id | assessment_id | region_id | unit_id | facility_type_id | value | year | scope_id | gender_sex | data_representation | indicator_group_id | data_source_detail | period_id | month_id | quarter_id | year_id | period | created_at | updated_at | created_by | updated_by | has_sex_data | zone_id | woreda_id | facility_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 8 | 24 | 34 | 6 | NULL | NULL | NULL | 68 | 2023 | 1 | Percent | 3 | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |
| 10 | 20 | 34 | 6 | NULL | NULL | 6 | 93 | 2023 | 1 | Percent | 2 | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |
| 19 | 22 | 2 | 2 | NULL | NULL | 6 | 29.3 | 2024 | 1 | Percent | 3 | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |
| 20 | 23 | 2 | 2 | NULL | NULL | 3 | 100 | 2022 | 1 | Percent | 3 | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |
| 21 | 23 | 2 | 2 | NULL | NULL | 4 | 90.6 | 2022 | 1 | Percent | 3 | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_indicator_data_pkey | CREATE UNIQUE INDEX moh_indicator_data_pkey ON public.moh_indicator_data USING btree (data_id) |
moh_facility_types
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| facility_type_id | int4(32,0) | No | nextval('moh_facility_types_facility_type_id_seq'::regclass) | PRIMARY | Primary key identifier |
| facility_type_name | text | No | NULL | Name or title field |
This table has no foreign key relationships.
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicator_data | facility_type_id | moh_facility_types (facility_type_id) | One-to-Many |
| moh_health_facilities | facility_type_id | moh_facility_types (facility_type_id) | One-to-Many |
| facility_type_id | facility_type_name |
|---|---|
| 3 | Hospital |
| 4 | Health Center |
| 5 | Health Post |
| 6 | Public HF |
| 7 | Private HF |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_facility_types_pkey | CREATE UNIQUE INDEX moh_facility_types_pkey ON public.moh_facility_types USING btree (facility_type_id) |
moh_indicator_groups
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| indicator_group_id | int4(32,0) | No | nextval('moh_indicator_groups_indicator_group_id_seq'::regclass) | PRIMARY | Primary key identifier |
| indicator_group_name | text | No | NULL | Name or title field |
This table has no foreign key relationships.
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicators | indicator_group_id | moh_indicator_groups (indicator_group_id) | One-to-Many |
| indicator_group_id | indicator_group_name |
|---|---|
| 2 | Data Use |
| 3 | Data Quality |
| 4 | Digital Health |
| 5 | IR Pathway |
| 6 | CRVS |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_indicator_groups_pkey | CREATE UNIQUE INDEX moh_indicator_groups_pkey ON public.moh_indicator_groups USING btree (indicator_group_id) |
moh_years
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| year_id | int4(32,0) | No | nextval('moh_years_year_id_seq'::regclass) | PRIMARY | Primary key identifier |
| year | varchar | No | NULL | ||
| is_active | bool | Yes | NULL | Boolean flag field |
This table has no foreign key relationships.
| year_id | year | is_active |
|---|---|---|
| 16 | 2026 | NULL |
| 17 | 2027 | NULL |
| 18 | 2028 | NULL |
| 19 | 2029 | NULL |
| 20 | 2030 | NULL |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_years_pkey | CREATE UNIQUE INDEX moh_years_pkey ON public.moh_years USING btree (year_id) |
moh_indicators_target
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| ID | int4(32,0) | No | nextval('"moh_indicators_target_ID_seq"'::regclass) | PRIMARY | Primary key identifier |
| indicator_id | int4(32,0) | Yes | NULL | ||
| indicator_name | varchar | Yes | NULL | Name or title field | |
| indicator_target | varchar | Yes | NULL | ||
| indicator_baseline | varchar | Yes | NULL | ||
| indicator_target_year | varchar | Yes | NULL | ||
| indicator_baseline_year | varchar | Yes | NULL |
This table has no foreign key relationships.
| ID | indicator_id | indicator_name | indicator_target | indicator_baseline | indicator_target_year | indicator_baseline_year |
|---|---|---|---|---|---|---|
| 30 | 61 | Number of policy briefs prepared and submitted - Programs | 15 | 2024 | ||
| 31 | 63 | Percentage of health facilities with a VF within acceptable range -SBA | 95 | 2024 | ||
| 1 | 8 | Proportion HIS/DH budget allocated out of the total health budget in the fiscal year | 5 | 2024 | ||
| 2 | 10 | HIS governance indexes | 80 | 2024 | ||
| 3 | 11 | Proportion of health facilities (Hospitals and health centers) which have standardized medical recor... | 100 | 2024 |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_indicators_target_pkey | CREATE UNIQUE INDEX moh_indicators_target_pkey ON public.moh_indicators_target USING btree ("ID") |
moh_ir_datasource
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| ir_id | int4(32,0) | No | nextval('moh_ir_datasource_ir_id_seq'::regclass) | PRIMARY | Primary key identifier |
| ir_datasource | varchar | Yes | NULL | ||
| data_source_id | int4(32,0) | Yes | NULL |
This table has no foreign key relationships.
| ir_id | ir_datasource | data_source_id |
|---|---|---|
| 15 | Emerging | 1 |
| 16 | Candidate - low | 1 |
| 17 | Model | 1 |
| 18 | Digital model | 1 |
| 19 | Demonstration | 1 |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_ir_datasource_pkey | CREATE UNIQUE INDEX moh_ir_datasource_pkey ON public.moh_ir_datasource USING btree (ir_id) |
moh_months
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| month_id | int4(32,0) | No | nextval('moh_months_month_id_seq'::regclass) | PRIMARY | Primary key identifier |
| month | varchar | No | NULL |
This table has no foreign key relationships.
| month_id | month |
|---|---|
| 1 | January |
| 2 | February |
| 3 | March |
| 4 | April |
| 5 | May |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_months_pkey | CREATE UNIQUE INDEX moh_months_pkey ON public.moh_months USING btree (month_id) |
moh_period_types
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| period_id | int4(32,0) | No | nextval('moh_period_types_period_id_seq'::regclass) | PRIMARY | Primary key identifier |
| period_type | varchar | No | NULL |
This table has no foreign key relationships.
| period_id | period_type |
|---|---|
| 1 | Yearly |
| 2 | Quarterly |
| 3 | Monthly |
Showing 3 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_period_types_pkey | CREATE UNIQUE INDEX moh_period_types_pkey ON public.moh_period_types USING btree (period_id) |
moh_quarters
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| quarter_id | int4(32,0) | No | nextval('moh_quarters_quarter_id_seq'::regclass) | PRIMARY | Primary key identifier |
| quarter | varchar | No | NULL |
This table has no foreign key relationships.
| quarter_id | quarter |
|---|---|
| 1 | Q1 |
| 2 | Q2 |
| 3 | Q3 |
| 4 | Q4 |
Showing 4 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_quarters_pkey | CREATE UNIQUE INDEX moh_quarters_pkey ON public.moh_quarters USING btree (quarter_id) |
moh_regions
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| region_id | int4(32,0) | No | nextval('moh_regions_region_id_seq'::regclass) | PRIMARY | Primary key identifier |
| region_name | text | No | NULL | Name or title field | |
| region_alternate | text | Yes | NULL | ||
| lat | varchar | Yes | NULL | ||
| lng | varchar | Yes | NULL | ||
| code | varchar | Yes | NULL | ||
| map | varchar | Yes | NULL | ||
| region_code | int4(32,0) | Yes | NULL | ||
| country_id | varchar | Yes | NULL |
This table has no foreign key relationships.
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicator_data | region_id | moh_regions (region_id) | One-to-Many |
| region_id | region_name | region_alternate | lat | lng | code | map | region_code | country_id |
|---|---|---|---|---|---|---|---|---|
| 14 | Tigray | Tigray Region | 13.704962060626 | 39.047707289424 | https://hispmd.merqconsultancy.org/app/moh_indicator_data_list.php?masterkey1=14&page=list&mastertab... | 1 | 1 | |
| 2 | Afar | Afar Region | 11.441045709388 | 40.406054777687 | https://hispmd.merqconsultancy.org/app/moh_indicator_data_list.php?masterkey1=2&page=list&mastertabl... | 2 | 1 | |
| 3 | Amhara | Amhara Region | 11.236085461693 | 38.278901287387 | https://hispmd.merqconsultancy.org/app/moh_indicator_data_list.php?masterkey1=3&page=list&mastertabl... | 3 | 1 | |
| 9 | Oromia | Oromia Region | 8.2369424657296 | 38.405640669281 | https://hispmd.merqconsultancy.org/app/moh_indicator_data_list.php?masterkey1=9&page=list&mastertabl... | 4 | 1 | |
| 11 | Somali | Somali Region | 7.6853561537776 | 43.052470954243 | https://hispmd.merqconsultancy.org/app/moh_indicator_data_list.php?masterkey1=11&page=list&mastertab... | 5 | 1 |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_regions_pkey | CREATE UNIQUE INDEX moh_regions_pkey ON public.moh_regions USING btree (region_id) |
moh_indicators
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| indicator_id | int4(32,0) | No | nextval('moh_indicators_indicator_id_seq'::regclass) | PRIMARY | Primary key identifier |
| indicator_name | text | No | NULL | Name or title field | |
| baseline | numeric | Yes | NULL | ||
| target | numeric | Yes | NULL | ||
| indicator_group_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| indicator_shortname | text | Yes | NULL | Name or title field | |
| indicator_desc | text | Yes | NULL |
Foreign Key Relationships
| Column | References | Relationship Type |
|---|---|---|
| indicator_group_id | moh_indicator_groups (indicator_group_id) | Many-to-One |
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicator_data | indicator_id | moh_indicators (indicator_id) | One-to-Many |
| indicator_id | indicator_name | baseline | target | indicator_group_id | indicator_shortname | indicator_desc |
|---|---|---|---|---|---|---|
| 1 | Number of health administration units with updated HIS strategic plan in place | NULL | NULL | 1 | HIG_HFs with updated HIS strategic Plan (#) | Administrative units refer woreda health offices, zonal health administrations, regional health bure... |
| 7 | Number of HIS partners which have aligned their operational plan with the health sector HIS plan | NULL | NULL | 1 | HIG_HIS partners with alligned plan (#) | Although all partners will have HIS plan, this indicator refers to HIS project funded partners where... |
| 8 | Proportion HIS/DH budget allocated out of the total health budget in the fiscal year | NULL | NULL | 1 | HIG_Budget allocated for HIS/DH (%) | This refers to the share of HIS/DH budget as a proportion of total health budget of that specific ad... |
| 10 | HIS governance indexes | NULL | NULL | 1 | HIG_HIS governance index | There are sub indicators with weighted value to governance indexes like existence of HIS legislative... |
| 16 | HIS workforce core competency index | NULL | NULL | 7 | HSR_HIS workforce core competency index | There are sub indicators with weighted value to calculate competency like the ability to check data ... |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_indicators_pkey | CREATE UNIQUE INDEX moh_indicators_pkey ON public.moh_indicators USING btree (indicator_id) |
moh_health_facilities
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| facility_id | int4(32,0) | No | nextval('moh_health_facilities_facility_id_seq'::regclass) | PRIMARY | Primary key identifier |
| facility_name | text | No | NULL | Name or title field | |
| facility_type_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
Foreign Key Relationships
| Column | References | Relationship Type |
|---|---|---|
| facility_type_id | moh_facility_types (facility_type_id) | Many-to-One |
No sample data available for this table.
| Index Name | Definition |
|---|---|
| moh_health_facilities_pkey | CREATE UNIQUE INDEX moh_health_facilities_pkey ON public.moh_health_facilities USING btree (facility_id) |
PRISM Assessments
ethprism_additional_organizational_and_behavioral_assessment
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| CompletionDate | text | Yes | NULL | Date/time field | |
| SubmissionDate | text | Yes | NULL | Date/time field | |
| starttime | text | Yes | NULL | Date/time field | |
| endtime | text | Yes | NULL | Date/time field | |
| deviceid | text | Yes | NULL | ||
| subscriberid | text | Yes | NULL | ||
| simid | text | Yes | NULL | ||
| devicephonenum | text | Yes | NULL | Phone number field | |
| username | text | Yes | NULL | Name or title field | |
| duration | text | Yes | NULL | ||
| caseid | text | Yes | NULL | ||
| OBAT101 | text | Yes | NULL | ||
| OBAT102 | text | Yes | NULL | ||
| OBAT103 | text | Yes | NULL | ||
| OBAT104 | text | Yes | NULL | ||
| admin_lvl | text | Yes | NULL | ||
| OBAT105 | text | Yes | NULL | ||
| OBAT106 | text | Yes | NULL | ||
| OBAT107 | text | Yes | NULL | ||
| OBAT108 | text | Yes | NULL | ||
| tmp_obat106 | text | Yes | NULL | ||
| tmp_obat107 | text | Yes | NULL | ||
| tmp_obat108 | text | Yes | NULL | ||
| siteid | text | Yes | NULL | ||
| OBAT109f | text | Yes | NULL | ||
| OBAT110f | text | Yes | NULL | ||
| OBAT111 | text | Yes | NULL | ||
| OBAT112 | text | Yes | NULL | ||
| intro | text | Yes | NULL | ||
| DD1 | text | Yes | NULL | ||
| DD2 | text | Yes | NULL | ||
| DD3a | text | Yes | NULL | ||
| DD3b | text | Yes | NULL | ||
| DD4a | text | Yes | NULL | ||
| DD4b | text | Yes | NULL | ||
| DD5a | text | Yes | NULL | ||
| DD5b | text | Yes | NULL | ||
| DD5c_1 | text | Yes | NULL | ||
| DD5c_2 | text | Yes | NULL | ||
| DD5c_3 | text | Yes | NULL | ||
| DD5c_5 | text | Yes | NULL | ||
| DD5c_96 | text | Yes | NULL | ||
| DD5co | text | Yes | NULL | ||
| sect1.2_note1 | text | Yes | NULL | Descriptive text field | |
| sect1.2_note2 | text | Yes | NULL | Descriptive text field | |
| D1 | text | Yes | NULL | ||
| D2 | text | Yes | NULL | ||
| sect1.2_note3 | text | Yes | NULL | Descriptive text field | |
| D3 | text | Yes | NULL | ||
| D4 | text | Yes | NULL | ||
| sect1.2_note4 | text | Yes | NULL | Descriptive text field | |
| D5 | text | Yes | NULL | ||
| D6 | text | Yes | NULL | ||
| D7 | text | Yes | NULL | ||
| sect1.2_note5 | text | Yes | NULL | Descriptive text field | |
| D8 | text | Yes | NULL | ||
| D9 | text | Yes | NULL | ||
| D10 | text | Yes | NULL | ||
| sect1.2_note6 | text | Yes | NULL | Descriptive text field | |
| S1 | text | Yes | NULL | ||
| S2 | text | Yes | NULL | ||
| sect1.2_note7 | text | Yes | NULL | Descriptive text field | |
| S3 | text | Yes | NULL | ||
| S4 | text | Yes | NULL | ||
| sect1.2_note8 | text | Yes | NULL | Descriptive text field | |
| S5 | text | Yes | NULL | ||
| S6 | text | Yes | NULL | ||
| sect1.2_note9 | text | Yes | NULL | Descriptive text field | |
| S7a | text | Yes | NULL | ||
| S7b | text | Yes | NULL | ||
| sect1.2_note10 | text | Yes | NULL | Descriptive text field | |
| S8 | text | Yes | NULL | ||
| S9 | text | Yes | NULL | ||
| sect1.2_note11 | text | Yes | NULL | Descriptive text field | |
| P1 | text | Yes | NULL | ||
| P2 | text | Yes | NULL | ||
| sect1.2_note12 | text | Yes | NULL | Descriptive text field | |
| P3 | text | Yes | NULL | ||
| P4 | text | Yes | NULL | ||
| sect1.2_note13 | text | Yes | NULL | Descriptive text field | |
| P5 | text | Yes | NULL | ||
| P6 | text | Yes | NULL | ||
| sect1.2_note14 | text | Yes | NULL | Descriptive text field | |
| P7 | text | Yes | NULL | ||
| P8 | text | Yes | NULL | ||
| sect1.2_note15 | text | Yes | NULL | Descriptive text field | |
| P9 | text | Yes | NULL | ||
| P10 | text | Yes | NULL | ||
| sect1.2_note16 | text | Yes | NULL | Descriptive text field | |
| P11 | text | Yes | NULL | ||
| P12 | text | Yes | NULL | ||
| sect1.2_note18 | text | Yes | NULL | Descriptive text field | |
| BC1 | text | Yes | NULL | ||
| BC2 | text | Yes | NULL | ||
| sect1.2_note19 | text | Yes | NULL | Descriptive text field | |
| BC3 | text | Yes | NULL | ||
| BC4 | text | Yes | NULL | ||
| sect1.2_note20 | text | Yes | NULL | Descriptive text field | |
| BC5 | text | Yes | NULL | ||
| BC6 | text | Yes | NULL | ||
| knowledge_note1 | text | Yes | NULL | Descriptive text field | |
| U1A | text | Yes | NULL | ||
| U1B | text | Yes | NULL | ||
| U1C | text | Yes | NULL | ||
| U1E | text | Yes | NULL | ||
| U1F | text | Yes | NULL | ||
| note_dqknowledge1 | text | Yes | NULL | Descriptive text field | |
| U2 | text | Yes | NULL | ||
| U3 | text | Yes | NULL | ||
| sect1.4_note | text | Yes | NULL | Descriptive text field | |
| SE1 | text | Yes | NULL | ||
| SE2 | text | Yes | NULL | ||
| SE3 | text | Yes | NULL | ||
| SE4 | text | Yes | NULL | ||
| SE5 | text | Yes | NULL | ||
| SE6 | text | Yes | NULL | ||
| OBAT113 | text | Yes | NULL | ||
| instanceID | text | Yes | NULL | ||
| instanceName | text | Yes | NULL | Name or title field | |
| formdef_version | text | Yes | NULL | ||
| review_quality | text | Yes | NULL | ||
| review_status | text | Yes | NULL | ||
| KEY | text | Yes | NULL |
This table has no foreign key relationships.
| CompletionDate | SubmissionDate | starttime | endtime | deviceid | subscriberid | simid | devicephonenum | username | duration | caseid | OBAT101 | OBAT102 | OBAT103 | OBAT104 | admin_lvl | OBAT105 | OBAT106 | OBAT107 | OBAT108 | tmp_obat106 | tmp_obat107 | tmp_obat108 | siteid | OBAT109f | OBAT110f | OBAT111 | OBAT112 | intro | DD1 | DD2 | DD3a | DD3b | DD4a | DD4b | DD5a | DD5b | DD5c_1 | DD5c_2 | DD5c_3 | DD5c_5 | DD5c_96 | DD5co | sect1.2_note1 | sect1.2_note2 | D1 | D2 | sect1.2_note3 | D3 | D4 | sect1.2_note4 | D5 | D6 | D7 | sect1.2_note5 | D8 | D9 | D10 | sect1.2_note6 | S1 | S2 | sect1.2_note7 | S3 | S4 | sect1.2_note8 | S5 | S6 | sect1.2_note9 | S7a | S7b | sect1.2_note10 | S8 | S9 | sect1.2_note11 | P1 | P2 | sect1.2_note12 | P3 | P4 | sect1.2_note13 | P5 | P6 | sect1.2_note14 | P7 | P8 | sect1.2_note15 | P9 | P10 | sect1.2_note16 | P11 | P12 | sect1.2_note18 | BC1 | BC2 | sect1.2_note19 | BC3 | BC4 | sect1.2_note20 | BC5 | BC6 | knowledge_note1 | U1A | U1B | U1C | U1E | U1F | note_dqknowledge1 | U2 | U3 | sect1.4_note | SE1 | SE2 | SE3 | SE4 | SE5 | SE6 | OBAT113 | instanceID | instanceName | formdef_version | review_quality | review_status | KEY |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| May 11, 2024 12:20:21 PM | May 11, 2024 12:20:21 PM | May 10, 2024 7:49:33 AM | May 10, 2024 7:54:52 AM | 353316097349206 | impacteval | 319 | May 10, 2024 | Gm | 123 | 4 | 2 | XU2wpLlX4Vk | Ambo | Ambo | 1233 | Ambo | Ambo | 1233 | XU2wpLlX4Vk-Ambo-Ambo-1233 | Aware hc | 1 | 1 | 7:50:27 AM | 4 | 2 | 3 | 6 | 7 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | Dagu,Datim | 4 | 4 | 2 | 3 | 3 | 3 | 5 | 2 | 4 | 3 | 5 | 5 | 3 | 3 | 3 | 5 | 3 | 3 | 3 | 4 | 4 | 3 | 4 | 3 | 3 | 3 | 3 | 3 | 4 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 1 | 3 | 1 | 2 | 1 | 3 | 1 | 5 | 6 | 7 | 5 | 6 | 7 | 7:54:43 AM | uuid:89a05c69-f22b-4e60-b6b8-a23c0b02b7f7 | XU2wpLlX4Vk-Ambo-Ambo-1233 | 2204252125 | APPROVED | uuid:89a05c69-f22b-4e60-b6b8-a23c0b02b7f7 |
Showing 1 sample records. Hover over cells to see full content.
ethprism_facility_level_rhis_performance_diagnostic
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| CompletionDate | text | Yes | NULL | Date/time field | |
| SubmissionDate | text | Yes | NULL | Date/time field | |
| starttime | text | Yes | NULL | Date/time field | |
| endtime | text | Yes | NULL | Date/time field | |
| deviceid | text | Yes | NULL | ||
| subscriberid | text | Yes | NULL | ||
| simid | text | Yes | NULL | ||
| devicephonenum | text | Yes | NULL | Phone number field | |
| username | text | Yes | NULL | Name or title field | |
| duration | text | Yes | NULL | ||
| caseid | text | Yes | NULL | ||
| FQ104 | text | Yes | NULL | ||
| FQ101 | text | Yes | NULL | ||
| FQ102 | text | Yes | NULL | ||
| FQ103 | text | Yes | NULL | ||
| FQ105 | text | Yes | NULL | ||
| FQ106 | text | Yes | NULL | ||
| FQ107 | text | Yes | NULL | ||
| FQ108 | text | Yes | NULL | ||
| siteid | text | Yes | NULL | ||
| FQ109 | text | Yes | NULL | ||
| FQ110 | text | Yes | NULL | ||
| FQ111 | text | Yes | NULL | ||
| intro | text | Yes | NULL | ||
| FQ112 | text | Yes | NULL | ||
| revw_mos_note | text | Yes | NULL | Descriptive text field | |
| Month1 | text | Yes | NULL | ||
| month1_fmt | text | Yes | NULL | ||
| Month2 | text | Yes | NULL | ||
| month2_fmt | text | Yes | NULL | ||
| Month3 | text | Yes | NULL | ||
| month3_fmt | text | Yes | NULL | ||
| FQ010 | text | Yes | NULL | ||
| FQ011 | text | Yes | NULL | ||
| FQ012a | text | Yes | NULL | ||
| FQ012b | text | Yes | NULL | ||
| FQ013 | text | Yes | NULL | ||
| FQ014 | text | Yes | NULL | ||
| fq015_label | text | Yes | NULL | ||
| FQ015a | text | Yes | NULL | ||
| FQ015b | text | Yes | NULL | ||
| FQ015c | text | Yes | NULL | ||
| FQ015d | text | Yes | NULL | ||
| FQ016_1 | text | Yes | NULL | ||
| fq017_note1 | text | Yes | NULL | Descriptive text field | |
| fq017_note2 | text | Yes | NULL | Descriptive text field | |
| FQ017_1a | text | Yes | NULL | ||
| FQ017_2a | text | Yes | NULL | ||
| FQ017_3a | text | Yes | NULL | ||
| sba_src_avail1 | text | Yes | NULL | ||
| sba_src_avail2 | text | Yes | NULL | ||
| sba_src_avail3 | text | Yes | NULL | ||
| sba_src_avail_note | text | Yes | NULL | Descriptive text field | |
| sba_src_compl1 | text | Yes | NULL | ||
| sba_src_compl2 | text | Yes | NULL | ||
| sba_src_compl3 | text | Yes | NULL | ||
| sba_src_compl_note | text | Yes | NULL | Descriptive text field | |
| sba_srcdoc_rpts6 | text | Yes | NULL | ||
| FQ017_1b | text | Yes | NULL | ||
| FQ017_2b | text | Yes | NULL | ||
| FQ017_3b | text | Yes | NULL | ||
| fq020_note1 | text | Yes | NULL | Descriptive text field | |
| fq020_note2 | text | Yes | NULL | Descriptive text field | |
| FQ020_1a | text | Yes | NULL | ||
| FQ020_2a | text | Yes | NULL | ||
| FQ020_3a | text | Yes | NULL | ||
| sba_rpt_avail1 | text | Yes | NULL | ||
| sba_rpt_avail2 | text | Yes | NULL | ||
| sba_rpt_avail3 | text | Yes | NULL | ||
| sba_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| sba_rpt_compl1 | text | Yes | NULL | ||
| sba_rpt_compl2 | text | Yes | NULL | ||
| sba_rpt_compl3 | text | Yes | NULL | ||
| sba_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| sba_srcdoc_rpts9 | text | Yes | NULL | ||
| FQ020_1b | text | Yes | NULL | ||
| FQ020_2b | text | Yes | NULL | ||
| FQ020_3b | text | Yes | NULL | ||
| tmp_fq017_1b | text | Yes | NULL | ||
| tmp_fq020_1b | text | Yes | NULL | ||
| tmp_sba_vf1 | text | Yes | NULL | ||
| sba_vf1 | text | Yes | NULL | ||
| tmp_sba_vf1_diff | text | Yes | NULL | ||
| sba_vf1_diff | text | Yes | NULL | ||
| tmp_fq017_2b | text | Yes | NULL | ||
| tmp_fq020_2b | text | Yes | NULL | ||
| tmp_sba_vf2 | text | Yes | NULL | ||
| sba_vf2 | text | Yes | NULL | ||
| tmp_sba_vf2_diff | text | Yes | NULL | ||
| sba_vf2_diff | text | Yes | NULL | ||
| tmp_fq017_3b | text | Yes | NULL | ||
| tmp_fq020_3b | text | Yes | NULL | ||
| tmp_sba_vf3 | text | Yes | NULL | ||
| sba_vf3 | text | Yes | NULL | ||
| tmp_sba_vf3_diff | text | Yes | NULL | ||
| sba_vf3_diff | text | Yes | NULL | ||
| sba_vf1_note | text | Yes | NULL | Descriptive text field | |
| sba_vf2_note | text | Yes | NULL | Descriptive text field | |
| sba_vf3_note | text | Yes | NULL | Descriptive text field | |
| sba_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ024 | text | Yes | NULL | ||
| FQ025 | text | Yes | NULL | ||
| fq026_label | text | Yes | NULL | ||
| FQ026a | text | Yes | NULL | ||
| FQ026b | text | Yes | NULL | ||
| FQ026c | text | Yes | NULL | ||
| FQ026d | text | Yes | NULL | ||
| FQ027_1 | text | Yes | NULL | ||
| fq028_note1 | text | Yes | NULL | Descriptive text field | |
| fq028_note2 | text | Yes | NULL | Descriptive text field | |
| FQ028_1a | text | Yes | NULL | ||
| FQ028_2a | text | Yes | NULL | ||
| FQ028_3a | text | Yes | NULL | ||
| dtp3_src_avail1 | text | Yes | NULL | ||
| dtp3_src_avail2 | text | Yes | NULL | ||
| dtp3_src_avail3 | text | Yes | NULL | ||
| dtp3_src_avail_note | text | Yes | NULL | Descriptive text field | |
| dtp3_src_compl1 | text | Yes | NULL | ||
| dtp3_src_compl2 | text | Yes | NULL | ||
| dtp3_src_compl3 | text | Yes | NULL | ||
| dtp3_src_compl_note | text | Yes | NULL | Descriptive text field | |
| dtp3_srcdoc_rpts5 | text | Yes | NULL | ||
| FQ028_1b | text | Yes | NULL | ||
| FQ028_2b | text | Yes | NULL | ||
| FQ028_3b | text | Yes | NULL | ||
| fq031_note1 | text | Yes | NULL | Descriptive text field | |
| fq031_note2 | text | Yes | NULL | Descriptive text field | |
| FQ031_1a | text | Yes | NULL | ||
| FQ031_2a | text | Yes | NULL | ||
| FQ031_3a | text | Yes | NULL | ||
| dtp3_rpt_avail1 | text | Yes | NULL | ||
| dtp3_rpt_avail2 | text | Yes | NULL | ||
| dtp3_rpt_avail3 | text | Yes | NULL | ||
| dtp3_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| dtp3_rpt_compl1 | text | Yes | NULL | ||
| dtp3_rpt_compl2 | text | Yes | NULL | ||
| dtp3_rpt_compl3 | text | Yes | NULL | ||
| dtp3_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| dtp3_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ031_1b | text | Yes | NULL | ||
| FQ031_2b | text | Yes | NULL | ||
| FQ031_3b | text | Yes | NULL | ||
| tmp_fq028_1b | text | Yes | NULL | ||
| tmp_fq031_1b | text | Yes | NULL | ||
| tmp_dtp3_vf1 | text | Yes | NULL | ||
| dtp3_vf1 | text | Yes | NULL | ||
| tmp_dtp3_vf1_diff | text | Yes | NULL | ||
| dtp3_vf1_diff | text | Yes | NULL | ||
| tmp_fq028_2b | text | Yes | NULL | ||
| tmp_fq031_2b | text | Yes | NULL | ||
| tmp_dtp3_vf2 | text | Yes | NULL | ||
| dtp3_vf2 | text | Yes | NULL | ||
| tmp_dtp3_vf2_diff | text | Yes | NULL | ||
| dtp3_vf2_diff | text | Yes | NULL | ||
| tmp_fq028_3b | text | Yes | NULL | ||
| tmp_fq031_3b | text | Yes | NULL | ||
| tmp_dtp3_vf3 | text | Yes | NULL | ||
| dtp3_vf3 | text | Yes | NULL | ||
| tmp_dtp3_vf3_diff | text | Yes | NULL | ||
| dtp3_vf3_diff | text | Yes | NULL | ||
| dtp3_vf1_note | text | Yes | NULL | Descriptive text field | |
| dtp3_vf2_note | text | Yes | NULL | Descriptive text field | |
| dtp3_vf3_note | text | Yes | NULL | Descriptive text field | |
| dtp3_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ034_1 | text | Yes | NULL | ||
| FQ035 | text | Yes | NULL | ||
| FQ036 | text | Yes | NULL | ||
| fq037_label | text | Yes | NULL | ||
| FQ037a | text | Yes | NULL | ||
| FQ037b | text | Yes | NULL | ||
| FQ037c | text | Yes | NULL | ||
| FQ037d | text | Yes | NULL | ||
| FQ038_1 | text | Yes | NULL | ||
| fq039_note1 | text | Yes | NULL | Descriptive text field | |
| fq039_note2 | text | Yes | NULL | Descriptive text field | |
| FQ039_1a | text | Yes | NULL | ||
| FQ039_2a | text | Yes | NULL | ||
| FQ039_3a | text | Yes | NULL | ||
| mcm_src_avail1 | text | Yes | NULL | ||
| mcm_src_avail2 | text | Yes | NULL | ||
| mcm_src_avail3 | text | Yes | NULL | ||
| mcm_src_avail_note | text | Yes | NULL | Descriptive text field | |
| mcm_src_compl1 | text | Yes | NULL | ||
| mcm_src_compl2 | text | Yes | NULL | ||
| mcm_src_compl3 | text | Yes | NULL | ||
| mcm_src_compl_note | text | Yes | NULL | Descriptive text field | |
| mcm_srcdoc_rpts5 | text | Yes | NULL | ||
| FQ039_1b | text | Yes | NULL | ||
| FQ039_2b | text | Yes | NULL | ||
| FQ039_3b | text | Yes | NULL | ||
| fq042_note1 | text | Yes | NULL | Descriptive text field | |
| fq042_note2 | text | Yes | NULL | Descriptive text field | |
| FQ042_1a | text | Yes | NULL | ||
| FQ042_2a | text | Yes | NULL | ||
| FQ042_3a | text | Yes | NULL | ||
| mcm_rpt_avail1 | text | Yes | NULL | ||
| mcm_rpt_avail2 | text | Yes | NULL | ||
| mcm_rpt_avail3 | text | Yes | NULL | ||
| mcm_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| mcm_rpt_compl1 | text | Yes | NULL | ||
| mcm_rpt_compl2 | text | Yes | NULL | ||
| mcm_rpt_compl3 | text | Yes | NULL | ||
| mcm_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| mcm_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ042_1b | text | Yes | NULL | ||
| FQ042_2b | text | Yes | NULL | ||
| FQ042_3b | text | Yes | NULL | ||
| tmp_fq039_1b | text | Yes | NULL | ||
| tmp_fq042_1b | text | Yes | NULL | ||
| tmp_mcm_vf1 | text | Yes | NULL | ||
| mcm_vf1 | text | Yes | NULL | ||
| tmp_mcm_vf1_diff | text | Yes | NULL | ||
| mcm_vf1_diff | text | Yes | NULL | ||
| tmp_fq039_2b | text | Yes | NULL | ||
| tmp_fq042_2b | text | Yes | NULL | ||
| tmp_mcm_vf2 | text | Yes | NULL | ||
| mcm_vf2 | text | Yes | NULL | ||
| tmp_mcm_vf2_diff | text | Yes | NULL | ||
| mcm_vf2_diff | text | Yes | NULL | ||
| tmp_fq039_3b | text | Yes | NULL | ||
| tmp_fq042_3b | text | Yes | NULL | ||
| tmp_mcm_vf3 | text | Yes | NULL | ||
| mcm_vf3 | text | Yes | NULL | ||
| tmp_mcm_vf3_diff | text | Yes | NULL | ||
| mcm_vf3_diff | text | Yes | NULL | ||
| mcm_vf1_note | text | Yes | NULL | Descriptive text field | |
| mcm_vf2_note | text | Yes | NULL | Descriptive text field | |
| mcm_vf3_note | text | Yes | NULL | Descriptive text field | |
| mcm_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ046 | text | Yes | NULL | ||
| hivpos_src_avail1 | text | Yes | NULL | ||
| hivpos_src_avail2 | text | Yes | NULL | ||
| hivpos_src_avail3 | text | Yes | NULL | ||
| hivpos_src_compl1 | text | Yes | NULL | ||
| hivpos_src_compl2 | text | Yes | NULL | ||
| hivpos_src_compl3 | text | Yes | NULL | ||
| hivpos_rpt_avail1 | text | Yes | NULL | ||
| hivpos_rpt_avail2 | text | Yes | NULL | ||
| hivpos_rpt_avail3 | text | Yes | NULL | ||
| hivpos_rpt_compl1 | text | Yes | NULL | ||
| hivpos_rpt_compl2 | text | Yes | NULL | ||
| hivpos_rpt_compl3 | text | Yes | NULL | ||
| tmp_fq050_1b | text | Yes | NULL | ||
| tmp_fq053_1b | text | Yes | NULL | ||
| tmp_hivpos_vf1 | text | Yes | NULL | ||
| hivpos_vf1 | text | Yes | NULL | ||
| tmp_hivpos_vf1_diff | text | Yes | NULL | ||
| hivpos_vf1_diff | text | Yes | NULL | ||
| tmp_fq050_2b | text | Yes | NULL | ||
| tmp_fq053_2b | text | Yes | NULL | ||
| tmp_hivpos_vf2 | text | Yes | NULL | ||
| hivpos_vf2 | text | Yes | NULL | ||
| tmp_hivpos_vf2_diff | text | Yes | NULL | ||
| hivpos_vf2_diff | text | Yes | NULL | ||
| tmp_fq050_3b | text | Yes | NULL | ||
| tmp_fq053_3b | text | Yes | NULL | ||
| tmp_hivpos_vf3 | text | Yes | NULL | ||
| hivpos_vf3 | text | Yes | NULL | ||
| tmp_hivpos_vf3_diff | text | Yes | NULL | ||
| hivpos_vf3_diff | text | Yes | NULL | ||
| FQ057 | text | Yes | NULL | ||
| malaria_src_avail1 | text | Yes | NULL | ||
| malaria_src_avail2 | text | Yes | NULL | ||
| malaria_src_avail3 | text | Yes | NULL | ||
| malaria_src_compl1 | text | Yes | NULL | ||
| malaria_src_compl2 | text | Yes | NULL | ||
| malaria_src_compl3 | text | Yes | NULL | ||
| malaria_rpt_avail1 | text | Yes | NULL | ||
| malaria_rpt_avail2 | text | Yes | NULL | ||
| malaria_rpt_avail3 | text | Yes | NULL | ||
| malaria_rpt_compl1 | text | Yes | NULL | ||
| malaria_rpt_compl2 | text | Yes | NULL | ||
| malaria_rpt_compl3 | text | Yes | NULL | ||
| tmp_fq061_1b | text | Yes | NULL | ||
| tmp_fq064_1b | text | Yes | NULL | ||
| tmp_malaria_vf1 | text | Yes | NULL | ||
| malaria_vf1 | text | Yes | NULL | ||
| tmp_malaria_vf1_diff | text | Yes | NULL | ||
| malaria_vf1_diff | text | Yes | NULL | ||
| tmp_fq061_2b | text | Yes | NULL | ||
| tmp_fq064_2b | text | Yes | NULL | ||
| tmp_malaria_vf2 | text | Yes | NULL | ||
| malaria_vf2 | text | Yes | NULL | ||
| tmp_malaria_vf2_diff | text | Yes | NULL | ||
| malaria_vf2_diff | text | Yes | NULL | ||
| tmp_fq061_3b | text | Yes | NULL | ||
| tmp_fq064_3b | text | Yes | NULL | ||
| tmp_malaria_vf3 | text | Yes | NULL | ||
| malaria_vf3 | text | Yes | NULL | ||
| tmp_malaria_vf3_diff | text | Yes | NULL | ||
| malaria_vf3_diff | text | Yes | NULL | ||
| FQ068 | text | Yes | NULL | ||
| FQ069 | text | Yes | NULL | ||
| fq070_label | text | Yes | NULL | ||
| FQ070a | text | Yes | NULL | ||
| FQ070b | text | Yes | NULL | ||
| FQ070c | text | Yes | NULL | ||
| FQ070d | text | Yes | NULL | ||
| FQ071_1 | text | Yes | NULL | ||
| fq072_note1 | text | Yes | NULL | Descriptive text field | |
| fq072_note2 | text | Yes | NULL | Descriptive text field | |
| FQ072_1a | text | Yes | NULL | ||
| FQ072_2a | text | Yes | NULL | ||
| FQ072_3a | text | Yes | NULL | ||
| pneum_src_avail1 | text | Yes | NULL | ||
| pneum_src_avail2 | text | Yes | NULL | ||
| pneum_src_avail3 | text | Yes | NULL | ||
| pneum_src_avail_note | text | Yes | NULL | Descriptive text field | |
| pneum_src_compl1 | text | Yes | NULL | ||
| pneum_src_compl2 | text | Yes | NULL | ||
| pneum_src_compl3 | text | Yes | NULL | ||
| pneum_src_compl_note | text | Yes | NULL | Descriptive text field | |
| FQ074_1 | text | Yes | NULL | ||
| FQ072_1b | text | Yes | NULL | ||
| FQ072_2b | text | Yes | NULL | ||
| FQ072_3b | text | Yes | NULL | ||
| fq075_note1 | text | Yes | NULL | Descriptive text field | |
| fq075_note2 | text | Yes | NULL | Descriptive text field | |
| FQ075_1a | text | Yes | NULL | ||
| FQ075_2a | text | Yes | NULL | ||
| FQ075_3a | text | Yes | NULL | ||
| pneum_rpt_avail1 | text | Yes | NULL | ||
| pneum_rpt_avail2 | text | Yes | NULL | ||
| pneum_rpt_avail3 | text | Yes | NULL | ||
| pneum_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| pneum_rpt_compl1 | text | Yes | NULL | ||
| pneum_rpt_compl2 | text | Yes | NULL | ||
| pneum_rpt_compl3 | text | Yes | NULL | ||
| pneum_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| FQ077_1 | text | Yes | NULL | ||
| FQ075_1b | text | Yes | NULL | ||
| FQ075_2b | text | Yes | NULL | ||
| FQ075_3b | text | Yes | NULL | ||
| tmp_fq072_1b | text | Yes | NULL | ||
| tmp_fq075_1b | text | Yes | NULL | ||
| tmp_pneum_vf1 | text | Yes | NULL | ||
| pneum_vf1 | text | Yes | NULL | ||
| tmp_pneum_vf1_diff | text | Yes | NULL | ||
| pneum_vf1_diff | text | Yes | NULL | ||
| tmp_fq072_2b | text | Yes | NULL | ||
| tmp_fq075_2b | text | Yes | NULL | ||
| tmp_pneum_vf2 | text | Yes | NULL | ||
| pneum_vf2 | text | Yes | NULL | ||
| tmp_pneum_vf2_diff | text | Yes | NULL | ||
| pneum_vf2_diff | text | Yes | NULL | ||
| tmp_fq072_3b | text | Yes | NULL | ||
| tmp_fq075_3b | text | Yes | NULL | ||
| tmp_pneum_vf3 | text | Yes | NULL | ||
| pneum_vf3 | text | Yes | NULL | ||
| tmp_pneum_vf3_diff | text | Yes | NULL | ||
| pneum_vf3_diff | text | Yes | NULL | ||
| pneum_vf1_note | text | Yes | NULL | Descriptive text field | |
| pneum_vf2_note | text | Yes | NULL | Descriptive text field | |
| pneum_vf3_note | text | Yes | NULL | Descriptive text field | |
| pneum_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ079 | text | Yes | NULL | ||
| inpatient_src_avail1 | text | Yes | NULL | ||
| inpatient_src_avail2 | text | Yes | NULL | ||
| inpatient_src_avail3 | text | Yes | NULL | ||
| inpatient_src_compl1 | text | Yes | NULL | ||
| inpatient_src_compl2 | text | Yes | NULL | ||
| inpatient_src_compl3 | text | Yes | NULL | ||
| inpatient_rpt_avail1 | text | Yes | NULL | ||
| inpatient_rpt_avail2 | text | Yes | NULL | ||
| inpatient_rpt_avail3 | text | Yes | NULL | ||
| inpatient_rpt_compl1 | text | Yes | NULL | ||
| inpatient_rpt_compl2 | text | Yes | NULL | ||
| inpatient_rpt_compl3 | text | Yes | NULL | ||
| tmp_fq083_1b | text | Yes | NULL | ||
| tmp_fq086_1b | text | Yes | NULL | ||
| tmp_inpatient_vf1 | text | Yes | NULL | ||
| inpatient_vf1 | text | Yes | NULL | ||
| tmp_inpatient_vf1_diff | text | Yes | NULL | ||
| inpatient_vf1_diff | text | Yes | NULL | ||
| tmp_fq083_2b | text | Yes | NULL | ||
| tmp_fq086_2b | text | Yes | NULL | ||
| tmp_inpatient_vf2 | text | Yes | NULL | ||
| inpatient_vf2 | text | Yes | NULL | ||
| tmp_inpatient_vf2_diff | text | Yes | NULL | ||
| inpatient_vf2_diff | text | Yes | NULL | ||
| tmp_fq083_3b | text | Yes | NULL | ||
| tmp_fq086_3b | text | Yes | NULL | ||
| tmp_inpatient_vf3 | text | Yes | NULL | ||
| inpatient_vf3 | text | Yes | NULL | ||
| tmp_inpatient_vf3_diff | text | Yes | NULL | ||
| inpatient_vf3_diff | text | Yes | NULL | ||
| FQ090 | text | Yes | NULL | ||
| tb_src_avail | text | Yes | NULL | ||
| tb_src_compl | text | Yes | NULL | ||
| tb_rpt_avail | text | Yes | NULL | ||
| tb_rpt_compl | text | Yes | NULL | ||
| tmp_fq096 | text | Yes | NULL | ||
| tmp_fq099b | text | Yes | NULL | ||
| tmp_tb_vf | text | Yes | NULL | ||
| tb_vf | text | Yes | NULL | ||
| tmp_tb_vf_diff | text | Yes | NULL | ||
| tb_vf_diff | text | Yes | NULL | ||
| FQ204a | text | Yes | NULL | ||
| FQ204b | text | Yes | NULL | ||
| FQ205 | text | Yes | NULL | ||
| fq0206_note | text | Yes | NULL | Descriptive text field | |
| fq0206_label1 | text | Yes | NULL | ||
| FQ206_1_ser | text | Yes | NULL | ||
| FQ206_1_ipd | text | Yes | NULL | ||
| FQ206_1_opd | text | Yes | NULL | ||
| fq206_label2 | text | Yes | NULL | ||
| FQ206_2_ser | text | Yes | NULL | ||
| FQ206_2_ipd | text | Yes | NULL | ||
| FQ206_2_opd | text | Yes | NULL | ||
| fq206_label3 | text | Yes | NULL | ||
| FQ206_3_ser | text | Yes | NULL | ||
| FQ206_3_ipd | text | Yes | NULL | ||
| FQ206_3_opd | text | Yes | NULL | ||
| FQ207 | text | Yes | NULL | ||
| FQ208 | text | Yes | NULL | ||
| FQ209_label1 | text | Yes | NULL | ||
| FQ_209_01_ser | text | Yes | NULL | ||
| FQ_209_01_dis | text | Yes | NULL | ||
| FQ209_label2 | text | Yes | NULL | ||
| FQ_209_02_ser | text | Yes | NULL | ||
| FQ_209_02_dis | text | Yes | NULL | ||
| FQ209_label3 | text | Yes | NULL | ||
| FQ_209_03_ser | text | Yes | NULL | ||
| FQ_209_03_dis | text | Yes | NULL | ||
| FQ210 | text | Yes | NULL | ||
| FQ211 | text | Yes | NULL | ||
| FQ212 | text | Yes | NULL | ||
| FQ213_note1 | text | Yes | NULL | Descriptive text field | |
| FQ213_1a | text | Yes | NULL | ||
| FQ213_1b | text | Yes | NULL | ||
| FQ213_note2 | text | Yes | NULL | Descriptive text field | |
| FQ213_2a | text | Yes | NULL | ||
| FQ213_2b | text | Yes | NULL | ||
| FQ213_note3 | text | Yes | NULL | Descriptive text field | |
| FQ213_3a | text | Yes | NULL | ||
| FQ213_3b | text | Yes | NULL | ||
| FQ213_note4 | text | Yes | NULL | Descriptive text field | |
| FQ213_4a | text | Yes | NULL | ||
| FQ213_4b | text | Yes | NULL | ||
| FQ213_note5 | text | Yes | NULL | Descriptive text field | |
| FQ213_5a | text | Yes | NULL | ||
| FQ213_5b | text | Yes | NULL | ||
| FQ214_note1 | text | Yes | NULL | Descriptive text field | |
| FQ214a | text | Yes | NULL | ||
| FQ214b | text | Yes | NULL | ||
| FQ214c | text | Yes | NULL | ||
| FQ214d | text | Yes | NULL | ||
| FQ214_note2 | text | Yes | NULL | Descriptive text field | |
| FQ214e | text | Yes | NULL | ||
| FQ214f | text | Yes | NULL | ||
| FQ214g | text | Yes | NULL | ||
| FQ215 | text | Yes | NULL | ||
| FQ216 | text | Yes | NULL | ||
| FQ217 | text | Yes | NULL | ||
| FQ218_note1 | text | Yes | NULL | Descriptive text field | |
| FQ218a_ser | text | Yes | NULL | ||
| FQ218a_dis | text | Yes | NULL | ||
| FQ218a_qrtr | text | Yes | NULL | ||
| FQ218_note2 | text | Yes | NULL | Descriptive text field | |
| FQ218b_ser | text | Yes | NULL | ||
| FQ218b_dis | text | Yes | NULL | ||
| FQ218b_qrtr | text | Yes | NULL | ||
| FQ218_note3 | text | Yes | NULL | Descriptive text field | |
| FQ218c_ser | text | Yes | NULL | ||
| FQ218c_dis | text | Yes | NULL | ||
| FQ218c_qrtr | text | Yes | NULL | ||
| fq218_tot_ser | text | Yes | NULL | ||
| fq218_tot_dis | text | Yes | NULL | ||
| fq218_tot_qrtr | text | Yes | NULL | ||
| fq218_total | text | Yes | NULL | ||
| fq218_note_ser | text | Yes | NULL | Descriptive text field | |
| fq218_note_dis | text | Yes | NULL | Descriptive text field | |
| fq218_note_qrtr | text | Yes | NULL | Descriptive text field | |
| fq219_note1 | text | Yes | NULL | Descriptive text field | |
| FQ219_A1_ser | text | Yes | NULL | ||
| FQ219_A1_dis | text | Yes | NULL | ||
| fq219_note2 | text | Yes | NULL | Descriptive text field | |
| fq219_note3 | text | Yes | NULL | Descriptive text field | |
| tmp_fq219a1_ser | text | Yes | NULL | ||
| tmp_fq219a1_dis | text | Yes | NULL | ||
| tmp_fq219a2_ser | text | Yes | NULL | ||
| tmp_fq219a2_dis | text | Yes | NULL | ||
| tmp_fq219a3_ser | text | Yes | NULL | ||
| tmp_fq219a3_dis | text | Yes | NULL | ||
| fq219a_tot_ser | text | Yes | NULL | ||
| fq219a_tot_dis | text | Yes | NULL | ||
| tmp_rptg_ser_complns_hp1 | text | Yes | NULL | ||
| rptg_ser_complns_hp1 | text | Yes | NULL | ||
| tmp_rptg_dis_complns_hp1 | text | Yes | NULL | ||
| rptg_dis_complns_hp1 | text | Yes | NULL | ||
| rptg_sercomplns_hp1_note | text | Yes | NULL | Descriptive text field | |
| rptg_discomplns_hp1_note | text | Yes | NULL | Descriptive text field | |
| fq219_note4 | text | Yes | NULL | Descriptive text field | |
| FQ219_B1_ser | text | Yes | NULL | ||
| FQ219_B1_dis | text | Yes | NULL | ||
| fq219_note5 | text | Yes | NULL | Descriptive text field | |
| fq219_note6 | text | Yes | NULL | Descriptive text field | |
| tmp_fq219b1_ser | text | Yes | NULL | ||
| tmp_fq219b1_dis | text | Yes | NULL | ||
| tmp_fq219b2_ser | text | Yes | NULL | ||
| tmp_fq219b2_dis | text | Yes | NULL | ||
| tmp_fq219b3_ser | text | Yes | NULL | ||
| tmp_fq219b3_dis | text | Yes | NULL | ||
| fq219b_tot_ser | text | Yes | NULL | ||
| fq219b_tot_dis | text | Yes | NULL | ||
| tmp_rptg_ser_complns_hp2 | text | Yes | NULL | ||
| rptg_ser_complns_hp2 | text | Yes | NULL | ||
| tmp_rptg_dis_complns_hp2 | text | Yes | NULL | ||
| rptg_dis_complns_hp2 | text | Yes | NULL | ||
| rptg_sercomplns_hp2_note | text | Yes | NULL | Descriptive text field | |
| rptg_discomplns_hp2_note | text | Yes | NULL | Descriptive text field | |
| fq219_note7 | text | Yes | NULL | Descriptive text field | |
| FQ219_C1_ser | text | Yes | NULL | ||
| FQ219_C1_dis | text | Yes | NULL | ||
| FQ219_C1_qrtr | text | Yes | NULL | ||
| fq219_note8 | text | Yes | NULL | Descriptive text field | |
| fq219_note9 | text | Yes | NULL | Descriptive text field | |
| tmp_fq219c1_ser | text | Yes | NULL | ||
| tmp_fq219c1_dis | text | Yes | NULL | ||
| tmp_fq219c1_qrtr | text | Yes | NULL | ||
| tmp_fq219c2_ser | text | Yes | NULL | ||
| tmp_fq219c2_dis | text | Yes | NULL | ||
| tmp_fq219c2_qrtr | text | Yes | NULL | ||
| tmp_fq219c3_ser | text | Yes | NULL | ||
| tmp_fq219c3_dis | text | Yes | NULL | ||
| tmp_fq219c3_qrtr | text | Yes | NULL | ||
| fq219c_tot_ser | text | Yes | NULL | ||
| fq219c_tot_dis | text | Yes | NULL | ||
| fq219c_tot_qrtr | text | Yes | NULL | ||
| tmp_rptg_ser_complns_hp3 | text | Yes | NULL | ||
| rptg_ser_complns_hp3 | text | Yes | NULL | ||
| tmp_rptg_dis_complns_hp3 | text | Yes | NULL | ||
| rptg_dis_complns_hp3 | text | Yes | NULL | ||
| tmp_rptg_qrtr_complns_hp3 | text | Yes | NULL | ||
| rptg_qrtr_complns_hp3 | text | Yes | NULL | ||
| rptg_sercomplns_hp3_note | text | Yes | NULL | Descriptive text field | |
| rptg_discomplns_hp3_note | text | Yes | NULL | Descriptive text field | |
| rptg_qrtrcomplns_hp3_note | text | Yes | NULL | Descriptive text field | |
| compl_hc14 | text | Yes | NULL | ||
| FQ221 | text | Yes | NULL | ||
| FQ221b | text | Yes | NULL | ||
| FQ222 | text | Yes | NULL | ||
| fq223_note1 | text | Yes | NULL | Descriptive text field | |
| FQ223_01_ser | text | Yes | NULL | ||
| FQ223_01_dis | text | Yes | NULL | ||
| fq223_note2 | text | Yes | NULL | Descriptive text field | |
| FQ223_02_ser | text | Yes | NULL | ||
| FQ223_02_dis | text | Yes | NULL | ||
| fq223_note3 | text | Yes | NULL | Descriptive text field | |
| FQ223_03_ser | text | Yes | NULL | ||
| FQ223_03_dis | text | Yes | NULL | ||
| tmp_fq223_01_ser | text | Yes | NULL | ||
| tmp_fq223_01_dis | text | Yes | NULL | ||
| tmp_rpt_sertimelns_hp1 | text | Yes | NULL | Date/time field | |
| rpt_sertimelns_hp1 | text | Yes | NULL | Date/time field | |
| tmp_rpt_distimelns_hp1 | text | Yes | NULL | Date/time field | |
| rpt_distimelns_hp1 | text | Yes | NULL | Date/time field | |
| rpt_sertimelns_hp1_note | text | Yes | NULL | Date/time field | |
| rpt_distimelns_hp1_note | text | Yes | NULL | Date/time field | |
| tmp_fq223_02_ser | text | Yes | NULL | ||
| tmp_fq223_02_dis | text | Yes | NULL | ||
| tmp_rpt_sertimelns_hp2 | text | Yes | NULL | Date/time field | |
| rpt_sertimelns_hp2 | text | Yes | NULL | Date/time field | |
| tmp_rpt_distimelns_hp2 | text | Yes | NULL | Date/time field | |
| rpt_distimelns_hp2 | text | Yes | NULL | Date/time field | |
| rpt_sertimelns_hp2_note | text | Yes | NULL | Date/time field | |
| rpt_distimelns_hp2_note | text | Yes | NULL | Date/time field | |
| tmp_fq223_03_ser | text | Yes | NULL | ||
| tmp_fq223_03_dis | text | Yes | NULL | ||
| tmp_rpt_sertimelns_hp3 | text | Yes | NULL | Date/time field | |
| rpt_sertimelns_hp3 | text | Yes | NULL | Date/time field | |
| tmp_rpt_distimelns_hp3 | text | Yes | NULL | Date/time field | |
| rpt_distimelns_hp3 | text | Yes | NULL | Date/time field | |
| rpt_sertimelns_hp3_note | text | Yes | NULL | Date/time field | |
| rpt_distimelns_hp3_note | text | Yes | NULL | Date/time field | |
| FU003 | text | Yes | NULL | ||
| fu003_rcd | text | Yes | NULL | ||
| FU005 | text | Yes | NULL | ||
| FU006 | text | Yes | NULL | ||
| fu008_label1 | text | Yes | NULL | ||
| FU008_01 | text | Yes | NULL | ||
| FU008_02 | text | Yes | NULL | ||
| FU008_03 | text | Yes | NULL | ||
| FU008_04 | text | Yes | NULL | ||
| fu008_label2 | text | Yes | NULL | ||
| FU008_05 | text | Yes | NULL | ||
| FU008_06 | text | Yes | NULL | ||
| FU008_07 | text | Yes | NULL | ||
| FU009 | text | Yes | NULL | ||
| fu009_rcd | text | Yes | NULL | ||
| fu010_note | text | Yes | NULL | Descriptive text field | |
| FU010a | text | Yes | NULL | ||
| FU010b | text | Yes | NULL | ||
| FU011 | text | Yes | NULL | ||
| FU012 | text | Yes | NULL | ||
| FU013 | text | Yes | NULL | ||
| FU014 | text | Yes | NULL | ||
| FU015_label | text | Yes | NULL | ||
| FU015_01 | text | Yes | NULL | ||
| FU015_02 | text | Yes | NULL | ||
| FU015_03 | text | Yes | NULL | ||
| FU016 | text | Yes | NULL | ||
| note_dscnmkg1 | text | Yes | NULL | Descriptive text field | |
| FU018_01 | text | Yes | NULL | ||
| FU018_02 | text | Yes | NULL | ||
| FU018_03 | text | Yes | NULL | ||
| FU020_note | text | Yes | NULL | Descriptive text field | |
| FU020a | text | Yes | NULL | ||
| FU020b | text | Yes | NULL | ||
| FU021a_label | text | Yes | NULL | ||
| FU021a_01 | text | Yes | NULL | ||
| FU021a_02 | text | Yes | NULL | ||
| FU021a_03 | text | Yes | NULL | ||
| FU021a_04 | text | Yes | NULL | ||
| FU021a_05 | text | Yes | NULL | ||
| FU021a_06 | text | Yes | NULL | ||
| FU021a_07 | text | Yes | NULL | ||
| FU021b | text | Yes | NULL | ||
| FU021c | text | Yes | NULL | ||
| FU021d_label1 | text | Yes | NULL | ||
| FU021d_01 | text | Yes | NULL | ||
| FU021d_02 | text | Yes | NULL | ||
| FU021d_03 | text | Yes | NULL | ||
| FU021d_04 | text | Yes | NULL | ||
| FU021d_05 | text | Yes | NULL | ||
| FU021d_label2 | text | Yes | NULL | ||
| FU021d_06 | text | Yes | NULL | ||
| FU021d_07 | text | Yes | NULL | ||
| FU021d_08 | text | Yes | NULL | ||
| FU021d_09 | text | Yes | NULL | ||
| FU021d_10 | text | Yes | NULL | ||
| FU021e | text | Yes | NULL | ||
| FU021f | text | Yes | NULL | ||
| FU022 | text | Yes | NULL | ||
| FU023 | text | Yes | NULL | ||
| FU024 | text | Yes | NULL | ||
| FU025 | text | Yes | NULL | ||
| FU026 | text | Yes | NULL | ||
| FU027 | text | Yes | NULL | ||
| FU028 | text | Yes | NULL | ||
| FU030 | text | Yes | NULL | ||
| FU031 | text | Yes | NULL | ||
| FU032 | text | Yes | NULL | ||
| FU033 | text | Yes | NULL | ||
| FU034 | text | Yes | NULL | ||
| FU035 | text | Yes | NULL | ||
| FU036 | text | Yes | NULL | ||
| FU038 | text | Yes | NULL | ||
| FU039 | text | Yes | NULL | ||
| FU040 | text | Yes | NULL | ||
| FU041 | text | Yes | NULL | ||
| FU042 | text | Yes | NULL | ||
| FU043 | text | Yes | NULL | ||
| gps_note | text | Yes | NULL | Descriptive text field | |
| FQ113 | text | Yes | NULL | ||
| note_end | text | Yes | NULL | Descriptive text field | |
| instanceID | text | Yes | NULL | ||
| instanceName | text | Yes | NULL | Name or title field | |
| formdef_version | text | Yes | NULL | ||
| review_quality | text | Yes | NULL | ||
| review_status | text | Yes | NULL | ||
| KEY | text | Yes | NULL | ||
| FU037 | text | Yes | NULL | ||
| FQ027_2 | text | Yes | NULL | ||
| FQ030_1 | text | Yes | NULL | ||
| FQ030_4 | text | Yes | NULL | ||
| FQ038_2 | text | Yes | NULL | ||
| FQ041_1 | text | Yes | NULL | ||
| FQ041_4 | text | Yes | NULL | ||
| FQ045_1 | text | Yes | NULL | ||
| FQ045_2 | text | Yes | NULL | ||
| FQ045_3 | text | Yes | NULL | ||
| FQ045_4 | text | Yes | NULL | ||
| FQ047 | text | Yes | NULL | ||
| fq048_label | text | Yes | NULL | ||
| FQ048a | text | Yes | NULL | ||
| FQ048b | text | Yes | NULL | ||
| FQ048c | text | Yes | NULL | ||
| FQ048d | text | Yes | NULL | ||
| FQ049_1 | text | Yes | NULL | ||
| FQ049_2 | text | Yes | NULL | ||
| FQ049_3 | text | Yes | NULL | ||
| FQ049_4 | text | Yes | NULL | ||
| fq050_note1 | text | Yes | NULL | Descriptive text field | |
| fq050_note2 | text | Yes | NULL | Descriptive text field | |
| FQ050_1a | text | Yes | NULL | ||
| FQ050_2a | text | Yes | NULL | ||
| FQ050_3a | text | Yes | NULL | ||
| hivpos_src_avail_note | text | Yes | NULL | Descriptive text field | |
| hivpos_src_compl_note | text | Yes | NULL | Descriptive text field | |
| hivpos_srcdoc_rpts5 | text | Yes | NULL | ||
| FQ050_1b | text | Yes | NULL | ||
| FQ050_2b | text | Yes | NULL | ||
| FQ050_3b | text | Yes | NULL | ||
| fq053_note1 | text | Yes | NULL | Descriptive text field | |
| fq053_note2 | text | Yes | NULL | Descriptive text field | |
| FQ053_1a | text | Yes | NULL | ||
| FQ053_2a | text | Yes | NULL | ||
| FQ053_3a | text | Yes | NULL | ||
| hivpos_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| hivpos_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| hivpos_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ053_1b | text | Yes | NULL | ||
| FQ053_2b | text | Yes | NULL | ||
| FQ053_3b | text | Yes | NULL | ||
| hivpos_vf1_note | text | Yes | NULL | Descriptive text field | |
| hivpos_vf2_note | text | Yes | NULL | Descriptive text field | |
| hivpos_vf3_note | text | Yes | NULL | Descriptive text field | |
| hivpos_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ058 | text | Yes | NULL | ||
| fq059_label | text | Yes | NULL | ||
| FQ059a | text | Yes | NULL | ||
| FQ059b | text | Yes | NULL | ||
| FQ059c | text | Yes | NULL | ||
| FQ059d | text | Yes | NULL | ||
| FQ060_1 | text | Yes | NULL | ||
| FQ060_96 | text | Yes | NULL | ||
| FQ060o | text | Yes | NULL | ||
| fq061_note1 | text | Yes | NULL | Descriptive text field | |
| fq061_note2 | text | Yes | NULL | Descriptive text field | |
| FQ061_1a | text | Yes | NULL | ||
| FQ061_2a | text | Yes | NULL | ||
| FQ061_3a | text | Yes | NULL | ||
| malaria_src_avail_note | text | Yes | NULL | Descriptive text field | |
| malaria_src_compl_note | text | Yes | NULL | Descriptive text field | |
| malaria_srcdoc_rpts5 | text | Yes | NULL | ||
| FQ061_1b | text | Yes | NULL | ||
| FQ061_2b | text | Yes | NULL | ||
| FQ061_3b | text | Yes | NULL | ||
| fq064_note1 | text | Yes | NULL | Descriptive text field | |
| fq064_note2 | text | Yes | NULL | Descriptive text field | |
| FQ064_1a | text | Yes | NULL | ||
| FQ064_2a | text | Yes | NULL | ||
| FQ064_3a | text | Yes | NULL | ||
| malaria_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| malaria_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| malaria_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ064_1b | text | Yes | NULL | ||
| FQ064_2b | text | Yes | NULL | ||
| FQ064_3b | text | Yes | NULL | ||
| malaria_vf1_note | text | Yes | NULL | Descriptive text field | |
| malaria_vf2_note | text | Yes | NULL | Descriptive text field | |
| malaria_vf3_note | text | Yes | NULL | Descriptive text field | |
| malaria_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ071_2 | text | Yes | NULL | ||
| pneum_srcdoc_rpts5 | text | Yes | NULL | ||
| pneum_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ078_2 | text | Yes | NULL | ||
| FQ078_5 | text | Yes | NULL | ||
| FQ080 | text | Yes | NULL | ||
| fq081_label | text | Yes | NULL | ||
| FQ081a | text | Yes | NULL | ||
| FQ081b | text | Yes | NULL | ||
| FQ081c | text | Yes | NULL | ||
| FQ081d | text | Yes | NULL | ||
| FQ082_1 | text | Yes | NULL | ||
| FQ082_2 | text | Yes | NULL | ||
| fq083_note1 | text | Yes | NULL | Descriptive text field | |
| fq083_note2 | text | Yes | NULL | Descriptive text field | |
| FQ083_1a | text | Yes | NULL | ||
| FQ083_2a | text | Yes | NULL | ||
| FQ083_3a | text | Yes | NULL | ||
| inpatient_src_avail_note | text | Yes | NULL | Descriptive text field | |
| inpatient_src_compl_note | text | Yes | NULL | Descriptive text field | |
| FQ085_1 | text | Yes | NULL | ||
| FQ085_4 | text | Yes | NULL | ||
| FQ083_1b | text | Yes | NULL | ||
| FQ083_2b | text | Yes | NULL | ||
| FQ083_3b | text | Yes | NULL | ||
| fq086_note1 | text | Yes | NULL | Descriptive text field | |
| fq086_note2 | text | Yes | NULL | Descriptive text field | |
| FQ086_1a | text | Yes | NULL | ||
| FQ086_2a | text | Yes | NULL | ||
| FQ086_3a | text | Yes | NULL | ||
| inpatient_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| inpatient_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| inpatient_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ086_1b | text | Yes | NULL | ||
| FQ086_2b | text | Yes | NULL | ||
| FQ086_3b | text | Yes | NULL | ||
| inpatient_vf1_note | text | Yes | NULL | Descriptive text field | |
| inpatient_vf2_note | text | Yes | NULL | Descriptive text field | |
| inpatient_vf3_note | text | Yes | NULL | Descriptive text field | |
| inpatient_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ091 | text | Yes | NULL | ||
| fq092_label | text | Yes | NULL | ||
| FQ092a | text | Yes | NULL | ||
| FQ092b | text | Yes | NULL | ||
| FQ092c | text | Yes | NULL | ||
| FQ092d | text | Yes | NULL | ||
| FQ093_1 | text | Yes | NULL | ||
| FQ094a_note1 | text | Yes | NULL | Descriptive text field | |
| FQ094a_note2 | text | Yes | NULL | Descriptive text field | |
| FQ094a | text | Yes | NULL | ||
| tb_src_avail_note | text | Yes | NULL | Descriptive text field | |
| tb_src_compl_note | text | Yes | NULL | Descriptive text field | |
| tb_srcdoc_rpts6 | text | Yes | NULL | ||
| FQ094b | text | Yes | NULL | ||
| FQ095 | text | Yes | NULL | ||
| fq094b_note | text | Yes | NULL | Descriptive text field | |
| fq095_note | text | Yes | NULL | Descriptive text field | |
| FQ096 | text | Yes | NULL | ||
| fq096_note | text | Yes | NULL | Descriptive text field | |
| fq099_note1 | text | Yes | NULL | Descriptive text field | |
| fq099_note2 | text | Yes | NULL | Descriptive text field | |
| FQ099a | text | Yes | NULL | ||
| tb_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| tb_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| tb_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ099b | text | Yes | NULL | ||
| FQ0202 | text | Yes | NULL | ||
| fq099_note | text | Yes | NULL | Descriptive text field | |
| tb_vf_note1 | text | Yes | NULL | Descriptive text field | |
| tb_vf_note2 | text | Yes | NULL | Descriptive text field | |
| FQ0203_2 | text | Yes | NULL | ||
| FQ0203_6 | text | Yes | NULL | ||
| FQ_209_01_OPD | text | Yes | NULL | ||
| FQ_209_01_IPD | text | Yes | NULL | ||
| FQ_209_02_OPD | text | Yes | NULL | ||
| FQ_209_02_IPD | text | Yes | NULL | ||
| FQ_209_03_OPD | text | Yes | NULL | ||
| FQ_209_03_IPD | text | Yes | NULL | ||
| FQ213_5a_other | text | Yes | NULL | ||
| fu007_note_1 | text | Yes | NULL | Descriptive text field | |
| FU007a_1 | text | Yes | NULL | ||
| FU007b_1 | text | Yes | NULL | ||
| FU007c_1 | text | Yes | NULL | ||
| FU007d_1 | text | Yes | NULL | ||
| FU020c | text | Yes | NULL | ||
| FU020d | text | Yes | NULL | ||
| FU020e | text | Yes | NULL | ||
| FQ022_96 | text | Yes | NULL | ||
| FQ022o | text | Yes | NULL | ||
| FQ034_96 | text | Yes | NULL | ||
| FQ034o | text | Yes | NULL | ||
| FQ038_96 | text | Yes | NULL | ||
| FQ038o | text | Yes | NULL | ||
| FQ044_96 | text | Yes | NULL | ||
| FQ044o | text | Yes | NULL | ||
| FQ045_6 | text | Yes | NULL | ||
| FQ049_96 | text | Yes | NULL | ||
| FQ049o | text | Yes | NULL | ||
| FQ055_96 | text | Yes | NULL | ||
| FQ055o | text | Yes | NULL | ||
| inpatient_srcdoc_rpts5 | text | Yes | NULL | ||
| FQ066_96 | text | Yes | NULL | ||
| FQ066o | text | Yes | NULL | ||
| FQ067_1 | text | Yes | NULL | ||
| FQ071_96 | text | Yes | NULL | ||
| FQ071o | text | Yes | NULL | ||
| FQ074_96 | text | Yes | NULL | ||
| FQ074o | text | Yes | NULL | ||
| FQ0203_1 | text | Yes | NULL | ||
| FQ0203_3 | text | Yes | NULL | ||
| FQ078_3 | text | Yes | NULL | ||
| FQ213_5o | text | Yes | NULL | ||
| FQ219_A2_ser | text | Yes | NULL | ||
| FQ219_A2_dis | text | Yes | NULL | ||
| FQ219_B2_ser | text | Yes | NULL | ||
| FQ219_B2_dis | text | Yes | NULL | ||
| FQ219_C2_ser | text | Yes | NULL | ||
| FQ219_C2_dis | text | Yes | NULL | ||
| FQ219_C2_qrtr | text | Yes | NULL | ||
| FU019_2 | text | Yes | NULL | ||
| FQ015do | text | Yes | NULL | ||
| FQ019_1 | text | Yes | NULL | ||
| FQ019_2 | text | Yes | NULL | ||
| FQ026do | text | Yes | NULL | ||
| FQ023_1 | text | Yes | NULL | ||
| FQ030_2 | text | Yes | NULL | ||
| FQ034_2 | text | Yes | NULL | ||
| FQ037do | text | Yes | NULL | ||
| FQ041_5 | text | Yes | NULL | ||
| FQ048do | text | Yes | NULL | ||
| FQ049_8 | text | Yes | NULL | ||
| FQ045_5 | text | Yes | NULL | ||
| FQ054_1 | text | Yes | NULL | ||
| hivpos_srcdoc_rpts7 | text | Yes | NULL | ||
| FQ059do | text | Yes | NULL | ||
| FQ056_5 | text | Yes | NULL | ||
| FQ065_1 | text | Yes | NULL | ||
| malaria_srcdoc_rpts7 | text | Yes | NULL | ||
| FQ070do | text | Yes | NULL | ||
| FQ081do | text | Yes | NULL | ||
| FQ078_6 | text | Yes | NULL | ||
| FQ092do | text | Yes | NULL | ||
| FQ0203_96 | text | Yes | NULL | ||
| FQ0203o | text | Yes | NULL | ||
| FU019_1 | text | Yes | NULL | ||
| fu007_note_2 | text | Yes | NULL | Descriptive text field | |
| FU007a_2 | text | Yes | NULL | ||
| FU007b_2 | text | Yes | NULL | ||
| FU007c_2 | text | Yes | NULL | ||
| FU007d_2 | text | Yes | NULL | ||
| FQ021_1 | text | Yes | NULL | ||
| anc1_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ041_96 | text | Yes | NULL | ||
| FQ041o | text | Yes | NULL | ||
| FQ043_1 | text | Yes | NULL | ||
| FQ043_2 | text | Yes | NULL | ||
| mcm_srcdoc_rpts7 | text | Yes | NULL | ||
| FQ052_2 | text | Yes | NULL | ||
| FQ054_2 | text | Yes | NULL | ||
| FQ055_2 | text | Yes | NULL | ||
| FQ023_2 | text | Yes | NULL | ||
| FQ062_1 | text | Yes | NULL | ||
| malaria_srcdoc_rpts4 | text | Yes | NULL | ||
| FQ076_1 | text | Yes | NULL | ||
| pneum_srcdoc_rpts7 | text | Yes | NULL | ||
| FQ0200_1 | text | Yes | NULL | ||
| FQ067_5 | text | Yes | NULL | ||
| FQ074_4 | text | Yes | NULL | ||
| FQ220_96 | text | Yes | NULL | ||
| FQ220o | text | Yes | NULL | ||
| FQ222_m1 | text | Yes | NULL | ||
| FQ222_m2 | text | Yes | NULL | ||
| FQ222_m3 | text | Yes | NULL | ||
| rtn_dcsn_mkg5 | text | Yes | NULL | ||
| FQ085_96 | text | Yes | NULL | ||
| FQ085o | text | Yes | NULL | ||
| FQ023_6 | text | Yes | NULL | ||
| FQ0203_5 | text | Yes | NULL | ||
| FQ041_2 | text | Yes | NULL | ||
| FQ052_1 | text | Yes | NULL | ||
| FQ052_96 | text | Yes | NULL | ||
| FQ052o | text | Yes | NULL | ||
| hivpos_srcdoc_rpts4 | text | Yes | NULL | ||
| FQ063_96 | text | Yes | NULL | ||
| FQ063o | text | Yes | NULL | ||
| FQ067_3 | text | Yes | NULL | ||
| FQ074_5 | text | Yes | NULL | ||
| FQ085_2 | text | Yes | NULL | ||
| FQ088_5 | text | Yes | NULL | ||
| FQ098_1 | text | Yes | NULL | ||
| FQ098_2 | text | Yes | NULL | ||
| FQ052_4 | text | Yes | NULL | ||
| FQ056_1 | text | Yes | NULL | ||
| FQ056_6 | text | Yes | NULL | ||
| FQ220_1 | text | Yes | NULL | ||
| FQ063_1 | text | Yes | NULL | ||
| FQ065_2 | text | Yes | NULL | ||
| FQ074_2 | text | Yes | NULL | ||
| FQ076_2 | text | Yes | NULL | ||
| FQ098_96 | text | Yes | NULL | ||
| FQ098o | text | Yes | NULL | ||
| FQ213_5b_other | text | Yes | NULL | ||
| FQ019_96 | text | Yes | NULL | ||
| FQ019o | text | Yes | NULL | ||
| FQ067_2 | text | Yes | NULL | ||
| FQ032_1 | text | Yes | NULL | ||
| dtp3_srcdoc_rpts7 | text | Yes | NULL | ||
| FQ087_1 | text | Yes | NULL | ||
| inpatient_srcdoc_rpts7 | text | Yes | NULL | ||
| FQ022_2 | text | Yes | NULL | ||
| FQ034_4 | text | Yes | NULL | ||
| FQ106_Other | text | Yes | NULL | ||
| FQ063_5 | text | Yes | NULL | ||
| FQ073_3 | text | Yes | NULL | ||
| FQ078_96 | text | Yes | NULL | ||
| FQ078o | text | Yes | NULL | ||
| FQ019_4 | text | Yes | NULL | ||
| FQ023_96 | text | Yes | NULL | ||
| FQ023o | text | Yes | NULL | ||
| FQ034_3 | text | Yes | NULL | ||
| FQ034_6 | text | Yes | NULL | ||
| FQ078_4 | text | Yes | NULL | ||
| inpatient_srcdoc_rpts4 | text | Yes | NULL | ||
| FQ088_96 | text | Yes | NULL | ||
| FQ088o | text | Yes | NULL | ||
| FU017_96 | text | Yes | NULL | ||
| FU017o | text | Yes | NULL | ||
| FQ045_96 | text | Yes | NULL | ||
| FQ045o | text | Yes | NULL | ||
| FQ054_3 | text | Yes | NULL | ||
| FQ056_96 | text | Yes | NULL | ||
| FQ056o | text | Yes | NULL | ||
| FQ067_4 | text | Yes | NULL | ||
| FQ071_4 | text | Yes | NULL | ||
| FQ056_3 | text | Yes | NULL | ||
| FQ016_96 | text | Yes | NULL | ||
| FQ016o | text | Yes | NULL | ||
| FQ018_3 | text | Yes | NULL | ||
| sba_srcdoc_rpts5 | text | Yes | NULL | ||
| FQ021_96 | text | Yes | NULL | ||
| FU017_1 | text | Yes | NULL | ||
| FQ032_96 | text | Yes | NULL | ||
| FQ032o | text | Yes | NULL | ||
| FQ023_3 | text | Yes | NULL | ||
| FQ040_3 | text | Yes | NULL | ||
| mcm_srcdoc_rpts4 | text | Yes | NULL | ||
| FQ043_96 | text | Yes | NULL | ||
| FQ043o | text | Yes | NULL | ||
| FQ054_96 | text | Yes | NULL | ||
| FQ054o | text | Yes | NULL | ||
| FQ065_96 | text | Yes | NULL | ||
| FQ065o | text | Yes | NULL | ||
| FQ076_96 | text | Yes | NULL | ||
| FQ076o | text | Yes | NULL | ||
| FQ082_96 | text | Yes | NULL | ||
| FQ082o | text | Yes | NULL | ||
| FQ084_3 | text | Yes | NULL | ||
| FQ087_96 | text | Yes | NULL | ||
| FQ087o | text | Yes | NULL | ||
| FQ0200_96 | text | Yes | NULL | ||
| FQ0200o | text | Yes | NULL | ||
| FQ067_6 | text | Yes | NULL | ||
| FQ071_3 | text | Yes | NULL | ||
| FQ030_96 | text | Yes | NULL | ||
| FQ030o. | text | Yes | NULL | ||
| dtp3_srcdoc_rpts4 | text | Yes | NULL | ||
| pneum_srcdoc_rpts4 | text | Yes | NULL | ||
| FQ077_96 | text | Yes | NULL | ||
| FQ077o | text | Yes | NULL | ||
| FQ033_1 | text | Yes | NULL | ||
| FQ033_96 | text | Yes | NULL | ||
| FQ033o | text | Yes | NULL | ||
| FQ033_2 | text | Yes | NULL | ||
| FQ063_2 | text | Yes | NULL | ||
| FQ066_1 | text | Yes | NULL | ||
| FQ066_2 | text | Yes | NULL | ||
| FQ077_2 | text | Yes | NULL | ||
| FQ067_96 | text | Yes | NULL | ||
| FQ067o | text | Yes | NULL | ||
| FQ220_4 | text | Yes | NULL | ||
| FQ066_4 | text | Yes | NULL | ||
| FQ056_2 | text | Yes | NULL | ||
| FQ220_3 | text | Yes | NULL | ||
| FQ022_1 | text | Yes | NULL | ||
| FQ023_4 | text | Yes | NULL | ||
| FQ055_1 | text | Yes | NULL | ||
| FQ063_3 | text | Yes | NULL | ||
| FQ066_3 | text | Yes | NULL | ||
| FQ074_3 | text | Yes | NULL | ||
| FQ077_3 | text | Yes | NULL | ||
| FQ078_1 | text | Yes | NULL | ||
| FQ098_3 | text | Yes | NULL | ||
| FQ019_5 | text | Yes | NULL | ||
| FQ033_4 | text | Yes | NULL | ||
| FQ033_5 | text | Yes | NULL | ||
| FQ044_2 | text | Yes | NULL | ||
| FQ044_4 | text | Yes | NULL | ||
| FQ082_3 | text | Yes | NULL | ||
| FQ063_4 | text | Yes | NULL | ||
| FQ016_3 | text | Yes | NULL | ||
| FQ077_4 | text | Yes | NULL | ||
| FQ089_1 | text | Yes | NULL | ||
| FQ220_2 | text | Yes | NULL | ||
| FQ023_5 | text | Yes | NULL | ||
| FQ034_5 | text | Yes | NULL | ||
| FQ022_4 | text | Yes | NULL | ||
| FQ022_5 | text | Yes | NULL | ||
| FQ066_5 | text | Yes | NULL | ||
| FQ044_3 | text | Yes | NULL | ||
| FQ044_5 | text | Yes | NULL | ||
| FQ077_5 | text | Yes | NULL | ||
| FQ052_5 | text | Yes | NULL | ||
| FQ016_2 | text | Yes | NULL | ||
| FQ055_5 | text | Yes | NULL | ||
| FQ098_5 | text | Yes | NULL | ||
| FQ0201_1 | text | Yes | NULL | ||
| FQ0201_2 | text | Yes | NULL | ||
| FQ0201_5 | text | Yes | NULL | ||
| FQ0203_4 | text | Yes | NULL | ||
| FQ021_3 | text | Yes | NULL | ||
| FQ032_3 | text | Yes | NULL | ||
| FQ043_3 | text | Yes | NULL | ||
| FQ065_3 | text | Yes | NULL | ||
| FQ076_3 | text | Yes | NULL | ||
| FQ051_3 | text | Yes | NULL | ||
| FQ0200_3 | text | Yes | NULL | ||
| FQ030_5 | text | Yes | NULL | ||
| FQ055_4 | text | Yes | NULL | ||
| FU019_3 | text | Yes | NULL | ||
| FQ0201_96 | text | Yes | NULL | ||
| FQ0201o | text | Yes | NULL | ||
| FQ044_1 | text | Yes | NULL | ||
| FQ021_2 | text | Yes | NULL | ||
| FQ032_2 | text | Yes | NULL | ||
| FQ087_2 | text | Yes | NULL | ||
| FQ088_1 | text | Yes | NULL | ||
| FQ088_2 | text | Yes | NULL | ||
| FQ220_5 | text | Yes | NULL | ||
| FU017_2 | text | Yes | NULL | ||
| FQ018_2 | text | Yes | NULL | ||
| FQ073_1 | text | Yes | NULL | ||
| FU017_3 | text | Yes | NULL | ||
| FQ093_96 | text | Yes | NULL | ||
| FQ093o | text | Yes | NULL | ||
| FQ084_96 | text | Yes | NULL | ||
| FQ084o | text | Yes | NULL | ||
| FQ019_3 | text | Yes | NULL | ||
| FQ022_3 | text | Yes | NULL | ||
| FQ041_3 | text | Yes | NULL | ||
| FQ040_96 | text | Yes | NULL | ||
| FQ040o | text | Yes | NULL | ||
| FQ029_96 | text | Yes | NULL | ||
| FQ029o | text | Yes | NULL | ||
| FQ0200_2 | text | Yes | NULL | ||
| FQ087_3 | text | Yes | NULL |
This table has no foreign key relationships.
| CompletionDate | SubmissionDate | starttime | endtime | deviceid | subscriberid | simid | devicephonenum | username | duration | caseid | FQ104 | FQ101 | FQ102 | FQ103 | FQ105 | FQ106 | FQ107 | FQ108 | siteid | FQ109 | FQ110 | FQ111 | intro | FQ112 | revw_mos_note | Month1 | month1_fmt | Month2 | month2_fmt | Month3 | month3_fmt | FQ010 | FQ011 | FQ012a | FQ012b | FQ013 | FQ014 | fq015_label | FQ015a | FQ015b | FQ015c | FQ015d | FQ016_1 | fq017_note1 | fq017_note2 | FQ017_1a | FQ017_2a | FQ017_3a | sba_src_avail1 | sba_src_avail2 | sba_src_avail3 | sba_src_avail_note | sba_src_compl1 | sba_src_compl2 | sba_src_compl3 | sba_src_compl_note | sba_srcdoc_rpts6 | FQ017_1b | FQ017_2b | FQ017_3b | fq020_note1 | fq020_note2 | FQ020_1a | FQ020_2a | FQ020_3a | sba_rpt_avail1 | sba_rpt_avail2 | sba_rpt_avail3 | sba_rpt_avail_note | sba_rpt_compl1 | sba_rpt_compl2 | sba_rpt_compl3 | sba_rpt_compl_note | sba_srcdoc_rpts9 | FQ020_1b | FQ020_2b | FQ020_3b | tmp_fq017_1b | tmp_fq020_1b | tmp_sba_vf1 | sba_vf1 | tmp_sba_vf1_diff | sba_vf1_diff | tmp_fq017_2b | tmp_fq020_2b | tmp_sba_vf2 | sba_vf2 | tmp_sba_vf2_diff | sba_vf2_diff | tmp_fq017_3b | tmp_fq020_3b | tmp_sba_vf3 | sba_vf3 | tmp_sba_vf3_diff | sba_vf3_diff | sba_vf1_note | sba_vf2_note | sba_vf3_note | sba_vf_note | FQ024 | FQ025 | fq026_label | FQ026a | FQ026b | FQ026c | FQ026d | FQ027_1 | fq028_note1 | fq028_note2 | FQ028_1a | FQ028_2a | FQ028_3a | dtp3_src_avail1 | dtp3_src_avail2 | dtp3_src_avail3 | dtp3_src_avail_note | dtp3_src_compl1 | dtp3_src_compl2 | dtp3_src_compl3 | dtp3_src_compl_note | dtp3_srcdoc_rpts5 | FQ028_1b | FQ028_2b | FQ028_3b | fq031_note1 | fq031_note2 | FQ031_1a | FQ031_2a | FQ031_3a | dtp3_rpt_avail1 | dtp3_rpt_avail2 | dtp3_rpt_avail3 | dtp3_rpt_avail_note | dtp3_rpt_compl1 | dtp3_rpt_compl2 | dtp3_rpt_compl3 | dtp3_rpt_compl_note | dtp3_srcdoc_rpts8 | FQ031_1b | FQ031_2b | FQ031_3b | tmp_fq028_1b | tmp_fq031_1b | tmp_dtp3_vf1 | dtp3_vf1 | tmp_dtp3_vf1_diff | dtp3_vf1_diff | tmp_fq028_2b | tmp_fq031_2b | tmp_dtp3_vf2 | dtp3_vf2 | tmp_dtp3_vf2_diff | dtp3_vf2_diff | tmp_fq028_3b | tmp_fq031_3b | tmp_dtp3_vf3 | dtp3_vf3 | tmp_dtp3_vf3_diff | dtp3_vf3_diff | dtp3_vf1_note | dtp3_vf2_note | dtp3_vf3_note | dtp3_vf_note | FQ034_1 | FQ035 | FQ036 | fq037_label | FQ037a | FQ037b | FQ037c | FQ037d | FQ038_1 | fq039_note1 | fq039_note2 | FQ039_1a | FQ039_2a | FQ039_3a | mcm_src_avail1 | mcm_src_avail2 | mcm_src_avail3 | mcm_src_avail_note | mcm_src_compl1 | mcm_src_compl2 | mcm_src_compl3 | mcm_src_compl_note | mcm_srcdoc_rpts5 | FQ039_1b | FQ039_2b | FQ039_3b | fq042_note1 | fq042_note2 | FQ042_1a | FQ042_2a | FQ042_3a | mcm_rpt_avail1 | mcm_rpt_avail2 | mcm_rpt_avail3 | mcm_rpt_avail_note | mcm_rpt_compl1 | mcm_rpt_compl2 | mcm_rpt_compl3 | mcm_rpt_compl_note | mcm_srcdoc_rpts8 | FQ042_1b | FQ042_2b | FQ042_3b | tmp_fq039_1b | tmp_fq042_1b | tmp_mcm_vf1 | mcm_vf1 | tmp_mcm_vf1_diff | mcm_vf1_diff | tmp_fq039_2b | tmp_fq042_2b | tmp_mcm_vf2 | mcm_vf2 | tmp_mcm_vf2_diff | mcm_vf2_diff | tmp_fq039_3b | tmp_fq042_3b | tmp_mcm_vf3 | mcm_vf3 | tmp_mcm_vf3_diff | mcm_vf3_diff | mcm_vf1_note | mcm_vf2_note | mcm_vf3_note | mcm_vf_note | FQ046 | hivpos_src_avail1 | hivpos_src_avail2 | hivpos_src_avail3 | hivpos_src_compl1 | hivpos_src_compl2 | hivpos_src_compl3 | hivpos_rpt_avail1 | hivpos_rpt_avail2 | hivpos_rpt_avail3 | hivpos_rpt_compl1 | hivpos_rpt_compl2 | hivpos_rpt_compl3 | tmp_fq050_1b | tmp_fq053_1b | tmp_hivpos_vf1 | hivpos_vf1 | tmp_hivpos_vf1_diff | hivpos_vf1_diff | tmp_fq050_2b | tmp_fq053_2b | tmp_hivpos_vf2 | hivpos_vf2 | tmp_hivpos_vf2_diff | hivpos_vf2_diff | tmp_fq050_3b | tmp_fq053_3b | tmp_hivpos_vf3 | hivpos_vf3 | tmp_hivpos_vf3_diff | hivpos_vf3_diff | FQ057 | malaria_src_avail1 | malaria_src_avail2 | malaria_src_avail3 | malaria_src_compl1 | malaria_src_compl2 | malaria_src_compl3 | malaria_rpt_avail1 | malaria_rpt_avail2 | malaria_rpt_avail3 | malaria_rpt_compl1 | malaria_rpt_compl2 | malaria_rpt_compl3 | tmp_fq061_1b | tmp_fq064_1b | tmp_malaria_vf1 | malaria_vf1 | tmp_malaria_vf1_diff | malaria_vf1_diff | tmp_fq061_2b | tmp_fq064_2b | tmp_malaria_vf2 | malaria_vf2 | tmp_malaria_vf2_diff | malaria_vf2_diff | tmp_fq061_3b | tmp_fq064_3b | tmp_malaria_vf3 | malaria_vf3 | tmp_malaria_vf3_diff | malaria_vf3_diff | FQ068 | FQ069 | fq070_label | FQ070a | FQ070b | FQ070c | FQ070d | FQ071_1 | fq072_note1 | fq072_note2 | FQ072_1a | FQ072_2a | FQ072_3a | pneum_src_avail1 | pneum_src_avail2 | pneum_src_avail3 | pneum_src_avail_note | pneum_src_compl1 | pneum_src_compl2 | pneum_src_compl3 | pneum_src_compl_note | FQ074_1 | FQ072_1b | FQ072_2b | FQ072_3b | fq075_note1 | fq075_note2 | FQ075_1a | FQ075_2a | FQ075_3a | pneum_rpt_avail1 | pneum_rpt_avail2 | pneum_rpt_avail3 | pneum_rpt_avail_note | pneum_rpt_compl1 | pneum_rpt_compl2 | pneum_rpt_compl3 | pneum_rpt_compl_note | FQ077_1 | FQ075_1b | FQ075_2b | FQ075_3b | tmp_fq072_1b | tmp_fq075_1b | tmp_pneum_vf1 | pneum_vf1 | tmp_pneum_vf1_diff | pneum_vf1_diff | tmp_fq072_2b | tmp_fq075_2b | tmp_pneum_vf2 | pneum_vf2 | tmp_pneum_vf2_diff | pneum_vf2_diff | tmp_fq072_3b | tmp_fq075_3b | tmp_pneum_vf3 | pneum_vf3 | tmp_pneum_vf3_diff | pneum_vf3_diff | pneum_vf1_note | pneum_vf2_note | pneum_vf3_note | pneum_vf_note | FQ079 | inpatient_src_avail1 | inpatient_src_avail2 | inpatient_src_avail3 | inpatient_src_compl1 | inpatient_src_compl2 | inpatient_src_compl3 | inpatient_rpt_avail1 | inpatient_rpt_avail2 | inpatient_rpt_avail3 | inpatient_rpt_compl1 | inpatient_rpt_compl2 | inpatient_rpt_compl3 | tmp_fq083_1b | tmp_fq086_1b | tmp_inpatient_vf1 | inpatient_vf1 | tmp_inpatient_vf1_diff | inpatient_vf1_diff | tmp_fq083_2b | tmp_fq086_2b | tmp_inpatient_vf2 | inpatient_vf2 | tmp_inpatient_vf2_diff | inpatient_vf2_diff | tmp_fq083_3b | tmp_fq086_3b | tmp_inpatient_vf3 | inpatient_vf3 | tmp_inpatient_vf3_diff | inpatient_vf3_diff | FQ090 | tb_src_avail | tb_src_compl | tb_rpt_avail | tb_rpt_compl | tmp_fq096 | tmp_fq099b | tmp_tb_vf | tb_vf | tmp_tb_vf_diff | tb_vf_diff | FQ204a | FQ204b | FQ205 | fq0206_note | fq0206_label1 | FQ206_1_ser | FQ206_1_ipd | FQ206_1_opd | fq206_label2 | FQ206_2_ser | FQ206_2_ipd | FQ206_2_opd | fq206_label3 | FQ206_3_ser | FQ206_3_ipd | FQ206_3_opd | FQ207 | FQ208 | FQ209_label1 | FQ_209_01_ser | FQ_209_01_dis | FQ209_label2 | FQ_209_02_ser | FQ_209_02_dis | FQ209_label3 | FQ_209_03_ser | FQ_209_03_dis | FQ210 | FQ211 | FQ212 | FQ213_note1 | FQ213_1a | FQ213_1b | FQ213_note2 | FQ213_2a | FQ213_2b | FQ213_note3 | FQ213_3a | FQ213_3b | FQ213_note4 | FQ213_4a | FQ213_4b | FQ213_note5 | FQ213_5a | FQ213_5b | FQ214_note1 | FQ214a | FQ214b | FQ214c | FQ214d | FQ214_note2 | FQ214e | FQ214f | FQ214g | FQ215 | FQ216 | FQ217 | FQ218_note1 | FQ218a_ser | FQ218a_dis | FQ218a_qrtr | FQ218_note2 | FQ218b_ser | FQ218b_dis | FQ218b_qrtr | FQ218_note3 | FQ218c_ser | FQ218c_dis | FQ218c_qrtr | fq218_tot_ser | fq218_tot_dis | fq218_tot_qrtr | fq218_total | fq218_note_ser | fq218_note_dis | fq218_note_qrtr | fq219_note1 | FQ219_A1_ser | FQ219_A1_dis | fq219_note2 | fq219_note3 | tmp_fq219a1_ser | tmp_fq219a1_dis | tmp_fq219a2_ser | tmp_fq219a2_dis | tmp_fq219a3_ser | tmp_fq219a3_dis | fq219a_tot_ser | fq219a_tot_dis | tmp_rptg_ser_complns_hp1 | rptg_ser_complns_hp1 | tmp_rptg_dis_complns_hp1 | rptg_dis_complns_hp1 | rptg_sercomplns_hp1_note | rptg_discomplns_hp1_note | fq219_note4 | FQ219_B1_ser | FQ219_B1_dis | fq219_note5 | fq219_note6 | tmp_fq219b1_ser | tmp_fq219b1_dis | tmp_fq219b2_ser | tmp_fq219b2_dis | tmp_fq219b3_ser | tmp_fq219b3_dis | fq219b_tot_ser | fq219b_tot_dis | tmp_rptg_ser_complns_hp2 | rptg_ser_complns_hp2 | tmp_rptg_dis_complns_hp2 | rptg_dis_complns_hp2 | rptg_sercomplns_hp2_note | rptg_discomplns_hp2_note | fq219_note7 | FQ219_C1_ser | FQ219_C1_dis | FQ219_C1_qrtr | fq219_note8 | fq219_note9 | tmp_fq219c1_ser | tmp_fq219c1_dis | tmp_fq219c1_qrtr | tmp_fq219c2_ser | tmp_fq219c2_dis | tmp_fq219c2_qrtr | tmp_fq219c3_ser | tmp_fq219c3_dis | tmp_fq219c3_qrtr | fq219c_tot_ser | fq219c_tot_dis | fq219c_tot_qrtr | tmp_rptg_ser_complns_hp3 | rptg_ser_complns_hp3 | tmp_rptg_dis_complns_hp3 | rptg_dis_complns_hp3 | tmp_rptg_qrtr_complns_hp3 | rptg_qrtr_complns_hp3 | rptg_sercomplns_hp3_note | rptg_discomplns_hp3_note | rptg_qrtrcomplns_hp3_note | compl_hc14 | FQ221 | FQ221b | FQ222 | fq223_note1 | FQ223_01_ser | FQ223_01_dis | fq223_note2 | FQ223_02_ser | FQ223_02_dis | fq223_note3 | FQ223_03_ser | FQ223_03_dis | tmp_fq223_01_ser | tmp_fq223_01_dis | tmp_rpt_sertimelns_hp1 | rpt_sertimelns_hp1 | tmp_rpt_distimelns_hp1 | rpt_distimelns_hp1 | rpt_sertimelns_hp1_note | rpt_distimelns_hp1_note | tmp_fq223_02_ser | tmp_fq223_02_dis | tmp_rpt_sertimelns_hp2 | rpt_sertimelns_hp2 | tmp_rpt_distimelns_hp2 | rpt_distimelns_hp2 | rpt_sertimelns_hp2_note | rpt_distimelns_hp2_note | tmp_fq223_03_ser | tmp_fq223_03_dis | tmp_rpt_sertimelns_hp3 | rpt_sertimelns_hp3 | tmp_rpt_distimelns_hp3 | rpt_distimelns_hp3 | rpt_sertimelns_hp3_note | rpt_distimelns_hp3_note | FU003 | fu003_rcd | FU005 | FU006 | fu008_label1 | FU008_01 | FU008_02 | FU008_03 | FU008_04 | fu008_label2 | FU008_05 | FU008_06 | FU008_07 | FU009 | fu009_rcd | fu010_note | FU010a | FU010b | FU011 | FU012 | FU013 | FU014 | FU015_label | FU015_01 | FU015_02 | FU015_03 | FU016 | note_dscnmkg1 | FU018_01 | FU018_02 | FU018_03 | FU020_note | FU020a | FU020b | FU021a_label | FU021a_01 | FU021a_02 | FU021a_03 | FU021a_04 | FU021a_05 | FU021a_06 | FU021a_07 | FU021b | FU021c | FU021d_label1 | FU021d_01 | FU021d_02 | FU021d_03 | FU021d_04 | FU021d_05 | FU021d_label2 | FU021d_06 | FU021d_07 | FU021d_08 | FU021d_09 | FU021d_10 | FU021e | FU021f | FU022 | FU023 | FU024 | FU025 | FU026 | FU027 | FU028 | FU030 | FU031 | FU032 | FU033 | FU034 | FU035 | FU036 | FU038 | FU039 | FU040 | FU041 | FU042 | FU043 | gps_note | FQ113 | note_end | instanceID | instanceName | formdef_version | review_quality | review_status | KEY | FU037 | FQ027_2 | FQ030_1 | FQ030_4 | FQ038_2 | FQ041_1 | FQ041_4 | FQ045_1 | FQ045_2 | FQ045_3 | FQ045_4 | FQ047 | fq048_label | FQ048a | FQ048b | FQ048c | FQ048d | FQ049_1 | FQ049_2 | FQ049_3 | FQ049_4 | fq050_note1 | fq050_note2 | FQ050_1a | FQ050_2a | FQ050_3a | hivpos_src_avail_note | hivpos_src_compl_note | hivpos_srcdoc_rpts5 | FQ050_1b | FQ050_2b | FQ050_3b | fq053_note1 | fq053_note2 | FQ053_1a | FQ053_2a | FQ053_3a | hivpos_rpt_avail_note | hivpos_rpt_compl_note | hivpos_srcdoc_rpts8 | FQ053_1b | FQ053_2b | FQ053_3b | hivpos_vf1_note | hivpos_vf2_note | hivpos_vf3_note | hivpos_vf_note | FQ058 | fq059_label | FQ059a | FQ059b | FQ059c | FQ059d | FQ060_1 | FQ060_96 | FQ060o | fq061_note1 | fq061_note2 | FQ061_1a | FQ061_2a | FQ061_3a | malaria_src_avail_note | malaria_src_compl_note | malaria_srcdoc_rpts5 | FQ061_1b | FQ061_2b | FQ061_3b | fq064_note1 | fq064_note2 | FQ064_1a | FQ064_2a | FQ064_3a | malaria_rpt_avail_note | malaria_rpt_compl_note | malaria_srcdoc_rpts8 | FQ064_1b | FQ064_2b | FQ064_3b | malaria_vf1_note | malaria_vf2_note | malaria_vf3_note | malaria_vf_note | FQ071_2 | pneum_srcdoc_rpts5 | pneum_srcdoc_rpts8 | FQ078_2 | FQ078_5 | FQ080 | fq081_label | FQ081a | FQ081b | FQ081c | FQ081d | FQ082_1 | FQ082_2 | fq083_note1 | fq083_note2 | FQ083_1a | FQ083_2a | FQ083_3a | inpatient_src_avail_note | inpatient_src_compl_note | FQ085_1 | FQ085_4 | FQ083_1b | FQ083_2b | FQ083_3b | fq086_note1 | fq086_note2 | FQ086_1a | FQ086_2a | FQ086_3a | inpatient_rpt_avail_note | inpatient_rpt_compl_note | inpatient_srcdoc_rpts8 | FQ086_1b | FQ086_2b | FQ086_3b | inpatient_vf1_note | inpatient_vf2_note | inpatient_vf3_note | inpatient_vf_note | FQ091 | fq092_label | FQ092a | FQ092b | FQ092c | FQ092d | FQ093_1 | FQ094a_note1 | FQ094a_note2 | FQ094a | tb_src_avail_note | tb_src_compl_note | tb_srcdoc_rpts6 | FQ094b | FQ095 | fq094b_note | fq095_note | FQ096 | fq096_note | fq099_note1 | fq099_note2 | FQ099a | tb_rpt_avail_note | tb_rpt_compl_note | tb_srcdoc_rpts8 | FQ099b | FQ0202 | fq099_note | tb_vf_note1 | tb_vf_note2 | FQ0203_2 | FQ0203_6 | FQ_209_01_OPD | FQ_209_01_IPD | FQ_209_02_OPD | FQ_209_02_IPD | FQ_209_03_OPD | FQ_209_03_IPD | FQ213_5a_other | fu007_note_1 | FU007a_1 | FU007b_1 | FU007c_1 | FU007d_1 | FU020c | FU020d | FU020e | FQ022_96 | FQ022o | FQ034_96 | FQ034o | FQ038_96 | FQ038o | FQ044_96 | FQ044o | FQ045_6 | FQ049_96 | FQ049o | FQ055_96 | FQ055o | inpatient_srcdoc_rpts5 | FQ066_96 | FQ066o | FQ067_1 | FQ071_96 | FQ071o | FQ074_96 | FQ074o | FQ0203_1 | FQ0203_3 | FQ078_3 | FQ213_5o | FQ219_A2_ser | FQ219_A2_dis | FQ219_B2_ser | FQ219_B2_dis | FQ219_C2_ser | FQ219_C2_dis | FQ219_C2_qrtr | FU019_2 | FQ015do | FQ019_1 | FQ019_2 | FQ026do | FQ023_1 | FQ030_2 | FQ034_2 | FQ037do | FQ041_5 | FQ048do | FQ049_8 | FQ045_5 | FQ054_1 | hivpos_srcdoc_rpts7 | FQ059do | FQ056_5 | FQ065_1 | malaria_srcdoc_rpts7 | FQ070do | FQ081do | FQ078_6 | FQ092do | FQ0203_96 | FQ0203o | FU019_1 | fu007_note_2 | FU007a_2 | FU007b_2 | FU007c_2 | FU007d_2 | FQ021_1 | anc1_srcdoc_rpts8 | FQ041_96 | FQ041o | FQ043_1 | FQ043_2 | mcm_srcdoc_rpts7 | FQ052_2 | FQ054_2 | FQ055_2 | FQ023_2 | FQ062_1 | malaria_srcdoc_rpts4 | FQ076_1 | pneum_srcdoc_rpts7 | FQ0200_1 | FQ067_5 | FQ074_4 | FQ220_96 | FQ220o | FQ222_m1 | FQ222_m2 | FQ222_m3 | rtn_dcsn_mkg5 | FQ085_96 | FQ085o | FQ023_6 | FQ0203_5 | FQ041_2 | FQ052_1 | FQ052_96 | FQ052o | hivpos_srcdoc_rpts4 | FQ063_96 | FQ063o | FQ067_3 | FQ074_5 | FQ085_2 | FQ088_5 | FQ098_1 | FQ098_2 | FQ052_4 | FQ056_1 | FQ056_6 | FQ220_1 | FQ063_1 | FQ065_2 | FQ074_2 | FQ076_2 | FQ098_96 | FQ098o | FQ213_5b_other | FQ019_96 | FQ019o | FQ067_2 | FQ032_1 | dtp3_srcdoc_rpts7 | FQ087_1 | inpatient_srcdoc_rpts7 | FQ022_2 | FQ034_4 | FQ106_Other | FQ063_5 | FQ073_3 | FQ078_96 | FQ078o | FQ019_4 | FQ023_96 | FQ023o | FQ034_3 | FQ034_6 | FQ078_4 | inpatient_srcdoc_rpts4 | FQ088_96 | FQ088o | FU017_96 | FU017o | FQ045_96 | FQ045o | FQ054_3 | FQ056_96 | FQ056o | FQ067_4 | FQ071_4 | FQ056_3 | FQ016_96 | FQ016o | FQ018_3 | sba_srcdoc_rpts5 | FQ021_96 | FU017_1 | FQ032_96 | FQ032o | FQ023_3 | FQ040_3 | mcm_srcdoc_rpts4 | FQ043_96 | FQ043o | FQ054_96 | FQ054o | FQ065_96 | FQ065o | FQ076_96 | FQ076o | FQ082_96 | FQ082o | FQ084_3 | FQ087_96 | FQ087o | FQ0200_96 | FQ0200o | FQ067_6 | FQ071_3 | FQ030_96 | FQ030o. | dtp3_srcdoc_rpts4 | pneum_srcdoc_rpts4 | FQ077_96 | FQ077o | FQ033_1 | FQ033_96 | FQ033o | FQ033_2 | FQ063_2 | FQ066_1 | FQ066_2 | FQ077_2 | FQ067_96 | FQ067o | FQ220_4 | FQ066_4 | FQ056_2 | FQ220_3 | FQ022_1 | FQ023_4 | FQ055_1 | FQ063_3 | FQ066_3 | FQ074_3 | FQ077_3 | FQ078_1 | FQ098_3 | FQ019_5 | FQ033_4 | FQ033_5 | FQ044_2 | FQ044_4 | FQ082_3 | FQ063_4 | FQ016_3 | FQ077_4 | FQ089_1 | FQ220_2 | FQ023_5 | FQ034_5 | FQ022_4 | FQ022_5 | FQ066_5 | FQ044_3 | FQ044_5 | FQ077_5 | FQ052_5 | FQ016_2 | FQ055_5 | FQ098_5 | FQ0201_1 | FQ0201_2 | FQ0201_5 | FQ0203_4 | FQ021_3 | FQ032_3 | FQ043_3 | FQ065_3 | FQ076_3 | FQ051_3 | FQ0200_3 | FQ030_5 | FQ055_4 | FU019_3 | FQ0201_96 | FQ0201o | FQ044_1 | FQ021_2 | FQ032_2 | FQ087_2 | FQ088_1 | FQ088_2 | FQ220_5 | FU017_2 | FQ018_2 | FQ073_1 | FU017_3 | FQ093_96 | FQ093o | FQ084_96 | FQ084o | FQ019_3 | FQ022_3 | FQ041_3 | FQ040_96 | FQ040o | FQ029_96 | FQ029o | FQ0200_2 | FQ087_3 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| May 11, 2024 11:39:38 AM | May 11, 2024 11:39:38 AM | May 11, 2024 6:45:54 AM | May 11, 2024 11:38:52 AM | 358450074052320 | 636019945784174 | 89251011910457841740 | 0925586798 | impacteval | 2653 | 10 | May 11, 2024 | 22 | 005 | Shebele | 38 | 10 | Elwaye | 10-Shebele-38-10 | 4 | 2 | 1 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 2 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 20 | 25 | 30 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 20 | 25 | 30 | 20 | 20 | 1 | 1 | 0 | 0 | 25 | 25 | 1 | 1 | 0 | 0 | 30 | 30 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 12 | 13 | 14 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 12 | 13 | 15 | 12 | 12 | 1 | 1 | 0 | 0 | 13 | 13 | 1 | 1 | 0 | 0 | 14 | 15 | 0.9333333333333333 | 0.93 | 0.06999999999999995 | 0.07 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 5 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 5 | 2 | 2 | 1 | 1 | 0 | 0 | 3 | 3 | 1 | 1 | 0 | 0 | 5 | 5 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 2 | 2 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 33 | 25 | 20 | 2 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 33 | 25 | 20 | 33 | 33 | 1 | 1 | 0 | 0 | 25 | 25 | 1 | 1 | 0 | 0 | 20 | 20 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 26 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 3 | 3 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 3 | 3 | 9 | 3 | 3 | 3 | 3 | 0 | 0 | 0 | 0 | 3 | 3 | 1 | 1 | 1 | 1 | 3 | 3 | 3 | 3 | 0 | 0 | 0 | 0 | 3 | 3 | 1 | 1 | 1 | 1 | 3 | 3 | 3 | 3 | 3 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 3 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 23 | 1 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 1 | 1 | 1 | 0.9900990099009901 | 3 | 3 | 1 | 1 | 1 | 0.9900990099009901 | 3 | 3 | 1 | 1 | 1 | 0.9900990099009901 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 3 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | uuid:4424f033-5489-45d4-bfbc-6e0ebfd50113 | 10-Shebele-38-10 | 2405110616 | APPROVED | uuid:4424f033-5489-45d4-bfbc-6e0ebfd50113 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| May 21, 2024 10:35:59 AM | May 21, 2024 10:35:59 AM | May 20, 2024 5:45:41 AM | May 21, 2024 10:36:00 AM | 353316097356771 | 636019954001565 | 89251011910540015658 | impacteval | 6155 | 1 | May 20, 2024 | 4 | NULL | 002 | 1 | 003 | Abisiniya | 1-002-1-003 | 4 | 1 | 1 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 4 | 4 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 21 | 17 | 16 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 21 | 17 | 16 | 21 | 21 | 1 | 1 | 0 | 0 | 17 | 17 | 1 | 1 | 0 | 0 | 16 | 16 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 2 | 1 | 2 | 1 | 1 | 1 | 0 | 1 | 0 | NULL | 65 | 30 | 34 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 65 | 30 | 34 | 65 | 65 | 1 | 1 | 0 | 0 | 30 | 30 | 1 | 1 | 0 | 0 | 34 | 34 | 1 | 1 | 0 | 0 | NULL | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 2 | 1 | 2 | 1 | 1 | 1 | 0 | 1 | 0 | NULL | 121 | 142 | 117 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 117 | 137 | 117 | 121 | 117 | 1.0341880341880343 | 1.03 | 0.030000000000000027 | 0.03 | 142 | 137 | 1.0364963503649636 | 1.04 | 0.040000000000000036 | 0.04 | 117 | 117 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 5 | 5 | 1 | 1 | 0 | 0 | 2 | 2 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 2 | 2 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 5 | 8 | 7 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 5 | 7 | 7 | 5 | 5 | 1 | 1 | 0 | 0 | 8 | 7 | 1.1428571428571428 | 1.14 | 0.1399999999999999 | 0.14 | 7 | 7 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 12 | 13 | 0.9230769230769231 | 0.92 | 0.07999999999999996 | 0.08 | 1 | 28 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 1 | NULL | 1 | NULL | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 2 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 2 | 0 | 1 | 1 | 1 | 1 | 0 | NULL | NULL | NULL | NULL | 0 | 0 | 1 | 1 | 0 | 1 | 2 | 1 | 9.0255357 38.7278997 2415.0 8.0 | uuid:143c7e5a-e334-4c3b-beac-d229562312cf | 1-002-1-003 | 2405131211 | APPROVED | uuid:143c7e5a-e334-4c3b-beac-d229562312cf | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 5 | 2 | 1 | 1 | 1 | 0 | 5 | 2 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | Locally prepared Malaria register at laboratory department | 1 | 1 | 1 | 2 | 1 | 2 | 1 | 1 | 1 | 2 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 12 | 0 | 12 | 1 | 13 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | EP collect, Kobo tool | Epidemiologic weekly Bulletin | 12 | 12 | Community forums, general population | 0 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |||||||||||||||||||||||||||||||||||||||||||||||||||
| May 11, 2024 11:41:09 AM | May 11, 2024 11:41:09 AM | May 11, 2024 11:00:10 AM | May 11, 2024 11:41:59 AM | 353316091282544 | impacteval | 2509 | 1 | May 11, 2024 | 1 | 123 | Addis Ababa | 1 | 001 | Abebe Bikila health center | 1-Addis Ababa -1-001 | 4 | 1 | 1 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | NULL | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 50 | 0 | 0 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 0 | 0 | 0 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 150 | NULL | NULL | 0 | 0 | 50 | 50 | 0 | 0 | 50 | 50 | 1 | 1 | 1 | 1 | NULL | NULL | 0 | 0 | 50 | 50 | 0 | 0 | 50 | 50 | 1 | 1 | 1 | 1 | NULL | NULL | NULL | 0 | 0 | 0 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 5 | 1 | 2 | 5 | 2 | 3 | 2 | 5 | 2 | 5 | 0.04 | 0.04 | 0.1 | 0.09900990099009901 | 2 | 3 | 0.04 | 0.04 | 0.06 | 0.0594059405940594 | 2 | 5 | 0.04 | 0.04 | 0.1 | 0.09900990099009901 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 9.0519763 38.7435365 2562.0 4.8 | uuid:2abce57d-5cb5-46e9-8524-ed5f9918bad2 | 1-Addis Ababa -1-001 | 2405110931 | APPROVED | uuid:2abce57d-5cb5-46e9-8524-ed5f9918bad2 | 1 | 1 | NULL | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | 0 | 0 | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 0 | 0 | 1 | NULL | NULL | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 50 | 50 | 50 | NULL | NULL | NULL | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | 50 | 50 | 50 | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 50 | 50 | 0 | 1 | 50 | 50 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 1 | NULL | Outlier | 50 | 50 | 50 | 50 | 50 | 50 | 50 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| May 21, 2024 4:09:26 PM | May 21, 2024 4:09:26 PM | May 21, 2024 5:27:37 AM | May 21, 2024 4:10:10 PM | 353316091470263 | impacteval | 9333 | 1 | May 21, 2024 | 3 | NULL | 002 | 1 | 003 | Addis Raey Health center | 1-002-1-003 | 4 | 1 | 1 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 4 | 4 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 27 | 26 | 25 | 2 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | NULL | 27 | 26 | 25 | 27 | 27 | 1 | 1 | 0 | 0 | 26 | 26 | 1 | 1 | 0 | 0 | 25 | 25 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 27 | 32 | 35 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 27 | 32 | 32 | 27 | 27 | 1 | 1 | 0 | 0 | 32 | 32 | 1 | 1 | 0 | 0 | 35 | 32 | 1.09375 | 1.09 | 0.09000000000000008 | 0.09 | NULL | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 512 | 619 | 525 | 2 | 2 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | NULL | 512 | 512 | 523 | 512 | 512 | 1 | 1 | 0 | 0 | 619 | 512 | 1.208984375 | 1.21 | 0.20999999999999996 | 0.21 | 525 | 523 | 1.0038240917782026 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 10 | 10 | 1 | 1 | 0 | 0 | 5 | 5 | 1 | 1 | 0 | 0 | 6 | 6 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 13 | 14 | 0.9285714285714286 | 0.93 | 0.06999999999999995 | 0.07 | 19 | 14 | 1.3571428571428572 | 1.36 | 0.3600000000000001 | 0.36 | 14 | 16 | 0.875 | 0.88 | 0.12 | 0.12 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | NULL | 32 | 38 | 31 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 21 | 21 | 30 | 32 | 21 | 1.5238095238095237 | 1.52 | 0.52 | 0.52 | 38 | 21 | 1.8095238095238095 | 1.81 | 0.81 | 0.81 | 31 | 30 | 1.0333333333333334 | 1.03 | 0.030000000000000027 | 0.03 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 30 | 30 | 1 | 1 | 0 | 0 | 1 | 26 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 1 | NULL | 1 | NULL | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 2 | 0 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 3 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 2 | 1 | 9.0367719 38.7369115 2451.0 5.833 | uuid:2bb13ab8-5a27-44aa-9919-d7cc2819dd87 | 1-002-1-003 | 2405131211 | APPROVED | uuid:2bb13ab8-5a27-44aa-9919-d7cc2819dd87 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | NULL | 1 | 1 | 0 | 0 | 0 | 1 | NULL | NULL | NULL | 1 | 1 | 1 | 10 | 5 | 6 | 1 | 2 | 2 | NULL | 10 | 5 | 6 | 1 | 1 | 0 | 0 | 0 | 1 | NULL | NULL | 1 | 1 | 1 | 13 | 19 | 14 | 1 | 1 | 2 | NULL | 14 | 14 | 16 | 1 | NULL | NULL | NULL | 1 | 1 | 0 | 0 | 0 | 1 | NULL | 1 | 1 | 1 | NULL | NULL | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 30 | 0 | 30 | 1 | 30 | 0 | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | Not giving attention | 1 | Staff turnover | 1 | Delivery register, CAC register, Integrated adolescent and Youth Health service register | 1 | Negligence | 1 | 1 | VCT register, Delivery register, TB register, ANC register, ICT register, EOPD register, Integrated ... | 1 | Not giving attention | 1 | Not giving attention | 1 | 1 | EOPD register | 1 | Not giving attention | NULL | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |||||||||||||||||||||||||||||||||||||||||||||
| May 21, 2024 5:59:33 PM | May 21, 2024 5:59:33 PM | May 21, 2024 6:24:13 AM | May 21, 2024 6:00:05 PM | 353316091282544 | impacteval | 11772 | 1 | May 21, 2024 | 1 | NULL | 002 | 1 | 003 | Woreda ten health center | 1-002-1-003 | 4 | 1 | 1 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 3 | 3 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 6 | 5 | 7 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 6 | 5 | 7 | 6 | 6 | 1 | 1 | 0 | 0 | 5 | 5 | 1 | 1 | 0 | 0 | 7 | 7 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 14 | 19 | 14 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 14 | 18 | 14 | 14 | 14 | 1 | 1 | 0 | 0 | 19 | 18 | 1.0555555555555556 | 1.06 | 0.06000000000000005 | 0.06 | 14 | 14 | 1 | 1 | 0 | 0 | NULL | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 32 | 38 | 44 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 32 | 40 | 44 | 32 | 32 | 1 | 1 | 0 | 0 | 38 | 40 | 0.95 | 0.95 | 0.050000000000000044 | 0.05 | 44 | 44 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 4 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 3 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 1 | 1 | 1 | 3 | 1 | 3 | 3 | 2 | 2 | 2 | 1 | 2 | 2 | 1 | 1 | 2 | 1 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 28 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 1 | NULL | 1 | NULL | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 2 | 0 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 1 | 1 | 1 | 1 | 3 | 3 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 9.0490019 38.7170332 2524.0 5.0 | uuid:417d2bbf-2b66-427c-b38c-7f9eccb8035b | 1-002-1-003 | 2405131211 | APPROVED | uuid:417d2bbf-2b66-427c-b38c-7f9eccb8035b | 1 | 1 | NULL | NULL | 1 | NULL | NULL | NULL | NULL | 1 | NULL | 1 | 0 | 0 | 0 | 1 | NULL | NULL | 1 | NULL | 1 | 1 | 1 | 3 | 4 | 3 | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 0 | 0 | 0 | 1 | 1 | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 0 | 0 | 0 | 1 | 1 | NULL | 1 | 1 | 1 | NULL | NULL | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | NULL | NULL | NULL | NULL | 1 | Delivery service register Postnatal care register | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | Emergency OPD register | NULL | NULL | NULL | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | dhis2 | NULL | NULL | dhis2 | NULL | NULL | 1 | dhis2 | NULL | dhis2 | 1 | NULL | 1 | dhis2 | NULL | 1 | dhis2 | dhis2 | NULL | dhis2 | NULL | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL |
Showing 5 sample records. Hover over cells to see full content.
ethprism_facility_office_checklist
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| CompletionDate | text | Yes | NULL | Date/time field | |
| SubmissionDate | text | Yes | NULL | Date/time field | |
| starttime | text | Yes | NULL | Date/time field | |
| endtime | text | Yes | NULL | Date/time field | |
| deviceid | text | Yes | NULL | ||
| subscriberid | text | Yes | NULL | ||
| simid | text | Yes | NULL | ||
| devicephonenum | text | Yes | NULL | Phone number field | |
| username | text | Yes | NULL | Name or title field | |
| duration | text | Yes | NULL | ||
| caseid | text | Yes | NULL | ||
| FOC105 | text | Yes | NULL | ||
| intro1 | text | Yes | NULL | ||
| FOC101 | text | Yes | NULL | ||
| FOC102 | text | Yes | NULL | ||
| FOC103 | text | Yes | NULL | ||
| FOC104 | text | Yes | NULL | ||
| admin_lvl | text | Yes | NULL | ||
| admin_lvl2 | text | Yes | NULL | ||
| FOC106 | text | Yes | NULL | ||
| FOC107 | text | Yes | NULL | ||
| FOC108 | text | Yes | NULL | ||
| tmp_foc106 | text | Yes | NULL | ||
| tmp_foc107 | text | Yes | NULL | ||
| tmp_foc108 | text | Yes | NULL | ||
| siteid | text | Yes | NULL | ||
| FOC109f | text | Yes | NULL | ||
| FOC110f | text | Yes | NULL | ||
| FOC111 | text | Yes | NULL | ||
| intro2 | text | Yes | NULL | ||
| FOC112 | text | Yes | NULL | ||
| FOC114 | text | Yes | NULL | ||
| FOC115_1 | text | Yes | NULL | ||
| FOC116_1 | text | Yes | NULL | ||
| FOC116_3 | text | Yes | NULL | ||
| FOC032_label6 | text | Yes | NULL | ||
| FOC032bg | text | Yes | NULL | ||
| FOC032bh | text | Yes | NULL | ||
| FOC032da | text | Yes | NULL | ||
| FOC032db | text | Yes | NULL | ||
| FOC032dc | text | Yes | NULL | ||
| FOC032dd | text | Yes | NULL | ||
| FOC032de | text | Yes | NULL | ||
| FOC032df | text | Yes | NULL | ||
| FOC032dg | text | Yes | NULL | ||
| FOC032dh | text | Yes | NULL | ||
| FOC032di | text | Yes | NULL | ||
| FOC032dj | text | Yes | NULL | ||
| FOC032dk | text | Yes | NULL | ||
| FOC032dl | text | Yes | NULL | ||
| FOC032dm | text | Yes | NULL | ||
| FOC032dn | text | Yes | NULL | ||
| FOC032bi | text | Yes | NULL | ||
| FOC032bj | text | Yes | NULL | ||
| FOC032bk | text | Yes | NULL | ||
| FOC032bl | text | Yes | NULL | ||
| FOC032bm | text | Yes | NULL | ||
| FOC032bn | text | Yes | NULL | ||
| FOC032bo | text | Yes | NULL | ||
| FOC032bp | text | Yes | NULL | ||
| FOC032bq | text | Yes | NULL | ||
| FOC032br | text | Yes | NULL | ||
| avail_reg_stock1 | text | Yes | NULL | ||
| FOC034bg | text | Yes | NULL | ||
| FOC035bg | text | Yes | NULL | ||
| FOC034bh | text | Yes | NULL | ||
| FOC034da | text | Yes | NULL | ||
| FOC034db | text | Yes | NULL | ||
| FOC034dc | text | Yes | NULL | ||
| FOC034dd | text | Yes | NULL | ||
| FOC034de | text | Yes | NULL | ||
| avail_reg_stock3 | text | Yes | NULL | ||
| S100 | text | Yes | NULL | ||
| S101_1 | text | Yes | NULL | ||
| S102_1 | text | Yes | NULL | ||
| S103_2_1 | text | Yes | NULL | ||
| reg_purp_1 | text | Yes | NULL | ||
| S104_6_1 | text | Yes | NULL | ||
| reg_org_1 | text | Yes | NULL | ||
| tmp_curr_yr | text | Yes | NULL | ||
| foc036_note3 | text | Yes | NULL | Descriptive text field | |
| FOC036_3m | text | Yes | NULL | ||
| FOC036_3f | text | Yes | NULL | ||
| FOC036_6 | text | Yes | NULL | ||
| foc036_note11 | text | Yes | NULL | Descriptive text field | |
| FOC036_11m | text | Yes | NULL | ||
| FOC036_11f | text | Yes | NULL | ||
| FOC036_12 | text | Yes | NULL | ||
| foc036_note12 | text | Yes | NULL | Descriptive text field | |
| FOC036_12m | text | Yes | NULL | ||
| FOC036_12f | text | Yes | NULL | ||
| FOC037_11 | text | Yes | NULL | ||
| FOC038_11 | text | Yes | NULL | ||
| FOC039_11 | text | Yes | NULL | ||
| foc041_note | text | Yes | NULL | Descriptive text field | |
| FOC041_1_1 | text | Yes | NULL | ||
| FOC041_2_1 | text | Yes | NULL | ||
| FOC041_3_4_1 | text | Yes | NULL | ||
| FOC044 | text | Yes | NULL | ||
| gps_note | text | Yes | NULL | Descriptive text field | |
| FOC113 | text | Yes | NULL | ||
| note_end | text | Yes | NULL | Descriptive text field | |
| instanceID | text | Yes | NULL | ||
| instanceName | text | Yes | NULL | Name or title field | |
| formdef_version | text | Yes | NULL | ||
| review_quality | text | Yes | NULL | ||
| review_status | text | Yes | NULL | ||
| KEY | text | Yes | NULL | ||
| FOC115_2 | text | Yes | NULL | ||
| FOC116_2 | text | Yes | NULL | ||
| FOC032_label1 | text | Yes | NULL | ||
| FOC032a | text | Yes | NULL | ||
| FOC032b | text | Yes | NULL | ||
| FOC032c | text | Yes | NULL | ||
| FOC032d | text | Yes | NULL | ||
| FOC032e | text | Yes | NULL | ||
| FOC032f | text | Yes | NULL | ||
| FOC032g | text | Yes | NULL | ||
| FOC032h | text | Yes | NULL | ||
| FOC032i | text | Yes | NULL | ||
| FOC032j | text | Yes | NULL | ||
| FOC032k | text | Yes | NULL | ||
| FOC032l | text | Yes | NULL | ||
| FOC032m | text | Yes | NULL | ||
| FOC032_label2 | text | Yes | NULL | ||
| FOC032n | text | Yes | NULL | ||
| FOC032o | text | Yes | NULL | ||
| FOC032p | text | Yes | NULL | ||
| FOC032r | text | Yes | NULL | ||
| FOC032s | text | Yes | NULL | ||
| FOC032t | text | Yes | NULL | ||
| FOC032u | text | Yes | NULL | ||
| FOC032v | text | Yes | NULL | ||
| FOC032w | text | Yes | NULL | ||
| FOC032x | text | Yes | NULL | ||
| FOC032z | text | Yes | NULL | ||
| FOC032_label3 | text | Yes | NULL | ||
| FOC032aa | text | Yes | NULL | ||
| FOC032ab | text | Yes | NULL | ||
| FOC032ac | text | Yes | NULL | ||
| FOC032ad | text | Yes | NULL | ||
| FOC032ae | text | Yes | NULL | ||
| FOC032af | text | Yes | NULL | ||
| FOC032ag | text | Yes | NULL | ||
| FOC032ah | text | Yes | NULL | ||
| FOC032ai | text | Yes | NULL | ||
| FOC032ak | text | Yes | NULL | ||
| FOC032al | text | Yes | NULL | ||
| FOC032am | text | Yes | NULL | ||
| FOC032_label4 | text | Yes | NULL | ||
| FOC032an | text | Yes | NULL | ||
| FOC032ao | text | Yes | NULL | ||
| FOC032ap | text | Yes | NULL | ||
| FOC032aq | text | Yes | NULL | ||
| FOC032ar | text | Yes | NULL | ||
| FOC032as | text | Yes | NULL | ||
| FOC032at | text | Yes | NULL | ||
| FOC032au | text | Yes | NULL | ||
| FOC032av | text | Yes | NULL | ||
| FOC032aw | text | Yes | NULL | ||
| FOC032ax | text | Yes | NULL | ||
| FOC032ay | text | Yes | NULL | ||
| FOC032_label5 | text | Yes | NULL | ||
| FOC032az | text | Yes | NULL | ||
| FOC032ba | text | Yes | NULL | ||
| FOC032bb | text | Yes | NULL | ||
| FOC032bc | text | Yes | NULL | ||
| FOC032bd | text | Yes | NULL | ||
| FOC032be | text | Yes | NULL | ||
| FOC032bf | text | Yes | NULL | ||
| FOC032ca | text | Yes | NULL | ||
| FOC032cb | text | Yes | NULL | ||
| FOC034a | text | Yes | NULL | ||
| FOC035a | text | Yes | NULL | ||
| FOC034e | text | Yes | NULL | ||
| FOC035e | text | Yes | NULL | ||
| FOC034j | text | Yes | NULL | ||
| FOC034k | text | Yes | NULL | ||
| FOC034l | text | Yes | NULL | ||
| FOC034m | text | Yes | NULL | ||
| FOC034n | text | Yes | NULL | ||
| FOC034aa | text | Yes | NULL | ||
| FOC034ap | text | Yes | NULL | ||
| FOC034aq | text | Yes | NULL | ||
| FOC034ar | text | Yes | NULL | ||
| avail_reg_stock2 | text | Yes | NULL | ||
| foc036_note1 | text | Yes | NULL | Descriptive text field | |
| FOC036_1m | text | Yes | NULL | ||
| FOC036_1f | text | Yes | NULL | ||
| foc036_note2 | text | Yes | NULL | Descriptive text field | |
| FOC036_2m | text | Yes | NULL | ||
| FOC036_2f | text | Yes | NULL | ||
| foc036_note4 | text | Yes | NULL | Descriptive text field | |
| FOC036_4m | text | Yes | NULL | ||
| FOC036_4f | text | Yes | NULL | ||
| foc036_note5 | text | Yes | NULL | Descriptive text field | |
| FOC036_5m | text | Yes | NULL | ||
| FOC036_5f | text | Yes | NULL | ||
| foc036_note6 | text | Yes | NULL | Descriptive text field | |
| FOC036_6m | text | Yes | NULL | ||
| FOC036_6f | text | Yes | NULL | ||
| foc036_note7 | text | Yes | NULL | Descriptive text field | |
| FOC036_7m | text | Yes | NULL | ||
| FOC036_7f | text | Yes | NULL | ||
| foc036_note8 | text | Yes | NULL | Descriptive text field | |
| FOC036_8m | text | Yes | NULL | ||
| FOC036_8f | text | Yes | NULL | ||
| foc036_note9 | text | Yes | NULL | Descriptive text field | |
| FOC036_9m | text | Yes | NULL | ||
| FOC036_9f | text | Yes | NULL | ||
| foc036_note10 | text | Yes | NULL | Descriptive text field | |
| FOC036_10m | text | Yes | NULL | ||
| FOC036_10f | text | Yes | NULL | ||
| FOC037_7 | text | Yes | NULL | ||
| FOC038_7 | text | Yes | NULL | ||
| FOC039_2 | text | Yes | NULL | ||
| FOC039_7 | text | Yes | NULL | ||
| FOC042 | text | Yes | NULL | ||
| FOC043 | text | Yes | NULL | ||
| FOC045 | text | Yes | NULL | ||
| FOC046 | text | Yes | NULL | ||
| FOC034b | text | Yes | NULL | ||
| FOC034c | text | Yes | NULL | ||
| FOC034d | text | Yes | NULL | ||
| FOC034f | text | Yes | NULL | ||
| FOC034g | text | Yes | NULL | ||
| FOC035l | text | Yes | NULL | ||
| FOC034r | text | Yes | NULL | ||
| FOC034s | text | Yes | NULL | ||
| FOC034t | text | Yes | NULL | ||
| FOC034v | text | Yes | NULL | ||
| FOC034w | text | Yes | NULL | ||
| FOC034ac | text | Yes | NULL | ||
| FOC034ae | text | Yes | NULL | ||
| FOC034ah | text | Yes | NULL | ||
| FOC034ai | text | Yes | NULL | ||
| FOC034ak | text | Yes | NULL | ||
| FOC034al | text | Yes | NULL | ||
| FOC034am | text | Yes | NULL | ||
| FOC034an | text | Yes | NULL | ||
| FOC034ao | text | Yes | NULL | ||
| FOC034as | text | Yes | NULL | ||
| FOC034at | text | Yes | NULL | ||
| FOC034au | text | Yes | NULL | ||
| FOC034av | text | Yes | NULL | ||
| FOC034aw | text | Yes | NULL | ||
| FOC034ax | text | Yes | NULL | ||
| FOC034ay | text | Yes | NULL | ||
| FOC034az | text | Yes | NULL | ||
| FOC034ba | text | Yes | NULL | ||
| FOC034bb | text | Yes | NULL | ||
| FOC034bc | text | Yes | NULL | ||
| FOC034bd | text | Yes | NULL | ||
| FOC035bd | text | Yes | NULL | ||
| FOC034be | text | Yes | NULL | ||
| FOC034bf | text | Yes | NULL | ||
| FOC034ca | text | Yes | NULL | ||
| FOC034cb | text | Yes | NULL | ||
| FOC037_2 | text | Yes | NULL | ||
| FOC038_3 | text | Yes | NULL | ||
| FOC041_3_1_1 | text | Yes | NULL | ||
| FOC041_1_2 | text | Yes | NULL | ||
| FOC041_2_2 | text | Yes | NULL | ||
| FOC041_3_2_2 | text | Yes | NULL | ||
| FOC041_3_4_2 | text | Yes | NULL | ||
| FOC034o | text | Yes | NULL | ||
| FOC034p | text | Yes | NULL | ||
| FOC034ab | text | Yes | NULL | ||
| FOC034ad | text | Yes | NULL | ||
| FOC034ag | text | Yes | NULL | ||
| FOC035ao | text | Yes | NULL | ||
| FOC035at | text | Yes | NULL | ||
| FOC041_3_5_1 | text | Yes | NULL | ||
| FOC041_3_1_2 | text | Yes | NULL | ||
| FOC041_3_5_2 | text | Yes | NULL | ||
| FOC034h | text | Yes | NULL | ||
| FOC034i | text | Yes | NULL | ||
| FOC034u | text | Yes | NULL | ||
| FOC034af | text | Yes | NULL | ||
| FOC035ar | text | Yes | NULL | ||
| FOC037_3 | text | Yes | NULL | ||
| FOC041_3_2_1 | text | Yes | NULL | ||
| FOC041_3_3_1 | text | Yes | NULL | ||
| FOC041_3_3_2 | text | Yes | NULL | ||
| FOC041_1_3 | text | Yes | NULL | ||
| FOC041_2_3 | text | Yes | NULL | ||
| FOC041_3_1_3 | text | Yes | NULL | ||
| FOC041_3_2_3 | text | Yes | NULL | ||
| FOC041_3_3_3 | text | Yes | NULL | ||
| FOC041_3_4_3 | text | Yes | NULL | ||
| FOC041_3_5_3 | text | Yes | NULL | ||
| FOC041_3_6_3 | text | Yes | NULL | ||
| FOC041_3_7_3 | text | Yes | NULL | ||
| FOC109h | text | Yes | NULL | ||
| FOC110h | text | Yes | NULL | ||
| FOC032_label7 | text | Yes | NULL | ||
| FOC032bs | text | Yes | NULL | ||
| FOC032bt | text | Yes | NULL | ||
| FOC032bu | text | Yes | NULL | ||
| FOC032bv | text | Yes | NULL | ||
| FOC032bw | text | Yes | NULL | ||
| FOC032bx | text | Yes | NULL | ||
| FOC034bu | text | Yes | NULL | ||
| FOC034bv | text | Yes | NULL | ||
| FOC034bw | text | Yes | NULL | ||
| FOC034bx | text | Yes | NULL | ||
| foc047_note1 | text | Yes | NULL | Descriptive text field | |
| FOC047_1m | text | Yes | NULL | ||
| FOC047_1f | text | Yes | NULL | ||
| foc047_note2 | text | Yes | NULL | Descriptive text field | |
| FOC047_2m | text | Yes | NULL | ||
| FOC047_2f | text | Yes | NULL | ||
| foc047_note3 | text | Yes | NULL | Descriptive text field | |
| FOC047_3m | text | Yes | NULL | ||
| FOC047_3f | text | Yes | NULL | ||
| FOC047_4 | text | Yes | NULL | ||
| foc047_note4 | text | Yes | NULL | Descriptive text field | |
| FOC047_4m | text | Yes | NULL | ||
| FOC047_4f | text | Yes | NULL | ||
| FOC048 | text | Yes | NULL | ||
| FOC048m | text | Yes | NULL | ||
| FOC048f | text | Yes | NULL | ||
| FOC049_3 | text | Yes | NULL | ||
| FOC050_3 | text | Yes | NULL | ||
| FOC051_3 | text | Yes | NULL | ||
| foc053_note | text | Yes | NULL | Descriptive text field | |
| FOC053_1_1 | text | Yes | NULL | ||
| FOC053_2_1 | text | Yes | NULL | ||
| FOC053_3_5_1 | text | Yes | NULL | ||
| FOC053_3_7_1 | text | Yes | NULL | ||
| FOC053_1_2 | text | Yes | NULL | ||
| FOC053_2_2 | text | Yes | NULL | ||
| FOC053_3_2_2 | text | Yes | NULL | ||
| FOC053_3_5_2 | text | Yes | NULL | ||
| FOC054 | text | Yes | NULL | ||
| FOC055 | text | Yes | NULL | ||
| FOC035ay | text | Yes | NULL | ||
| FOC037_1 | text | Yes | NULL | ||
| FOC038_2 | text | Yes | NULL | ||
| FOC039_1 | text | Yes | NULL | ||
| FOC039_3 | text | Yes | NULL | ||
| FOC039_6 | text | Yes | NULL | ||
| FOC034bi | text | Yes | NULL | ||
| FOC034bj | text | Yes | NULL | ||
| FOC034bk | text | Yes | NULL | ||
| FOC034bl | text | Yes | NULL | ||
| FOC034bm | text | Yes | NULL | ||
| FOC034bn | text | Yes | NULL | ||
| FOC037_6 | text | Yes | NULL | ||
| FOC038_6 | text | Yes | NULL | ||
| FOC034x | text | Yes | NULL | ||
| FOC038_1 | text | Yes | NULL | ||
| FOC034df | text | Yes | NULL | ||
| FOC034bo | text | Yes | NULL | ||
| FOC034bp | text | Yes | NULL | ||
| FOC034bq | text | Yes | NULL | ||
| FOC034br | text | Yes | NULL | ||
| FOC041_3_6_1 | text | Yes | NULL | ||
| FOC041_3_6_2 | text | Yes | NULL | ||
| FOC035b | text | Yes | NULL | ||
| FOC035c | text | Yes | NULL | ||
| FOC035d | text | Yes | NULL | ||
| FOC035h | text | Yes | NULL | ||
| FOC035i | text | Yes | NULL | ||
| FOC035k | text | Yes | NULL | ||
| FOC035w | text | Yes | NULL | ||
| FOC035an | text | Yes | NULL | ||
| FOC035ap | text | Yes | NULL | ||
| FOC035aq | text | Yes | NULL | ||
| FOC035as | text | Yes | NULL | ||
| FOC035au | text | Yes | NULL | ||
| FOC035av | text | Yes | NULL | ||
| FOC035aw | text | Yes | NULL | ||
| FOC035ax | text | Yes | NULL | ||
| FOC035az | text | Yes | NULL | ||
| FOC035ba | text | Yes | NULL | ||
| FOC035bb | text | Yes | NULL | ||
| FOC035bc | text | Yes | NULL | ||
| FOC035be | text | Yes | NULL | ||
| FOC037_4 | text | Yes | NULL | ||
| FOC037_5 | text | Yes | NULL | ||
| FOC037_8 | text | Yes | NULL | ||
| FOC037_9 | text | Yes | NULL | ||
| FOC038_9 | text | Yes | NULL | ||
| FOC039_8 | text | Yes | NULL | ||
| FOC041_3_7_2 | text | Yes | NULL | ||
| FOC034dg | text | Yes | NULL | ||
| FOC034dh | text | Yes | NULL | ||
| FOC034di | text | Yes | NULL | ||
| FOC034dj | text | Yes | NULL | ||
| FOC034dl | text | Yes | NULL | ||
| FOC034dm | text | Yes | NULL | ||
| FOC034dn | text | Yes | NULL | ||
| FOC034dk | text | Yes | NULL | ||
| FOC035da | text | Yes | NULL | ||
| FOC035de | text | Yes | NULL | ||
| FOC034bs | text | Yes | NULL | ||
| FOC050_1 | text | Yes | NULL | ||
| FOC050_2 | text | Yes | NULL | ||
| FOC051_2 | text | Yes | NULL | ||
| FOC053_3_1_1 | text | Yes | NULL | ||
| FOC053_3_2_1 | text | Yes | NULL | ||
| FOC053_3_1_2 | text | Yes | NULL | ||
| FOC053_1_3 | text | Yes | NULL | ||
| FOC053_2_3 | text | Yes | NULL | ||
| FOC053_3_1_3 | text | Yes | NULL | ||
| FOC053_3_2_3 | text | Yes | NULL | ||
| FOC053_1_4 | text | Yes | NULL | ||
| FOC053_1o_4 | text | Yes | NULL | ||
| FOC053_2_4 | text | Yes | NULL | ||
| FOC053_3_1_4 | text | Yes | NULL | ||
| FOC053_3_5_4 | text | Yes | NULL | ||
| FOC053_3_6_4 | text | Yes | NULL | ||
| FOC035f | text | Yes | NULL | ||
| FOC035g | text | Yes | NULL | ||
| FOC038_8 | text | Yes | NULL | ||
| FOC035m | text | Yes | NULL | ||
| FOC035n | text | Yes | NULL | ||
| FOC037_10 | text | Yes | NULL | ||
| FOC038_4 | text | Yes | NULL | ||
| FOC038_5 | text | Yes | NULL | ||
| FOC038_10 | text | Yes | NULL | ||
| FOC039_4 | text | Yes | NULL | ||
| FOC039_5 | text | Yes | NULL | ||
| FOC039_9 | text | Yes | NULL | ||
| FOC039_10 | text | Yes | NULL | ||
| FOC041_1_4 | text | Yes | NULL | ||
| FOC041_2_4 | text | Yes | NULL | ||
| FOC041_3_1_4 | text | Yes | NULL | ||
| FOC041_3_2_4 | text | Yes | NULL | ||
| FOC041_3_3_4 | text | Yes | NULL | ||
| FOC041_3_4_4 | text | Yes | NULL | ||
| FOC041_3_5_4 | text | Yes | NULL | ||
| FOC041_3_6_4 | text | Yes | NULL | ||
| FOC041_3_7_4 | text | Yes | NULL | ||
| FOC041_1_5 | text | Yes | NULL | ||
| FOC041_2_5 | text | Yes | NULL | ||
| FOC041_3_1_5 | text | Yes | NULL | ||
| FOC041_3_2_5 | text | Yes | NULL | ||
| FOC041_3_3_5 | text | Yes | NULL | ||
| FOC051_1 | text | Yes | NULL | ||
| FOC032q | text | Yes | NULL | ||
| FOC032y | text | Yes | NULL | ||
| FOC032aj | text | Yes | NULL | ||
| FOC034q | text | Yes | NULL | ||
| FOC034y | text | Yes | NULL | ||
| FOC049_1 | text | Yes | NULL | ||
| FOC049_2 | text | Yes | NULL | ||
| FOC053_3_3_1 | text | Yes | NULL | ||
| FOC053_3_4_1 | text | Yes | NULL | ||
| FOC053_3_6_1 | text | Yes | NULL | ||
| FOC053_3_3_2 | text | Yes | NULL | ||
| FOC053_3_4_2 | text | Yes | NULL | ||
| FOC053_3_6_2 | text | Yes | NULL | ||
| FOC053_3_7_2 | text | Yes | NULL | ||
| FOC053_3_3_3 | text | Yes | NULL | ||
| FOC053_3_4_3 | text | Yes | NULL | ||
| FOC053_3_5_3 | text | Yes | NULL | ||
| FOC053_3_6_3 | text | Yes | NULL | ||
| FOC053_3_7_3 | text | Yes | NULL | ||
| S103_5_1 | text | Yes | NULL | ||
| S104_4_1 | text | Yes | NULL | ||
| S101_2 | text | Yes | NULL | ||
| S102_2 | text | Yes | NULL | ||
| S103_5_2 | text | Yes | NULL | ||
| reg_purp_2 | text | Yes | NULL | ||
| S104_4_2 | text | Yes | NULL | ||
| reg_org_2 | text | Yes | NULL | ||
| FOC034aj | text | Yes | NULL | ||
| FOC035bs | text | Yes | NULL | ||
| FOC035j | text | Yes | NULL | ||
| FOC035o | text | Yes | NULL | ||
| FOC035p | text | Yes | NULL | ||
| FOC035q | text | Yes | NULL | ||
| FOC035r | text | Yes | NULL | ||
| FOC035s | text | Yes | NULL | ||
| FOC035t | text | Yes | NULL | ||
| FOC035u | text | Yes | NULL | ||
| FOC035v | text | Yes | NULL | ||
| FOC035x | text | Yes | NULL | ||
| FOC035y | text | Yes | NULL | ||
| FOC035aa | text | Yes | NULL | ||
| FOC035ab | text | Yes | NULL | ||
| FOC035ac | text | Yes | NULL | ||
| FOC035ad | text | Yes | NULL | ||
| FOC035ae | text | Yes | NULL | ||
| FOC035af | text | Yes | NULL | ||
| FOC035ag | text | Yes | NULL | ||
| FOC035ah | text | Yes | NULL | ||
| FOC035ai | text | Yes | NULL | ||
| FOC035aj | text | Yes | NULL | ||
| FOC035ak | text | Yes | NULL | ||
| FOC035al | text | Yes | NULL | ||
| FOC035am | text | Yes | NULL | ||
| FOC035bf | text | Yes | NULL | ||
| FOC035ca | text | Yes | NULL | ||
| FOC035cb | text | Yes | NULL | ||
| FOC035bu | text | Yes | NULL | ||
| FOC115_96 | text | Yes | NULL | ||
| FOC115_Other | text | Yes | NULL | ||
| FOC035dd | text | Yes | NULL | ||
| FOC035dj | text | Yes | NULL | ||
| FOC035dk | text | Yes | NULL | ||
| FOC041_3_4_5 | text | Yes | NULL | ||
| FOC041_3_5_5 | text | Yes | NULL | ||
| FOC041_1_6 | text | Yes | NULL | ||
| FOC041_2_6 | text | Yes | NULL | ||
| FOC041_3_1_6 | text | Yes | NULL | ||
| FOC041_3_2_6 | text | Yes | NULL | ||
| FOC041_3_3_6 | text | Yes | NULL | ||
| FOC041_3_4_6 | text | Yes | NULL | ||
| FOC041_3_5_6 | text | Yes | NULL | ||
| FOC041_1_7 | text | Yes | NULL | ||
| FOC041_2_7 | text | Yes | NULL | ||
| FOC041_3_1_7 | text | Yes | NULL | ||
| FOC041_3_2_7 | text | Yes | NULL | ||
| FOC041_3_3_7 | text | Yes | NULL | ||
| FOC035bw | text | Yes | NULL | ||
| FOC035bx | text | Yes | NULL | ||
| FOC035bh | text | Yes | NULL | ||
| FOC102_Other | text | Yes | NULL | ||
| FOC116_96 | text | Yes | NULL | ||
| FOC116_Other | text | Yes | NULL | ||
| FOC032_1 | text | Yes | NULL | ||
| FOC032_2 | text | Yes | NULL | ||
| FOC032_3 | text | Yes | NULL | ||
| FOC032_4 | text | Yes | NULL | ||
| FOC032_5 | text | Yes | NULL | ||
| FOC032_6 | text | Yes | NULL | ||
| FOC032_7 | text | Yes | NULL | ||
| FOC032_8 | text | Yes | NULL | ||
| FOC032_9 | text | Yes | NULL | ||
| FOC032_10 | text | Yes | NULL | ||
| FOC032_11 | text | Yes | NULL | ||
| FOC032_12 | text | Yes | NULL | ||
| FOC032_13 | text | Yes | NULL | ||
| FOC032_14 | text | Yes | NULL | ||
| FOC032_15 | text | Yes | NULL | ||
| FOC032_16 | text | Yes | NULL | ||
| FOC032_17 | text | Yes | NULL | ||
| FOC032_18 | text | Yes | NULL | ||
| FOC032_19 | text | Yes | NULL | ||
| FOC032_20 | text | Yes | NULL | ||
| FOC032_21 | text | Yes | NULL | ||
| FOC032_22 | text | Yes | NULL | ||
| FOC032_23 | text | Yes | NULL | ||
| FOC032_24 | text | Yes | NULL | ||
| FOC032_25 | text | Yes | NULL | ||
| FOC032_26 | text | Yes | NULL | ||
| FOC032_27 | text | Yes | NULL | ||
| FOC032_28 | text | Yes | NULL | ||
| FOC032_29 | text | Yes | NULL | ||
| FOC032_30 | text | Yes | NULL | ||
| FOC032_31 | text | Yes | NULL | ||
| FOC032_32 | text | Yes | NULL | ||
| FOC032_33 | text | Yes | NULL | ||
| FOC032_34 | text | Yes | NULL | ||
| FOC032_35 | text | Yes | NULL | ||
| FOC032_36 | text | Yes | NULL | ||
| FOC032_37 | text | Yes | NULL | ||
| FOC032_38 | text | Yes | NULL | ||
| FOC032_39 | text | Yes | NULL | ||
| FOC032_40 | text | Yes | NULL | ||
| FOC032_41 | text | Yes | NULL | ||
| FOC032_42 | text | Yes | NULL | ||
| FOC032_43 | text | Yes | NULL | ||
| FOC032_44 | text | Yes | NULL | ||
| FOC032_45 | text | Yes | NULL | ||
| FOC032_46 | text | Yes | NULL | ||
| FOC032_47 | text | Yes | NULL | ||
| FOC032_48 | text | Yes | NULL | ||
| FOC032_49 | text | Yes | NULL | ||
| FOC032_50 | text | Yes | NULL | ||
| FOC032_51 | text | Yes | NULL | ||
| FOC032_52 | text | Yes | NULL | ||
| FOC032_53 | text | Yes | NULL | ||
| FOC032_54 | text | Yes | NULL | ||
| FOC032_55 | text | Yes | NULL | ||
| FOC032_56 | text | Yes | NULL | ||
| FOC032_57 | text | Yes | NULL | ||
| FOC032_58 | text | Yes | NULL | ||
| FOC032_59 | text | Yes | NULL | ||
| FOC032_60 | text | Yes | NULL | ||
| FOC032_61 | text | Yes | NULL | ||
| FOC032_62 | text | Yes | NULL | ||
| FOC032_63 | text | Yes | NULL | ||
| FOC032_64 | text | Yes | NULL | ||
| FOC032_65 | text | Yes | NULL | ||
| FOC032_66 | text | Yes | NULL | ||
| FOC032_67 | text | Yes | NULL | ||
| FOC032_68 | text | Yes | NULL | ||
| FOC032_69 | text | Yes | NULL | ||
| FOC032_70 | text | Yes | NULL | ||
| FOC032_71 | text | Yes | NULL | ||
| FOC032_72 | text | Yes | NULL | ||
| FOC032_73 | text | Yes | NULL | ||
| FOC032_74 | text | Yes | NULL | ||
| FOC032_75 | text | Yes | NULL | ||
| FOC032_76 | text | Yes | NULL | ||
| FOC032_77 | text | Yes | NULL | ||
| FOC032_78 | text | Yes | NULL | ||
| FOC032_79 | text | Yes | NULL | ||
| FOC032_80 | text | Yes | NULL | ||
| FOC032_81 | text | Yes | NULL | ||
| FOC032_82 | text | Yes | NULL | ||
| FOC032_83 | text | Yes | NULL | ||
| FOC032_84 | text | Yes | NULL | ||
| FOC032_85 | text | Yes | NULL | ||
| FOC032_86 | text | Yes | NULL | ||
| FOC034_1 | text | Yes | NULL | ||
| FOC035_1 | text | Yes | NULL | ||
| FOC034_2 | text | Yes | NULL | ||
| FOC035_2 | text | Yes | NULL | ||
| FOC034_3 | text | Yes | NULL | ||
| FOC035_3 | text | Yes | NULL | ||
| FOC034_4 | text | Yes | NULL | ||
| FOC035_4 | text | Yes | NULL | ||
| FOC034_5 | text | Yes | NULL | ||
| FOC035_5 | text | Yes | NULL | ||
| FOC034_18 | text | Yes | NULL | ||
| FOC035_18 | text | Yes | NULL | ||
| FOC034_34 | text | Yes | NULL | ||
| FOC035_34 | text | Yes | NULL | ||
| FOC034_42 | text | Yes | NULL | ||
| FOC035_42 | text | Yes | NULL | ||
| FOC034_58 | text | Yes | NULL | ||
| FOC034_59 | text | Yes | NULL | ||
| FOC034_60 | text | Yes | NULL | ||
| FOC034_61 | text | Yes | NULL | ||
| FOC034_65 | text | Yes | NULL | ||
| FOC034_6 | text | Yes | NULL | ||
| FOC034_7 | text | Yes | NULL | ||
| FOC034_8 | text | Yes | NULL | ||
| FOC034_9 | text | Yes | NULL | ||
| FOC034_10 | text | Yes | NULL | ||
| FOC034_11 | text | Yes | NULL | ||
| FOC034_12 | text | Yes | NULL | ||
| FOC034_13 | text | Yes | NULL | ||
| FOC034_14 | text | Yes | NULL | ||
| FOC034_15 | text | Yes | NULL | ||
| FOC034_16 | text | Yes | NULL | ||
| FOC034_17 | text | Yes | NULL | ||
| FOC034_19 | text | Yes | NULL | ||
| FOC034_20 | text | Yes | NULL | ||
| FOC034_22 | text | Yes | NULL | ||
| FOC034_23 | text | Yes | NULL | ||
| FOC034_24 | text | Yes | NULL | ||
| FOC034_25 | text | Yes | NULL | ||
| FOC034_26 | text | Yes | NULL | ||
| FOC034_27 | text | Yes | NULL | ||
| FOC034_28 | text | Yes | NULL | ||
| FOC034_29 | text | Yes | NULL | ||
| FOC034_30 | text | Yes | NULL | ||
| FOC034_31 | text | Yes | NULL | ||
| FOC034_32 | text | Yes | NULL | ||
| FOC034_33 | text | Yes | NULL | ||
| FOC034_35 | text | Yes | NULL | ||
| FOC034_36 | text | Yes | NULL | ||
| FOC034_37 | text | Yes | NULL | ||
| FOC034_38 | text | Yes | NULL | ||
| FOC034_39 | text | Yes | NULL | ||
| FOC034_40 | text | Yes | NULL | ||
| FOC034_41 | text | Yes | NULL | ||
| FOC034_43 | text | Yes | NULL | ||
| FOC034_44 | text | Yes | NULL | ||
| FOC034_45 | text | Yes | NULL | ||
| FOC034_46 | text | Yes | NULL | ||
| FOC034_47 | text | Yes | NULL | ||
| FOC034_48 | text | Yes | NULL | ||
| FOC034_49 | text | Yes | NULL | ||
| FOC034_50 | text | Yes | NULL | ||
| FOC034_51 | text | Yes | NULL | ||
| FOC034_52 | text | Yes | NULL | ||
| FOC034_53 | text | Yes | NULL | ||
| FOC034_54 | text | Yes | NULL | ||
| FOC034_55 | text | Yes | NULL | ||
| FOC034_56 | text | Yes | NULL | ||
| FOC034_57 | text | Yes | NULL | ||
| FOC034_62 | text | Yes | NULL | ||
| FOC034_63 | text | Yes | NULL | ||
| FOC034_64 | text | Yes | NULL | ||
| FOC034_66 | text | Yes | NULL | ||
| FOC034_67 | text | Yes | NULL | ||
| FOC034_68 | text | Yes | NULL | ||
| FOC034_69 | text | Yes | NULL | ||
| FOC034_70 | text | Yes | NULL | ||
| FOC034_71 | text | Yes | NULL | ||
| FOC034_72 | text | Yes | NULL | ||
| FOC034_73 | text | Yes | NULL | ||
| FOC034_74 | text | Yes | NULL | ||
| FOC034_75 | text | Yes | NULL | ||
| FOC034_76 | text | Yes | NULL | ||
| FOC034_77 | text | Yes | NULL | ||
| FOC034_78 | text | Yes | NULL | ||
| FOC034_79 | text | Yes | NULL | ||
| FOC034_80 | text | Yes | NULL | ||
| FOC034_81 | text | Yes | NULL | ||
| FOC034_82 | text | Yes | NULL | ||
| FOC034_83 | text | Yes | NULL | ||
| FOC034_84 | text | Yes | NULL | ||
| FOC034_85 | text | Yes | NULL | ||
| FOC034_86 | text | Yes | NULL | ||
| FOC035_22 | text | Yes | NULL | ||
| FOC041_1_8 | text | Yes | NULL | ||
| FOC041_2_8 | text | Yes | NULL | ||
| FOC041_3_1_8 | text | Yes | NULL | ||
| FOC041_3_2_8 | text | Yes | NULL | ||
| FOC041_1_9 | text | Yes | NULL | ||
| FOC041_2_9 | text | Yes | NULL | ||
| FOC041_3_1_9 | text | Yes | NULL | ||
| FOC041_3_2_9 | text | Yes | NULL | ||
| FOC041_1_10 | text | Yes | NULL | ||
| FOC041_2_10 | text | Yes | NULL | ||
| FOC041_3_1_10 | text | Yes | NULL | ||
| FOC041_3_2_10 | text | Yes | NULL | ||
| FOC041_1_11 | text | Yes | NULL | ||
| FOC041_2_11 | text | Yes | NULL | ||
| FOC041_3_1_11 | text | Yes | NULL | ||
| FOC041_3_2_11 | text | Yes | NULL | ||
| FOC041_1_12 | text | Yes | NULL | ||
| FOC041_2_12 | text | Yes | NULL | ||
| FOC041_3_1_12 | text | Yes | NULL | ||
| FOC041_3_2_12 | text | Yes | NULL | ||
| FOC041_1_13 | text | Yes | NULL | ||
| FOC041_2_13 | text | Yes | NULL | ||
| FOC041_3_1_13 | text | Yes | NULL | ||
| FOC041_3_2_13 | text | Yes | NULL | ||
| FOC035_7 | text | Yes | NULL | ||
| FOC035_9 | text | Yes | NULL | ||
| FOC035_12 | text | Yes | NULL | ||
| FOC035_48 | text | Yes | NULL | ||
| FOC035_51 | text | Yes | NULL | ||
| FOC035_56 | text | Yes | NULL | ||
| FOC035_62 | text | Yes | NULL | ||
| S103_9_1 | text | Yes | NULL | ||
| FOC041_3_96_1 | text | Yes | NULL | ||
| FOC041_3o_1 | text | Yes | NULL | ||
| FOC041_3_96_2 | text | Yes | NULL | ||
| FOC041_3o_2 | text | Yes | NULL | ||
| FOC107_Other | text | Yes | NULL | ||
| FOC035bv | text | Yes | NULL | ||
| female_rhis | text | Yes | NULL | ||
| FOC032do | text | Yes | NULL | ||
| FOC032dp | text | Yes | NULL | ||
| FOC034do | text | Yes | NULL | ||
| FOC034dp | text | Yes | NULL | ||
| FOC037_96 | text | Yes | NULL | ||
| FOC037o | text | Yes | NULL | ||
| FOC038_96 | text | Yes | NULL | ||
| FOC038o | text | Yes | NULL | ||
| FOC039_96 | text | Yes | NULL | ||
| FOC039o | text | Yes | NULL | ||
| FOC035_30 | text | Yes | NULL | ||
| FOC053_1o_1 | text | Yes | NULL | ||
| FOC035_23 | text | Yes | NULL | ||
| FOC035_36 | text | Yes | NULL | ||
| FOC035_39 | text | Yes | NULL | ||
| FOC035_53 | text | Yes | NULL | ||
| FOC035_54 | text | Yes | NULL | ||
| FOC035_64 | text | Yes | NULL | ||
| FOC035_77 | text | Yes | NULL | ||
| FOC035_79 | text | Yes | NULL | ||
| FOC035_81 | text | Yes | NULL | ||
| FOC041_3_96_3 | text | Yes | NULL | ||
| FOC041_3o_3 | text | Yes | NULL | ||
| FOC035_17 | text | Yes | NULL | ||
| FOC035_26 | text | Yes | NULL | ||
| FOC035_28 | text | Yes | NULL | ||
| FOC035_35 | text | Yes | NULL | ||
| FOC035_38 | text | Yes | NULL | ||
| FOC035_45 | text | Yes | NULL | ||
| FOC035_46 | text | Yes | NULL | ||
| FOC035_47 | text | Yes | NULL | ||
| FOC035_49 | text | Yes | NULL | ||
| FOC035_55 | text | Yes | NULL | ||
| FOC035_57 | text | Yes | NULL | ||
| FOC035_60 | text | Yes | NULL | ||
| FOC035_61 | text | Yes | NULL | ||
| FOC035_63 | text | Yes | NULL | ||
| FOC035_65 | text | Yes | NULL | ||
| FOC035_68 | text | Yes | NULL | ||
| FOC035_71 | text | Yes | NULL | ||
| FOC035_72 | text | Yes | NULL | ||
| FOC035_74 | text | Yes | NULL | ||
| FOC035_75 | text | Yes | NULL | ||
| FOC035_78 | text | Yes | NULL | ||
| FOC035_80 | text | Yes | NULL | ||
| FOC035_83 | text | Yes | NULL | ||
| FOC035_84 | text | Yes | NULL | ||
| FOC035_85 | text | Yes | NULL | ||
| FOC035df | text | Yes | NULL | ||
| FOC035dl | text | Yes | NULL | ||
| FOC035dm | text | Yes | NULL | ||
| FOC035dn | text | Yes | NULL | ||
| FOC035do | text | Yes | NULL | ||
| FOC035dp | text | Yes | NULL | ||
| FOC035bi | text | Yes | NULL | ||
| FOC035bm | text | Yes | NULL | ||
| FOC035_16 | text | Yes | NULL | ||
| FOC035_37 | text | Yes | NULL | ||
| FOC035_69 | text | Yes | NULL | ||
| FOC035dh | text | Yes | NULL | ||
| FOC035bk | text | Yes | NULL | ||
| FOC035_40 | text | Yes | NULL | ||
| S103_96_1 | text | Yes | NULL | ||
| S102_19_1 | text | Yes | NULL | ||
| FOC035_52 | text | Yes | NULL | ||
| FOC035bl | text | Yes | NULL | ||
| FOC035bn | text | Yes | NULL | ||
| FOC035_29 | text | Yes | NULL | ||
| FOC035_41 | text | Yes | NULL | ||
| FOC035_58 | text | Yes | NULL | ||
| FOC035_59 | text | Yes | NULL | ||
| FOC035_82 | text | Yes | NULL | ||
| FOC035_66 | text | Yes | NULL | ||
| FOC035db | text | Yes | NULL | ||
| FOC035dc | text | Yes | NULL | ||
| FOC035di | text | Yes | NULL | ||
| FOC035bj | text | Yes | NULL | ||
| FOC035bo | text | Yes | NULL | ||
| FOC035bp | text | Yes | NULL | ||
| FOC035bq | text | Yes | NULL | ||
| FOC035br | text | Yes | NULL | ||
| FOC035_6 | text | Yes | NULL | ||
| FOC035_11 | text | Yes | NULL | ||
| FOC035_13 | text | Yes | NULL | ||
| FOC035_14 | text | Yes | NULL | ||
| FOC035_15 | text | Yes | NULL | ||
| FOC035_24 | text | Yes | NULL | ||
| FOC035_67 | text | Yes | NULL | ||
| FOC035_70 | text | Yes | NULL | ||
| FOC035_8 | text | Yes | NULL | ||
| FOC035_10 | text | Yes | NULL | ||
| FOC035_19 | text | Yes | NULL | ||
| S103_11_1 | text | Yes | NULL | ||
| S104_1_1 | text | Yes | NULL | ||
| S103_11_2 | text | Yes | NULL | ||
| S104_5_2 | text | Yes | NULL | ||
| S103_96_2 | text | Yes | NULL | ||
| S102_19_2 | text | Yes | NULL | ||
| S104_1_2 | text | Yes | NULL | ||
| FOC035_20 | text | Yes | NULL | ||
| FOC035_25 | text | Yes | NULL | ||
| FOC041_1o_1 | text | Yes | NULL | ||
| S103_3_1 | text | Yes | NULL | ||
| S103_6_1 | text | Yes | NULL | ||
| S103_14_1 | text | Yes | NULL | ||
| S104_2_1 | text | Yes | NULL | ||
| FOC035_73 | text | Yes | NULL | ||
| FOC041_3_96_4 | text | Yes | NULL | ||
| FOC041_3o_4 | text | Yes | NULL | ||
| FOC041_3_96_5 | text | Yes | NULL | ||
| FOC041_3o_5 | text | Yes | NULL | ||
| FOC035_44 | text | Yes | NULL | ||
| FOC035_50 | text | Yes | NULL | ||
| FOC035_76 | text | Yes | NULL | ||
| FOC035_27 | text | Yes | NULL | ||
| FOC035_31 | text | Yes | NULL | ||
| FOC035dg | text | Yes | NULL | ||
| FOC050_96 | text | Yes | NULL | ||
| FOC050o | text | Yes | NULL | ||
| FOC041_1_14 | text | Yes | NULL | ||
| FOC041_2_14 | text | Yes | NULL | ||
| FOC041_3_1_14 | text | Yes | NULL | ||
| FOC041_1_15 | text | Yes | NULL | ||
| FOC041_2_15 | text | Yes | NULL | ||
| FOC041_3_1_15 | text | Yes | NULL | ||
| FOC041_1_16 | text | Yes | NULL | ||
| FOC041_2_16 | text | Yes | NULL | ||
| FOC041_3_1_16 | text | Yes | NULL | ||
| FOC041_1_17 | text | Yes | NULL | ||
| FOC041_2_17 | text | Yes | NULL | ||
| FOC041_3_1_17 | text | Yes | NULL | ||
| FOC041_1_18 | text | Yes | NULL | ||
| FOC041_2_18 | text | Yes | NULL | ||
| FOC041_3_1_18 | text | Yes | NULL | ||
| FOC041_1_19 | text | Yes | NULL | ||
| FOC041_2_19 | text | Yes | NULL | ||
| FOC041_3_1_19 | text | Yes | NULL | ||
| FOC041_3_2_19 | text | Yes | NULL | ||
| FOC041_3_3_19 | text | Yes | NULL | ||
| FOC041_3_4_19 | text | Yes | NULL | ||
| FOC041_3_5_19 | text | Yes | NULL | ||
| FOC041_1_20 | text | Yes | NULL | ||
| FOC041_2_20 | text | Yes | NULL | ||
| FOC041_3_1_20 | text | Yes | NULL | ||
| FOC041_3_3_20 | text | Yes | NULL | ||
| FOC041_3_4_20 | text | Yes | NULL | ||
| FOC041_3_5_20 | text | Yes | NULL | ||
| FOC041_1_21 | text | Yes | NULL | ||
| FOC041_2_21 | text | Yes | NULL | ||
| FOC041_3_1_21 | text | Yes | NULL | ||
| FOC041_3_2_21 | text | Yes | NULL | ||
| FOC041_3_3_21 | text | Yes | NULL | ||
| FOC041_3_5_21 | text | Yes | NULL | ||
| FOC041_3_7_21 | text | Yes | NULL | ||
| FOC041_1_22 | text | Yes | NULL | ||
| FOC041_2_22 | text | Yes | NULL | ||
| FOC041_3_1_22 | text | Yes | NULL | ||
| FOC041_3_2_22 | text | Yes | NULL | ||
| FOC041_3_3_22 | text | Yes | NULL | ||
| FOC041_3_4_22 | text | Yes | NULL | ||
| FOC041_3_5_22 | text | Yes | NULL | ||
| FOC041_3_7_22 | text | Yes | NULL | ||
| FOC041_1_23 | text | Yes | NULL | ||
| FOC041_2_23 | text | Yes | NULL | ||
| FOC041_3_1_23 | text | Yes | NULL | ||
| FOC041_3_2_23 | text | Yes | NULL | ||
| FOC041_3_3_23 | text | Yes | NULL | ||
| FOC041_3_4_23 | text | Yes | NULL | ||
| FOC041_1_24 | text | Yes | NULL | ||
| FOC041_2_24 | text | Yes | NULL | ||
| FOC041_3_1_24 | text | Yes | NULL | ||
| FOC041_3_2_24 | text | Yes | NULL | ||
| FOC041_3_3_24 | text | Yes | NULL | ||
| FOC041_3_4_24 | text | Yes | NULL | ||
| FOC041_3_5_24 | text | Yes | NULL | ||
| FOC041_1_25 | text | Yes | NULL | ||
| FOC041_2_25 | text | Yes | NULL | ||
| FOC041_3_1_25 | text | Yes | NULL | ||
| FOC041_3_2_25 | text | Yes | NULL | ||
| FOC041_3_3_25 | text | Yes | NULL | ||
| FOC041_3_4_25 | text | Yes | NULL | ||
| FOC041_3_5_25 | text | Yes | NULL | ||
| FOC041_3_7_25 | text | Yes | NULL | ||
| FOC041_1_26 | text | Yes | NULL | ||
| FOC041_2_26 | text | Yes | NULL | ||
| FOC041_3_3_26 | text | Yes | NULL | ||
| FOC041_3_7_26 | text | Yes | NULL | ||
| FOC041_1_27 | text | Yes | NULL | ||
| FOC041_2_27 | text | Yes | NULL | ||
| FOC041_3_1_27 | text | Yes | NULL | ||
| FOC041_3_2_27 | text | Yes | NULL | ||
| FOC041_3_4_27 | text | Yes | NULL | ||
| FOC041_3_5_27 | text | Yes | NULL | ||
| FOC041_3_7_27 | text | Yes | NULL | ||
| FOC035_32 | text | Yes | NULL | ||
| FOC035_33 | text | Yes | NULL | ||
| S103_13_1 | text | Yes | NULL | ||
| S103_4_1 | text | Yes | NULL | ||
| S104_7_1 | text | Yes | NULL | ||
| S103_9_2 | text | Yes | NULL | ||
| FOC035_86 | text | Yes | NULL | ||
| FOC053_1o_2 | text | Yes | NULL | ||
| S103_1_1 | text | Yes | NULL | ||
| FOC041_1o_2 | text | Yes | NULL | ||
| FOC041_3_6_6 | text | Yes | NULL | ||
| S103_17_1 | text | Yes | NULL | ||
| S103_3_2 | text | Yes | NULL | ||
| FOC049_96 | text | Yes | NULL | ||
| FOC049o | text | Yes | NULL | ||
| FOC053_1o_3 | text | Yes | NULL | ||
| FOC053_3_2_4 | text | Yes | NULL | ||
| FOC041_3_6_5 | text | Yes | NULL | ||
| S103_12_1 | text | Yes | NULL | ||
| S104_2_2 | text | Yes | NULL | ||
| S104_7_2 | text | Yes | NULL | ||
| S101_3 | text | Yes | NULL | ||
| S102_3 | text | Yes | NULL | ||
| S103_11_3 | text | Yes | NULL | ||
| reg_purp_3 | text | Yes | NULL | ||
| S104_3_3 | text | Yes | NULL | ||
| S101_4 | text | Yes | NULL | ||
| S102_4 | text | Yes | NULL | ||
| S103_10_4 | text | Yes | NULL | ||
| S102_10_4 | text | Yes | NULL | ||
| S104_2_4 | text | Yes | NULL | ||
| S103_18_1 | text | Yes | NULL | ||
| S103_7_1 | text | Yes | NULL |
This table has no foreign key relationships.
| CompletionDate | SubmissionDate | starttime | endtime | deviceid | subscriberid | simid | devicephonenum | username | duration | caseid | FOC105 | intro1 | FOC101 | FOC102 | FOC103 | FOC104 | admin_lvl | admin_lvl2 | FOC106 | FOC107 | FOC108 | tmp_foc106 | tmp_foc107 | tmp_foc108 | siteid | FOC109f | FOC110f | FOC111 | intro2 | FOC112 | FOC114 | FOC115_1 | FOC116_1 | FOC116_3 | FOC032_label6 | FOC032bg | FOC032bh | FOC032da | FOC032db | FOC032dc | FOC032dd | FOC032de | FOC032df | FOC032dg | FOC032dh | FOC032di | FOC032dj | FOC032dk | FOC032dl | FOC032dm | FOC032dn | FOC032bi | FOC032bj | FOC032bk | FOC032bl | FOC032bm | FOC032bn | FOC032bo | FOC032bp | FOC032bq | FOC032br | avail_reg_stock1 | FOC034bg | FOC035bg | FOC034bh | FOC034da | FOC034db | FOC034dc | FOC034dd | FOC034de | avail_reg_stock3 | S100 | S101_1 | S102_1 | S103_2_1 | reg_purp_1 | S104_6_1 | reg_org_1 | tmp_curr_yr | foc036_note3 | FOC036_3m | FOC036_3f | FOC036_6 | foc036_note11 | FOC036_11m | FOC036_11f | FOC036_12 | foc036_note12 | FOC036_12m | FOC036_12f | FOC037_11 | FOC038_11 | FOC039_11 | foc041_note | FOC041_1_1 | FOC041_2_1 | FOC041_3_4_1 | FOC044 | gps_note | FOC113 | note_end | instanceID | instanceName | formdef_version | review_quality | review_status | KEY | FOC115_2 | FOC116_2 | FOC032_label1 | FOC032a | FOC032b | FOC032c | FOC032d | FOC032e | FOC032f | FOC032g | FOC032h | FOC032i | FOC032j | FOC032k | FOC032l | FOC032m | FOC032_label2 | FOC032n | FOC032o | FOC032p | FOC032r | FOC032s | FOC032t | FOC032u | FOC032v | FOC032w | FOC032x | FOC032z | FOC032_label3 | FOC032aa | FOC032ab | FOC032ac | FOC032ad | FOC032ae | FOC032af | FOC032ag | FOC032ah | FOC032ai | FOC032ak | FOC032al | FOC032am | FOC032_label4 | FOC032an | FOC032ao | FOC032ap | FOC032aq | FOC032ar | FOC032as | FOC032at | FOC032au | FOC032av | FOC032aw | FOC032ax | FOC032ay | FOC032_label5 | FOC032az | FOC032ba | FOC032bb | FOC032bc | FOC032bd | FOC032be | FOC032bf | FOC032ca | FOC032cb | FOC034a | FOC035a | FOC034e | FOC035e | FOC034j | FOC034k | FOC034l | FOC034m | FOC034n | FOC034aa | FOC034ap | FOC034aq | FOC034ar | avail_reg_stock2 | foc036_note1 | FOC036_1m | FOC036_1f | foc036_note2 | FOC036_2m | FOC036_2f | foc036_note4 | FOC036_4m | FOC036_4f | foc036_note5 | FOC036_5m | FOC036_5f | foc036_note6 | FOC036_6m | FOC036_6f | foc036_note7 | FOC036_7m | FOC036_7f | foc036_note8 | FOC036_8m | FOC036_8f | foc036_note9 | FOC036_9m | FOC036_9f | foc036_note10 | FOC036_10m | FOC036_10f | FOC037_7 | FOC038_7 | FOC039_2 | FOC039_7 | FOC042 | FOC043 | FOC045 | FOC046 | FOC034b | FOC034c | FOC034d | FOC034f | FOC034g | FOC035l | FOC034r | FOC034s | FOC034t | FOC034v | FOC034w | FOC034ac | FOC034ae | FOC034ah | FOC034ai | FOC034ak | FOC034al | FOC034am | FOC034an | FOC034ao | FOC034as | FOC034at | FOC034au | FOC034av | FOC034aw | FOC034ax | FOC034ay | FOC034az | FOC034ba | FOC034bb | FOC034bc | FOC034bd | FOC035bd | FOC034be | FOC034bf | FOC034ca | FOC034cb | FOC037_2 | FOC038_3 | FOC041_3_1_1 | FOC041_1_2 | FOC041_2_2 | FOC041_3_2_2 | FOC041_3_4_2 | FOC034o | FOC034p | FOC034ab | FOC034ad | FOC034ag | FOC035ao | FOC035at | FOC041_3_5_1 | FOC041_3_1_2 | FOC041_3_5_2 | FOC034h | FOC034i | FOC034u | FOC034af | FOC035ar | FOC037_3 | FOC041_3_2_1 | FOC041_3_3_1 | FOC041_3_3_2 | FOC041_1_3 | FOC041_2_3 | FOC041_3_1_3 | FOC041_3_2_3 | FOC041_3_3_3 | FOC041_3_4_3 | FOC041_3_5_3 | FOC041_3_6_3 | FOC041_3_7_3 | FOC109h | FOC110h | FOC032_label7 | FOC032bs | FOC032bt | FOC032bu | FOC032bv | FOC032bw | FOC032bx | FOC034bu | FOC034bv | FOC034bw | FOC034bx | foc047_note1 | FOC047_1m | FOC047_1f | foc047_note2 | FOC047_2m | FOC047_2f | foc047_note3 | FOC047_3m | FOC047_3f | FOC047_4 | foc047_note4 | FOC047_4m | FOC047_4f | FOC048 | FOC048m | FOC048f | FOC049_3 | FOC050_3 | FOC051_3 | foc053_note | FOC053_1_1 | FOC053_2_1 | FOC053_3_5_1 | FOC053_3_7_1 | FOC053_1_2 | FOC053_2_2 | FOC053_3_2_2 | FOC053_3_5_2 | FOC054 | FOC055 | FOC035ay | FOC037_1 | FOC038_2 | FOC039_1 | FOC039_3 | FOC039_6 | FOC034bi | FOC034bj | FOC034bk | FOC034bl | FOC034bm | FOC034bn | FOC037_6 | FOC038_6 | FOC034x | FOC038_1 | FOC034df | FOC034bo | FOC034bp | FOC034bq | FOC034br | FOC041_3_6_1 | FOC041_3_6_2 | FOC035b | FOC035c | FOC035d | FOC035h | FOC035i | FOC035k | FOC035w | FOC035an | FOC035ap | FOC035aq | FOC035as | FOC035au | FOC035av | FOC035aw | FOC035ax | FOC035az | FOC035ba | FOC035bb | FOC035bc | FOC035be | FOC037_4 | FOC037_5 | FOC037_8 | FOC037_9 | FOC038_9 | FOC039_8 | FOC041_3_7_2 | FOC034dg | FOC034dh | FOC034di | FOC034dj | FOC034dl | FOC034dm | FOC034dn | FOC034dk | FOC035da | FOC035de | FOC034bs | FOC050_1 | FOC050_2 | FOC051_2 | FOC053_3_1_1 | FOC053_3_2_1 | FOC053_3_1_2 | FOC053_1_3 | FOC053_2_3 | FOC053_3_1_3 | FOC053_3_2_3 | FOC053_1_4 | FOC053_1o_4 | FOC053_2_4 | FOC053_3_1_4 | FOC053_3_5_4 | FOC053_3_6_4 | FOC035f | FOC035g | FOC038_8 | FOC035m | FOC035n | FOC037_10 | FOC038_4 | FOC038_5 | FOC038_10 | FOC039_4 | FOC039_5 | FOC039_9 | FOC039_10 | FOC041_1_4 | FOC041_2_4 | FOC041_3_1_4 | FOC041_3_2_4 | FOC041_3_3_4 | FOC041_3_4_4 | FOC041_3_5_4 | FOC041_3_6_4 | FOC041_3_7_4 | FOC041_1_5 | FOC041_2_5 | FOC041_3_1_5 | FOC041_3_2_5 | FOC041_3_3_5 | FOC051_1 | FOC032q | FOC032y | FOC032aj | FOC034q | FOC034y | FOC049_1 | FOC049_2 | FOC053_3_3_1 | FOC053_3_4_1 | FOC053_3_6_1 | FOC053_3_3_2 | FOC053_3_4_2 | FOC053_3_6_2 | FOC053_3_7_2 | FOC053_3_3_3 | FOC053_3_4_3 | FOC053_3_5_3 | FOC053_3_6_3 | FOC053_3_7_3 | S103_5_1 | S104_4_1 | S101_2 | S102_2 | S103_5_2 | reg_purp_2 | S104_4_2 | reg_org_2 | FOC034aj | FOC035bs | FOC035j | FOC035o | FOC035p | FOC035q | FOC035r | FOC035s | FOC035t | FOC035u | FOC035v | FOC035x | FOC035y | FOC035aa | FOC035ab | FOC035ac | FOC035ad | FOC035ae | FOC035af | FOC035ag | FOC035ah | FOC035ai | FOC035aj | FOC035ak | FOC035al | FOC035am | FOC035bf | FOC035ca | FOC035cb | FOC035bu | FOC115_96 | FOC115_Other | FOC035dd | FOC035dj | FOC035dk | FOC041_3_4_5 | FOC041_3_5_5 | FOC041_1_6 | FOC041_2_6 | FOC041_3_1_6 | FOC041_3_2_6 | FOC041_3_3_6 | FOC041_3_4_6 | FOC041_3_5_6 | FOC041_1_7 | FOC041_2_7 | FOC041_3_1_7 | FOC041_3_2_7 | FOC041_3_3_7 | FOC035bw | FOC035bx | FOC035bh | FOC102_Other | FOC116_96 | FOC116_Other | FOC032_1 | FOC032_2 | FOC032_3 | FOC032_4 | FOC032_5 | FOC032_6 | FOC032_7 | FOC032_8 | FOC032_9 | FOC032_10 | FOC032_11 | FOC032_12 | FOC032_13 | FOC032_14 | FOC032_15 | FOC032_16 | FOC032_17 | FOC032_18 | FOC032_19 | FOC032_20 | FOC032_21 | FOC032_22 | FOC032_23 | FOC032_24 | FOC032_25 | FOC032_26 | FOC032_27 | FOC032_28 | FOC032_29 | FOC032_30 | FOC032_31 | FOC032_32 | FOC032_33 | FOC032_34 | FOC032_35 | FOC032_36 | FOC032_37 | FOC032_38 | FOC032_39 | FOC032_40 | FOC032_41 | FOC032_42 | FOC032_43 | FOC032_44 | FOC032_45 | FOC032_46 | FOC032_47 | FOC032_48 | FOC032_49 | FOC032_50 | FOC032_51 | FOC032_52 | FOC032_53 | FOC032_54 | FOC032_55 | FOC032_56 | FOC032_57 | FOC032_58 | FOC032_59 | FOC032_60 | FOC032_61 | FOC032_62 | FOC032_63 | FOC032_64 | FOC032_65 | FOC032_66 | FOC032_67 | FOC032_68 | FOC032_69 | FOC032_70 | FOC032_71 | FOC032_72 | FOC032_73 | FOC032_74 | FOC032_75 | FOC032_76 | FOC032_77 | FOC032_78 | FOC032_79 | FOC032_80 | FOC032_81 | FOC032_82 | FOC032_83 | FOC032_84 | FOC032_85 | FOC032_86 | FOC034_1 | FOC035_1 | FOC034_2 | FOC035_2 | FOC034_3 | FOC035_3 | FOC034_4 | FOC035_4 | FOC034_5 | FOC035_5 | FOC034_18 | FOC035_18 | FOC034_34 | FOC035_34 | FOC034_42 | FOC035_42 | FOC034_58 | FOC034_59 | FOC034_60 | FOC034_61 | FOC034_65 | FOC034_6 | FOC034_7 | FOC034_8 | FOC034_9 | FOC034_10 | FOC034_11 | FOC034_12 | FOC034_13 | FOC034_14 | FOC034_15 | FOC034_16 | FOC034_17 | FOC034_19 | FOC034_20 | FOC034_22 | FOC034_23 | FOC034_24 | FOC034_25 | FOC034_26 | FOC034_27 | FOC034_28 | FOC034_29 | FOC034_30 | FOC034_31 | FOC034_32 | FOC034_33 | FOC034_35 | FOC034_36 | FOC034_37 | FOC034_38 | FOC034_39 | FOC034_40 | FOC034_41 | FOC034_43 | FOC034_44 | FOC034_45 | FOC034_46 | FOC034_47 | FOC034_48 | FOC034_49 | FOC034_50 | FOC034_51 | FOC034_52 | FOC034_53 | FOC034_54 | FOC034_55 | FOC034_56 | FOC034_57 | FOC034_62 | FOC034_63 | FOC034_64 | FOC034_66 | FOC034_67 | FOC034_68 | FOC034_69 | FOC034_70 | FOC034_71 | FOC034_72 | FOC034_73 | FOC034_74 | FOC034_75 | FOC034_76 | FOC034_77 | FOC034_78 | FOC034_79 | FOC034_80 | FOC034_81 | FOC034_82 | FOC034_83 | FOC034_84 | FOC034_85 | FOC034_86 | FOC035_22 | FOC041_1_8 | FOC041_2_8 | FOC041_3_1_8 | FOC041_3_2_8 | FOC041_1_9 | FOC041_2_9 | FOC041_3_1_9 | FOC041_3_2_9 | FOC041_1_10 | FOC041_2_10 | FOC041_3_1_10 | FOC041_3_2_10 | FOC041_1_11 | FOC041_2_11 | FOC041_3_1_11 | FOC041_3_2_11 | FOC041_1_12 | FOC041_2_12 | FOC041_3_1_12 | FOC041_3_2_12 | FOC041_1_13 | FOC041_2_13 | FOC041_3_1_13 | FOC041_3_2_13 | FOC035_7 | FOC035_9 | FOC035_12 | FOC035_48 | FOC035_51 | FOC035_56 | FOC035_62 | S103_9_1 | FOC041_3_96_1 | FOC041_3o_1 | FOC041_3_96_2 | FOC041_3o_2 | FOC107_Other | FOC035bv | female_rhis | FOC032do | FOC032dp | FOC034do | FOC034dp | FOC037_96 | FOC037o | FOC038_96 | FOC038o | FOC039_96 | FOC039o | FOC035_30 | FOC053_1o_1 | FOC035_23 | FOC035_36 | FOC035_39 | FOC035_53 | FOC035_54 | FOC035_64 | FOC035_77 | FOC035_79 | FOC035_81 | FOC041_3_96_3 | FOC041_3o_3 | FOC035_17 | FOC035_26 | FOC035_28 | FOC035_35 | FOC035_38 | FOC035_45 | FOC035_46 | FOC035_47 | FOC035_49 | FOC035_55 | FOC035_57 | FOC035_60 | FOC035_61 | FOC035_63 | FOC035_65 | FOC035_68 | FOC035_71 | FOC035_72 | FOC035_74 | FOC035_75 | FOC035_78 | FOC035_80 | FOC035_83 | FOC035_84 | FOC035_85 | FOC035df | FOC035dl | FOC035dm | FOC035dn | FOC035do | FOC035dp | FOC035bi | FOC035bm | FOC035_16 | FOC035_37 | FOC035_69 | FOC035dh | FOC035bk | FOC035_40 | S103_96_1 | S102_19_1 | FOC035_52 | FOC035bl | FOC035bn | FOC035_29 | FOC035_41 | FOC035_58 | FOC035_59 | FOC035_82 | FOC035_66 | FOC035db | FOC035dc | FOC035di | FOC035bj | FOC035bo | FOC035bp | FOC035bq | FOC035br | FOC035_6 | FOC035_11 | FOC035_13 | FOC035_14 | FOC035_15 | FOC035_24 | FOC035_67 | FOC035_70 | FOC035_8 | FOC035_10 | FOC035_19 | S103_11_1 | S104_1_1 | S103_11_2 | S104_5_2 | S103_96_2 | S102_19_2 | S104_1_2 | FOC035_20 | FOC035_25 | FOC041_1o_1 | S103_3_1 | S103_6_1 | S103_14_1 | S104_2_1 | FOC035_73 | FOC041_3_96_4 | FOC041_3o_4 | FOC041_3_96_5 | FOC041_3o_5 | FOC035_44 | FOC035_50 | FOC035_76 | FOC035_27 | FOC035_31 | FOC035dg | FOC050_96 | FOC050o | FOC041_1_14 | FOC041_2_14 | FOC041_3_1_14 | FOC041_1_15 | FOC041_2_15 | FOC041_3_1_15 | FOC041_1_16 | FOC041_2_16 | FOC041_3_1_16 | FOC041_1_17 | FOC041_2_17 | FOC041_3_1_17 | FOC041_1_18 | FOC041_2_18 |
|---|