Graph: national county↔district↔legislator authority layer

The first edges in the repo. Every US county now links to the districts it
sits in, weighted by area overlap, and every legislator links to the district
they represent — county → district → representative, traversable.

Data (PostGIS, no Atlas dependency — computed directly from geometry):
- data/county_district_edges.jsonl — 16,328 weighted edges. area_weight =
  ST_Area(ST_Intersection(county, district))/ST_Area(county) over ST_MakeValid
  Census TIGER 2024 geometries, overlaps <0.5% dropped. Uses area-intersection,
  NOT centroid-in-polygon, so urban districts that carve through counties
  (e.g. GA CD-5 / Atlanta across Clayton+DeKalb+Fulton) are captured, not
  silently dropped. Per-county weights sum to ~1.0 per district type.

build.py:
- ~6,896 new district nodes: 435 CD (ACS demographics where available; sparse
  for the 8 states missing from acs_cd) + 4,927 state-house + 1,897 state-senate
  (geometry-only). GEOID/number-keyed, stable.
- county index.md gains a `districts:` block (frontmatter) + a ## Districts
  section (body links, so link-integrity checks them).
- legislators + US House members gain `represents:` pointing at their district
  node; edge stored once on the person, inverse left to the view.
- schemas/jurisdiction: classification enum + chamber/districts fields.

Honest gaps (logged, not hidden): ID + NH have no state-house geometry, so
their house districts get nodes (represents resolves) but no county edges;
CD nodes for acs_cd-missing states are demographically sparse.

