Original commit for gemini keywords model.
Browse files- README.md +159 -0
- config.json +17 -0
- ctfidf.safetensors +3 -0
- ctfidf_config.json +2709 -0
- topic_embeddings.safetensors +3 -0
- topics.json +0 -0
README.md
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
tags:
|
| 4 |
+
- bertopic
|
| 5 |
+
library_name: bertopic
|
| 6 |
+
pipeline_tag: text-classification
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# BERTopic-gemini-keywords
|
| 10 |
+
|
| 11 |
+
This is a [BERTopic](https://github.com/MaartenGr/BERTopic) model.
|
| 12 |
+
BERTopic is a flexible and modular topic modeling framework that allows for the generation of easily interpretable topics from large datasets.
|
| 13 |
+
|
| 14 |
+
## Usage
|
| 15 |
+
|
| 16 |
+
To use this model, please install BERTopic:
|
| 17 |
+
|
| 18 |
+
```
|
| 19 |
+
pip install -U bertopic
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |
+
You can use the model as follows:
|
| 23 |
+
|
| 24 |
+
```python
|
| 25 |
+
from bertopic import BERTopic
|
| 26 |
+
topic_model = BERTopic.load("nataliecastro/BERTopic-gemini-keywords")
|
| 27 |
+
|
| 28 |
+
topic_model.get_topic_info()
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Topic overview
|
| 32 |
+
|
| 33 |
+
* Number of topics: 90
|
| 34 |
+
* Number of training documents: 4040
|
| 35 |
+
|
| 36 |
+
<details>
|
| 37 |
+
<summary>Click here for an overview of all topics.</summary>
|
| 38 |
+
|
| 39 |
+
| Topic ID | Topic Keywords | Topic Frequency | Label |
|
| 40 |
+
|----------|----------------|-----------------|-------|
|
| 41 |
+
| -1 | board - school - policy - covid19 - meeting | 10 | -1_board_school_policy_covid19 |
|
| 42 |
+
| 0 | revenue - expenditures - budget - finance - funding | 1210 | 0_revenue_expenditures_budget_finance |
|
| 43 |
+
| 1 | bond - projects - construction - issue - renovations | 196 | 1_bond_projects_construction_issue |
|
| 44 |
+
| 2 | community - involvement - awards - appreciation - events | 155 | 2_community_involvement_awards_appreciation |
|
| 45 |
+
| 3 | westminster - public - meeting - of - red | 111 | 3_westminster_public_meeting_of |
|
| 46 |
+
| 4 | technology - internet - chromebooks - cell - devices | 78 | 4_technology_internet_chromebooks_cell |
|
| 47 |
+
| 5 | growth - performance - data - scores - test | 76 | 5_growth_performance_data_scores |
|
| 48 |
+
| 6 | construction - projects - building - costs - project | 75 | 6_construction_projects_building_costs |
|
| 49 |
+
| 7 | diversity - racism - inclusion - equity - hiring | 74 | 7_diversity_racism_inclusion_equity |
|
| 50 |
+
| 8 | mental - health - trauma - suicide - support | 68 | 8_mental_health_trauma_suicide |
|
| 51 |
+
| 9 | sports - athletics - athletic - athletes - coach | 58 | 9_sports_athletics_athletic_athletes |
|
| 52 |
+
| 10 | mask - mandates - mandate - parental - concerns | 57 | 10_mask_mandates_mandate_parental |
|
| 53 |
+
| 11 | transportation - bus - drivers - routes - buses | 54 | 11_transportation_bus_drivers_routes |
|
| 54 |
+
| 12 | family - parent - engagement - involvement - partnerships | 52 | 12_family_parent_engagement_involvement |
|
| 55 |
+
| 13 | comment - comments - public - procedures - board | 51 | 13_comment_comments_public_procedures |
|
| 56 |
+
| 14 | salary - negotiations - contract - compensation - teacher | 48 | 14_salary_negotiations_contract_compensation |
|
| 57 |
+
| 15 | audit - financial - statements - pension - internal | 43 | 15_audit_financial_statements_pension |
|
| 58 |
+
| 16 | greeley - evans - west - proclamation - scholarship | 39 | 16_greeley_evans_west_proclamation |
|
| 59 |
+
| 17 | partnerships - community - engagement - collaboration - success | 38 | 17_partnerships_community_engagement_collaboration |
|
| 60 |
+
| 18 | bullying - prevention - contest - poster - discipline | 37 | 18_bullying_prevention_contest_poster |
|
| 61 |
+
| 19 | reopening - covid19 - safety - measures - guidelines | 37 | 19_reopening_covid19_safety_measures |
|
| 62 |
+
| 20 | preschool - early - childhood - kindergarten - fullday | 37 | 20_preschool_early_childhood_kindergarten |
|
| 63 |
+
| 21 | rate - dropout - graduation - rates - attendance | 36 | 21_rate_dropout_graduation_rates |
|
| 64 |
+
| 22 | mill - levy - expenditures - charter - finance | 36 | 22_mill_levy_expenditures_charter |
|
| 65 |
+
| 23 | thompson - staff - introductions - recognition - dr | 35 | 23_thompson_staff_introductions_recognition |
|
| 66 |
+
| 24 | bilingual - language - translation - seal - bilingualism | 35 | 24_bilingual_language_translation_seal |
|
| 67 |
+
| 25 | mask - masks - mandate - health - safety | 33 | 25_mask_masks_mandate_health |
|
| 68 |
+
| 26 | charter - classical - complaint - values - policy | 32 | 26_charter_classical_complaint_values |
|
| 69 |
+
| 27 | special - services - education - iep - staffing | 32 | 27_special_services_education_iep |
|
| 70 |
+
| 28 | sro - sros - police - resource - discipline | 31 | 28_sro_sros_police_resource |
|
| 71 |
+
| 29 | emotional - socialemotional - social - learning - sel | 31 | 29_emotional_socialemotional_social_learning |
|
| 72 |
+
| 30 | lgbtq - transgender - identity - gender - rights | 30 | 30_lgbtq_transgender_identity_gender |
|
| 73 |
+
| 31 | colorado - bills - amendment - funding - legislative | 30 | 31_colorado_bills_amendment_funding |
|
| 74 |
+
| 32 | impact - covid19 - act - cares - budget | 29 | 32_impact_covid19_act_cares |
|
| 75 |
+
| 33 | covid19 - response - recognition - challenges - covid | 29 | 33_covid19_response_recognition_challenges |
|
| 76 |
+
| 34 | closure - closures - capacity - cuts - master | 28 | 34_closure_closures_capacity_cuts |
|
| 77 |
+
| 35 | remote - learning - digital - schedules - online | 28 | 35_remote_learning_digital_schedules |
|
| 78 |
+
| 36 | security - safety - measures - drills - communication | 28 | 36_security_safety_measures_drills |
|
| 79 |
+
| 37 | cte - career - pathways - workbased - and | 27 | 37_cte_career_pathways_workbased |
|
| 80 |
+
| 38 | adoption - curriculum - studies - resources - pilot | 27 | 38_adoption_curriculum_studies_resources |
|
| 81 |
+
| 39 | literacy - math - reading - mathematics - assessments | 26 | 39_literacy_math_reading_mathematics |
|
| 82 |
+
| 40 | valley - boulder - participation - superintendent - report | 26 | 40_valley_boulder_participation_superintendent |
|
| 83 |
+
| 41 | agenda - consent - session - legislative - meeting | 26 | 41_agenda_consent_session_legislative |
|
| 84 |
+
| 42 | leadership - transformation - outcomes - turnaround - leader | 25 | 42_leadership_transformation_outcomes_turnaround |
|
| 85 |
+
| 43 | equity - visas - council - honor - national | 25 | 43_equity_visas_council_honor |
|
| 86 |
+
| 44 | air - conditioning - cooling - heat - solutions | 24 | 44_air_conditioning_cooling_heat |
|
| 87 |
+
| 45 | vaccination - case - masking - numbers - vaccines | 24 | 45_vaccination_case_masking_numbers |
|
| 88 |
+
| 46 | contract - contracts - matters - superintendent - approval | 23 | 46_contract_contracts_matters_superintendent |
|
| 89 |
+
| 47 | colorado - finance - budget - k12 - economy | 23 | 47_colorado_finance_budget_k12 |
|
| 90 |
+
| 48 | strategic - plan - goals - planning - action | 23 | 48_strategic_plan_goals_planning |
|
| 91 |
+
| 49 | nutrition - food - meals - pantry - meal | 22 | 49_nutrition_food_meals_pantry |
|
| 92 |
+
| 50 | remote - learning - covid19 - attendance - inperson | 21 | 50_remote_learning_covid19_attendance |
|
| 93 |
+
| 51 | quarantine - cases - tracing - quarantines - testing | 21 | 51_quarantine_cases_tracing_quarantines |
|
| 94 |
+
| 52 | vaccine - mask - mandates - vaccines - mandate | 21 | 52_vaccine_mask_mandates_vaccines |
|
| 95 |
+
| 53 | literacy - reading - curriculum - recommendations - parton | 21 | 53_literacy_reading_curriculum_recommendations |
|
| 96 |
+
| 54 | online - enrollment - program - trends - advocacy | 20 | 54_online_enrollment_program_trends |
|
| 97 |
+
| 55 | adjournment - motions - agenda - meeting - motion | 20 | 55_adjournment_motions_agenda_meeting |
|
| 98 |
+
| 56 | teachers - students - academy - learning - teaching | 20 | 56_teachers_students_academy_learning |
|
| 99 |
+
| 57 | fees - course - textbooks - athletic - athletics | 19 | 57_fees_course_textbooks_athletic |
|
| 100 |
+
| 58 | donations - foundation - hires - day - picnic | 19 | 58_donations_foundation_hires_day |
|
| 101 |
+
| 59 | professional - development - training - educator - evaluation | 18 | 59_professional_development_training_educator |
|
| 102 |
+
| 60 | pandemic - safety - covid19 - cases - mou | 18 | 60_pandemic_safety_covid19_cases |
|
| 103 |
+
| 61 | requirements - technical - fine - graduation - career | 17 | 61_requirements_technical_fine_graduation |
|
| 104 |
+
| 62 | benefits - insurance - employee - healthcare - cost | 17 | 62_benefits_insurance_employee_healthcare |
|
| 105 |
+
| 63 | dyslexia - reading - intervention - special - wilson | 17 | 63_dyslexia_reading_intervention_special |
|
| 106 |
+
| 64 | vaccination - reopening - variants - vaccinations - vaccine | 17 | 64_vaccination_reopening_variants_vaccinations |
|
| 107 |
+
| 65 | marijuana - medical - vaping - regulation - tax | 17 | 65_marijuana_medical_vaping_regulation |
|
| 108 |
+
| 66 | cameras - security - privacy - surveillance - raptor | 16 | 66_cameras_security_privacy_surveillance |
|
| 109 |
+
| 67 | property - mill - levy - assessed - taxes | 16 | 67_property_mill_levy_assessed |
|
| 110 |
+
| 68 | the - engagement - facility - grace - priorities | 16 | 68_the_engagement_facility_grace |
|
| 111 |
+
| 69 | sustainability - energy - environment - waste - efficiency | 16 | 69_sustainability_energy_environment_waste |
|
| 112 |
+
| 70 | funding - opportunities - micro - private - philanthropy | 15 | 70_funding_opportunities_micro_private |
|
| 113 |
+
| 71 | avid - ib - ap - program - college | 15 | 71_avid_ib_ap_program |
|
| 114 |
+
| 72 | cultural - proficiency - inclusive - climate - culture | 14 | 72_cultural_proficiency_inclusive_climate |
|
| 115 |
+
| 73 | gifted - english - language - identification - and | 14 | 73_gifted_english_language_identification |
|
| 116 |
+
| 74 | geothermal - project - costs - pvc - timeline | 14 | 74_geothermal_project_costs_pvc |
|
| 117 |
+
| 75 | items - agenda - housekeeping - member - meetings | 14 | 75_items_agenda_housekeeping_member |
|
| 118 |
+
| 76 | ix - title - harassment - sexual - compliance | 14 | 76_ix_title_harassment_sexual |
|
| 119 |
+
| 77 | wellness - schoolbased - healthcare - health - sunrise | 13 | 77_wellness_schoolbased_healthcare_health |
|
| 120 |
+
| 78 | turnover - teacher - shortage - employee - retention | 13 | 78_turnover_teacher_shortage_employee |
|
| 121 |
+
| 79 | mental - health - impact - covid19 - inperson | 13 | 79_mental_health_impact_covid19 |
|
| 122 |
+
| 80 | reopening - phases - models - teachers - 91 | 13 | 80_reopening_phases_models_teachers |
|
| 123 |
+
| 81 | land - property - purchase - easement - use | 13 | 81_land_property_purchase_easement |
|
| 124 |
+
| 82 | head - start - childhood - early - assessment | 13 | 82_head_start_childhood_early |
|
| 125 |
+
| 83 | safety - lead - snow - drinking - experiences | 12 | 83_safety_lead_snow_drinking |
|
| 126 |
+
| 84 | scholarships - scholarship - teachers - dream - announcements | 12 | 84_scholarships_scholarship_teachers_dream |
|
| 127 |
+
| 85 | religion - bible - curriculum - god - antiamericanism | 11 | 85_religion_bible_curriculum_god |
|
| 128 |
+
| 86 | transparency - requests - information - cora - website | 11 | 86_transparency_requests_information_cora |
|
| 129 |
+
| 87 | one - with - the - legislative - highlighting | 11 | 87_one_with_the_legislative |
|
| 130 |
+
| 88 | holiday - calendar - greetings - holidays - calendars | 10 | 88_holiday_calendar_greetings_holidays |
|
| 131 |
+
|
| 132 |
+
</details>
|
| 133 |
+
|
| 134 |
+
## Training hyperparameters
|
| 135 |
+
|
| 136 |
+
* calculate_probabilities: True
|
| 137 |
+
* language: english
|
| 138 |
+
* low_memory: False
|
| 139 |
+
* min_topic_size: 10
|
| 140 |
+
* n_gram_range: (1, 1)
|
| 141 |
+
* nr_topics: None
|
| 142 |
+
* seed_topic_list: None
|
| 143 |
+
* top_n_words: 10
|
| 144 |
+
* verbose: True
|
| 145 |
+
* zeroshot_min_similarity: 0.7
|
| 146 |
+
* zeroshot_topic_list: None
|
| 147 |
+
|
| 148 |
+
## Framework versions
|
| 149 |
+
|
| 150 |
+
* Numpy: 1.24.3
|
| 151 |
+
* HDBSCAN: 0.8.29
|
| 152 |
+
* UMAP: 0.5.6
|
| 153 |
+
* Pandas: 1.5.3
|
| 154 |
+
* Scikit-Learn: 1.2.2
|
| 155 |
+
* Sentence-transformers: 3.1.0
|
| 156 |
+
* Transformers: 4.44.2
|
| 157 |
+
* Numba: 0.57.0
|
| 158 |
+
* Plotly: 5.9.0
|
| 159 |
+
* Python: 3.10.12
|
config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"calculate_probabilities": true,
|
| 3 |
+
"language": "english",
|
| 4 |
+
"low_memory": false,
|
| 5 |
+
"min_topic_size": 10,
|
| 6 |
+
"n_gram_range": [
|
| 7 |
+
1,
|
| 8 |
+
1
|
| 9 |
+
],
|
| 10 |
+
"nr_topics": null,
|
| 11 |
+
"seed_topic_list": null,
|
| 12 |
+
"top_n_words": 10,
|
| 13 |
+
"verbose": true,
|
| 14 |
+
"zeroshot_min_similarity": 0.7,
|
| 15 |
+
"zeroshot_topic_list": null,
|
| 16 |
+
"embedding_model": "sentence-transformers/all-MiniLM-L6-v2"
|
| 17 |
+
}
|
ctfidf.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:049b3a826a4e6c7c81a7239b81b36f0ac14004dbc57a78a7bbc570a9254825fd
|
| 3 |
+
size 139956
|
ctfidf_config.json
ADDED
|
@@ -0,0 +1,2709 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"ctfidf_model": {
|
| 3 |
+
"bm25_weighting": false,
|
| 4 |
+
"reduce_frequent_words": false
|
| 5 |
+
},
|
| 6 |
+
"vectorizer_model": {
|
| 7 |
+
"params": {
|
| 8 |
+
"analyzer": "word",
|
| 9 |
+
"binary": false,
|
| 10 |
+
"decode_error": "strict",
|
| 11 |
+
"encoding": "utf-8",
|
| 12 |
+
"input": "content",
|
| 13 |
+
"lowercase": true,
|
| 14 |
+
"max_df": 1.0,
|
| 15 |
+
"max_features": null,
|
| 16 |
+
"min_df": 1,
|
| 17 |
+
"ngram_range": [
|
| 18 |
+
1,
|
| 19 |
+
1
|
| 20 |
+
],
|
| 21 |
+
"stop_words": null,
|
| 22 |
+
"strip_accents": null,
|
| 23 |
+
"token_pattern": "(?u)\\b\\w\\w+\\b",
|
| 24 |
+
"vocabulary": null
|
| 25 |
+
},
|
| 26 |
+
"vocab": {
|
| 27 |
+
"school": 2142,
|
| 28 |
+
"safety": 2114,
|
| 29 |
+
"mill": 1521,
|
| 30 |
+
"levy": 1382,
|
| 31 |
+
"security": 2164,
|
| 32 |
+
"funding": 1025,
|
| 33 |
+
"board": 268,
|
| 34 |
+
"meeting": 1494,
|
| 35 |
+
"budget": 303,
|
| 36 |
+
"discussions": 721,
|
| 37 |
+
"gunfree": 1103,
|
| 38 |
+
"zones": 2677,
|
| 39 |
+
"measures": 1485,
|
| 40 |
+
"student": 2323,
|
| 41 |
+
"perceptions": 1747,
|
| 42 |
+
"societal": 2234,
|
| 43 |
+
"issues": 1294,
|
| 44 |
+
"drug": 771,
|
| 45 |
+
"rehabilitation": 1995,
|
| 46 |
+
"community": 476,
|
| 47 |
+
"concerns": 504,
|
| 48 |
+
"monument": 1548,
|
| 49 |
+
"academy": 32,
|
| 50 |
+
"bond": 275,
|
| 51 |
+
"issue": 1293,
|
| 52 |
+
"charter": 394,
|
| 53 |
+
"schools": 2145,
|
| 54 |
+
"tax": 2376,
|
| 55 |
+
"district": 739,
|
| 56 |
+
"staff": 2271,
|
| 57 |
+
"welcome": 2622,
|
| 58 |
+
"new": 1591,
|
| 59 |
+
"secretary": 2163,
|
| 60 |
+
"input": 1246,
|
| 61 |
+
"colorado": 459,
|
| 62 |
+
"amendment": 117,
|
| 63 |
+
"73": 20,
|
| 64 |
+
"property": 1893,
|
| 65 |
+
"education": 798,
|
| 66 |
+
"income": 1217,
|
| 67 |
+
"building": 308,
|
| 68 |
+
"corporation": 569,
|
| 69 |
+
"taxpayer": 2378,
|
| 70 |
+
"dollars": 753,
|
| 71 |
+
"assets": 182,
|
| 72 |
+
"dissolution": 732,
|
| 73 |
+
"enrollment": 855,
|
| 74 |
+
"ap": 134,
|
| 75 |
+
"classes": 425,
|
| 76 |
+
"resolutions": 2055,
|
| 77 |
+
"construction": 534,
|
| 78 |
+
"taxes": 2377,
|
| 79 |
+
"high": 1138,
|
| 80 |
+
"project": 1882,
|
| 81 |
+
"health": 1123,
|
| 82 |
+
"class": 424,
|
| 83 |
+
"leadership": 1360,
|
| 84 |
+
"financing": 970,
|
| 85 |
+
"partnership": 1721,
|
| 86 |
+
"timeline": 2437,
|
| 87 |
+
"superintendent": 2343,
|
| 88 |
+
"search": 2159,
|
| 89 |
+
"involvement": 1286,
|
| 90 |
+
"engagement": 847,
|
| 91 |
+
"support": 2347,
|
| 92 |
+
"resource": 2056,
|
| 93 |
+
"allocation": 111,
|
| 94 |
+
"grant": 1079,
|
| 95 |
+
"applications": 140,
|
| 96 |
+
"modular": 1540,
|
| 97 |
+
"units": 2527,
|
| 98 |
+
"unity": 2528,
|
| 99 |
+
"simple": 2212,
|
| 100 |
+
"messaging": 1509,
|
| 101 |
+
"curriculum": 618,
|
| 102 |
+
"review": 2080,
|
| 103 |
+
"feedback": 950,
|
| 104 |
+
"teacher": 2381,
|
| 105 |
+
"responsibility": 2063,
|
| 106 |
+
"cycle": 625,
|
| 107 |
+
"kiwanis": 1334,
|
| 108 |
+
"kids": 1330,
|
| 109 |
+
"service": 2178,
|
| 110 |
+
"deca": 645,
|
| 111 |
+
"journalism": 1310,
|
| 112 |
+
"awards": 215,
|
| 113 |
+
"extracurricular": 922,
|
| 114 |
+
"activities": 59,
|
| 115 |
+
"honor": 1161,
|
| 116 |
+
"cords": 566,
|
| 117 |
+
"achievements": 43,
|
| 118 |
+
"legislation": 1375,
|
| 119 |
+
"preschool": 1838,
|
| 120 |
+
"of": 1631,
|
| 121 |
+
"one": 1644,
|
| 122 |
+
"it": 1295,
|
| 123 |
+
"with": 2651,
|
| 124 |
+
"stating": 2292,
|
| 125 |
+
"that": 2410,
|
| 126 |
+
"where": 2635,
|
| 127 |
+
"topics": 2451,
|
| 128 |
+
"social": 2232,
|
| 129 |
+
"and": 123,
|
| 130 |
+
"mental": 1503,
|
| 131 |
+
"as": 171,
|
| 132 |
+
"including": 1213,
|
| 133 |
+
"cancellations": 334,
|
| 134 |
+
"highlighting": 1141,
|
| 135 |
+
"key": 1329,
|
| 136 |
+
"the": 2411,
|
| 137 |
+
"possibility": 1809,
|
| 138 |
+
"data": 634,
|
| 139 |
+
"such": 2335,
|
| 140 |
+
"emphasizing": 836,
|
| 141 |
+
"sharing": 2192,
|
| 142 |
+
"open": 1649,
|
| 143 |
+
"interviews": 1276,
|
| 144 |
+
"insurance": 1253,
|
| 145 |
+
"graduation": 1076,
|
| 146 |
+
"rates": 1941,
|
| 147 |
+
"disabilities": 707,
|
| 148 |
+
"financial": 968,
|
| 149 |
+
"report": 2033,
|
| 150 |
+
"authority": 209,
|
| 151 |
+
"robotics": 2093,
|
| 152 |
+
"sleep": 2225,
|
| 153 |
+
"deprivation": 681,
|
| 154 |
+
"compensation": 481,
|
| 155 |
+
"success": 2333,
|
| 156 |
+
"appreciation": 144,
|
| 157 |
+
"reporting": 2034,
|
| 158 |
+
"students": 2324,
|
| 159 |
+
"location": 1417,
|
| 160 |
+
"approval": 152,
|
| 161 |
+
"contract": 546,
|
| 162 |
+
"academic": 29,
|
| 163 |
+
"analysis": 122,
|
| 164 |
+
"audit": 203,
|
| 165 |
+
"firm": 977,
|
| 166 |
+
"consent": 526,
|
| 167 |
+
"agenda": 100,
|
| 168 |
+
"program": 1876,
|
| 169 |
+
"strategic": 2312,
|
| 170 |
+
"plan": 1784,
|
| 171 |
+
"budgetary": 304,
|
| 172 |
+
"comparisons": 480,
|
| 173 |
+
"retention": 2073,
|
| 174 |
+
"sports": 2261,
|
| 175 |
+
"teams": 2385,
|
| 176 |
+
"volunteer": 2593,
|
| 177 |
+
"work": 2655,
|
| 178 |
+
"cosby": 571,
|
| 179 |
+
"vaping": 2560,
|
| 180 |
+
"first": 978,
|
| 181 |
+
"life": 1392,
|
| 182 |
+
"skills": 2220,
|
| 183 |
+
"vocational": 2588,
|
| 184 |
+
"exploration": 911,
|
| 185 |
+
"presentations": 1841,
|
| 186 |
+
"cooking": 558,
|
| 187 |
+
"resumes": 2071,
|
| 188 |
+
"planning": 1785,
|
| 189 |
+
"finance": 966,
|
| 190 |
+
"future": 1030,
|
| 191 |
+
"vision": 2580,
|
| 192 |
+
"brainstorming": 290,
|
| 193 |
+
"diverse": 742,
|
| 194 |
+
"perspectives": 1758,
|
| 195 |
+
"direction": 704,
|
| 196 |
+
"public": 1906,
|
| 197 |
+
"cuts": 623,
|
| 198 |
+
"executive": 894,
|
| 199 |
+
"session": 2180,
|
| 200 |
+
"performance": 1748,
|
| 201 |
+
"collaboration": 453,
|
| 202 |
+
"update": 2533,
|
| 203 |
+
"debt": 644,
|
| 204 |
+
"sustainability": 2355,
|
| 205 |
+
"projections": 1885,
|
| 206 |
+
"for": 990,
|
| 207 |
+
"lacking": 1338,
|
| 208 |
+
"clear": 432,
|
| 209 |
+
"coronavirus": 568,
|
| 210 |
+
"closures": 437,
|
| 211 |
+
"remote": 2016,
|
| 212 |
+
"learning": 1366,
|
| 213 |
+
"concurrent": 507,
|
| 214 |
+
"recognition": 1959,
|
| 215 |
+
"policy": 1796,
|
| 216 |
+
"discussion": 720,
|
| 217 |
+
"due": 775,
|
| 218 |
+
"process": 1866,
|
| 219 |
+
"food": 988,
|
| 220 |
+
"distribution": 738,
|
| 221 |
+
"assessments": 180,
|
| 222 |
+
"response": 2060,
|
| 223 |
+
"bus": 312,
|
| 224 |
+
"purchase": 1912,
|
| 225 |
+
"concrete": 506,
|
| 226 |
+
"slab": 2223,
|
| 227 |
+
"propane": 1892,
|
| 228 |
+
"vs": 2600,
|
| 229 |
+
"adjourned": 71,
|
| 230 |
+
"achievement": 42,
|
| 231 |
+
"congratulations": 519,
|
| 232 |
+
"to": 2445,
|
| 233 |
+
"staffing": 2272,
|
| 234 |
+
"model": 1538,
|
| 235 |
+
"comment": 465,
|
| 236 |
+
"guidelines": 1100,
|
| 237 |
+
"ceremony": 377,
|
| 238 |
+
"county": 590,
|
| 239 |
+
"june": 1315,
|
| 240 |
+
"participation": 1718,
|
| 241 |
+
"loss": 1428,
|
| 242 |
+
"fall": 939,
|
| 243 |
+
"impact": 1200,
|
| 244 |
+
"on": 1641,
|
| 245 |
+
"gallagher": 1032,
|
| 246 |
+
"revenue": 2078,
|
| 247 |
+
"furlough": 1028,
|
| 248 |
+
"salary": 2116,
|
| 249 |
+
"reductions": 1978,
|
| 250 |
+
"adoption": 80,
|
| 251 |
+
"teachers": 2382,
|
| 252 |
+
"covid19": 596,
|
| 253 |
+
"longterm": 1427,
|
| 254 |
+
"resources": 2057,
|
| 255 |
+
"reopening": 2027,
|
| 256 |
+
"working": 2661,
|
| 257 |
+
"groups": 1091,
|
| 258 |
+
"stakeholder": 2275,
|
| 259 |
+
"plans": 1786,
|
| 260 |
+
"flexibility": 982,
|
| 261 |
+
"schedule": 2135,
|
| 262 |
+
"survey": 2351,
|
| 263 |
+
"results": 2070,
|
| 264 |
+
"parents": 1713,
|
| 265 |
+
"family": 941,
|
| 266 |
+
"return": 2077,
|
| 267 |
+
"mask": 1463,
|
| 268 |
+
"physical": 1770,
|
| 269 |
+
"distancing": 734,
|
| 270 |
+
"outbreaks": 1677,
|
| 271 |
+
"contact": 537,
|
| 272 |
+
"tracing": 2459,
|
| 273 |
+
"covid": 595,
|
| 274 |
+
"resolution": 2054,
|
| 275 |
+
"adjournment": 72,
|
| 276 |
+
"election": 815,
|
| 277 |
+
"president": 1842,
|
| 278 |
+
"resignation": 2052,
|
| 279 |
+
"meetings": 1495,
|
| 280 |
+
"voices": 2591,
|
| 281 |
+
"local": 1416,
|
| 282 |
+
"control": 552,
|
| 283 |
+
"equity": 869,
|
| 284 |
+
"pandemic": 1702,
|
| 285 |
+
"change": 387,
|
| 286 |
+
"online": 1647,
|
| 287 |
+
"distance": 733,
|
| 288 |
+
"quarantine": 1921,
|
| 289 |
+
"cohort": 450,
|
| 290 |
+
"comments": 466,
|
| 291 |
+
"economy": 795,
|
| 292 |
+
"hybrid": 1179,
|
| 293 |
+
"annual": 128,
|
| 294 |
+
"academics": 30,
|
| 295 |
+
"governance": 1065,
|
| 296 |
+
"club": 439,
|
| 297 |
+
"connection": 521,
|
| 298 |
+
"uncertainty": 2514,
|
| 299 |
+
"substitute": 2331,
|
| 300 |
+
"challenges": 383,
|
| 301 |
+
"professional": 1871,
|
| 302 |
+
"development": 690,
|
| 303 |
+
"policies": 1795,
|
| 304 |
+
"approvals": 153,
|
| 305 |
+
"revisions": 2083,
|
| 306 |
+
"technology": 2389,
|
| 307 |
+
"overuse": 1688,
|
| 308 |
+
"effectiveness": 804,
|
| 309 |
+
"literacy": 1408,
|
| 310 |
+
"principal": 1851,
|
| 311 |
+
"selection": 2168,
|
| 312 |
+
"updates": 2534,
|
| 313 |
+
"inperson": 1245,
|
| 314 |
+
"vaccine": 2551,
|
| 315 |
+
"budgets": 306,
|
| 316 |
+
"cost": 573,
|
| 317 |
+
"grace": 1069,
|
| 318 |
+
"best": 249,
|
| 319 |
+
"steering": 2301,
|
| 320 |
+
"committee": 469,
|
| 321 |
+
"decisionmaking": 648,
|
| 322 |
+
"energy": 843,
|
| 323 |
+
"savings": 2129,
|
| 324 |
+
"scope": 2149,
|
| 325 |
+
"guaranteed": 1095,
|
| 326 |
+
"efficiency": 807,
|
| 327 |
+
"cash": 352,
|
| 328 |
+
"flow": 983,
|
| 329 |
+
"vestibules": 2566,
|
| 330 |
+
"lewis": 1383,
|
| 331 |
+
"palmer": 1699,
|
| 332 |
+
"contribution": 550,
|
| 333 |
+
"science": 2147,
|
| 334 |
+
"fair": 934,
|
| 335 |
+
"hosa": 1164,
|
| 336 |
+
"projects": 1887,
|
| 337 |
+
"facility": 929,
|
| 338 |
+
"utilization": 2545,
|
| 339 |
+
"portable": 1803,
|
| 340 |
+
"classrooms": 429,
|
| 341 |
+
"impacts": 1202,
|
| 342 |
+
"growth": 1093,
|
| 343 |
+
"scenarios": 2134,
|
| 344 |
+
"remodel": 2015,
|
| 345 |
+
"finances": 967,
|
| 346 |
+
"needs": 1580,
|
| 347 |
+
"accountability": 38,
|
| 348 |
+
"dac": 628,
|
| 349 |
+
"mandate": 1442,
|
| 350 |
+
"athletes": 189,
|
| 351 |
+
"options": 1663,
|
| 352 |
+
"nominations": 1604,
|
| 353 |
+
"calendar": 324,
|
| 354 |
+
"protocols": 1901,
|
| 355 |
+
"immunization": 1199,
|
| 356 |
+
"grants": 1080,
|
| 357 |
+
"software": 2235,
|
| 358 |
+
"poverty": 1816,
|
| 359 |
+
"services": 2179,
|
| 360 |
+
"tri": 2487,
|
| 361 |
+
"lakes": 1341,
|
| 362 |
+
"per": 1741,
|
| 363 |
+
"pupil": 1910,
|
| 364 |
+
"fiscal": 979,
|
| 365 |
+
"stewardship": 2305,
|
| 366 |
+
"transparency": 2478,
|
| 367 |
+
"costs": 577,
|
| 368 |
+
"green": 1087,
|
| 369 |
+
"initiatives": 1242,
|
| 370 |
+
"cases": 351,
|
| 371 |
+
"voting": 2598,
|
| 372 |
+
"dashboard": 632,
|
| 373 |
+
"comparative": 478,
|
| 374 |
+
"no": 1600,
|
| 375 |
+
"place": 1781,
|
| 376 |
+
"adl": 74,
|
| 377 |
+
"vaccines": 2552,
|
| 378 |
+
"parent": 1710,
|
| 379 |
+
"debate": 642,
|
| 380 |
+
"parental": 1711,
|
| 381 |
+
"rights": 2088,
|
| 382 |
+
"freedom": 1011,
|
| 383 |
+
"extracted": 921,
|
| 384 |
+
"from": 1016,
|
| 385 |
+
"regardless": 1988,
|
| 386 |
+
"recalling": 1957,
|
| 387 |
+
"their": 2413,
|
| 388 |
+
"encourages": 841,
|
| 389 |
+
"urging": 2539,
|
| 390 |
+
"listeners": 1406,
|
| 391 |
+
"focus": 985,
|
| 392 |
+
"families": 940,
|
| 393 |
+
"advisory": 88,
|
| 394 |
+
"demographic": 674,
|
| 395 |
+
"study": 2327,
|
| 396 |
+
"housing": 1172,
|
| 397 |
+
"districts": 740,
|
| 398 |
+
"population": 1801,
|
| 399 |
+
"capacity": 336,
|
| 400 |
+
"land": 1343,
|
| 401 |
+
"branding": 292,
|
| 402 |
+
"marketing": 1452,
|
| 403 |
+
"communication": 473,
|
| 404 |
+
"worldclass": 2665,
|
| 405 |
+
"casby": 349,
|
| 406 |
+
"recommendations": 1963,
|
| 407 |
+
"jefferson": 1304,
|
| 408 |
+
"assessment": 179,
|
| 409 |
+
"privacy": 1857,
|
| 410 |
+
"programs": 1879,
|
| 411 |
+
"political": 1797,
|
| 412 |
+
"symbols": 2358,
|
| 413 |
+
"rainbow": 1929,
|
| 414 |
+
"sign": 2208,
|
| 415 |
+
"graduate": 1075,
|
| 416 |
+
"preparedness": 1837,
|
| 417 |
+
"credit": 599,
|
| 418 |
+
"midyear": 1516,
|
| 419 |
+
"risk": 2090,
|
| 420 |
+
"mitigation": 1533,
|
| 421 |
+
"course": 591,
|
| 422 |
+
"changes": 388,
|
| 423 |
+
"climate": 434,
|
| 424 |
+
"panorama": 1704,
|
| 425 |
+
"portrait": 1804,
|
| 426 |
+
"philosophy": 1765,
|
| 427 |
+
"standardsbased": 2280,
|
| 428 |
+
"alternatives": 115,
|
| 429 |
+
"opportunities": 1658,
|
| 430 |
+
"collection": 455,
|
| 431 |
+
"logistics": 1421,
|
| 432 |
+
"priority": 1856,
|
| 433 |
+
"setting": 2183,
|
| 434 |
+
"gathering": 1042,
|
| 435 |
+
"safe": 2112,
|
| 436 |
+
"discipline": 713,
|
| 437 |
+
"suspension": 2354,
|
| 438 |
+
"consequences": 527,
|
| 439 |
+
"standardized": 2278,
|
| 440 |
+
"testing": 2405,
|
| 441 |
+
"reading": 1951,
|
| 442 |
+
"percentiles": 1745,
|
| 443 |
+
"member": 1498,
|
| 444 |
+
"evaluation": 882,
|
| 445 |
+
"career": 340,
|
| 446 |
+
"national": 1573,
|
| 447 |
+
"qualifiers": 1918,
|
| 448 |
+
"international": 1266,
|
| 449 |
+
"competition": 485,
|
| 450 |
+
"events": 886,
|
| 451 |
+
"counseling": 583,
|
| 452 |
+
"details": 689,
|
| 453 |
+
"application": 139,
|
| 454 |
+
"overcrowding": 1684,
|
| 455 |
+
"buildings": 309,
|
| 456 |
+
"turf": 2496,
|
| 457 |
+
"field": 959,
|
| 458 |
+
"baseball": 230,
|
| 459 |
+
"ridge": 2087,
|
| 460 |
+
"conditions": 510,
|
| 461 |
+
"fundraising": 1026,
|
| 462 |
+
"art": 168,
|
| 463 |
+
"show": 2202,
|
| 464 |
+
"recognitions": 1960,
|
| 465 |
+
"bombbomb": 274,
|
| 466 |
+
"donation": 755,
|
| 467 |
+
"speech": 2254,
|
| 468 |
+
"bearbotix": 234,
|
| 469 |
+
"teamwork": 2386,
|
| 470 |
+
"programming": 1878,
|
| 471 |
+
"dates": 636,
|
| 472 |
+
"character": 390,
|
| 473 |
+
"regulation": 1993,
|
| 474 |
+
"summer": 2339,
|
| 475 |
+
"progress": 1880,
|
| 476 |
+
"monitoring": 1543,
|
| 477 |
+
"special": 2248,
|
| 478 |
+
"id": 1184,
|
| 479 |
+
"crisis": 604,
|
| 480 |
+
"educator": 800,
|
| 481 |
+
"legislative": 1376,
|
| 482 |
+
"start": 2285,
|
| 483 |
+
"times": 2439,
|
| 484 |
+
"recruit": 1967,
|
| 485 |
+
"characteristics": 391,
|
| 486 |
+
"qualities": 1919,
|
| 487 |
+
"godspeed": 1062,
|
| 488 |
+
"minnesota": 1527,
|
| 489 |
+
"st": 2268,
|
| 490 |
+
"proclamations": 1868,
|
| 491 |
+
"educators": 801,
|
| 492 |
+
"slavery": 2224,
|
| 493 |
+
"master": 1467,
|
| 494 |
+
"capstone": 338,
|
| 495 |
+
"bell": 242,
|
| 496 |
+
"donations": 756,
|
| 497 |
+
"dedication": 655,
|
| 498 |
+
"water": 2611,
|
| 499 |
+
"kidspak": 1331,
|
| 500 |
+
"drive": 765,
|
| 501 |
+
"dress": 761,
|
| 502 |
+
"code": 445,
|
| 503 |
+
"count": 586,
|
| 504 |
+
"thompson": 2424,
|
| 505 |
+
"choice": 407,
|
| 506 |
+
"demographics": 675,
|
| 507 |
+
"handbook": 1110,
|
| 508 |
+
"neighborhood": 1584,
|
| 509 |
+
"revision": 2082,
|
| 510 |
+
"concern": 503,
|
| 511 |
+
"outreach": 1680,
|
| 512 |
+
"maintenance": 1439,
|
| 513 |
+
"priorities": 1854,
|
| 514 |
+
"comparison": 479,
|
| 515 |
+
"negotiations": 1583,
|
| 516 |
+
"time": 2435,
|
| 517 |
+
"items": 1296,
|
| 518 |
+
"late": 1350,
|
| 519 |
+
"announcement": 126,
|
| 520 |
+
"workbook": 2657,
|
| 521 |
+
"legal": 1372,
|
| 522 |
+
"counsel": 582,
|
| 523 |
+
"nomination": 1603,
|
| 524 |
+
"members": 1499,
|
| 525 |
+
"candidate": 335,
|
| 526 |
+
"qualifications": 1917,
|
| 527 |
+
"decision": 647,
|
| 528 |
+
"alignment": 110,
|
| 529 |
+
"relations": 2004,
|
| 530 |
+
"increase": 1219,
|
| 531 |
+
"abuse": 28,
|
| 532 |
+
"rubric": 2108,
|
| 533 |
+
"reauthorization": 1955,
|
| 534 |
+
"dual": 774,
|
| 535 |
+
"immersion": 1194,
|
| 536 |
+
"truscott": 2492,
|
| 537 |
+
"elementary": 822,
|
| 538 |
+
"cottonwood": 579,
|
| 539 |
+
"consultant": 535,
|
| 540 |
+
"tef": 2392,
|
| 541 |
+
"stabilization": 2270,
|
| 542 |
+
"foundation": 1002,
|
| 543 |
+
"boundary": 285,
|
| 544 |
+
"loveland": 1431,
|
| 545 |
+
"valley": 2555,
|
| 546 |
+
"boundaries": 284,
|
| 547 |
+
"conflict": 516,
|
| 548 |
+
"language": 1346,
|
| 549 |
+
"agendas": 101,
|
| 550 |
+
"ymca": 2673,
|
| 551 |
+
"before": 236,
|
| 552 |
+
"classified": 427,
|
| 553 |
+
"lottery": 1429,
|
| 554 |
+
"system": 2364,
|
| 555 |
+
"digitization": 700,
|
| 556 |
+
"goals": 1060,
|
| 557 |
+
"college": 457,
|
| 558 |
+
"partnerships": 1722,
|
| 559 |
+
"access": 34,
|
| 560 |
+
"head": 1121,
|
| 561 |
+
"citizen": 415,
|
| 562 |
+
"oversight": 1687,
|
| 563 |
+
"representation": 2036,
|
| 564 |
+
"december": 646,
|
| 565 |
+
"topic": 2450,
|
| 566 |
+
"size": 2218,
|
| 567 |
+
"council": 580,
|
| 568 |
+
"culture": 616,
|
| 569 |
+
"ece": 787,
|
| 570 |
+
"cte": 611,
|
| 571 |
+
"renovation": 2023,
|
| 572 |
+
"enhancements": 852,
|
| 573 |
+
"training": 2467,
|
| 574 |
+
"backlog": 220,
|
| 575 |
+
"comprehensive": 496,
|
| 576 |
+
"ferguson": 955,
|
| 577 |
+
"avid": 213,
|
| 578 |
+
"delayed": 663,
|
| 579 |
+
"math": 1470,
|
| 580 |
+
"mou": 1557,
|
| 581 |
+
"emotional": 832,
|
| 582 |
+
"proposal": 1894,
|
| 583 |
+
"transfers": 2469,
|
| 584 |
+
"dropout": 770,
|
| 585 |
+
"recovery": 1966,
|
| 586 |
+
"scholarships": 2141,
|
| 587 |
+
"kindergarten": 1332,
|
| 588 |
+
"infinite": 1235,
|
| 589 |
+
"campus": 331,
|
| 590 |
+
"gradebook": 1071,
|
| 591 |
+
"city": 418,
|
| 592 |
+
"ged": 1043,
|
| 593 |
+
"early": 781,
|
| 594 |
+
"childhood": 404,
|
| 595 |
+
"design": 684,
|
| 596 |
+
"positions": 1806,
|
| 597 |
+
"implementation": 1203,
|
| 598 |
+
"standards": 2279,
|
| 599 |
+
"complaint": 489,
|
| 600 |
+
"discrimination": 718,
|
| 601 |
+
"harassment": 1113,
|
| 602 |
+
"naming": 1569,
|
| 603 |
+
"conventions": 556,
|
| 604 |
+
"architecture": 158,
|
| 605 |
+
"prek": 1832,
|
| 606 |
+
"through": 2429,
|
| 607 |
+
"outdoor": 1679,
|
| 608 |
+
"integration": 1254,
|
| 609 |
+
"timelines": 2438,
|
| 610 |
+
"joint": 1308,
|
| 611 |
+
"proposition": 1897,
|
| 612 |
+
"cc": 357,
|
| 613 |
+
"child": 402,
|
| 614 |
+
"care": 339,
|
| 615 |
+
"steps": 2303,
|
| 616 |
+
"people": 1739,
|
| 617 |
+
"locations": 1418,
|
| 618 |
+
"courses": 592,
|
| 619 |
+
"fte": 1017,
|
| 620 |
+
"statistics": 2294,
|
| 621 |
+
"passion": 1727,
|
| 622 |
+
"interest": 1259,
|
| 623 |
+
"experience": 906,
|
| 624 |
+
"stem": 2302,
|
| 625 |
+
"experiences": 907,
|
| 626 |
+
"advocacy": 89,
|
| 627 |
+
"ib": 1182,
|
| 628 |
+
"guidebook": 1099,
|
| 629 |
+
"teen": 2390,
|
| 630 |
+
"court": 593,
|
| 631 |
+
"juveniles": 1320,
|
| 632 |
+
"rate": 1940,
|
| 633 |
+
"restorative": 2066,
|
| 634 |
+
"justice": 1319,
|
| 635 |
+
"year": 2671,
|
| 636 |
+
"spring": 2264,
|
| 637 |
+
"break": 295,
|
| 638 |
+
"solutions": 2236,
|
| 639 |
+
"census": 370,
|
| 640 |
+
"transitional": 2474,
|
| 641 |
+
"day": 637,
|
| 642 |
+
"projectbased": 1883,
|
| 643 |
+
"drainage": 759,
|
| 644 |
+
"authentic": 208,
|
| 645 |
+
"gravel": 1083,
|
| 646 |
+
"pit": 1778,
|
| 647 |
+
"mining": 1526,
|
| 648 |
+
"operation": 1653,
|
| 649 |
+
"noise": 1602,
|
| 650 |
+
"pollution": 1799,
|
| 651 |
+
"capital": 337,
|
| 652 |
+
"spaces": 2242,
|
| 653 |
+
"weather": 2615,
|
| 654 |
+
"minutes": 1529,
|
| 655 |
+
"spelling": 2255,
|
| 656 |
+
"bee": 235,
|
| 657 |
+
"appointments": 143,
|
| 658 |
+
"big": 254,
|
| 659 |
+
"ideas": 1186,
|
| 660 |
+
"transition": 2473,
|
| 661 |
+
"continuum": 545,
|
| 662 |
+
"negotiation": 1582,
|
| 663 |
+
"emergency": 829,
|
| 664 |
+
"operations": 1655,
|
| 665 |
+
"infectious": 1234,
|
| 666 |
+
"disease": 722,
|
| 667 |
+
"closure": 436,
|
| 668 |
+
"prevention": 1845,
|
| 669 |
+
"virtual": 2576,
|
| 670 |
+
"metro": 1512,
|
| 671 |
+
"figures": 961,
|
| 672 |
+
"sel": 2166,
|
| 673 |
+
"homeless": 1157,
|
| 674 |
+
"elo": 827,
|
| 675 |
+
"riverview": 2091,
|
| 676 |
+
"pk8": 1780,
|
| 677 |
+
"plains": 1783,
|
| 678 |
+
"tif": 2432,
|
| 679 |
+
"legislature": 1377,
|
| 680 |
+
"sources": 2240,
|
| 681 |
+
"alternative": 114,
|
| 682 |
+
"end": 842,
|
| 683 |
+
"reintegration": 2001,
|
| 684 |
+
"delivery": 667,
|
| 685 |
+
"educational": 799,
|
| 686 |
+
"expectations": 900,
|
| 687 |
+
"committees": 470,
|
| 688 |
+
"camp": 329,
|
| 689 |
+
"read": 1949,
|
| 690 |
+
"link": 1404,
|
| 691 |
+
"get": 1050,
|
| 692 |
+
"ahead": 104,
|
| 693 |
+
"cares": 341,
|
| 694 |
+
"act": 55,
|
| 695 |
+
"fairtax": 937,
|
| 696 |
+
"initiative": 1241,
|
| 697 |
+
"shortfall": 2201,
|
| 698 |
+
"state": 2287,
|
| 699 |
+
"summary": 2338,
|
| 700 |
+
"ceremonies": 376,
|
| 701 |
+
"amendments": 118,
|
| 702 |
+
"nonbinary": 1607,
|
| 703 |
+
"pronouns": 1891,
|
| 704 |
+
"federal": 948,
|
| 705 |
+
"improvement": 1206,
|
| 706 |
+
"expulsion": 917,
|
| 707 |
+
"gun": 1102,
|
| 708 |
+
"compliance": 493,
|
| 709 |
+
"dashboards": 633,
|
| 710 |
+
"contracts": 549,
|
| 711 |
+
"site": 2213,
|
| 712 |
+
"attire": 197,
|
| 713 |
+
"instructional": 1252,
|
| 714 |
+
"certifications": 380,
|
| 715 |
+
"job": 1305,
|
| 716 |
+
"readiness": 1950,
|
| 717 |
+
"instruction": 1251,
|
| 718 |
+
"models": 1539,
|
| 719 |
+
"decline": 651,
|
| 720 |
+
"forums": 999,
|
| 721 |
+
"device": 691,
|
| 722 |
+
"reports": 2035,
|
| 723 |
+
"mascot": 1460,
|
| 724 |
+
"native": 1574,
|
| 725 |
+
"american": 119,
|
| 726 |
+
"indian": 1222,
|
| 727 |
+
"cultural": 614,
|
| 728 |
+
"appropriation": 150,
|
| 729 |
+
"racism": 1928,
|
| 730 |
+
"activism": 58,
|
| 731 |
+
"employee": 837,
|
| 732 |
+
"paid": 1695,
|
| 733 |
+
"sick": 2206,
|
| 734 |
+
"underlying": 2515,
|
| 735 |
+
"medical": 1489,
|
| 736 |
+
"ada": 63,
|
| 737 |
+
"accommodations": 36,
|
| 738 |
+
"leave": 1369,
|
| 739 |
+
"vulnerable": 2602,
|
| 740 |
+
"populations": 1802,
|
| 741 |
+
"attendance": 196,
|
| 742 |
+
"visitors": 2584,
|
| 743 |
+
"communicable": 472,
|
| 744 |
+
"diseases": 723,
|
| 745 |
+
"closings": 435,
|
| 746 |
+
"opinions": 1656,
|
| 747 |
+
"mascots": 1461,
|
| 748 |
+
"history": 1149,
|
| 749 |
+
"behavior": 239,
|
| 750 |
+
"respect": 2058,
|
| 751 |
+
"tour": 2452,
|
| 752 |
+
"postponed": 1813,
|
| 753 |
+
"engineers": 849,
|
| 754 |
+
"architects": 156,
|
| 755 |
+
"wolf": 2652,
|
| 756 |
+
"pack": 1692,
|
| 757 |
+
"red": 1971,
|
| 758 |
+
"wolves": 2653,
|
| 759 |
+
"fees": 952,
|
| 760 |
+
"requirements": 2046,
|
| 761 |
+
"halloween": 1108,
|
| 762 |
+
"tiltup": 2434,
|
| 763 |
+
"panels": 1703,
|
| 764 |
+
"windows": 2647,
|
| 765 |
+
"interior": 1264,
|
| 766 |
+
"particularly": 1719,
|
| 767 |
+
"blue": 267,
|
| 768 |
+
"blend": 263,
|
| 769 |
+
"involved": 1285,
|
| 770 |
+
"in": 1208,
|
| 771 |
+
"express": 913,
|
| 772 |
+
"satisfaction": 2127,
|
| 773 |
+
"management": 1441,
|
| 774 |
+
"publications": 1907,
|
| 775 |
+
"appeals": 137,
|
| 776 |
+
"spread": 2263,
|
| 777 |
+
"neighboring": 1586,
|
| 778 |
+
"facilities": 928,
|
| 779 |
+
"tobacco": 2446,
|
| 780 |
+
"violent": 2574,
|
| 781 |
+
"disruption": 731,
|
| 782 |
+
"infection": 1232,
|
| 783 |
+
"iready": 1288,
|
| 784 |
+
"cmas": 441,
|
| 785 |
+
"devices": 692,
|
| 786 |
+
"director": 705,
|
| 787 |
+
"vacancy": 2547,
|
| 788 |
+
"website": 2619,
|
| 789 |
+
"redesign": 1973,
|
| 790 |
+
"k8": 1322,
|
| 791 |
+
"expert": 910,
|
| 792 |
+
"summaries": 2337,
|
| 793 |
+
"manufacturing": 1445,
|
| 794 |
+
"information": 1238,
|
| 795 |
+
"championships": 386,
|
| 796 |
+
"connect": 520,
|
| 797 |
+
"stimulus": 2307,
|
| 798 |
+
"introductions": 1279,
|
| 799 |
+
"masks": 1465,
|
| 800 |
+
"listening": 1407,
|
| 801 |
+
"responsibilities": 2062,
|
| 802 |
+
"personal": 1754,
|
| 803 |
+
"commitment": 468,
|
| 804 |
+
"making": 1440,
|
| 805 |
+
"interview": 1275,
|
| 806 |
+
"removal": 2017,
|
| 807 |
+
"consolidation": 531,
|
| 808 |
+
"proposed": 1896,
|
| 809 |
+
"regional": 1989,
|
| 810 |
+
"tourism": 2453,
|
| 811 |
+
"white": 2638,
|
| 812 |
+
"economic": 793,
|
| 813 |
+
"kagan": 1325,
|
| 814 |
+
"strategies": 2313,
|
| 815 |
+
"eligibility": 823,
|
| 816 |
+
"outbreak": 1676,
|
| 817 |
+
"children": 405,
|
| 818 |
+
"hospitals": 1168,
|
| 819 |
+
"mandates": 1443,
|
| 820 |
+
"case": 350,
|
| 821 |
+
"hospital": 1165,
|
| 822 |
+
"vaccination": 2549,
|
| 823 |
+
"exemptions": 895,
|
| 824 |
+
"orientation": 1670,
|
| 825 |
+
"lease": 1367,
|
| 826 |
+
"spectrum": 2253,
|
| 827 |
+
"tmobile": 2444,
|
| 828 |
+
"offer": 1632,
|
| 829 |
+
"anxiety": 133,
|
| 830 |
+
"hospitalization": 1166,
|
| 831 |
+
"herd": 1133,
|
| 832 |
+
"immunity": 1198,
|
| 833 |
+
"masking": 1464,
|
| 834 |
+
"harm": 1116,
|
| 835 |
+
"appointment": 142,
|
| 836 |
+
"type": 2506,
|
| 837 |
+
"status": 2296,
|
| 838 |
+
"improvements": 1207,
|
| 839 |
+
"misinformation": 1530,
|
| 840 |
+
"surveillance": 2350,
|
| 841 |
+
"accessibility": 35,
|
| 842 |
+
"berthoud": 248,
|
| 843 |
+
"competence": 482,
|
| 844 |
+
"extracurriculars": 923,
|
| 845 |
+
"clubs": 440,
|
| 846 |
+
"bias": 250,
|
| 847 |
+
"indoctrination": 1225,
|
| 848 |
+
"religion": 2009,
|
| 849 |
+
"gaps": 1035,
|
| 850 |
+
"use": 2542,
|
| 851 |
+
"surplus": 2349,
|
| 852 |
+
"screening": 2156,
|
| 853 |
+
"certificates": 379,
|
| 854 |
+
"cops": 563,
|
| 855 |
+
"leaseback": 1368,
|
| 856 |
+
"symptoms": 2361,
|
| 857 |
+
"rescue": 2047,
|
| 858 |
+
"fill": 962,
|
| 859 |
+
"incentives": 1211,
|
| 860 |
+
"shortage": 2199,
|
| 861 |
+
"oath": 1627,
|
| 862 |
+
"goal": 1059,
|
| 863 |
+
"motivation": 1556,
|
| 864 |
+
"gifts": 1052,
|
| 865 |
+
"athletics": 191,
|
| 866 |
+
"center": 372,
|
| 867 |
+
"vendor": 2563,
|
| 868 |
+
"visits": 2585,
|
| 869 |
+
"innovation": 1244,
|
| 870 |
+
"labs": 1337,
|
| 871 |
+
"department": 679,
|
| 872 |
+
"omicron": 1640,
|
| 873 |
+
"variant": 2561,
|
| 874 |
+
"teaching": 2383,
|
| 875 |
+
"coteaching": 578,
|
| 876 |
+
"bullying": 311,
|
| 877 |
+
"arpa": 164,
|
| 878 |
+
"workforce": 2660,
|
| 879 |
+
"acute": 61,
|
| 880 |
+
"scott": 2152,
|
| 881 |
+
"con": 502,
|
| 882 |
+
"lauren": 1353,
|
| 883 |
+
"edmondson": 797,
|
| 884 |
+
"lucille": 1432,
|
| 885 |
+
"10": 1,
|
| 886 |
+
"aid": 105,
|
| 887 |
+
"baccalaureate": 217,
|
| 888 |
+
"primary": 1850,
|
| 889 |
+
"years": 2672,
|
| 890 |
+
"exhibition": 896,
|
| 891 |
+
"inclusive": 1215,
|
| 892 |
+
"playground": 1790,
|
| 893 |
+
"thinking": 2422,
|
| 894 |
+
"workplace": 2663,
|
| 895 |
+
"fostering": 1001,
|
| 896 |
+
"extended": 918,
|
| 897 |
+
"threats": 2426,
|
| 898 |
+
"disaster": 711,
|
| 899 |
+
"ransomware": 1936,
|
| 900 |
+
"prioritization": 1855,
|
| 901 |
+
"infrastructure": 1240,
|
| 902 |
+
"cybersecurity": 624,
|
| 903 |
+
"narcan": 1570,
|
| 904 |
+
"overdose": 1685,
|
| 905 |
+
"materials": 1469,
|
| 906 |
+
"guest": 1097,
|
| 907 |
+
"speaker": 2245,
|
| 908 |
+
"controversial": 554,
|
| 909 |
+
"conrad": 524,
|
| 910 |
+
"ball": 224,
|
| 911 |
+
"tracking": 2461,
|
| 912 |
+
"award": 214,
|
| 913 |
+
"hard": 1114,
|
| 914 |
+
"membership": 1500,
|
| 915 |
+
"business": 315,
|
| 916 |
+
"pathway": 1729,
|
| 917 |
+
"industry": 1229,
|
| 918 |
+
"breakdown": 296,
|
| 919 |
+
"parenting": 1712,
|
| 920 |
+
"expenditures": 903,
|
| 921 |
+
"house": 1170,
|
| 922 |
+
"november": 1619,
|
| 923 |
+
"ballot": 225,
|
| 924 |
+
"transfer": 2468,
|
| 925 |
+
"salaries": 2115,
|
| 926 |
+
"asphalt": 175,
|
| 927 |
+
"value": 2557,
|
| 928 |
+
"engineering": 848,
|
| 929 |
+
"ratings": 1945,
|
| 930 |
+
"kaboom": 1323,
|
| 931 |
+
"play": 1788,
|
| 932 |
+
"path": 1728,
|
| 933 |
+
"mosaic": 1553,
|
| 934 |
+
"artwork": 170,
|
| 935 |
+
"electrical": 819,
|
| 936 |
+
"evaluations": 883,
|
| 937 |
+
"headstart": 1122,
|
| 938 |
+
"hail": 1105,
|
| 939 |
+
"damage": 629,
|
| 940 |
+
"replacement": 2032,
|
| 941 |
+
"premiums": 1835,
|
| 942 |
+
"exams": 888,
|
| 943 |
+
"fairs": 936,
|
| 944 |
+
"hires": 1144,
|
| 945 |
+
"music": 1565,
|
| 946 |
+
"collaborative": 454,
|
| 947 |
+
"absences": 25,
|
| 948 |
+
"english": 850,
|
| 949 |
+
"learner": 1364,
|
| 950 |
+
"architectural": 157,
|
| 951 |
+
"advice": 86,
|
| 952 |
+
"motion": 1554,
|
| 953 |
+
"roll": 2101,
|
| 954 |
+
"call": 326,
|
| 955 |
+
"advanced": 83,
|
| 956 |
+
"placement": 1782,
|
| 957 |
+
"personnel": 1756,
|
| 958 |
+
"matters": 1473,
|
| 959 |
+
"converge": 557,
|
| 960 |
+
"oneto": 1646,
|
| 961 |
+
"blended": 264,
|
| 962 |
+
"agreement": 102,
|
| 963 |
+
"ocr": 1630,
|
| 964 |
+
"retreat": 2076,
|
| 965 |
+
"retirements": 2075,
|
| 966 |
+
"openings": 1651,
|
| 967 |
+
"longevity": 1424,
|
| 968 |
+
"bonus": 277,
|
| 969 |
+
"market": 1451,
|
| 970 |
+
"pay": 1731,
|
| 971 |
+
"compression": 497,
|
| 972 |
+
"repair": 2029,
|
| 973 |
+
"vacancies": 2546,
|
| 974 |
+
"stipends": 2309,
|
| 975 |
+
"bonuses": 278,
|
| 976 |
+
"painting": 1697,
|
| 977 |
+
"grading": 1074,
|
| 978 |
+
"hearing": 1126,
|
| 979 |
+
"officer": 1635,
|
| 980 |
+
"powers": 1818,
|
| 981 |
+
"healthcare": 1124,
|
| 982 |
+
"fema": 953,
|
| 983 |
+
"pool": 1800,
|
| 984 |
+
"actions": 57,
|
| 985 |
+
"jobs": 1306,
|
| 986 |
+
"hiring": 1145,
|
| 987 |
+
"freeze": 1012,
|
| 988 |
+
"redesignation": 1974,
|
| 989 |
+
"dll": 750,
|
| 990 |
+
"fort": 997,
|
| 991 |
+
"morgan": 1551,
|
| 992 |
+
"interim": 1263,
|
| 993 |
+
"dr": 758,
|
| 994 |
+
"request": 2042,
|
| 995 |
+
"expansion": 899,
|
| 996 |
+
"discount": 715,
|
| 997 |
+
"empower": 840,
|
| 998 |
+
"find": 971,
|
| 999 |
+
"vacation": 2548,
|
| 1000 |
+
"diversity": 744,
|
| 1001 |
+
"audits": 205,
|
| 1002 |
+
"elections": 816,
|
| 1003 |
+
"presentation": 1840,
|
| 1004 |
+
"baker": 222,
|
| 1005 |
+
"thrive": 2428,
|
| 1006 |
+
"scheduling": 2137,
|
| 1007 |
+
"conflicts": 517,
|
| 1008 |
+
"hvac": 1178,
|
| 1009 |
+
"renaming": 2019,
|
| 1010 |
+
"ffa": 957,
|
| 1011 |
+
"benefits": 247,
|
| 1012 |
+
"contributions": 551,
|
| 1013 |
+
"conference": 512,
|
| 1014 |
+
"lincoln": 1403,
|
| 1015 |
+
"fentanyl": 954,
|
| 1016 |
+
"gym": 1104,
|
| 1017 |
+
"procedure": 1863,
|
| 1018 |
+
"adjourn": 70,
|
| 1019 |
+
"shortages": 2200,
|
| 1020 |
+
"transportation": 2479,
|
| 1021 |
+
"fourday": 1004,
|
| 1022 |
+
"newcomer": 1592,
|
| 1023 |
+
"mowita": 1561,
|
| 1024 |
+
"screener": 2155,
|
| 1025 |
+
"63": 18,
|
| 1026 |
+
"esea": 872,
|
| 1027 |
+
"greeley": 1084,
|
| 1028 |
+
"monopoly": 1544,
|
| 1029 |
+
"sponsors": 2260,
|
| 1030 |
+
"event": 885,
|
| 1031 |
+
"internships": 1269,
|
| 1032 |
+
"fafsa": 932,
|
| 1033 |
+
"pakistani": 1698,
|
| 1034 |
+
"exchange": 892,
|
| 1035 |
+
"gratitude": 1082,
|
| 1036 |
+
"drilling": 762,
|
| 1037 |
+
"lawsuit": 1355,
|
| 1038 |
+
"bella": 243,
|
| 1039 |
+
"romero": 2103,
|
| 1040 |
+
"unc": 2513,
|
| 1041 |
+
"week": 2620,
|
| 1042 |
+
"weld": 2624,
|
| 1043 |
+
"university": 2530,
|
| 1044 |
+
"conduct": 511,
|
| 1045 |
+
"discourse": 716,
|
| 1046 |
+
"writing": 2670,
|
| 1047 |
+
"talent": 2371,
|
| 1048 |
+
"campaign": 330,
|
| 1049 |
+
"coaching": 444,
|
| 1050 |
+
"administrative": 76,
|
| 1051 |
+
"oil": 1639,
|
| 1052 |
+
"industrial": 1228,
|
| 1053 |
+
"turnaround": 2499,
|
| 1054 |
+
"acknowledging": 47,
|
| 1055 |
+
"passage": 1726,
|
| 1056 |
+
"renewal": 2021,
|
| 1057 |
+
"steam": 2299,
|
| 1058 |
+
"datadriven": 635,
|
| 1059 |
+
"purchasing": 1914,
|
| 1060 |
+
"protests": 1900,
|
| 1061 |
+
"dream": 760,
|
| 1062 |
+
"team": 2384,
|
| 1063 |
+
"thanksgiving": 2409,
|
| 1064 |
+
"winter": 2649,
|
| 1065 |
+
"meals": 1479,
|
| 1066 |
+
"breaks": 297,
|
| 1067 |
+
"revised": 2081,
|
| 1068 |
+
"statute": 2297,
|
| 1069 |
+
"arrangements": 165,
|
| 1070 |
+
"vote": 2596,
|
| 1071 |
+
"engage": 845,
|
| 1072 |
+
"inspire": 1248,
|
| 1073 |
+
"praised": 1824,
|
| 1074 |
+
"dog": 752,
|
| 1075 |
+
"toys": 2457,
|
| 1076 |
+
"upcoming": 2532,
|
| 1077 |
+
"essa": 876,
|
| 1078 |
+
"were": 2629,
|
| 1079 |
+
"former": 994,
|
| 1080 |
+
"stated": 2288,
|
| 1081 |
+
"roche": 2096,
|
| 1082 |
+
"marvin": 1457,
|
| 1083 |
+
"werth": 2630,
|
| 1084 |
+
"echoed": 788,
|
| 1085 |
+
"these": 2420,
|
| 1086 |
+
"conclude": 505,
|
| 1087 |
+
"two": 2505,
|
| 1088 |
+
"junior": 1317,
|
| 1089 |
+
"wellness": 2627,
|
| 1090 |
+
"interventions": 1274,
|
| 1091 |
+
"ratios": 1947,
|
| 1092 |
+
"gifted": 1051,
|
| 1093 |
+
"volunteers": 2595,
|
| 1094 |
+
"fracking": 1006,
|
| 1095 |
+
"air": 106,
|
| 1096 |
+
"quality": 1920,
|
| 1097 |
+
"visitor": 2583,
|
| 1098 |
+
"112": 2,
|
| 1099 |
+
"centennial": 371,
|
| 1100 |
+
"visit": 2582,
|
| 1101 |
+
"organizational": 1668,
|
| 1102 |
+
"media": 1487,
|
| 1103 |
+
"mobile": 1536,
|
| 1104 |
+
"app": 135,
|
| 1105 |
+
"000": 0,
|
| 1106 |
+
"speaking": 2247,
|
| 1107 |
+
"voiced": 2590,
|
| 1108 |
+
"worries": 2666,
|
| 1109 |
+
"given": 1056,
|
| 1110 |
+
"fatima": 943,
|
| 1111 |
+
"tamari": 2373,
|
| 1112 |
+
"representing": 2039,
|
| 1113 |
+
"highlighted": 1140,
|
| 1114 |
+
"expressing": 915,
|
| 1115 |
+
"saying": 2130,
|
| 1116 |
+
"leading": 1361,
|
| 1117 |
+
"often": 1638,
|
| 1118 |
+
"resulting": 2069,
|
| 1119 |
+
"many": 1446,
|
| 1120 |
+
"an": 121,
|
| 1121 |
+
"assistant": 184,
|
| 1122 |
+
"commended": 464,
|
| 1123 |
+
"echoing": 789,
|
| 1124 |
+
"professor": 1873,
|
| 1125 |
+
"title": 2441,
|
| 1126 |
+
"administration": 75,
|
| 1127 |
+
"waivers": 2606,
|
| 1128 |
+
"recruitment": 1969,
|
| 1129 |
+
"engaged": 846,
|
| 1130 |
+
"unfunded": 2521,
|
| 1131 |
+
"mentorship": 1506,
|
| 1132 |
+
"personalized": 1755,
|
| 1133 |
+
"classroom": 428,
|
| 1134 |
+
"setbacks": 2182,
|
| 1135 |
+
"roger": 2098,
|
| 1136 |
+
"dewitt": 693,
|
| 1137 |
+
"natalie": 1572,
|
| 1138 |
+
"mash": 1462,
|
| 1139 |
+
"completion": 492,
|
| 1140 |
+
"accreditation": 40,
|
| 1141 |
+
"proficiency": 1874,
|
| 1142 |
+
"studies": 2326,
|
| 1143 |
+
"voice": 2589,
|
| 1144 |
+
"evans": 884,
|
| 1145 |
+
"homeschooling": 1160,
|
| 1146 |
+
"chautauqua": 397,
|
| 1147 |
+
"mission": 1532,
|
| 1148 |
+
"values": 2559,
|
| 1149 |
+
"procedures": 1864,
|
| 1150 |
+
"framework": 1007,
|
| 1151 |
+
"2020": 7,
|
| 1152 |
+
"pathways": 1730,
|
| 1153 |
+
"practices": 1822,
|
| 1154 |
+
"ontime": 1648,
|
| 1155 |
+
"systematic": 2365,
|
| 1156 |
+
"approach": 147,
|
| 1157 |
+
"digital": 699,
|
| 1158 |
+
"tools": 2448,
|
| 1159 |
+
"declaration": 650,
|
| 1160 |
+
"electronic": 821,
|
| 1161 |
+
"during": 776,
|
| 1162 |
+
"internet": 1267,
|
| 1163 |
+
"well": 2625,
|
| 1164 |
+
"days": 639,
|
| 1165 |
+
"layoffs": 1356,
|
| 1166 |
+
"block": 265,
|
| 1167 |
+
"credits": 601,
|
| 1168 |
+
"positive": 1807,
|
| 1169 |
+
"relationships": 2005,
|
| 1170 |
+
"essential": 877,
|
| 1171 |
+
"role": 2099,
|
| 1172 |
+
"intergovernmental": 1262,
|
| 1173 |
+
"sites": 2215,
|
| 1174 |
+
"suicide": 2336,
|
| 1175 |
+
"awareness": 216,
|
| 1176 |
+
"football": 989,
|
| 1177 |
+
"principals": 1852,
|
| 1178 |
+
"retirement": 2074,
|
| 1179 |
+
"proclamation": 1867,
|
| 1180 |
+
"philanthropy": 1764,
|
| 1181 |
+
"holidays": 1154,
|
| 1182 |
+
"scholarship": 2140,
|
| 1183 |
+
"representatives": 2038,
|
| 1184 |
+
"internship": 1268,
|
| 1185 |
+
"geometry": 1048,
|
| 1186 |
+
"affordability": 94,
|
| 1187 |
+
"nurses": 1624,
|
| 1188 |
+
"clerks": 433,
|
| 1189 |
+
"2021": 8,
|
| 1190 |
+
"began": 237,
|
| 1191 |
+
"attributing": 199,
|
| 1192 |
+
"which": 2636,
|
| 1193 |
+
"helped": 1131,
|
| 1194 |
+
"twinton": 2504,
|
| 1195 |
+
"recognized": 1961,
|
| 1196 |
+
"non": 1606,
|
| 1197 |
+
"wiley": 2644,
|
| 1198 |
+
"dickinson": 695,
|
| 1199 |
+
"expressed": 914,
|
| 1200 |
+
"his": 1147,
|
| 1201 |
+
"religious": 2010,
|
| 1202 |
+
"tabor": 2369,
|
| 1203 |
+
"119": 3,
|
| 1204 |
+
"2030": 10,
|
| 1205 |
+
"indigenous": 1224,
|
| 1206 |
+
"unified": 2522,
|
| 1207 |
+
"grade": 1070,
|
| 1208 |
+
"level": 1379,
|
| 1209 |
+
"multitiered": 1563,
|
| 1210 |
+
"systems": 2367,
|
| 1211 |
+
"announcements": 127,
|
| 1212 |
+
"west": 2631,
|
| 1213 |
+
"mcauliffe": 1474,
|
| 1214 |
+
"schedules": 2136,
|
| 1215 |
+
"spirit": 2258,
|
| 1216 |
+
"logo": 1422,
|
| 1217 |
+
"administrator": 77,
|
| 1218 |
+
"research": 2048,
|
| 1219 |
+
"attorney": 198,
|
| 1220 |
+
"independent": 1221,
|
| 1221 |
+
"view": 2572,
|
| 1222 |
+
"entity": 858,
|
| 1223 |
+
"retainer": 2072,
|
| 1224 |
+
"montessori": 1546,
|
| 1225 |
+
"boulder": 283,
|
| 1226 |
+
"chess": 401,
|
| 1227 |
+
"computer": 499,
|
| 1228 |
+
"waste": 2610,
|
| 1229 |
+
"pbis": 1735,
|
| 1230 |
+
"platform": 1787,
|
| 1231 |
+
"outcomes": 1678,
|
| 1232 |
+
"feefor": 951,
|
| 1233 |
+
"bvsd": 318,
|
| 1234 |
+
"pbs": 1736,
|
| 1235 |
+
"spanish": 2243,
|
| 1236 |
+
"studentteacher": 2325,
|
| 1237 |
+
"preparation": 1836,
|
| 1238 |
+
"erp": 870,
|
| 1239 |
+
"rfp": 2084,
|
| 1240 |
+
"upgrade": 2535,
|
| 1241 |
+
"visioning": 2581,
|
| 1242 |
+
"null": 1621,
|
| 1243 |
+
"66": 19,
|
| 1244 |
+
"para": 1706,
|
| 1245 |
+
"bill": 258,
|
| 1246 |
+
"records": 1965,
|
| 1247 |
+
"sat": 2126,
|
| 1248 |
+
"specialist": 2249,
|
| 1249 |
+
"sibling": 2205,
|
| 1250 |
+
"preference": 1828,
|
| 1251 |
+
"casbah": 348,
|
| 1252 |
+
"delegate": 665,
|
| 1253 |
+
"standing": 2281,
|
| 1254 |
+
"disparities": 725,
|
| 1255 |
+
"trips": 2489,
|
| 1256 |
+
"chinese": 406,
|
| 1257 |
+
"classical": 426,
|
| 1258 |
+
"action": 56,
|
| 1259 |
+
"lgbtq": 1384,
|
| 1260 |
+
"government": 1066,
|
| 1261 |
+
"shutdown": 2204,
|
| 1262 |
+
"assistance": 183,
|
| 1263 |
+
"lunch": 1434,
|
| 1264 |
+
"webpage": 2618,
|
| 1265 |
+
"communications": 474,
|
| 1266 |
+
"brand": 291,
|
| 1267 |
+
"screen": 2154,
|
| 1268 |
+
"caffeine": 322,
|
| 1269 |
+
"assent": 177,
|
| 1270 |
+
"levies": 1381,
|
| 1271 |
+
"ownership": 1691,
|
| 1272 |
+
"money": 1542,
|
| 1273 |
+
"acr": 51,
|
| 1274 |
+
"complaints": 490,
|
| 1275 |
+
"tolerance": 2447,
|
| 1276 |
+
"google": 1064,
|
| 1277 |
+
"cosmetology": 572,
|
| 1278 |
+
"quorum": 1924,
|
| 1279 |
+
"optional": 1662,
|
| 1280 |
+
"menstrual": 1502,
|
| 1281 |
+
"products": 1870,
|
| 1282 |
+
"hearings": 1127,
|
| 1283 |
+
"immigrant": 1195,
|
| 1284 |
+
"structure": 2320,
|
| 1285 |
+
"fullday": 1020,
|
| 1286 |
+
"hate": 1120,
|
| 1287 |
+
"1932": 5,
|
| 1288 |
+
"limitations": 1402,
|
| 1289 |
+
"disputes": 730,
|
| 1290 |
+
"litigation": 1410,
|
| 1291 |
+
"sanitas": 2124,
|
| 1292 |
+
"summit": 2340,
|
| 1293 |
+
"culturally": 615,
|
| 1294 |
+
"responsive": 2064,
|
| 1295 |
+
"civility": 421,
|
| 1296 |
+
"lobbying": 1415,
|
| 1297 |
+
"ryan": 2110,
|
| 1298 |
+
"gap": 1034,
|
| 1299 |
+
"opportunity": 1659,
|
| 1300 |
+
"metrics": 1511,
|
| 1301 |
+
"integrity": 1255,
|
| 1302 |
+
"infor": 1237,
|
| 1303 |
+
"customization": 621,
|
| 1304 |
+
"doctor": 751,
|
| 1305 |
+
"pledge": 1792,
|
| 1306 |
+
"home": 1155,
|
| 1307 |
+
"senior": 2173,
|
| 1308 |
+
"celebration": 365,
|
| 1309 |
+
"reintroduction": 2002,
|
| 1310 |
+
"phases": 1762,
|
| 1311 |
+
"re": 1948,
|
| 1312 |
+
"struggling": 2322,
|
| 1313 |
+
"learners": 1365,
|
| 1314 |
+
"sac": 2111,
|
| 1315 |
+
"sarc": 2125,
|
| 1316 |
+
"bsd": 302,
|
| 1317 |
+
"translation": 2476,
|
| 1318 |
+
"progressive": 1881,
|
| 1319 |
+
"temporary": 2396,
|
| 1320 |
+
"residential": 2051,
|
| 1321 |
+
"nonresidential": 1613,
|
| 1322 |
+
"repeal": 2031,
|
| 1323 |
+
"phase": 1761,
|
| 1324 |
+
"sros": 2267,
|
| 1325 |
+
"sro": 2266,
|
| 1326 |
+
"registration": 1992,
|
| 1327 |
+
"drivers": 768,
|
| 1328 |
+
"councils": 581,
|
| 1329 |
+
"childcare": 403,
|
| 1330 |
+
"cu": 612,
|
| 1331 |
+
"transmission": 2477,
|
| 1332 |
+
"tuesday": 2495,
|
| 1333 |
+
"thursday": 2430,
|
| 1334 |
+
"counts": 589,
|
| 1335 |
+
"undocumented": 2517,
|
| 1336 |
+
"immigrants": 1196,
|
| 1337 |
+
"trends": 2486,
|
| 1338 |
+
"teenagers": 2391,
|
| 1339 |
+
"k12": 1321,
|
| 1340 |
+
"migration": 1519,
|
| 1341 |
+
"acquisition": 50,
|
| 1342 |
+
"appropriate": 149,
|
| 1343 |
+
"intervention": 1272,
|
| 1344 |
+
"guidance": 1098,
|
| 1345 |
+
"rollout": 2102,
|
| 1346 |
+
"14": 4,
|
| 1347 |
+
"variants": 2562,
|
| 1348 |
+
"60th": 17,
|
| 1349 |
+
"anniversary": 125,
|
| 1350 |
+
"numbers": 1622,
|
| 1351 |
+
"efforts": 809,
|
| 1352 |
+
"responsiveness": 2065,
|
| 1353 |
+
"storage": 2311,
|
| 1354 |
+
"immigration": 1197,
|
| 1355 |
+
"reflections": 1982,
|
| 1356 |
+
"crosscurricular": 609,
|
| 1357 |
+
"incident": 1212,
|
| 1358 |
+
"investigation": 1281,
|
| 1359 |
+
"cdc": 358,
|
| 1360 |
+
"enterprise": 856,
|
| 1361 |
+
"acknowledgement": 45,
|
| 1362 |
+
"vaccinations": 2550,
|
| 1363 |
+
"natural": 1575,
|
| 1364 |
+
"bilingual": 255,
|
| 1365 |
+
"procurement": 1869,
|
| 1366 |
+
"competitive": 487,
|
| 1367 |
+
"bidding": 252,
|
| 1368 |
+
"recall": 1956,
|
| 1369 |
+
"effort": 808,
|
| 1370 |
+
"disproportionality": 728,
|
| 1371 |
+
"legacy": 1371,
|
| 1372 |
+
"marshall": 1455,
|
| 1373 |
+
"fire": 975,
|
| 1374 |
+
"booster": 280,
|
| 1375 |
+
"broomfield": 300,
|
| 1376 |
+
"surge": 2348,
|
| 1377 |
+
"by": 319,
|
| 1378 |
+
"unmasking": 2531,
|
| 1379 |
+
"are": 160,
|
| 1380 |
+
"part": 1717,
|
| 1381 |
+
"removing": 2018,
|
| 1382 |
+
"politics": 1798,
|
| 1383 |
+
"douglas": 757,
|
| 1384 |
+
"long": 1423,
|
| 1385 |
+
"pronoun": 1890,
|
| 1386 |
+
"usage": 2540,
|
| 1387 |
+
"civic": 419,
|
| 1388 |
+
"inclusion": 1214,
|
| 1389 |
+
"inclusivity": 1216,
|
| 1390 |
+
"acknowledgment": 48,
|
| 1391 |
+
"town": 2455,
|
| 1392 |
+
"hall": 1107,
|
| 1393 |
+
"declining": 652,
|
| 1394 |
+
"longrange": 1426,
|
| 1395 |
+
"liaison": 1387,
|
| 1396 |
+
"onetime": 1645,
|
| 1397 |
+
"expense": 904,
|
| 1398 |
+
"envelope": 859,
|
| 1399 |
+
"adams": 64,
|
| 1400 |
+
"reform": 1983,
|
| 1401 |
+
"reorganization": 2028,
|
| 1402 |
+
"trust": 2493,
|
| 1403 |
+
"competencybased": 484,
|
| 1404 |
+
"cooperative": 560,
|
| 1405 |
+
"symposium": 2359,
|
| 1406 |
+
"mean": 1480,
|
| 1407 |
+
"scale": 2132,
|
| 1408 |
+
"median": 1488,
|
| 1409 |
+
"truancy": 2490,
|
| 1410 |
+
"irrigation": 1289,
|
| 1411 |
+
"help": 1130,
|
| 1412 |
+
"desk": 687,
|
| 1413 |
+
"sunset": 2342,
|
| 1414 |
+
"parcc": 1709,
|
| 1415 |
+
"scores": 2150,
|
| 1416 |
+
"marzano": 1459,
|
| 1417 |
+
"flynn": 984,
|
| 1418 |
+
"reliability": 2007,
|
| 1419 |
+
"arts": 169,
|
| 1420 |
+
"union": 2524,
|
| 1421 |
+
"boys": 288,
|
| 1422 |
+
"westminster": 2633,
|
| 1423 |
+
"challenge": 382,
|
| 1424 |
+
"mesa": 1507,
|
| 1425 |
+
"fairview": 938,
|
| 1426 |
+
"rigor": 2089,
|
| 1427 |
+
"need": 1579,
|
| 1428 |
+
"noting": 1618,
|
| 1429 |
+
"tennyson": 2397,
|
| 1430 |
+
"knowles": 1335,
|
| 1431 |
+
"mindfulness": 1523,
|
| 1432 |
+
"jaime": 1301,
|
| 1433 |
+
"sommers": 2238,
|
| 1434 |
+
"columbine": 461,
|
| 1435 |
+
"shooting": 2198,
|
| 1436 |
+
"wellbeing": 2626,
|
| 1437 |
+
"cld": 430,
|
| 1438 |
+
"wida": 2642,
|
| 1439 |
+
"apprenticeship": 145,
|
| 1440 |
+
"comcast": 462,
|
| 1441 |
+
"hidden": 1137,
|
| 1442 |
+
"lake": 1340,
|
| 1443 |
+
"highlands": 1139,
|
| 1444 |
+
"ranch": 1934,
|
| 1445 |
+
"transitions": 2475,
|
| 1446 |
+
"accomplishments": 37,
|
| 1447 |
+
"heat": 1128,
|
| 1448 |
+
"rachel": 1926,
|
| 1449 |
+
"coordinated": 561,
|
| 1450 |
+
"highlights": 1142,
|
| 1451 |
+
"mathematics": 1471,
|
| 1452 |
+
"envision": 863,
|
| 1453 |
+
"association": 185,
|
| 1454 |
+
"casb": 347,
|
| 1455 |
+
"agreements": 103,
|
| 1456 |
+
"stakeholders": 2276,
|
| 1457 |
+
"surveys": 2352,
|
| 1458 |
+
"middle": 1515,
|
| 1459 |
+
"dedicated": 654,
|
| 1460 |
+
"hardwork": 1115,
|
| 1461 |
+
"kindness": 1333,
|
| 1462 |
+
"excel": 889,
|
| 1463 |
+
"movements": 1560,
|
| 1464 |
+
"compulsory": 498,
|
| 1465 |
+
"ee": 802,
|
| 1466 |
+
"orchard": 1666,
|
| 1467 |
+
"workers": 2659,
|
| 1468 |
+
"postsecondary": 1814,
|
| 1469 |
+
"remediation": 2013,
|
| 1470 |
+
"ppe": 1819,
|
| 1471 |
+
"fred": 1009,
|
| 1472 |
+
"remembrance": 2014,
|
| 1473 |
+
"this": 2423,
|
| 1474 |
+
"is": 1291,
|
| 1475 |
+
"licenses": 1390,
|
| 1476 |
+
"like": 1400,
|
| 1477 |
+
"luis": 1433,
|
| 1478 |
+
"crediting": 600,
|
| 1479 |
+
"celebrating": 364,
|
| 1480 |
+
"bob": 270,
|
| 1481 |
+
"landgraf": 1344,
|
| 1482 |
+
"mcguffey": 1475,
|
| 1483 |
+
"migrant": 1518,
|
| 1484 |
+
"stipend": 2308,
|
| 1485 |
+
"citizenship": 417,
|
| 1486 |
+
"customer": 620,
|
| 1487 |
+
"emergenetics": 830,
|
| 1488 |
+
"operating": 1652,
|
| 1489 |
+
"cognia": 447,
|
| 1490 |
+
"continuous": 544,
|
| 1491 |
+
"reimagined": 1997,
|
| 1492 |
+
"random": 1935,
|
| 1493 |
+
"travel": 2483,
|
| 1494 |
+
"panama": 1701,
|
| 1495 |
+
"rainforest": 1930,
|
| 1496 |
+
"ecology": 792,
|
| 1497 |
+
"york": 2675,
|
| 1498 |
+
"trip": 2488,
|
| 1499 |
+
"statue": 2295,
|
| 1500 |
+
"drugs": 773,
|
| 1501 |
+
"reimagine": 1996,
|
| 1502 |
+
"testimonials": 2402,
|
| 1503 |
+
"referrals": 1979,
|
| 1504 |
+
"name": 1568,
|
| 1505 |
+
"luncheon": 1435,
|
| 1506 |
+
"atu": 201,
|
| 1507 |
+
"cdm": 359,
|
| 1508 |
+
"farewell": 942,
|
| 1509 |
+
"address": 67,
|
| 1510 |
+
"library": 1388,
|
| 1511 |
+
"adult": 82,
|
| 1512 |
+
"sand": 2123,
|
| 1513 |
+
"creek": 602,
|
| 1514 |
+
"pikes": 1774,
|
| 1515 |
+
"peak": 1737,
|
| 1516 |
+
"indicators": 1223,
|
| 1517 |
+
"descriptions": 683,
|
| 1518 |
+
"transforming": 2471,
|
| 1519 |
+
"january": 1302,
|
| 1520 |
+
"aspen": 174,
|
| 1521 |
+
"timing": 2440,
|
| 1522 |
+
"asset": 181,
|
| 1523 |
+
"protection": 1898,
|
| 1524 |
+
"coverage": 594,
|
| 1525 |
+
"image": 1192,
|
| 1526 |
+
"eagle": 780,
|
| 1527 |
+
"scout": 2153,
|
| 1528 |
+
"atlas": 193,
|
| 1529 |
+
"harrison": 1118,
|
| 1530 |
+
"showcase": 2203,
|
| 1531 |
+
"automatic": 211,
|
| 1532 |
+
"statement": 2289,
|
| 1533 |
+
"perspective": 1757,
|
| 1534 |
+
"decisions": 649,
|
| 1535 |
+
"renewals": 2022,
|
| 1536 |
+
"military": 1520,
|
| 1537 |
+
"adjustments": 73,
|
| 1538 |
+
"message": 1508,
|
| 1539 |
+
"morale": 1549,
|
| 1540 |
+
"peru": 1759,
|
| 1541 |
+
"amazon": 116,
|
| 1542 |
+
"conservation": 528,
|
| 1543 |
+
"percentage": 1743,
|
| 1544 |
+
"effective": 803,
|
| 1545 |
+
"nonrenewal": 1612,
|
| 1546 |
+
"sierra": 2207,
|
| 1547 |
+
"news": 1593,
|
| 1548 |
+
"bricker": 299,
|
| 1549 |
+
"partners": 1720,
|
| 1550 |
+
"musical": 1566,
|
| 1551 |
+
"representative": 2037,
|
| 1552 |
+
"easements": 783,
|
| 1553 |
+
"group": 1089,
|
| 1554 |
+
"fox": 1005,
|
| 1555 |
+
"meadows": 1477,
|
| 1556 |
+
"coherent": 449,
|
| 1557 |
+
"self": 2169,
|
| 1558 |
+
"wisdom": 2650,
|
| 1559 |
+
"position": 1805,
|
| 1560 |
+
"schoolto": 2146,
|
| 1561 |
+
"monterey": 1545,
|
| 1562 |
+
"homeschool": 1159,
|
| 1563 |
+
"wildflower": 2643,
|
| 1564 |
+
"north": 1615,
|
| 1565 |
+
"carolina": 343,
|
| 1566 |
+
"pamela": 1700,
|
| 1567 |
+
"completed": 491,
|
| 1568 |
+
"she": 2194,
|
| 1569 |
+
"continued": 542,
|
| 1570 |
+
"fifth": 960,
|
| 1571 |
+
"strathmore": 2315,
|
| 1572 |
+
"hills": 1143,
|
| 1573 |
+
"served": 2177,
|
| 1574 |
+
"will": 2645,
|
| 1575 |
+
"psat": 1904,
|
| 1576 |
+
"youth": 2676,
|
| 1577 |
+
"celebrated": 362,
|
| 1578 |
+
"acknowledged": 44,
|
| 1579 |
+
"expenses": 905,
|
| 1580 |
+
"deferred": 657,
|
| 1581 |
+
"reserve": 2049,
|
| 1582 |
+
"spending": 2256,
|
| 1583 |
+
"formula": 996,
|
| 1584 |
+
"statements": 2290,
|
| 1585 |
+
"carryover": 346,
|
| 1586 |
+
"funds": 1027,
|
| 1587 |
+
"sitebased": 2214,
|
| 1588 |
+
"budgeting": 305,
|
| 1589 |
+
"demographers": 673,
|
| 1590 |
+
"reserves": 2050,
|
| 1591 |
+
"medication": 1490,
|
| 1592 |
+
"negative": 1581,
|
| 1593 |
+
"factor": 930,
|
| 1594 |
+
"forecast": 992,
|
| 1595 |
+
"fund": 1023,
|
| 1596 |
+
"balance": 223,
|
| 1597 |
+
"fee": 949,
|
| 1598 |
+
"increases": 1220,
|
| 1599 |
+
"pricing": 1848,
|
| 1600 |
+
"ppor": 1820,
|
| 1601 |
+
"esser": 878,
|
| 1602 |
+
"investment": 1283,
|
| 1603 |
+
"measurement": 1483,
|
| 1604 |
+
"forecasting": 993,
|
| 1605 |
+
"expenditure": 902,
|
| 1606 |
+
"revenues": 2079,
|
| 1607 |
+
"assumptions": 186,
|
| 1608 |
+
"reduction": 1977,
|
| 1609 |
+
"elimination": 824,
|
| 1610 |
+
"nutrition": 1625,
|
| 1611 |
+
"loan": 1414,
|
| 1612 |
+
"gate": 1041,
|
| 1613 |
+
"receipts": 1958,
|
| 1614 |
+
"perpupil": 1753,
|
| 1615 |
+
"track": 2460,
|
| 1616 |
+
"meets": 1496,
|
| 1617 |
+
"contingency": 541,
|
| 1618 |
+
"ura": 2537,
|
| 1619 |
+
"refund": 1985,
|
| 1620 |
+
"assessed": 178,
|
| 1621 |
+
"valuation": 2556,
|
| 1622 |
+
"types": 2507,
|
| 1623 |
+
"titles": 2442,
|
| 1624 |
+
"license": 1389,
|
| 1625 |
+
"hra": 1175,
|
| 1626 |
+
"period": 1750,
|
| 1627 |
+
"strategy": 2314,
|
| 1628 |
+
"cpp": 597,
|
| 1629 |
+
"substitutes": 2332,
|
| 1630 |
+
"claims": 422,
|
| 1631 |
+
"zoning": 2678,
|
| 1632 |
+
"licensing": 1391,
|
| 1633 |
+
"proposals": 1895,
|
| 1634 |
+
"sterling": 2304,
|
| 1635 |
+
"bank": 227,
|
| 1636 |
+
"sherman": 2195,
|
| 1637 |
+
"deficit": 659,
|
| 1638 |
+
"preliminary": 1833,
|
| 1639 |
+
"packages": 1694,
|
| 1640 |
+
"handbooks": 1111,
|
| 1641 |
+
"meeker": 1492,
|
| 1642 |
+
"grades": 1073,
|
| 1643 |
+
"optimism": 1661,
|
| 1644 |
+
"decrease": 653,
|
| 1645 |
+
"free": 1010,
|
| 1646 |
+
"perception": 1746,
|
| 1647 |
+
"allocations": 112,
|
| 1648 |
+
"differentiated": 698,
|
| 1649 |
+
"atrisk": 194,
|
| 1650 |
+
"counting": 587,
|
| 1651 |
+
"governor": 1068,
|
| 1652 |
+
"weighted": 2621,
|
| 1653 |
+
"inflation": 1236,
|
| 1654 |
+
"garden": 1036,
|
| 1655 |
+
"regis": 1990,
|
| 1656 |
+
"taber": 2368,
|
| 1657 |
+
"general": 1045,
|
| 1658 |
+
"debrucing": 643,
|
| 1659 |
+
"appropriations": 151,
|
| 1660 |
+
"measure": 1482,
|
| 1661 |
+
"comparables": 477,
|
| 1662 |
+
"rating": 1944,
|
| 1663 |
+
"ppr": 1821,
|
| 1664 |
+
"mlo": 1534,
|
| 1665 |
+
"division": 748,
|
| 1666 |
+
"refinancing": 1981,
|
| 1667 |
+
"appeal": 136,
|
| 1668 |
+
"forum": 998,
|
| 1669 |
+
"package": 1693,
|
| 1670 |
+
"upgrades": 2536,
|
| 1671 |
+
"jrotc": 1312,
|
| 1672 |
+
"marksmanship": 1453,
|
| 1673 |
+
"specificity": 2252,
|
| 1674 |
+
"underwriter": 2516,
|
| 1675 |
+
"stifel": 2306,
|
| 1676 |
+
"nicolaus": 1596,
|
| 1677 |
+
"issuance": 1292,
|
| 1678 |
+
"advisor": 87,
|
| 1679 |
+
"citizens": 416,
|
| 1680 |
+
"optout": 1664,
|
| 1681 |
+
"bonds": 276,
|
| 1682 |
+
"municipal": 1564,
|
| 1683 |
+
"premium": 1834,
|
| 1684 |
+
"favorable": 944,
|
| 1685 |
+
"turmoil": 2498,
|
| 1686 |
+
"stock": 2310,
|
| 1687 |
+
"sale": 2117,
|
| 1688 |
+
"roofing": 2104,
|
| 1689 |
+
"mountain": 1558,
|
| 1690 |
+
"technical": 2388,
|
| 1691 |
+
"furniture": 1029,
|
| 1692 |
+
"lifecycle": 1393,
|
| 1693 |
+
"stansbury": 2283,
|
| 1694 |
+
"john": 1307,
|
| 1695 |
+
"erwin": 871,
|
| 1696 |
+
"rapid": 1937,
|
| 1697 |
+
"pk": 1779,
|
| 1698 |
+
"renovations": 2024,
|
| 1699 |
+
"related": 2003,
|
| 1700 |
+
"cboc": 355,
|
| 1701 |
+
"refunding": 1986,
|
| 1702 |
+
"redemption": 1972,
|
| 1703 |
+
"signers": 2210,
|
| 1704 |
+
"programmatic": 1877,
|
| 1705 |
+
"repairs": 2030,
|
| 1706 |
+
"mlos": 1535,
|
| 1707 |
+
"scholars": 2139,
|
| 1708 |
+
"smart": 2228,
|
| 1709 |
+
"greely": 1086,
|
| 1710 |
+
"owners": 1690,
|
| 1711 |
+
"contractor": 548,
|
| 1712 |
+
"designbuild": 685,
|
| 1713 |
+
"sales": 2118,
|
| 1714 |
+
"asbestos": 172,
|
| 1715 |
+
"abatement": 24,
|
| 1716 |
+
"traffic": 2463,
|
| 1717 |
+
"graduations": 1077,
|
| 1718 |
+
"christa": 409,
|
| 1719 |
+
"chapelo": 389,
|
| 1720 |
+
"employment": 839,
|
| 1721 |
+
"environments": 862,
|
| 1722 |
+
"eisenhower": 811,
|
| 1723 |
+
"slide": 2226,
|
| 1724 |
+
"halcyon": 1106,
|
| 1725 |
+
"refinance": 1980,
|
| 1726 |
+
"relief": 2008,
|
| 1727 |
+
"saving": 2128,
|
| 1728 |
+
"parameters": 1708,
|
| 1729 |
+
"veterans": 2567,
|
| 1730 |
+
"coach": 443,
|
| 1731 |
+
"collins": 458,
|
| 1732 |
+
"responders": 2059,
|
| 1733 |
+
"mass": 1466,
|
| 1734 |
+
"occupations": 1629,
|
| 1735 |
+
"philanthropic": 1763,
|
| 1736 |
+
"heroic": 1135,
|
| 1737 |
+
"global": 1058,
|
| 1738 |
+
"connections": 522,
|
| 1739 |
+
"kenya": 1327,
|
| 1740 |
+
"otter": 1675,
|
| 1741 |
+
"hart": 1119,
|
| 1742 |
+
"after": 97,
|
| 1743 |
+
"lisa": 1405,
|
| 1744 |
+
"nominee": 1605,
|
| 1745 |
+
"components": 494,
|
| 1746 |
+
"garfield": 1039,
|
| 1747 |
+
"bills": 259,
|
| 1748 |
+
"nurse": 1623,
|
| 1749 |
+
"give": 1055,
|
| 1750 |
+
"next": 1594,
|
| 1751 |
+
"melt": 1497,
|
| 1752 |
+
"contest": 540,
|
| 1753 |
+
"eca": 784,
|
| 1754 |
+
"love": 1430,
|
| 1755 |
+
"hours": 1169,
|
| 1756 |
+
"northridge": 1616,
|
| 1757 |
+
"pods": 1793,
|
| 1758 |
+
"performing": 1749,
|
| 1759 |
+
"cheryl": 400,
|
| 1760 |
+
"wood": 2654,
|
| 1761 |
+
"humor": 1177,
|
| 1762 |
+
"oak": 1626,
|
| 1763 |
+
"vista": 2586,
|
| 1764 |
+
"back": 218,
|
| 1765 |
+
"cbs": 356,
|
| 1766 |
+
"august": 206,
|
| 1767 |
+
"22nd": 13,
|
| 1768 |
+
"opening": 1650,
|
| 1769 |
+
"eclipse": 791,
|
| 1770 |
+
"mail": 1438,
|
| 1771 |
+
"7th": 21,
|
| 1772 |
+
"ribbon": 2085,
|
| 1773 |
+
"opioid": 1657,
|
| 1774 |
+
"epidemic": 864,
|
| 1775 |
+
"heroism": 1136,
|
| 1776 |
+
"praise": 1823,
|
| 1777 |
+
"collective": 456,
|
| 1778 |
+
"advanceded": 84,
|
| 1779 |
+
"excellence": 890,
|
| 1780 |
+
"drugfree": 772,
|
| 1781 |
+
"lifestyles": 1395,
|
| 1782 |
+
"westy": 2634,
|
| 1783 |
+
"rocks": 2097,
|
| 1784 |
+
"ratifications": 1943,
|
| 1785 |
+
"elks": 825,
|
| 1786 |
+
"dinner": 701,
|
| 1787 |
+
"costa": 574,
|
| 1788 |
+
"rica": 2086,
|
| 1789 |
+
"icap": 1183,
|
| 1790 |
+
"official": 1637,
|
| 1791 |
+
"homecoming": 1156,
|
| 1792 |
+
"parade": 1707,
|
| 1793 |
+
"advocate": 90,
|
| 1794 |
+
"swearing": 2356,
|
| 1795 |
+
"theater": 2412,
|
| 1796 |
+
"cea": 360,
|
| 1797 |
+
"outstanding": 1682,
|
| 1798 |
+
"esp": 873,
|
| 1799 |
+
"robert": 2092,
|
| 1800 |
+
"park": 1715,
|
| 1801 |
+
"skyline": 2222,
|
| 1802 |
+
"calais": 323,
|
| 1803 |
+
"dan": 630,
|
| 1804 |
+
"leaders": 1359,
|
| 1805 |
+
"creative": 598,
|
| 1806 |
+
"lifetime": 1396,
|
| 1807 |
+
"joseph": 1309,
|
| 1808 |
+
"cancellation": 333,
|
| 1809 |
+
"tutoring": 2502,
|
| 1810 |
+
"reimagining": 1998,
|
| 1811 |
+
"payment": 1732,
|
| 1812 |
+
"chromebooks": 412,
|
| 1813 |
+
"cloud": 438,
|
| 1814 |
+
"computing": 501,
|
| 1815 |
+
"chromebook": 411,
|
| 1816 |
+
"filtering": 965,
|
| 1817 |
+
"gaggle": 1031,
|
| 1818 |
+
"lightspeed": 1399,
|
| 1819 |
+
"filter": 964,
|
| 1820 |
+
"inappropriate": 1209,
|
| 1821 |
+
"content": 539,
|
| 1822 |
+
"curricular": 617,
|
| 1823 |
+
"enhancing": 853,
|
| 1824 |
+
"network": 1590,
|
| 1825 |
+
"computers": 500,
|
| 1826 |
+
"ubiquitous": 2509,
|
| 1827 |
+
"uta": 2543,
|
| 1828 |
+
"connectivity": 523,
|
| 1829 |
+
"supply": 2346,
|
| 1830 |
+
"chain": 381,
|
| 1831 |
+
"deployment": 680,
|
| 1832 |
+
"providers": 1903,
|
| 1833 |
+
"esports": 875,
|
| 1834 |
+
"email": 828,
|
| 1835 |
+
"addresses": 68,
|
| 1836 |
+
"directory": 706,
|
| 1837 |
+
"breaches": 294,
|
| 1838 |
+
"ipads": 1287,
|
| 1839 |
+
"breach": 293,
|
| 1840 |
+
"illuminate": 1191,
|
| 1841 |
+
"ferpa": 956,
|
| 1842 |
+
"naviance": 1576,
|
| 1843 |
+
"cell": 367,
|
| 1844 |
+
"phone": 1766,
|
| 1845 |
+
"phones": 1767,
|
| 1846 |
+
"ad": 62,
|
| 1847 |
+
"blocking": 266,
|
| 1848 |
+
"dropbox": 769,
|
| 1849 |
+
"distraction": 736,
|
| 1850 |
+
"cellphone": 368,
|
| 1851 |
+
"recordings": 1964,
|
| 1852 |
+
"ieps": 1190,
|
| 1853 |
+
"distractions": 737,
|
| 1854 |
+
"ondemand": 1643,
|
| 1855 |
+
"advertising": 85,
|
| 1856 |
+
"gaming": 1033,
|
| 1857 |
+
"whitelisting": 2639,
|
| 1858 |
+
"videography": 2571,
|
| 1859 |
+
"supervision": 2344,
|
| 1860 |
+
"map": 1447,
|
| 1861 |
+
"acquiring": 49,
|
| 1862 |
+
"implementing": 1204,
|
| 1863 |
+
"200": 6,
|
| 1864 |
+
"800": 22,
|
| 1865 |
+
"worth": 2667,
|
| 1866 |
+
"test": 2401,
|
| 1867 |
+
"longitudinal": 1425,
|
| 1868 |
+
"consistency": 530,
|
| 1869 |
+
"levels": 1380,
|
| 1870 |
+
"targets": 2374,
|
| 1871 |
+
"unfinished": 2520,
|
| 1872 |
+
"skill": 2219,
|
| 1873 |
+
"counselor": 584,
|
| 1874 |
+
"core": 567,
|
| 1875 |
+
"salida": 2119,
|
| 1876 |
+
"del": 661,
|
| 1877 |
+
"corrective": 570,
|
| 1878 |
+
"informed": 1239,
|
| 1879 |
+
"sb": 2131,
|
| 1880 |
+
"duties": 777,
|
| 1881 |
+
"disproportionate": 729,
|
| 1882 |
+
"identification": 1187,
|
| 1883 |
+
"cut": 622,
|
| 1884 |
+
"percentile": 1744,
|
| 1885 |
+
"cmos": 442,
|
| 1886 |
+
"minority": 1528,
|
| 1887 |
+
"ela": 813,
|
| 1888 |
+
"tests": 2406,
|
| 1889 |
+
"eighth": 810,
|
| 1890 |
+
"vocabulary": 2587,
|
| 1891 |
+
"shaw": 2193,
|
| 1892 |
+
"heights": 1129,
|
| 1893 |
+
"academies": 31,
|
| 1894 |
+
"cognitive": 448,
|
| 1895 |
+
"chsaa": 413,
|
| 1896 |
+
"costeffectiveness": 575,
|
| 1897 |
+
"condition": 508,
|
| 1898 |
+
"operational": 1654,
|
| 1899 |
+
"benefit": 246,
|
| 1900 |
+
"rental": 2025,
|
| 1901 |
+
"repurposing": 2041,
|
| 1902 |
+
"tech": 2387,
|
| 1903 |
+
"intensive": 1256,
|
| 1904 |
+
"synthetic": 2363,
|
| 1905 |
+
"delays": 664,
|
| 1906 |
+
"refresh": 1984,
|
| 1907 |
+
"3k8": 15,
|
| 1908 |
+
"graphics": 1081,
|
| 1909 |
+
"raptors": 1939,
|
| 1910 |
+
"stairs": 2274,
|
| 1911 |
+
"disposition": 727,
|
| 1912 |
+
"bids": 253,
|
| 1913 |
+
"bathroom": 233,
|
| 1914 |
+
"constraints": 533,
|
| 1915 |
+
"textbook": 2407,
|
| 1916 |
+
"publicprivate": 1908,
|
| 1917 |
+
"liability": 1386,
|
| 1918 |
+
"sessions": 2181,
|
| 1919 |
+
"legion": 1374,
|
| 1920 |
+
"architect": 155,
|
| 1921 |
+
"trainer": 2465,
|
| 1922 |
+
"hl": 1150,
|
| 1923 |
+
"snowmelt": 2231,
|
| 1924 |
+
"custodial": 619,
|
| 1925 |
+
"boilers": 273,
|
| 1926 |
+
"steel": 2300,
|
| 1927 |
+
"districtwide": 741,
|
| 1928 |
+
"rentals": 2026,
|
| 1929 |
+
"material": 1468,
|
| 1930 |
+
"racial": 1927,
|
| 1931 |
+
"equality": 866,
|
| 1932 |
+
"antisemitism": 132,
|
| 1933 |
+
"critical": 606,
|
| 1934 |
+
"race": 1925,
|
| 1935 |
+
"environment": 860,
|
| 1936 |
+
"diversifier": 743,
|
| 1937 |
+
"narrative": 1571,
|
| 1938 |
+
"focused": 986,
|
| 1939 |
+
"direct": 703,
|
| 1940 |
+
"specifically": 2251,
|
| 1941 |
+
"around": 163,
|
| 1942 |
+
"while": 2637,
|
| 1943 |
+
"several": 2185,
|
| 1944 |
+
"employees": 838,
|
| 1945 |
+
"there": 2419,
|
| 1946 |
+
"seen": 2165,
|
| 1947 |
+
"valued": 2558,
|
| 1948 |
+
"rural": 2109,
|
| 1949 |
+
"dismissal": 724,
|
| 1950 |
+
"human": 1176,
|
| 1951 |
+
"onboarding": 1642,
|
| 1952 |
+
"recruiting": 1968,
|
| 1953 |
+
"millennials": 1522,
|
| 1954 |
+
"exit": 897,
|
| 1955 |
+
"systemic": 2366,
|
| 1956 |
+
"injustice": 1243,
|
| 1957 |
+
"heritage": 1134,
|
| 1958 |
+
"administrators": 78,
|
| 1959 |
+
"black": 261,
|
| 1960 |
+
"alcohol": 107,
|
| 1961 |
+
"sex": 2187,
|
| 1962 |
+
"separation": 2175,
|
| 1963 |
+
"environmental": 861,
|
| 1964 |
+
"principles": 1853,
|
| 1965 |
+
"testimonies": 2403,
|
| 1966 |
+
"another": 129,
|
| 1967 |
+
"emphasized": 834,
|
| 1968 |
+
"my": 1567,
|
| 1969 |
+
"recommendation": 1962,
|
| 1970 |
+
"requested": 2043,
|
| 1971 |
+
"we": 2613,
|
| 1972 |
+
"would": 2668,
|
| 1973 |
+
"stressed": 2318,
|
| 1974 |
+
"sensitive": 2174,
|
| 1975 |
+
"equitable": 868,
|
| 1976 |
+
"genocide": 1047,
|
| 1977 |
+
"lives": 1412,
|
| 1978 |
+
"literature": 1409,
|
| 1979 |
+
"antiracism": 131,
|
| 1980 |
+
"latino": 1352,
|
| 1981 |
+
"growing": 1092,
|
| 1982 |
+
"socialemotional": 2233,
|
| 1983 |
+
"welcoming": 2623,
|
| 1984 |
+
"coping": 562,
|
| 1985 |
+
"mechanisms": 1486,
|
| 1986 |
+
"workload": 2662,
|
| 1987 |
+
"traumasensitive": 2482,
|
| 1988 |
+
"traumainformed": 2481,
|
| 1989 |
+
"affordable": 95,
|
| 1990 |
+
"costof": 576,
|
| 1991 |
+
"approaches": 148,
|
| 1992 |
+
"boards": 269,
|
| 1993 |
+
"therapy": 2418,
|
| 1994 |
+
"yoga": 2674,
|
| 1995 |
+
"death": 641,
|
| 1996 |
+
"trauma": 2480,
|
| 1997 |
+
"psychologists": 1905,
|
| 1998 |
+
"pera": 1742,
|
| 1999 |
+
"substance": 2330,
|
| 2000 |
+
"ethnicity": 880,
|
| 2001 |
+
"gender": 1044,
|
| 2002 |
+
"potency": 1815,
|
| 2003 |
+
"addiction": 65,
|
| 2004 |
+
"celebrates": 363,
|
| 2005 |
+
"discusses": 719,
|
| 2006 |
+
"expanding": 898,
|
| 2007 |
+
"acknowledges": 46,
|
| 2008 |
+
"shares": 2191,
|
| 2009 |
+
"emphasizes": 835,
|
| 2010 |
+
"counselors": 585,
|
| 2011 |
+
"living": 1413,
|
| 2012 |
+
"wage": 2604,
|
| 2013 |
+
"centers": 373,
|
| 2014 |
+
"therapeutic": 2417,
|
| 2015 |
+
"helpers": 1132,
|
| 2016 |
+
"38": 14,
|
| 2017 |
+
"tournament": 2454,
|
| 2018 |
+
"morning": 1552,
|
| 2019 |
+
"basketball": 232,
|
| 2020 |
+
"championship": 385,
|
| 2021 |
+
"d30": 626,
|
| 2022 |
+
"adopt": 79,
|
| 2023 |
+
"volleyball": 2592,
|
| 2024 |
+
"warriors": 2609,
|
| 2025 |
+
"swimming": 2357,
|
| 2026 |
+
"activity": 60,
|
| 2027 |
+
"athletic": 190,
|
| 2028 |
+
"trainers": 2466,
|
| 2029 |
+
"medicine": 1491,
|
| 2030 |
+
"champions": 384,
|
| 2031 |
+
"marching": 1449,
|
| 2032 |
+
"band": 226,
|
| 2033 |
+
"jaden": 1300,
|
| 2034 |
+
"mock": 1537,
|
| 2035 |
+
"dynamics": 778,
|
| 2036 |
+
"cheerleading": 399,
|
| 2037 |
+
"competitions": 486,
|
| 2038 |
+
"wrestling": 2669,
|
| 2039 |
+
"freshman": 1014,
|
| 2040 |
+
"affirmations": 93,
|
| 2041 |
+
"horse": 1163,
|
| 2042 |
+
"judging": 1314,
|
| 2043 |
+
"lampe": 1342,
|
| 2044 |
+
"cross": 608,
|
| 2045 |
+
"country": 588,
|
| 2046 |
+
"firing": 976,
|
| 2047 |
+
"celebrations": 366,
|
| 2048 |
+
"successes": 2334,
|
| 2049 |
+
"disciplinary": 712,
|
| 2050 |
+
"sanctions": 2122,
|
| 2051 |
+
"hockey": 1151,
|
| 2052 |
+
"carpenter": 344,
|
| 2053 |
+
"seasons": 2161,
|
| 2054 |
+
"hypocrisy": 1180,
|
| 2055 |
+
"film": 963,
|
| 2056 |
+
"juniors": 1318,
|
| 2057 |
+
"ticktock": 2431,
|
| 2058 |
+
"afterschool": 98,
|
| 2059 |
+
"girls": 1054,
|
| 2060 |
+
"tyranny": 2508,
|
| 2061 |
+
"effects": 805,
|
| 2062 |
+
"censorship": 369,
|
| 2063 |
+
"unethical": 2519,
|
| 2064 |
+
"scientific": 2148,
|
| 2065 |
+
"greeleyevans": 1085,
|
| 2066 |
+
"protest": 1899,
|
| 2067 |
+
"fear": 945,
|
| 2068 |
+
"dyslexia": 779,
|
| 2069 |
+
"petition": 1760,
|
| 2070 |
+
"attempt": 195,
|
| 2071 |
+
"auditorium": 204,
|
| 2072 |
+
"centralization": 375,
|
| 2073 |
+
"convenience": 555,
|
| 2074 |
+
"congestion": 518,
|
| 2075 |
+
"task": 2375,
|
| 2076 |
+
"parking": 1716,
|
| 2077 |
+
"buses": 313,
|
| 2078 |
+
"diesel": 696,
|
| 2079 |
+
"price": 1846,
|
| 2080 |
+
"routes": 2106,
|
| 2081 |
+
"fleet": 980,
|
| 2082 |
+
"outsourcing": 1681,
|
| 2083 |
+
"purchases": 1913,
|
| 2084 |
+
"caucus": 353,
|
| 2085 |
+
"introduction": 1278,
|
| 2086 |
+
"equal": 865,
|
| 2087 |
+
"driver": 767,
|
| 2088 |
+
"walk": 2607,
|
| 2089 |
+
"specialists": 2250,
|
| 2090 |
+
"seminar": 2171,
|
| 2091 |
+
"stansberry": 2282,
|
| 2092 |
+
"conferences": 513,
|
| 2093 |
+
"winona": 2648,
|
| 2094 |
+
"extreme": 924,
|
| 2095 |
+
"tjardes": 2443,
|
| 2096 |
+
"enhancement": 851,
|
| 2097 |
+
"empathy": 833,
|
| 2098 |
+
"homelessness": 1158,
|
| 2099 |
+
"root": 2105,
|
| 2100 |
+
"causes": 354,
|
| 2101 |
+
"voter": 2597,
|
| 2102 |
+
"roles": 2100,
|
| 2103 |
+
"barriers": 229,
|
| 2104 |
+
"live": 1411,
|
| 2105 |
+
"conditioning": 509,
|
| 2106 |
+
"alicia": 109,
|
| 2107 |
+
"sanchez": 2121,
|
| 2108 |
+
"harris": 1117,
|
| 2109 |
+
"ed": 796,
|
| 2110 |
+
"turman": 2497,
|
| 2111 |
+
"based": 231,
|
| 2112 |
+
"ukulele": 2512,
|
| 2113 |
+
"meet": 1493,
|
| 2114 |
+
"demonstration": 676,
|
| 2115 |
+
"sphero": 2257,
|
| 2116 |
+
"robots": 2094,
|
| 2117 |
+
"termination": 2399,
|
| 2118 |
+
"violin": 2575,
|
| 2119 |
+
"juneteenth": 1316,
|
| 2120 |
+
"pride": 1849,
|
| 2121 |
+
"month": 1547,
|
| 2122 |
+
"share": 2190,
|
| 2123 |
+
"redistricting": 1975,
|
| 2124 |
+
"wages": 2605,
|
| 2125 |
+
"interestbased": 1260,
|
| 2126 |
+
"experiential": 908,
|
| 2127 |
+
"chat": 396,
|
| 2128 |
+
"communities": 475,
|
| 2129 |
+
"audience": 202,
|
| 2130 |
+
"terms": 2400,
|
| 2131 |
+
"scales": 2133,
|
| 2132 |
+
"memorandum": 1501,
|
| 2133 |
+
"bargaining": 228,
|
| 2134 |
+
"refunds": 1987,
|
| 2135 |
+
"labor": 1336,
|
| 2136 |
+
"minimum": 1525,
|
| 2137 |
+
"payroll": 1734,
|
| 2138 |
+
"incentive": 1210,
|
| 2139 |
+
"office": 1634,
|
| 2140 |
+
"professionals": 1872,
|
| 2141 |
+
"worker": 2658,
|
| 2142 |
+
"fairness": 935,
|
| 2143 |
+
"unit": 2526,
|
| 2144 |
+
"ratification": 1942,
|
| 2145 |
+
"internal": 1265,
|
| 2146 |
+
"pension": 1738,
|
| 2147 |
+
"statistical": 2293,
|
| 2148 |
+
"findings": 973,
|
| 2149 |
+
"controls": 553,
|
| 2150 |
+
"net": 1587,
|
| 2151 |
+
"weakness": 2614,
|
| 2152 |
+
"significant": 2211,
|
| 2153 |
+
"deficiency": 658,
|
| 2154 |
+
"bylaws": 320,
|
| 2155 |
+
"kafir": 1324,
|
| 2156 |
+
"reimbursement": 1999,
|
| 2157 |
+
"treasurer": 2484,
|
| 2158 |
+
"selfassessment": 2170,
|
| 2159 |
+
"strengths": 2317,
|
| 2160 |
+
"treatment": 2485,
|
| 2161 |
+
"liabilities": 1385,
|
| 2162 |
+
"investments": 1284,
|
| 2163 |
+
"obligations": 1628,
|
| 2164 |
+
"delay": 662,
|
| 2165 |
+
"accounting": 39,
|
| 2166 |
+
"governmentwide": 1067,
|
| 2167 |
+
"inez": 1231,
|
| 2168 |
+
"mismanagement": 1531,
|
| 2169 |
+
"dell": 668,
|
| 2170 |
+
"boettcher": 271,
|
| 2171 |
+
"daniels": 631,
|
| 2172 |
+
"roby": 2095,
|
| 2173 |
+
"spotlight": 2262,
|
| 2174 |
+
"hirings": 1146,
|
| 2175 |
+
"central": 374,
|
| 2176 |
+
"interactive": 1258,
|
| 2177 |
+
"projectors": 1886,
|
| 2178 |
+
"fulbright": 1018,
|
| 2179 |
+
"4c": 16,
|
| 2180 |
+
"hispanic": 1148,
|
| 2181 |
+
"preengineering": 1827,
|
| 2182 |
+
"toynton": 2456,
|
| 2183 |
+
"african": 96,
|
| 2184 |
+
"americans": 120,
|
| 2185 |
+
"february": 947,
|
| 2186 |
+
"tad": 2370,
|
| 2187 |
+
"boyle": 287,
|
| 2188 |
+
"buffaloes": 307,
|
| 2189 |
+
"ncaa": 1578,
|
| 2190 |
+
"coloring": 460,
|
| 2191 |
+
"book": 279,
|
| 2192 |
+
"starfish": 2284,
|
| 2193 |
+
"madison": 1436,
|
| 2194 |
+
"volunteerism": 2594,
|
| 2195 |
+
"profile": 1875,
|
| 2196 |
+
"finding": 972,
|
| 2197 |
+
"mindset": 1524,
|
| 2198 |
+
"handson": 1112,
|
| 2199 |
+
"acres": 52,
|
| 2200 |
+
"gardening": 1037,
|
| 2201 |
+
"facilitation": 927,
|
| 2202 |
+
"consensus": 525,
|
| 2203 |
+
"external": 919,
|
| 2204 |
+
"organizations": 1669,
|
| 2205 |
+
"strengthening": 2316,
|
| 2206 |
+
"way": 2612,
|
| 2207 |
+
"measurable": 1481,
|
| 2208 |
+
"approved": 154,
|
| 2209 |
+
"nonprofits": 1611,
|
| 2210 |
+
"springs": 2265,
|
| 2211 |
+
"neighborhoods": 1585,
|
| 2212 |
+
"schoolcommunity": 2144,
|
| 2213 |
+
"el": 812,
|
| 2214 |
+
"paso": 1724,
|
| 2215 |
+
"brothers": 301,
|
| 2216 |
+
"mentoring": 1505,
|
| 2217 |
+
"carmel": 342,
|
| 2218 |
+
"allyship": 113,
|
| 2219 |
+
"victim": 2569,
|
| 2220 |
+
"poster": 1812,
|
| 2221 |
+
"bully": 310,
|
| 2222 |
+
"inconsistent": 1218,
|
| 2223 |
+
"beliefs": 241,
|
| 2224 |
+
"agency": 99,
|
| 2225 |
+
"civil": 420,
|
| 2226 |
+
"disagreement": 710,
|
| 2227 |
+
"d38": 627,
|
| 2228 |
+
"staggered": 2273,
|
| 2229 |
+
"checks": 398,
|
| 2230 |
+
"predictive": 1826,
|
| 2231 |
+
"accuracy": 41,
|
| 2232 |
+
"cohorting": 451,
|
| 2233 |
+
"susceptibility": 2353,
|
| 2234 |
+
"ventilation": 2564,
|
| 2235 |
+
"purifiers": 1915,
|
| 2236 |
+
"precautions": 1825,
|
| 2237 |
+
"space": 2241,
|
| 2238 |
+
"ecc": 786,
|
| 2239 |
+
"full": 1019,
|
| 2240 |
+
"tea": 2380,
|
| 2241 |
+
"valentine": 2554,
|
| 2242 |
+
"repurposed": 2040,
|
| 2243 |
+
"brainbased": 289,
|
| 2244 |
+
"ecare": 785,
|
| 2245 |
+
"supplant": 2345,
|
| 2246 |
+
"pregnancy": 1831,
|
| 2247 |
+
"daycare": 638,
|
| 2248 |
+
"playdoh": 1789,
|
| 2249 |
+
"slot": 2227,
|
| 2250 |
+
"ninthgrade": 1599,
|
| 2251 |
+
"australian": 207,
|
| 2252 |
+
"bushfires": 314,
|
| 2253 |
+
"post": 1811,
|
| 2254 |
+
"funded": 1024,
|
| 2255 |
+
"override": 1686,
|
| 2256 |
+
"overview": 1689,
|
| 2257 |
+
"vetting": 2568,
|
| 2258 |
+
"wells": 2628,
|
| 2259 |
+
"generation": 1046,
|
| 2260 |
+
"orthopedic": 1671,
|
| 2261 |
+
"physicians": 1771,
|
| 2262 |
+
"chart": 393,
|
| 2263 |
+
"lighthouse": 1397,
|
| 2264 |
+
"feature": 946,
|
| 2265 |
+
"stan": 2277,
|
| 2266 |
+
"scheer": 2138,
|
| 2267 |
+
"trailblazing": 2464,
|
| 2268 |
+
"press": 1843,
|
| 2269 |
+
"box": 286,
|
| 2270 |
+
"top": 2449,
|
| 2271 |
+
"mary": 1458,
|
| 2272 |
+
"blair": 262,
|
| 2273 |
+
"dli": 749,
|
| 2274 |
+
"expeditionary": 901,
|
| 2275 |
+
"seal": 2158,
|
| 2276 |
+
"bilingualism": 256,
|
| 2277 |
+
"biliteracy": 257,
|
| 2278 |
+
"languages": 1347,
|
| 2279 |
+
"salvador": 2120,
|
| 2280 |
+
"turnover": 2500,
|
| 2281 |
+
"parentteacher": 1714,
|
| 2282 |
+
"identity": 1188,
|
| 2283 |
+
"pullout": 1909,
|
| 2284 |
+
"method": 1510,
|
| 2285 |
+
"monetization": 1541,
|
| 2286 |
+
"lafayette": 1339,
|
| 2287 |
+
"speakers": 2246,
|
| 2288 |
+
"enrichment": 854,
|
| 2289 |
+
"delta": 669,
|
| 2290 |
+
"businesses": 316,
|
| 2291 |
+
"codes": 446,
|
| 2292 |
+
"breathing": 298,
|
| 2293 |
+
"face": 926,
|
| 2294 |
+
"notification": 1617,
|
| 2295 |
+
"regulations": 1994,
|
| 2296 |
+
"adoptions": 81,
|
| 2297 |
+
"discrepancies": 717,
|
| 2298 |
+
"ascent": 173,
|
| 2299 |
+
"unions": 2525,
|
| 2300 |
+
"denial": 678,
|
| 2301 |
+
"institute": 1250,
|
| 2302 |
+
"background": 219,
|
| 2303 |
+
"law": 1354,
|
| 2304 |
+
"interpretation": 1270,
|
| 2305 |
+
"deadlines": 640,
|
| 2306 |
+
"fresheners": 1013,
|
| 2307 |
+
"cleaning": 431,
|
| 2308 |
+
"preferences": 1829,
|
| 2309 |
+
"disability": 708,
|
| 2310 |
+
"demand": 671,
|
| 2311 |
+
"wested": 2632,
|
| 2312 |
+
"subgroups": 2329,
|
| 2313 |
+
"economically": 794,
|
| 2314 |
+
"disadvantaged": 709,
|
| 2315 |
+
"advocates": 91,
|
| 2316 |
+
"iep": 1189,
|
| 2317 |
+
"police": 1794,
|
| 2318 |
+
"interactions": 1257,
|
| 2319 |
+
"enforcement": 844,
|
| 2320 |
+
"disparity": 726,
|
| 2321 |
+
"arrests": 167,
|
| 2322 |
+
"arrest": 166,
|
| 2323 |
+
"mandatory": 1444,
|
| 2324 |
+
"presence": 1839,
|
| 2325 |
+
"officers": 1636,
|
| 2326 |
+
"mous": 1559,
|
| 2327 |
+
"responses": 2061,
|
| 2328 |
+
"choices": 408,
|
| 2329 |
+
"function": 1021,
|
| 2330 |
+
"pro": 1860,
|
| 2331 |
+
"acronym": 53,
|
| 2332 |
+
"reinforcement": 2000,
|
| 2333 |
+
"lifelong": 1394,
|
| 2334 |
+
"interventionists": 1273,
|
| 2335 |
+
"driven": 766,
|
| 2336 |
+
"citing": 414,
|
| 2337 |
+
"its": 1297,
|
| 2338 |
+
"overall": 1683,
|
| 2339 |
+
"structured": 2321,
|
| 2340 |
+
"arguing": 161,
|
| 2341 |
+
"resilience": 2053,
|
| 2342 |
+
"democracy": 672,
|
| 2343 |
+
"testimony": 2404,
|
| 2344 |
+
"transgender": 2472,
|
| 2345 |
+
"nondiscrimination": 1608,
|
| 2346 |
+
"expression": 916,
|
| 2347 |
+
"acceptance": 33,
|
| 2348 |
+
"sexuality": 2189,
|
| 2349 |
+
"forms": 995,
|
| 2350 |
+
"excusal": 893,
|
| 2351 |
+
"tweaks": 2503,
|
| 2352 |
+
"assembly": 176,
|
| 2353 |
+
"constitution": 532,
|
| 2354 |
+
"senate": 2172,
|
| 2355 |
+
"opposition": 1660,
|
| 2356 |
+
"statutory": 2298,
|
| 2357 |
+
"stability": 2269,
|
| 2358 |
+
"microschools": 1514,
|
| 2359 |
+
"registered": 1991,
|
| 2360 |
+
"norovirus": 1614,
|
| 2361 |
+
"shift": 2197,
|
| 2362 |
+
"considerations": 529,
|
| 2363 |
+
"situation": 2216,
|
| 2364 |
+
"problems": 1862,
|
| 2365 |
+
"relocation": 2011,
|
| 2366 |
+
"foster": 1000,
|
| 2367 |
+
"leader": 1358,
|
| 2368 |
+
"absorption": 27,
|
| 2369 |
+
"attrition": 200,
|
| 2370 |
+
"exceptional": 891,
|
| 2371 |
+
"lessons": 1378,
|
| 2372 |
+
"learned": 1363,
|
| 2373 |
+
"divide": 745,
|
| 2374 |
+
"video": 2570,
|
| 2375 |
+
"conferencing": 514,
|
| 2376 |
+
"flex": 981,
|
| 2377 |
+
"synchronous": 2362,
|
| 2378 |
+
"force": 991,
|
| 2379 |
+
"belonging": 244,
|
| 2380 |
+
"tco": 2379,
|
| 2381 |
+
"raises": 1931,
|
| 2382 |
+
"power": 1817,
|
| 2383 |
+
"pass": 1725,
|
| 2384 |
+
"armed": 162,
|
| 2385 |
+
"annexation": 124,
|
| 2386 |
+
"inspiring": 1249,
|
| 2387 |
+
"drills": 763,
|
| 2388 |
+
"threat": 2425,
|
| 2389 |
+
"vulnerability": 2601,
|
| 2390 |
+
"evacuation": 881,
|
| 2391 |
+
"crossing": 610,
|
| 2392 |
+
"guards": 1096,
|
| 2393 |
+
"raptor": 1938,
|
| 2394 |
+
"autism": 210,
|
| 2395 |
+
"lockdown": 1419,
|
| 2396 |
+
"workbased": 2656,
|
| 2397 |
+
"ready": 1952,
|
| 2398 |
+
"apprenticeships": 146,
|
| 2399 |
+
"externships": 920,
|
| 2400 |
+
"perkins": 1751,
|
| 2401 |
+
"netherland": 1588,
|
| 2402 |
+
"netherlands": 1589,
|
| 2403 |
+
"skillsusa": 2221,
|
| 2404 |
+
"tsa": 2494,
|
| 2405 |
+
"competency": 483,
|
| 2406 |
+
"truck": 2491,
|
| 2407 |
+
"sponsored": 2259,
|
| 2408 |
+
"aerospace": 92,
|
| 2409 |
+
"culinary": 613,
|
| 2410 |
+
"offerings": 1633,
|
| 2411 |
+
"realworld": 1954,
|
| 2412 |
+
"pilot": 1775,
|
| 2413 |
+
"world": 2664,
|
| 2414 |
+
"guides": 1101,
|
| 2415 |
+
"benchmark": 245,
|
| 2416 |
+
"six": 2217,
|
| 2417 |
+
"physics": 1772,
|
| 2418 |
+
"algebra": 108,
|
| 2419 |
+
"textbooks": 2408,
|
| 2420 |
+
"phonics": 1768,
|
| 2421 |
+
"grouping": 1090,
|
| 2422 |
+
"absenteeism": 26,
|
| 2423 |
+
"foundational": 1003,
|
| 2424 |
+
"promotion": 1889,
|
| 2425 |
+
"common": 471,
|
| 2426 |
+
"scoring": 2151,
|
| 2427 |
+
"elearning": 814,
|
| 2428 |
+
"comprehension": 495,
|
| 2429 |
+
"colfax": 452,
|
| 2430 |
+
"marathon": 1448,
|
| 2431 |
+
"backto": 221,
|
| 2432 |
+
"ardor": 159,
|
| 2433 |
+
"importance": 1205,
|
| 2434 |
+
"pleas": 1791,
|
| 2435 |
+
"remarks": 2012,
|
| 2436 |
+
"vw": 2603,
|
| 2437 |
+
"settlement": 2184,
|
| 2438 |
+
"electric": 818,
|
| 2439 |
+
"deletions": 666,
|
| 2440 |
+
"consultation": 536,
|
| 2441 |
+
"redlined": 1976,
|
| 2442 |
+
"copy": 564,
|
| 2443 |
+
"timekeeping": 2436,
|
| 2444 |
+
"urban": 2538,
|
| 2445 |
+
"magnanimity": 1437,
|
| 2446 |
+
"walt": 2608,
|
| 2447 |
+
"clark": 423,
|
| 2448 |
+
"web": 2616,
|
| 2449 |
+
"webb": 2617,
|
| 2450 |
+
"kerry": 1328,
|
| 2451 |
+
"martin": 1456,
|
| 2452 |
+
"gomez": 1063,
|
| 2453 |
+
"transformation": 2470,
|
| 2454 |
+
"sherwood": 2196,
|
| 2455 |
+
"hodgkins": 1152,
|
| 2456 |
+
"otero": 1674,
|
| 2457 |
+
"visas": 2579,
|
| 2458 |
+
"j1": 1299,
|
| 2459 |
+
"f1": 925,
|
| 2460 |
+
"nhs": 1595,
|
| 2461 |
+
"lighting": 1398,
|
| 2462 |
+
"cooling": 559,
|
| 2463 |
+
"temperature": 2393,
|
| 2464 |
+
"temperatures": 2394,
|
| 2465 |
+
"permanent": 1752,
|
| 2466 |
+
"indoor": 1226,
|
| 2467 |
+
"iaq": 1181,
|
| 2468 |
+
"proceeds": 1865,
|
| 2469 |
+
"hospitalizations": 1167,
|
| 2470 |
+
"across": 54,
|
| 2471 |
+
"secondary": 2162,
|
| 2472 |
+
"likely": 1401,
|
| 2473 |
+
"assuring": 187,
|
| 2474 |
+
"them": 2414,
|
| 2475 |
+
"uh": 2510,
|
| 2476 |
+
"then": 2416,
|
| 2477 |
+
"introduces": 1277,
|
| 2478 |
+
"possibly": 1810,
|
| 2479 |
+
"delve": 670,
|
| 2480 |
+
"both": 282,
|
| 2481 |
+
"statewide": 2291,
|
| 2482 |
+
"positivity": 1808,
|
| 2483 |
+
"focusing": 987,
|
| 2484 |
+
"leaving": 1370,
|
| 2485 |
+
"infections": 1233,
|
| 2486 |
+
"tentative": 2398,
|
| 2487 |
+
"hr": 1174,
|
| 2488 |
+
"temple": 2395,
|
| 2489 |
+
"grandin": 1078,
|
| 2490 |
+
"prices": 1847,
|
| 2491 |
+
"beginning": 238,
|
| 2492 |
+
"interestfree": 1261,
|
| 2493 |
+
"failure": 933,
|
| 2494 |
+
"continuity": 543,
|
| 2495 |
+
"healthy": 1125,
|
| 2496 |
+
"criteria": 605,
|
| 2497 |
+
"measurements": 1484,
|
| 2498 |
+
"themes": 2415,
|
| 2499 |
+
"financials": 969,
|
| 2500 |
+
"snacks": 2229,
|
| 2501 |
+
"meal": 1478,
|
| 2502 |
+
"signatures": 2209,
|
| 2503 |
+
"usda": 2541,
|
| 2504 |
+
"gardens": 1038,
|
| 2505 |
+
"pantry": 1705,
|
| 2506 |
+
"zoom": 2679,
|
| 2507 |
+
"screenings": 2157,
|
| 2508 |
+
"exposure": 912,
|
| 2509 |
+
"quarantines": 1922,
|
| 2510 |
+
"availability": 212,
|
| 2511 |
+
"symptom": 2360,
|
| 2512 |
+
"season": 2160,
|
| 2513 |
+
"athome": 192,
|
| 2514 |
+
"restrictions": 2068,
|
| 2515 |
+
"veronica": 2565,
|
| 2516 |
+
"prom": 1888,
|
| 2517 |
+
"experimental": 909,
|
| 2518 |
+
"holiday": 1153,
|
| 2519 |
+
"imagination": 1193,
|
| 2520 |
+
"dolly": 754,
|
| 2521 |
+
"parton": 1723,
|
| 2522 |
+
"logistical": 1420,
|
| 2523 |
+
"projected": 1884,
|
| 2524 |
+
"unemployment": 2518,
|
| 2525 |
+
"severance": 2186,
|
| 2526 |
+
"judge": 1313,
|
| 2527 |
+
"bittersweet": 260,
|
| 2528 |
+
"nodding": 1601,
|
| 2529 |
+
"interrupted": 1271,
|
| 2530 |
+
"quarterly": 1923,
|
| 2531 |
+
"confidentiality": 515,
|
| 2532 |
+
"motions": 1555,
|
| 2533 |
+
"applause": 138,
|
| 2534 |
+
"irwin": 1290,
|
| 2535 |
+
"sophomore": 2239,
|
| 2536 |
+
"three": 2427,
|
| 2537 |
+
"uip": 2511,
|
| 2538 |
+
"inequitable": 1230,
|
| 2539 |
+
"they": 2421,
|
| 2540 |
+
"bussing": 317,
|
| 2541 |
+
"subcommittee": 2328,
|
| 2542 |
+
"cadet": 321,
|
| 2543 |
+
"jq": 1311,
|
| 2544 |
+
"chartwells": 395,
|
| 2545 |
+
"payments": 1733,
|
| 2546 |
+
"mentor": 1504,
|
| 2547 |
+
"last": 1349,
|
| 2548 |
+
"picnic": 1773,
|
| 2549 |
+
"strive": 2319,
|
| 2550 |
+
"2025": 9,
|
| 2551 |
+
"gradelevel": 1072,
|
| 2552 |
+
"uniforms": 2523,
|
| 2553 |
+
"jbs": 1303,
|
| 2554 |
+
"safer": 2113,
|
| 2555 |
+
"at": 188,
|
| 2556 |
+
"fine": 974,
|
| 2557 |
+
"electives": 817,
|
| 2558 |
+
"certificate": 378,
|
| 2559 |
+
"valedictorians": 2553,
|
| 2560 |
+
"applied": 141,
|
| 2561 |
+
"diploma": 702,
|
| 2562 |
+
"distinctions": 735,
|
| 2563 |
+
"latin": 1351,
|
| 2564 |
+
"honors": 1162,
|
| 2565 |
+
"requirement": 2045,
|
| 2566 |
+
"functioning": 1022,
|
| 2567 |
+
"demonstrations": 677,
|
| 2568 |
+
"competitiveness": 488,
|
| 2569 |
+
"dividend": 746,
|
| 2570 |
+
"dividends": 747,
|
| 2571 |
+
"cebt": 361,
|
| 2572 |
+
"select": 2167,
|
| 2573 |
+
"contracting": 547,
|
| 2574 |
+
"provider": 1902,
|
| 2575 |
+
"tpa": 2458,
|
| 2576 |
+
"matt": 1472,
|
| 2577 |
+
"halsey": 1109,
|
| 2578 |
+
"franklin": 1008,
|
| 2579 |
+
"kaiser": 1326,
|
| 2580 |
+
"wilson": 2646,
|
| 2581 |
+
"ortongillingham": 1673,
|
| 2582 |
+
"spanishspeaking": 2244,
|
| 2583 |
+
"orton": 1672,
|
| 2584 |
+
"gillingham": 1053,
|
| 2585 |
+
"more": 1550,
|
| 2586 |
+
"contagious": 538,
|
| 2587 |
+
"virus": 2577,
|
| 2588 |
+
"behavioral": 240,
|
| 2589 |
+
"efficacy": 806,
|
| 2590 |
+
"marijuana": 1450,
|
| 2591 |
+
"legalization": 1373,
|
| 2592 |
+
"ramifications": 1933,
|
| 2593 |
+
"ecigarette": 790,
|
| 2594 |
+
"leap": 1362,
|
| 2595 |
+
"nicotine": 1597,
|
| 2596 |
+
"cameras": 328,
|
| 2597 |
+
"camera": 327,
|
| 2598 |
+
"restraint": 2067,
|
| 2599 |
+
"rtd": 2107,
|
| 2600 |
+
"larimer": 1348,
|
| 2601 |
+
"equalization": 867,
|
| 2602 |
+
"detabor": 688,
|
| 2603 |
+
"dialogue": 694,
|
| 2604 |
+
"utility": 2544,
|
| 2605 |
+
"electricity": 820,
|
| 2606 |
+
"gas": 1040,
|
| 2607 |
+
"renewable": 2020,
|
| 2608 |
+
"recycling": 1970,
|
| 2609 |
+
"emissions": 831,
|
| 2610 |
+
"sombrero": 2237,
|
| 2611 |
+
"marsh": 1454,
|
| 2612 |
+
"factory": 931,
|
| 2613 |
+
"private": 1858,
|
| 2614 |
+
"micro": 1513,
|
| 2615 |
+
"wicker": 2641,
|
| 2616 |
+
"tutorial": 2501,
|
| 2617 |
+
"organization": 1667,
|
| 2618 |
+
"gt": 1094,
|
| 2619 |
+
"mr": 1562,
|
| 2620 |
+
"gives": 1057,
|
| 2621 |
+
"started": 2286,
|
| 2622 |
+
"carpet": 345,
|
| 2623 |
+
"paint": 1696,
|
| 2624 |
+
"adding": 66,
|
| 2625 |
+
"2035": 11,
|
| 2626 |
+
"2040": 12,
|
| 2627 |
+
"crew": 603,
|
| 2628 |
+
"induction": 1227,
|
| 2629 |
+
"differences": 697,
|
| 2630 |
+
"visa": 2578,
|
| 2631 |
+
"talented": 2372,
|
| 2632 |
+
"universal": 2529,
|
| 2633 |
+
"nonpotable": 1609,
|
| 2634 |
+
"trade": 2462,
|
| 2635 |
+
"geothermal": 1049,
|
| 2636 |
+
"pvc": 1916,
|
| 2637 |
+
"pipe": 1776,
|
| 2638 |
+
"defects": 656,
|
| 2639 |
+
"piping": 1777,
|
| 2640 |
+
"comfort": 463,
|
| 2641 |
+
"bore": 281,
|
| 2642 |
+
"boiler": 272,
|
| 2643 |
+
"friday": 1015,
|
| 2644 |
+
"night": 1598,
|
| 2645 |
+
"pep": 1740,
|
| 2646 |
+
"rally": 1932,
|
| 2647 |
+
"tiktok": 2433,
|
| 2648 |
+
"release": 2006,
|
| 2649 |
+
"housekeeping": 1171,
|
| 2650 |
+
"photo": 1769,
|
| 2651 |
+
"ix": 1298,
|
| 2652 |
+
"sexual": 2188,
|
| 2653 |
+
"definitions": 660,
|
| 2654 |
+
"investigations": 1282,
|
| 2655 |
+
"violence": 2573,
|
| 2656 |
+
"nonprofit": 1610,
|
| 2657 |
+
"insecurity": 1247,
|
| 2658 |
+
"schoolbased": 2143,
|
| 2659 |
+
"sunrise": 2341,
|
| 2660 |
+
"exam": 887,
|
| 2661 |
+
"ell": 826,
|
| 2662 |
+
"pupilteacher": 1911,
|
| 2663 |
+
"ratio": 1946,
|
| 2664 |
+
"separations": 2176,
|
| 2665 |
+
"probationary": 1861,
|
| 2666 |
+
"commission": 467,
|
| 2667 |
+
"charges": 392,
|
| 2668 |
+
"privilege": 1859,
|
| 2669 |
+
"entirely": 857,
|
| 2670 |
+
"91": 23,
|
| 2671 |
+
"desired": 686,
|
| 2672 |
+
"or": 1665,
|
| 2673 |
+
"preferred": 1830,
|
| 2674 |
+
"pressure": 1844,
|
| 2675 |
+
"description": 682,
|
| 2676 |
+
"real": 1953,
|
| 2677 |
+
"estate": 879,
|
| 2678 |
+
"lands": 1345,
|
| 2679 |
+
"navigation": 1577,
|
| 2680 |
+
"easement": 782,
|
| 2681 |
+
"mckinneyvento": 1476,
|
| 2682 |
+
"lead": 1357,
|
| 2683 |
+
"drinking": 764,
|
| 2684 |
+
"snow": 2230,
|
| 2685 |
+
"bible": 251,
|
| 2686 |
+
"christianity": 410,
|
| 2687 |
+
"antiamericanism": 130,
|
| 2688 |
+
"god": 1061,
|
| 2689 |
+
"requests": 2044,
|
| 2690 |
+
"cora": 565,
|
| 2691 |
+
"disclosure": 714,
|
| 2692 |
+
"cronyism": 607,
|
| 2693 |
+
"fiduciary": 958,
|
| 2694 |
+
"inventory": 1280,
|
| 2695 |
+
"now": 1620,
|
| 2696 |
+
"idea": 1185,
|
| 2697 |
+
"adequacy": 69,
|
| 2698 |
+
"who": 2640,
|
| 2699 |
+
"might": 1517,
|
| 2700 |
+
"how": 1173,
|
| 2701 |
+
"can": 332,
|
| 2702 |
+
"impacting": 1201,
|
| 2703 |
+
"especially": 874,
|
| 2704 |
+
"vouchers": 2599,
|
| 2705 |
+
"greetings": 1088,
|
| 2706 |
+
"calendars": 325
|
| 2707 |
+
}
|
| 2708 |
+
}
|
| 2709 |
+
}
|
topic_embeddings.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2cce5e5856c6f5f22c8644953d0f1f9af4b42cdc4b099a81a194469fdc3e368f
|
| 3 |
+
size 138328
|
topics.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|