Deterministic (byte-identical rebuild); validate.py passes 26,617 records,
link-integrity clean (every district/represents link resolves).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Fabio
2026-07-04 22:28:08 -04:00
parent 6c9990a115
commit 1beeaab2db
18213 changed files with 280514 additions and 3515 deletions
@@ -22,9 +22,51 @@ demographics:
race_native: 3444
hispanic: 50948
bachelors_plus: 215862
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.7626
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 0.2374
- to: "us/states/id/districts/senate/23"
rel: in-district
area_weight: 0.5574
- to: "us/states/id/districts/senate/18"
rel: in-district
area_weight: 0.1351
- to: "us/states/id/districts/senate/19"
rel: in-district
area_weight: 0.0909
- to: "us/states/id/districts/senate/14"
rel: in-district
area_weight: 0.081
- to: "us/states/id/districts/senate/22"
rel: in-district
area_weight: 0.0379
- to: "us/states/id/districts/senate/10"
rel: in-district
area_weight: 0.0221
- to: "us/states/id/districts/senate/21"
rel: in-district
area_weight: 0.0197
- to: "us/states/id/districts/senate/20"
rel: in-district
area_weight: 0.0169
- to: "us/states/id/districts/senate/17"
rel: in-district
area_weight: 0.0134
- to: "us/states/id/districts/senate/15"
rel: in-district
area_weight: 0.0127
- to: "us/states/id/districts/senate/16"
rel: in-district
area_weight: 0.0125
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +98,23 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 50948 |
| Bachelor's or higher | 215862 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 76% (congressional)
- [ID-02](/us/states/id/districts/02.md) — 24% (congressional)
- [ID Senate District 23](/us/states/id/districts/senate/23.md) — 56% (state senate)
- [ID Senate District 18](/us/states/id/districts/senate/18.md) — 14% (state senate)
- [ID Senate District 19](/us/states/id/districts/senate/19.md) — 9% (state senate)
- [ID Senate District 14](/us/states/id/districts/senate/14.md) — 8% (state senate)
- [ID Senate District 22](/us/states/id/districts/senate/22.md) — 4% (state senate)
- [ID Senate District 10](/us/states/id/districts/senate/10.md) — 2% (state senate)
- [ID Senate District 21](/us/states/id/districts/senate/21.md) — 2% (state senate)
- [ID Senate District 20](/us/states/id/districts/senate/20.md) — 2% (state senate)
- [ID Senate District 17](/us/states/id/districts/senate/17.md) — 1% (state senate)
- [ID Senate District 15](/us/states/id/districts/senate/15.md) — 1% (state senate)
- [ID Senate District 16](/us/states/id/districts/senate/16.md) — 1% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 96
hispanic: 235
bachelors_plus: 1091
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9994
- to: "us/states/id/districts/senate/7"
rel: in-district
area_weight: 0.9995
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 235 |
| Bachelor's or higher | 1091 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 7](/us/states/id/districts/senate/7.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 2300
hispanic: 8869
bachelors_plus: 24149
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/28"
rel: in-district
area_weight: 0.7367
- to: "us/states/id/districts/senate/35"
rel: in-district
area_weight: 0.2295
- to: "us/states/id/districts/senate/29"
rel: in-district
area_weight: 0.0336
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 8869 |
| Bachelor's or higher | 24149 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 28](/us/states/id/districts/senate/28.md) — 74% (state senate)
- [ID Senate District 35](/us/states/id/districts/senate/35.md) — 23% (state senate)
- [ID Senate District 29](/us/states/id/districts/senate/29.md) — 3% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 36
hispanic: 254
bachelors_plus: 1195
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/35"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 254 |
| Bachelor's or higher | 1195 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 35](/us/states/id/districts/senate/35.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 839
hispanic: 387
bachelors_plus: 1906
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/2"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 387 |
| Bachelor's or higher | 1906 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 2](/us/states/id/districts/senate/2.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 2598
hispanic: 8829
bachelors_plus: 8718
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/30"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 8829 |
| Bachelor's or higher | 8718 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 30](/us/states/id/districts/senate/30.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 332
hispanic: 5451
bachelors_plus: 11126
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/26"
rel: in-district
area_weight: 0.9996
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 5451 |
| Bachelor's or higher | 11126 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 26](/us/states/id/districts/senate/26.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 103
hispanic: 422
bachelors_plus: 2642
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9978
- to: "us/states/id/districts/senate/8"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 422 |
| Bachelor's or higher | 2642 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 8](/us/states/id/districts/senate/8.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 221
hispanic: 2028
bachelors_plus: 14735
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9997
- to: "us/states/id/districts/senate/1"
rel: in-district
area_weight: 0.9068
- to: "us/states/id/districts/senate/2"
rel: in-district
area_weight: 0.0931
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 2028 |
| Bachelor's or higher | 14735 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 1](/us/states/id/districts/senate/1.md) — 91% (state senate)
- [ID Senate District 2](/us/states/id/districts/senate/2.md) — 9% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,24 @@ demographics:
race_native: 1058
hispanic: 18769
bachelors_plus: 34605
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/id/districts/senate/35"
rel: in-district
area_weight: 0.7954
- to: "us/states/id/districts/senate/32"
rel: in-district
area_weight: 0.1952
- to: "us/states/id/districts/senate/33"
rel: in-district
area_weight: 0.0093
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +71,14 @@ County jurisdiction.
| Hispanic/Latino | 18769 |
| Bachelor's or higher | 34605 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 35](/us/states/id/districts/senate/35.md) — 80% (state senate)
- [ID Senate District 32](/us/states/id/districts/senate/32.md) — 20% (state senate)
- [ID Senate District 33](/us/states/id/districts/senate/33.md) — 1% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 208
hispanic: 753
bachelors_plus: 2988
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9999
- to: "us/states/id/districts/senate/1"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 753 |
| Bachelor's or higher | 2988 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 1](/us/states/id/districts/senate/1.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 12
hispanic: 173
bachelors_plus: 427
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/30"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 173 |
| Bachelor's or higher | 427 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 30](/us/states/id/districts/senate/30.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 21
hispanic: 157
bachelors_plus: 349
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/24"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 157 |
| Bachelor's or higher | 349 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 24](/us/states/id/districts/senate/24.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,33 @@ demographics:
race_native: 2451
hispanic: 65197
bachelors_plus: 48359
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9997
- to: "us/states/id/districts/senate/9"
rel: in-district
area_weight: 0.3254
- to: "us/states/id/districts/senate/23"
rel: in-district
area_weight: 0.3164
- to: "us/states/id/districts/senate/10"
rel: in-district
area_weight: 0.2364
- to: "us/states/id/districts/senate/13"
rel: in-district
area_weight: 0.0519
- to: "us/states/id/districts/senate/11"
rel: in-district
area_weight: 0.0367
- to: "us/states/id/districts/senate/12"
rel: in-district
area_weight: 0.0331
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +80,17 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 65197 |
| Bachelor's or higher | 48359 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 9](/us/states/id/districts/senate/9.md) — 33% (state senate)
- [ID Senate District 23](/us/states/id/districts/senate/23.md) — 32% (state senate)
- [ID Senate District 10](/us/states/id/districts/senate/10.md) — 24% (state senate)
- [ID Senate District 13](/us/states/id/districts/senate/13.md) — 5% (state senate)
- [ID Senate District 11](/us/states/id/districts/senate/11.md) — 4% (state senate)
- [ID Senate District 12](/us/states/id/districts/senate/12.md) — 3% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 10
hispanic: 406
bachelors_plus: 1092
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/id/districts/senate/35"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 406 |
| Bachelor's or higher | 1092 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 35](/us/states/id/districts/senate/35.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 456
hispanic: 7664
bachelors_plus: 4193
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/id/districts/senate/27"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 7664 |
| Bachelor's or higher | 4193 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 27](/us/states/id/districts/senate/27.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 1
hispanic: 244
bachelors_plus: 126
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 0.9987
- to: "us/states/id/districts/senate/31"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 244 |
| Bachelor's or higher | 126 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 31](/us/states/id/districts/senate/31.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 181
hispanic: 411
bachelors_plus: 1663
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9997
- to: "us/states/id/districts/senate/2"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 411 |
| Bachelor's or higher | 1663 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 2](/us/states/id/districts/senate/2.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 17
hispanic: 201
bachelors_plus: 1329
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 0.9994
- to: "us/states/id/districts/senate/8"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 201 |
| Bachelor's or higher | 1329 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 8](/us/states/id/districts/senate/8.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 274
hispanic: 5334
bachelors_plus: 5386
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 0.9979
- to: "us/states/id/districts/senate/8"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 5334 |
| Bachelor's or higher | 5386 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 8](/us/states/id/districts/senate/8.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 52
hispanic: 1119
bachelors_plus: 2826
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/id/districts/senate/28"
rel: in-district
area_weight: 0.9996
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 1119 |
| Bachelor's or higher | 2826 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 28](/us/states/id/districts/senate/28.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 128
hispanic: 1732
bachelors_plus: 2748
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 0.9989
- to: "us/states/id/districts/senate/31"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 1732 |
| Bachelor's or higher | 2748 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 31](/us/states/id/districts/senate/31.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 155
hispanic: 1992
bachelors_plus: 3597
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/14"
rel: in-district
area_weight: 0.9994
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 1992 |
| Bachelor's or higher | 3597 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 14](/us/states/id/districts/senate/14.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 349
hispanic: 5016
bachelors_plus: 2234
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/24"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 5016 |
| Bachelor's or higher | 2234 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 24](/us/states/id/districts/senate/24.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 319
hispanic: 689
bachelors_plus: 3765
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9993
- to: "us/states/id/districts/senate/7"
rel: in-district
area_weight: 0.9996
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 689 |
| Bachelor's or higher | 3765 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 7](/us/states/id/districts/senate/7.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 79
hispanic: 3638
bachelors_plus: 6987
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/31"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 3638 |
| Bachelor's or higher | 6987 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 31](/us/states/id/districts/senate/31.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 280
hispanic: 9873
bachelors_plus: 2756
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/26"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 9873 |
| Bachelor's or higher | 2756 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 26](/us/states/id/districts/senate/26.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,27 @@ demographics:
race_native: 1493
hispanic: 10298
bachelors_plus: 50872
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/2"
rel: in-district
area_weight: 0.5815
- to: "us/states/id/districts/senate/5"
rel: in-district
area_weight: 0.2131
- to: "us/states/id/districts/senate/3"
rel: in-district
area_weight: 0.1904
- to: "us/states/id/districts/senate/4"
rel: in-district
area_weight: 0.0149
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +74,15 @@ County jurisdiction.
| Hispanic/Latino | 10298 |
| Bachelor's or higher | 50872 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 2](/us/states/id/districts/senate/2.md) — 58% (state senate)
- [ID Senate District 5](/us/states/id/districts/senate/5.md) — 21% (state senate)
- [ID Senate District 3](/us/states/id/districts/senate/3.md) — 19% (state senate)
- [ID Senate District 4](/us/states/id/districts/senate/4.md) — 1% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 206
hispanic: 2120
bachelors_plus: 14341
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9998
- to: "us/states/id/districts/senate/6"
rel: in-district
area_weight: 0.9997
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 2120 |
| Bachelor's or higher | 14341 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 6](/us/states/id/districts/senate/6.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 34
hispanic: 324
bachelors_plus: 2004
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 0.9978
- to: "us/states/id/districts/senate/31"
rel: in-district
area_weight: 0.9996
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 324 |
| Bachelor's or higher | 2004 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 31](/us/states/id/districts/senate/31.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 48
hispanic: 158
bachelors_plus: 767
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/6"
rel: in-district
area_weight: 0.9996
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 158 |
| Bachelor's or higher | 767 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 6](/us/states/id/districts/senate/6.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 192
hispanic: 1735
bachelors_plus: 540
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/26"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 1735 |
| Bachelor's or higher | 540 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 26](/us/states/id/districts/senate/26.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 134
hispanic: 5369
bachelors_plus: 10084
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/34"
rel: in-district
area_weight: 0.9995
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 5369 |
| Bachelor's or higher | 10084 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 34](/us/states/id/districts/senate/34.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 407
hispanic: 8227
bachelors_plus: 3103
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/27"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 8227 |
| Bachelor's or higher | 3103 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 27](/us/states/id/districts/senate/27.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 1889
hispanic: 1885
bachelors_plus: 10678
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9986
- to: "us/states/id/districts/senate/6"
rel: in-district
area_weight: 0.623
- to: "us/states/id/districts/senate/7"
rel: in-district
area_weight: 0.3766
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction.
| Hispanic/Latino | 1885 |
| Bachelor's or higher | 10678 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 6](/us/states/id/districts/senate/6.md) — 62% (state senate)
- [ID Senate District 7](/us/states/id/districts/senate/7.md) — 38% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 29
hispanic: 212
bachelors_plus: 1101
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/id/districts/senate/27"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 212 |
| Bachelor's or higher | 1101 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 27](/us/states/id/districts/senate/27.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 611
hispanic: 3103
bachelors_plus: 1395
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9996
- to: "us/states/id/districts/senate/23"
rel: in-district
area_weight: 0.9999
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 3103 |
| Bachelor's or higher | 1395 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 23](/us/states/id/districts/senate/23.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 223
hispanic: 4790
bachelors_plus: 4085
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9978
- to: "us/states/id/districts/senate/9"
rel: in-district
area_weight: 0.9995
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 4790 |
| Bachelor's or higher | 4085 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 9](/us/states/id/districts/senate/9.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 119
hispanic: 2787
bachelors_plus: 993
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 1.0
- to: "us/states/id/districts/senate/28"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 2787 |
| Bachelor's or higher | 993 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 28](/us/states/id/districts/senate/28.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 144
hispanic: 565
bachelors_plus: 1687
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9991
- to: "us/states/id/districts/senate/2"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 565 |
| Bachelor's or higher | 1687 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 2](/us/states/id/districts/senate/2.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 97
hispanic: 2146
bachelors_plus: 5836
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 0.9999
- to: "us/states/id/districts/senate/35"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 2146 |
| Bachelor's or higher | 5836 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 35](/us/states/id/districts/senate/35.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,21 @@ demographics:
race_native: 494
hispanic: 16912
bachelors_plus: 19467
districts:
- to: "us/states/id/districts/02"
rel: in-district
area_weight: 0.9997
- to: "us/states/id/districts/senate/24"
rel: in-district
area_weight: 0.9845
- to: "us/states/id/districts/senate/25"
rel: in-district
area_weight: 0.015
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +68,13 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 16912 |
| Bachelor's or higher | 19467 |
## Districts
- [ID-02](/us/states/id/districts/02.md) — 100% (congressional)
- [ID Senate District 24](/us/states/id/districts/senate/24.md) — 98% (state senate)
- [ID Senate District 25](/us/states/id/districts/senate/25.md) — 2% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 9
hispanic: 670
bachelors_plus: 5026
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9994
- to: "us/states/id/districts/senate/8"
rel: in-district
area_weight: 0.9998
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction.
| Hispanic/Latino | 670 |
| Bachelor's or higher | 5026 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 8](/us/states/id/districts/senate/8.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,18 @@ demographics:
race_native: 189
hispanic: 1843
bachelors_plus: 2167
districts:
- to: "us/states/id/districts/01"
rel: in-district
area_weight: 0.9996
- to: "us/states/id/districts/senate/9"
rel: in-district
area_weight: 0.9996
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, id]
timestamp: "2026-07-03"
@@ -56,6 +65,12 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 1843 |
| Bachelor's or higher | 2167 |
## Districts
- [ID-01](/us/states/id/districts/01.md) — 100% (congressional)
- [ID Senate District 9](/us/states/id/districts/senate/9.md) — 100% (state senate)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -0,0 +1,21 @@
---
type: Jurisdiction
title: "ID-01"
classification: congressional-district
state: "ID"
district: "ID-01"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, congressional-district, id]
timestamp: "2026-07-03"
---
# ID-01
Congressional district ID-01.
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,21 @@
---
type: Jurisdiction
title: "ID-02"
classification: congressional-district
state: "ID"
district: "ID-02"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, congressional-district, id]
timestamp: "2026-07-03"
---
# ID-02
Congressional district ID-02.
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 10A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "10A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 10A
State House district 10A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 10B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "10B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 10B
State House district 10B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 11A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "11A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 11A
State House district 11A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 11B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "11B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 11B
State House district 11B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 12A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "12A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 12A
State House district 12A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 12B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "12B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 12B
State House district 12B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 13A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "13A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 13A
State House district 13A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 13B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "13B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 13B
State House district 13B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 14A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "14A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 14A
State House district 14A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 14B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "14B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 14B
State House district 14B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 15A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "15A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 15A
State House district 15A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 15B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "15B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 15B
State House district 15B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 16A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "16A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 16A
State House district 16A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 16B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "16B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 16B
State House district 16B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 17A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "17A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 17A
State House district 17A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 17B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "17B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 17B
State House district 17B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 18A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "18A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 18A
State House district 18A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 18B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "18B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 18B
State House district 18B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 19A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "19A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 19A
State House district 19A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 19B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "19B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 19B
State House district 19B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 1A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "1A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 1A
State House district 1A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 1B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "1B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 1B
State House district 1B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 20A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "20A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 20A
State House district 20A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 20B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "20B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 20B
State House district 20B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 21A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "21A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 21A
State House district 21A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 21B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "21B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 21B
State House district 21B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 22B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "22B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 22B
State House district 22B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 23A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "23A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 23A
State House district 23A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 23B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "23B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 23B
State House district 23B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 24A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "24A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 24A
State House district 24A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 24B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "24B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 24B
State House district 24B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 25A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "25A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 25A
State House district 25A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 25B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "25B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 25B
State House district 25B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 26A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "26A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 26A
State House district 26A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 26B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "26B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 26B
State House district 26B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 27A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "27A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 27A
State House district 27A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 27B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "27B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 27B
State House district 27B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 28A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "28A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 28A
State House district 28A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 28B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "28B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 28B
State House district 28B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 29A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "29A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 29A
State House district 29A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 29B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "29B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 29B
State House district 29B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 2A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "2A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 2A
State House district 2A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 2B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "2B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 2B
State House district 2B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 30A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "30A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 30A
State House district 30A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 30B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "30B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 30B
State House district 30B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 31A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "31A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 31A
State House district 31A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 31B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "31B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 31B
State House district 31B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 32A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "32A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 32A
State House district 32A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 32B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "32B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 32B
State House district 32B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 33A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "33A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 33A
State House district 33A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 33B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "33B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 33B
State House district 33B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 34A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "34A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 34A
State House district 34A (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 34B"
classification: state-house-district
state: "ID"
chamber: "house"
district: "34B"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 34B
State House district 34B (ID).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "ID House District 35A"
classification: state-house-district
state: "ID"
chamber: "house"
district: "35A"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, id]
timestamp: "2026-07-03"
---
# ID House District 35A
State House district 35A (ID).
## Source
- boundary: Census TIGER 2024

Some files were not shown because too many files have changed in this diff Show More